sql stringlengths 6 1.05M |
|---|
ALTER TABLE "board"."thread"
ADD COLUMN LastPostedAt TIMESTAMP DEFAULT now();
|
<gh_stars>100-1000
select
"FL_DATE" as flight_date,
"OP_UNIQUE_CARRIER" as carrier_id,
"ORIGIN_AIRPORT_ID" as origin_airport_id,
"ORIGIN_AIRPORT_SEQ_ID" as origin_airport_seq_id,
"ORIGIN_CITY_MARKET_ID" as origin_city_market_id,
"ORIGIN_CITY_NAME" as origin_city_name,
"DEST_AIRPORT_ID" as destination_airport_id,
"DEST_AIRPORT_SEQ_ID" as destination_seq_id,
"DEST_CITY_MARKET_ID" as destination_city_market_id,
"DEST_CITY_NAME" as destination_city_name,
"DEP_DELAY_NEW" as departure_delay,
"ARR_DELAY_NEW" as arrival_delay,
"CANCELLED" as cancelled,
"DIVERTED" as diverted,
"ACTUAL_ELAPSED_TIME" as actual_elapsed_time,
"DISTANCE" as distance
from
{{ source('landing_zone_flights', 'flights_data') }}
{% if target.name == 'dev' %}
where fl_date <= '2019-01-03'
{% endif %}
|
<filename>models/sources/stg_harvest_projects/stitch/stg_harvest_projects_tasks.sql<gh_stars>100-1000
{% if target.type == 'bigquery' or target.type == 'snowflake' or target.type == 'redshift' %}
{% if var("projects_warehouse_timesheet_sources") %}
{% if 'harvest_projects' in var("projects_warehouse_timesheet_sources") %}
with source as (
{{ filter_stitch_relation(relation=source('stitch_harvest_projects', 'tasks'),unique_column='id') }}
),
renamed as (
select
concat('{{ var('stg_harvest_projects_id-prefix') }}',cast(id as {{ dbt_utils.type_string() }})) as task_id,
name as task_name,
billable_by_default as task_billable_by_default,
default_hourly_rate as task_default_hourly_rate,
created_at as task_created_at,
updated_at as task_updated_at,
is_active as task_is_active
from source)
SELECT
*
FROM
renamed
{% else %} {{config(enabled=false)}} {% endif %}
{% else %} {{config(enabled=false)}} {% endif %}
{% else %} {{config(enabled=false)}} {% endif %}
|
<filename>src/postgres/src/test/regress/sql/reloptions.sql
-- Simple create
CREATE TABLE reloptions_test(i INT) WITH (FiLLFaCToR=30,
autovacuum_enabled = false, autovacuum_analyze_scale_factor = 0.2);
SELECT reloptions FROM pg_class WHERE oid = 'reloptions_test'::regclass;
-- Fail min/max values check
CREATE TABLE reloptions_test2(i INT) WITH (fillfactor=2);
CREATE TABLE reloptions_test2(i INT) WITH (fillfactor=110);
CREATE TABLE reloptions_test2(i INT) WITH (autovacuum_analyze_scale_factor = -10.0);
CREATE TABLE reloptions_test2(i INT) WITH (autovacuum_analyze_scale_factor = 110.0);
-- Fail when option and namespace do not exist
CREATE TABLE reloptions_test2(i INT) WITH (not_existing_option=2);
CREATE TABLE reloptions_test2(i INT) WITH (not_existing_namespace.fillfactor=2);
-- Fail while setting improper values
CREATE TABLE reloptions_test2(i INT) WITH (fillfactor=30.5);
CREATE TABLE reloptions_test2(i INT) WITH (fillfactor='string');
CREATE TABLE reloptions_test2(i INT) WITH (fillfactor=true);
CREATE TABLE reloptions_test2(i INT) WITH (autovacuum_enabled=12);
CREATE TABLE reloptions_test2(i INT) WITH (autovacuum_enabled=30.5);
CREATE TABLE reloptions_test2(i INT) WITH (autovacuum_enabled='string');
CREATE TABLE reloptions_test2(i INT) WITH (autovacuum_analyze_scale_factor='string');
CREATE TABLE reloptions_test2(i INT) WITH (autovacuum_analyze_scale_factor=true);
-- Fail if option is specified twice
CREATE TABLE reloptions_test2(i INT) WITH (fillfactor=30, fillfactor=40);
-- Specifying name only for a non-Boolean option should fail
CREATE TABLE reloptions_test2(i INT) WITH (fillfactor);
-- Simple ALTER TABLE
ALTER TABLE reloptions_test SET (fillfactor=31,
autovacuum_analyze_scale_factor = 0.3);
SELECT reloptions FROM pg_class WHERE oid = 'reloptions_test'::regclass;
-- Set boolean option to true without specifying value
ALTER TABLE reloptions_test SET (autovacuum_enabled, fillfactor=32);
SELECT reloptions FROM pg_class WHERE oid = 'reloptions_test'::regclass;
-- Check that RESET works well
ALTER TABLE reloptions_test RESET (fillfactor);
SELECT reloptions FROM pg_class WHERE oid = 'reloptions_test'::regclass;
-- Resetting all values causes the column to become null
ALTER TABLE reloptions_test RESET (autovacuum_enabled,
autovacuum_analyze_scale_factor);
SELECT reloptions FROM pg_class WHERE oid = 'reloptions_test'::regclass AND
reloptions IS NULL;
-- RESET fails if a value is specified
ALTER TABLE reloptions_test RESET (fillfactor=12);
-- The OIDS option is not stored as reloption
DROP TABLE reloptions_test;
CREATE TABLE reloptions_test(i INT) WITH (fillfactor=20, oids=true);
SELECT reloptions, relhasoids FROM pg_class WHERE oid = 'reloptions_test'::regclass;
-- Test toast.* options
DROP TABLE reloptions_test;
CREATE TABLE reloptions_test (s VARCHAR)
WITH (toast.autovacuum_vacuum_cost_delay = 23);
SELECT reltoastrelid as toast_oid
FROM pg_class WHERE oid = 'reloptions_test'::regclass \gset
SELECT reloptions FROM pg_class WHERE oid = :toast_oid;
ALTER TABLE reloptions_test SET (toast.autovacuum_vacuum_cost_delay = 24);
SELECT reloptions FROM pg_class WHERE oid = :toast_oid;
ALTER TABLE reloptions_test RESET (toast.autovacuum_vacuum_cost_delay);
SELECT reloptions FROM pg_class WHERE oid = :toast_oid;
-- Fail on non-existent options in toast namespace
CREATE TABLE reloptions_test2 (i int) WITH (toast.not_existing_option = 42);
-- Mix TOAST & heap
DROP TABLE reloptions_test;
CREATE TABLE reloptions_test (s VARCHAR) WITH
(toast.autovacuum_vacuum_cost_delay = 23,
autovacuum_vacuum_cost_delay = 24, fillfactor = 40);
SELECT reloptions FROM pg_class WHERE oid = 'reloptions_test'::regclass;
SELECT reloptions FROM pg_class WHERE oid = (
SELECT reltoastrelid FROM pg_class WHERE oid = 'reloptions_test'::regclass);
--
-- CREATE INDEX, ALTER INDEX for btrees
--
CREATE INDEX reloptions_test_idx ON reloptions_test (s) WITH (fillfactor=30);
SELECT reloptions FROM pg_class WHERE oid = 'reloptions_test_idx'::regclass;
-- Fail when option and namespace do not exist
CREATE INDEX reloptions_test_idx ON reloptions_test (s)
WITH (not_existing_option=2);
CREATE INDEX reloptions_test_idx ON reloptions_test (s)
WITH (not_existing_ns.fillfactor=2);
-- Check allowed ranges
CREATE INDEX reloptions_test_idx2 ON reloptions_test (s) WITH (fillfactor=1);
CREATE INDEX reloptions_test_idx2 ON reloptions_test (s) WITH (fillfactor=130);
-- Check ALTER
ALTER INDEX reloptions_test_idx SET (fillfactor=40);
SELECT reloptions FROM pg_class WHERE oid = 'reloptions_test_idx'::regclass;
-- Check ALTER on empty reloption list
CREATE INDEX reloptions_test_idx3 ON reloptions_test (s);
ALTER INDEX reloptions_test_idx3 SET (fillfactor=40);
SELECT reloptions FROM pg_class WHERE oid = 'reloptions_test_idx3'::regclass;
|
create table t(a char(1200), b varchar(1200));
create index idx on t(greatest(a(1),b(1)));
create index idx on t (a(1), greatest(a(1), b(1)));
drop table t; |
<reponame>opengauss-mirror/Yat
-- @testpoint:opengauss关键字partition(非保留),作为字段数据类型(合理报错)
--前置条件
drop table if exists partition_test cascade;
--关键字不带引号-合理报错
create table partition_test(id int,name partition);
--关键字带双引号-合理报错
create table partition_test(id int,name "partition");
--关键字带单引号-合理报错
create table partition_test(id int,name 'partition');
--关键字带反引号-合理报错
create table partition_test(id int,name `partition`);
|
<reponame>ronething/leetcode-golang
-- # Write your MySQL query statement below
-- # 思路
-- # 确保某条记录大于 1jk0
-- # 1) 遍历每一天
-- # 2) 是否高峰日
-- # 3) (当天 > 100 and ((前一天 >=100 and 后一天 >= 100) or (前两天 >=100) or (后两天 >= 100)))
select tmp.id, s.visit_date, s.people from
(select id,
-- # 前两天
if (
(select people from stadium as b where b.id = a.id-2) >= 100, -- 边界问题 1-2 = -1, 问题不大,此时 if 结果为 0
1,
0
) as b2,
-- # 前一天
if (
(select people from stadium as b where b.id = a.id-1) >= 100,
1,
0
) as b1,
-- # 后一天
if (
(select people from stadium as b where b.id = a.id+1) >= 100,
1,
0
) as a1,
-- # 后两天
if (
(select people from stadium as b where b.id = a.id+2) >= 100,
1,
0
) as a2 from stadium as a where a.people >= 100) as tmp
left join
stadium as s on tmp.id = s.id
where (tmp.b1 = 1 and tmp.b2 = 1) or (tmp.a1 = 1 and tmp.a2 = 1) or (tmp.b1 = 1 and tmp.a1 = 1);
|
<filename>data/www/dolphin-master/htdocs/modules/boonex/store/install/sql/uninstall.sql
-- tables
DROP TABLE IF EXISTS `[db_prefix]products`;
DROP TABLE IF EXISTS `[db_prefix]customers`;
DROP TABLE IF EXISTS `[db_prefix]product_images`;
DROP TABLE IF EXISTS `[db_prefix]product_videos`;
DROP TABLE IF EXISTS `[db_prefix]product_files`;
DROP TABLE IF EXISTS `[db_prefix]rating`;
DROP TABLE IF EXISTS `[db_prefix]rating_track`;
DROP TABLE IF EXISTS `[db_prefix]cmts`;
DROP TABLE IF EXISTS `[db_prefix]cmts_track`;
DROP TABLE IF EXISTS `[db_prefix]views_track`;
-- forum tables
DROP TABLE IF EXISTS `[db_prefix]forum`;
DROP TABLE IF EXISTS `[db_prefix]forum_cat`;
DROP TABLE IF EXISTS `[db_prefix]forum_cat`;
DROP TABLE IF EXISTS `[db_prefix]forum_flag`;
DROP TABLE IF EXISTS `[db_prefix]forum_post`;
DROP TABLE IF EXISTS `[db_prefix]forum_topic`;
DROP TABLE IF EXISTS `[db_prefix]forum_user`;
DROP TABLE IF EXISTS `[db_prefix]forum_user_activity`;
DROP TABLE IF EXISTS `[db_prefix]forum_user_stat`;
DROP TABLE IF EXISTS `[db_prefix]forum_vote`;
DROP TABLE IF EXISTS `[db_prefix]forum_actions_log`;
DROP TABLE IF EXISTS `[db_prefix]forum_attachments`;
DROP TABLE IF EXISTS `[db_prefix]forum_signatures`;
-- compose pages
DELETE FROM `sys_page_compose_pages` WHERE `Name` IN('bx_store_view', 'bx_store_celendar', 'bx_store_main', 'bx_store_my');
DELETE FROM `sys_page_compose` WHERE `Page` IN('bx_store_view', 'bx_store_celendar', 'bx_store_main', 'bx_store_my');
DELETE FROM `sys_page_compose` WHERE `Page` = 'index' AND `Desc` = 'Store';
DELETE FROM `sys_page_compose` WHERE `Page` = 'profile' AND `Desc` = 'User Store';
-- system objects
DELETE FROM `sys_permalinks` WHERE `standard` = 'modules/?r=store/';
DELETE FROM `sys_objects_vote` WHERE `ObjectName` = 'bx_store';
DELETE FROM `sys_objects_cmts` WHERE `ObjectName` = 'bx_store';
DELETE FROM `sys_objects_views` WHERE `name` = 'bx_store';
DELETE FROM `sys_objects_categories` WHERE `ObjectName` = 'bx_store';
DELETE FROM `sys_categories` WHERE `Type` = 'bx_store';
DELETE FROM `sys_categories` WHERE `Type` = 'bx_photos' AND `Category` = 'Store';
DELETE FROM `sys_objects_tag` WHERE `ObjectName` = 'bx_store';
DELETE FROM `sys_tags` WHERE `Type` = 'bx_store';
DELETE FROM `sys_objects_search` WHERE `ObjectName` = 'bx_store';
DELETE FROM `sys_objects_actions` WHERE `Type` = 'bx_store' OR `Type` = 'bx_store_title';
DELETE FROM `sys_stat_site` WHERE `Name` = 'bx_store';
DELETE FROM `sys_stat_member` WHERE TYPE IN('bx_store', 'bx_storep');
DELETE FROM `sys_account_custom_stat_elements` WHERE `Label` = '_bx_store';
-- email templates
DELETE FROM `sys_email_templates` WHERE `Name` = 'bx_store_broadcast' OR `Name` = 'bx_store_sbs';
-- top menu
SET @iCatRoot := (SELECT `ID` FROM `sys_menu_top` WHERE `Name` = 'Store' AND `Parent` = 0 LIMIT 1);
DELETE FROM `sys_menu_top` WHERE `Parent` = @iCatRoot;
DELETE FROM `sys_menu_top` WHERE `ID` = @iCatRoot;
SET @iCatRoot := (SELECT `ID` FROM `sys_menu_top` WHERE `Name` = 'Store' AND `Parent` = 0 LIMIT 1);
DELETE FROM `sys_menu_top` WHERE `Parent` = @iCatRoot;
DELETE FROM `sys_menu_top` WHERE `ID` = @iCatRoot;
DELETE FROM `sys_menu_top` WHERE `Parent` = 9 AND `Name` = 'Store';
DELETE FROM `sys_menu_top` WHERE `Parent` = 4 AND `Name` = 'Store';
-- member menu
DELETE FROM `sys_menu_member` WHERE `Name` = 'bx_store';
-- admin menu
DELETE FROM `sys_menu_admin` WHERE `name` = 'bx_store';
-- settings
SET @iCategId = (SELECT `ID` FROM `sys_options_cats` WHERE `name` = 'Store' LIMIT 1);
DELETE FROM `sys_options` WHERE `kateg` = @iCategId;
DELETE FROM `sys_options_cats` WHERE `ID` = @iCategId;
DELETE FROM `sys_options` WHERE `Name` = 'bx_store_permalinks';
-- membership levels
DELETE `sys_acl_actions`, `sys_acl_matrix` FROM `sys_acl_actions`, `sys_acl_matrix` WHERE `sys_acl_matrix`.`IDAction` = `sys_acl_actions`.`ID` AND `sys_acl_actions`.`Name` IN('store view product', 'store browse', 'store search', 'store add product', 'store product comments delete and edit', 'store edit any product', 'store delete any product', 'store mark as featured', 'store approve product', 'store broadcast message');
DELETE FROM `sys_acl_actions` WHERE `Name` IN('store view product', 'store browse', 'store search', 'store add product', 'store product comments delete and edit', 'store edit any product', 'store delete any product', 'store mark as featured', 'store approve product', 'store broadcast message');
-- alerts
SET @iHandler := (SELECT `id` FROM `sys_alerts_handlers` WHERE `name` = 'bx_store_profile_delete' LIMIT 1);
DELETE FROM `sys_alerts` WHERE `handler_id` = @iHandler;
DELETE FROM `sys_alerts_handlers` WHERE `id` = @iHandler;
SET @iHandler := (SELECT `id` FROM `sys_alerts_handlers` WHERE `name` = 'bx_store_media_delete' LIMIT 1);
DELETE FROM `sys_alerts` WHERE `handler_id` = @iHandler;
DELETE FROM `sys_alerts_handlers` WHERE `id` = @iHandler;
-- privacy
DELETE FROM `sys_privacy_actions` WHERE `module_uri` = 'store';
-- subscriptions
DELETE FROM `sys_sbs_entries` USING `sys_sbs_types`, `sys_sbs_entries` WHERE `sys_sbs_types`.`id`=`sys_sbs_entries`.`subscription_id` AND `sys_sbs_types`.`unit`='bx_store';
DELETE FROM `sys_sbs_types` WHERE `unit`='bx_store';
-- sitemap
DELETE FROM `sys_objects_site_maps` WHERE `object` = 'bx_store';
-- chart
DELETE FROM `sys_objects_charts` WHERE `object` = 'bx_store';
-- export
DELETE FROM `sys_objects_exports` WHERE `object` = 'bx_store';
|
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Servidor: 127.0.0.1
-- Tiempo de generación: 05-07-2021 a las 08:45:44
-- Versión del servidor: 10.4.19-MariaDB
-- Versión de PHP: 8.0.7
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 */;
--
-- Base de datos: `prueba_brm`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `lote`
--
CREATE TABLE `lote` (
`id` int(10) NOT NULL,
`n_lote` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `lote`
--
INSERT INTO `lote` (`id`, `n_lote`) VALUES
(1, 'Lote 1'),
(2, 'Lote 2'),
(3, 'Lote 3'),
(4, 'Lote 4'),
(5, 'Lote 5');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2019_08_19_000000_create_failed_jobs_table', 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `productos`
--
CREATE TABLE `productos` (
`id` int(11) NOT NULL,
`nombre_p` varchar(100) NOT NULL,
`lote_id` int(50) NOT NULL,
`precio` int(50) NOT NULL,
`fecha_vencimieto` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `productos`
--
INSERT INTO `productos` (`id`, `nombre_p`, `lote_id`, `precio`, `fecha_vencimieto`) VALUES
(102, '2', 1, 5000, '2021-07-15'),
(103, '2', 1, 5000, '2021-07-15'),
(105, '2', 1, 5000, '2021-07-15'),
(106, '2', 1, 5000, '2021-07-15'),
(107, '2', 1, 5000, '2021-07-15'),
(108, '2', 1, 5000, '2021-07-15'),
(109, '2', 1, 5000, '2021-07-15'),
(110, '2', 1, 5000, '2021-07-15'),
(111, '2', 1, 5000, '2021-07-15'),
(112, '2', 1, 5000, '2021-07-15'),
(113, '2', 1, 5000, '2021-07-15'),
(114, '2', 1, 5000, '2021-07-15'),
(115, '2', 1, 5000, '2021-07-15'),
(116, '2', 1, 5000, '2021-07-15'),
(117, '2', 1, 5000, '2021-07-15'),
(118, '2', 1, 5000, '2021-07-15'),
(119, '2', 1, 5000, '2021-07-15'),
(120, '2', 1, 5000, '2021-07-15'),
(121, '2', 1, 5000, '2021-07-15'),
(122, '2', 1, 5000, '2021-07-15'),
(123, '2', 1, 5000, '2021-07-15'),
(124, '2', 1, 5000, '2021-07-15'),
(125, '2', 1, 5000, '2021-07-15'),
(126, '2', 1, 5000, '2021-07-15'),
(127, '2', 1, 5000, '2021-07-15'),
(128, '2', 1, 5000, '2021-07-15'),
(129, '2', 1, 5000, '2021-07-15'),
(130, '2', 1, 5000, '2021-07-15'),
(131, '2', 1, 5000, '2021-07-15'),
(132, '2', 1, 5000, '2021-07-15'),
(133, '2', 1, 5000, '2021-07-15'),
(134, '2', 1, 5000, '2021-07-15'),
(135, '2', 1, 5000, '2021-07-15'),
(136, '2', 1, 5000, '2021-07-15'),
(137, '2', 1, 5000, '2021-07-15'),
(138, '2', 1, 5000, '2021-07-15');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `tipo_prods`
--
CREATE TABLE `tipo_prods` (
`id` int(11) NOT NULL,
`nombre` varchar(200) NOT NULL,
`foto` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `tipo_prods`
--
INSERT INTO `tipo_prods` (`id`, `nombre`, `foto`) VALUES
(1, '<NAME>', 'C:\\xampp\\tmp\\php2C1A.tmp'),
(2, 'gaseosa', 'uploads/JFsPBRpS60enbIMTkb5YzN4RkzR0s4dzR9STL8vE.jpg'),
(3, 'Jugo', 'uploads/JFsPBRpS60enbIMTkb5YzN4RkzR0s4dzR9STL8vE.jpg'),
(4, 'galletas', 'uploads/1bWqNV4SmesbkruKTHa98ijz63CIu3afcxDJ5V12.jpg');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `tipo_users`
--
CREATE TABLE `tipo_users` (
`id` int(10) NOT NULL,
`tipo_u` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `tipo_users`
--
INSERT INTO `tipo_users` (`id`, `tipo_u`) VALUES
(1, 'Cliente'),
(2, 'Proveedor'),
(3, 'Administrador');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`tipo` int(10) NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Volcado de datos para la tabla `users`
--
INSERT INTO `users` (`id`, `name`, `tipo`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'julian', 3, '<EMAIL>', NULL, '$2y$10$0czt72yMA3kL5Ie.hSXL1.RBFStM8Jl.7Yxvucwb0QgWDCcUtbSw6', NULL, '2021-07-04 05:11:05', '2021-07-04 05:11:05');
--
-- Índices para tablas volcadas
--
--
-- Indices de la tabla `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`);
--
-- Indices de la tabla `lote`
--
ALTER TABLE `lote`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indices de la tabla `productos`
--
ALTER TABLE `productos`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `tipo_prods`
--
ALTER TABLE `tipo_prods`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `tipo_users`
--
ALTER TABLE `tipo_users`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT de las tablas volcadas
--
--
-- AUTO_INCREMENT de la tabla `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT de la tabla `lote`
--
ALTER TABLE `lote`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT de la tabla `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT de la tabla `productos`
--
ALTER TABLE `productos`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=139;
--
-- AUTO_INCREMENT de la tabla `tipo_prods`
--
ALTER TABLE `tipo_prods`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT de la tabla `tipo_users`
--
ALTER TABLE `tipo_users`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT de la tabla `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
#3 - UPDATE
SELECT m.sent_on, c.start_date
FROM chats AS c
INNER JOIN messages AS m
ON m.chat_id=c.id
WHERE m.sent_on < c.start_date
ORDER BY c.start_date; |
<reponame>rikoraynolhasan/web-pengadilan
-- phpMyAdmin SQL Dump
-- version 4.8.3
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Waktu pembuatan: 02 Mar 2021 pada 16.14
-- Versi server: 10.1.35-MariaDB
-- Versi PHP: 7.2.9
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
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: `pengadilan`
--
-- --------------------------------------------------------
--
-- Struktur dari tabel `anggotass`
--
CREATE TABLE `anggotass` (
`id` int(11) NOT NULL,
`nama` varchar(45) DEFAULT NULL,
`tempat_lahir` varchar(45) DEFAULT NULL,
`tanggal_lahir` date DEFAULT NULL,
`alamat` varchar(45) DEFAULT NULL,
`no_hp` varchar(45) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`foto` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data untuk tabel `anggotass`
--
INSERT INTO `anggotass` (`id`, `nama`, `tempat_lahir`, `tanggal_lahir`, `alamat`, `no_hp`, `created_at`, `updated_at`, `deleted_at`, `foto`) VALUES
(7, 'siti', 'samarinda', '2021-03-02', 'Jln. MT. HARYONO', '09876', '2021-03-02 05:22:42', '2021-03-02 06:59:32', NULL, 'timthumb (1).png'),
(8, 'siti', 'samarinda', '2021-03-02', '<NAME>', '09876', '2021-03-02 05:23:36', '2021-03-02 05:23:36', NULL, 'futsal.JPG'),
(9, 'Hamija', 'samarinda', '2021-03-04', 'jl. sungai dama', '085386022257', '2021-03-02 05:24:01', '2021-03-02 05:24:01', NULL, 'xca.JPG'),
(10, 'ari', 'buton', '2021-03-02', 'jl. sungai dama', '085386022257', '2021-03-02 07:07:23', '2021-03-02 07:07:23', NULL, '3D-Car-on-fire-HD-wallpaper.jpg');
-- --------------------------------------------------------
--
-- Struktur dari tabel `bukus`
--
CREATE TABLE `bukus` (
`id` int(11) NOT NULL,
`kode_buku` varchar(45) DEFAULT NULL,
`judul_buku` varchar(45) DEFAULT NULL,
`pegarang` varchar(45) DEFAULT NULL,
`kota_terbit` varchar(45) DEFAULT NULL,
`tahun_terbit` varchar(45) DEFAULT NULL,
`cet_edisi_jilid` varchar(45) DEFAULT NULL,
`no_klas` varchar(45) DEFAULT NULL,
`sumber_pengadaan` varchar(45) DEFAULT NULL,
`eks` varchar(45) DEFAULT NULL,
`rak` varchar(45) DEFAULT NULL,
`sipnosis` varchar(45) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktur dari tabel `transaksis`
--
CREATE TABLE `transaksis` (
`id` int(11) NOT NULL,
`kode_peminjaman` varchar(45) DEFAULT NULL,
`tanggal_peminjaman` date DEFAULT NULL,
`tanggal_pengembalian` date DEFAULT NULL,
`status` varchar(45) DEFAULT NULL,
`denda` varchar(45) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`anggotass_id` int(11) NOT NULL,
`bukus_id` int(11) NOT NULL,
`users_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Struktur dari tabel `users`
--
CREATE TABLE `users` (
`id` int(11) NOT NULL,
`name` varchar(45) DEFAULT NULL,
`email` varchar(45) DEFAULT NULL,
`password` varchar(255) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data untuk tabel `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `password`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'ari', '<EMAIL>', <PASSWORD>', '2021-02-25 18:41:07', '2021-02-25 18:41:07', NULL),
(2, 'Nurdiansyah', '<EMAIL>', <PASSWORD>', '2021-03-02 03:02:56', '2021-03-02 03:02:56', NULL),
(3, 'nur', '<EMAIL>', <PASSWORD>', '2021-03-02 04:24:17', '2021-03-02 04:24:17', NULL);
--
-- Indexes for dumped tables
--
--
-- Indeks untuk tabel `anggotass`
--
ALTER TABLE `anggotass`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `bukus`
--
ALTER TABLE `bukus`
ADD PRIMARY KEY (`id`);
--
-- Indeks untuk tabel `transaksis`
--
ALTER TABLE `transaksis`
ADD PRIMARY KEY (`id`),
ADD KEY `fk_transaksis_anggotass_idx` (`anggotass_id`),
ADD KEY `fk_transaksis_bukus1_idx` (`bukus_id`),
ADD KEY `fk_transaksis_users1_idx` (`users_id`);
--
-- Indeks untuk tabel `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT untuk tabel yang dibuang
--
--
-- AUTO_INCREMENT untuk tabel `anggotass`
--
ALTER TABLE `anggotass`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT untuk tabel `bukus`
--
ALTER TABLE `bukus`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT untuk tabel `transaksis`
--
ALTER TABLE `transaksis`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT untuk tabel `users`
--
ALTER TABLE `users`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables)
--
--
-- Ketidakleluasaan untuk tabel `transaksis`
--
ALTER TABLE `transaksis`
ADD CONSTRAINT `fk_transaksis_anggotass` FOREIGN KEY (`anggotass_id`) REFERENCES `anggotass` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT `fk_transaksis_bukus1` FOREIGN KEY (`bukus_id`) REFERENCES `bukus` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION,
ADD CONSTRAINT `fk_transaksis_users1` FOREIGN KEY (`users_id`) REFERENCES `users` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
PROMPT Creating view LOGGER_LOG_5_MIN ...
@@logger_log_5_min.sql
|
<reponame>phunc20/leetcode
--SELECT Email, COUNT(Email) FROM Person GROUP BY Email HAVING COUNT(Email) > 1;
-- | MariaDB [gfg]> SELECT Email, COUNT(Email) FROM Person GROUP
-- | BY Email HAVING COUNT(Email) > 1;
-- | +------------------+--------------+
-- | | Email | COUNT(Email) |
-- | +------------------+--------------+
-- | | <EMAIL> | 2 |
-- | +------------------+--------------+
-- | 1 row in set (0.001 sec)
-- |
-- | MariaDB [gfg]> SELECT Email, COUNT(Email) as nombre FROM Per
-- | son GROUP BY Email HAVING nombre > 1;
-- | +------------------+--------+
-- | | Email | nombre |
-- | +------------------+--------+
-- | | <EMAIL> | 2 |
-- | +------------------+--------+
-- | 1 row in set (0.002 sec)
DELETE t1 FROM Person t1
INNER JOIN Person t2
WHERE
t1.Id > t2.Id AND
t1.Email = t2.Email;
|
<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 4.7.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Aug 14, 2018 at 12:06 AM
-- Server version: 10.1.30-MariaDB
-- PHP Version: 7.2.1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
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: `seihalink`
--
-- --------------------------------------------------------
--
-- Table structure for table `departments`
--
CREATE TABLE `departments` (
`id` int(10) UNSIGNED NOT NULL,
`deptName` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`Reserved` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`addedBy` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`dAdded` datetime NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `departments`
--
INSERT INTO `departments` (`id`, `deptName`, `Reserved`, `addedBy`, `dAdded`, `created_at`, `updated_at`) VALUES
(1, '88 km', '', '', '0000-00-00 00:00:00', NULL, NULL),
(2, 'Business English', '', '', '0000-00-00 00:00:00', NULL, NULL),
(3, 'Culture Town', '', '', '0000-00-00 00:00:00', NULL, NULL),
(4, 'Dream Fact', '', '', '0000-00-00 00:00:00', NULL, NULL),
(5, 'Office', '', '', '0000-00-00 00:00:00', NULL, NULL),
(6, 'Papaya Kids Academy', '', '', '0000-00-00 00:00:00', NULL, NULL),
(7, 'Pikorabokun', '', '', '0000-00-00 00:00:00', NULL, NULL),
(8, 'Rabby International', '', '', '0000-00-00 00:00:00', NULL, NULL),
(9, 'Rabby School World', '', '', '0000-00-00 00:00:00', NULL, NULL),
(10, 'Seiha English Academy', '', '', '0000-00-00 00:00:00', NULL, NULL),
(11, 'Seiha English Park', '', '', '0000-00-00 00:00:00', NULL, NULL),
(12, 'UPTalk', '', '', '0000-00-00 00:00:00', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `employees`
--
CREATE TABLE `employees` (
`id` int(10) UNSIGNED NOT NULL,
`empno` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`firstname` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`middlename` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`surname` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`name` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`password` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`contactNo` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`userLevel` int(11) NOT NULL DEFAULT '0',
`iDeptId` int(11) NOT NULL DEFAULT '0',
`iRegion` int(11) NOT NULL DEFAULT '0',
`positionId` int(5) DEFAULT '0',
`isLogin` int(11) NOT NULL DEFAULT '0',
`dLastChangePword` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`lastLogin` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`ctrlogin` int(5) NOT NULL DEFAULT '0',
`isDeactivated` int(11) NOT NULL DEFAULT '1',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`remember_token` varchar(500) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `employees`
--
INSERT INTO `employees` (`id`, `empno`, `firstname`, `middlename`, `surname`, `name`, `password`, `email`, `contactNo`, `userLevel`, `iDeptId`, `iRegion`, `positionId`, `isLogin`, `dLastChangePword`, `lastLogin`, `ctrlogin`, `isDeactivated`, `created_at`, `updated_at`, `remember_token`) VALUES
(1, '1', 'Masami', '', 'Sakaguchi', '', '$2y$10$VK<PASSWORD>IvbWSSBf<PASSWORD>', '', '', 1, 0, 0, 0, 0, '2018-08-12 00:00:00', '2018-08-12 20:16:27', 1, 0, '0000-00-00 00:00:00', '2018-08-12 12:16:27', 'rH22B58FptIGHWHKivdcIZcQZk6bROtDb7UBramSVCkXtWpTRbINX1lK74xb'),
(2, '2', 'Shinichi', '', 'Sakaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 1, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(3, '12', 'Izumi', '', 'Otani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(4, '13', 'Masanori', '', 'Nishino', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(5, '15', 'Saori', '', 'Ogawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(6, '16', 'Noriko', '', 'To', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(7, '17', 'Yuichiro', '', 'Seri', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(8, '18', 'Mio', '', 'Kuwano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(9, '27', 'Ko', '', 'Jiyo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(10, '32', 'Noriko', '', 'Sonoda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(11, '39', 'Sakae', '', 'Matsunami', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(12, '40', 'Kyosuke', '', 'Fujita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(13, '44', 'Yuina', '', 'Kobayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(14, '46', 'Rumi', '', 'Inenaga', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(15, '48', 'Mitsue', '', 'Ishimaru', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(16, '49', 'Masanori', '', 'Mizuta', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(17, '50', 'Tetsuya', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(18, '51', 'Hideaki', '', 'Urakawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(19, '52', 'Yasuo', '', 'Ishiuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(20, '54', 'Yoko', '', 'Moriyoshi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(21, '55', 'Kanako', '', 'Sonomoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(22, '57', 'Akiko', '', 'Kirioka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(23, '58', 'Nanami', '', 'Nakagawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(24, '59', 'Chiharu', '', 'Ito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(25, '101', 'Takashi', '', 'Higasa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 2, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(26, '2001', 'Yoshihiro', '', 'Hamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 2, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(27, '2005', 'Chisato', '', 'Nohara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(28, '2006', 'Yuka', '', 'Sano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(29, '2007', 'Kumiko', '', 'Uramatsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(30, '2010', 'Kibai', '', 'Shin', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(31, '2011', 'Mitsuhiro', '', 'Hori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(32, '2014', 'Tatsuo', '', 'Yano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(33, '2015', 'Naoki', '', 'Kuroda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(34, '2031', 'Mami', '', 'Iryu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(35, '5001', 'Konomi', '', 'Hirai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 2, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(36, '5003', 'Shuzo', '', 'Fujii', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(37, '5005', 'Yumi', '', 'Fukuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(38, '5009', 'Yumi', '', 'Miyazawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(39, '5010', 'Aya', '', 'Sakai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(40, '5012', 'Yuko', '', 'Maekawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(41, '5033', 'Mariko', '', 'Toyoda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(42, '5036', 'Yoshifumi', '', 'Okada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(43, '5037', 'Rie', '', 'Ono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(44, '5039', 'Satoshi', '', 'Kushida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(45, '5041', 'Tomoko', '', 'Shirai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(46, '5042', 'Rika', '', 'Okamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(47, '5043', 'Junko', '', 'Hayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(48, '5045', 'Yoriko', '', 'Matsuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(49, '6003', 'Norimi', '', 'Matsuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(50, '6010', 'Yuka', '', 'Yamaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(51, '6011', 'Toshihiro', '', 'Takashima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(52, '6013', 'Noriaki', '', 'Tajima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(53, '6014', 'Mayumi', '', 'Nakamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(54, '6021', 'Kazumi', '', 'Kinoshita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(55, '6024', 'Atsuo', '', 'Nitta', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(56, '6025', 'Junzo', '', 'Hirashima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(57, '6029', 'Naoko', '', 'Fujiwara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(58, '6033', 'Yumi', '', 'Kobayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(59, '6043', 'Maki', '', 'Morita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(60, '6046', 'Tomoko', '', 'Aiki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(61, '6048', 'Sayaka', '', 'Tomita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(62, '6052', 'Yukari', '', 'Matsuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(63, '6054', 'Toshiko', '', 'Masuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(64, '7001', 'Kanako', '', 'Morita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(65, '7002', 'Shigetomo', '', 'Tabuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(66, '7003', 'Masanori', '', 'Kawabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(67, '100007', 'Tan', '', 'Liezl', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(68, '110011', 'Sarkhosch', '', 'Artei', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(69, '110014', 'Joel', '', 'Litsey', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(70, '110015', 'Griffith', '', 'Jason', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(71, '110016', 'Moreno', '', 'Benjamin', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(72, '110018', 'Boscarol', '', 'Matteo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(73, '110019', 'Moon', '', 'Donny', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(74, '110025', 'Igbinedion', '', 'Julius', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(75, '110031', '<NAME>', '', 'Jovencio', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(76, '110032', 'Muringer', '', 'Peter', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(77, '110038', 'Anderson', '', 'Daniel', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(78, '110039', 'Litalien', '', 'Andre', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(79, '110054', '<NAME>', '', 'Mary', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(80, '110055', 'Moxham', '', 'Glenn', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(81, '110058', 'Tsergoula', '', 'Aikaterini', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(82, '110065', 'Mccann', '', 'Shaun', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(83, '111104', 'Green', '', 'Thomas', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(84, '111112', 'Bonar', '', 'Alistair', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(85, '111116', 'Mugetto', '', 'Francesco', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(86, '111117', 'Theodore', '', 'Robinson', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(87, '111122', 'Tsuru', '', 'Lorelie', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(88, '111129', 'Cloutier', '', 'Martin', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(89, '111203', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(90, '111212', 'Grzegorz?Wagne', '', 'Zbigniew', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(91, '111218', 'Szabo', '', 'James', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(92, '111219', 'Ball', '', 'Donald', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(93, '111224', '<NAME>', '', 'Terry', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(94, '111225', 'Graham', '', 'Gregory', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(95, '111229', '<NAME>', '', 'Terada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(96, '111233', 'Sadowski', '', 'Jaroslaw', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(97, '111237', 'Laria', '', 'Loreana', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(98, '111245', '<NAME>', '', 'Barnes', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(99, '111248', '<NAME>', '', 'Prouse', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(100, '111250', '<NAME>', '', 'Shelton', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(101, '111265', '<NAME>', '', 'Zezilia', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(102, '111277', 'Francis', '', 'Gaudreau', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(103, '111282', '<NAME> ', '', 'Brimhall', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(104, '111283', 'Jeffrey?Daniel', '', 'Goode', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(105, '111284', '<NAME>', '', 'Farrell', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(106, '111287', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(107, '111288', 'Miles?David', '', 'Penningtonn', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(108, '111289', 'Stefan?Richard', '', 'Nasedkin', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(109, '111290', 'David?Anthony', '', 'Graves', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(110, '111298', 'Marricke?Jenaye', '', 'Metoyer', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(111, '111306', '<NAME>', '', 'Rogelstad', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(112, '111310', 'Terrence?Alexander', '', 'Smith', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(113, '111311', 'Meghan?Rose', '', 'Pegel', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(114, '111312', 'Astha', '', 'Budhathoki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(115, '111313', 'Christopher', '', 'Moriarty', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(116, '111317', '<NAME>', '', 'Mee', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(117, '111318', 'Adnan', '', 'Arshad ', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(118, '111319', '<NAME>', '', 'Azimi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(119, '111320', '<NAME>', '', 'Foulkes ', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(120, '111321', 'Ethan', '', 'Imre', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(121, '111322', 'Chad', '', 'Mclaughlin', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(122, '111323', '<NAME>', '', 'De Leucas Machado ', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(123, '160006', 'Taylor', '', 'Luke', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(124, '160009', 'Armfield', '', 'Mayo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(125, '160016', 'Coates', '', 'Anthony', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(126, '160017', 'Omumasaba', '', 'Violet', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(127, '160018', 'Riley', '', 'Vincent', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(128, '160022', 'Yoshikawa', '', 'Katrina', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(129, '160027', 'Breckenridge', '', 'Steven', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(130, '160030', 'Chipuriro', '', 'Green', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(131, '160043', 'Whitby', '', 'Mark', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(132, '160045', '<NAME>', '', 'Kapila', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(133, '160051', '<NAME>', '', 'Tomlin', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(134, '160054', 'Suja', '', 'Kim', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(135, '160061', 'Tupper', '', 'Mark', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(136, '160065', 'Cecil', '', 'Wayne', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(137, '160070', 'Devignat', '', 'Daniel', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(138, '160072', 'Shaldehi', '', 'Bruce', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(139, '160083', 'Miller', '', 'Adam', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(140, '160087', 'Mauchle', '', 'Guido', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(141, '160104', 'Yamao', '', 'Byakko', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(142, '160116', 'Kemanai', '', 'Jou', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(143, '160121', '<NAME>', '', 'Ojea', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(144, '160126', 'Jones', '', 'Trevor', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(145, '160127', 'Sharpe', '', 'Ryan', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(146, '160128', 'Goodine', '', 'Gerald', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(147, '160130', 'Vembriani', '', 'Anastasia', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(148, '160139', 'Oguro', '', 'Evans', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(149, '160147', 'Debeer', '', 'Charles', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(150, '160160', 'Hewston', '', 'Joshua', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(151, '160165', 'Appuhamy', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(152, '160178', 'Noah', '', 'Mawagali', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(153, '160179', '<NAME>', '', 'Hourigan', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(154, '160183', '<NAME>', '', 'Victor', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(155, '160187', 'Daniel?Egan', '', 'Colm', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(156, '160189', '<NAME>', '', 'Benjamin', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(157, '160197', 'Michael', '', 'Christopher', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(158, '160201', 'Bruce', '', 'Benjamin', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(159, '160210', 'Kinhi', '', 'Ki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(160, '160214', '<NAME>', '', 'Mann', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(161, '160217', '<NAME>', '', 'Lee', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(162, '160218', '<NAME>', '', 'Ryan', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(163, '160220', 'Oliver', '', 'Butzbach', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(164, '160225', '<NAME>', '', 'Haba', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(165, '160226', '<NAME>', '', 'Takahashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(166, '160229', '<NAME>', '', 'Duffy', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(167, '160230', 'Vinz?Bryan', '', 'Perez', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(168, '160231', 'John?Patrick?Bon', '', 'Harder', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(169, '160235', '<NAME>', '', 'Reeves', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6');
INSERT INTO `employees` (`id`, `empno`, `firstname`, `middlename`, `surname`, `name`, `password`, `email`, `contactNo`, `userLevel`, `iDeptId`, `iRegion`, `positionId`, `isLogin`, `dLastChangePword`, `lastLogin`, `ctrlogin`, `isDeactivated`, `created_at`, `updated_at`, `remember_token`) VALUES
(170, '160239', '<NAME>', '', 'Pignolet', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(171, '160242', 'Nicholas', '', 'Boyer', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(172, '160247', 'Magdy?Abdeltawab?Muhammed', '', 'Pasant', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(173, '160249', 'Christopher?Harold', '', 'Barton', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(174, '160250', 'Tompoh', '', 'Mufidah', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(175, '160252', 'Isaac?Sloan', '', 'Adamie', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(176, '160253', '<NAME>', '', 'Siedband', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(177, '160254', 'Simone', '', 'Priolo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(178, '160255', 'Darrin?Sean', '', 'Deuble', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(179, '160257', 'Quinn?Joseph', '', 'Thurston', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(180, '160258', 'James?Solon', '', 'Ryan', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(181, '160259', '<NAME>', '', 'Davis', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(182, '160260', '<NAME>', '', 'Mai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(183, '160261', 'Alicja', '', 'Suska', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(184, '160262', '<NAME>', '', 'Busch', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(185, '160263', '<NAME>', '', 'Erb', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(186, '170001', 'Haeata', '', 'Riki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(187, '170002', '<NAME>', '', 'Shayne', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(188, '170004', 'Miwa', '', 'Constance', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(189, '170005', 'Michael', '', 'Brown', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(190, '170006', 'Mont', '', 'Douglas', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(191, '170007', 'Swepson', '', 'Gary', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(192, '170009', 'Tashiro', '', 'Kenny', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(193, '170010', 'Blair', '', 'Paul', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(194, '170011', 'Patterson', '', 'Richard', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(195, '170012', 'Williams', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(196, '170023', 'Kevin', '', 'Harland', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(197, '170033', 'Mulder', '', 'Jakob', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(198, '170037', '<NAME>', '', 'Estrella', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(199, '170038', '<NAME>', '', 'Maria', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(200, '170042', 'Lee', '', 'Sofja', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(201, '170046', 'Campbell', '', 'Mark', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(202, '170054', 'Jansen', '', 'Maria', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(203, '170055', 'Dycus', '', 'Edward', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(204, '170062', '<NAME>', '', 'Travis', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(205, '170066', 'Hidaka', '', 'Anabelle', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(206, '170071', 'Hostetter', '', 'James', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(207, '170075', '<NAME>', '', 'Taco', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(208, '170076', 'Kanyikwa', '', 'Timothy', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(209, '170083', '<NAME> ', '', 'William', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(210, '170090', 'Ius', '', 'Stefan', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(211, '170091', 'Craigalan', '', 'Whitleyjr', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(212, '170092', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(213, '170096', 'Yong', '', 'Markus', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(214, '170098', '<NAME>', '', 'Brobo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(215, '170101', 'Samson', '', 'Vicky', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(216, '170103', 'Anderson', '', 'Robert', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(217, '170105', 'Brower', '', 'Darren', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(218, '170113', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(219, '170114', 'Tydeman', '', 'Raymond', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(220, '170121', 'Curtis', '', 'James', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(221, '170122', 'Zapata', '', 'Geovanni', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(222, '170130', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(223, '170136', '<NAME>', '', 'Unsworth', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(224, '170143', '<NAME>', '', 'Nguemmogne', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(225, '170144', '<NAME>', '', 'Wood Trinity', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(226, '170146', 'Nicoya', '', 'Saunders', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(227, '170147', '<NAME>', '', 'Nichols', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(228, '170162', 'Luca', '', 'Caputo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(229, '170163', '<NAME>', '', 'Dellow', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(230, '170165', '<NAME>', '', 'Cloward', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(231, '170167', '<NAME>', '', 'Eldridge', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(232, '170168', '<NAME>', '', 'Shibata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(233, '170170', 'Karolina', '', 'Nakayama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(234, '170173', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(235, '170176', 'Chiemi', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(236, '170185', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(237, '170188', '<NAME>', '', 'Williams', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(238, '170189', '<NAME>', '', 'Giles', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(239, '170193', 'Thi?Thu?Hien', '', 'Nguyen', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(240, '170194', 'Conor?', '', 'Gilson', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(241, '170195', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(242, '170196', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(243, '170198', 'Marcia', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(244, '170199', 'Chuluun', '', 'Otogonbayar', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(245, '170200', '<NAME>', '', 'Kelly', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(246, '170201', ' <NAME>', '', 'Paccagnan ', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(247, '170202', 'Otachime', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(248, '170203', 'Jones', '', 'Rudy', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(249, '170204', 'Orhan', '', 'Karadeniz', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(250, '177001', 'Castle', '', 'Christopher', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(251, '177002', 'Sasaki', '', 'Lisette', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(252, '177003', 'Tsujita', '', 'Jeanette', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(253, '177005', 'Matsuo', '', 'Yuri', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(254, '177014', 'Nakamura', '', 'Justina', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(255, '177023', 'Kennth?Michael', '', 'Woodfin', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(256, '177027', '<NAME>', '', 'Beuyet ', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(257, '177032', 'Nicole', '', 'Chase Chrystal', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(258, '177033', '<NAME>', '', 'Kirkpatrik', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(259, '177039', '<NAME>', '', 'Boutouis', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(260, '177040', 'Joseph?Wanyoike', '', 'Wakiugu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(261, '177041', 'Mohamed?Mohamed?Elsayed?Azab', '', 'Donya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(262, '177042', 'Okechukwu', '', 'Okoroma', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(263, '177043', 'Shortley', '', 'Emily', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(264, '177044', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(265, '178007', 'Luz', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(266, '178008', 'Martin', '', 'Mcgowan', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(267, '178009', '<NAME>', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 1, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(268, '178011', 'Kristian', '', 'Bradfield', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(269, '178019', 'Gladys', '', 'Tatsumi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(270, '178028', 'Cindy', '', 'Mclean', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(271, '178030', 'Michael', '', 'Kenney', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(272, '178031', 'Luke', '', 'Bamford', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(273, '178032', 'Arik', '', 'Acosta', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(274, '178036', '<NAME>', '', 'Moss', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(275, '178039', '<NAME> ', '', 'Sison', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(276, '178041', '<NAME>', '', 'Mohamedou', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(277, '178042', 'Ian', '', 'Carter', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(278, '178043', '<NAME>', '', 'Rafael', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(279, '178044', '<NAME>', '', 'Vos', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(280, '178045', '<NAME>', '', 'Batten', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(281, '178047', '<NAME>', '', 'Shaun', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(282, '178048', '<NAME>', '', 'Justine', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(283, '179002', 'Collin', '', 'Bacon', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(284, '179006', 'Ariel', '', 'Morano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(285, '179007', 'David', '', 'Richmond', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(286, '179008', 'Kim', '', 'Damtjernhaug', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(287, '179009', '<NAME>', '', 'Groth', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(288, '179010', '<NAME>', '', 'Justin', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(289, '200009', 'Akina', '', 'Fukuzawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(290, '200012', 'Hiromi', '', 'Sakamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(291, '200014', 'Yoko', '', 'Hamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(292, '200015', 'Miyako', '', 'Iwasaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(293, '200022', 'Yasuko', '', 'Ota', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(294, '200023', 'Mako', '', 'Kawamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(295, '200024', 'Atsuko', '', 'Daimon', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(296, '210004', 'Kyoko', '', 'Shibata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(297, '210006', 'Ayako', '', 'Makita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(298, '210008', 'Yuka', '', 'Iwamatsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(299, '210014', 'Reiko', '', 'Niwa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(300, '210017', 'Satomi', '', 'Nuoke', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(301, '210018', 'Yoshiko', '', 'Muramatsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(302, '210019', 'Norie', '', 'Takagi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(303, '210020', 'Naoko', '', 'Kawamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(304, '210022', 'Asami', '', 'Kondo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(305, '210025', 'Tomoko', '', 'Hotta', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(306, '210027', 'Kayo', '', 'Hirata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(307, '210029', 'Yuki', '', 'Mizutani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(308, '210047', 'Kayoko', '', 'Kato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(309, '210050', 'Miyuki', '', 'Natsume', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(310, '210058', 'Kaori', '', 'Teshima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(311, '210065', 'Chika', '', 'Iba', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(312, '210068', 'Tomomi', '', 'Shimoi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(313, '210069', 'Hiromi', '', 'Tsuchiya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(314, '210073', 'Keiko', '', 'Murata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(315, '210074', 'Ayaka', '', 'Tabata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(316, '210075', 'Asumi', '', 'Nimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(317, '210076', 'Hitomi', '', 'Ono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(318, '210080', 'Megumi', '', 'Arakawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(319, '210082', 'Asami', '', 'Nakano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(320, '210094', 'Ayako', '', 'Ikabata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(321, '210101', 'Kimiko', '', 'Hashimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(322, '210127', 'Kanami', '', 'Sakurai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(323, '210134', 'Kyomi', '', 'Tomiyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(324, '210137', 'Megumi', '', 'Fujitani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(325, '210148', 'Kumi', '', 'Ejiri', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(326, '210154', 'Chikako', '', 'Haga', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(327, '210155', 'Misao', '', 'Muto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(328, '210158', 'Mayuko', '', 'Yoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(329, '210162', 'Saori', '', 'Kozuma', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(330, '210172', 'Makiko', '', 'Minamida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(331, '210173', 'Maki', '', 'Kishikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(332, '210176', 'Hikari', '', 'Okamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(333, '210183', 'Mai', '', 'Iwaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(334, '210196', 'Haruka', '', 'Kuru???e', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(335, '210203', 'Syoko', '', 'Hattori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(336, '210205', 'Megumi', '', 'Higami', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(337, '210215', 'Kayo', '', 'Itoi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6');
INSERT INTO `employees` (`id`, `empno`, `firstname`, `middlename`, `surname`, `name`, `password`, `email`, `contactNo`, `userLevel`, `iDeptId`, `iRegion`, `positionId`, `isLogin`, `dLastChangePword`, `lastLogin`, `ctrlogin`, `isDeactivated`, `created_at`, `updated_at`, `remember_token`) VALUES
(338, '210219', 'Kumi', '', 'Mori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(339, '210239', 'Yoko', '', 'Oboshi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(340, '210242', 'Kunika', '', 'Satomi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(341, '210243', 'Yukiko', '', 'Ando', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(342, '210249', 'Michiyo', '', 'Tamada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(343, '210275', 'Misa', '', 'Omote', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(344, '210287', 'Sachi', '', 'Hamano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(345, '210294', 'Mika', '', 'Ishii', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(346, '210297', 'Akiha', '', 'Nishio', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(347, '210305', 'Mai', '', 'Matsuoka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(348, '210306', 'Hikaru', '', 'Kawamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(349, '210309', 'Miho', '', 'Sugimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(350, '210312', 'Kozue', '', 'Suzuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(351, '210500', 'Mariko', '', 'Okanishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(352, '210502', 'Hiromi', '', 'Munakata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(353, '210519', 'Ayumi', '', 'Tanase', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(354, '210529', 'Keiko', '', 'Osaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(355, '210541', 'Mami', '', 'Nakagawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(356, '210545', 'Shion', '', 'Tominaga', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(357, '210550', 'Rio', '', 'Ota', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(358, '210551', 'Haruna', '', 'Yoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(359, '210555', 'Yuko', '', 'Morioka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(360, '210557', 'Hirona', '', 'Kobayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(361, '210558', 'Natsumi', '', 'Serizawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(362, '210559', 'Megumi', '', 'Miyagishima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(363, '210562', 'Ayuko', '', 'Kojo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(364, '210568', 'Misa', '', 'Ando', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(365, '210569', 'Moe', '', 'Taguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(366, '210572', 'Sayaka', '', 'Makino', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(367, '210574', 'Akane', '', 'Nakashima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(368, '210578', 'Yuri', '', 'Kitagawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(369, '210580', 'Maki', '', 'Mizutani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(370, '210582', 'Toshie', '', 'Maruyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(371, '210583', 'Emiko', '', 'Watanabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(372, '210590', 'Saori', '', 'Nakahara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(373, '210591', 'Yui', '', 'Morii', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(374, '210596', 'Haruka', '', 'Hamano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(375, '210600', 'Wakana', '', 'Chiba', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(376, '210602', 'Mayuko', '', 'Kodama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(377, '210604', 'Aki', '', 'Funahashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(378, '210608', 'Seika', '', 'Omori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(379, '210610', 'Noriko', '', 'Onomura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(380, '210612', 'Shiori', '', 'Yoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(381, '210613', 'Kanna', '', 'Sawamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(382, '210614', 'Erika', '', 'Atarashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(383, '210617', 'Risako', '', 'Yamazaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(384, '210618', 'Mirano', '', 'Wada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(385, '210619', '<NAME>', '', 'Miyamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(386, '210620', 'Miyu', '', 'Inoe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(387, '210621', 'Hiroko', '', 'Omote', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(388, '210624', 'Mitsuko', '', 'Harada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(389, '210627', 'Tsukiko', '', 'Nakata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(390, '210631', 'Junko', '', 'Kato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(391, '210633', 'Mishieri', '', 'Maeda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(392, '210636', 'Junko', '', 'Ebi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(393, '210637', 'Chikako', '', 'Takei', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(394, '210641', 'Fumie', '', 'Iiyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(395, '210642', 'Rina', '', 'Hanai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(396, '210645', 'Kona', '', 'Mizutani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(397, '210653', 'Yuka', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(398, '210656', 'Miki', '', 'Ando', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(399, '210657', 'Ayana', '', 'Shiino', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(400, '210658', 'Nao', '', 'Saeki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(401, '210659', 'Mika', '', 'Furuta', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(402, '210660', 'Kuniko', '', 'Kato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(403, '210664', 'Natsumi', '', 'Okajima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(404, '210665', 'Ayumi', '', 'Kawai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(405, '210666', 'Yukie', '', 'Kumazawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(406, '210667', 'Naoko', '', 'Kurihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(407, '210668', 'Maki', '', 'Sasaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(408, '210669', 'Sayaka', '', 'Naito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(409, '210670', 'Ami', '', 'Hibino', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(410, '210671', 'Miho', '', 'Furuta', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(411, '210672', 'Etsuko', '', 'Iwasaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(412, '210674', 'Mika', '', 'Shibatsuji', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(413, '210675', 'Hikari', '', 'Tonobe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(414, '210677', 'Ai', '', 'Kiwata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(415, '210678', 'Maki', '', 'Hokazono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(416, '210680', 'Sae', '', 'Ogawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(417, '210682', 'Miwa', '', 'Kurata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(418, '210683', 'Ryoko', '', 'Noguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(419, '210686', 'Yukiko', '', 'Anno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(420, '210687', 'Takayo', '', 'Uemura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(421, '210688', 'Yuriko', '', 'Shimizu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(422, '210689', 'Naomi', '', 'Nakamide', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(423, '210690', 'Chihiro', '', 'Hayakawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(424, '210691', 'Kaho', '', 'Nadachi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(425, '210693', 'Chizuko', '', 'Atsuta', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(426, '210694', 'Yukiko', '', 'Mori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(427, '260001', 'Hiroko', '', 'Okahashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(428, '260002', 'Noriko', '', 'Komatsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(429, '260004', 'Mika', '', 'Ambaru', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(430, '260005', 'Ruriko', '', 'Suzuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(431, '260006', 'Yuka', '', 'Kimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(432, '260007', 'Yasue', '', 'Ozaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(433, '260008', 'Manami', '', 'Ito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(434, '260013', 'Keiko', '', 'Inuyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(435, '260018', 'Kaoru', '', 'Ueda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(436, '260019', 'Hisae', '', 'Mizoe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(437, '260030', 'Shino', '', 'Sakai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(438, '260034', 'Yonsuku', '', 'Kimu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(439, '260037', 'Yukie', '', 'Yoneda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(440, '260038', 'Chiaki', '', 'Goto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(441, '260040', 'Reiko', '', 'Ichikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(442, '260044', 'Makiko', '', 'Utsunomiya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(443, '260046', 'Rie', '', 'Yoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(444, '260051', 'Mami', '', 'Yoneda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(445, '260055', 'Hiroko', '', 'Mori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(446, '260057', 'Yukiko', '', 'Kawaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(447, '260058', 'Akemi', '', 'Hamano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(448, '260062', 'Izumi', '', 'Ono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(449, '260063', 'Noriko', '', 'Matsumoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(450, '260069', 'Miyako', '', 'Shintani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(451, '260077', 'Yukari', '', 'Nakashio', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(452, '260082', 'Maki', '', 'Takechi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(453, '260083', 'Yuko', '', 'Fujimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(454, '260087', 'Hideko', '', 'Miura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(455, '260093', 'Kazumi', '', 'Sasao', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(456, '260095', 'Yumiko', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(457, '260096', 'Maruko', '', 'Teramae', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(458, '260098', 'Naoko', '', 'Kamada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(459, '260099', 'Miyuki', '', 'Nishide', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(460, '260101', 'Yukiko', '', 'Hayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(461, '260102', 'Masumi', '', 'Hiyoshi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(462, '260103', 'Kiyomi', '', 'Marutani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(463, '260105', 'Rie', '', 'Shikatani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(464, '260109', 'Mayumi', '', 'Komatsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(465, '260115', 'Akemi', '', 'Mori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(466, '260116', 'Rina', '', 'Kadoya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(467, '260119', 'Yuko', '', 'Tanaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(468, '260120', 'Makiko', '', 'Komaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(469, '260122', 'Yoko', '', 'Deguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(470, '260130', 'Satomi', '', 'Noda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(471, '260134', 'Yasuko', '', 'Sugiyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(472, '260137', 'Kayo', '', 'Semachi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(473, '260145', 'Marina', '', 'Tsutsuguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(474, '260148', 'Nozomi', '', 'Sugino', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(475, '260149', 'Kaori', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(476, '260150', 'Itoko', '', 'Yoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(477, '260155', 'Ayumi', '', 'Ishimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(478, '260156', 'Mari', '', 'Shimomugi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(479, '260159', 'Yukari', '', 'Kimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(480, '260164', 'Maiko', '', 'Tada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(481, '260166', 'Nami', '', 'Ayano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(482, '260171', 'Sachiko', '', 'Nakayama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(483, '260172', 'Keiko', '', 'Fukuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(484, '260173', 'Yuko', '', 'Yoshizawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(485, '260174', 'Michiyo', '', 'Okura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(486, '260183', 'Namiko', '', 'Kumagaya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(487, '260190', 'Kikuko', '', 'Katsui', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(488, '260191', 'Sachie', '', 'Kubota', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(489, '260201', 'Yasuyo', '', 'Yokoyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(490, '260209', 'Mariko', '', 'Fujita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(491, '260212', 'Yuko', '', 'Moriyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(492, '260213', 'Kuniko', '', 'Suga', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(493, '260219', 'Ayumi', '', 'Nakabayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(494, '260223', 'Rika', '', 'Uotsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(495, '260225', 'Mariko', '', 'Miyake', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(496, '260237', 'Shizuka', '', 'Kuroki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(497, '260240', 'Mari', '', 'Takagi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(498, '260251', 'Eri', '', 'Ueda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(499, '260264', 'Masayo', '', 'Yoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(500, '260267', 'Mai', '', 'Mikozawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(501, '260271', 'Naoko', '', 'Tanaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(502, '260272', 'Yoshiko', '', 'Kotegawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(503, '260276', 'Saeko', '', 'Kitano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(504, '260281', 'Tomoe', '', 'Nakagawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(505, '260287', 'Makiko', '', 'Shinoda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(506, '260292', 'Hidekazu', '', 'Tanaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(507, '260293', 'Kuniko', '', 'Tatsumi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6');
INSERT INTO `employees` (`id`, `empno`, `firstname`, `middlename`, `surname`, `name`, `password`, `email`, `contactNo`, `userLevel`, `iDeptId`, `iRegion`, `positionId`, `isLogin`, `dLastChangePword`, `lastLogin`, `ctrlogin`, `isDeactivated`, `created_at`, `updated_at`, `remember_token`) VALUES
(508, '260295', 'Mami', '', 'Fujishiro', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(509, '260297', 'Chiharu', '', 'Yokokawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(510, '260303', 'Junko', '', 'Nakamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(511, '260305', 'Mamiko', '', 'Ishii', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(512, '260310', 'Midori', '', 'Bando', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(513, '260312', 'Noriko', '', 'Sugimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(514, '260319', 'Tomomi', '', 'Kono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(515, '260323', 'Miyuki', '', 'Tanigaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(516, '260336', 'Satomi', '', 'Shin', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(517, '260339', 'Asuka', '', 'Ashida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(518, '260342', 'Megumi', '', 'Takahashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(519, '260349', 'Emiko', '', 'Morimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(520, '260350', 'Mika', '', 'Maruyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(521, '260352', 'Naho', '', 'Nogami', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(522, '260360', 'Mihoko', '', 'Kobayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(523, '260361', 'Mariko', '', 'Oka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(524, '260363', 'Yuko', '', 'Amano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(525, '260364', 'Yuko', '', 'Matsui', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(526, '260366', 'Aki', '', 'Okuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(527, '260372', 'Madoka', '', 'Iguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(528, '260374', 'Rui', '', 'Iwasaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(529, '260380', 'Chie', '', 'Nishino', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(530, '260385', 'Chiyako', '', 'Imaishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(531, '260391', 'Nao', '', 'Nosaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(532, '260392', 'Saori', '', 'Arimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(533, '260395', 'Riho', '', 'Nakayama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(534, '260396', 'Tomoko', '', 'Shigehisa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(535, '260397', 'Kimi', '', 'Fujimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(536, '260415', 'Kie', '', 'Murata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(537, '260416', 'Manami', '', 'Sano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(538, '260417', 'Sachiko', '', 'Uchida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(539, '260421', 'Hiroko', '', 'Miki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(540, '260425', 'Kazu', '', 'Mizuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(541, '260437', 'Akiko', '', 'Hata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(542, '260440', 'Azumi', '', 'Tanaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(543, '260441', 'Wakaba', '', 'Bingo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(544, '260442', 'Yuka', '', 'Shimizu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(545, '260443', 'Sakurako', '', 'Ikeguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(546, '260451', 'Yukari', '', 'Makimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(547, '260453', 'Megumi', '', 'Kawaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(548, '260454', 'Yuri', '', 'Maruyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(549, '260457', 'Yukie', '', 'Tachibana', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(550, '260458', 'Maki', '', 'Fukui', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(551, '260459', 'Anna', '', 'Narita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(552, '260460', 'Akari', '', 'Yamashita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(553, '260463', 'Kae', '', 'Nasu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(554, '260464', 'Manami', '', 'Imura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(555, '260466', 'Sayaka', '', 'Tani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(556, '260471', 'Kyoko', '', 'Yoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(557, '260472', 'Kayo', '', 'Ishihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(558, '260473', 'Junko', '', 'Takeda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(559, '260479', 'Risa', '', 'Kotera', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(560, '260481', 'Azusa', '', 'Tanizawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(561, '260484', 'Yukiko', '', 'Morita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(562, '260487', 'Mami', '', 'Kawahira', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(563, '260488', 'Hirono', '', 'Nishiwaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(564, '260490', 'Hikari', '', 'Yasuga', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(565, '260491', 'Masako', '', 'Nakayama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(566, '260492', 'Yukiko', '', 'Nakao', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(567, '260493', 'Yuri', '', 'Haruna', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(568, '260494', 'Aya', '', 'Nakamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(569, '260498', 'Tomomi', '', 'Fujita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(570, '260499', 'Akiko', '', 'Matsura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(571, '260500', 'Chiaki', '', 'Yamaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(572, '260501', 'Tomoko', '', 'Yoshitake', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(573, '260502', 'Ikuyo', '', 'Miyata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(574, '260503', 'Erina', '', 'Matsumoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(575, '260504', 'Yuri', '', 'Hamanoi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(576, '260507', 'Minori', '', 'Isoda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(577, '260510', 'Momoko', '', 'Nitta', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(578, '260511', 'Miyu', '', 'Suzuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(579, '260513', 'Rie', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(580, '260516', 'Maria', '', 'Fukuo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(581, '260518', 'Saki', '', 'Ueda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(582, '260520', 'Kana', '', 'Tanaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(583, '260522', 'Aiko', '', 'Kitagawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(584, '260528', 'Azusa', '', 'Nakatani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(585, '260531', 'Syoko', '', 'Kimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(586, '260532', 'Arisai', '', 'Nishihayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(587, '260535', 'Kayo', '', 'Ito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(588, '260536', 'Erina', '', 'Kawaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(589, '260542', 'Yukie', '', 'Nagano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(590, '260544', 'Haruka', '', 'Matsui', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(591, '260547', 'Natsumi', '', 'Yamaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(592, '260548', 'Tamami', '', 'Ikeda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(593, '260550', 'Yuko', '', 'Sasaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(594, '260552', 'Mayuko', '', 'Kosake', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(595, '260554', 'Chika', '', 'Kinoshita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(596, '260555', 'Yoko', '', 'Ishikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(597, '260558', 'Natsumi', '', 'Beppu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(598, '260560', 'Eri', '', 'Katayama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(599, '260562', 'Chiho', '', 'Goto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(600, '260563', 'Haruka', '', 'Murai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(601, '260564', 'Natsuyo', '', 'Sakai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(602, '260570', 'Kanami', '', 'Ueda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(603, '260575', 'Miyuki', '', 'Nagahama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(604, '260579', 'Ayaka', '', 'Iwanaga', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(605, '260580', 'Kana', '', 'Kitsugi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(606, '260582', 'Seiko', '', 'Yamaso', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(607, '260583', 'Yuko', '', 'Komatsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(608, '260584', 'Natsuki', '', 'Motoya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(609, '260585', 'Yuko', '', 'Oka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(610, '260586', 'Kazue', '', 'Takashima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(611, '260589', 'Keiko', '', 'Hayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(612, '260590', 'Miki', '', 'Kitagawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(613, '260593', 'Reika', '', 'Araki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(614, '260595', 'Yumiko', '', 'Nagata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(615, '260596', 'Saki', '', 'Terawaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(616, '260597', 'Saori', '', 'Mori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(617, '260600', 'Noriko', '', 'Murakami', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(618, '260601', 'Yuzuka', '', 'Kano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(619, '260602', 'Atsuko', '', 'Kokita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(620, '260604', 'Yuki', '', 'Nakai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(621, '260606', 'Ikumi', '', 'Nishimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(622, '260607', 'Nami', '', 'Matsubara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(623, '260609', 'Rika', '', 'Nagai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(624, '260611', 'Minako', '', 'Endo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(625, '260612', 'Hanako', '', 'Kono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(626, '260613', 'Yayoi', '', 'Uto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(627, '260615', 'Yuki', '', 'Sugawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(628, '260618', 'Kiyoko', '', 'Nakamichi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(629, '260619', 'Haruko', '', 'Adachi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(630, '260620', 'Izumi', '', 'Nishikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(631, '260622', 'Mami', '', 'Mukumoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(632, '260623', 'Yurie', '', 'Matsuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(633, '260624', 'Natsuko', '', 'Tsujii', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(634, '260625', 'Misuzu', '', 'Muguruma', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(635, '260626', 'Manami', '', 'Kai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(636, '260627', 'Yukako', '', 'Goto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(637, '260629', 'Sayaka', '', 'Kondo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(638, '260631', 'Shion', '', 'Inoe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(639, '260632', 'Haruka', '', 'Iwai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(640, '260633', 'Rira', '', 'Imai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(641, '260634', 'Erika', '', 'Mori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(642, '260635', 'Tomoe', '', 'Yoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(643, '260636', 'Tsumugi', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(644, '260637', 'Eriko', '', 'Kurimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(645, '260643', 'Rika', '', 'Hasegawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(646, '260646', 'Eriko', '', 'Nagato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(647, '260648', 'Yukiko', '', 'Kamba', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(648, '260650', 'Tamiko', '', 'Kuwamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(649, '260651', 'Yoko', '', 'Shikata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(650, '260652', 'Hiroko', '', 'Yasuno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(651, '260654', 'Yuka', '', 'Kanzaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(652, '260655', 'Nami', '', 'Horimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(653, '260656', 'Yuka', '', 'Komichi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(654, '260657', 'Emi', '', 'Takahashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(655, '260658', 'Miho', '', 'Nakatomi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(656, '260660', 'Chisato', '', 'Sawada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(657, '260662', 'Haruka', '', 'Kikuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(658, '260663', 'Seiko', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(659, '260664', 'Manami', '', 'Ishikura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(660, '260666', 'Kozue', '', 'Hidaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(661, '260667', 'Saki', '', 'Kawamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(662, '260668', 'Machika', '', 'Hayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(663, '260669', 'Tomoko', '', 'Onishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(664, '260671', 'Chiharu', '', 'Ueki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(665, '260676', 'Nana', '', 'Matsuoka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(666, '260677', 'Yoko', '', 'Tada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(667, '270001', 'Noriko', '', 'Kuribayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(668, '270003', 'Ritsuko', '', 'Miyamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(669, '270008', 'Eiko', '', 'Kato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(670, '270009', 'Tomoko', '', 'Aoyagi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(671, '270010', 'Miyoko', '', 'Watanabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(672, '270011', 'Akiko', '', 'Nagata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(673, '270013', 'Hitomi', '', 'Inoe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(674, '270016', 'Chiho', '', 'Soeda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(675, '270017', 'Nami', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(676, '270018', 'Kaya', '', 'Gyogi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(677, '270023', 'Kaori', '', 'Minematsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6');
INSERT INTO `employees` (`id`, `empno`, `firstname`, `middlename`, `surname`, `name`, `password`, `email`, `contactNo`, `userLevel`, `iDeptId`, `iRegion`, `positionId`, `isLogin`, `dLastChangePword`, `lastLogin`, `ctrlogin`, `isDeactivated`, `created_at`, `updated_at`, `remember_token`) VALUES
(678, '270028', 'Takako', '', 'Saito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(679, '270029', 'Yumiko', '', 'Shimokawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(680, '270036', 'Ikuko', '', 'Moroka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(681, '270041', 'Ryuko', '', 'Mukai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(682, '270043', 'Tomoko', '', 'Mizuno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(683, '270047', 'Hiroko', '', 'Ishikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(684, '270048', 'Miyuki', '', 'Hojo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(685, '270050', 'Norie', '', 'Okubo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(686, '270051', 'Ryoko', '', 'Atsuta', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(687, '270052', 'Mariko', '', 'Kawazoe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(688, '270053', 'Kyoko', '', 'Kurata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(689, '270057', 'Mami', '', 'Higuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(690, '270058', 'Kyoko', '', 'Koresawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(691, '270060', 'Mayumi', '', 'Hara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(692, '270061', 'Naoko', '', 'Osajima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(693, '270077', 'Yuka', '', 'Fukushima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(694, '270078', 'Akiyo', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(695, '270080', 'Miho', '', 'Gondo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(696, '270085', 'Masae', '', 'Tatara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(697, '270086', 'Saori', '', 'Mukai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(698, '270089', 'Yoshiko', '', 'Hayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(699, '270092', 'Mihoko', '', 'Aoki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(700, '270093', 'Yumi', '', 'Hatanaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(701, '270094', 'Chie', '', 'Tanihira', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(702, '270097', 'Hiroko', '', 'Murai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(703, '270100', 'Nahori', '', 'Yoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(704, '270101', 'Yasuyo', '', 'Danjo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(705, '270102', 'Yumiko', '', 'Waseda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(706, '270104', 'Tamami', '', 'Yoshihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(707, '270106', 'Yoko', '', 'Gibura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(708, '270115', 'Hisayo', '', 'Ono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(709, '270116', 'Tomoko', '', 'Watanabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(710, '270118', 'Kyoko', '', 'Nishio', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(711, '270122', 'Hiroko', '', 'Numa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(712, '270129', 'Natsuko', '', 'Tonai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(713, '270151', 'Kumiko', '', 'Sakamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(714, '270154', 'Yukie', '', 'Horikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(715, '270155', 'Yukie', '', 'Shibata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(716, '270160', 'Yumi', '', 'Mori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(717, '270161', 'Tomoko', '', 'Koda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(718, '270166', 'Yukiko', '', 'Inaba', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(719, '270182', 'Shino', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(720, '270185', 'Megumi', '', 'Jono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(721, '270186', 'Megumi', '', 'Ueno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(722, '270213', 'Miyuki', '', 'Mori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(723, '270214', 'Kaori', '', 'Matsuo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(724, '270215', 'Misaki', '', 'Nakayama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(725, '270216', 'Haruka', '', 'Katsume', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(726, '270219', 'Yoshiko', '', 'Watanabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(727, '270221', 'Yukie', '', 'Miyazaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(728, '270226', 'Yuka', '', 'Miyasako', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(729, '270227', 'Anna', '', 'Tanaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(730, '270237', 'Yuriko', '', 'Kawabuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(731, '270241', 'Terumi', '', 'Tsuboi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(732, '270247', 'Yoshie', '', 'Maeji', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(733, '270254', 'Riho', '', 'Miyake', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(734, '270256', 'Eri', '', 'Okamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(735, '270257', 'Kayo', '', 'Ishida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(736, '270262', 'Sachiho', '', 'Miyamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(737, '270264', 'Arisa', '', 'Yoshino', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(738, '270267', 'Mariko', '', 'Maesono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(739, '270269', 'Norie', '', 'Hirayama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(740, '270274', 'Suzuko', '', 'Kawabata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(741, '270276', 'Maki', '', 'Hoshimaru', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(742, '270282', 'Suzuyo', '', 'Seto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(743, '270286', 'Sakiko', '', 'Tawata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(744, '270291', 'Nozomi', '', 'Morinaga', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(745, '270293', 'Kumiko', '', 'Tanaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(746, '270303', 'Hiromi', '', 'Nyuwa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(747, '270304', 'Misaki', '', 'Wakita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(748, '270306', 'Reiko', '', 'Yamane', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(749, '270310', 'Yuko', '', 'Takaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(750, '270315', 'Hiroko', '', 'Ushioda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(751, '270316', 'Kumiko', '', 'Oue', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(752, '270317', 'Yuki', '', 'Takeda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(753, '270320', 'Junko', '', 'Tomozawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(754, '270323', 'Ayako', '', 'Nakamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(755, '270329', 'Aya', '', 'Miyazaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(756, '270330', 'Kei', '', 'Kuramoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(757, '270331', 'Chiaki', '', 'Kawashita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(758, '270332', 'Mutsumi', '', 'Hino', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(759, '270336', 'Naoko', '', 'Hiru', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(760, '270337', 'Hitomi', '', 'Uehara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(761, '270338', 'Eriko', '', 'Shiraishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(762, '270343', 'Yumiko', '', 'Fujimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(763, '270345', 'Shiomi', '', 'Inoe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(764, '270351', 'Chisato', '', 'Nakashita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(765, '270353', 'Chiaki', '', 'Harasaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(766, '270354', 'Saki', '', 'Kojo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(767, '270355', 'Wakiko', '', 'Nagami', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(768, '270356', 'Hitomi', '', 'Nanjo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(769, '270358', 'Mizuki', '', 'Fujimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(770, '270360', 'Yuko', '', 'Motoshima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(771, '270361', 'Yuka', '', 'Kataoka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(772, '270363', 'Emi', '', 'Okumura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(773, '270365', 'Naoko', '', 'Morimune', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(774, '270366', 'Yoshika', '', 'Orita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(775, '270369', 'Misato', '', 'Okabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(776, '270370', 'Yuka', '', 'Tachibana', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(777, '270372', 'Hiromi', '', 'Fujioka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(778, '270374', 'Ayuko', '', 'Iwamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(779, '270375', 'Yoko', '', 'Wasai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(780, '270378', 'Kaori', '', 'Iwahashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(781, '270380', 'Hiromi', '', 'Sakashita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(782, '270381', 'Azusa', '', 'Matsuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(783, '270383', 'Yumi', '', 'Gondo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(784, '270384', 'Sakiko', '', 'Fujishige', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(785, '270386', 'Rie', '', 'Shirakura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(786, '270391', 'Haruna', '', 'Tsukamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(787, '270392', 'Nina', '', 'Miyata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(788, '270394', 'Mone', '', 'Watabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(789, '270395', 'Hiroko', '', 'Tanaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(790, '270397', 'Tomoko', '', 'Takata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(791, '270398', 'Junko', '', 'Masaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(792, '270400', 'Emiko', '', 'Shimada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(793, '270401', 'Rika', '', 'Buranchado', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(794, '270402', 'Mihoko', '', 'Mori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(795, '270404', 'Saho', '', 'Kurihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(796, '270406', 'Yumika', '', 'Nishidome', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(797, '270407', 'Mai', '', 'Hayakawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(798, '270408', 'Yukari', '', 'Izaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(799, '270409', 'Kanami', '', 'Baba', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(800, '270410', 'Juria', '', 'Buryuwa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(801, '270411', 'Saika', '', 'Furukawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(802, '270412', 'Natsuki', '', 'Mino', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(803, '270413', 'Yuki', '', 'Yoshimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(804, '270414', 'Tomoko', '', 'Tsugami', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(805, '270416', 'Keiko', '', 'Shichiri', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(806, '270418', 'Akiko', '', 'Komeda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(807, '270419', 'Yui', '', 'Fujita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(808, '270420', 'Mai', '', 'Suzuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(809, '270425', 'Yukiko', '', 'Tada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(810, '270426', 'Hiromi', '', 'Egawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(811, '270427', 'Chiharu', '', 'Umehara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(812, '270429', 'Asami', '', 'Sasaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(813, '270430', 'Nozomi', '', 'Shimazaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(814, '270431', 'Reina', '', 'Maekawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(815, '270433', 'Akiko', '', 'Kiriishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(816, '270435', 'Mayumi', '', 'Yokohata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(817, '270438', 'Saki', '', 'Nakashima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(818, '270439', 'Chie', '', 'Yano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(819, '270440', 'Kumi', '', 'Yoshikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(820, '270441', 'Mitsuko', '', 'Yamada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(821, '270442', 'Ikue', '', 'Akahoshi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(822, '270443', 'Maho', '', 'Yamazaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(823, '270444', 'Maiko', '', 'Chikamori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(824, '279003', 'Atsuko', '', 'Komori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(825, '279005', 'Tomoko', '', 'Honda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(826, '279006', 'Tomoyo', '', 'Ura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(827, '279008', 'Aya', '', 'Mitsuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(828, '279012', 'Mayuko', '', 'Yamaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(829, '279013', 'Yoko', '', 'Tsuji', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(830, '279015', 'Naomi', '', 'Hamada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(831, '279018', 'Junko', '', 'Taniguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(832, '279024', 'Shie', '', 'Oyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(833, '279033', 'Akiko', '', 'Toyokura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(834, '279050', 'Manami', '', 'Oba', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(835, '279052', 'Saori', '', 'Yokotake', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(836, '279060', 'Mieko', '', 'Obinata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(837, '279064', 'Hiroko', '', 'Kusano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(838, '279066', 'Suzuko', '', 'Yamashita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(839, '279070', 'Kanako', '', 'Asayama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(840, '279071', 'Mei', '', 'Ota', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(841, '279074', 'Haruka', '', 'Sakogashira', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(842, '279076', 'Asuka', '', 'Kitagawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(843, '279078', 'Ikumi', '', 'Tanaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(844, '279079', 'Makiko', '', 'Hayashita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(845, '279080', 'Mariko', '', 'Watanabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(846, '279081', 'Satoko', '', 'Futamata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(847, '279082', 'Ayami', '', 'Tanioka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6');
INSERT INTO `employees` (`id`, `empno`, `firstname`, `middlename`, `surname`, `name`, `password`, `email`, `contactNo`, `userLevel`, `iDeptId`, `iRegion`, `positionId`, `isLogin`, `dLastChangePword`, `lastLogin`, `ctrlogin`, `isDeactivated`, `created_at`, `updated_at`, `remember_token`) VALUES
(848, '279083', 'Taeko', '', 'Kawano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(849, '279084', 'Hiromi', '', 'Emoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(850, '280001', 'Minako', '', 'Homma', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(851, '280002', 'Mayumi', '', 'Uchio', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(852, '280003', 'Kayoko', '', 'Nagata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 2, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(853, '280006', 'Masako', '', 'Shimoda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(854, '280008', 'Orie', '', 'Oshima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(855, '280009', 'Asako', '', 'Kirihata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(856, '280011', 'Reina', '', 'Nagakawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(857, '280013', 'Mika', '', 'Michinishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(858, '280014', 'Yuka', '', 'Nakamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(859, '280018', 'Mariko', '', 'Fukushima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(860, '280020', 'Tomoko', '', 'Abe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(861, '280050', 'Yayoi', '', 'Onitsuka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(862, '280057', 'Sanae', '', 'Fukushima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(863, '280061', 'Miharu', '', 'Omura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(864, '280062', 'Chie', '', 'Minamizaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(865, '280075', 'Maki', '', 'Ban???do', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(866, '280092', 'Minako', '', 'Yoshizu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(867, '280094', 'Mariko', '', 'Tilki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(868, '280099', 'Maiko', '', 'Kishita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(869, '280105', 'Akiko', '', 'Kodama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(870, '280109', 'Ai', '', 'Fukushima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(871, '280126', 'Arisa', '', 'Soma', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(872, '280127', 'Akari', '', 'Iwasaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(873, '280130', 'Kazuyo', '', 'Fukuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(874, '280132', 'Tomoko', '', 'Mitsuiki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(875, '280137', 'Kazumi', '', 'Koba', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(876, '280138', 'Michiko', '', 'Hondo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(877, '280140', 'Miu', '', 'Kubota', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(878, '280141', 'Misa', '', 'Yamatoko', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(879, '280142', 'Akari', '', 'Uchimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(880, '280145', 'Ai', '', 'Sawada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(881, '280146', 'Ayaka', '', 'Taharabaru', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(882, '280147', 'Kanako', '', 'Mine', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(883, '280148', 'Ai', '', 'Arima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(884, '280149', 'Sayoko', '', 'Katoku', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(885, '280150', 'Chiyaka', '', 'Chosa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(886, '280151', 'Ayame', '', 'Nagata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(887, '280153', 'Ayari', '', 'Mitsunaga', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(888, '280156', 'Shoko', '', 'Uemura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(889, '280158', 'Ai', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(890, '280160', 'Tomoyo', '', 'Iida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(891, '280161', 'Sumie', '', 'Kokushi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(892, '280163', 'Mari', '', 'Tanabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(893, '280164', 'Hifumi', '', 'Kawabata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(894, '290005', 'Haruna', '', 'Omine', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(895, '290007', 'Yoriko', '', 'Agena', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(896, '290008', 'Ayano', '', 'Takamiyagi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(897, '290012', 'Yuko', '', 'Kakazu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(898, '290013', 'Chigusa', '', 'Oshiro', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(899, '290014', 'Yui', '', 'Irimatsuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(900, '290017', 'Maki', '', 'Oshiro', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(901, '290018', 'Ayako', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(902, '290020', 'Azumi', '', 'Miyagi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(903, '290021', 'Sayuri', '', 'Yonamine', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(904, '290022', 'Reina', '', 'Kakihana', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(905, '290023', 'Megumi', '', 'Abe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(906, '300003', 'Tomiko', '', 'Sakaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(907, '300010', 'Tatsuki', '', 'Koda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(908, '300011', 'Kunihiro', '', 'Nakai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(909, '300013', 'Mutsuko', '', 'Nagaya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(910, '300021', 'Eriko', '', 'Hirose', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(911, '300024', 'Miki', '', 'Fujisawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(912, '300035', 'Akihiro', '', 'Sasaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(913, '300036', 'Izumi', '', 'Narushima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(914, '300041', 'Ai', '', 'Higashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(915, '300045', 'Aiko', '', 'Terabayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(916, '300055', 'Misaki', '', 'Umezawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(917, '300060', 'Fumika', '', 'Hashimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(918, '300061', 'Takuya', '', 'Ozawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(919, '300063', 'Kiyomi', '', 'Kitagawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(920, '300064', 'Tatsuya', '', 'Suwa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(921, '400001', 'Ramos', '', 'Jhoan', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(922, '400013', 'Kwiatek', '', 'Jesse', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(923, '400014', 'Sam', '', 'Reed', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(924, '400031', 'Bovell', '', 'Andrew', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(925, '400032', '<NAME>', '', 'Kinjo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(926, '400033', '<NAME>', '', 'Tremblay', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(927, '400034', 'Marvis', '', 'Mayfield', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(928, '400044', '<NAME>', '', 'Webb', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(929, '400046', 'Strout', '', 'Paul', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(930, '400048', 'Mayhew', '', 'Derek', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(931, '400051', 'Mathieu', '', 'Meco', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(932, '400058', 'Hall', '', 'Jermaine', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(933, '400070', '<NAME>', '', 'Wilhelmsson', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(934, '400072', 'Idemura', '', 'Rosario', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(935, '400082', 'Ronald', '', 'Prins', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(936, '400083', 'Brandt', '', 'Kenneth', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(937, '400084', 'Schauman', '', 'Todd', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(938, '400086', 'Huet', '', 'Roland', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(939, '400100', 'Halliwell', '', 'Suzanne', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(940, '400109', 'Kepeler', '', 'Filipe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(941, '400110', 'Gamaralalage', '', 'Disni', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(942, '400112', 'Lagdamen', '', 'Edelvie', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(943, '400118', 'Garcia', '', 'Marcos', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(944, '400201', '<NAME>', '', 'Cesar', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(945, '400213', 'Scotland', '', 'Roy', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(946, '400215', 'Roka', '', 'Bhuwan', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(947, '400218', 'Gauchan', '', 'Rajesh', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(948, '400220', 'Sogabe', '', 'Aileen', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(949, '400222', '<NAME>', '', 'Johan', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(950, '400228', 'Baasan', '', 'Soyolochimeg', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(951, '400236', 'Ntumngia', '', 'Ngwawah', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(952, '400239', 'Quering', '', 'John', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(953, '400242', 'Achara', '', 'Phlomena', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(954, '400243', 'Rehberger', '', 'Anja', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(955, '400251', '<NAME> ', '', 'Graham', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(956, '400257', 'Kato', '', 'Anna', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(957, '400262', '<NAME>', '', 'Tamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(958, '400264', 'Calvert', '', 'James', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(959, '400275', 'Weatherston', '', 'Ryan', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(960, '400279', 'Warren', '', 'Christopher', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(961, '400280', 'Brown', '', 'David', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(962, '400284', 'Lovell', '', 'Daniel', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(963, '400288', 'Milang?Oderiong', '', 'Jeff', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(964, '400290', 'Markovic', '', 'Djordje', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(965, '400291', '<NAME>', '', 'John', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(966, '400296', '<NAME>', '', 'Dalaorao', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(967, '400298', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(968, '400300', 'Aldrin?Allen?Francisco', '', 'Lejano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(969, '400302', 'Preston?Scott', '', 'Cajahuaman', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(970, '400304', '<NAME>', '', 'Stevens', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(971, '400308', '<NAME>', '', 'Dimacale', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(972, '400311', 'Jeffery?Glenn', '', 'Ammons', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(973, '400316', 'Masami?Sorwandi', '', 'Andrew', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(974, '400318', 'Ebelechukwu?Anna', '', 'Nwokobia', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(975, '400323', 'Curtis Lorenzo', '', 'Daivs', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(976, '400325', 'Martin', '', 'Nuwamanya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(977, '400326', '<NAME>', '', 'Debow', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(978, '400328', '<NAME>', '', 'Westin', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(979, '400331', 'Jr?William?Carroll', '', 'Hobbs', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(980, '400335', 'Kenny?Gerum?Tusa', '', 'Villaluna', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(981, '400338', '<NAME>', '', 'Francis', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(982, '400340', 'Broghan?Ryan', '', 'Hawver', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(983, '400343', 'Gergely', '', 'Orso', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(984, '400345', '<NAME>', '', 'Woodward', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(985, '400348', 'Natalia', '', 'Salina', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(986, '400349', 'Roman', '', 'Zaitsev', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(987, '400351', '<NAME>', '', 'Joiner', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(988, '400353', 'Meriem', '', 'Hacheni', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(989, '400355', '<NAME>', '', 'Tanaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(990, '400356', 'Monde', '', 'Rehamnia', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(991, '400359', 'Steven?James?Barr', '', 'Mitchell', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(992, '400364', '<NAME>', '', 'Emeline', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(993, '400365', 'Rojas?Isaias', '', 'Duarte', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(994, '400367', 'Jamie?Lou?Lee', '', 'Borile', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(995, '400369', 'Fitzroy?Uriah', '', 'Daley', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(996, '400371', 'Diane?Valenzuela', '', 'Gubatanga', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(997, '400373', 'Uyanga', '', 'Munkhbaatar', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(998, '400375', 'Oliver?Cucio', '', 'Rivera', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(999, '400377', 'Michael?Emmanuel?Salanguit', '', 'Calusin', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1000, '400378', 'Melody?Mia?Soriano', '', 'Furukawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1001, '400379', 'Laura?Emily', '', 'Craigen', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1002, '400380', 'Mia?Mae?Love?Ayala', '', 'Barrios', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1003, '400381', 'Christine?Mendez', '', 'Mikuma', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1004, '400382', '<NAME>', '', 'Antonano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1005, '400383', 'Kenta', '', 'Rimando', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1006, '400384', 'Samantha?Jane', '', 'Bennett', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1007, '400387', 'May?Busalla', '', 'Foronda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1008, '400388', 'Anthony?David', '', 'Booth', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1009, '400389', '??', '', '??', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1010, '400392', 'Oybek', '', 'Imomsaidov', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1011, '400393', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1012, '400394', 'William', '', 'Lam', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1013, '400396', 'Ivan', '', 'Mendez', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1014, '400397', '<NAME>', '', 'Calusin', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1015, '400398', 'Josephine', '', 'Brescher', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6');
INSERT INTO `employees` (`id`, `empno`, `firstname`, `middlename`, `surname`, `name`, `password`, `email`, `contactNo`, `userLevel`, `iDeptId`, `iRegion`, `positionId`, `isLogin`, `dLastChangePword`, `lastLogin`, `ctrlogin`, `isDeactivated`, `created_at`, `updated_at`, `remember_token`) VALUES
(1016, '400399', '<NAME>', '', 'Martinez', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1017, '400400', 'Anthony?Glen', '', 'Henderson', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1018, '400403', 'Aminata', '', 'Dieye', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1019, '400404', '<NAME>', '', 'Ocampo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1020, '400405', '<NAME>', '', 'Wiggins', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1021, '410001', 'Pothecary', '', 'Paul', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1022, '410003', 'Ramirez', '', 'Rene', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1023, '410011', 'Wilson', '', 'Daniel', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1024, '410015', '<NAME>', '', 'Sedawie', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1025, '410021', 'Richard?Andrew', '', 'Binder', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1026, '410022', '<NAME>', '', 'Bo<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1027, '410023', '<NAME>', '', 'Kersthold', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1028, '410024', 'Jamie?Alan', '', 'Yugawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1029, '410029', 'Christopher?Sean', '', 'Mcmahon', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1030, '500001', 'Mariko', '', 'Kawashima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1031, '500010', 'Tomoko', '', 'Tamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1032, '500013', 'Michiyo', '', 'Iwata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1033, '500014', 'Yoko', '', 'Murai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1034, '500017', 'Kayoko', '', 'Shimizu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1035, '500019', 'Kayoko', '', 'Suzuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1036, '500021', 'Miyuki', '', 'Watanabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1037, '500024', 'Midori', '', 'Shindo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1038, '500029', 'Keiko', '', 'Okazaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1039, '500038', 'Chiaki', '', 'Tomizawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1040, '500064', 'Makiko', '', 'Takemiya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1041, '500073', 'Chisato', '', 'Kinoshita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1042, '500080', 'Marina', '', 'Serizawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1043, '500086', 'Kozue', '', 'Aoki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1044, '500090', 'Eriko', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1045, '500095', 'Madoka', '', 'Jonson', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1046, '500103', 'Mariko', '', 'Minamimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1047, '500107', 'Yoko', '', 'Yamazaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1048, '500111', 'Wakako', '', 'Matsui', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1049, '500112', 'Rika', '', 'Komatsugawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1050, '500115', 'Yoko', '', 'Sawada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1051, '500116', 'Maiko', '', 'Yuetto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1052, '500117', 'Naoko', '', 'Sanoyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1053, '500118', 'Yuka', '', 'Nakabayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1054, '500126', 'Yukiko', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1055, '500128', 'Chiho', '', 'Sugai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1056, '500134', 'Maiko', '', 'Kurihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1057, '500159', 'Hiromi', '', 'Kumagai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1058, '500164', 'Miki', '', 'Koike', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1059, '500166', 'Mayuka', '', 'Nozaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1060, '500173', 'Shinobu', '', 'Hayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1061, '500174', 'Yuri', '', 'Tonegawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1062, '500175', 'Yoshika', '', 'Ota', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1063, '500182', 'Yoshie', '', 'Tajima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1064, '500188', 'Miyoko', '', 'Kono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1065, '500198', 'Eiko', '', 'Beppu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1066, '500209', 'Fusako', '', 'Takahashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1067, '500211', 'Tomoe', '', 'Su???bunsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1068, '500216', 'Sayo', '', 'Morinobu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1069, '500217', 'Naomi', '', 'Imai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1070, '500218', 'Satomi', '', 'U?ren', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1071, '500219', 'Chiharu', '', 'Sakaue', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1072, '500224', 'Sayaka', '', 'Gonda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1073, '500235', 'Miyuki', '', 'Watanabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1074, '500237', 'Kanami', '', 'Konno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1075, '500245', 'Misato', '', 'Noguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1076, '500251', 'Nika', '', 'Pichikuru', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1077, '500252', 'Michika', '', 'Komori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1078, '500265', 'Taeko', '', 'Kubo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1079, '500272', 'Miho', '', 'Takahashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1080, '500275', 'Haruna', '', 'Iizuka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1081, '500288', 'Chisato', '', 'Kikuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1082, '500301', 'Michiko', '', 'Otoi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1083, '500306', 'Ritsuko', '', 'Atsumi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1084, '500309', 'Kumi', '', 'Kinebuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1085, '500310', 'Midori', '', 'Nagao', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1086, '500316', 'Mariyo', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1087, '500319', 'Kanae', '', 'Uda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1088, '500320', 'Yoko', '', 'Ichimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1089, '500323', 'Wakako', '', 'Ebina', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1090, '500343', 'Ryoko', '', 'Kurano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1091, '500352', 'Michie', '', 'Ono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1092, '500355', 'Masami', '', 'Yanagiya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1093, '500357', 'Chieko', '', 'Nakagawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1094, '500358', 'Mizuki', '', 'Urahama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1095, '500360', 'Ayumi', '', 'Watanabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1096, '500362', 'Yui', '', 'Ogawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1097, '500363', 'Haruka', '', 'Yamaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1098, '500374', 'Yuko', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1099, '500379', 'Emi', '', 'Kubota', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1100, '500383', 'Aya', '', 'Kattoa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1101, '500389', 'Yuka', '', 'Komiya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1102, '500398', 'Sayuri', '', 'Isono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1103, '500399', 'Asami', '', 'Abiru', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1104, '500404', 'Chigusa', '', 'Tomaru', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1105, '500410', 'Sawa', '', 'Takashima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1106, '500411', 'Mari', '', 'Kobayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1107, '500412', 'Koyuki', '', 'Hirosawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1108, '500416', 'Mizuho', '', 'Suzuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1109, '500420', 'Mika', '', 'Aihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1110, '500422', 'Teruko', '', 'Kingu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1111, '500424', 'Kanako', '', 'Ito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1112, '500435', 'Yuiko', '', 'Masaoka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1113, '500439', 'Yuiko', '', 'Sugino', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1114, '500440', 'Masumi', '', 'Ishizuka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1115, '500444', 'Akiko', '', 'Hasegawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1116, '500446', 'Yuko', '', 'Takashima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1117, '500462', 'Satomi', '', 'Nakata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1118, '500464', 'Ayako', '', 'Otsuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1119, '500467', 'Miwa', '', 'Shimizu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1120, '500479', 'Yoko', '', 'Suemasa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1121, '500481', 'Mie', '', 'Ikeuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1122, '500483', 'Ai', '', 'Kawano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1123, '500484', 'Eri', '', 'Nakamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1124, '500487', 'Masumi', '', 'Matsuo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1125, '500496', 'Hiroko', '', 'Byuki?nan', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1126, '500504', 'Ayako', '', 'Arekusandoro', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1127, '500505', 'Michiyo', '', 'Ota', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1128, '500507', 'Yoko', '', 'Ogawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1129, '500520', 'Midori', '', 'Sudo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1130, '500521', 'Ritsuko', '', 'Kasai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1131, '500522', 'Miki', '', 'Tsujine', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1132, '500524', 'Noriko', '', 'Omukai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1133, '500525', 'Ayako', '', 'Ikeda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1134, '500527', 'Ai', '', 'Kishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1135, '500533', 'Ayumi', '', 'Miyata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1136, '500537', 'Shiho', '', 'Mizoguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1137, '500540', 'Risa', '', 'Hayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1138, '500546', 'Ayaka', '', 'Maeda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1139, '500547', 'Misaki', '', 'Fukasawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1140, '500548', 'Moe', '', 'Takahashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1141, '500550', 'Saya', '', 'Koseki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1142, '500552', 'Mitsue', '', 'Saito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1143, '500553', 'Saya', '', 'Otani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1144, '500555', 'Yasuyo', '', 'Kamiura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1145, '500556', 'Kanae', '', 'Takahashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1146, '500558', 'Nahoko', '', 'Eguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1147, '500560', 'Naoko', '', 'Kuzume', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1148, '500563', 'Takako', '', 'Hakozaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1149, '500569', 'Mayumi', '', 'Kagaya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1150, '500570', 'Kazue', '', 'Taguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1151, '500573', 'Yuiko', '', 'Yamagishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1152, '500576', 'Ai', '', 'Yamaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1153, '500577', 'Satomi', '', 'Odaira', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1154, '500578', 'Makiko', '', 'Onose', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1155, '500581', 'Mayu', '', 'Kano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1156, '500583', 'Yukie', '', 'Takano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1157, '500586', 'Misaki', '', 'Igarashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1158, '500590', 'Mariko', '', 'Sakurai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1159, '500598', 'Kazumi', '', 'Sekita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1160, '500599', 'Yu', '', 'Konuma', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1161, '500600', 'Midori', '', 'Kataoka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1162, '500601', 'Tomomi', '', 'Kitahara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1163, '500602', 'Maya', '', 'Bando', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1164, '500603', 'Chise', '', 'Otsuka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1165, '500604', 'Rina', '', 'Mugikura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1166, '500605', 'Chitose', '', 'Nakamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1167, '500608', 'Kumiko', '', 'Hagiwara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1168, '500612', 'Yuko', '', 'Iwasaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1169, '500615', 'Yuko', '', 'Oi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1170, '500616', 'Yui', '', 'Hasunuma', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1171, '500620', 'Mari', '', 'Kamoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1172, '500621', 'Haruna', '', 'Abe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1173, '500622', 'Naomi', '', 'Shinjo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1174, '500623', 'Yoko', '', 'Hiraide', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1175, '500624', 'Narumi', '', 'Noguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1176, '500625', 'Yurie', '', 'Koizumi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1177, '500629', 'Chisato', '', 'Onuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1178, '500631', 'Maiki', '', 'Kobayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1179, '500632', 'Airin', '', 'Nakata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1180, '500633', 'Madoka', '', 'Saijo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1181, '500635', 'Chizuko', '', 'Hirose', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1182, '500639', 'Minami', '', 'Aizawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1183, '500640', 'Yoko', '', 'Matsuzawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1184, '500641', 'Mio', '', 'Ochiai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6');
INSERT INTO `employees` (`id`, `empno`, `firstname`, `middlename`, `surname`, `name`, `password`, `email`, `contactNo`, `userLevel`, `iDeptId`, `iRegion`, `positionId`, `isLogin`, `dLastChangePword`, `lastLogin`, `ctrlogin`, `isDeactivated`, `created_at`, `updated_at`, `remember_token`) VALUES
(1185, '500646', '???in', '', 'Hoshi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1186, '500649', 'Toshiko', '', 'Mochizuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1187, '500650', 'Kaori', '', 'Ando', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1188, '500653', 'Fukumi', '', 'Matsui', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1189, '500659', 'Miyuki', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1190, '500660', 'Momoe', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1191, '500661', 'Takumi', '', 'Fukano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1192, '500662', 'Marina', '', 'Sugawara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1193, '500663', 'Natsumi', '', 'Chida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1194, '500664', 'Kozue', '', 'Nagasaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1195, '500665', 'Yoriko', '', 'Takasaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1196, '500667', 'Manami', '', 'Oida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1197, '500669', 'Asuka', '', 'Nogami', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1198, '500670', 'Mami', '', 'Abe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1199, '500672', 'Misato', '', 'Morikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1200, '500675', 'Yukimi', '', 'Ikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1201, '500679', 'Natsumi', '', 'Kihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1202, '500681', 'Yoko', '', 'Kimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1203, '500682', 'Ayaka', '', 'Murata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1204, '500694', 'Yukiko', '', 'Yoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1205, '500695', 'Eri', '', 'Kurosawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1206, '500697', 'Marina', '', 'Murakami', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1207, '500700', 'Yuki', '', 'Imai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1208, '500706', 'Shiori', '', 'Kitsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1209, '500707', '', '', '', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1210, '500708', 'Reiko', '', 'Yoshino', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1211, '500710', 'Hiromi', '', 'Fukui', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1212, '500711', 'Mai', '', 'Kumoda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1213, '500712', 'Eriko', '', 'Yamasaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1214, '500717', 'Rika', '', 'Ichimaida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1215, '500720', 'Sayako', '', 'Shinozawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1216, '500721', 'Rika', '', 'Tomura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1217, '500726', 'Rie', '', 'Asayama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1218, '500727', 'Yukiko', '', 'Obata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1219, '500735', 'Takayo', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1220, '500745', 'Nami', '', 'Daijo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1221, '500746', 'Akiko', '', 'Kurosu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1222, '500748', 'Miyuki', '', 'Konishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1223, '500755', 'Rie', '', 'Yamada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1224, '500758', 'Yuna', '', 'Miyao', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1225, '500759', 'Natsumi', '', '???rosa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1226, '500762', 'Kanae', '', 'Yutani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1227, '500763', 'Chihiro', '', 'Murakoshi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1228, '500764', 'Hiromi', '', 'Suzuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1229, '500765', 'Noriko', '', 'Kamikubo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1230, '500768', '', '', '', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1231, '500770', 'Marino', '', 'Nasu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1232, '500774', 'Misato', '', 'Saito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1233, '500775', 'Ai', '', 'Miyazawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1234, '500776', 'Aki', '', 'Kobayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1235, '500779', 'Shino', '', 'Kato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1236, '500780', 'Miho', '', 'Kanai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1237, '500781', 'Miho', '', 'Mikita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1238, '500783', 'Ritsuko', '', 'Hasegawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1239, '500787', 'Sana', '', 'Hoshino', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1240, '500790', 'Yuko', '', 'Nishio', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1241, '500793', 'Tamaki', '', 'Yuyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1242, '500794', 'Hiroko', '', 'Hatano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1243, '500796', 'Akiko', '', 'Tarumi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1244, '500797', 'Naoko', '', 'Nakamaru', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1245, '500798', 'Mariko', '', 'Shirasago', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1246, '500799', 'Moeko', '', 'Akiyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1247, '500800', 'Satoko', '', 'Utsumi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1248, '500801', 'Miyuki', '', 'Uchida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1249, '500802', 'Yumi', '', 'Kumagai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1250, '500805', 'Akiko', '', 'Ishii', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1251, '500806', 'Moe', '', 'Nakagawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1252, '500807', 'Hiroko', '', 'Oku', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1253, '500810', 'Yoshimi', '', 'Honzawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1254, '500811', 'Kana', '', 'Yamaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1255, '500812', 'Rika', '', 'Nakasone', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1256, '500813', 'Mai', '', 'Nakamaru', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1257, '500815', 'Natsuko', '', 'Mizuno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1258, '500819', 'Kanako', '', 'Nozaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1259, '500820', 'Hanae', '', 'Jimbo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1260, '500821', 'Eiko', '', 'Tsutsumi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1261, '500822', 'Yukie', '', 'Nakaguro', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1262, '500823', 'Fumiyo', '', 'Shimoda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1263, '500824', 'Yasuko', '', 'Miyamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1264, '500828', 'Risa', '', 'Mitsuyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1265, '500829', 'Yuna', '', 'Mizuno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1266, '500830', 'Mina', '', 'Tamai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1267, '500831', 'Yuka', '', 'Akiba', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1268, '500833', 'Masumi', '', 'Notsuyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1269, '500834', 'Ami', '', 'Matsumoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1270, '500835', 'Yupa', '', 'Kondo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1271, '500836', 'Misaki', '', 'Masuko', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1272, '500838', 'Nami', '', 'Nakata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1273, '500839', 'Miki', '', 'Takano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1274, '500840', 'Asako', '', 'Nozaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1275, '500841', 'Kaeko', '', 'Kono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1276, '500842', 'Kiryon', '', 'Uchida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1277, '500844', 'Maika', '', 'Tozawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1278, '510011', 'Machiko', '', 'Watanabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1279, '510015', 'Asami', '', 'Kusanagi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1280, '510016', 'Minako', '', 'Takashima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1281, '510022', 'Yu', '', 'Takanae', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1282, '510025', 'Anri', '', 'Hanamaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1283, '510030', 'Masako', '', 'Yoshinaga', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1284, '510032', 'Mayu', '', '???ifu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1285, '510033', 'Kaori', '', 'Kumagai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1286, '510034', 'Miki', '', 'Sakai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1287, '510036', 'Tomoyo', '', 'Suzuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1288, '510037', 'Aya', '', 'Komakine', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1289, '510038', 'Reina', '', 'Oki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1290, '510046', 'Yuko', '', 'Yamagishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1291, '510048', 'Mayumi', '', 'Hirabayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1292, '510049', 'Kazue', '', 'Kazuyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1293, '510050', 'Hiromi', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1294, '520010', 'Saori', '', 'Kanda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1295, '520011', 'Arisa', '', 'Otsuka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1296, '520013', 'Hironao', '', 'Fujii', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1297, '520014', 'Shizuka', '', 'Shindo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1298, '520016', 'Yuri', '', 'Matsuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1299, '520017', 'Mie', '', 'Takayanagi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1300, '520018', 'Tomomi', '', 'Tsuchida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1301, '520020', 'Miyu', '', 'Okamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1302, '520026', 'Kanaeka', '', 'Matsuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1303, '520027', 'Marino', '', 'Kambayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1304, '520032', 'Sayuri', '', 'Ito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1305, '520039', 'Natsuko', '', 'Motoki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1306, '520040', 'Atsuko', '', 'Koyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1307, '520042', 'Rina', '', 'Kurimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1308, '520043', 'Syoko', '', 'Ohira', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1309, '520044', 'Takeo', '', 'Nakano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1310, '520046', 'Hisako', '', 'Kobayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1311, '520049', 'Saori', '', 'Tsuya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1312, '520050', 'Keiko', '', 'Shimizu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1313, '520051', 'Sanae', '', 'Yamaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1314, '520053', 'Mako', '', 'Yuasa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1315, '520054', 'Saki', '', 'Ueyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1316, '520055', 'Yumi', '', 'Sasaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1317, '520056', 'Rumiko', '', 'Shimada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1318, '520059', 'Kazumi', '', 'Oyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1319, '520060', 'Tomomi', '', 'Hayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1320, '520061', 'Yoshiko', '', 'Aoki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1321, '520062', 'Rieko', '', 'Koide', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1322, '520064', 'Miyako', '', 'Kohara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1323, '520066', 'Yujiro', '', 'Hiroka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1324, '520068', 'Ranko', '', 'Nakanishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1325, '520069', 'Kazuko', '', 'Kira', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1326, '520071', 'Asami', '', 'Arai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1327, '520072', 'Chiho', '', 'Sumizono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1328, '520073', 'Atsuko', '', 'Nitta', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1329, '520076', 'Akiko', '', 'Ishida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1330, '520077', 'Ikuko', '', 'Saito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1331, '520079', 'Masumi', '', 'Eguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1332, '520080', 'Keiko', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1333, '520081', 'Mayumi', '', 'Miyazaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1334, '520082', 'Motoko', '', 'Kimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1335, '520083', 'Nobuo', '', 'Negishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1336, '520086', 'Chiharu', '', 'Ito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1337, '520089', 'Etsuko', '', 'Kita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1338, '520093', 'Riuko', '', 'Fuse', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1339, '520094', 'Hiromi', '', 'Nishida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1340, '520095', 'Yumiko', '', 'Kobayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1341, '520096', 'Ayumi', '', 'Katsuragi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1342, '520099', 'Mika', '', 'Kikuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1343, '520100', 'Takako', '', 'Kakihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1344, '520102', 'Masaru', '', 'Inoe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1345, '520104', 'Kaori', '', 'Okonogi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1346, '520107', 'Hiroko', '', 'Maehata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1347, '520109', 'Yuki', '', 'Saito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1348, '520110', 'Keiko', '', 'Sasaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1349, '520111', 'Yuma', '', 'Kobayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1350, '520112', 'Toshiko', '', 'Kawaike', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1351, '520113', 'Akemi', '', 'Abiko', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1352, '520117', 'Tsuyoshi', '', 'Teramura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1353, '520120', 'Yasuko', '', 'Komori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6');
INSERT INTO `employees` (`id`, `empno`, `firstname`, `middlename`, `surname`, `name`, `password`, `email`, `contactNo`, `userLevel`, `iDeptId`, `iRegion`, `positionId`, `isLogin`, `dLastChangePword`, `lastLogin`, `ctrlogin`, `isDeactivated`, `created_at`, `updated_at`, `remember_token`) VALUES
(1354, '520121', 'Keiko', '', 'Miyasaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1355, '520122', 'Emiko', '', 'Mori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1356, '520123', 'Kazuko', '', 'Saito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1357, '520124', 'Emiko', '', 'Yoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1358, '520127', 'Naomi', '', 'Inaba', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1359, '520130', 'Hiromi', '', 'Watanabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1360, '520133', 'Mariko', '', 'Ishikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1361, '520134', 'Akemi', '', 'Yoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1362, '520135', 'Hitomi', '', 'Takahashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1363, '520137', 'Hiromi', '', 'Sugawara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1364, '520138', 'Miyoko', '', 'Shimamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1365, '520139', 'Naomi', '', 'Sugihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1366, '530001', 'Fujie', '', 'Mihashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1367, '600005', 'Juri', '', 'Teshima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1368, '600006', 'Takashi', '', 'Hara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1369, '600022', 'Midori', '', 'Hosoya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1370, '600025', 'Hirofumi', '', 'Motomiya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1371, '610017', 'Akiko', '', 'Komori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1372, '610024', 'Ayako', '', 'Nakai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1373, '610031', 'Shinobu', '', 'Onizuka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1374, '610035', 'Rie', '', 'Ueno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1375, '610037', 'Nao', '', 'Uryu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1376, '610038', 'Saki', '', 'Muneta', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1377, '610039', 'Tomoe', '', 'Nagata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1378, '610040', 'Tomoka', '', 'Nagao', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1379, '610041', 'Rika', '', 'Hanada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1380, '610042', 'Yasuko', '', 'Nakahara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1381, '610043', 'Mihoko', '', 'Eto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1382, '610044', 'Mineko', '', 'Matsuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1383, '610050', 'Makiko', '', 'Shimaya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1384, '610051', 'Natsuki', '', 'Fukutomi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1385, '610052', 'Hitomi', '', 'Shimoka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1386, '610053', 'Tomomi', '', 'Sakai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1387, '610054', 'Misaki', '', 'Yoshihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1388, '610055', 'Risa', '', 'Sakashita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1389, '610056', 'Kanako', '', 'Kayashima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1390, '610057', 'Yuki', '', 'Setoguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1391, '620013', 'Daiki', '', 'Kobayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1392, '620020', 'Hiromi', '', 'Nakashima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1393, '810028', 'Akihito', '', 'Ida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1394, '810036', 'Mihoko', '', 'Tajima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1395, '810042', 'Hiroki', '', 'Shimazu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1396, '810045', 'Ikumi', '', 'Kaneko', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1397, '810049', 'Hiromi', '', 'Minematsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1398, '810062', 'Junko', '', 'Hirayama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1399, '810063', 'Yuko', '', 'Hara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1400, '810066', 'Koko', '', 'Oda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1401, '810078', 'Kazuhiko', '', 'Tanohata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1402, '810079', 'Masayoshi', '', 'Minayama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1403, '810080', 'Tadafumi', '', 'Kishikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1404, '810085', 'Yumiko', '', 'Nakano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1405, '810086', 'Taiji', '', 'Takagi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1406, '810089', 'Yuki', '', 'Ayabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1407, '810092', 'Takahiro', '', 'Inoe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1408, '810094', 'Nanae', '', 'Tsubokura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1409, '810096', 'Mika', '', 'Kamesaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1410, '810097', 'Kazuhisa', '', 'Kihata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1411, '810099', 'Tsuyoshi', '', 'Nakagami', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1412, '810100', 'Minako', '', 'Okuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1413, '810101', 'Naohiro', '', 'Ikeda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1414, '810105', 'Masaharu', '', 'Sakamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1415, '810106', 'Maiko', '', 'Ichikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1416, '810107', 'Kaori', '', 'Yoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1417, '810108', 'Kimiko', '', 'Kawahara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1418, '810110', 'Syoko', '', 'Nakahashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1419, '810113', 'Isaku', '', 'Isa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1420, '810114', 'Yoshihiro', '', 'Naito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1421, '810115', 'Ryo', '', 'Sakai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1422, '810118', 'Meisei', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1423, '810120', 'Nahomi', '', 'Ochi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1424, '810122', 'Sayoko', '', 'Arimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1425, '810123', 'Hiroki', '', 'Abe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1426, '810124', 'Ikuo', '', 'Nakata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1427, '810129', 'Nobuhiko', '', 'Nakamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1428, '810130', 'Hiroka', '', 'Takechi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1429, '810131', 'Yuko', '', 'Shinjo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1430, '810132', 'Ryo', '', 'Irei', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1431, '810133', 'Keiko', '', 'Mori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1432, '810135', 'Hideyo', '', 'Nishioka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1433, '810136', 'Junko', '', 'Kamite', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1434, '810137', 'Sayaka', '', 'Kano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1435, '810140', 'Chieko', '', 'Yokoyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1436, '810141', 'Takashi', '', 'Nagano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1437, '810142', 'Yumi', '', 'Hayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1438, '810144', 'Takashi', '', 'Maeda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1439, '810145', 'Haruka', '', 'Horiuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1440, '810147', 'Ryo', '', 'Nakamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1441, '810154', 'Miwako', '', 'Itofuji', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1442, '810155', 'Hiromu', '', 'Toyofuku', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1443, '820001', 'Takako', '', 'Kishino', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1444, '820002', 'Tomoko', '', 'Toge', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1445, '820006', 'Katsunori', '', 'Suzuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1446, '820014', 'Mayumi', '', 'Hashimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1447, '820015', 'Miyuki', '', 'Sasagawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1448, '820016', 'Kazumi', '', 'Tomada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1449, '820017', 'Yoko', '', 'Ando', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1450, '820019', 'Shiho', '', 'Satake', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1451, '820021', 'Tomoko', '', 'Sumi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1452, '820022', 'Kaori', '', 'Urakawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1453, '820023', 'Kyoko', '', 'Imada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1454, '820024', 'Takako', '', 'Otani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1455, '820025', 'Kazuko', '', 'Osugi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1456, '820029', 'Satomi', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1457, '820030', 'Junko', '', 'Hironaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1458, '820032', 'Yuko', '', 'Mizukoshi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1459, '820034', 'Kimiko', '', 'Yoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1460, '820036', 'Akemi', '', 'Sanada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1461, '820037', 'Saeko', '', 'Ito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1462, '820040', 'Natsumi', '', 'Osaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1463, '820043', 'Mayumi', '', 'Kano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1464, '820046', 'Kozue', '', 'Kariya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1465, '820047', 'Kaoru', '', 'Oitate', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1466, '820049', 'Erika', '', 'Tamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1467, '820051', 'Yoko', '', 'Nagasaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1468, '820052', 'Yoko', '', 'Kurita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1469, '820054', 'Nobue', '', 'Fukui', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1470, '820055', 'Hiroshi', '', 'Owada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1471, '820058', 'Syohei', '', 'Miyazaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1472, '820060', 'Miyuki', '', 'Takamatsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1473, '820061', 'Sekimi', '', 'Adachi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1474, '820062', 'Naomi', '', 'Kawano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1475, '820063', 'Hisayo', '', 'Maeda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1476, '820064', 'Mayumi', '', 'Ono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1477, '820066', 'Ritsuko', '', 'Ueda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1478, '820068', 'Akiko', '', 'Nakanishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1479, '820070', 'Kaho', '', 'Takehara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1480, '820071', 'Noriko', '', 'Imako', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1481, '820072', 'Akane', '', 'Wada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1482, '820073', 'Junko', '', 'Shibata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1483, '820075', 'Eiko', '', 'Kamemoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1484, '820076', 'Chieko', '', 'Nagai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1485, '820077', 'Naomi', '', 'Syobu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1486, '820078', 'Keisuke', '', 'Higuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1487, '820079', 'Noriko', '', 'Mizuno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1488, '820080', 'Kimiyo', '', 'Hagai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1489, '820081', 'Eiko', '', 'Hattori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1490, '820082', 'Yumiko', '', 'Hori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1491, '820083', 'Sayoko', '', 'Hiroki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1492, '820086', 'Takiko', '', 'Takemoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1493, '820087', 'Takeyo', '', 'Kono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1494, '820088', 'Rieko', '', 'Toyoda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1495, '820089', 'Tomoko', '', 'Narimatsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1496, '820090', 'Chieko', '', 'Tochizawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1497, '820092', 'Eri', '', 'Kaneko', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1498, '820093', 'Keiko', '', 'Sugimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1499, '820095', 'Kaori', '', 'Amadatsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1500, '820097', 'Kaori', '', 'Anno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1501, '820098', 'Yuka', '', 'Yamashita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1502, '820099', 'Kyoko', '', 'Nagayama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1503, '820100', 'Kayoko', '', 'Watanabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1504, '820101', 'Kazuko', '', 'Fukamachi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1505, '820102', 'Satoe', '', 'Mori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1506, '820104', 'Keiko', '', 'Yasui', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1507, '820105', 'Nozomi', '', 'Matsushita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1508, '820106', 'Tamaki', '', 'Kurihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1509, '820107', 'Kazuyo', '', 'Orita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1510, '820110', 'Hisae', '', 'Shikitae', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1511, '820112', 'Chikako', '', 'Suzuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1512, '820113', 'Miyako', '', 'Sakurai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1513, '820114', 'Miki', '', 'Yoshimatsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1514, '820115', 'Tamami', '', 'Sugimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1515, '820116', 'Takako', '', 'Toyonaga', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1516, '820117', 'Hisae', '', 'Sugimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1517, '820118', 'Etsuko', '', 'Ichikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1518, '820119', 'Ikuko', '', 'Shinada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1519, '820120', 'Tomomi', '', 'Konno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1520, '820121', 'Minako', '', 'Onikubo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1521, '820123', 'Mari', '', 'Otake', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1522, '820124', 'Yukiko', '', 'Shimokawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6');
INSERT INTO `employees` (`id`, `empno`, `firstname`, `middlename`, `surname`, `name`, `password`, `email`, `contactNo`, `userLevel`, `iDeptId`, `iRegion`, `positionId`, `isLogin`, `dLastChangePword`, `lastLogin`, `ctrlogin`, `isDeactivated`, `created_at`, `updated_at`, `remember_token`) VALUES
(1523, '820125', 'Yoshie', '', 'Migitera', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1524, '820126', 'Hiromi', '', 'Sasabuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1525, '820128', 'Hiroyuki', '', 'Karasawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1526, '820129', 'Hironori', '', 'Yoshimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1527, '820130', 'Erika', '', 'Arakawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1528, '820131', 'Megumi', '', 'Nishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1529, '820132', 'Chizuko', '', 'Doi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1530, '820135', 'Akiko', '', 'Uchihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1531, '820136', 'Yumiko', '', 'Aoshima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1532, '820137', 'Fumie', '', 'Yoda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1533, '820140', 'Midori', '', 'Nishihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1534, '820141', 'Makiko', '', 'Iwata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1535, '820143', 'Masami', '', 'Shibanuma', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1536, '820144', 'Emiko', '', 'Yoshinochi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1537, '880001', 'Hiroko', '', 'Moriga', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1538, '880002', 'Mutsumi', '', 'Higashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1539, '880004', 'Jiro', '', 'Ayabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1540, '880005', 'Mayumi', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1541, '880012', 'Masaki', '', 'Hamada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1542, '880013', 'Yuichi', '', 'Kawahara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1543, '880020', 'Hiroyuki', '', 'Ikeda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1544, '880026', 'Chiemi', '', 'Tatsukami', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1545, '880031', 'Toshio', '', 'Tagaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1546, '880034', 'Kanami', '', 'Fujiyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1547, '880035', 'Tomoaki', '', 'Oda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1548, '880036', 'Motomi', '', 'Hayama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1549, '880037', 'Yoshiki', '', 'Inaba', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1550, '880040', 'Mitsutaka', '', 'Kato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1551, '880042', 'Rumiko', '', 'Suito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1552, '880047', 'Shizuka', '', 'Kawano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1553, '880048', 'Tadashi', '', 'Kumagai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1554, '900014', 'Saki', '', 'Goto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1555, '900017', 'Marika', '', 'Ito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1556, '900019', 'Sayaka', '', 'Uchikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1557, '900021', 'Misaki', '', 'Matsura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1558, '900025', 'Sachiko', '', 'Momiyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1559, '900028', 'Mika', '', 'Kawai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1560, '900031', 'Aki', '', 'Suzuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1561, '900040', 'Ayumi', '', 'Wakimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1562, '900041', 'Narumi', '', 'Masuo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1563, '900043', 'Yumiko', '', 'Narita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1564, '900044', 'Shiho', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1565, '900046', 'Sachiko', '', 'Nagano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1566, '900047', 'Asuka', '', 'Kobayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1567, '900049', 'Misaki', '', 'Shibagaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1568, '900051', 'Miumi', '', 'Kaneta', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1569, '900052', '', '', '', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1570, '900055', 'Ayana', '', 'Sumida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1571, '900056', 'Kuniko', '', 'Takaya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1572, '900057', 'Shiho', '', 'Yokoyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1573, '900059', 'Hiroko', '', 'Tomiyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1574, '900070', 'Sakura', '', 'Kitajima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1575, '900071', 'Natsuki', '', 'Kato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1576, '900072', 'Yaeka', '', 'Arita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1577, '900075', 'Shuto', '', 'Araki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1578, '900081', 'Ayu', '', 'Ueno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1579, '900083', 'Saki', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1580, '900085', 'Risa', '', 'Fujitani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1581, '900087', 'Mizuho', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1582, '900089', 'Shiori', '', 'Hokama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1583, '900092', 'Sayaka', '', 'Baba', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1584, '900093', 'Riko', '', 'Yokoyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1585, '900095', 'Motoko', '', 'Hidaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1586, '900098', 'Mika', '', 'Matsuoka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1587, '900101', 'Eri', '', 'Itani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1588, '900102', 'Maki', '', 'Arai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1589, '900103', 'Yuki', '', 'Futami', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1590, '900104', 'Miku', '', 'Kobayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1591, '900112', 'Erika', '', 'Kikkawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1592, '900117', 'Momo', '', 'Inoe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1593, '900118', 'Serika', '', 'Matsuzawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1594, '900121', 'Chiharu', '', 'Owaku', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1595, '900122', 'Chiemi', '', 'Takeda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1596, '900123', 'Shiori', '', 'Hatakeyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1597, '900124', 'Chitose', '', 'Ikegami', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1598, '900126', 'Shiori', '', 'Kadono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1599, '900128', 'Sayumi', '', 'Kishimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1600, '900129', 'Yuki', '', 'Yoshioka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1601, '900130', 'Kanako', '', 'Ozawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1602, '900134', 'Natsume', '', 'Okihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1603, '900135', 'Yuka', '', 'Oshige', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1604, '900137', 'Kino', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1605, '900140', 'Honoka', '', 'Irisawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1606, '900141', 'Natsumi', '', 'Kubodera', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1607, '900142', 'Akane', '', 'Isono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1608, '900143', 'Yuka', '', 'Yoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1609, '900145', 'Konomi', '', 'Kai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1610, '900147', 'Masakazu', '', 'Haraoka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1611, '900149', 'Yukie', '', 'Ichihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1612, '900150', 'Satomi', '', 'Naiki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1613, '900153', 'Atsuko', '', 'Nakada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1614, '900154', 'Kakeru', '', 'Hidaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1615, '900155', 'Natsuko', '', 'Konishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1616, '900156', 'Hatsumi', '', 'Kono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1617, '900157', 'Rie', '', 'Ono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1618, '900158', 'Asako', '', 'Taniuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1619, '900159', 'Yoshiki', '', 'Kinoshita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1620, '900160', 'Misaki', '', 'Omura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1621, '900161', 'Honami', '', 'Suzuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1622, '900163', 'Naoyuki', '', 'Aiko', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1623, '900165', 'Junko', '', 'Yamashita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1624, '900166', 'Setsuko', '', 'Yano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1625, '900167', 'Taemi', '', 'Toda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1626, '900169', 'Yumiko', '', 'Oda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1627, '900172', 'Aya', '', 'Kuno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1628, '900173', 'Yuri', '', 'Uchida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1629, '900174', 'Ayaka', '', 'Yoshizawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1630, '1000001', 'Kae', '', 'Hakamata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1631, '1000009', 'Kurumi', '', 'Fukumoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1632, '1000015', 'Miwako', '', 'Ikai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1633, '1000016', 'Megumi', '', 'Tanizaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1634, '1000017', 'Ririko', '', 'Miura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1635, '1000018', 'Chiaki', '', 'Tajiri', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1636, '1000026', 'Miyuki', '', 'Paku', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1637, '1000034', 'Akiko', '', 'Nakajima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1638, '1000047', 'Keiko', '', 'Atsusaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1639, '1000048', 'Yoko', '', 'Nakatsuka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1640, '1000053', 'Aki', '', 'Nishikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1641, '1000054', 'Akemi', '', 'Sugiyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1642, '1000055', 'Reiko', '', 'Murata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1643, '1000058', 'Yoshiki', '', 'Nakamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1644, '1000062', 'Kyoko', '', 'Harada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1645, '1000065', 'Yurika', '', 'Yamashiba', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1646, '1000066', 'Kurie', '', 'Oishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1647, '1000069', 'Haruka', '', 'Koizumi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1648, '1000072', 'Haruka', '', 'Matsumura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1649, '1000073', 'Asuka', '', 'Yatsuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1650, '1000091', 'Sayaka', '', 'Takase', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1651, '1000104', 'Yumiko', '', 'Syonago', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1652, '1000105', 'Mami', '', 'Ropesu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1653, '1000110', 'Yae', '', 'Itsuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1654, '1000111', 'Seiko', '', 'Makanae', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1655, '1000116', 'Masayo', '', 'Namura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1656, '1000118', 'Minori', '', 'Ota', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1657, '1000119', 'Urara', '', 'Syoji', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1658, '1000131', 'Yumi', '', 'Ishiguro', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1659, '1000134', 'Kazu', '', 'Maruoka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1660, '1000136', 'Yukiko', '', 'Saida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1661, '1000142', 'Miki', '', 'Tanno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1662, '1000148', 'Eri', '', 'Yoshida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1663, '1000149', 'Eri', '', 'Narumi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1664, '1000151', 'Eriko', '', 'Takeuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1665, '1000152', 'Ayumi', '', 'Gondo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1666, '1000153', 'Yasuko', '', 'Nishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1667, '1000158', 'Asako', '', 'Koida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1668, '1000159', 'Ema', '', 'Kosai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1669, '1000160', 'Mei', '', 'Ueno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1670, '1000161', 'Kaho', '', 'Yura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1671, '1000162', 'Aki', '', 'Kumamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1672, '1000163', 'Sato', '', 'Yamaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1673, '1000164', 'Ruka', '', 'Okada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1674, '1000165', 'Marisu', '', 'Kubota', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1675, '1000166', 'Megumi', '', 'Iguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1676, '1000167', 'Yukina', '', 'Kagawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1677, '1000168', 'Mayu', '', 'Yamaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1678, '1000169', 'Nanako', '', 'Minamino', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1679, '1000170', 'Marie', '', 'Naka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1680, '1000171', 'Mai', '', 'Okamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1681, '1000172', 'Mai', '', 'Takakura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1682, '1000173', 'Michiko', '', 'Iwata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1683, '1000174', 'Keiko', '', 'Abe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1684, '1000175', 'Kaho', '', 'Tateishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1685, '1000177', 'Hitomi', '', 'Miyazawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1686, '1000178', 'Yukako', '', 'Inoe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1687, '1000179', 'Yurina', '', 'Murakami', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1688, '1000180', 'Haruka', '', 'Yamanaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1689, '1000181', 'Honoka', '', 'Yamachi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1690, '1000189', 'Nana', '', 'Kimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1691, '1000190', 'Riko', '', 'Hashimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6');
INSERT INTO `employees` (`id`, `empno`, `firstname`, `middlename`, `surname`, `name`, `password`, `email`, `contactNo`, `userLevel`, `iDeptId`, `iRegion`, `positionId`, `isLogin`, `dLastChangePword`, `lastLogin`, `ctrlogin`, `isDeactivated`, `created_at`, `updated_at`, `remember_token`) VALUES
(1692, '1000191', 'Kaede', '', 'Ryuso', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1693, '1000192', 'Natsumi', '', 'Kashiyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1694, '1000193', 'Hitomi', '', 'Kiyohara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1695, '1000194', 'Ayaka', '', 'Mizutani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1696, '1000195', 'Miyu', '', 'Ito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1697, '1000196', 'Kanaka', '', 'Yamada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1698, '1000198', 'Miyu', '', 'Kojima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1699, '1000200', 'Juria', '', 'Terajima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1700, '1000202', 'Asuka', '', 'Sekine', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1701, '1000203', 'Nami', '', 'Mitsui', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1702, '1000207', 'Tomomi', '', 'Oda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1703, '1000208', 'Yumi', '', 'Murakami', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1704, '1000209', 'Chihiro', '', 'Momii', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1705, '1000212', 'Chiharu', '', 'Tada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1706, '1000219', 'Saeko', '', 'Nagamine', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1707, '1000220', 'Hana', '', 'Nakanowatari', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1708, '1000222', 'Misa', '', 'Moriguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1709, '1000223', 'Misaki', '', 'Ikeda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1710, '1000224', 'Miho', '', 'Tanahara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1711, '1000225', 'Ai', '', 'Ishimaru', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1712, '1000227', 'Yoshie', '', 'Ninokata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1713, '1000229', 'Ayaka', '', 'Shimizu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1714, '1000236', 'Noriko', '', 'Maiyazu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1715, '1000240', 'Serina', '', 'Ishida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1716, '1000243', 'Kumiko', '', 'Yoshita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1717, '1000248', 'Mai', '', 'Yamaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1718, '1000249', 'Syoko', '', 'Ichikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1719, '1000251', 'Sae', '', 'Jinno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1720, '1000260', 'Aya', '', 'Yoshihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1721, '1000265', 'Manami', '', 'Nakahara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1722, '1000266', 'Tomomi', '', 'Kawaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1723, '1000274', 'Ruriko', '', 'Abe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1724, '1000285', 'Yoko', '', 'Goto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1725, '1000286', 'Shiho', '', 'Umeno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1726, '1000287', 'Akatsuki', '', 'Ri', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1727, '1000289', 'Erina', '', 'Masutomi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1728, '1000292', 'Yurika', '', 'Kawanami', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1729, '1000293', 'Yukari', '', 'Morimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1730, '1000297', 'Yuika', '', 'Aomatsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1731, '1000300', 'Mio', '', 'Machida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1732, '1000303', 'Shione', '', 'Iijima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1733, '1000304', 'Chiaki', '', 'Kikuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1734, '1000305', 'Hiroko', '', 'Takahashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1735, '1000307', 'Chie', '', 'Homma', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1736, '1000311', 'Reina', '', 'Nakahodo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1737, '1000314', 'Miori', '', 'Maehara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1738, '1000316', 'Keiko', '', 'Torigoe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1739, '1000318', 'Hiroko', '', 'Nishimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1740, '1000319', 'Maki', '', 'Minagawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1741, '1000324', 'Yuko', '', 'Kawaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1742, '1000325', 'Hikari', '', 'Kobayakawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1743, '1000326', 'Yukari', '', 'Yumoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1744, '1000331', 'Chifumi', '', 'Yamashita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1745, '1000339', 'Yurie', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1746, '1000343', 'Tomomi', '', 'Hirano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1747, '1000350', 'Miki', '', 'Nagasaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1748, '1000353', 'Yukino', '', 'Takahashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1749, '1000355', 'Aya', '', 'Hirota', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1750, '1000357', 'Satomi', '', 'Koiwa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1751, '1000359', 'Miyuki', '', 'Shimada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1752, '1000360', 'Yasuko', '', 'Daikoku', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1753, '1000361', 'Yoshiko', '', 'Takahashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1754, '1000363', 'Tsukino', '', 'Someya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1755, '1000364', 'Asami', '', 'Miyabara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1756, '1000365', 'Anna', '', 'Isozakichappuman', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1757, '1000366', 'Kayoko', '', 'Ando', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1758, '1000369', 'Miwa', '', 'Sase', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1759, '1000370', 'Yu', '', 'Izumi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1760, '1000371', 'Atsuko', '', 'Kogure', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1761, '1000375', 'Yoshiko', '', 'Yamami', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1762, '1000378', 'Yoko', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1763, '1000390', 'Manami', '', 'Iguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1764, '1000391', 'Eriko', '', 'Mochizuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1765, '1000393', 'Yuko', '', 'Komai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1766, '1000394', 'Hiromi', '', 'Yoshimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1767, '1000398', 'Ayako', '', 'Honda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1768, '1000399', 'Nana', '', 'Matsura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1769, '1000401', 'Maki', '', 'Matsumoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1770, '1000402', 'Takuma', '', 'Nishimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1771, '1000404', 'Tomoko', '', 'Kobashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1772, '1000405', 'Yuka', '', 'Mori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1773, '1000410', 'Yukari', '', 'Ichikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1774, '1000411', 'Natsuko', '', 'Miyamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1775, '1000417', 'Haruka', '', 'Oda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1776, '1000439', 'Megumi', '', 'Mikkudoeru', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1777, '1000441', 'Ayako', '', 'Miura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1778, '1000443', 'Yoko', '', 'Nakao', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1779, '1000444', 'Kumiko', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1780, '1000446', 'Michiko', '', 'Kofuku', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1781, '1000450', 'Natsuki', '', 'Nagata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1782, '1000453', 'Natsuko', '', 'Mori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1783, '1000454', 'Maiko', '', 'Sugiyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1784, '2000027', 'Nanami', '', 'Nakamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1785, '2000036', 'Keiko', '', 'Era', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1786, '2000298', 'Michie', '', 'Kumagai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1787, '2000312', 'Chikako', '', 'Hashikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1788, '2000412', 'Ai', '', 'Yoshikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1789, '2000423', 'Akiko', '', 'Wada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1790, '2000447', 'Junko', '', 'Egashira', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1791, '3000011', 'Eiko', '', 'To', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1792, '3000030', 'Hiroko', '', 'Fujimaru', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1793, '3000041', 'Naoko', '', 'Tsunekawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1794, '3000061', 'Keiko', '', 'Shimizu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1795, '3000076', 'Asami', '', 'Chai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1796, '3000115', 'Yumiko', '', 'Takao', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1797, '3000267', 'Aya', '', 'Furutani', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1798, '3000268', 'Emi', '', 'Enomoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1799, '3000270', 'Miwa', '', 'Akimitsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1800, '3000346', 'Yumiko', '', 'Higuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1801, '3000422', 'Rika', '', 'Hashimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1802, '3000430', 'Hiromi', '', 'Watabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1803, '4000014', 'Yasushi', '', 'Watanabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1804, '4000028', 'Saya', '', 'Ide', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1805, '4000037', 'Chisako', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1806, '4000044', 'Niina', '', 'Noro', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1807, '4000056', 'Tomomi', '', 'Suganuma', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1808, '4000071', 'Asami', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1809, '4000090', 'Shinobu', '', 'Okamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1810, '4000097', 'Chiaki', '', 'Matsui', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1811, '4000098', 'Nanako', '', 'Tabata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1812, '4000103', 'Haruna', '', 'Nakada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1813, '4000117', 'Tomoko', '', 'Igarashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1814, '4000121', 'Chiyuki', '', 'Shimakura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1815, '4000128', 'Miyu', '', 'Masue', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1816, '4000133', 'Syoko', '', 'Ihara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1817, '4000211', 'Akiko', '', 'Inuzuka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1818, '4000217', 'Mai', '', 'Takakura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1819, '4000221', 'Mami', '', 'Yamaguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1820, '4000237', 'Masashi', '', 'Takeda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1821, '4000241', 'Natsumi', '', 'Takei', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1822, '4000257', 'Yurie', '', 'Okazaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1823, '4000258', 'Miho', '', 'Enomoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1824, '4000261', 'Miki', '', 'Tatano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1825, '4000263', 'Arisa', '', 'Kadono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1826, '4000264', 'Hazuki', '', 'Toda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1827, '4000271', 'Yuka', '', 'Kawata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1828, '4000295', 'Haruna', '', 'Akita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1829, '4000367', 'Erika', '', 'Nakauji', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1830, '4000377', 'Ai', '', 'Takai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1831, '4000395', 'Riku', '', 'Udagawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1832, '4000420', 'Chisako', '', 'Funato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1833, '4000421', 'Maya', '', 'Hoshikawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1834, '4000428', 'Naomi', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1835, '4000448', 'Mayu', '', 'Ono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1836, '4000455', 'Raimu', '', 'Kimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1837, '4012820', 'Ayumi', '', 'Miyatake', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1838, '4013020', 'Sakura', '', 'Nogi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1839, '4013027', 'Sumika', '', 'Kojima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1840, '5000068', 'Chie', '', 'Onishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1841, '5000079', 'Atsuhiko', '', 'Sakata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1842, '5000080', 'Shunji', '', 'Kawashima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1843, '5000291', 'Hironori', '', 'Tamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1844, '5000322', 'Akira', '', 'Yasuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1845, '5000356', 'Takashi', '', 'Yoshimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1846, '5000362', 'Koichiro', '', 'Mori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1847, '6000003', 'Quinn', '', 'Larson', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1848, '6000004', '<NAME>', '', 'Kravitz', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1849, '6000005', '<NAME>', '', 'Williams', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1850, '6000007', '<NAME>', '', 'Nguyen ', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1851, '6000038', 'Fitria', '', 'Regina', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1852, '6000039', 'Brendar', '', 'Nanziri', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1853, '6000050', 'Ophe<NAME>', '', 'Tokunaga ', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1854, '6000057', 'Taiyo', '', 'Shirai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1855, '6000078', '<NAME> ', '', 'Keane', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1856, '6000083', '<NAME>', '', 'Oriola', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1857, '6000085', '<NAME>', '', 'Filardo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1858, '6000086', 'Diana', '', 'Garcia', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1859, '6000087', '<NAME>', '', 'Toth', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6');
INSERT INTO `employees` (`id`, `empno`, `firstname`, `middlename`, `surname`, `name`, `password`, `email`, `contactNo`, `userLevel`, `iDeptId`, `iRegion`, `positionId`, `isLogin`, `dLastChangePword`, `lastLogin`, `ctrlogin`, `isDeactivated`, `created_at`, `updated_at`, `remember_token`) VALUES
(1860, '6000088', '<NAME>', '', 'Mckeen', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1861, '6000094', 'Anna', '', 'Davtyan', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1862, '6000095', 'Agborabang', '', 'Sophieebot', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1863, '6000096', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1864, '6000099', 'Grzegorz', '', 'Krycinski', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1865, '6000102', 'Orsolya', '', 'Nagy', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1866, '6000113', '<NAME>', '', 'Sakai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1867, '6000130', 'Cloward', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1868, '6000137', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1869, '6000138', '<NAME>', '', 'Rivera', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1870, '6000139', '<NAME>', '', 'Valencia', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1871, '6000140', '<NAME>', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1872, '6000144', '<NAME>', '', 'Tsegai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1873, '6000145', '<NAME>', '', 'Burke', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1874, '6000146', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1875, '6000154', '<NAME>', '', 'Gleeson ', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1876, '6000155', 'Chinedum', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1877, '6000156', 'Michele', '', 'Fornaro', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1878, '6000230', '<NAME>', '', 'Cabasal', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1879, '6000232', '<NAME> ', '', '<NAME> ', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1880, '6000234', '<NAME>', '', 'Luna', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1881, '6000235', '<NAME>', '', 'Sepe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1882, '6000238', '<NAME>', '', 'Anthony', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1883, '6000250', 'James', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1884, '6000252', '<NAME>', '', 'Edet ', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1885, '6000253', '<NAME>', '', 'Igot ', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1886, '6000278', 'Aleksei', '', 'Gribko', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1887, '6000279', '<NAME>', '', 'Smith', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1888, '6000281', '<NAME>', '', 'Moothoo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1889, '6000282', 'Bram', '', 'Goudeseune', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1890, '6000283', '<NAME>', '', 'Baliad', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1891, '6000284', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1892, '6000306', '<NAME>', '', 'Woods', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1893, '6000308', 'Ghiraldello', '', 'Leonardo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1894, '6000328', '<NAME>', '', 'Zou', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1895, '6000340', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1896, '6000341', 'Ludmila', '', 'Covalciuc', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1897, '6000344', '<NAME>', '', 'Kamrul', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1898, '6000347', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1899, '6000368', '<NAME>', '', 'Kawamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1900, '6000374', '<NAME>', '', 'Maitland', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1901, '6000379', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1902, '6000382', 'Raymond', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1903, '6000387', 'Lies', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1904, '6000388', '<NAME>', '', 'Schumann', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1905, '6000396', '<NAME>', '', 'Bates', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1906, '6000397', '<NAME>', '', 'Wark ', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1907, '6000400', 'Fan', '', 'Zhou', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1908, '6000406', '<NAME>', '', 'Richards', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1909, '6000415', '<NAME>', '', 'Ndungu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1910, '6000432', '<NAME>', '', 'Briggs', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1911, '6000433', '<NAME>', '', 'Mikolajczyk', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1912, '6000436', '<NAME>', '', 'Speirs', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1913, '6000437', '<NAME>', '', 'Legacion John', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1914, '6000438', '<NAME> ', '', 'Magallanes ', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1915, '6000445', '<NAME>', '', '<NAME>', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1916, '7000002', 'Namiko', '', 'Sugimoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1917, '7000008', 'Kaoru', '', 'Takeshige', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1918, '7000012', 'Makoto', '', 'Nakabayashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1919, '7000020', 'Naoko', '', 'Asahi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1920, '7000029', 'Kiyomi', '', 'Ogino', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1921, '7000032', 'Masayo', '', 'Onai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1922, '7000033', 'Eriko', '', 'Matsumaru', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1923, '7000043', 'Yukari', '', 'Fujishima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1924, '7000045', 'Hiroko', '', 'Toda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1925, '7000059', 'Moemi', '', 'Ono', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1926, '7000060', 'Yoko', '', 'Miyashita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1927, '7000070', 'Hideka', '', 'Hongu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1928, '7000074', 'Shigenori', '', 'Takeuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1929, '7000075', 'Minori', '', 'Taira', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1930, '7000089', 'Yoshiko', '', 'Ushisaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1931, '7000100', 'Shizuyo', '', 'Kimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1932, '7000107', 'Masako', '', 'Kurata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1933, '7000108', 'Chisa', '', 'Matsumoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1934, '7000109', 'Mami', '', 'Kondo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1935, '7000114', 'Keiko', '', 'Rikuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1936, '7000129', 'Asuna', '', 'Kimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1937, '7000132', 'Yuki', '', 'Mitsui', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1938, '7000143', 'Mayumi', '', 'Iguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1939, '7000147', 'Naomi', '', 'Tanaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1940, '7000150', 'Yukari', '', 'Fujisawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1941, '7000215', 'Chie', '', 'Hosokawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1942, '7000226', 'Noriyo', '', 'Cho', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1943, '7000244', 'Yoshimi', '', 'Matsumoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1944, '7000245', 'Chieko', '', 'Hibino', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1945, '7000247', 'Fumie', '', 'Hosomizo', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1946, '7000262', 'Yuki', '', 'Nakata', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1947, '7000269', 'Miho', '', 'Kohira', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1948, '7000272', 'Yuki', '', 'Yamamoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1949, '7000275', 'Kaori', '', 'Toyoshima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1950, '7000299', 'Yukio', '', 'Togon', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1951, '7000302', 'Rika', '', 'Kishine', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1952, '7000309', 'Shiho', '', 'Umeno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1953, '7000310', 'Koaki', '', 'Iwanaga', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1954, '7000317', 'Yuki', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1955, '7000320', 'Yukari', '', 'Sato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1956, '7000321', 'Mayumi', '', 'Murao', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1957, '7000323', 'Yumiko', '', 'Kuroda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1958, '7000327', 'Kaoru', '', 'Hamada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1959, '7000330', 'Hiroe', '', 'Shizuno', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1960, '7000333', 'Etsuko', '', 'Noguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1961, '7000335', 'Makoto', '', 'Madambashi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1962, '7000342', 'Natsuko', '', 'Iwazumi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1963, '7000345', 'Yumiko', '', 'Higuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1964, '7000349', 'Haruka', '', 'Mori', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1965, '7000352', 'Mami', '', 'Hiraishi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1966, '7000358', 'Mayu', '', 'Ishida', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1967, '7000372', 'Fujie', '', 'Shitara', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1968, '7000376', 'Runa', '', 'Ito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1969, '7000380', 'Kazuyo', '', 'Hieda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1970, '7000381', 'Yumiko', '', 'Matsumoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1971, '7000386', 'Kumiyo', '', 'Nakamura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1972, '7000407', 'Chieri', '', 'Mukai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1973, '7000409', 'Yuki', '', 'Agarie', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1974, '7000413', 'Yasuhiro', '', 'Kubota', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1975, '7000414', 'Yukie', '', 'Noguchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1976, '7000416', 'Mai', '', 'Nakagawa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1977, '7000419', 'Kiyomi', '', 'Sako', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1978, '7000424', 'Naomi', '', 'Kasai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1979, '7000426', 'Masayo', '', 'Ito', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1980, '7000427', 'Mika', '', 'Tanaka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1981, '7000431', 'Mami', '', 'Yoshimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1982, '7000434', 'Yasuko', '', 'Minamikyogoku', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1983, '7000435', 'Reiji', '', 'Tanioka', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1984, '7000440', 'Sayoko', '', 'Nagamatsu', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1985, '7000442', 'Chie', '', 'Nagashima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1986, '7000449', 'Emi', '', 'Narita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1987, '7000451', 'Michiko', '', 'Notoji', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1988, '7000452', 'Eriko', '', 'Ariizumi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1989, '8000081', 'Satoko', '', 'Kochi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1990, '8000301', 'Makiko', '', 'Kamoi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1991, '8000354', 'Hiroshige', '', 'Saegusa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1992, '8000418', 'Shuta', '', 'Watanabe', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1993, '8000429', 'Mayumi', '', 'Makita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1994, '9000157', 'Saho', '', 'Moriyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1995, '9000199', 'Chisato', '', 'Matsumoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1996, '9000205', 'Chisato', '', 'Matsumoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1997, '10000010', 'Yuka', '', 'Matsuda', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1998, '10000101', 'Masato', '', 'Nakazaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(1999, '10000141', 'Shigeru', '', 'Furuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2000, '10000182', 'Sara', '', 'Okada', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2001, '10000183', 'Nozomu', '', 'Inui', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2002, '10000184', 'Fuka', '', 'Nakano', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2003, '10000185', 'Yuki', '', 'Kimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2004, '10000186', 'Kanae', '', 'Nakayama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2005, '10000187', 'Takahiro', '', 'Hirai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2006, '10000201', 'Hikari', '', 'Kato', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2007, '10000204', 'Saho', '', 'Moriyama', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2008, '10000206', 'Chisato', '', 'Matsumoto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2009, '10000216', 'Osamu', '', 'Goto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2010, '10000313', 'Kaori', '', 'Nakajima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2011, '10000329', 'Hikari', '', 'Suzuki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2012, '10000373', 'Asako', '', 'Fujisaki', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2013, '10000403', 'Azusa', '', 'Nakashima', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2014, '11000077', '???rara', '', 'Dautto', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2015, '11000277', 'Tomomi', '', 'Higuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2016, '20000122', 'Yoshihiro', '', 'Ishimura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2017, '20000123', 'Kimiko', '', 'Kinoshita', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2018, '20000124', 'Yoko', '', 'Yabuchi', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2019, '20000125', 'Tomoko', '', 'Matsumiya', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2020, '20000126', 'Hideo', '', 'Furumura', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2021, '20000127', 'Noriko', '', 'Arai', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2022, '20000233', 'Yoko', '', 'Nishizume', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6'),
(2023, '20000336', 'Hajime', '', 'Isa', '', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6', '', '', 0, 0, 0, 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '$2y$10$q5egaJM/WrOUpXG4sG/tRObNuTMp3getpIaKST/lWO9tBip.Wonq6');
-- --------------------------------------------------------
--
-- Table structure for table `files`
--
CREATE TABLE `files` (
`id` int(10) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `folders`
--
CREATE TABLE `folders` (
`id` int(10) UNSIGNED NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `links`
--
CREATE TABLE `links` (
`id` int(10) UNSIGNED NOT NULL,
`link` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`vLinkTitle` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`vLinkDescription` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`addedBy` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`dAdded` datetime NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `links`
--
INSERT INTO `links` (`id`, `link`, `vLinkTitle`, `vLinkDescription`, `addedBy`, `dAdded`, `created_at`, `updated_at`) VALUES
(10, '1', '4', '7', '1', '2018-08-11 10:24:57', '2018-08-11 02:24:57', '2018-08-11 02:24:57'),
(11, '2', '5', '8', '1', '2018-08-11 10:24:57', '2018-08-11 02:24:57', '2018-08-11 02:24:57'),
(12, '3', '6', '9', '1', '2018-08-11 10:24:57', '2018-08-11 02:24:57', '2018-08-11 02:24:57');
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2018_08_02_135615_create_employees_table', 1),
(4, '2018_08_09_032620_create_links_table', 2),
(5, '2018_08_10_172708_create_departments_table', 3),
(6, '2018_08_10_173041_create_positions_table', 4),
(7, '2018_08_10_173119_create_folders_table', 4),
(8, '2018_08_10_173214_create_files_table', 4),
(9, '2018_08_10_181523_create_regions_table', 5);
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `positions`
--
CREATE TABLE `positions` (
`id` int(10) UNSIGNED NOT NULL,
`positionName` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`Reserved` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`addedBy` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`dAdded` datetime NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `positions`
--
INSERT INTO `positions` (`id`, `positionName`, `Reserved`, `addedBy`, `dAdded`, `created_at`, `updated_at`) VALUES
(1, 'Administrative', '', '', '0000-00-00 00:00:00', NULL, NULL),
(2, 'Manager', '', '', '0000-00-00 00:00:00', NULL, NULL),
(3, 'Trainer', '', '', '0000-00-00 00:00:00', NULL, NULL),
(4, 'Teacher', '', '', '0000-00-00 00:00:00', NULL, NULL),
(5, 'Staff', '', '', '0000-00-00 00:00:00', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `regions`
--
CREATE TABLE `regions` (
`id` int(10) UNSIGNED NOT NULL,
`regionName` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`Reserved` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`addedBy` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`dAdded` datetime NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `regions`
--
INSERT INTO `regions` (`id`, `regionName`, `Reserved`, `addedBy`, `dAdded`, `created_at`, `updated_at`) VALUES
(1, 'Cebu-Phils', '', '', '0000-00-00 00:00:00', NULL, NULL),
(2, 'Kumamoto, Japan', '', '', '0000-00-00 00:00:00', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` int(10) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, '0089', '<EMAIL>', <PASSWORD>', 'tDaJdb4mkX2GjZW26qIpV2dAZmdAXJZyPTgnFfHwrQtfj3PBsWuiNXgfQwqS', '2018-08-02 06:28:18', '2018-08-02 06:28:18');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `departments`
--
ALTER TABLE `departments`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `employees`
--
ALTER TABLE `employees`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `files`
--
ALTER TABLE `files`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `folders`
--
ALTER TABLE `folders`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `links`
--
ALTER TABLE `links`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indexes for table `positions`
--
ALTER TABLE `positions`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `regions`
--
ALTER TABLE `regions`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `name` (`name`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `departments`
--
ALTER TABLE `departments`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `employees`
--
ALTER TABLE `employees`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2024;
--
-- AUTO_INCREMENT for table `files`
--
ALTER TABLE `files`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `folders`
--
ALTER TABLE `folders`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `links`
--
ALTER TABLE `links`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `positions`
--
ALTER TABLE `positions`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `regions`
--
ALTER TABLE `regions`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
INSERT INTO eg_feature_action (ACTION, FEATURE) VALUES ((select id FROM eg_action WHERE name = 'Daily collection report VLT') ,(select id FROM eg_feature WHERE name = 'Property Tax Reports'));
INSERT INTO eg_feature_action (ACTION, FEATURE) VALUES ((select id FROM eg_action WHERE name = 'Daily collection report VLT result') ,(select id FROM eg_feature WHERE name = 'Property Tax Reports')); |
-- MySQL dump 10.13 Distrib 5.7.20, for Linux (x86_64)
--
-- Host: localhost Database: online_shop
-- ------------------------------------------------------
-- Server version 5.7.20-0ubuntu0.16.04.1
/*!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 utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `customers`
--
DROP TABLE IF EXISTS `customers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`firstname` varchar(45) DEFAULT NULL,
`lastname` varchar(45) DEFAULT NULL,
`registered` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`birthdate` date DEFAULT NULL,
`phone` varchar(45) DEFAULT NULL,
`city` varchar(45) DEFAULT NULL,
`street` varchar(45) DEFAULT NULL,
`postal` varchar(45) DEFAULT NULL,
`email` varchar(45) DEFAULT NULL,
`active` int(11) DEFAULT '0',
`deleted` datetime DEFAULT NULL,
`pwd` varchar(200) DEFAULT NULL,
`activationcode` varchar(21) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `customers`
--
LOCK TABLES `customers` WRITE;
/*!40000 ALTER TABLE `customers` DISABLE KEYS */;
INSERT INTO `customers` VALUES (1,'Juan','Erickson','2018-01-17 11:13:28','1987-09-18','49034185','Leipzig','Friedrichstrasse 13','12958','<EMAIL>',0,'2017-12-18 11:58:19','$2a$10$SBoBwTl/jkjuffRrmCuUQ.0AQyDWl4Muh/1qQbjhZbS9.i3A.xgAy',NULL),(2,'Monika','Brueckner','2018-01-09 13:10:37','1970-09-09','49160504','Erfurt','Hauptstrasse 35','17676','<EMAIL>',0,'2017-12-18 13:44:36','halloworld',NULL),(3,'Paul','Erickson','2018-01-09 09:47:38','1987-09-24','49945098','Dortmund','Fegenweg 23','19229','<EMAIL>',0,NULL,'halloworld',NULL),(4,'Peter','Wolta','2018-01-09 09:47:38','1978-12-13','49829711','Dortmund','Bornholmer Strasse 48','15627','<EMAIL>',0,NULL,'halloworld',NULL),(5,'Katarina','Pechstein','2018-01-09 09:47:38','1974-09-29','49691059','Koeln','Fegenweg 52','18716','<EMAIL>',1,NULL,'halloworld',NULL),(6,'Ferdinand','Mueller','2018-01-09 09:47:38','1982-11-12','49048421','Muenchen','Bahnhofstrasse 69','11347','<EMAIL>',0,NULL,'halloworld',NULL),(7,'Anna','Oberbaum','2018-01-09 09:47:38','1986-10-26','49785464','Dortmund','Bornholmer Strasse 68','10569','<EMAIL>',0,NULL,'halloworld',NULL),(8,'Judith','Meier','2018-01-09 09:47:38','1976-09-30','49312371','Berlin','Fegenweg 42','10166','<EMAIL>',1,NULL,'halloworld',NULL),(9,'Ferdinand','Torres','2018-01-09 09:47:38','1990-10-24','49510488','Duesseldorf','Fegenweg 24','10712','<EMAIL>',0,NULL,'halloworld',NULL),(10,'Markus','Torres','2018-01-09 09:47:38','1981-12-14','49389585','Koeln','Bornholmer Strasse 36','10867','<EMAIL>',1,NULL,'halloworld',NULL),(11,'Nacho','Merino','2018-01-09 09:47:38','1991-12-30','49883124','Dortmund','Kottbusser Damm 73','18149','<EMAIL>',0,NULL,'halloworld',NULL),(12,'Nacho','Merino','2018-01-09 09:47:38','1975-09-26','49152191','Koeln','Fegenweg 68','19206','<EMAIL>',0,NULL,'halloworld',NULL),(13,'Achim','Rudolf','2018-01-09 09:47:38','1970-09-13','49784637','Leipzig','Friedrichstrasse 89','19842','<EMAIL>',0,NULL,'halloworld',NULL),(14,'Nacho','Merino','2018-01-09 09:47:38','1986-11-07','49768194','Koeln','Papel Alle 61','16075','<EMAIL>',1,NULL,'halloworld',NULL),(15,'Hannes','Drechsler','2018-01-09 09:47:38','1974-11-07','49100550','Duesseldorf','Ullsteinweg 93','19967','<EMAIL>',0,NULL,'halloworld',NULL),(16,'Paul','Wolta','2018-01-09 09:47:38','1980-09-24','49463360','Leipzig','Bahnhofstrasse 67','13577','<EMAIL>',0,NULL,'halloworld',NULL),(17,'Achim','Ziegler','2018-01-09 09:47:38','1970-10-12','49080440','Muenchen','PepaPig 76','13472','<EMAIL>',1,NULL,'halloworld',NULL),(18,'Markus','Monser','2018-01-09 09:47:38','1980-11-25','49077298','Koeln','Bornholmer Strasse 51','16030','<EMAIL>',0,NULL,'halloworld',NULL),(19,'Nacho','Merino','2018-01-09 09:47:38','1988-10-17','4903432324','Schmalkalden','Martin Luther Ring 12','27123','<EMAIL>',0,NULL,'halloworld',NULL),(20,'Nacho','Merinoaaaxzx','2018-01-16 14:56:08','1986-01-23','492032323577','Berlin','pankow 83','sad13142','<EMAIL>',0,NULL,'$2a$10$/RIM6LoRuNcWEwIXhGuws.Ql54jNuLIiBI5cwNVpfW77Y.BDCIhIO',NULL),(21,'Katarina','Wolta','2018-01-09 09:47:38','1989-12-08','49981008','Dortmund','Bornholmer Strasse 70','16737','<EMAIL>',0,NULL,'halloworld',NULL),(22,'Peter','Tischler','2018-01-09 09:47:38','1983-10-22','49310929','Dortmund','Hauptstrasse 56','11925','<EMAIL>',1,NULL,'halloworld',NULL),(23,'Anatol','Otto','2018-01-09 09:47:38','1988-11-09','49922444','Erfurt','Bornholmer Strasse 6','16035','<EMAIL>',0,NULL,'halloworld',NULL),(24,'Ferdinand','Mueller','2018-01-09 09:47:38','1988-11-28','49326416','Berlin','Ullsteinweg 85','15167','<EMAIL>',0,NULL,'halloworld',NULL),(25,'Ferdinand','Mueller','2018-01-09 09:47:38','1976-09-04','49922832','Koeln','Bornholmer Strasse 1','14674','<EMAIL>',0,NULL,'halloworld',NULL),(26,'Hannes','Oberbaum','2018-01-09 09:47:38','1974-11-28','49437395','Berlin','Bahnhofstrasse 52','13440','<EMAIL>',0,NULL,'halloworld',NULL),(27,'Judith','Erickson','2018-01-09 09:47:38','1972-09-06','49373362','Muenchen','Fegenweg 87','17781','<EMAIL>',0,NULL,'halloworld',NULL),(28,'Achim','Schmidt','2018-01-09 09:47:38','1989-11-15','49860569','Berlin','Fegenweg 39','11001','<EMAIL>',0,NULL,'halloworld',NULL),(29,'Kevin','Ziegler','2018-01-09 09:47:38','1977-12-16','49976601','Muenchen','Friedrichstrasse 99','12457','<EMAIL>',1,NULL,'halloworld',NULL),(30,'Barbara','Pechstein','2018-01-09 09:47:38','1986-10-08','49947142','Duesseldorf','Friedrichstrasse 87','19643','<EMAIL>',0,NULL,'halloworld',NULL),(31,'Paul','Tischler','2018-01-09 09:47:38','1980-11-08','49376409','Koeln','Bahnhofstrasse 84','17933','<EMAIL>',0,NULL,'halloworld',NULL),(32,'Achim','Wohlgefahrt','2018-01-09 09:47:38','1991-12-25','49105386','Muenchen','Fegenweg 16','19956','<EMAIL>',0,NULL,'halloworld',NULL),(33,'Paul','Schulz','2018-01-09 09:47:38','1990-10-10','49619759','Duesseldorf','Ullsteinweg 39','12175','<EMAIL>',0,NULL,'halloworld',NULL),(34,'Kristin','Wolta','2018-01-09 09:47:38','1991-12-11','49574550','Leipzig','Bahnhofstrasse 15','19845','<EMAIL>',0,NULL,'halloworld',NULL),(35,'Peter','Torres','2018-01-09 09:47:38','1975-09-08','49243822','Leipzig','Hauptstrasse 21','11374','<EMAIL>',0,NULL,'halloworld',NULL),(36,'Achim','Rudolf','2018-01-09 09:47:38','1971-10-17','49827562','Dortmund','Bundesalle 60','10798','<EMAIL>',0,NULL,'halloworld',NULL),(37,'Ulrike','Brueckner','2018-01-09 09:47:38','1988-09-29','49936883','Erfurt','Bundesalle 70','10403','<EMAIL>',1,NULL,'halloworld',NULL),(38,'Hans','Tischler','2018-01-09 09:47:38','1973-11-15','49337333','Duesseldorf','Hauptstrasse 55','11413','<EMAIL>',0,NULL,'halloworld',NULL),(39,'Anna','Schulz','2018-01-09 09:47:38','1985-11-18','49699513','Muenchen','Friedrichstrasse 67','13261','<EMAIL>',0,NULL,'halloworld',NULL),(40,'Hans','Drechsler','2018-01-09 09:47:38','1978-12-26','49158467','Erfurt','Fegenweg 3','10880','<EMAIL>',0,NULL,'halloworld',NULL),(41,'Lorenz','Mueller','2018-01-09 09:47:38','1990-09-15','49834767','Koeln','Ullsteinweg 97','10378','<EMAIL>',0,NULL,'halloworld',NULL),(42,'Jens','Drechsler','2018-01-09 09:47:38','1987-12-20','49026885','Duesseldorf','Hauptstrasse 14','15198','<EMAIL>',1,NULL,'halloworld',NULL),(43,'Johnathan','Monser','2018-01-09 09:47:38','1988-11-08','49859521','Duesseldorf','Ullsteinweg 66','11905','<EMAIL>',0,NULL,'halloworld',NULL),(44,'Kevin','Kleinschmidt','2018-01-09 09:47:38','1985-10-18','49675856','Berlin','Bundesalle 26','15097','<EMAIL>',0,NULL,'halloworld',NULL),(45,'Jens','Mueller','2018-01-09 09:47:38','1975-12-19','49195804','Koeln','Kottbusser Damm 47','14177','<EMAIL>',1,NULL,'halloworld',NULL),(46,'Ulrike','Rudolf','2018-01-09 09:47:38','1981-09-23','49230307','Berlin','Ullsteinweg 59','14879','<EMAIL>',0,NULL,'halloworld',NULL),(47,'Joachim','Torres','2018-01-09 09:47:38','1975-12-30','49794477','Koeln','Friedrichstrasse 91','14390','<EMAIL>',0,NULL,'halloworld',NULL),(48,'Paul','Meier','2018-01-09 09:47:38','1980-10-30','49877465','Koeln','Kottbusser Damm 53','16911','<EMAIL>',0,NULL,'halloworld',NULL),(49,'Markus','Otto','2018-01-09 09:47:38','1971-12-28','49706433','Muenchen','Kottbusser Damm 14','18087','<EMAIL>',1,NULL,'halloworld',NULL),(50,'Peter','Friedel','2018-01-09 09:47:38','1988-09-30','49152783','Leipzig','Hauptstrasse 77','16736','<EMAIL>',0,NULL,'halloworld',NULL),(51,'andrea','sad','2018-01-09 09:47:38','2017-09-07','493032923','berlin','any strett','32323','<EMAIL>',0,NULL,'halloworld',NULL),(52,'Andrew','Grants','2018-01-09 09:47:38','1990-02-12','492032323','Berlin','herestrasse 83','13142','<EMAIL>',0,NULL,'halloworld',NULL),(53,'Nacho','Merino','2018-01-09 09:47:38','1986-01-26','492032323577','Berlin','herestrasse 83','13142','<EMAIL>',0,NULL,'halloworld',NULL),(54,'CoolName','AwesomeSurname','2018-01-11 09:22:17','2222-02-22',NULL,'A Random City','That is secret','82334','escatman@gmax',0,NULL,'halloworld',NULL),(55,'CoolName','AwesomeSurname','2018-01-11 11:54:20','0111-11-11',NULL,'A Random City','That is secret','82334','<EMAIL>',0,NULL,'halloworld',NULL),(56,'ROUTER','AwesomeSurname','2018-01-11 11:54:20','2001-02-04',NULL,'A Random City','That is secret','82334','<EMAIL>',0,NULL,'halloworld',NULL),(57,'CoolName','AwesomeSurname','2018-01-11 11:54:20','2001-02-04',NULL,'A Random City','That is secret','82334','<EMAIL>',0,NULL,'halloworld',NULL),(58,'CoolName','AwesomeSurname','2018-01-11 11:54:20','2001-02-04',NULL,'A Random City','That is secret','82334','<EMAIL>',0,NULL,'halloworld',NULL),(59,'CoolName','AwesomeSurname','2018-01-11 11:54:20','2001-02-04',NULL,'A Random City','That is secret','82334','<EMAIL>',0,NULL,'halloworld',NULL),(60,'CoolNamesdf','AwesomeSurnamesdf','2018-01-11 11:54:20','2001-02-04',NULL,'A Random Citysdf','That is secretsdf','82334sdf','<EMAIL>ffff',0,NULL,'halloworld',NULL),(61,'CoolName','AwesomeSurname','2018-01-11 11:54:20','2001-02-04',NULL,'A Random City','That is secret','82334','<EMAIL>',0,NULL,'halloworld',NULL),(62,'CoolName','AwesomeSurname','2018-01-11 11:54:20','2001-02-04',NULL,'A Random City','That is secret','82334','<EMAIL>ffffsd',0,NULL,'halloworld',NULL),(63,'CoolName','AwesomeSurname','2018-01-11 11:54:20','2001-02-04',NULL,'A Random City','That is secret','82334','<EMAIL>',0,NULL,'halloworld',NULL),(64,'CoolName','AwesomeSurname','2018-01-11 11:54:20','2001-02-04',NULL,'A Random City','That is secret','82334','<EMAIL>',0,NULL,'halloworld',NULL),(65,'Nass','Mad','2018-01-11 11:54:37','1990-02-13',NULL,'verlim','A street','823342','<EMAIL>',0,NULL,'ranagepaja900',NULL),(66,'CoolName','AwesomeSurname','2018-01-11 11:55:21','2001-02-04',NULL,'A Random City','That is secret','82334','<EMAIL>',0,NULL,'qwerty',NULL),(67,NULL,NULL,'2018-01-11 13:11:47',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL),(68,'CoolName','asd','2018-01-11 14:05:47','4343-12-31',NULL,'asd','That is secret','asda','<EMAIL>',0,NULL,'wqeqwqwe',NULL),(69,'asd','asd','2018-01-11 14:39:57','0043-03-31',NULL,'A Random City','sad','82334','esc34@232',0,NULL,'sdfsdfs',NULL),(70,NULL,NULL,'2018-01-11 14:51:48',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL),(71,NULL,NULL,'2018-01-11 14:54:04',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL),(72,NULL,NULL,'2018-01-11 14:57:58',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL),(73,NULL,NULL,'2018-01-11 15:05:56',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL),(74,NULL,NULL,'2018-01-11 15:06:30',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL),(75,NULL,NULL,'2018-01-11 15:06:46',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL),(76,'test1','test','2018-01-15 09:20:50','3122-02-12',NULL,'Berlina','That is secret','2312312','<EMAIL>',1,NULL,'qwerty','MZ1xwrLhAfQHsnZ0WYRg'),(77,'nass','mad','2018-01-15 10:28:09','1983-12-12',NULL,'muds','bras','90232','<EMAIL>',1,NULL,'qwertyu','e7hX7dMjYfFrFzHfpZeg'),(78,'asdas','asdas','2018-01-15 12:55:16','0111-11-11',NULL,'sadsadas','ads','asd2321','<EMAIL>',0,NULL,'asdasdasd','Hlx3kB4xYESMoMKcpM0R'),(79,'Test','TESET','2018-01-16 12:34:55','2322-02-01',NULL,'adsad','dqqwq','qdqwd','tester@<EMAIL>',1,NULL,'$2a$10$JiEmR9BVfurgX5Mo09slguGFFKS.XcgJbVHs2VQeljoMrgBF0x1gu','rJSXZxQx118PHNE12zib');
/*!40000 ALTER TABLE `customers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `order_details`
--
DROP TABLE IF EXISTS `order_details`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `order_details` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`price` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=254 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `order_details`
--
LOCK TABLES `order_details` WRITE;
/*!40000 ALTER TABLE `order_details` DISABLE KEYS */;
INSERT INTO `order_details` VALUES (1,0,18,1350),(2,1,16,1150),(3,1,13,850),(4,1,5,450),(5,2,19,1450),(6,2,9,550),(7,3,12,750),(8,4,8,450),(9,5,12,750),(10,5,10,650),(11,5,11,750),(12,6,6,550),(13,6,4,350),(14,7,22,1750),(15,7,19,1450),(16,8,5,450),(17,8,20,1550),(18,9,23,1850),(19,9,5,450),(20,10,21,1650),(21,11,6,550),(22,11,8,450),(23,11,19,1450),(24,12,12,750),(25,12,10,650),(26,13,21,1650),(27,14,0,500),(28,15,17,1250),(29,15,20,1550),(30,16,6,550),(31,16,13,850),(32,16,18,1350),(33,17,9,550),(34,17,16,1150),(35,18,9,550),(36,18,0,500),(37,18,13,850),(38,19,3,800),(39,19,8,450),(40,20,8,450),(41,20,0,500),(42,20,20,1550),(43,21,7,650),(44,22,14,950),(45,23,14,950),(46,24,0,500),(47,25,1,600),(48,25,12,750),(49,25,18,1350),(50,26,23,1850),(51,26,16,1150),(52,26,10,650),(53,27,22,1750),(54,27,18,1350),(55,28,16,1150),(56,28,8,450),(57,28,6,550),(58,29,15,1050),(59,30,19,1450),(60,30,7,650),(61,30,18,1350),(62,31,6,550),(63,31,14,950),(64,32,13,850),(65,32,9,550),(66,32,10,650),(67,33,12,750),(68,34,1,600),(69,34,18,1350),(70,35,15,1050),(71,35,7,650),(72,36,11,750),(73,36,1,600),(74,36,5,450),(75,37,17,1250),(76,37,18,1350),(77,38,12,750),(78,38,21,1650),(79,39,21,1650),(80,40,22,1750),(81,40,6,550),(82,41,21,1650),(83,41,5,450),(84,41,12,750),(85,42,15,1050),(86,42,9,550),(87,43,19,1450),(88,43,13,850),(89,44,2,700),(90,44,22,1750),(91,45,4,350),(92,45,7,650),(93,46,8,450),(94,47,7,650),(95,47,18,1350),(96,47,4,350),(97,48,0,500),(98,48,19,1450),(99,48,13,850),(100,49,13,850),(101,49,21,1650),(102,50,10,650),(103,51,12,750),(104,52,6,550),(105,52,21,1650),(106,53,11,750),(107,53,10,650),(108,54,18,1350),(109,55,5,450),(110,55,5,450),(111,56,12,750),(112,57,3,800),(113,58,16,1150),(114,58,10,650),(115,59,7,650),(116,60,5,450),(117,61,1,600),(118,62,14,950),(119,63,22,1750),(120,63,10,650),(121,63,14,950),(122,64,15,1050),(123,64,4,350),(124,64,12,750),(125,65,6,550),(126,65,7,650),(127,65,18,1350),(128,66,9,550),(129,67,20,1550),(130,67,15,1050),(131,68,15,1050),(132,68,8,450),(133,68,12,750),(134,69,14,950),(135,69,15,1050),(136,70,20,1550),(137,70,17,1250),(138,71,11,750),(139,71,17,1250),(140,72,0,500),(141,73,5,450),(142,74,23,1850),(143,75,15,1050),(144,75,4,350),(145,75,6,550),(146,76,15,1050),(147,76,20,1550),(148,77,18,1350),(149,77,4,350),(150,77,23,1850),(151,78,17,1250),(152,79,7,650),(153,80,7,650),(154,80,20,1550),(155,81,13,850),(156,82,15,1050),(157,83,2,700),(158,84,13,850),(159,84,4,350),(160,45,32,4545),(171,105,56,565),(172,110,1,600),(173,111,1,600),(174,112,0,500),(175,113,0,500),(176,114,0,500),(177,117,0,500),(178,117,1,600),(179,117,2,700),(180,118,1,600),(181,118,2,700),(182,118,0,500),(183,119,0,500),(184,119,1,600),(185,119,2,700),(186,120,0,500),(187,120,1,600),(188,120,2,700),(189,121,0,500),(190,121,1,600),(191,121,2,700),(192,121,3,800),(193,121,4,350),(194,121,5,450),(195,121,6,550),(196,121,7,650),(197,122,6,550),(198,122,7,650),(199,122,8,450),(200,122,15,1050),(201,122,16,1150),(202,122,17,1250),(203,123,1,600),(204,123,0,500),(205,123,2,700),(206,124,1,600),(207,124,0,500),(208,124,2,700),(209,125,1,600),(210,125,0,500),(211,125,2,700),(212,126,1,600),(213,126,0,500),(214,126,2,700),(215,127,2,700),(216,127,1,600),(217,127,0,500),(218,128,2,700),(219,128,1,600),(220,128,0,500),(221,129,2,700),(222,129,1,600),(223,129,0,500),(224,130,2,700),(225,130,1,600),(226,130,0,500),(227,131,2,700),(228,131,1,600),(229,131,0,500),(230,132,1,600),(231,132,0,500),(232,133,0,500),(233,133,1,600),(234,134,1,600),(235,134,0,500),(236,135,2,700),(237,136,0,500),(238,136,1,600),(239,136,2,700),(240,137,0,500),(241,137,1,600),(242,137,2,700),(243,138,1,600),(244,138,0,500),(245,139,1,600),(246,140,1,600),(247,140,0,500),(248,141,2,700),(249,141,1,600),(250,142,2,700),(251,142,1,600),(252,143,1,600),(253,144,0,500);
/*!40000 ALTER TABLE `order_details` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `orders`
--
DROP TABLE IF EXISTS `orders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `orders` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`paid` timestamp NULL DEFAULT NULL,
`payment_method_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=145 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `orders`
--
LOCK TABLES `orders` WRITE;
/*!40000 ALTER TABLE `orders` DISABLE KEYS */;
INSERT INTO `orders` VALUES (1,3,'2017-12-19 13:28:24',NULL,3),(2,3,'2017-12-19 13:28:24','2011-12-02 15:40:25',2),(3,4,'2017-12-19 13:28:24','2013-11-03 22:05:46',4),(4,4,'2017-12-19 13:28:24',NULL,1),(5,6,'2017-12-19 13:28:24','2012-02-11 22:18:54',2),(6,6,'2017-12-19 13:28:24','2012-08-11 21:18:40',4),(7,6,'2017-12-19 13:28:24','2012-06-01 21:19:23',3),(8,7,'2017-12-19 13:28:24','2011-02-09 15:16:21',2),(9,8,'2011-10-31 21:31:18','2011-11-09 21:33:16',NULL),(10,8,'2012-07-31 20:31:18','2012-08-13 20:32:19',NULL),(11,9,'2010-10-31 18:19:37','2010-11-09 18:21:14',NULL),(12,9,'2010-11-30 18:19:37','2010-11-30 18:21:20',NULL),(13,9,'2010-12-31 18:19:37',NULL,NULL),(14,10,'2011-01-30 22:22:15','2011-02-04 22:22:35',NULL),(15,11,'2011-02-28 17:16:09','2011-03-04 17:17:24',NULL),(16,12,'2011-04-30 19:51:54','2011-05-05 19:53:46',NULL),(17,12,'2011-08-30 19:51:54','2011-09-06 19:53:15',NULL),(18,12,'2011-08-30 19:51:54','2011-09-07 19:53:23',NULL),(19,13,'2012-03-30 21:57:18',NULL,NULL),(20,13,'2012-01-30 22:57:18','2012-02-11 22:58:13',NULL),(21,14,'2014-01-30 19:41:08','2014-02-05 19:41:34',NULL),(22,14,'2013-10-30 19:41:08','2013-10-31 19:42:27',NULL),(23,15,'2011-09-28 21:05:07','2011-10-05 21:05:16',NULL),(24,15,'2011-05-28 21:05:07','2011-06-08 21:05:59',NULL),(25,16,'2011-04-30 18:40:58','2011-05-13 18:41:02',NULL),(26,16,'2010-08-31 18:40:58','2010-09-02 18:42:19',NULL),(27,17,'2012-06-30 17:05:43','2012-07-12 17:06:40',NULL),(28,17,'2011-09-30 17:05:43','2011-10-03 17:07:05',NULL),(29,17,'2011-09-30 17:05:43',NULL,NULL),(30,18,'2011-05-30 14:26:41','2011-05-30 14:27:43',NULL),(31,19,'2013-11-30 16:34:47','2013-12-05 16:35:06',NULL),(32,19,'2013-11-30 16:34:47','2013-12-03 16:34:51',NULL),(33,19,'2013-12-31 16:34:47',NULL,NULL),(34,20,'2010-08-30 21:20:45','2010-09-01 21:22:11',NULL),(35,20,'2010-09-30 21:20:45','2010-10-02 21:20:57',NULL),(36,22,'2012-07-30 21:38:53','2012-08-05 21:39:06',NULL),(37,22,'2013-03-30 22:38:53','2013-04-02 21:39:57',NULL),(38,22,'2012-07-30 21:38:53','2012-07-30 21:40:14',NULL),(39,23,'2013-08-31 16:19:27','2013-09-02 16:19:54',NULL),(40,23,'2013-11-30 17:19:27','2013-12-08 17:19:32',NULL),(41,23,'2013-07-31 16:19:27','2013-08-06 16:19:51',NULL),(42,24,'2010-02-28 16:57:06','2010-03-05 16:57:30',NULL),(43,24,'2010-07-31 15:57:06','2010-08-07 15:57:35',NULL),(44,24,'2010-04-30 15:57:06','2010-05-11 15:57:51',NULL),(45,25,'2014-01-30 20:11:18','2014-02-04 20:12:31',NULL),(46,27,'2011-04-30 20:08:00','2011-05-10 20:09:49',NULL),(47,27,'2012-01-30 21:08:00','2012-02-08 21:09:39',NULL),(48,28,'2012-11-30 16:58:54',NULL,NULL),(49,29,'2013-01-31 22:36:14','2013-02-11 22:36:21',NULL),(50,29,'2013-07-31 21:36:14','2013-08-05 21:37:44',NULL),(51,29,'2013-07-31 21:36:14','2013-08-11 21:37:48',NULL),(52,31,'2012-08-31 21:55:32','2012-09-02 21:55:58',NULL),(53,31,'2012-06-30 21:55:32','2012-07-08 21:56:01',NULL),(54,31,'2013-02-28 22:55:32','2013-03-02 22:56:34',NULL),(55,32,'2014-03-31 18:41:42','2014-04-02 18:43:02',NULL),(56,32,'2014-01-31 19:41:42','2014-02-12 19:42:45',NULL),(57,33,'2012-03-30 17:27:43','2012-04-05 17:29:07',NULL),(58,34,'2013-08-28 20:49:56',NULL,NULL),(59,34,'2013-07-28 20:49:56','2013-08-04 20:50:00',NULL),(60,36,'2013-10-31 16:54:02','2013-11-06 16:54:36',NULL),(61,36,'2013-11-30 16:54:02','2013-12-10 16:55:02',NULL),(62,36,'2014-02-28 16:54:02','2014-03-03 16:54:50',NULL),(63,37,'2012-01-31 21:24:59','2012-02-03 21:26:07',NULL),(64,37,'2012-06-30 20:24:59','2012-07-10 20:25:47',NULL),(65,37,'2011-11-30 21:24:59','2011-12-03 21:26:52',NULL),(66,38,'2013-12-30 16:37:58','2014-01-05 16:39:16',NULL),(67,38,'2013-12-30 16:37:58','2013-12-30 16:38:17',NULL),(68,39,'2011-03-28 15:54:03','2011-04-07 15:54:43',NULL),(69,39,'2011-05-28 15:54:03',NULL,NULL),(70,39,'2011-04-28 15:54:03','2011-05-08 15:54:20',NULL),(71,40,'2013-07-31 18:35:41',NULL,NULL),(72,40,'2013-04-30 18:35:41','2013-05-12 18:36:19',NULL),(73,40,'2013-06-30 18:35:41','2013-07-04 18:36:22',NULL),(74,42,'2011-04-30 19:20:33','2011-05-03 19:21:50',NULL),(75,42,'2011-07-31 19:20:33','2011-08-04 19:21:51',NULL),(76,42,'2011-03-31 19:20:33','2011-04-13 19:20:50',NULL),(77,44,'2013-09-30 18:30:21','2013-10-10 18:32:14',NULL),(78,44,'2014-01-30 19:30:21','2014-02-02 19:30:26',NULL),(79,44,'2013-08-30 18:30:21','2013-09-10 18:31:01',NULL),(80,45,'2011-10-30 18:59:35','2011-11-04 19:01:07',NULL),(81,45,'2012-02-29 18:59:35','2012-03-09 19:00:55',NULL),(82,45,'2012-05-30 17:59:35','2012-06-09 17:59:35',NULL),(83,46,'2010-08-31 18:25:51','2010-09-13 18:27:30',NULL),(84,48,'2011-02-28 19:52:05','2011-03-09 19:53:12',NULL),(85,45,'2012-05-30 17:59:35','2012-03-09 19:00:55',NULL),(105,43,'2017-12-19 14:42:46',NULL,3),(106,37,'2017-12-21 10:38:15',NULL,3),(107,17,'2017-12-21 10:39:17',NULL,2),(108,45,'2017-12-21 10:40:18',NULL,3),(109,45,'2017-12-21 10:40:45',NULL,3),(110,22,'2017-12-21 10:41:16',NULL,4),(111,22,'2017-12-21 10:41:40',NULL,2),(112,37,'2017-12-21 12:51:40',NULL,3),(113,42,'2018-01-02 08:26:24',NULL,1),(114,14,'2018-01-02 08:28:10',NULL,3),(115,17,'2018-01-02 09:02:30',NULL,NULL),(116,45,'2018-01-02 09:04:05',NULL,NULL),(117,14,'2018-01-02 09:08:46',NULL,NULL),(118,10,'2018-01-02 09:10:18',NULL,4),(119,17,'2018-01-02 09:13:27',NULL,3),(120,17,'2018-01-02 09:14:02',NULL,4),(121,45,'2018-01-02 10:11:36',NULL,3),(122,5,'2018-01-02 10:22:48',NULL,3),(123,14,'2018-01-02 13:21:12',NULL,2),(124,14,'2018-01-02 13:23:22',NULL,4),(125,14,'2018-01-02 13:25:19',NULL,4),(126,14,'2018-01-02 14:03:13',NULL,2),(127,45,'2018-01-02 14:05:49',NULL,4),(128,45,'2018-01-02 14:11:03',NULL,3),(129,45,'2018-01-02 14:11:58',NULL,4),(130,45,'2018-01-02 14:48:13',NULL,3),(131,45,'2018-01-02 14:49:19',NULL,4),(132,5,'2018-01-08 09:55:45',NULL,NULL),(133,5,'2018-01-08 09:56:45',NULL,NULL),(134,5,'2018-01-08 09:58:26',NULL,NULL),(135,5,'2018-01-08 09:58:50',NULL,NULL),(136,45,'2018-01-08 10:00:13',NULL,NULL),(137,45,'2018-01-08 10:00:52',NULL,NULL),(138,14,'2018-01-08 10:01:24',NULL,NULL),(139,14,'2018-01-08 10:02:42',NULL,NULL),(140,14,'2018-01-08 10:03:45',NULL,NULL),(141,20,'2018-01-16 08:06:35',NULL,4),(142,20,'2018-01-16 08:11:01',NULL,4),(143,20,'2018-01-16 08:21:27',NULL,NULL),(144,20,'2018-01-16 08:46:31',NULL,4);
/*!40000 ALTER TABLE `orders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `passwordreset`
--
DROP TABLE IF EXISTS `passwordreset`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `passwordreset` (
`code` varchar(20) DEFAULT NULL,
`email` varchar(45) DEFAULT NULL,
`reset` datetime DEFAULT NULL,
`customerID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `passwordreset`
--
LOCK TABLES `passwordreset` WRITE;
/*!40000 ALTER TABLE `passwordreset` DISABLE KEYS */;
INSERT INTO `passwordreset` VALUES ('UHCnOvYPMpnmXC8b18cg','<EMAIL>','2018-01-16 11:14:40',''),('kewJBfu979VzaKTfSLlg','<EMAIL>','2018-01-16 11:19:11',''),('ysXwyM7AFldQyWaIoOvo','<EMAIL>',NULL,'20'),('mMDZGXR1YlEhnyqxasXy','<EMAIL>','2018-01-16 12:43:10','20'),('liTA2vgp7vM0lP0pGNj5','<EMAIL>','2018-01-16 13:36:33','20'),('sLNOFAvQjn6cvUbxcD7Y','<EMAIL>','2018-01-16 15:56:08','20'),('A4goWQByr4pxh4E0bf3d','<EMAIL>','2018-01-17 10:07:46','1'),('vdgaNnN5m6jJhaqrWsm6','<EMAIL>','2018-01-17 12:02:47','1'),('JXu2DKj3mJnLbHq9ZBvT','<EMAIL>',NULL,'1');
/*!40000 ALTER TABLE `passwordreset` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `payment_methods`
--
DROP TABLE IF EXISTS `payment_methods`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payment_methods` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`method` varchar(45) DEFAULT NULL,
`icon` varchar(200) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `payment_methods`
--
LOCK TABLES `payment_methods` WRITE;
/*!40000 ALTER TABLE `payment_methods` DISABLE KEYS */;
INSERT INTO `payment_methods` VALUES (1,'paypal','http://pngimg.com/uploads/paypal/paypal_PNG21.png'),(2,'visa','https://www.oroyfinanzas.com/files/2015/05/visa.png'),(3,'sepa','https://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Single_Euro_Payments_Area_logo.svg/1280px-Single_Euro_Payments_Area_logo.svg.png'),(4,'bitcoin','https://8356-presscdn-0-69-pagely.netdna-ssl.com/wp-content/uploads/2013/04/bitcoin.png');
/*!40000 ALTER TABLE `payment_methods` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `product_categories`
--
DROP TABLE IF EXISTS `product_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_categories` (
`id` int(11) NOT NULL,
`name` varchar(45) DEFAULT NULL,
`pictures` varchar(200) DEFAULT NULL,
`description` varchar(800) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `product_categories`
--
LOCK TABLES `product_categories` WRITE;
/*!40000 ALTER TABLE `product_categories` DISABLE KEYS */;
INSERT INTO `product_categories` VALUES (0,'PC','https://images.unsplash.com/photo-1500083443496-000d756d070c?auto=format&fit=crop&w=1328&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','A personal computer (PC) is a multi-purpose computer whose size, capabilities, and price make it feasible for individual use. PCs are intended to be operated directly by an end user, rather than by a computer expert or technician. Computer time-sharing models that were typically used with larger, more expensive minicomputer and mainframe systems, to enable them be used by many people at the same time, are not used with PCs.'),(1,'Laptop','https://images.unsplash.com/photo-1508984921474-bc8302cb4d04?auto=format&fit=crop&w=1350&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','A laptop, often called a notebook, is a small, portable personal computer with a clamshell form factor, an alphanumeric keyboard on the lower part of the clamshell and a thin LCD or LED computer screen on the upper part, which is opened up to use the computer. Laptops are folded shut for transportation, and thus are suitable for mobile use.Although originally there was a distinction between laptops and notebooks, the former being bigger and heavier than the latter, as of 2014, there is often no longer any difference.Laptops are commonly used in a variety of settings, such as at work, in education, in playing games, Internet surfing, for personal multimedia and general home computer use.'),(2,'Mac','https://images.unsplash.com/photo-1496181133206-80ce9b88a853?auto=format&fit=crop&w=1351&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','The MacBook is a brand of notebook computers manufactured by Apple Inc. from May 2006 to February 2012, and relaunched in 2015. It replaced the iBook series and 12-inch PowerBook series of notebooks as a part of the Apple-Intel transition from PowerPC. Positioned as the low end of the MacBook family, below the premium ultra-portable MacBook Air and the powerful MacBook Pro, the MacBook was aimed at the consumer and education markets. It was the best-selling Macintosh ever. For five months in 2008, it was the best-selling laptop of any brand in US retail stores.'),(3,'SmartPhone','https://images.unsplash.com/photo-1470350576089-539d5a852bf7?auto=format&fit=crop&w=1050&q=80','A smartphone is a handheld personal computer with a mobile operating system and an integrated mobile broadband cellular network connection for voice, SMS, and Internet data communication; most if not all smartphones also support Wi-Fi. Smartphones are typically pocket-sized, as opposed to tablets, which are much larger in size. They are able to run a variety of software components, known as “apps”.');
/*!40000 ALTER TABLE `product_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `products`
--
DROP TABLE IF EXISTS `products`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products` (
`id` int(11) NOT NULL,
`name` varchar(45) NOT NULL,
`price` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`pictures` varchar(200) DEFAULT NULL,
`description` varchar(800) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `products`
--
LOCK TABLES `products` WRITE;
/*!40000 ALTER TABLE `products` DISABLE KEYS */;
INSERT INTO `products` VALUES (0,'Dell 1000',500,0,'https://images.unsplash.com/photo-1483058712412-4245e9b90334?auto=format&fit=crop&w=1500&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(1,'Dell 2000',600,0,'https://images.unsplash.com/photo-1463171379579-3fdfb86d6285?auto=format&fit=crop&w=1500&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(2,'Dell 3000',700,0,'https://images.unsplash.com/photo-1496171367470-9ed9a91ea931?auto=format&fit=crop&w=1350&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(3,'Dell 4000',800,0,'https://images.unsplash.com/photo-1414690165279-49ab0a9a7e66?auto=format&fit=crop&w=1350&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(4,'HP Workstation 1',350,0,'https://images.unsplash.com/5/unsplash-kitsune-3.jpg?auto=format&fit=crop&w=1500&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(5,'HP Workstation 2',450,0,'https://images.unsplash.com/photo-1485988412941-77a35537dae4?auto=format&fit=crop&w=1372&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(6,'HP Workstation 3',550,0,'https://images.unsplash.com/photo-1481887328591-3e277f9473dc?auto=format&fit=crop&w=1360&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(7,'HP Workstation 4',650,0,'https://images.unsplash.com/photo-1501555568989-0d12d825d489?auto=format&fit=crop&w=752&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(8,'HP Probook 1100',450,1,'https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1504&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(9,'HP Probook 2100',550,1,'https://images.unsplash.com/photo-1482062364825-616fd23b8fc1?auto=format&fit=crop&w=1500&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(10,'HP Probook 3100',650,1,'https://images.unsplash.com/photo-1484417894907-623942c8ee29?auto=format&fit=crop&w=1489&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(11,'HP Probook 4100',750,1,'https://images.unsplash.com/photo-1487014679447-9f8336841d58?auto=format&fit=crop&w=1466&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(12,'Sony Vaio x1',750,1,'https://images.unsplash.com/photo-1511415932124-42efedd2eacf?auto=format&fit=crop&w=1351&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(13,'Sony Vaio x2',850,1,'https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1302&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(14,'Sony Vaio x3',950,1,'https://images.unsplash.com/photo-1426024120108-99cc76989c71?auto=format&fit=crop&w=1506&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(15,'Sony Vaio x4',1050,1,'https://images.unsplash.com/uploads/14125120591540eb48427/c1c4b1aa?auto=format&fit=crop&w=1444&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(16,'MacBook Pro 1',1150,2,'https://images.unsplash.com/7/Top_view.jpg?auto=format&fit=crop&w=1400&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(17,'MacBook Pro 2',1250,2,'https://images.unsplash.com/45/QDSMoAMTYaZoXpcwBjsL__DSC0104-1.jpg?auto=format&fit=crop&w=1510&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(18,'MacBook Pro 3',1350,2,'https://images.unsplash.com/photo-1511415932124-42efedd2eacf?auto=format&fit=crop&w=1351&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(19,'MacBook Pro 4',1450,2,'https://images.unsplash.com/photo-1455894127589-22f75500213a?auto=format&fit=crop&w=1279&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(20,'MacBook Pro 5',1550,2,'https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?auto=format&fit=crop&w=1500&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(21,'MacBook Pro 6',1650,2,'https://images.unsplash.com/photo-1466228432269-af42b400b934?auto=format&fit=crop&w=1400&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(22,'MacBook Pro 7',1750,2,'https://images.unsplash.com/photo-1511415932124-42efedd2eacf?auto=format&fit=crop&w=1351&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(23,'MacBook Pro 8',1850,2,'https://images.unsplash.com/photo-1502945015378-0e284ca1a5be?auto=format&fit=crop&w=1350&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D','enter description here'),(24,'Samsung Galaxy S6',390,3,'https://images.unsplash.com/photo-1421757350652-9f65a35effc7?auto=format&fit=crop&w=1053&q=80','enter description here'),(25,'HTC X345',578,3,'https://images.unsplash.com/photo-1505740494862-e7e49c099cf1?auto=format&fit=crop&w=750&q=80','enter description here'),(26,'Samsung Galaxy S8',800,3,'https://images.unsplash.com/photo-1478358161113-b0e11994a36b?auto=format&fit=crop&w=334&q=80','enter description here'),(27,'Iphone 10',1200,3,'https://images.unsplash.com/photo-1494366222322-387658a1a976?auto=format&fit=crop&w=751&q=80','enter description here'),(28,'Iphone 11',1400,3,'https://images.unsplash.com/photo-1458862768540-8b091824fe2d?auto=format&fit=crop&w=752&q=80','enter description here'),(29,'Iphone 12',1700,3,'https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?auto=format&fit=crop&w=500&q=80','enter description here');
/*!40000 ALTER TABLE `products` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2018-01-17 12:36:32
|
/*
Adding foreign key constraints (dropping existing if they exist)
*/
ALTER TABLE Sales.Invoices
DROP CONSTRAINT IF EXISTS FK_Cust_Inv
ALTER TABLE Sales.Orders
DROP CONSTRAINT IF EXISTS FK_Cust_Orders
GO
ALTER TABLE Sales.Invoices
ADD CONSTRAINT FK_Cust_Inv FOREIGN KEY (CustomerID)
REFERENCES Sales.Customers (CustomerID) ON DELETE CASCADE;
GO
ALTER TABLE Sales.Orders
ADD CONSTRAINT FK_Cust_Orders FOREIGN KEY (CustomerID)
REFERENCES Sales.Customers (CustomerID) ON DELETE NO ACTION;
|
CREATE TABLE day24 (rownum serial, input text);
\COPY day24 (input) FROM 'input.txt'
WITH RECURSIVE
input AS (
SELECT rownum,
match[1]::integer AS a,
match[2]::integer AS b
FROM day24,
regexp_match(input, '^(\d+)/(\d+)$') AS match
),
bridges AS (
SELECT 0 AS step,
rownum,
0 AS a,
greatest(a, b) AS b,
array[rownum] AS path,
a + b AS strength
FROM input
WHERE a = 0 OR b = 0
UNION ALL
SELECT b.step+1,
i.rownum,
b.b,
i.a + i.b - b.b,
path || i.rownum,
b.strength + i.a + i.b
FROM input AS i
JOIN bridges AS b ON b.b IN (i.a, i.b)
WHERE i.rownum <> ALL (b.path)
),
first_star AS (
SELECT max(strength) AS first_star
FROM bridges
),
second_star AS (
SELECT strength AS second_star
FROM bridges
ORDER BY step DESC, strength DESC
LIMIT 1
)
SELECT (TABLE first_star),
(TABLE second_star);
DROP TABLE day24;
|
-- file:path.sql ln:9 expect:true
INSERT INTO PATH_TBL VALUES ('[(1,2),(3,4)]')
|
<filename>migrations/framework/20200614_Development/07_Dev.RecordDel.sql<gh_stars>1-10
--liquibase formatted sql
--changeset vrafael:framework_20200614_Development_07_DevRecordDel logicalFilePath:path-independent splitStatements:true endDelimiter:\nGO runOnChange:true
SET ANSI_NULLS ON
SET QUOTED_IDENTIFIER ON
GO
--------- framework "RecordSQL" v2 (https://github.com/vrafael/recordsql-database) ---------
CREATE OR ALTER PROCEDURE [Dev].[RecordDel]
@TypeTag dbo.string
,@Identifier bigint
AS
EXEC [dbo].[ContextProcedurePush]
@ProcID = @@PROCID
BEGIN
SET NOCOUNT ON
DECLARE
@ProcedureName dbo.string
,@TypeID bigint = dbo.TypeIDByTag(@TypeTag)
IF @TypeID IS NULL
BEGIN
IF @TypeTag IS NOT NULL
BEGIN
EXEC dbo.Error
@TypeTag = N'SystemError'
,@Message = N'Не удалось определить тип по тегу "%s"'
,@p0 = @TypeTag
END
ELSE
BEGIN
EXEC dbo.Error
@TypeTag = N'SystemError'
,@Message = N'Не указан тип записи'
END
END
SELECT TOP (1)
@ProcedureName = tpi.ProcedureName
FROM dbo.TypeProcedureInline(@TypeID, N'Del') tpi
IF @ProcedureName IS NULL
BEGIN
EXEC dbo.Error
@TypeTag = N'SystemError'
,@Message = N'Не удалось определить процедуру Del типа ID=%s'
,@p0 = @TypeID
END
EXEC @ProcedureName
@Identifier
END
--EXEC Dev.RecordDel
GO
EXEC dbo.DatabaseObjectDescription
@ObjectName = N'Dev.RecordDel'
,@Description = N'Удаление записи по Идентификатору объекта или по связке Идентификатор/Тип записи' |
ALTER TABLE character_db_version CHANGE COLUMN required_9974_01_characters_group required_10007_01_characters_pet_aura bit;
UPDATE `pet_aura` SET remaincharges = 0 WHERE remaincharges = 255; |
<gh_stars>0
SELECT COUNT(1) FROM propuesta WHERE id <> :id AND licitacion_id = :licitacionId AND nombre = :nombre |
-- limit offset
select count(*) from j1 where c_float not in ( select max(c_integer) from j6 group by c_date having count(*) > 0 limit 3);
|
<gh_stars>0
SELECT SUBJ.SUBJ_NAME
|| ','
|| TARG.TARGET_NAME
|| ','
|| FLD.FLDNO
|| ','
|| FLD.TARGET_NAME
|| ','
|| DTYPE.DATATYPE_NAME
|| ','
|| FLD.DPREC
|| ','
|| FLD.DSCALE
|| ','
|| FLD.NULLTYPE
|| ','
|| FLD.KEYTYPE RES
FROM $metaOwner.OPB_TARG TARG,
$metaOwner.OPB_TARG_FLD FLD,
$metaOwner.OPB_MMD_DATATYPE DTYPE,
$metaOwner.OPB_SUBJECT SUBJ
WHERE TARG.TARGET_ID = FLD.TARGET_ID
AND FLD.NDTYPE = DTYPE.NATIVE_DATATYPE
AND FLD.DTYPE = DTYPE.PM_DATATYPE
AND TARG.VERSION_NUMBER = FLD.VERSION_NUMBER
AND TARG.SUBJ_ID = SUBJ.SUBJ_ID
AND DTYPE.PROP_FLAGS <> 128
AND TARG.IS_VISIBLE = 1
AND SUBJ.SUBJ_NAME
|| ','
||TARG.TARGET_NAME IN ($tgtListStr) |
drop procedure if exists complete_user;
delimiter $$
create procedure complete_user(i_user_name varchar(32))
main_sql:
begin
update users set completed='Y' where user_name=i_user_name;
end
$$
delimiter ;
|
-- populate_user_identity_source.sql
delete from system_user;
delete from user_identity_source;
insert into user_identity_source(name, record_effective_date, description, create_date, create_user) values ('DATABASE', now(), 'DATABASE user source system.', now(), 1);
insert into user_identity_source(name, record_effective_date, description, create_date, create_user) values ('IDIR', now(), 'IDIR user source system.', now(), 1);
insert into system_user (user_identity_source_id, user_identifier, record_effective_date, create_date, create_user)
values ((select user_identity_source_id from user_identity_source where name = 'DATABASE' and record_end_date is null), 'postgres', now(), now(), 1);
insert into system_user (user_identity_source_id, user_identifier, record_effective_date, create_date, create_user)
values ((select user_identity_source_id from user_identity_source where name = 'DATABASE' and record_end_date is null), 'biohub_api', now(), now(), 1);
|
<filename>server/src/main/resources/db/bootstrap/V14__requirements.sql
DROP TABLE IF EXISTS `requirements`;
CREATE TABLE `requirements`
(
`id` BIGINT(20) NOT NULL AUTO_INCREMENT,
`workspace_version_id` BIGINT(20) DEFAULT NULL,
`description` TEXT DEFAULT NULL,
`name` VARCHAR(250) DEFAULT NULL,
`copied_from` BIGINT(20) DEFAULT NULL,
`created_date` DATETIME DEFAULT CURRENT_TIMESTAMP,
`updated_date` DATETIME DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `index_requirements_on_workspace_version_id` (`workspace_version_id`),
UNIQUE KEY `index_requirements_on_workspace_version_id_and_name` (`workspace_version_id`, `name`),
CONSTRAINT `fk_workspace_version_id_in_requirements_to_workspace_versions` FOREIGN KEY (`workspace_version_id`) REFERENCES `workspace_versions` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
) ENGINE = InnoDB
AUTO_INCREMENT = 25
DEFAULT CHARSET = utf8
COLLATE utf8_unicode_ci;
|
CREATE OR REPLACE FUNCTION test_effective_roles_at_enterprise_function()
RETURNS SETOF TEXT
LANGUAGE plpgsql
AS $$
DECLARE
BEGIN
RETURN QUERY SELECT set_eq(
format('SELECT effective_roles_at_enterprise(%L, %L)', 'BigCo', 'BigCo User'),
ARRAY[]::delivery_role[],
'BigCo User has no roles at the enterprise scope'
);
INSERT INTO enterprise_user_roles(enterprise_id, user_id, role)
VALUES (ent('BigCo'), u('BigCo', 'BigCo User'), 'admin');
RETURN QUERY SELECT set_eq(
format('SELECT effective_roles_at_enterprise(%L, %L)', 'BigCo', 'BigCo User'),
ARRAY['admin']::delivery_role[],
'After being granted the admin role, BigCo User has "admin" as an effective role'
);
INSERT INTO enterprise_user_roles(enterprise_id, user_id, role)
VALUES (ent('BigCo'), u('BigCo', 'BigCo User'), 'committer'),
(ent('BigCo'), u('BigCo', 'BigCo User'), 'reviewer');
RETURN QUERY SELECT set_eq(
format('SELECT effective_roles_at_enterprise(%L, %L)', 'BigCo', 'BigCo User'),
ARRAY['admin', 'committer', 'reviewer']::delivery_role[],
'User has multiple granted roles at the enterprise scope'
);
END;
$$;
|
<filename>dm/tests/gtid/data/db1.increment.sql
use gtid;
insert into t1 values (2);
|
<reponame>byeungchun/ETL-CMS
/*********************************************************************************
# Copyright 2016 Observational Health Data Sciences and Informatics
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
********************************************************************************/
-- Change to the directory containing the data files
\cd :data_dir
-- Run the following command:
-- psql 'dbname={ohdsi} user={username} options=--search_path={schema_name}' -f load_CDMv5_synpuf.sql -v data_dir={dir_goes_here}
\COPY CARE_SITE FROM PROGRAM 'gzip -dc care_site.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY CONDITION_OCCURRENCE FROM PROGRAM 'gzip -dc condition_occurrence.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY DEATH FROM PROGRAM 'gzip -dc death.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY DEVICE_COST FROM PROGRAM 'gzip -dc device_cost.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY DRUG_COST FROM PROGRAM 'gzip -dc drug_cost.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY DRUG_EXPOSURE FROM PROGRAM 'gzip -dc drug_exposure.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY DEVICE_EXPOSURE FROM PROGRAM 'gzip -dc device_exposure.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY LOCATION FROM PROGRAM 'gzip -dc location.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY MEASUREMENT FROM PROGRAM 'gzip -dc measurement_occurrence.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY OBSERVATION FROM PROGRAM 'gzip -dc observation.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY PERSON FROM PROGRAM 'gzip -dc person.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY PROCEDURE_OCCURRENCE FROM PROGRAM 'gzip -dc procedure_occurrence.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY PROCEDURE_COST FROM PROGRAM 'gzip -dc procedure_cost.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY PROVIDER FROM PROGRAM 'gzip -dc provider.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY SPECIMEN FROM PROGRAM 'gzip -dc specimen.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY VISIT_COST FROM PROGRAM 'gzip -dc visit_cost.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY VISIT_OCCURRENCE FROM PROGRAM 'gzip -dc visit_occurrence.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY OBSERVATION_PERIOD FROM PROGRAM 'gzip -dc observation_period.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
\COPY PAYER_PLAN_PERIOD FROM PROGRAM 'gzip -dc payer_plan_period.csv.gz' WITH DELIMITER E',' CSV HEADER QUOTE E'\b';
|
<gh_stars>100-1000
--bx_history_volume
load data local inpath '/home/xxx/stock-data/bx_history_volume/20200701-20200706' overwrite into table stock.bx_day_volume_top10 partition(yearmonth=${yearmonth});
--history_dragon_tiger_list
load data local inpath '/home/xxx/stock-data/history_dragon_tiger_list/20200701-20200710' overwrite into table stock.history_dragon_tiger_list partition(yearmonth=${yearmonth});
--dragon_tiger_list
load data local inpath '/home/xxx/stock-data/dragon_tiger_list/202007' overwrite into table stock.dragon_tiger_list partition(yearmonth=${yearmonth});
--bx_day_rise_top10
load data local inpath '/home/xxx/stock-data/bx_day_rise_top10/202007' overwrite into table stock.bx_day_rise_top10 partition(yearmonth=${yearmonth});
--sector_fund_flow
load data local inpath '/home/xxx/stock-data/sector_fund_flow/202007' overwrite into table stock.sector_fund_flow partition(yearmonth=${yearmonth});
--bx_day_volume_top10
load data local inpath '/home/xxx/stock-data/bx_day_volume_top10/202007' overwrite into table stock.bx_day_volume_top10 partition(yearmonth=${yearmonth});
--bx_history_date
load data local inpath '/home/xxx/stock-data/bx_history_date/20200601-20200630' into table stock.bx_action_date;
--all_stock_data_details
load data local inpath '/home/xxx/stock-data/all_stock_data_details/2020-03' into table stock.stock_details partition(yearmonth=${yearmonth});
|
<filename>html/Lords_of_Games/administrator/components/com_joomlapack/uninstall.sql
DROP TABLE IF EXISTS `#__jp_profiles`;
DROP TABLE IF EXISTS `#__jp_exclusion`;
DROP TABLE IF EXISTS `#__jp_inclusion`;
DROP TABLE IF EXISTS `#__jp_registry`;
DROP TABLE IF EXISTS `#__jp_temp`;
DROP TABLE IF EXISTS `#__jp_stats`;
|
--+ holdcas on;
set names utf8;
CREATE TABLE t(
col1 INT NOT NULL AUTO_INCREMENT,
col2 CHAR collate utf8_ja_exp DEFAULT NULL
);
INSERT INTO t(col2) VALUES('ぁ');
INSERT INTO t(col2) VALUES('ぃ');
INSERT INTO t(col2) VALUES('ぇ');
INSERT INTO t(col2) VALUES('ぉ');
INSERT INTO t(col2) VALUES('ゃ');
INSERT INTO t(col2) VALUES('ん');
-- TR chars
INSERT INTO t(col2) VALUES('ç');
INSERT INTO t(col2) VALUES('ğ');
INSERT INTO t(col2) VALUES('ı');
INSERT INTO t(col2) VALUES('i');
INSERT INTO t(col2) VALUES('ö');
INSERT INTO t(col2) VALUES('ş');
INSERT INTO t(col2) VALUES('ü');
-- CN chars
INSERT INTO t(col2) VALUES('ē');
INSERT INTO t(col2) VALUES('ǎ');
INSERT INTO t(col2) VALUES('Ā');
INSERT INTO t(col2) VALUES('Ń');
INSERT INTO t(col2) VALUES('ǖ');
INSERT INTO t(col2) VALUES('Ǘ');
INSERT INTO t(col2) VALUES('1');
INSERT INTO t(col2) VALUES('0');
INSERT INTO t(col2) VALUES('9');
INSERT INTO t(col2) VALUES('語');
INSERT INTO t(col2) VALUES('1');
INSERT INTO t(col2) VALUES('亜');
INSERT INTO t(col2) VALUES('■');
INSERT INTO t(col2) VALUES('○');
INSERT INTO t(col2) VALUES('韓');
INSERT INTO t(col2) VALUES('帀');
-- UPPER
-- Latin chars
INSERT INTO t(col2) VALUES(UPPER('ぁ'));
INSERT INTO t(col2) VALUES(UPPER('ぃ'));
INSERT INTO t(col2) VALUES(UPPER('ぇ'));
INSERT INTO t(col2) VALUES(UPPER('ぉ'));
INSERT INTO t(col2) VALUES(UPPER('ゃ'));
INSERT INTO t(col2) VALUES(UPPER('ん'));
-- TR chars
INSERT INTO t(col2) VALUES(UPPER('ç'));
INSERT INTO t(col2) VALUES(UPPER('ğ'));
INSERT INTO t(col2) VALUES(UPPER('ı'));
INSERT INTO t(col2) VALUES(UPPER('i'));
INSERT INTO t(col2) VALUES(UPPER('ö'));
INSERT INTO t(col2) VALUES(UPPER('ş'));
INSERT INTO t(col2) VALUES(UPPER('ü'));
-- CN chars
INSERT INTO t(col2) VALUES(UPPER('ē'));
INSERT INTO t(col2) VALUES(UPPER('ǎ'));
INSERT INTO t(col2) VALUES(UPPER('Ā'));
INSERT INTO t(col2) VALUES(UPPER('Ń'));
INSERT INTO t(col2) VALUES(UPPER('ǖ'));
INSERT INTO t(col2) VALUES(UPPER('Ü'));
INSERT INTO t(col2) VALUES(UPPER('Ǘ'));
INSERT INTO t(col2) VALUES(UPPER('1'));
INSERT INTO t(col2) VALUES(UPPER('0'));
INSERT INTO t(col2) VALUES(UPPER('9'));
INSERT INTO t(col2) VALUES(UPPER('語'));
INSERT INTO t(col2) VALUES(UPPER('1'));
INSERT INTO t(col2) VALUES(UPPER('亜'));
INSERT INTO t(col2) VALUES(UPPER('■'));
INSERT INTO t(col2) VALUES(UPPER('○'));
INSERT INTO t(col2) VALUES(UPPER('韓'));
INSERT INTO t(col2) VALUES(UPPER('帀'));
--test
SELECT * from t where col2 between UPPER('帀') and 'ü' order by col2,col1;
--test
SELECT * from t where col2 between UPPER('帀') and '9' order by col2 desc,col1;
--test
SELECT * from t where col2 between UPPER('■') and '語' order by col2,col1 limit 3;
--test
SELECT * from t where col2 between UPPER('ē') and 'ü' order by col2 desc,col1 limit 2;
INSERT INTO t(col2) VALUES('l');
INSERT INTO t(col2) VALUES('8');
INSERT INTO t(col2) VALUES('发');
INSERT INTO t(col2) VALUES('五');
--test
SELECT * from t where col2 between UPPER('韓') and '■' order by col2,col1;
--test
SELECT * from t where col2 between UPPER('韓') and 'ü' order by col2 desc,col1;
--test
SELECT * from t where col2 between UPPER('9') and 'ぁ' order by col2,col1 limit 3;
--test
SELECT * from t where col2 between UPPER('ぃ') and '帀' order by col2 desc,col1 limit 2;
update t set col2='你' where col2='ç';
--test
SELECT * from t where col2 between UPPER('韓') and '■' order by col2,col1;
--test
SELECT * from t where col2 between UPPER('韓') and 'ü' order by col2 desc,col1;
--test
SELECT * from t where col2 between UPPER('9') and 'ぁ' order by col2,col1 limit 3;
--test
SELECT * from t where col2 between UPPER('ぃ') and '帀' order by col2 desc,col1 limit 2;
delete from t where col2 ='ü';
--test
SELECT * from t where col2 between UPPER('韓') and '■'order by col2,col1;
--test
SELECT * from t where col2 between UPPER('韓') and 'ü' order by col2 desc,col1;
--test
SELECT * from t where col2 between UPPER('9') and 'ぁ' order by col2,col1 limit 3;
--test
SELECT * from t where col2 between UPPER('ぃ') and '帀' order by col2 desc,col1 limit 2;
DROP TABLE t;
set names iso88591;
commit;
--+ holdcas off; |
<reponame>opengauss-mirror/Yat
-- @testpoint: 网络地址函数text(inet)把IP地址和掩码长度抽取为文本。
-- v4
-- 带掩码
SELECT text(inet '192.168.1.5/0') AS RESULT;
SELECT text('192.168.1.5/7') AS RESULT;
SELECT text('192.168.1.5/24') AS RESULT;
SELECT text('192.168.1.5/25') AS RESULT;
SELECT char_length(text('192.168.1.5/32'));
SELECT text('192.168.1.5.9/32') AS RESULT;
-- 不带掩码
SELECT text('127.0.0.1') AS RESULT;
-- 特殊地址
SELECT text('0.0.0.0/17') AS RESULT;
SELECT text('255.255.255.255/17') AS RESULT;
-- v6
-- 带前缀
SELECT text('fc00:db20:35b:7399::5:ddff/64') AS RESULT;
SELECT text('fc00:db20:35b:7399::5:ddff/89') AS RESULT;
-- 不带前缀
SELECT text('fdf8:f53e:61e4::18') AS RESULT;
-- 特殊地址
SELECT text('::/128') AS RESULT;
SELECT text('FC00::/7') AS RESULT;
SELECT text('::1/128') AS RESULT;
SELECT text('::10.2.3.4') AS RESULT;
SELECT text('::ffff:10.4.3.2/128') AS RESULT;
-- cidr
SELECT text('192.168.100.128/25'::cidr) AS RESULT;
SELECT text('192.168/24'::cidr) AS RESULT;
SELECT text('192.168/25'::cidr) AS RESULT;
SELECT text('192.168.1'::cidr) AS RESULT;
SELECT text('192.168'::cidr) AS RESULT;
SELECT text('10.1.2'::cidr) AS RESULT;
SELECT text('10.1'::cidr) AS RESULT;
SELECT text('10'::cidr) AS RESULT;
SELECT text('10.1.2.3/32'::cidr) AS RESULT;
SELECT text('2001:4f8:3:ba::/64'::cidr) AS RESULT;
SELECT text('fc00:e968:6179::de52:7100/128'::cidr) AS RESULT;
SELECT text('::ffff:1.2.3.0/120'::cidr) AS RESULT;
SELECT char_length(text('::ffff:1.2.3.0/128'::cidr)); |
<gh_stars>0
-- file: db_s_etl/grant_privileges.sql
-- <NAME>
-- 2017-04-06
GRANT SELECT, UPDATE, INSERT, DELETE ON sl_nap, sl_night TO sp_etl;
GRANT USAGE ON sl_night_night_id_seq TO sp_etl;
GRANT USAGE ON sl_nap_nap_id_seq TO sp_etl;
|
ALTER TABLE `crm_finance_delivery` ADD `customer_balance` VARCHAR( 100 ) NOT NULL COMMENT 'for dashboard purpose' AFTER `cancel_id` ;
ALTER TABLE `crm_finance_delivery` ADD `showroom_balance` VARCHAR( 100 ) NOT NULL COMMENT 'for dashboard purpose' AFTER `customer_balance` ; |
SELECT
sturz,
hangmure,
gerinne,
lawine,
andere_kt,
geometrie
FROM
awjf_silvaprotect_v1.silvaprotect_andere_kt
;
|
-- drop table if exists user;
create table if not exists user(
user_id integer primary key autoincrement,
username string not null,
score string not null
); |
<gh_stars>0
--
-- summary of commmittee contributions to candidates, by committee (source)
--
select cc.cmte_id as src_cmte_id,
cc.name as src_name,
cc.entity_tp as src_entity_tp,
cm.cmte_nm,
cm.cmte_pty_affiliation,
sum(cc.transaction_amt) as total_amt,
count(cc.transaction_amt) as total_count
from cmte_contrib cc
join cmte cm on cm.cmte_id = cc.cmte_id
group by 1, 2, 3, 4, 5
order by 6 desc
limit 20
|
CREATE TABLE patient_experience_2 (
experience_id serial PRIMARY KEY,
patient_id int NOT NULL REFERENCES patient_2(patient_id),
experience_treatment varchar(255) NULL,
experience_office varchar(255) NULL
);
|
CREATE VIEW [rapOp].[SRVCView2] AS
--Lista usług oferowanych przez serwis wraz z łączną ilością zrealizowanych zamówień na daną usługę w bieżącym roku oraz sumaryczną wartością zarobionych na wykonaniu danej usługi pieniędzy
SELECT
st.[Name] AS ServiceType,
COUNT(od.OrderID) AS OrdersQty,
SUM(st.Price) AS MoneySum
FROM
SRVC.ServiceType AS st (READUNCOMMITTED) LEFT JOIN
(SRVC.[Order] AS od (READUNCOMMITTED) INNER JOIN
SRVC.OrderHistory AS oh (READUNCOMMITTED) ON od.OrderID = oh.OrderID AND oh.[StatusID] = 4)
ON st.ServiceTypeID = od.ServiceTypeID
WHERE
YEAR(oh.DateOfUpdate) = YEAR(GETDATE()) AND st.ServiceTypeID <> -1
GROUP BY
st.[Name]; |
select id, password, MD5(password)
from account
|
<filename>backups/homesteadbackup.sql
-- MySQL dump 10.13 Distrib 5.7.11, for Linux (x86_64)
--
-- Host: localhost Database: homestead
-- ------------------------------------------------------
-- Server version 5.7.11
/*!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 utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `funcionarios`
--
DROP TABLE IF EXISTS `funcionarios`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `funcionarios` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`profleimage` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`nome` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`posto` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`cpf` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`rg` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`ctps` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`endereco` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`nascimento` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`pis_pasep` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`reservista` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`titulo_eleitor` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`telefone` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`data_admissao` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`funcao` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`farda` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`bota` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`filiacao` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`filhos` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`banco` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`banco_conta` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`banco_agencia` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`banco_tipo` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`contato_emergencia` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`tipo_sanguineo` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`estado_civil` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`nome_conjuge` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`grau_instrucao` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`deficiencia` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`recebe_vale_transporte` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`cargo` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`cbo` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`aso` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`referencia` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`preenchida_por` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`obs` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`horario` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`tipo` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`status` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=634 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `funcionarios`
--
LOCK TABLES `funcionarios` WRITE;
/*!40000 ALTER TABLE `funcionarios` DISABLE KEYS */;
INSERT INTO `funcionarios` VALUES (388,'profilesimages/885522.jpg','<NAME>','Embrater (Filial)','05289498451','31621996','null','Av. Ralpho Braga Pessoa N 03, Qd 29 Antares','1989-08-18','0001','null','null','82988815395','<EMAIL>','2015-12-20','Faxineiro','PP','44','Ableb<NAME>visk, Aristonia Abuvisk','0','Banco da Brasil','13296-9','4287-0','CC','null','null','Casado','Aristonia','Pós Graduado','Nao','Sim','Auxiliar de Limpeza','null','null','null','Willian','null','2016-03-15 16:37:44','2016-03-22 03:12:29','06:00~14:00','Diarista','Ativo'),(389,'teste','<NAME>\r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(390,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(391,'teste','<NAME>\r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(392,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(393,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(394,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(395,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(396,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(397,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(398,'teste','Val<NAME> L<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(399,'teste','Valdique Da Silva Santos \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(400,'teste','Valdinete Cavalcante Silva \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(401,'teste','Val<NAME>os Santos \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(402,'teste','Val<NAME> Santos \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(403,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(404,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(405,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(406,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(407,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(408,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(409,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(410,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(411,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(412,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(413,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(414,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(415,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(416,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(417,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(418,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(419,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(420,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(421,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(422,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(423,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(424,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(425,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(426,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(427,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(428,'teste','Rita De Cassia De Almeida Sapucaia \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(429,'teste','Re<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(430,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(431,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(432,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(433,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(434,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(435,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(436,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(437,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(438,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(439,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(440,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(441,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(442,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(443,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(444,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(445,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(446,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(447,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(448,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(449,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(450,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(451,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(452,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(453,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(454,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(455,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(456,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(457,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(458,'teste','<NAME> Silva \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(459,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(460,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(461,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(462,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(463,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(464,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(465,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(466,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(467,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(468,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(469,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(470,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(471,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(472,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(473,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(474,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(475,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(476,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(477,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(478,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(479,'teste','<NAME> Conceição Silva \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(480,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(481,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(482,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(483,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(484,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(485,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(486,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(487,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(488,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(489,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(490,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(491,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(492,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(493,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(494,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(495,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(496,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(497,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(498,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(499,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(500,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(501,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(502,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(503,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(504,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(505,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(506,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(507,'teste','Lidiane De Lima Costa \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(508,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(509,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(510,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(511,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(512,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(513,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(514,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(515,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(516,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(517,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(518,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(519,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(520,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(521,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(522,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(523,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(524,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(525,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(526,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(527,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(528,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(529,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(530,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(531,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(532,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(533,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(534,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(535,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(536,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(537,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(538,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(539,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(540,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(541,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(542,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(543,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(544,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(545,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(546,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(547,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(548,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(549,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(550,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(551,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(552,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(553,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(554,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(555,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(556,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(557,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(558,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(559,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(560,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(561,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(562,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(563,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(564,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(565,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(566,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(567,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(568,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(569,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(570,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(571,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(572,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(573,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(574,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(575,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(576,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(577,'teste','E<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(578,'teste','E<NAME>io \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(579,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(580,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(581,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(582,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(583,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(584,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(585,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(586,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(587,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(588,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(589,'teste','Edna Virtuoso Da Silva \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(590,'teste','Edlauda Da Silva \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(591,'teste','Edivania Ferreira Da Silva \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(592,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(593,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(594,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(595,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(596,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(597,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(598,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(599,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(600,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(601,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(602,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(603,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(604,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(605,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(606,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(607,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(608,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(609,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(610,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(611,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(612,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(613,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(614,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(615,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(616,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(617,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(618,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(619,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(620,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(621,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(622,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(623,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(624,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(625,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(626,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(627,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(628,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(629,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(630,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(631,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status'),(632,'teste','<NAME> \r\n','posto','cpf','rg','ctps','endereco','nascimento','pis_pasep','reservista','titulo_eleitor','telefone','email','data_admissao','funcao','farda','bota','filiacao','filhos','banco','banco_conta','banco_agencia','banco_tipo','contato_emergencia','tipo_sanguineo','estado_civil','nome_conjuge','grau_instrucao','deficiencia','recebe_vale_transporte','cargo','cbo','aso','referencia','preenchida_por','obs','2016-03-15 13:03:00','2016-02-02 02:02:02','horario','tipo','status');
/*!40000 ALTER TABLE `funcionarios` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `migrations`
--
DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `migrations` (
`migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `migrations`
--
LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` VALUES ('2014_10_12_000000_create_users_table',1),('2014_10_12_100000_create_password_resets_table',1),('2016_03_06_195331_create_funcionarios_table',1),('2016_03_06_202154_create_postos_table',2),('2016_03_06_202318_create_motivos_table',2),('2016_03_06_203355_create_ocorrencias_table',3),('2016_03_07_163632_add_campos_ocorrencias',4),('2016_03_14_144910_addCamposFuncionarios',5);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `motivos`
--
DROP TABLE IF EXISTS `motivos`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `motivos` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`descricao` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`obs` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `motivos`
--
LOCK TABLES `motivos` WRITE;
/*!40000 ALTER TABLE `motivos` DISABLE KEYS */;
INSERT INTO `motivos` VALUES (1,'Atestado Médico','','2016-03-07 16:32:00','2016-03-07 16:32:00');
/*!40000 ALTER TABLE `motivos` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ocorrencias`
--
DROP TABLE IF EXISTS `ocorrencias`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ocorrencias` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`usuario` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`posto` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`ocorrencia` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`ocorrencia_descricao` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`ocorrencia_data` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`funcionarios_envolvido` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`fiscal_responsavel` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`anexos` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ocorrencias`
--
LOCK TABLES `ocorrencias` WRITE;
/*!40000 ALTER TABLE `ocorrencias` DISABLE KEYS */;
INSERT INTO `ocorrencias` VALUES (1,'2016-03-07 16:51:16','2016-03-07 16:51:16','','HDT','','','','Willian 2','','');
/*!40000 ALTER TABLE `ocorrencias` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `password_resets`
--
DROP TABLE IF EXISTS `password_resets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `password_resets` (
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
KEY `password_resets_email_index` (`email`),
KEY `password_resets_token_index` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `password_resets`
--
LOCK TABLES `password_resets` WRITE;
/*!40000 ALTER TABLE `password_resets` DISABLE KEYS */;
/*!40000 ALTER TABLE `password_resets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `postos`
--
DROP TABLE IF EXISTS `postos`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `postos` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`nome` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`endereco` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `postos`
--
LOCK TABLES `postos` WRITE;
/*!40000 ALTER TABLE `postos` DISABLE KEYS */;
INSERT INTO `postos` VALUES (1,'HDT','','2016-03-07 15:08:06','2016-03-07 15:08:06'),(2,'Santa Monica','','2016-03-07 15:11:21','2016-03-07 15:11:21'),(3,'Uncisal','','2016-03-07 16:01:36','2016-03-07 16:01:36'),(4,'Portugal Ramalho','','2016-03-07 16:02:17','2016-03-07 16:02:17'),(5,'Etisal','','2016-03-07 16:02:30','2016-03-07 16:02:30'),(6,'Embrater (Filial)','','2016-03-15 16:46:03','2016-03-15 16:46:03');
/*!40000 ALTER TABLE `postos` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'Willian','<EMAIL>','$2y$10$JO5xOs.GsC7lJ0BkKscgruGFEEWW44/GdtqwdJP5vUWA3jQUZ5Uf6','I69zOjyqoRgvSOJWjAcWWv8hJeXkzCh4aA9uofE3sf5SVa1iCnen2YucCAPq','2016-09-25 15:47:45','2016-10-13 21:35:11'),(2,'Vaneska','<EMAIL>','$2y$10$Ch2BP1Lommr0PQLctlYtoejJjVy0ognFmV4VZd7xkWoQACYc8c0Ou','0fgx0Oc6RflyR6Td8Twsup1oKuMvKlZwFZb6qSPknLH2hcoOvDioPrE3ZgFU','2016-10-13 21:36:13','2016-10-13 21:36:29');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-10-13 21:54:37
|
CREATE FUNCTION ufn_IsWordComprised(@setOfLetters NVARCHAR(20), @word NVARCHAR(20))
RETURNS BIT
AS
BEGIN
DECLARE @CountOfLetters INT = LEN(@word);
DECLARE @Index INT = 1;
WHILE @Index <= @CountOfLetters
BEGIN
IF(CHARINDEX(SUBSTRING(@word, @Index, 1), @setOfLetters) = 0)
BEGIN
RETURN 0
END
SET @Index+=1
END
RETURN 1
END
CREATE TABLE Demo
(SetOfLetters NVARCHAR(20) NOT NULL ,
Word NVARCHAR(20) NOT NULL)
INSERT INTO Demo
VALUES
('oistmiahf' ,'Sofia'),
('oistmiahf ' ,'halves '),
('bobr' ,'Rob')
SELECT D.SetOfLetters, D.Word, dbo.ufn_IsWordComprised(D.SetOfLetters,d.Word)
FROM DEMO AS D
|
ALTER TABLE vetd.round_product
ADD COLUMN result integer,
ADD COLUMN reason text |
<gh_stars>100-1000
-- randexpr1.test
--
-- db eval {SELECT coalesce((select (a) from t1 where 11-11+t1.b<=17-b),case when case when not t1.e*f>= -t1.f and a in (11,t1.c,t1.b) or 19>e then (select case min((f)-f) when cast(avg(t1.a) AS integer) then (cast(avg(17) AS integer)) else ((cast(avg((13)) AS integer))) end from t1) when 13 not between f and t1.c then (abs(e)/abs(17)) else t1.e end & -17<=f then b when f<19 or t1.b<=t1.d then f else f end) FROM t1 WHERE -f | t1.f*c-t1.a | t1.c+11*case ~17 when -coalesce((select max(t1.e) from t1 where 13*(17)>=11),t1.a) then case case when (t1.b>= -t1.b) then t1.f when t1.f<a or 11>a and t1.e in (e,(t1.d),19) then t1.f else t1.c end when a then t1.a else t1.e end else a end*t1.a-13<c}
SELECT coalesce((select (a) from t1 where 11-11+t1.b<=17-b),case when case when not t1.e*f>= -t1.f and a in (11,t1.c,t1.b) or 19>e then (select case min((f)-f) when cast(avg(t1.a) AS integer) then (cast(avg(17) AS integer)) else ((cast(avg((13)) AS integer))) end from t1) when 13 not between f and t1.c then (abs(e)/abs(17)) else t1.e end & -17<=f then b when f<19 or t1.b<=t1.d then f else f end) FROM t1 WHERE -f | t1.f*c-t1.a | t1.c+11*case ~17 when -coalesce((select max(t1.e) from t1 where 13*(17)>=11),t1.a) then case case when (t1.b>= -t1.b) then t1.f when t1.f<a or 11>a and t1.e in (e,(t1.d),19) then t1.f else t1.c end when a then t1.a else t1.e end else a end*t1.a-13<c |
--
-- Licensed to the Apache Software Foundation (ASF) under one
-- or more contributor license agreements. See the NOTICE file
-- distributed with this work for additional information
-- regarding copyright ownership. The ASF licenses this file
-- to you under the Apache License, Version 2.0 (the
-- "License"); you may not use this file except in compliance
-- with the License. You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing,
-- software distributed under the License is distributed on an
-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-- KIND, either express or implied. See the License for the
-- specific language governing permissions and limitations
-- under the License.
--
/***Set defaults for income from Penalties for existing Saving Products**/
ALTER TABLE `m_loan_transaction`
ADD COLUMN `overpayment_portion_derived` DECIMAL(19,6) NULL DEFAULT NULL AFTER `penalty_charges_portion_derived`;
/**Add dummy liability account if organization already has a loan product with accounting enabled**/
INSERT INTO `acc_gl_account` (`name`, `hierarchy`, `gl_code`,`account_usage`, `classification_enum`,`description`)
select 'Loan Overpayments (Temp)', '.', '22000-Temp', 1, 2,'Temporary account to track Loan overpayments Liabilities'
FROM m_product_loan WHERE accounting_type != 1
limit 1;
/**Map a liability account for every loan which has accounting enabled**/
INSERT INTO `acc_product_mapping` (`gl_account_id`,`product_id`,`product_type`,`financial_account_type`)
select (select max(id) from acc_gl_account where classification_enum=2 and account_usage=1 LIMIT 1), mapping.product_id, mapping.product_type, 11
from acc_product_mapping mapping
where mapping.financial_account_type = 2 and mapping.product_type=1;
|
<filename>sql/mysql/schema/system_rights.sql
CREATE TABLE `system_rights` (
`ID` INT(10) NOT NULL AUTO_INCREMENT,
`name` CHAR(50) NOT NULL,
`description` CHAR(255) NOT NULL,
PRIMARY KEY (`ID`)
)
COLLATE='utf8_general_ci'
ENGINE=MyISAM
AUTO_INCREMENT=16; |
-- ============================================================================
-- Copyright (C) 2013 <NAME> <<EMAIL>>
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
-- ============================================================================
CREATE TABLE llx_opensurvey_sondage (
id_sondage VARCHAR(16) PRIMARY KEY,
entity integer DEFAULT 1 NOT NULL, -- multi company id
commentaires text,
mail_admin VARCHAR(128),
nom_admin VARCHAR(64),
fk_user_creat integer NOT NULL,
titre TEXT NOT NULL,
date_fin DATETIME NULL,
status integer DEFAULT 1,
format VARCHAR(2) NOT NULL, -- 'A' = Text choice (choices are saved into sujet field), 'D' = Date choice (choices are saved into sujet field), 'F' = Form survey
mailsonde tinyint NOT NULL DEFAULT 0,
allow_comments tinyint NOT NULL DEFAULT 1,
allow_spy tinyint NOT NULL DEFAULT 1,
tms TIMESTAMP,
sujet TEXT -- Not filled if format = 'F'. Question are into table llx_opensurvey_formquestions
) ENGINE=InnoDB;
|
DROP TABLE IF EXISTS sushi;
CREATE TABLE sushi (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(30),
time_to_make INT DEFAULT NULL
);
DROP TABLE IF EXISTS sushi_order;
CREATE TABLE sushi_order (
id INT AUTO_INCREMENT PRIMARY KEY,
status_id INT NOT NULL,
sushi_id INT NOT NULL,
created_at TIMESTAMP NOT NULL default CURRENT_TIMESTAMP
);
DROP TABLE IF EXISTS status;
CREATE TABLE status (
id INT AUTO_INCREMENT PRIMARY KEY,
name VARCHAR(30) NOT NULL
); |
alter table USER_BASE change reference ref varchar(64);
alter table USER_BASE add email varchar(100);
alter table USER_BASE add mobile varchar(50);
|
<reponame>bheckel/code
-- Modified: 14-Feb-2020 (<NAME>)
-- Execution plan. Query plan. SQL Tuning.
-- See also indexes.sql, devgym_create_toy_objects.sql
-- The B-tree traversal is the first power of indexing.
-- Clustering is the second power of indexing.
---
-- Oracle indexing
-- See also https://blogs.oracle.com/sql/how-to-create-and-use-indexes-in-oracle-database
-- Use B-tree index where cardinality is high (many unique recs e.g. account
-- IDs) and column is usually part of a WHERE statement and DML is infrequent.
-- Use bitmap where cardinality is low (e.g. skewed grade scores at Harvard) and DML
-- is very infrequent (because it locks).
CREATE INDEX CONTACT_EMP_EVENT_CE_IX on CONTACT_EMPLOYEE_EVENT(CONTACT_EMPLOYEE_ID);
CREATE BITMAP INDEX CONTACT_EMP_EVENT_NE_IX on CONTACT_EMPLOYEE_EVENT(NEW_EVENT);
create index M_SUBCOMPGRP_FUNCTION_IX on M_SUBCOMP (LOWER(M_SUBCOMP_GROUP_NAME));
SELECT * FROM SYS.user_indexes WHERE table_name = 'EMAIL_MESSAGES'; -- does a B-tree (NORMAL) index exist for this table?
SELECT * FROM SYS.user_ind_statistics where table_name='EMAIL_MESSAGES';
SELECT * FROM email_messages WHERE created>sysdate-1;
SELECT * FROM v$sql WHERE sql_text like 'SELECT * FROM email_messages WHERE created%'; -- 5ax1juqfgxhnw
-- Explain Plan is hypothetical, this is actual:
SELECT * FROM v$sql_plan WHERE sql_id = '5ax1juqfgxhnw'; -- did index get used?: BY INDEX ROWID or RANGE SCAN etc.
select sum(email_messages_id) from email_messages; -- FULL SCAN but no table access
---
-- Use ALTER SESSION SET statistics_level = all; if not using hint
select /*+ gather_plan_statistics */
colour, count(*)
from bricks
group by colour
order by colour;
select *
from table(dbms_xplan.display_cursor(format => 'ALLSTATS LAST'));
/*from table(dbms_xplan.display_cursor(format => 'IOSTATS LAST'));*/
/*
SQL_ID f3z2z7vk5fj1d, child number 1
-------------------------------------
select colour, count(*) from bricks group by colour order
by colour
Plan hash value: 2025330397
--------------------------------------------------------------------------------------------------------------------------
| Id | Operation | Name | Starts | E-Rows | A-Rows | A-Time | Buffers | OMem | 1Mem | Used-Mem |
--------------------------------------------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | | 9 |00:00:00.01 | 42 | | | |
| 1 | SORT GROUP BY | | 1 | 9 | 9 |00:00:00.01 | 42 | 2048 | 2048 | 2048 (0)|
| 2 | TABLE ACCESS STORAGE FULL| BRICKS | 1 | 2250 | 2250 |00:00:00.01 | 42 | 1025K| 1025K| |
--------------------------------------------------------------------------------------------------------------------------
*/
---
EXPLAIN PLAN FOR
SELECT *
FROM email_messages t
--WHERE t.execute_time BETWEEN to_date('2019-01-16:09:00','YYYY-MM-DD:HH24:MI') AND to_date('2019-01-16:11:00','YYYY-MM-DD:HH24:MI'); --debug
WHERE t.actual_updated > (SYSTIMESTAMP - INTERVAL '444' minute);
select plan_table_output
--from table(dbms_xplan.display('plan_table',null,'basic'));
--from table(dbms_xplan.display('plan_table',null,'basic +predicate +cost'));
from table(dbms_xplan.display('plan_table',null,'typical'));
ROLLBACK;
---
-- http://rwijk.blogspot.com/2018/02/filter-predicates-with-nvl-on-mandatory.html
set echo on
set serveroutput off
column description format a40 truncate
select * from v$version
/
create table robtest
as
select level id
, ceil(level/10000) code1
, ceil(level/1000) code2
, ceil(level/100) code3
, mod(level/100,100) code4
, lpad('*',1000,'*') description
from dual
connect by level <= 100000
/
alter table robtest add constraint robtest_uk unique (code1,code2,code3,code4)
/
exec dbms_stats.gather_table_stats(user,'robtest',cascade=>true)
set autotrace on
select *
from robtest
where code1 = 1
and code2 = 1
and code3 = 1
and code4 = 1
/
select *
from robtest
where nvl(code1,-1) = 1
and nvl(code2,-1) = 1
and nvl(code3,-1) = 1
and nvl(code4,-1) = 1
/
alter table robtest modify code1 constraint nn1 not null
/
alter table robtest modify code2 constraint nn2 not null
/
alter table robtest modify code3 constraint nn3 not null
/
alter table robtest modify code4 constraint nn4 not null
/
select *
from robtest
where nvl(code1,-1) = 1
and nvl(code2,-1) = 1
and nvl(code3,-1) = 1
and nvl(code4,-1) = 1
/
set autotrace off
set echo off
drop table robtest purge
/
---
-- Adapted from https://use-the-index-luke.com
--
-- Attributes of Explain Plan Operations:
--
-- There are two different ways databases use indexes to apply the WHERE clauses (predicates):
-- - ACCESS PREDICATES express the start and stop conditions for the leaf node traversal. They
-- define the scanned index range, which is hopefully narrow. An access predicate only reads
-- rows where the condition is true.
--
-- - FILTER PREDICATES are applied during the leaf node traversal only. They don't
-- contribute to the start and stop conditions and do not narrow the scanned index range. It is
-- possible to modify an index and turn a filter predicate into an access predicate (e.g. by
-- changing indexed column order, etc). A filter predicate reads ALL the rows from the input,
-- discarding those where the condition is false.
--
-- E.g.
-- SELECT first_name, last_name, subsidiary_id, phone_number
-- FROM employees
-- WHERE subsidiary_id = ?
-- AND UPPER(last_name) LIKE '%INA%';
--
-- A- Before adding index
-- --------------------------------------------------------------
-- |Id | Operation | Name | Rows | Cost |
-- --------------------------------------------------------------
-- | 0 | SELECT STATEMENT | | 17 | 230 |
-- |*1 | TABLE ACCESS BY INDEX ROWID| EMPLOYEES | 17 | 230 |
-- |*2 | INDEX RANGE SCAN | EMPLOYEE_PK| 333 | 2 | <--- high Rows
-- --------------------------------------------------------------
--
-- Predicate Information (identified by operation id):
-- ---------------------------------------------------
-- 1 - filter(UPPER("LAST_NAME") LIKE '%INA%')
-- 2 - access("SUBSIDIARY_ID"=TO_NUMBER(:A))
--
-- B - Cover all columns from the WHERE clause - even if they do not narrow the scanned index range
-- CREATE INDEX empsubupnIX ON employees (subsidiary_id, UPPER(last_name));
-- --------------------------------------------------------------
-- |Id | Operation | Name | Rows | Cost |
-- --------------------------------------------------------------
-- | 0 | SELECT STATEMENT | | 17 | 20 |
-- | 1 | TABLE ACCESS BY INDEX ROWID| EMPLOYEES | 17 | 20 |
-- |*2 | INDEX RANGE SCAN | EMPSUBUPNIX| 17 | 3 | <--- +1 because index is bigger due to adding last_name
-- --------------------------------------------------------------
--
-- Predicate Information (identified by Operation Id):
-- ---------------------------------------------------
-- 2 - access("SUBSIDIARY_ID"=TO_NUMBER(:A))
-- filter(UPPER("LAST_NAME") LIKE '%INA%')
--
-- According to the optimizer's estimate, the query ultimately matches 17 records.
-- The index scan in the first execution plan delivers 333 rows nevertheless. The
-- database must then load these 333 rows from the table to apply the LIKE filter
-- which reduces the result to 17 rows. In the second execution plan, the index
-- access does NOT deliver those rows in the first place so the database needs to
-- execute the TABLE ACCESS BY INDEX ROWID operation only 17 times.
--
--
-- INDEX [ix name] UNIQUE SCAN
-- Performs the B-tree traversal ONLY. The database uses this operation if a
-- unique constraint ensures that the search criteria will match no more than one
-- entry. The database does not need to follow the index leaf nodes - it is enough to
-- traverse the index tree thanks to the primary key or other constraint. This operation
-- cannot deliver > 1 entry so it cannot trigger > 1 table access. Always fast.
--
-- INDEX [ix name] RANGE SCAN
-- Performs the B-tree traversal AND THEN follows the leaf node chain to find all
-- matching entries. The biggest performance risk of an INDEX RANGE SCAN is the
-- leaf node traversal. It is therefore the golden rule of indexing to keep the
-- scanned index range as small as possible (i.e. watch your ACCESS PREDICATES). The so-called index
-- FILTER PREDICATES often cause performance problems for an INDEX RANGE SCAN so keep the scanned
-- index range as small as possible. That usually means index for equality first, then for ranges.
-- Ideally the index "covers" the entire WHERE clause so that all filters are used as access predicates.
--
-- Notice that the table doesn't appear in the execution plan! This is also called a covering index.
-- For the optimizer to do this, at least one column must be NOT NULL. This is because Oracle excludes
-- rows where all columns are NULL from (BTree) indexes. If all the columns allow nulls, the query
-- could give incorrect results using an index as it would not return wholly NULL rows! E.g. WHERE color=...
-- AND weight=... so you'd have to do ALTER TABLE bricks MODIFY colour NOT NULL; (or weight) for Oracle
-- to use the index.
--
-- TABLE ACCESS [tbl name] BY INDEX ROWID
-- Retrieves a row from the table using the ROWID retrieved from the preceding
-- index lookup access, e.g. INDEX RANGE SCAN.
--
-- INDEX [ix name] FULL SCAN
-- Reads the entire index (all rows) in index order. Depending on various system
-- statistics, the database might perform this operation if it needs all rows in
-- index order—e.g., because of a corresponding order by clause. Instead, the
-- optimizer might also use an INDEX FAST FULL SCAN and perform an additional sort operation.
--
-- INDEX [ix name] FAST FULL SCAN
-- Reads the entire index (all rows) as stored on the disk. This operation is
-- typically performed instead of a full table scan if all required columns are
-- available in the index. Similar to TABLE ACCESS FULL, the INDEX FAST FULL SCAN
-- can benefit from multi-block read operations.
-- TABLE ACCESS [tbl name] STORAGE FULL
-- Also known as "full table scan". Reads the entire table (all rows AND COLUMNS!) as stored on the
-- disk. Although multi-block read operations improve the speed of a full table scan considerably
-- (especially if the results involve most of the table since an index lookup reads one block
-- after the other - the database does not know which block to read next until the current block
-- has been processed), it is still one of the most expensive operations. Besides high IO rates, a
-- full table scan must inspect ALL table rows so it can also consume a considerable amount of CPU
-- time.
--
--
-- NESTED LOOPS JOIN
-- Joins two tables by fetching the result from one table and querying the other table for each
-- row from the first. There can be many B-tree traversals when executing the inner query.
--
-- HASH JOIN
-- Loads the candidate records from one side (the smaller tbl) of the join into a hash
-- table that is then probed for each row from the other side of the join. Best to select only
-- minimal rows/columns from the hash table to keep it's Byte size small. Hash joins do not need indexes
-- on the join predicates. They use the hash table instead. A hash join uses indexes only if the index
-- supports the independent predicate(s).
--
-- SORT MERGE JOIN
-- Combines two sorted lists like a zipper. If both sides of the join
-- are presorted it can be efficient. There is absolute symmetry. The join order does not make any
-- difference.
--
--
-- SORT ORDER BY
-- Sorts the result according to the order by clause. This operation needs large
-- amounts of memory to materialize the intermediate result (not pipelined).
--
-- SORT ORDER BY STOPKEY
-- Sorts a subset of the result according to the order by clause. Used for top-N
-- queries if pipelined execution is not possible.
--
-- SORT GROUP BY
-- Sorts the result set on the group by columns and aggregates the sorted result
-- in a second step. This operation needs large amounts of memory to materialize
-- the intermediate result set (not pipelined).
--
-- SORT GROUP BY NOSORT
-- Aggregates a presorted set according the group by clause. This operation does
-- not buffer the intermediate result: it is executed in a pipelined manner.
--
-- HASH GROUP BY
-- Groups the result using a hash table. This operation needs large amounts of
-- memory to materialize the intermediate result set (not pipelined). The output
-- is not ordered in any meaningful way.
---
CREATE INDEX tbl_idx ON tbl (date_column)
-- bad
SELECT COUNT(*)
FROM tbl
WHERE EXTRACT(YEAR FROM date_column) = 2017;
-- good
SELECT COUNT(*)
FROM tbl
WHERE date_column >= DATE'2017-01-01'
AND date_column < DATE'2018-01-01';
CREATE INDEX tbl_idx ON tbl (a, b)
-- bad - this query can't use the index efficiently because indexes can only be used from left to right - it
-- is like searching a telephone book by first name then last name
SELECT *
FROM tbl
WHERE b = 1;
-- good
CREATE INDEX tbl_idx ON tbl (b, a)
SELECT *
FROM tbl
WHERE a = 42
AND b = 1;
CREATE INDEX tbl_idx ON tbl (a, date_column)
-- bad - database must look into the actual table
SELECT date_column, count(*)
FROM tbl
WHERE a = 42
AND b = 1
GROUP BY date_column;
-- good - index has all the columns so can be run as an index-only scan, no table accesses at all, the two
-- ingredients that make an index lookup slow: (1) the table access, and (2) scanning a wide index range i.e.
-- not having TABLE ACCESS BY INDEX ROWID. If you select a single column that isn't in the index, the database
-- cannot do an index-only scan. Same if you SELECT *.
SELECT date_column, count(*)
FROM tbl
WHERE a = 42
GROUP BY date_column;
---
CREATE INDEX scale_slow ON scale_data (section, id1, id2);
/*
------------------------------------------------------
| Id | Operation | Name | Rows | Cost |
------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 972 |
| 1 | SORT AGGREGATE | | 1 | |
|* 2 | INDEX RANGE SCAN| SCALE_SLOW | 3000 | 972 |
------------------------------------------------------
Predicate Information (identified by operation id):
2 - access("SECTION"=TO_NUMBER(:A))
filter("ID2"=TO_NUMBER(:B))
*/
CREATE INDEX scale_fast ON scale_data (section, id2, id1);
/*
------------------------------------------------------
| Id Operation | Name | Rows | Cost |
------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 13 |
| 1 | SORT AGGREGATE | | 1 | |
|* 2 | INDEX RANGE SCAN| SCALE_FAST | 3000 | 13 |
------------------------------------------------------
Predicate Information (identified by operation id):
2 - access("SECTION"=TO_NUMBER(:A) AND "ID2"=TO_NUMBER(:B))
*/
---
create table x (a number(10) not null);
insert into x select level from dual connect by level < 500;
create index ix_x on x(a) compute statistics;
explain plan for select /*+ INDEX (x ix_x) */ * from x;
select * from table(dbms_xplan.display());
/*
-------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 499 | 6487 | 1 (0)| 00:00:01 |
| 1 | INDEX FULL SCAN | IX_X | 499 | 6487 | 1 (0)| 00:00:01 |
-------------------------------------------------------------------------
Note
-----
- dynamic statistics used: dynamic sampling (level=2)
- automatic DOP: Computed Degree of Parallelism is 1 because of parallel threshold
13 rows selected.
*/
|
ALTER TABLE `services` ADD COLUMN `id_vessel` INT;
ALTER TABLE `services` ADD FOREIGN KEY (`id_vessel`) REFERENCES vessels(`id`) ON DELETE SET NULL;
|
<filename>src/console/db/queries/actors/insert.sql
INSERT INTO
storage.actors (
lookup_fields,
email_id,
ip_address_id,
person_id,
phone_number_id,
database_id
)
VALUES
(
${lookupFields},
${emailId},
${ipAddressId},
${personId},
${phoneNumberId},
${databaseId}
)
RETURNING
*
|
<reponame>navyuginfo/phabricator
/* Patch 060 neglected to make this an AUTO_INCREMENT PRIMARY KEY */
ALTER TABLE {$NAMESPACE}_phriction.phriction_document
CHANGE id id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY;
/* Needs to be initially nullable for insert when documents are created. */
ALTER TABLE {$NAMESPACE}_phriction.phriction_document
CHANGE contentID contentID INT UNSIGNED;
CREATE TABLE {$NAMESPACE}_phriction.phriction_content (
id INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
documentID INT UNSIGNED NOT NULL,
version INT UNSIGNED NOT NULL,
UNIQUE KEY (documentID, version),
authorPHID VARCHAR(64) BINARY NOT NULL,
KEY (authorPHID),
title VARCHAR(512) NOT NULL,
slug VARCHAR(512) NOT NULL,
KEY (slug),
content LONGBLOB NOT NULL,
dateCreated INT UNSIGNED NOT NULL,
dateModified INT UNSIGNED NOT NULL
) ENGINE=InnoDB;
|
<filename>posda/posdatools/queries/sql/InboxContentAllByUserToDismiss.sql
-- Name: InboxContentAllByUserToDismiss
-- Schema: posda_queries
-- Columns: ['user_name', 'id', 'operation_name', 'current_status', 'activity_id', 'brief_description', 'when', 'file_id', 'command_line', 'spreadsheet_file_id']
-- Args: ['user_name']
-- Tags: ['AllCollections', 'queries', 'activity_support']
-- Description: Get a list of available queries
select
user_name, user_inbox_content_id as id, operation_name,
current_status,
activity_id, brief_description,
when_script_started as when,
file_id, subprocess_invocation_id as sub_id,
command_line,
file_id_in_posda as spreadsheet_file_id
from
user_inbox natural join
user_inbox_content natural join background_subprocess_report
natural join background_subprocess natural left join subprocess_invocation
natural left join spreadsheet_uploaded
natural left join activity_inbox_content natural left join
activity
where user_name = ? and activity_id is null and current_status != 'dismissed'
order by user_inbox_content_id desc |
<reponame>bseries/cms_team<filename>data/upgrade/V1529659315__add_vacant_positions.sql<gh_stars>0
CREATE TABLE `vacant_team_positions` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`owner_id` int(11) unsigned NOT NULL,
`order` int(11) unsigned DEFAULT NULL,
`title` varchar(250) DEFAULT NULL,
`department` varchar(250) DEFAULT NULL,
`locations` varchar(250) DEFAULT NULL,
`teaser` text,
`body` text,
`is_published` tinyint(1) DEFAULT NULL,
`created` datetime NOT NULL,
`modified` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;
|
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Dec 10, 2021 at 08:06 PM
-- Server version: 10.4.19-MariaDB
-- PHP Version: 7.4.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: `db_tebak_gambar`
--
-- --------------------------------------------------------
--
-- Table structure for table `rule_bayars`
--
CREATE TABLE `rule_bayars` (
`id` bigint(20) UNSIGNED NOT NULL,
`kode_rule` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`nama_rule` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`jlh_bayar` int(11) NOT NULL,
`keterangan` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `rule_bayars`
--
INSERT INTO `rule_bayars` (`id`, `kode_rule`, `nama_rule`, `jlh_bayar`, `keterangan`, `created_at`, `updated_at`) VALUES
(1, '1nwb', 'Newbie', 0, 'Status Newbie', NULL, '2021-12-10 10:17:06'),
(2, '2ntv', 'Newbie => Verified', 0, 'Status naik tingkat newbie => verified', NULL, '2021-12-10 10:16:59'),
(3, '3vtv_almos', 'Verified < 100%', 0, 'Status verified di bawah 100%', NULL, NULL),
(4, '4vtv_perfe', 'Verified 100%', 0, 'Status verified 100%', NULL, NULL),
(5, '5hth_almos', 'Human < 100%', 0, 'Status human di bawah 100%', NULL, NULL),
(6, '6hth_perfe', 'Human 100%', 0, 'Status human 100%', NULL, NULL),
(7, '7fail', 'Gagal', 0, 'Status gagal validasi', NULL, NULL);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `rule_bayars`
--
ALTER TABLE `rule_bayars`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `rule_bayars`
--
ALTER TABLE `rule_bayars`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
INSERT INTO users (id, name, cpf, gender, email, date_of_birth, nacionality, naturality)
VALUES
('5950fd4e-8613-4e56-97bc-7f1e331266eb', '<NAME>', '123.456.789-89', 'Male', '<EMAIL>',
parsedatetime('29-02-2000 00:00:00.000', 'dd-MM-yyyy hh:mm:ss.SS'), 'Brazil', 'SC');
INSERT INTO users (id, name, cpf, gender, email, date_of_birth, nacionality, naturality)
VALUES
('0797e685-043b-48ac-9173-1a36d8bd9b33', '<NAME>', '677.335.964-32', 'Male', '<EMAIL>',
parsedatetime('23-09-1985 00:00:00.000', 'dd-MM-yyyy hh:mm:ss.SS'), 'Brazil', 'RJ');
INSERT INTO users (id, name, cpf, gender, email, date_of_birth, nacionality, naturality)
VALUES
('116e40b4-a208-41c2-bbe7-3772301535cb', '<NAME>', '940.773.823-00', 'Male', '<EMAIL>',
parsedatetime('15-07-1992 00:00:00.000', 'dd-MM-yyyy hh:mm:ss.SS'), 'Brazil', 'DF');
INSERT INTO users (id, name, cpf, gender, email, date_of_birth, nacionality, naturality)
VALUES
('eb674cdb-7fd3-447a-b6ae-5ea473268976', '<NAME>', '689.895.001-09', 'Female', '<EMAIL>',
parsedatetime('17-04-1983 00:00:00.000', 'dd-MM-yyyy hh:mm:ss.SS'), 'Brazil', 'CE'); |
<gh_stars>0
-- phpMyAdmin SQL Dump
-- version 5.1.0
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Dec 30, 2021 at 06:11 AM
-- Server version: 10.4.19-MariaDB
-- PHP Version: 7.3.28
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: `percobaan`
--
-- --------------------------------------------------------
--
-- Table structure for table `tb_user`
--
CREATE TABLE `tb_user` (
`id_user` int(11) NOT NULL,
`nama` varchar(128) NOT NULL,
`email` varchar(128) NOT NULL,
`nomor_hp` varchar(128) NOT NULL,
`foto_user` varchar(128) NOT NULL,
`password` varchar(256) NOT NULL,
`view_password` varchar(256) NOT NULL,
`role_id` int(11) NOT NULL,
`is_member` int(1) NOT NULL,
`is_active` int(1) NOT NULL,
`date_created` int(11) NOT NULL,
`month_created` int(11) NOT NULL,
`year_created` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tb_user`
--
INSERT INTO `tb_user` (`id_user`, `nama`, `email`, `nomor_hp`, `foto_user`, `password`, `view_password`, `role_id`, `is_member`, `is_active`, `date_created`, `month_created`, `year_created`) VALUES
(1, '<NAME>', '<EMAIL>', '', 'denny_trias.png', '$2y$10$oh78.L2MF51tTCIl3.OgLOvxX6v0qz/Sico.d8pMtx3OaX35YVMs6', 'AxenNet123', 2, 1, 1, 1635156187, 10, 2021),
(2, 'Admin', '<EMAIL>', '', 'WhatsApp_Image_2021-11-05_at_11_15_38_AM.jpeg', '$2y$10$7g1YRDy55vdnlW99nXXffOIKHH3A840Azz1MwcsUtWUSYgmLNe9ie', 'admin', 1, 1, 1, 1635501808, 10, 2021),
(4, '<NAME>', '<EMAIL>', '087832165981', 'default.png', '$2y$10$HnXSS6hRkZ7Ez7G8gAU48udAyNGaaEEPHsW.vpbLvJZfmrqI9t2eu', '12345678', 2, 1, 1, 1636099670, 11, 2021),
(6, '<NAME>', '<EMAIL>', '087832165981', 'IMG_20201010_085551_230.jpg', '$2y$10$DFqA4VVg//LpFt/IQfqdDO6DINZnWSZgSExSRBDQae/NuC8rcHPQ.', 'Adam240899', 2, 1, 1, 1636292988, 11, 2021),
(8, '<NAME>', '<EMAIL>', '087832165981', 'default.png', '$2y$10$UxueRuBBFA2iDkwsVrcBW.vM.fSRpBns./C.3e3FBq7joz4EhPpPi', 'fabryzal', 2, 1, 1, 1636778809, 12, 2021);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `tb_user`
--
ALTER TABLE `tb_user`
ADD PRIMARY KEY (`id_user`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `tb_user`
--
ALTER TABLE `tb_user`
MODIFY `id_user` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<filename>SQL/Exams practice/Databases MSSQL Server Exam - 17 Feb 2019/Exclude From School.sql
CREATE PROCEDURE usp_ExcludeFromSchool(@StudentId INT)
AS
BEGIN
DECLARE @targetId INT = (SELECT Id FROM Students WHERE Id = @StudentId)
IF(@targetId IS NULL)
BEGIN
RAISERROR('This school has no student with the provided id!', 16, 1)
RETURN
END
DELETE
FROM StudentsTeachers
WHERE StudentId = @StudentId
DELETE
FROM StudentsSubjects
WHERE StudentId = @StudentId
DELETE
FROM StudentsExams
WHERE StudentId = @StudentId
DELETE
FROM Students
WHERE Id = @StudentId
END |
<reponame>robsmitha/VanValinMagic
use cory2v;
DELIMITER //
CREATE PROCEDURE `cory2v`.`usp_image_LoadFeaturedImages`
()
BEGIN
SELECT
`image`.`Id` AS `Id`,
`image`.`Name` AS `Name`,
`image`.`Description` AS `Description`,
`image`.`ImgUrl` AS `ImgUrl`,
`image`.`EventId` AS `EventId`,
`image`.`Views` AS `Views`,
`image`.`IsFeaturedImage` AS `IsFeaturedImage`
FROM `image`
WHERE `image`.`IsFeaturedImage` = 1;
END //
DELIMITER ; |
-- phpMyAdmin SQL Dump
-- version 4.5.0.2
-- http://www.phpmyadmin.net
--
-- Servidor: 127.0.0.1
-- Tiempo de generación: 30-11-2015 a las 04:50:31
-- Versión del servidor: 10.0.17-MariaDB
-- Versión de PHP: 5.6.14
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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 */;
--
-- Base de datos: `ventas`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `tUsuario`
--
CREATE TABLE `tusuario` (
`codUsuario` varchar(15) COLLATE utf8_unicode_ci NOT NULL,
`Pass` text COLLATE utf8_unicode_ci NOT NULL,
`Nombre` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`Telefono` int(11) NOT NULL,
`Pais` varchar(45) COLLATE utf8_unicode_ci NOT NULL,
`Calle` varchar(45) COLLATE utf8_unicode_ci NOT NULL,
`Distrito` varchar(45) COLLATE utf8_unicode_ci NOT NULL,
`Provincia` varchar(45) COLLATE utf8_unicode_ci NOT NULL,
`Ciudad` varchar(45) COLLATE utf8_unicode_ci NOT NULL,
`CodPost` varchar(45) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(20) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Volcado de datos para la tabla `tUsuario`
--
INSERT INTO `tUsuario` (`codUsuario`, `Pass`, `Nombre`, `Telefono`, `Pais`, `Calle`, `Distrito`, `Provincia`, `Ciudad`, `CodPost`, `email`) VALUES
('erick', '$2y$10$vaqo7L4fWW12CFnQ59I52udufS.VpA6utFbgtGttLLbUudo1.QFsi', '<NAME>', 5447589, 'Peru', 'Naranjal', 'Rimac', 'Lima', 'Lima', '12', '<EMAIL>'),
('hans', '$2y$10$HGnpuwoxuRh.uhIVm8.cKOzF9HBp4nQGd930h6g89UeEC2ciybyg6', 'Hans hidalgo alta', 254566255, 'Peru', 'a', 'Rimac', 'Lima', 'a', 'a', '<EMAIL>'),
('hans32', '$2y$10$FywmfoH6eaS8wZtDTyJhguIgv9EtxVhD/iJRCh7Hk79t2ySxheY1q', '<NAME>', 1234552, 'Peru', 's', 'Rimac', 'Huaral', '21', 's', '<EMAIL>'),
('luis', '$2y$10$FKn5KE1dSEwTfmO21WllnuYD/yce89G9hwGTShv/1j3mGuWUj8ww.', '<NAME>', 2334455, 'Peru', 'as', 'Rimac', 'Huaral', '21', 'a', '<EMAIL>');
--
-- Índices para tablas volcadas
--
--
-- Indices de la tabla `tUsuario`
--
ALTER TABLE `tUsuario`
ADD PRIMARY KEY (`codUsuario`);
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<gh_stars>0
SELECT pg_terminate_backend(pg_stat_activity.pid) FROM pg_stat_activity WHERE pg_stat_activity.datname = :'dbname' AND pid <> pg_backend_pid();
DROP DATABASE IF EXISTS :dbname;
CREATE DATABASE :dbname
WITH TEMPLATE = template0
ENCODING = 'UTF8';
ALTER DATABASE :dbname OWNER TO :username;
GRANT ALL PRIVILEGES ON DATABASE :dbname TO :username;
|
<gh_stars>0
--
-- Teds Init Script
--
-- Sensor Table
CREATE TABLE Sensor_Tbl
( Sensor_ID NUMBER(10) NOT NULL
, Bridge_ID NUMBER(8) -- Which bridge sensor resides
, Teds_ID NUMBER(10) -- Sensor TEDS
, Location_Number NUMBER(4) -- Location number based on bridge schematic (1,000 sensors)
, FOREIGN KEY(Bridge_ID) REFERENCES Bridge_Tbl(Bridge_ID)
, FOREIGN KEY(Teds_ID) REFERENCES Teds_Tbl(Teds_ID)
, PRIMARY KEY(Sensor_ID)
);
-- Create a sequence to keep track of the Sensor_ID values
CREATE SEQUENCE Sensor_Seq
MINVALUE 0
START WITH 0;
-- Insert Trigger to maintain Sensor ID
CREATE OR REPLACE TRIGGER SensorTrig
BEFORE INSERT ON Sensor_Tbl
FOR EACH ROW
BEGIN
SELECT Sensor_Seq.NEXTVAL
INTO :new.Sensor_ID
FROM dual;
END;
/
-- Sensor Data table
CREATE TABLE Sensor_Data
( Sensor_ID NUMBER(20) NOT NULL
, DataEntry TIMESTAMP(0) -- Date When Data Was entered
, Val NUMBER(5) -- xxxxx raw adjust based on TEDS sensor value
, FOREIGN KEY(Sensor_ID) REFERENCES Sensor_Tbl(Sensor_ID)
);
-- Maintain insert routines for data
-- Applys a timestamp to keep track of data entry
CREATE OR REPLACE PROCEDURE Insert_Data
( Sensor_ID IN Sensor_Data.Sensor_ID%TYPE
, Val IN Sensor_Data.Val%TYPE
)
AS
time TIMESTAMP := SYSTIMESTAMP;
BEGIN
--DBMS_OUTPUT.PUT_LINE('Data Added: SID-' || Sensor_ID || ':' || Val || ' (' || time || ')');
INSERT INTO Sensor_Data VALUES (Sensor_ID, time, Val);
END Insert_Data;
/
-- Experimental Table with the latest sensor data for each sensor
-- Only contain the recent inserted data plus a num entry to keep
-- track how much data in the sensors db
CREATE TABLE Data_Update
( Sensor_ID NUMBER(20) NOT NULL UNIQUE
, DataEntry TIMESTAMP(0) -- Time Stamp of data entered
, Val NUMBER(5) -- Sensor_TBL Val
, NumEntry NUMBER(5) DEFAULT 1 -- How many recordings on the sensor_data
, FOREIGN KEY(Sensor_ID) REFERENCES Sensor_Tbl(Sensor_ID)
);
-- Update Data Routine
-- Handles the update of the sensor stats table
CREATE OR REPLACE PROCEDURE Update_Data
( P_Sensor_ID IN Sensor_Data.Sensor_ID%TYPE
, P_DateEnrty IN Sensor_Data.DataEntry%TYPE
, P_Val IN Sensor_Data.Val%TYPE
)
AS
NumInc NUMBER;
BEGIN
-- DBMS_OUTPUT.PUT_LINE('INSERT:' || P_Sensor_ID || ',' || P_DateEnrty || ',' || P_Val);
INSERT INTO Data_Update (Sensor_ID, DataEntry, Val) VALUES (P_Sensor_ID, P_DateEnrty, P_Val);
-- Check if there was data already on the Data tbl. If duplicate increment num enrty
EXCEPTION
WHEN DUP_VAL_ON_INDEX THEN
-- Grab the Current NumEntry
SELECT NumEntry
INTO NumInc
FROM Data_Update
WHERE Sensor_ID = P_Sensor_ID;
-- Update the number entry and post date entry
UPDATE Data_Update
SET DataEntry = P_DateEnrty,
Val = P_Val,
NumEntry = NumInc +1
WHERE Sensor_ID = P_Sensor_ID;
END;
/
--View of the bridge data
CREATE OR REPLACE VIEW Sensor AS
SELECT ST.Sensor_ID AS SENSOR_ID
, ST.Bridge_ID AS Bridge_ID
, ST.Teds_ID AS TEDS_ID
, ST.Location_Number AS LOCATION_NUM
, TT.Manufacture_ID AS MANUFACTURE_ID
, TT.Model_Number AS MODEL_NUM
, TT.Version_Letter AS VERSION_LETTER
, TT.Version_Number AS VERSION_NUM
, TT.Serial_Number AS SERIAL_NUM
, TT.Template_ID AS TEMPLATE_ID
, TT.User_Text AS USER_TEXT
, TR.Name AS NAME
FROM Sensor_Tbl ST
INNER JOIN Teds_Tbl TT ON ST.Teds_ID = TT.Teds_ID
LEFT OUTER JOIN Transducer_Type TR ON TR.Transducer_ID = TT.Template_ID;
|
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Mar 22, 2017 at 12:20 AM
-- Server version: 5.5.54-0ubuntu0.14.04.1
-- PHP Version: 5.5.9-1ubuntu4.20
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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 utf8 */;
--
-- Database: `pagekit`
--
-- --------------------------------------------------------
--
-- Table structure for table `pk_blog_comment`
--
CREATE TABLE IF NOT EXISTS `pk_blog_comment` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int(10) unsigned NOT NULL,
`post_id` int(10) unsigned NOT NULL,
`user_id` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`author` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`ip` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created` datetime NOT NULL,
`content` longtext COLLATE utf8_unicode_ci NOT NULL,
`status` smallint(6) NOT NULL,
PRIMARY KEY (`id`),
KEY `pk_BLOG_COMMENT_AUTHOR` (`author`),
KEY `pk_BLOG_COMMENT_CREATED` (`created`),
KEY `pk_BLOG_COMMENT_STATUS` (`status`),
KEY `pk_BLOG_COMMENT_POST_ID` (`post_id`),
KEY `pk_BLOG_COMMENT_POST_ID_STATUS` (`post_id`,`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=7 ;
--
-- Dumping data for table `pk_blog_comment`
--
INSERT INTO `pk_blog_comment` (`id`, `parent_id`, `post_id`, `user_id`, `author`, `email`, `url`, `ip`, `created`, `content`, `status`) VALUES
(1, 0, 30, '1', 'admin', '<EMAIL>', '', '127.0.0.1', '2017-03-19 13:55:27', 'srqwerwer', 1),
(2, 1, 30, '1', 'admin', '<EMAIL>', '', '127.0.0.1', '2017-03-19 13:58:54', 'werwerwer', 1),
(3, 0, 30, '1', 'admin', '<EMAIL>', '', '127.0.0.1', '2017-03-19 13:58:58', 'asdfasdf', 1),
(4, 3, 30, '1', 'admin', '<EMAIL>', '', '127.0.0.1', '2017-03-20 16:30:54', 'sdfasdfsdaf', 1),
(5, 3, 30, '1', 'admin', '<EMAIL>', '', '127.0.0.1', '2017-03-20 16:31:06', 'uyweri239847239hwierhwiery 23hiweroiwe 23 29i3', 1),
(6, 5, 30, '1', 'admin', '<EMAIL>', '', '127.0.0.1', '2017-03-20 16:59:55', 'dsfjkhasdlfjyweoiruhwelrjewr', 1);
-- --------------------------------------------------------
--
-- Table structure for table `pk_blog_post`
--
CREATE TABLE IF NOT EXISTS `pk_blog_post` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL DEFAULT '0',
`slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`status` smallint(6) NOT NULL,
`date` datetime DEFAULT NULL,
`modified` datetime NOT NULL,
`content` longtext COLLATE utf8_unicode_ci NOT NULL,
`excerpt` longtext COLLATE utf8_unicode_ci NOT NULL,
`comment_status` tinyint(1) NOT NULL DEFAULT '0',
`comment_count` int(11) NOT NULL DEFAULT '0',
`data` longtext COLLATE utf8_unicode_ci COMMENT '(DC2Type:json_array)',
`roles` longtext COLLATE utf8_unicode_ci COMMENT '(DC2Type:simple_array)',
PRIMARY KEY (`id`),
UNIQUE KEY `pk_BLOG_POST_SLUG` (`slug`),
KEY `pk_BLOG_POST_TITLE` (`title`),
KEY `pk_BLOG_POST_USER_ID` (`user_id`),
KEY `pk_BLOG_POST_DATE` (`date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=31 ;
--
-- Dumping data for table `pk_blog_post`
--
INSERT INTO `pk_blog_post` (`id`, `user_id`, `slug`, `title`, `status`, `date`, `modified`, `content`, `excerpt`, `comment_status`, `comment_count`, `data`, `roles`) VALUES
(2, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered', 2, '2017-03-16 10:08:16', '2017-03-16 10:40:57', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog2.jpg","alt":""}}', NULL),
(3, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-2', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered', 2, '2017-03-16 10:40:28', '2017-03-16 10:42:17', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog3.jpg","alt":""}}', NULL),
(4, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-3', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered', 2, '2017-03-16 10:40:32', '2017-03-16 10:42:19', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog4.jpg","alt":""}}', NULL),
(5, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-4', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered', 2, '2017-03-16 10:40:32', '2017-03-16 10:42:18', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog5.jpg","alt":""}}', NULL),
(7, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-5', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered', 2, '2017-03-16 10:43:36', '2017-03-16 10:43:56', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog1.jpg","alt":""}}', NULL),
(8, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-6', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered - Copy', 2, '2017-03-17 14:30:30', '2017-03-17 14:38:33', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog1.jpg","alt":""}}', NULL),
(9, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-7', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered - Copy', 2, '2017-03-17 14:30:30', '2017-03-17 14:38:34', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog4.jpg","alt":""}}', NULL),
(10, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-8', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered - Copy', 2, '2017-03-17 14:30:30', '2017-03-17 14:38:35', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog5.jpg","alt":""}}', NULL),
(11, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-9', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered - Copy', 2, '2017-03-17 14:30:30', '2017-03-17 14:38:35', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog3.jpg","alt":""}}', NULL),
(12, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-10', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered - Copy', 2, '2017-03-17 14:30:30', '2017-03-17 14:38:36', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog2.jpg","alt":""}}', NULL),
(22, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-20', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered - Copy', 2, '2017-03-17 14:30:44', '2017-03-17 14:38:31', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog2.jpg","alt":""}}', NULL),
(23, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-11', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered - Copy - Copy', 2, '2017-03-17 14:59:10', '2017-03-17 14:59:12', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog2.jpg","alt":""}}', NULL),
(24, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-12', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered - Copy - Copy', 2, '2017-03-17 14:59:10', '2017-03-17 14:59:13', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog1.jpg","alt":""}}', NULL),
(25, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-13', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered - Copy - Copy', 2, '2017-03-17 14:59:10', '2017-03-17 14:59:14', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog4.jpg","alt":""}}', NULL),
(26, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-14', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered - Copy - Copy - Copy', 2, '2017-03-17 15:00:29', '2017-03-17 15:00:30', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog2.jpg","alt":""}}', NULL),
(27, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-15', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered - Copy - Copy - Copy', 2, '2017-03-17 15:00:29', '2017-03-17 15:00:30', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog1.jpg","alt":""}}', NULL),
(28, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-16', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered - Copy - Copy - Copy', 2, '2017-03-17 15:00:29', '2017-03-17 15:00:32', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog4.jpg","alt":""}}', NULL),
(29, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-17', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered - Copy - Copy', 2, '2017-03-17 15:00:29', '2017-03-17 15:00:32', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 0, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog2.jpg","alt":""}}', NULL),
(30, 1, 'there-are-many-variations-of-passages-of-lorem-lpsum-avaiable,-but-the-majority-have-suffered-18', 'There are many variations of passages of Lorem Lpsum avaiable, but the majority have suffered - Copy - Copy', 2, '2017-03-17 15:00:29', '2017-03-17 15:00:33', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. the point of using Lorem ipsum distribution of letters, as opposed to using ''Content here, content here'', making it look like', '', 1, 6, '{"title":null,"markdown":true,"image":{"src":"http:\\/\\/localhost\\/source\\/Vektor\\/Pagekit-blog\\/storage\\/blogs\\/blog1.jpg","alt":""}}', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `pk_system_auth`
--
CREATE TABLE IF NOT EXISTS `pk_system_auth` (
`id` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`user_id` int(10) unsigned NOT NULL DEFAULT '0',
`access` datetime DEFAULT NULL,
`status` smallint(6) NOT NULL,
`data` longtext COLLATE utf8_unicode_ci COMMENT '(DC2Type:json_array)',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `pk_system_auth`
--
INSERT INTO `pk_system_auth` (`id`, `user_id`, `access`, `status`, `data`) VALUES
('0cc3f73a0b5e915cc8f7001cc45b0391fa1347ec', 1, '2017-03-21 10:59:51', 1, '{"ip":"127.0.0.1","user-agent":"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.59 Safari\\/537.36"}'),
('29f3e25b2f22c8025bff04e60aaa3903a197851b', 1, '2017-03-17 15:15:51', 1, '{"ip":"127.0.0.1","user-agent":"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.59 Safari\\/537.36"}'),
('3de0423c56aeae7c4bbe602b14441dae426ebac6', 1, '2017-03-20 10:34:43', 1, '{"ip":"127.0.0.1","user-agent":"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.59 Safari\\/537.36"}'),
('5902146a64fbeb00cce456a793276ab7135a20ee', 1, '2017-03-17 08:36:32', 1, '{"ip":"127.0.0.1","user-agent":"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.59 Safari\\/537.36"}'),
('70f471c8f8b189159ad1a94c3a06f5be65166aad', 1, '2017-03-20 03:40:46', 1, '{"ip":"127.0.0.1","user-agent":"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.59 Safari\\/537.36"}'),
('8938fc0da883dca5193ef7533c081259d3982ccf', 1, '2017-03-16 15:31:08', 1, '{"ip":"127.0.0.1","user-agent":"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.59 Safari\\/537.36"}'),
('8d959ecfe43fe463aa174eb4b318f28fb326b6a1', 1, '2017-03-17 03:47:21', 1, '{"ip":"127.0.0.1","user-agent":"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.59 Safari\\/537.36"}'),
('abaceb76c7bf05f829cac7dbdbe002a773e86376', 1, '2017-03-20 10:51:04', 1, '{"ip":"127.0.0.1","user-agent":"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.59 Safari\\/537.36"}'),
('ae1b5b107ae6a4c77bd8a2fbd0d21fe289e8f383', 1, '2017-03-20 20:41:37', 1, '{"ip":"127.0.0.1","user-agent":"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.59 Safari\\/537.36"}'),
('e6f9986ec7927697422a42ea293df67389d4f7cd', 1, '2017-03-19 20:08:07', 1, '{"ip":"127.0.0.1","user-agent":"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/54.0.2840.59 Safari\\/537.36"}');
-- --------------------------------------------------------
--
-- Table structure for table `pk_system_config`
--
CREATE TABLE IF NOT EXISTS `pk_system_config` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`value` longtext COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `pk_SYSTEM_CONFIG_NAME` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=12 ;
--
-- Dumping data for table `pk_system_config`
--
INSERT INTO `pk_system_config` (`id`, `name`, `value`) VALUES
(1, 'system/dashboard', '{"55dda578e93b5":{"type":"location","column":1,"idx":0,"units":"metric","id":"55dda578e93b5","uid":2911298,"city":"Hamburg","country":"DE","coords":{"lon":10,"lat":53.549999}},"55dda581d5781":{"type":"feed","column":2,"idx":0,"count":5,"content":"1","id":"55dda581d5781","title":"Pagekit News","url":"http:\\/\\/pagekit.com\\/blog\\/feed"},"55dda6e3dd661":{"type":"user","column":0,"idx":100,"show":"registered","display":"thumbnail","total":"1","count":12,"id":"55dda6e3dd661"}}'),
(2, 'system/site', '{"menus":{"main":{"id":"main","label":"Main"}},"title":"Blog","frontpage":1,"view":{"logo":"storage\\/logo.png"},"description":"","maintenance":{"enabled":false,"logo":"","msg":""},"icons":{"favicon":false,"appicon":false},"code":{"header":"","footer":""}}'),
(3, 'system', '{"admin":{"locale":"en_US"},"site":{"locale":"en_US","theme":"theme-one"},"version":"1.0.11","packages":{"blog":"1.0.3","theme-one":"1.0.0"},"extensions":["blog"]}'),
(6, 'theme-one', '{"logo_contrast":"storage\\/pagekit-logo-contrast.svg","_menus":{"main":"main","offcanvas":"main"},"_positions":{"hero":[1],"footer":[2]},"_widgets":{"1":{"title_hide":true,"title_size":"uk-panel-title","alignment":true,"html_class":"","panel":""},"2":{"title_hide":true,"title_size":"uk-panel-title","alignment":"true","html_class":"","panel":""}},"_nodes":{"1":{"title_hide":true,"title_large":false,"alignment":true,"html_class":"","sidebar_first":false,"hero_image":"storage\\/home-hero.jpg","hero_viewport":true,"hero_contrast":true,"navbar_transparent":true}},"logo_offcanvas":""}'),
(10, 'blog', '{"comments":{"autoclose":false,"autoclose_days":14,"blacklist":"","comments_per_page":20,"gravatar":true,"max_depth":5,"maxlinks":2,"minidle":120,"nested":true,"notifications":"always","order":"ASC","replymail":true,"require_email":true},"posts":{"posts_per_page":"3","comments_enabled":true,"markdown_enabled":true},"permalink":{"type":"","custom":"{slug}"},"feed":{"type":"rss2","limit":20}}');
-- --------------------------------------------------------
--
-- Table structure for table `pk_system_node`
--
CREATE TABLE IF NOT EXISTS `pk_system_node` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int(10) unsigned NOT NULL DEFAULT '0',
`priority` int(11) NOT NULL DEFAULT '0',
`status` smallint(6) NOT NULL,
`title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`path` varchar(1023) COLLATE utf8_unicode_ci NOT NULL,
`link` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`menu` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`roles` longtext COLLATE utf8_unicode_ci COMMENT '(DC2Type:simple_array)',
`data` longtext COLLATE utf8_unicode_ci COMMENT '(DC2Type:json_array)',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ;
--
-- Dumping data for table `pk_system_node`
--
INSERT INTO `pk_system_node` (`id`, `parent_id`, `priority`, `status`, `title`, `slug`, `path`, `link`, `type`, `menu`, `roles`, `data`) VALUES
(1, 0, 1, 1, 'Home', 'home', '/home', '@page/1', 'page', 'main', NULL, '{"defaults":{"id":1}}'),
(2, 0, 2, 1, 'Blog', 'blog', '/blog', '@blog', 'blog', 'main', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `pk_system_page`
--
CREATE TABLE IF NOT EXISTS `pk_system_page` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`content` longtext COLLATE utf8_unicode_ci NOT NULL,
`data` longtext COLLATE utf8_unicode_ci COMMENT '(DC2Type:json_array)',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `pk_system_page`
--
INSERT INTO `pk_system_page` (`id`, `title`, `content`, `data`) VALUES
(1, 'Home', '<div class="uk-width-medium-3-4 uk-container-center">\n \n<h3 class="uk-h1 uk-margin-large-bottom">Uniting fresh design and clean code<br class="uk-hidden-small"> to create beautiful websites.</h3>\n\n<p class="uk-width-medium-4-6 uk-container-center">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>\n\n</div>', '{"title":true}');
-- --------------------------------------------------------
--
-- Table structure for table `pk_system_role`
--
CREATE TABLE IF NOT EXISTS `pk_system_role` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`priority` int(11) NOT NULL DEFAULT '0',
`permissions` longtext COLLATE utf8_unicode_ci COMMENT '(DC2Type:simple_array)',
PRIMARY KEY (`id`),
UNIQUE KEY `pk_SYSTEM_ROLE_NAME` (`name`),
KEY `pk_SYSTEM_ROLE_NAME_PRIORITY` (`name`,`priority`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `pk_system_role`
--
INSERT INTO `pk_system_role` (`id`, `name`, `priority`, `permissions`) VALUES
(1, 'Anonymous', 0, NULL),
(2, 'Authenticated', 1, 'blog: post comments'),
(3, 'Administrator', 2, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `pk_system_session`
--
CREATE TABLE IF NOT EXISTS `pk_system_session` (
`id` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`time` datetime NOT NULL,
`data` text COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `pk_system_session`
--
INSERT INTO `pk_system_session` (`id`, `time`, `data`) VALUES
('2njtk2elh8aopkmd03alqmcnb4', '2017-03-17 15:37:05', '<KEY>),
('2q69too8ukp8lqr2v5jaqso8e2', '2017-03-20 18:38:24', '<KEY>),
('<KEY>', '2017-03-20 20:41:37', '<KEY>),
('<KEY>', '2017-03-17 03:47:12', '<KEY>),
('<KEY>', '2017-03-20 10:26:20', '<KEY>),
('<KEY>', '2017-03-20 08:36:29', '<KEY>),
('<KEY>', '2017-03-20 03:59:50', '<KEY>),
('<KEY>', '2017-03-21 08:54:38', '<KEY>),
('72051nb3o0s586tv4qd74gabs7', '2017-03-21 14:36:29', '<KEY>),
('7o9sdl771d1rpl1s0oi6qcfj54', '2017-03-20 10:34:44', '<KEY>),
('96qmgi5eri6aan0pgc8pr71lb1', '2017-03-20 10:43:32', '<KEY>),
('9vmbngvi4mcqlodhhp2r2db951', '2017-03-21 10:51:56', '<KEY>),
('acdn3261fvmheimggcl17ipv27', '2017-03-20 02:59:11', '<KEY>),
('ah296f96i2nprvk54abj84apm2', '2017-03-20 10:48:53', '<KEY>),
('avnmc4jiutnildv2tkmvbdvcv4', '2017-03-19 19:48:25', '<KEY>),
('b47ckssfu7g0c4qtho880diko4', '2017-03-17 14:01:45', '<KEY>),
('bple55992gn2t6qhiaa93badu2', '2017-03-20 02:59:04', '<KEY>),
('cbcu2gaotsc9klnmcnj2u4d3f3', '2017-03-20 15:55:32', '<KEY>),
('cgv8s2sl9t342t1iuvpra5aeq4', '2017-03-16 12:45:58', '<KEY>),
('eldvh9385jst0nh1mhr2em3582', '2017-03-17 08:36:24', '<KEY>),
('eo7i7kup8clu2e697o9hghk0s5', '2017-03-16 10:39:51', '<KEY>),
('etq5jc2e6bb61dc93j15tl4va0', '2017-03-20 08:36:27', '<KEY>),
('flfrpsm32b50bkg0hb4t5e6k60', '2017-03-17 08:36:33', '<KEY>),
('grv394mgdmmgcv1876uktfe493', '2017-03-17 03:48:23', '<KEY>),
('hkuq6k4fs1csvkso86g6t1phg1', '2017-03-16 13:53:17', '<KEY>),
('i3ejvnggmcfbn9vhg0jvm6s902', '2017-03-20 16:26:17', '<KEY>),
('itekbavm20p4vofkniha9hodo2', '2017-03-16 10:05:57', '<KEY>),
('nf7q2q7jhr1col8hph938n6ke5', '2017-03-20 15:38:42', '<KEY>),
('npf2393ibc85kdmn911jlnciv2', '2017-03-20 10:51:05', '<KEY>),
('oqs52ldjnn7fek4caj4q9nkco5', '2017-03-20 14:23:34', '<KEY>),
('q8mshg5kjq56u09jthtts2tqs4', '2017-03-19 13:55:12', '<KEY>),
('qdi1rmkg6v7snmt3v1t5acked3', '2017-03-16 21:17:00', '<KEY>),
('uj7rn5kgqor7d917qfv0uiqic1', '2017-03-17 14:01:38', '<KEY>),
('vjostd5hevkd49o8dud7vu9ns7', '2017-03-19 20:57:32', '<KEY>');
-- --------------------------------------------------------
--
-- Table structure for table `pk_system_user`
--
CREATE TABLE IF NOT EXISTS `pk_system_user` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`username` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`password` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`url` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`status` smallint(6) NOT NULL DEFAULT '0',
`registered` datetime NOT NULL,
`login` datetime DEFAULT NULL,
`activation` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`roles` longtext COLLATE utf8_unicode_ci COMMENT '(DC2Type:simple_array)',
`data` longtext COLLATE utf8_unicode_ci COMMENT '(DC2Type:json_array)',
PRIMARY KEY (`id`),
UNIQUE KEY `pk_SYSTEM_USER_USERNAME` (`username`),
UNIQUE KEY `pk_SYSTEM_USER_EMAIL` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ;
--
-- Dumping data for table `pk_system_user`
--
INSERT INTO `pk_system_user` (`id`, `name`, `username`, `email`, `password`, `url`, `status`, `registered`, `login`, `activation`, `roles`, `data`) VALUES
(1, 'admin', '<PASSWORD>', '<EMAIL>', <PASSWORD>', '', 1, '2017-03-16 10:05:50', '2017-03-21 10:51:56', NULL, '2,3', '{"admin":{"menu":{"dashboard":0,"site":1,"blog":2,"user":3,"system: system":4,"system: marketplace":5}}}');
-- --------------------------------------------------------
--
-- Table structure for table `pk_system_widget`
--
CREATE TABLE IF NOT EXISTS `pk_system_widget` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`status` smallint(6) NOT NULL,
`nodes` longtext COLLATE utf8_unicode_ci COMMENT '(DC2Type:simple_array)',
`roles` longtext COLLATE utf8_unicode_ci COMMENT '(DC2Type:simple_array)',
`data` longtext COLLATE utf8_unicode_ci COMMENT '(DC2Type:json_array)',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ;
--
-- Dumping data for table `pk_system_widget`
--
INSERT INTO `pk_system_widget` (`id`, `title`, `type`, `status`, `nodes`, `roles`, `data`) VALUES
(1, 'Hello, I''m Pagekit', 'system/text', 1, '1', NULL, '{"content":"<h1 class=\\"uk-heading-large uk-margin-large-bottom\\">Hello, I''m Pagekit,<br class=\\"uk-hidden-small\\"> your new favorite CMS.<\\/h1>\\n\\n<a class=\\"uk-button uk-button-large\\" href=\\"http:\\/\\/www.pagekit.com\\">Get started<\\/a>"}'),
(2, 'Powered by Pagekit', 'system/text', 1, NULL, NULL, '{"content":"<ul class=\\"link uk-grid uk-grid-medium uk-flex\\">\\n <li ><a href=\\"\\">Contact<\\/a><\\/li>\\n <li ><a href=\\"\\">Privacy Policy<\\/a><\\/li>\\n<\\/ul>\\n<ul class=\\"socials uk-grid uk-grid-medium uk-flex uk-flex-center\\">\\n <li><a href=\\"https:\\/\\/twitter.com\\/pagekit\\"><p class=\\"icon icon-twitter\\"><\\/p><\\/a><\\/li>\\n <li><a href=\\"https:\\/\\/plus.google.com\\/communities\\/104125443335488004107\\"><p class=\\"icon icon-facebook\\"><\\/p><\\/a><\\/li>\\n<\\/ul>\\n"}');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<filename>schema.sql<gh_stars>0
drop table if exists usajobs;
create table if not exists usajobs(
id serial primary key,
title varchar(255),
company varchar(255),
location varchar(255),
url text,
description text
) |
UPDATE court
SET phone='314.615.7400', address='715 Northwest Plaza Drive', city='St. Ann', zip_code='63074', latitude='38.733026', longitude='-90.4023659'
WHERE court_id='51'; |
ALTER TABLE `cms_category`
ADD INDEX `uri` (`uri`),
DROP INDEX `uri`; |
<reponame>roaddee/dulkemot
INSERT INTO tweb_apbd(`rangkuman`,`berkas_id`,`lembaga_id`, `lembaga_kode`,`pemda_kode`, `wilayah_kode`,`tahun`, `rekening_kode`,`rekening`, `uraian`, `nominal`,`nominal_sebelum`, `nominal_sesudah`, `nominal_perubahan`, `nominal_persen`, `keterangan`, `created_by`, `updated_by`) VALUES
('0','245','112','1.01.01','1.01','3471','2015','1.01.01.','','Dinas Pendidikan','677927731381,00','0','677927731381,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.001.5.2.2.','001.001.5.2.2.','BELANJA BARANG DAN JASA','10276000,00','0','10276000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.001.5.2.2.01.','001.001.5.2.2.01.','Belanja Bahan Pakai Habis','9790000,00','0','9790000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.001.5.2.2.01.04.','001.001.5.2.2.01.04.','Belanja Perangko, Materai, dan Benda Pos','9790000,00','0','9790000,00','0','0','Belanja Perangko, Materai, dan Benda Pos 9790000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.001.5.2.2.03.','001.001.5.2.2.03.','Belanja Jasa Kantor','486000,00','0','486000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.001.5.2.2.03.07.','001.001.5.2.2.03.07.','Belanja Paket/Pengiriman','486000,00','0','486000,00','0','0','Belanja Paket/Pengiriman 486000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.006.5.2.2.','001.006.5.2.2.','BELANJA BARANG DAN JASA','13600000,00','0','13600000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.006.5.2.2.05.','001.006.5.2.2.05.','Belanja Perawatan Kendaraan Bermotor','13600000,00','0','13600000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.006.5.2.2.05.05.','001.006.5.2.2.05.05.','Belanja STNK','13600000,00','0','13600000,00','0','0','Belanja STNK 13600000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.007.5.2.1.','001.007.5.2.1.','BELANJA PEGAWAI','633240000,00','0','633240000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.007.5.2.1.01.','001.007.5.2.1.01.','Honorarium PNS','511200000,00','0','511200000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.007.5.2.1.01.04.','001.007.5.2.1.01.04.','Honorarium Pengelola Keuangan/Barang','511200000,00','0','511200000,00','0','0','Honorarium Pengelola Keuangan/Barang 511200000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.007.5.2.1.04.','001.007.5.2.1.04.','Honorarium Pengelola Dana BOS','122040000,00','0','122040000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.007.5.2.1.04.01.','001.007.5.2.1.04.01.','Honorarium Pengelolaan Dana BOS','122040000,00','0','122040000,00','0','0','Honorarium Pengelolaan Dana BOS 122040000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.008.5.2.1.','001.008.5.2.1.','BELANJA PEGAWAI','400000,00','0','400000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.008.5.2.1.01.','001.008.5.2.1.01.','Honorarium PNS','400000,00','0','400000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.008.5.2.1.01.02.','001.008.5.2.1.01.02.','Honorarium Tim Pengadaan Barang dan Jasa','400000,00','0','400000,00','0','0','Honorarium Tim Pengadaan Barang dan Jasa 400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.008.5.2.2.','001.008.5.2.2.','BELANJA BARANG DAN JASA','196740000,00','0','196740000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.008.5.2.2.03.','001.008.5.2.2.03.','Belanja Jasa Kantor','1740000,00','0','1740000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.008.5.2.2.03.14.','001.008.5.2.2.03.14.','Belanja Retribusi/Tiket','1740000,00','0','1740000,00','0','0','Belanja Retribusi/Tiket 1740000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.008.5.2.2.20.','001.008.5.2.2.20.','Belanja Pemeliharaan','195000000,00','0','195000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.008.5.2.2.20.09.','001.008.5.2.2.20.09.','Belanja Pemeliharaan Kebersihan','195000000,00','0','195000000,00','0','0','Belanja Pemeliharaan Kebersihan 195000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.010.5.2.1.','001.010.5.2.1.','BELANJA PEGAWAI','3425000,00','0','3425000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.010.5.2.1.01.','001.010.5.2.1.01.','Honorarium PNS','3425000,00','0','3425000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.010.5.2.1.01.01.','001.010.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','3025000,00','0','3025000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 3025000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.010.5.2.1.01.02.','001.010.5.2.1.01.02.','Honorarium Tim Pengadaan Barang dan Jasa','400000,00','0','400000,00','0','0','Honorarium Tim Pengadaan Barang dan Jasa 400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.010.5.2.2.','001.010.5.2.2.','BELANJA BARANG DAN JASA','116919675,00','0','116919675,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.010.5.2.2.01.','001.010.5.2.2.01.','Belanja Bahan Pakai Habis','116919675,00','0','116919675,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.010.5.2.2.01.01.','001.010.5.2.2.01.01.','Belanja Alat Tulis Kantor','116919675,00','0','116919675,00','0','0','Belanja Alat Tulis Kantor 116919675','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.011.5.2.2.','001.011.5.2.2.','BELANJA BARANG DAN JASA','157671000,00','0','157671000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.011.5.2.2.06.','001.011.5.2.2.06.','Belanja Cetak Dan Penggandaan','157671000,00','0','157671000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.011.5.2.2.06.01.','001.011.5.2.2.06.01.','Belanja Cetak','21471000,00','0','21471000,00','0','0','Belanja Cetak 21471000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.011.5.2.2.06.02.','001.011.5.2.2.06.02.','Belanja Penggandaan','136200000,00','0','136200000,00','0','0','Belanja Penggandaan 136200000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.012.5.2.2.','001.012.5.2.2.','BELANJA BARANG DAN JASA','21255250,00','0','21255250,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.012.5.2.2.01.','001.012.5.2.2.01.','Belanja Bahan Pakai Habis','21255250,00','0','21255250,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.012.5.2.2.01.03.','001.012.5.2.2.01.03.','Belanja Alat Listrik Dan Elektronik','21255250,00','0','21255250,00','0','0','Belanja Alat Listrik Dan Elektronik 21255250','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.013.5.2.2.','001.013.5.2.2.','BELANJA BARANG DAN JASA','82317500,00','0','82317500,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.013.5.2.2.02.','001.013.5.2.2.02.','Belanja Bahan/Material','82317500,00','0','82317500,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.013.5.2.2.02.06.','001.013.5.2.2.02.06.','Belanja Bahan Komputer/Printer','82317500,00','0','82317500,00','0','0','Belanja Bahan Komputer/Printer 82317500','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.014.5.2.2.','001.014.5.2.2.','BELANJA BARANG DAN JASA','23579300,00','0','23579300,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.014.5.2.2.02.','001.014.5.2.2.02.','Belanja Bahan/Material','23579300,00','0','23579300,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.014.5.2.2.02.07.','001.014.5.2.2.02.07.','Belanja Alat - Alat/Perlengkapan Kantor/Rumah Tangga/Kerja','23579300,00','0','23579300,00','0','0','Belanja Alat - Alat/Perlengkapan Kantor/Rumah Tangga/Kerja 23579300','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.015.5.2.2.','001.015.5.2.2.','BELANJA BARANG DAN JASA','4680000,00','0','4680000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.015.5.2.2.03.','001.015.5.2.2.03.','Belanja Jasa Kantor','4680000,00','0','4680000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.015.5.2.2.03.05.','001.015.5.2.2.03.05.','Belanja Surat Kabar/Majalah','4680000,00','0','4680000,00','0','0','Belanja Surat Kabar/Majalah 4680000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.017.5.2.2.','001.017.5.2.2.','BELANJA BARANG DAN JASA','201844000,00','0','201844000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.017.5.2.2.11.','001.017.5.2.2.11.','Belanja Makanan Dan Minuman','201844000,00','0','201844000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.017.5.2.2.11.01.','001.017.5.2.2.11.01.','Belanja Makanan Dan Minuman Pegawai','57112000,00','0','57112000,00','0','0','Belanja Makanan Dan Minuman Pegawai 57112000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.017.5.2.2.11.02.','001.017.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','126420000,00','0','126420000,00','0','0','Belanja Makanan Dan Minuman Rapat 126420000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.017.5.2.2.11.03.','001.017.5.2.2.11.03.','Belanja Makanan Dan Minuman Tamu','18312000,00','0','18312000,00','0','0','Belanja Makanan Dan Minuman Tamu 18312000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.018.5.2.2.','001.018.5.2.2.','BELANJA BARANG DAN JASA','81600000,00','0','81600000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.018.5.2.2.15.','001.018.5.2.2.15.','Belanja Perjalanan Dinas','81600000,00','0','81600000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.018.5.2.2.15.02.','001.018.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','81600000,00','0','81600000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 81600000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.019.5.2.1.','001.019.5.2.1.','BELANJA PEGAWAI','15961854076,00','0','15961854076,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.019.5.2.1.02.','001.019.5.2.1.02.','Honorarium Non PNS','15961854076,00','0','15961854076,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.019.5.2.1.02.01.','001.019.5.2.1.02.01.','Honorarium Pegawai Honorer/Tidak Tetap','15961854076,00','0','15961854076,00','0','0','Honorarium Pegawai Honorer/Tidak Tetap 15961854076','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.020.5.2.1.','001.020.5.2.1.','BELANJA PEGAWAI','400000,00','0','400000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.020.5.2.1.01.','001.020.5.2.1.01.','Honorarium PNS','400000,00','0','400000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.020.5.2.1.01.02.','001.020.5.2.1.01.02.','Honorarium Tim Pengadaan Barang dan Jasa','400000,00','0','400000,00','0','0','Honorarium Tim Pengadaan Barang dan Jasa 400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.020.5.2.2.','001.020.5.2.2.','BELANJA BARANG DAN JASA','190000000,00','0','190000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.020.5.2.2.03.','001.020.5.2.2.03.','Belanja Jasa Kantor','190000000,00','0','190000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.001.020.5.2.2.03.20.','001.020.5.2.2.03.20.','Biaya Jasa Keamanan','190000000,00','0','190000000,00','0','0','Biaya Jasa Keamanan 190000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.002.022.5.2.2.','002.022.5.2.2.','BELANJA BARANG DAN JASA','240720000,00','0','240720000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.002.022.5.2.2.02.','002.022.5.2.2.02.','Belanja Bahan/Material','6220000,00','0','6220000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.002.022.5.2.2.02.02.','002.022.5.2.2.02.02.','Belanja Bahan/Bibit Tanaman','6220000,00','0','6220000,00','0','0','Belanja Bahan/Bibit Tanaman 6220000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.002.022.5.2.2.20.','002.022.5.2.2.20.','Belanja Pemeliharaan','234500000,00','0','234500000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.002.022.5.2.2.20.03.','002.022.5.2.2.20.03.','Belanja Pemeliharaan Bangunan Pemerintah','234500000,00','0','234500000,00','0','0','Belanja Pemeliharaan Bangunan Pemerintah 234500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.002.024.5.2.2.','002.024.5.2.2.','BELANJA BARANG DAN JASA','317812000,00','0','317812000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.002.024.5.2.2.05.','002.024.5.2.2.05.','Belanja Perawatan Kendaraan Bermotor','317812000,00','0','317812000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.002.024.5.2.2.05.01.','002.024.5.2.2.05.01.','Belanja Jasa Service','16400000,00','0','16400000,00','0','0','Belanja Jasa Service 16400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.002.024.5.2.2.05.02.','002.024.5.2.2.05.02.','Belanja Penggantian Suku Cadang','26460000,00','0','26460000,00','0','0','Belanja Penggantian Suku Cadang 26460000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.002.024.5.2.2.05.03.','002.024.5.2.2.05.03.','Belanja Bahan Bakar Minyak/Gas Dan Pelumas','274952000,00','0','274952000,00','0','0','Belanja Bahan Bakar Minyak/Gas Dan Pelumas 274952000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.002.026.5.2.2.','002.026.5.2.2.','BELANJA BARANG DAN JASA','41410000,00','0','41410000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.002.026.5.2.2.20.','002.026.5.2.2.20.','Belanja Pemeliharaan','41410000,00','0','41410000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.002.026.5.2.2.20.04.','002.026.5.2.2.20.04.','Belanja Pemeliharaan Peralatan Dan Perlengkapan Kantor/Kerja/Kerumahtanggaan/Komunikasi/Studio','25660000,00','0','25660000,00','0','0','Belanja Pemeliharaan Peralatan Dan Perlengkapan Kantor/Kerja/Kerumahtanggaan/Komunikasi/Studio 25660000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.002.026.5.2.2.20.11.','002.026.5.2.2.20.11.','Belanja Pemeliharaan Komputer','15750000,00','0','15750000,00','0','0','Belanja Pemeliharaan Komputer 15750000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.006.001.5.2.1.','006.001.5.2.1.','BELANJA PEGAWAI','71820000,00','0','71820000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.006.001.5.2.1.01.','006.001.5.2.1.01.','Honorarium PNS','46820000,00','0','46820000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.006.001.5.2.1.01.01.','006.001.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','46820000,00','0','46820000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 46820000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.006.001.5.2.1.03.','006.001.5.2.1.03.','Uang Lembur','25000000,00','0','25000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.006.001.5.2.1.03.01.','006.001.5.2.1.03.01.','Uang Lembur PNS','19500000,00','0','19500000,00','0','0','Uang Lembur PNS 19500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.006.001.5.2.1.03.02.','006.001.5.2.1.03.02.','Uang Lembur Non PNS','5500000,00','0','5500000,00','0','0','Uang Lembur Non PNS 5500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.1.','010.001.5.2.1.','BELANJA PEGAWAI','299190000,00','0','299190000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.1.01.','010.001.5.2.1.01.','Honorarium PNS','299190000,00','0','299190000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.1.01.01.','010.001.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','298310000,00','0','298310000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 298310000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.1.01.02.','010.001.5.2.1.01.02.','Honorarium Tim Pengadaan Barang dan Jasa','880000,00','0','880000,00','0','0','Honorarium Tim Pengadaan Barang dan Jasa 880000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.2.','010.001.5.2.2.','BELANJA BARANG DAN JASA','1995572000,00','0','1995572000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.2.01.','010.001.5.2.2.01.','Belanja Bahan Pakai Habis','9140000,00','0','9140000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.2.01.01.','010.001.5.2.2.01.01.','Belanja Alat Tulis Kantor','9140000,00','0','9140000,00','0','0','Belanja Alat Tulis Kantor 9140000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.2.03.','010.001.5.2.2.03.','Belanja Jasa Kantor','1400000,00','0','1400000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.2.03.13.','010.001.5.2.2.03.13.','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film','1400000,00','0','1400000,00','0','0','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film 1400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.2.06.','010.001.5.2.2.06.','Belanja Cetak Dan Penggandaan','540378000,00','0','540378000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.2.06.01.','010.001.5.2.2.06.01.','Belanja Cetak','509750000,00','0','509750000,00','0','0','Belanja Cetak 509750000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.2.06.02.','010.001.5.2.2.06.02.','Belanja Penggandaan','30628000,00','0','30628000,00','0','0','Belanja Penggandaan 30628000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.2.07.','010.001.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','37800000,00','0','37800000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.2.07.03.','010.001.5.2.2.07.03.','Belanja Sewa Ruang Rapat/Pertemuan','37800000,00','0','37800000,00','0','0','Belanja Sewa Ruang Rapat/Pertemuan 37800000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.2.11.','010.001.5.2.2.11.','Belanja Makanan Dan Minuman','225854000,00','0','225854000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.2.11.02.','010.001.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','225854000,00','0','225854000,00','0','0','Belanja Makanan Dan Minuman Rapat 225854000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.2.15.','010.001.5.2.2.15.','Belanja Perjalanan Dinas','44200000,00','0','44200000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.2.15.02.','010.001.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','44200000,00','0','44200000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 44200000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.172.16.17.321.','010.001.5.2.2.31.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','1130050000,00','0','1130050000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.2.31.01.','010.001.5.2.2.31.01.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','1130050000,00','0','1130050000,00','0','0','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator 1130050000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.192.168.127.12.','010.001.172.16.17.322.','Belanja Uang Untuk Diberikan Kepada Pihak Ketiga/Masyarakat','6750000,00','0','6750000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.001.5.2.2.32.02.','010.001.5.2.2.32.02.','Belanja Uang Untuk Diberikan Kepada Masyarakat','6750000,00','0','6750000,00','0','0','Belanja Uang Untuk Diberikan Kepada Masyarakat 6750000. Lokasi Kegiatan Kecamatan Danurejan. Lomba KIR MIPA 2250000. Lomba KIR IPS 2250000. Lomba KIR Teknik 2250000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.1.','010.002.5.2.1.','BELANJA PEGAWAI','6314875000,00','0','6314875000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.1.01.','010.002.5.2.1.01.','Honorarium PNS','79075000,00','0','79075000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.1.01.01.','010.002.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','79075000,00','0','79075000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 79075000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.1.02.','010.002.5.2.1.02.','Honorarium Non PNS','6235800000,00','0','6235800000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.1.02.01.','010.002.5.2.1.02.01.','Honorarium Pegawai Honorer/Tidak Tetap','6235800000,00','0','6235800000,00','0','0','Honorarium Pegawai Honorer/Tidak Tetap 6235800000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.','010.002.5.2.2.','BELANJA BARANG DAN JASA','625504000,00','0','625504000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.02.','010.002.5.2.2.02.','Belanja Bahan/Material','23100000,00','0','23100000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.02.08.','010.002.5.2.2.02.08.','Belanja Hadiah/Trophy','23100000,00','0','23100000,00','0','0','Belanja Hadiah/Trophy 23100000 Lokasi Kegiatan Kecamatan Danurejan. Lomba OSN Guru 22500000. Lomba Gugus Sekolah Dasar 300000. Lomba Gugus TK/PAUD 300000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.03.','010.002.5.2.2.03.','Belanja Jasa Kantor','700000,00','0','700000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.03.13.','010.002.5.2.2.03.13.','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film','700000,00','0','700000,00','0','0','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film 700000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.06.','010.002.5.2.2.06.','Belanja Cetak Dan Penggandaan','17650000,00','0','17650000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.06.01.','010.002.5.2.2.06.01.','Belanja Cetak','250000,00','0','250000,00','0','0','Belanja Cetak 250000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.06.02.','010.002.5.2.2.06.02.','Belanja Penggandaan','17100000,00','0','17100000,00','0','0','Belanja Penggandaan 17100000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.06.03.','010.002.5.2.2.06.03.','Belanja Cetak Foto','300000,00','0','300000,00','0','0','Belanja Cetak Foto 300000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.07.','010.002.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','28400000,00','0','28400000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.07.03.','010.002.5.2.2.07.03.','Belanja Sewa Ruang Rapat/Pertemuan','28400000,00','0','28400000,00','0','0','Belanja Sewa Ruang Rapat/Pertemuan 28400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.11.','010.002.5.2.2.11.','Belanja Makanan Dan Minuman','261604000,00','0','261604000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.11.02.','010.002.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','261604000,00','0','261604000,00','0','0','Belanja Makanan Dan Minuman Rapat 261604000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.15.','010.002.5.2.2.15.','Belanja Perjalanan Dinas','13600000,00','0','13600000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.15.02.','010.002.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','13600000,00','0','13600000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 13600000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.31.','010.002.5.2.2.31.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','258450000,00','0','258450000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.31.01.','010.002.5.2.2.31.01.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','258450000,00','0','258450000,00','0','0','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator 258450000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.192.168.127.12.','010.002.5.2.2.32.','Belanja Uang Untuk Diberikan Kepada Pihak Ketiga/Masyarakat','22000000,00','0','22000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.002.5.2.2.32.02.','010.002.5.2.2.32.02.','Belanja Uang Untuk Diberikan Kepada Masyarakat','22000000,00','0','22000000,00','0','0','Belanja Uang Untuk Diberikan Kepada Masyarakat 22000000. Lokasi Kegiatan Kecamatan Danurejan. Lomba Gugus TK/PAUD dan SD 22000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.1.','010.003.5.2.1.','BELANJA PEGAWAI','62415000,00','0','62415000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.1.01.','010.003.5.2.1.01.','Honorarium PNS','62415000,00','0','62415000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.1.01.01.','010.003.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','62415000,00','0','62415000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 62415000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.','010.003.5.2.2.','BELANJA BARANG DAN JASA','1114734000,00','0','1114734000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.01.','010.003.5.2.2.01.','Belanja Bahan Pakai Habis','3400000,00','0','3400000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.01.01.','010.003.5.2.2.01.01.','Belanja Alat Tulis Kantor','3400000,00','0','3400000,00','0','0','Belanja Alat Tulis Kantor 3400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.02.','010.003.5.2.2.02.','Belanja Bahan/Material','60475000,00','0','60475000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.02.04.','010.003.5.2.2.02.04.','Belanja Bahan Obat-Obatan','1800000,00','0','1800000,00','0','0','Belanja Bahan Obat-Obatan 1800000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.02.07.','010.003.5.2.2.02.07.','Belanja Alat - Alat/Perlengkapan Kantor/Rumah Tangga/Kerja','24200000,00','0','24200000,00','0','0','Belanja Alat - Alat/Perlengkapan Kantor/Rumah Tangga/Kerja 24200000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.02.08.','010.003.5.2.2.02.08.','Belanja Hadiah/Trophy','34475000,00','0','34475000,00','0','0','Belanja Hadiah/Trophy 34475000. Lokasi Kegiatan Kecamatan Danurejan. OSN 1500000. FLSN 8000000. Etika Budaya 3600000. OOSN 21375000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.03.','010.003.5.2.2.03.','Belanja Jasa Kantor','5800000,00','0','5800000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.03.13.','010.003.5.2.2.03.13.','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film','5800000,00','0','5800000,00','0','0','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film 5800000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.06.','010.003.5.2.2.06.','Belanja Cetak Dan Penggandaan','21270000,00','0','21270000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.06.01.','010.003.5.2.2.06.01.','Belanja Cetak','4177500,00','0','4177500,00','0','0','Belanja Cetak 4177500','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.06.02.','010.003.5.2.2.06.02.','Belanja Penggandaan','16642500,00','0','16642500,00','0','0','Belanja Penggandaan 16642500','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.06.03.','010.003.5.2.2.06.03.','Belanja Cetak Foto','450000,00','0','450000,00','0','0','Belanja Cetak Foto 450000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.07.','010.003.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','60750000,00','0','60750000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.07.02.','010.003.5.2.2.07.02.','Belanja Sewa Gedung/Kantor/Tempat','60750000,00','0','60750000,00','0','0','Belanja Sewa Gedung/Kantor/Tempat 60750000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.10.','010.003.5.2.2.10.','Belanja Sewa Perlengkapan dan Peralatan Kantor','27900000,00','0','27900000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.10.01.','010.003.5.2.2.10.01.','Belanja Sewa Meja Kursi','1200000,00','0','1200000,00','0','0','Belanja Sewa Meja Kursi 1200000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.10.05.','010.003.5.2.2.10.05.','Belanja Sewa Tenda','1800000,00','0','1800000,00','0','0','Belanja Sewa Tenda 1800000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.10.08.','010.003.5.2.2.10.08.','Belanja Sewa Peralatan Olahraga','4800000,00','0','4800000,00','0','0','Belanja Sewa Peralatan Olahraga 4800000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.10.09.','010.003.5.2.2.10.09.','Belanja Sewa Perlengkapan/Peralatan','20100000,00','0','20100000,00','0','0','Belanja Sewa Perlengkapan/Peralatan 20100000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.11.','010.003.5.2.2.11.','Belanja Makanan Dan Minuman','252139000,00','0','252139000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.11.02.','010.003.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','252139000,00','0','252139000,00','0','0','Belanja Makanan Dan Minuman Rapat 252139000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.14.','010.003.5.2.2.14.','Belanja Pakaian Khusus Dan Hari-hari Tertentu','24150000,00','0','24150000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.14.04.','010.003.5.2.2.14.04.','Belanja Pakaian Olahraga','24150000,00','0','24150000,00','0','0','Belanja Pakaian Olahraga 24150000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.15.','010.003.5.2.2.15.','Belanja Perjalanan Dinas','12800000,00','0','12800000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.15.02.','010.003.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','12800000,00','0','12800000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 12800000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.31.','010.003.5.2.2.31.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','460350000,00','0','460350000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.31.01.','010.003.5.2.2.31.01.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','460350000,00','0','460350000,00','0','0','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator 460350000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.32.','010.003.5.2.2.32.','Belanja Uang Untuk Diberikan Kepada Pihak Ketiga/Masyarakat','185700000,00','0','185700000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.010.003.5.2.2.32.02.','010.003.5.2.2.32.02.','Belanja Uang Untuk Diberikan Kepada Masyarakat','185700000,00','0','185700000,00','0','0','Belanja Uang Untuk Diberikan Kepada Masyarakat 185700000. Lokasi Kegiatan Kecamatan Danurejan. Lomba OSN SD 5900000. Lomba OSN SMP 19050000. OOSN SD Indifidu 58800000. OOSN SD Beregu 24000000. OOSN SD Antar UPT 8150000. OOSN SMP Indifidu 34800000. OOSN SMP Beregu 35000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.1.','011.001.5.2.1.','BELANJA PEGAWAI','19320000,00','0','19320000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.1.01.','011.001.5.2.1.01.','Honorarium PNS','19320000,00','0','19320000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.1.01.01.','011.001.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','19320000,00','0','19320000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 19320000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.','011.001.5.2.2.','BELANJA BARANG DAN JASA','324914000,00','0','324914000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.01.','011.001.5.2.2.01.','Belanja Bahan Pakai Habis','450000,00','0','450000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.01.01.','011.001.5.2.2.01.01.','Belanja Alat Tulis Kantor','450000,00','0','450000,00','0','0','Belanja Alat Tulis Kantor 450000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.02.','011.001.5.2.2.02.','Belanja Bahan/Material','19285000,00','0','19285000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.02.04.','011.001.5.2.2.02.04.','Belanja Bahan Obat-Obatan','1000000,00','0','1000000,00','0','0','Belanja Bahan Obat-Obatan 1000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.02.07.','011.001.5.2.2.02.07.','Belanja Alat - Alat/Perlengkapan Kantor/Rumah Tangga/Kerja','3160000,00','0','3160000,00','0','0','Belanja Alat - Alat/Perlengkapan Kantor/Rumah Tangga/Kerja 3160000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.02.08.','011.001.5.2.2.02.08.','Belanja Hadiah/Trophy','15125000,00','0','15125000,00','0','0','Belanja Hadiah/Trophy 15125000. Lokasi Kegiatan Kecamatan Danurejan. Hadiah Lomba Jenjang SD 3500000. Hadiah Lomba Jenjang SMP 3500000. Hadiah Lomba Jenjang SMA/SMK 8125000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.03.','011.001.5.2.2.03.','Belanja Jasa Kantor','3450000,00','0','3450000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.03.13.','011.001.5.2.2.03.13.','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film','3450000,00','0','3450000,00','0','0','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film 3450000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.06.','011.001.5.2.2.06.','Belanja Cetak Dan Penggandaan','4190000,00','0','4190000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.06.01.','011.001.5.2.2.06.01.','Belanja Cetak','2510000,00','0','2510000,00','0','0','Belanja Cetak 2510000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.06.02.','011.001.5.2.2.06.02.','Belanja Penggandaan','1185000,00','0','1185000,00','0','0','Belanja Penggandaan 1185000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.06.03.','011.001.5.2.2.06.03.','Belanja Cetak Foto','495000,00','0','495000,00','0','0','Belanja Cetak Foto 495000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.07.','011.001.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','30300000,00','0','30300000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.07.02.','011.001.5.2.2.07.02.','Belanja Sewa Gedung/Kantor/Tempat','30300000,00','0','30300000,00','0','0','Belanja Sewa Gedung/Kantor/Tempat 30300000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.08.','011.001.5.2.2.08.','Belanja Sewa Sarana Mobilitas','2100000,00','0','2100000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.08.01.','011.001.5.2.2.08.01.','Belanja Sewa Sarana Mobilitas Darat','2100000,00','0','2100000,00','0','0','Belanja Sewa Sarana Mobilitas Darat 2100000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.10.','011.001.5.2.2.10.','Belanja Sewa Perlengkapan dan Peralatan Kantor','10050000,00','0','10050000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.10.01.','011.001.5.2.2.10.01.','Belanja Sewa Meja Kursi','1875000,00','0','1875000,00','0','0','Belanja Sewa Meja Kursi 1875000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.10.05.','011.001.5.2.2.10.05.','Belanja Sewa Tenda','1875000,00','0','1875000,00','0','0','Belanja Sewa Tenda 1875000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.10.08.','011.001.5.2.2.10.08.','Belanja Sewa Peralatan Olahraga','3600000,00','0','3600000,00','0','0','Belanja Sewa Peralatan Olahraga 3600000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.10.09.','011.001.5.2.2.10.09.','Belanja Sewa Perlengkapan/Peralatan','2700000,00','0','2700000,00','0','0','Belanja Sewa Perlengkapan/Peralatan 2700000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.11.','011.001.5.2.2.11.','Belanja Makanan Dan Minuman','38689000,00','0','38689000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.11.02.','011.001.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','38689000,00','0','38689000,00','0','0','Belanja Makanan Dan Minuman Rapat 38689000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.14.','011.001.5.2.2.14.','Belanja Pakaian Khusus Dan Hari-hari Tertentu','42750000,00','0','42750000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.14.03.','011.001.5.2.2.14.03.','Belanja Pakaian Batik Tradisional','9000000,00','0','9000000,00','0','0','Belanja Pakaian Batik Tradisional 9000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.14.04.','011.001.5.2.2.14.04.','Belanja Pakaian Olahraga','33750000,00','0','33750000,00','0','0','Belanja Pakaian Olahraga 33750000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.15.','011.001.5.2.2.15.','Belanja Perjalanan Dinas','13600000,00','0','13600000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.15.02.','011.001.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','13600000,00','0','13600000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 13600000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.31.','011.001.5.2.2.31.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','89550000,00','0','89550000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.31.01.','011.001.5.2.2.31.01.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','89550000,00','0','89550000,00','0','0','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator 89550000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.32.','011.001.5.2.2.32.','Belanja Uang Untuk Diberikan Kepada Pihak Ketiga/Masyarakat','70500000,00','0','70500000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.001.5.2.2.32.02.','011.001.5.2.2.32.02.','Belanja Uang Untuk Diberikan Kepada Masyarakat','70500000,00','0','70500000,00','0','0','Belanja Uang Untuk Diberikan Kepada Masyarakat 70500000 Lokasi Kegiatan Kecamatan Danurejan Lomba MTQ SD, SMP, SMA/SMK 9000000 Lomba Saritilawah SD 3000000 Lomba MHQ SD, SMP, SMA/SMK 9000000 Lomba Tartil SD, SMP, SMA/SMK 9000000 Lomba Pidato SD, SMP, SMA/SMK 9000000 Lomba Lukis SD 3000000 Lomba Adzan SD, SMP, SMA/SMK 4500000 Lomba Kaligrafi, SMP, SMA/SMK 6000000 Lomba Khutbah, SMP, SMA/SMK 3000000 Lomba MSQ, SMP, SMA/SMK 6000000 Lomba CCA SMP, SMA/SMK 6000000 Lomba Nasyid SMA/SMK 3000000','2','2')
INSERT INTO tweb_apbd(`rangkuman`,`berkas_id`,`lembaga_id`, `lembaga_kode`,`pemda_kode`, `wilayah_kode`,`tahun`, `rekening_kode`,`rekening`, `uraian`, `nominal`,`nominal_sebelum`, `nominal_sesudah`, `nominal_perubahan`, `nominal_persen`, `keterangan`, `created_by`, `updated_by`) VALUES
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.1.','011.002.5.2.1.','BELANJA PEGAWAI','78935000,00','0','78935000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.1.01.','011.002.5.2.1.01.','Honorarium PNS','78935000,00','0','78935000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.1.01.01.','011.002.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','78035000,00','0','78035000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 78035000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.1.01.02.','011.002.5.2.1.01.02.','Honorarium Tim Pengadaan Barang dan Jasa','900000,00','0','900000,00','0','0','Honorarium Tim Pengadaan Barang dan Jasa 900000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.','011.002.5.2.2.','BELANJA BARANG DAN JASA','1851510000,00','0','1851510000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.01.','011.002.5.2.2.01.','Belanja Bahan Pakai Habis','6200000,00','0','6200000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.01.01.','011.002.5.2.2.01.01.','Belanja Alat Tulis Kantor','6200000,00','0','6200000,00','0','0','Belanja Alat Tulis Kantor 6200000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.02.','011.002.5.2.2.02.','Belanja Bahan/Material','5000000,00','0','5000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.02.08.','011.002.5.2.2.02.08.','Belanja Hadiah/Trophy','5000000,00','0','5000000,00','0','0','Belanja Hadiah/Trophy 5000000 Lokasi Kegiatan Kecamatan Danurejan Hadiah Kejuaraan OSN 2500000 Hadiah Kejuaraan LKS 1250000 Hadiah Kejuaraan Debat Bahasa Inggris 500000 Hadiah Kejuaraan Debat Bahasa Indonesia 500000 Hadiah Cerdas Cermat UUD 250000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.03.','011.002.5.2.2.03.','Belanja Jasa Kantor','2700000,00','0','2700000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.03.13.','011.002.5.2.2.03.13.','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film','2700000,00','0','2700000,00','0','0','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film 2700000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.06.','011.002.5.2.2.06.','Belanja Cetak Dan Penggandaan','201414000,00','0','201414000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.06.01.','011.002.5.2.2.06.01.','Belanja Cetak','195181500,00','0','195181500,00','0','0','Belanja Cetak 195181500','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.06.02.','011.002.5.2.2.06.02.','Belanja Penggandaan','5625000,00','0','5625000,00','0','0','Belanja Penggandaan 5625000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.06.03.','011.002.5.2.2.06.03.','Belanja Cetak Foto','607500,00','0','607500,00','0','0','Belanja Cetak Foto 607500','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.07.','011.002.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','96650000,00','0','96650000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.07.03.','011.002.5.2.2.07.03.','Belanja Sewa Ruang Rapat/Pertemuan','96650000,00','0','96650000,00','0','0','Belanja Sewa Ruang Rapat/Pertemuan 96650000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.10.','011.002.5.2.2.10.','Belanja Sewa Perlengkapan dan Peralatan Kantor','4950000,00','0','4950000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.10.02.','011.002.5.2.2.10.02.','Belanja Sewa Komputer Dan Printer','4950000,00','0','4950000,00','0','0','Belanja Sewa Komputer Dan Printer 4950000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.11.','011.002.5.2.2.11.','Belanja Makanan Dan Minuman','162596000,00','0','162596000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.11.02.','011.002.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','162596000,00','0','162596000,00','0','0','Belanja Makanan Dan Minuman Rapat 162596000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.15.','011.002.5.2.2.15.','Belanja Perjalanan Dinas','34000000,00','0','34000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.15.02.','011.002.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','34000000,00','0','34000000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 34000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.31.','011.002.5.2.2.31.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','1265150000,00','0','1265150000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.31.01.','011.002.5.2.2.31.01.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','1265150000,00','0','1265150000,00','0','0','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator 1265150000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.32.','011.002.5.2.2.32.','Belanja Uang Untuk Diberikan Kepada Pihak Ketiga/Masyarakat','72850000,00','0','72850000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.002.5.2.2.32.02.','011.002.5.2.2.32.02.','Belanja Uang Untuk Diberikan Kepada Masyarakat','72850000,00','0','72850000,00','0','0','Belanja Uang Untuk Diberikan Kepada Masyarakat 72850000 Lokasi Kegiatan Kecamatan Danurejan Lomba OSN 37500000 Lomba LKS Beregu 15000000 Lomba LKS Perorangan 2200000 Lomba Debat Bahasa Inggris 3750000 Lomba Best Speaker 2200000 Lomba Debat Bahasa Indonesia 3750000 Lomba Pembicara Terbaik 2200000 Lomba Cerdas Cermat UUD 6250000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.1.','011.003.5.2.1.','BELANJA PEGAWAI','2904425000,00','0','2904425000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.1.01.','011.003.5.2.1.01.','Honorarium PNS','133205000,00','0','133205000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.1.01.01.','011.003.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','133205000,00','0','133205000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 133205000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.1.02.','011.003.5.2.1.02.','Honorarium Non PNS','2771220000,00','0','2771220000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.1.02.01.','011.003.5.2.1.02.01.','Honorarium Pegawai Honorer/Tidak Tetap','2771220000,00','0','2771220000,00','0','0','Honorarium Pegawai Honorer/Tidak Tetap 2771220000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.','011.003.5.2.2.','BELANJA BARANG DAN JASA','877992900,00','0','877992900,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.01.','011.003.5.2.2.01.','Belanja Bahan Pakai Habis','10650000,00','0','10650000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.01.01.','011.003.5.2.2.01.01.','Belanja Alat Tulis Kantor','10650000,00','0','10650000,00','0','0','Belanja Alat Tulis Kantor 10650000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.02.','011.003.5.2.2.02.','Belanja Bahan/Material','65500000,00','0','65500000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.02.08.','011.003.5.2.2.02.08.','Belanja Hadiah/Trophy','65500000,00','0','65500000,00','0','0','Belanja Hadiah/Trophy 65500000 Lokasi Kegiatan Kecamatan Danurejan Lomba OSN Guru Tingkat Kota 32500000 Lomba Inovasi Guru 16500000 Lomba Karya Tulis Ilmiah Guru 16500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.03.','011.003.5.2.2.03.','Belanja Jasa Kantor','5850000,00','0','5850000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.03.13.','011.003.5.2.2.03.13.','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film','5850000,00','0','5850000,00','0','0','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film 5850000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.06.','011.003.5.2.2.06.','Belanja Cetak Dan Penggandaan','39174900,00','0','39174900,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.06.01.','011.003.5.2.2.06.01.','Belanja Cetak','9480000,00','0','9480000,00','0','0','Belanja Cetak 9480000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.06.02.','011.003.5.2.2.06.02.','Belanja Penggandaan','29694900,00','0','29694900,00','0','0','Belanja Penggandaan 29694900','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.07.','011.003.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','41500000,00','0','41500000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.07.03.','011.003.5.2.2.07.03.','Belanja Sewa Ruang Rapat/Pertemuan','41500000,00','0','41500000,00','0','0','Belanja Sewa Ruang Rapat/Pertemuan 41500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.10.','011.003.5.2.2.10.','Belanja Sewa Perlengkapan dan Peralatan Kantor','2100000,00','0','2100000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.10.09.','011.003.5.2.2.10.09.','Belanja Sewa Perlengkapan/Peralatan','2100000,00','0','2100000,00','0','0','Belanja Sewa Perlengkapan/Peralatan 2100000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.11.','011.003.5.2.2.11.','Belanja Makanan Dan Minuman','165018000,00','0','165018000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.11.02.','011.003.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','165018000,00','0','165018000,00','0','0','Belanja Makanan Dan Minuman Rapat 165018000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.14.','011.003.5.2.2.14.','Belanja Pakaian Khusus Dan Hari-hari Tertentu','10500000,00','0','10500000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.14.04.','011.003.5.2.2.14.04.','Belanja Pakaian Olahraga','10500000,00','0','10500000,00','0','0','Belanja Pakaian Olahraga 10500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.15.','011.003.5.2.2.15.','Belanja Perjalanan Dinas','13600000,00','0','13600000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.15.02.','011.003.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','13600000,00','0','13600000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 13600000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.31.','011.003.5.2.2.31.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','524100000,00','0','524100000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.003.5.2.2.31.01.','011.003.5.2.2.31.01.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','524100000,00','0','524100000,00','0','0','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator 524100000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.1.','011.004.5.2.1.','BELANJA PEGAWAI','68300000,00','0','68300000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.1.01.','011.004.5.2.1.01.','Honorarium PNS','68300000,00','0','68300000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.1.01.01.','011.004.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','68300000,00','0','68300000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 68300000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.','011.004.5.2.2.','BELANJA BARANG DAN JASA','979804000,00','0','979804000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.01.','011.004.5.2.2.01.','Belanja Bahan Pakai Habis','2480000,00','0','2480000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.01.01.','011.004.5.2.2.01.01.','Belanja Alat Tulis Kantor','2480000,00','0','2480000,00','0','0','Belanja Alat Tulis Kantor 2480000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01011.004.5.2.2.02.','11.004.5.2.2.02.','Belanja Bahan/Material','16480000,00','0','16480000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.02.04.','011.004.5.2.2.02.04.','Belanja Bahan Obat-Obatan','1250000,00','0','1250000,00','0','0','Belanja Bahan Obat-Obatan 1250000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.02.07.','011.004.5.2.2.02.07.','Belanja Alat - Alat/Perlengkapan Kantor/Rumah Tangga/Kerja','2230000,00','0','2230000,00','0','0','Belanja Alat - Alat/Perlengkapan Kantor/Rumah Tangga/Kerja 2230000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.02.08.','011.004.5.2.2.02.08.','Belanja Hadiah/Trophy','13000000,00','0','13000000,00','0','0','Belanja Hadiah/Trophy 13000000 Lokasi Kegiatan Kecamatan Danurejan Lomba FLSSN 5000000 Lomba O2SN SMA 5500000 Lomba O2SN SMK 1250000 Invitasi Sepakbola, Voli, Basket 1250000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.03.','011.004.5.2.2.03.','Belanja Jasa Kantor','4150000,00','0','4150000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.03.13.','011.004.5.2.2.03.13.','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film','4150000,00','0','4150000,00','0','0','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film 4150000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.06.','011.004.5.2.2.06.','Belanja Cetak Dan Penggandaan','23450000,00','0','23450000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.06.01.','011.004.5.2.2.06.01.','Belanja Cetak','1925000,00','0','1925000,00','0','0','Belanja Cetak 1925000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.06.02.','011.004.5.2.2.06.02.','Belanja Penggandaan','21525000,00','0','21525000,00','0','0','Belanja Penggandaan 21525000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.07.','011.004.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','50250000,00','0','50250000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.07.02.','011.004.5.2.2.07.02.','Belanja Sewa Gedung/Kantor/Tempat','29250000,00','0','29250000,00','0','0','Belanja Sewa Gedung/Kantor/Tempat 29250000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.07.03.','011.004.5.2.2.07.03.','Belanja Sewa Ruang Rapat/Pertemuan','21000000,00','0','21000000,00','0','0','Belanja Sewa Ruang Rapat/Pertemuan 21000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.10.','011.004.5.2.2.10.','Belanja Sewa Perlengkapan dan Peralatan Kantor','29680000,00','0','29680000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.10.01.','011.004.5.2.2.10.01.','Belanja Sewa Meja Kursi','4080000,00','0','4080000,00','0','0','Belanja Sewa Meja Kursi 4080000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.10.05.','011.004.5.2.2.10.05.','Belanja Sewa Tenda','600000,00','0','600000,00','0','0','Belanja Sewa Tenda 600000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.10.08.','011.004.5.2.2.10.08.','Belanja Sewa Peralatan Olahraga','2300000,00','0','2300000,00','0','0','Belanja Sewa Peralatan Olahraga 2300000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.10.09.','011.004.5.2.2.10.09.','Belanja Sewa Perlengkapan/Peralatan','22700000,00','0','22700000,00','0','0','Belanja Sewa Perlengkapan/Peralatan 22700000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.11.','011.004.5.2.2.11.','Belanja Makanan Dan Minuman','232498000,00','0','232498000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.11.02.','011.004.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','232498000,00','0','232498000,00','0','0','Belanja Makanan Dan Minuman Rapat 232498000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.15.','011.004.5.2.2.15.','Belanja Perjalanan Dinas','24000000,00','0','24000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.15.02.','011.004.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','24000000,00','0','24000000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 24000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.31.','011.004.5.2.2.31.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','364566000,00','0','364566000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.31.01.','011.004.5.2.2.31.01.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','364566000,00','0','364566000,00','0','0','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator 364566000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.32.','011.004.5.2.2.32.','Belanja Uang Untuk Diberikan Kepada Pihak Ketiga/Masyarakat','232250000,00','0','232250000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.004.5.2.2.32.02.','011.004.5.2.2.32.02.','Belanja Uang Untuk Diberikan Kepada Masyarakat','232250000,00','0','232250000,00','0','0','Belanja Uang Untuk Diberikan Kepada Masyarakat 232250000 Lokasi Kegiatan Kecamatan Danurejan Invitasi Sepakbola SMA/SMK 7750000 Invitasi Bolavoli SMA/SMK 15500000 Invitasi Bosket SMK 15500000 Lomba O2SN SMA 33000000 Lomba O2SN SMK 3000000 Lomba Futsal SMK 4500000 Lomba FLSSN SMA 33000000 Lomba Capaian 8 SNP 120000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.1.','011.005.5.2.1.','BELANJA PEGAWAI','152064000,00','0','152064000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.1.01.','011.005.5.2.1.01.','Honorarium PNS','48500000,00','0','48500000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.1.01.01.','011.005.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','48500000,00','0','48500000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 48500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.1.02.','011.005.5.2.1.02.','Honorarium Non PNS','103564000,00','0','103564000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.1.02.01.','011.005.5.2.1.02.01.','Honorarium Pegawai Honorer/Tidak Tetap','103564000,00','0','103564000,00','0','0','Honorarium Pegawai Honorer/Tidak Tetap 103564000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.2.','011.005.5.2.2.','BELANJA BARANG DAN JASA','120836000,00','0','120836000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.2.01.','011.005.5.2.2.01.','Belanja Bahan Pakai Habis','28922000,00','0','28922000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.2.01.01.','011.005.5.2.2.01.01.','Belanja Alat Tulis Kantor','4570000,00','0','4570000,00','0','0','Belanja Alat Tulis Kantor 4570000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.2.01.03.','011.005.5.2.2.01.03.','Belanja Alat Listrik Dan Elektronik','390000,00','0','390000,00','0','0','Belanja Alat Listrik Dan Elektronik 390000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.2.01.05.','011.005.5.2.2.01.05.','Belanja Peralatan Kebersihan Dan Bahan Pembersih','23637000,00','0','23637000,00','0','0','Belanja Peralatan Kebersihan Dan Bahan Pembersih 23637000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.2.01.06.','011.005.5.2.2.01.06.','Belanja Bahan Bakar Minyak/Gas','325000,00','0','325000,00','0','0','Belanja Bahan Bakar Minyak/Gas 325000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.2.02.','011.005.5.2.2.02.','Belanja Bahan/Material','51520000,00','0','51520000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.2.02.07.','011.005.5.2.2.02.07.','Belanja Alat - Alat/Perlengkapan Kantor/Rumah Tangga/Kerja','51520000,00','0','51520000,00','0','0','Belanja Alat - Alat/Perlengkapan Kantor/Rumah Tangga/Kerja 51520000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.2.03.','011.005.5.2.2.03.','Belanja Jasa Kantor','34800000,00','0','34800000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.2.03.01.','011.005.5.2.2.03.01.','Belanja Telepon','2400000,00','0','2400000,00','0','0','Belanja Telepon 2400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.2.03.03.','011.005.5.2.2.03.03.','Belanja Listrik','30000000,00','0','30000000,00','0','0','Belanja Listrik 30000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.2.03.14.','011.005.5.2.2.03.14.','Belanja Retribusi/Tiket','2400000,00','0','2400000,00','0','0','Belanja Retribusi/Tiket 2400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.2.06.','011.005.5.2.2.06.','Belanja Cetak Dan Penggandaan','1500000,00','0','1500000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.2.06.01.','011.005.5.2.2.06.01.','Belanja Cetak','1500000,00','0','1500000,00','0','0','Belanja Cetak 1500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.2.11.','011.005.5.2.2.11.','Belanja Makanan Dan Minuman','4094000,00','0','4094000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.2.11.03.','011.005.5.2.2.11.03.','Belanja Makanan Dan Minuman Tamu','4094000,00','0','4094000,00','0','0','Belanja Makanan Dan Minuman Tamu 4094000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.3.','011.005.5.2.3.','BELANJA MODAL','227100000,00','0','227100000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.3.11.','011.005.5.2.3.11.','Belanja Modal Pengadaan Perlengkapan Kantor','163800000,00','0','163800000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.3.11.07.','011.005.5.2.3.11.07.','Belanja Modal Pengadaan AC/Kipas Angin','6000000,00','0','6000000,00','0','0','Belanja Modal Pengadaan AC/Kipas Angin 6000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.3.11.11.','011.005.5.2.3.11.11.','Belanja Modal Pengadaan Mesin Pompa Air','3400000,00','0','3400000,00','0','0','Belanja Modal Pengadaan Mesin Pompa Air 3400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.3.11.12.','011.005.5.2.3.11.12.','Belanja Modal Pengadaan Mesin Genzet','150000000,00','0','150000000,00','0','0','Belanja Modal Pengadaan Mesin Genzet 150000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.3.11.17.','011.005.5.2.3.11.17.','Belanja Modal Pengadaan Washtafel','4400000,00','0','4400000,00','0','0','Belanja Modal Pengadaan Washtafel 4400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.3.13.','011.005.5.2.3.13.','Belanja Modal Pengadaan Mebeulair','36000000,00','0','36000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.3.13.07.','011.005.5.2.3.13.07.','Belanja Modal Pengadaan Tempat Tidur','36000000,00','0','36000000,00','0','0','Belanja Modal Pengadaan Tempat Tidur 36000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.3.14.','011.005.5.2.3.14.','Belanja Modal Pengadaan Peralatan Dapur','7300000,00','0','7300000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.3.14.01.','011.005.5.2.3.14.01.','Belanja Modal Pengadaan Tabung Gas','350000,00','0','350000,00','0','0','Belanja Modal Pengadaan Tabung Gas 350000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.3.14.02.','011.005.5.2.3.14.02.','Belanja Modal Pengadaan Kompor Gas','700000,00','0','700000,00','0','0','Belanja Modal Pengadaan Kompor Gas 700000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.3.14.05.','011.005.5.2.3.14.05.','Belanja Modal Pengadaan Kulkas','6250000,00','0','6250000,00','0','0','Belanja Modal Pengadaan Kulkas 6250000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.3.15.','011.005.5.2.3.15.','Belanja Modal Pengadaan Penghias Ruangan Rumah Tangga','20000000,00','0','20000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.005.5.2.3.15.03.','011.005.5.2.3.15.03.','Belanja Modal Pengadaan Gorden','20000000,00','0','20000000,00','0','0','Belanja Modal Pengadaan Gorden 20000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.1.','011.006.5.2.1.','BELANJA PEGAWAI','269170000,00','0','269170000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.1.01.','011.006.5.2.1.01.','Honorarium PNS','53900000,00','0','53900000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.1.01.01.','011.006.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','53900000,00','0','53900000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 53900000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.1.02.','011.006.5.2.1.02.','Honorarium Non PNS','215270000,00','0','215270000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.1.02.01.','011.006.5.2.1.02.01.','Honorarium Pegawai Honorer/Tidak Tetap','215270000,00','0','215270000,00','0','0','Honorarium Pegawai Honorer/Tidak Tetap 215270000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.','011.006.5.2.2.','BELANJA BARANG DAN JASA','699035000,00','0','699035000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.01.','011.006.5.2.2.01.','Belanja Bahan Pakai Habis','54091100,00','0','54091100,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.01.01.','011.006.5.2.2.01.01.','Belanja Alat Tulis Kantor','11364700,00','0','11364700,00','0','0','Belanja Alat Tulis Kantor 11364700','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.01.05.','011.006.5.2.2.01.05.','Belanja Peralatan Kebersihan Dan Bahan Pembersih','41056400,00','0','41056400,00','0','0','Belanja Peralatan Kebersihan Dan Bahan Pembersih 41056400','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.01.06.','011.006.5.2.2.01.06.','Belanja Bahan Bakar Minyak/Gas','1670000,00','0','1670000,00','0','0','Belanja Bahan Bakar Minyak/Gas 1670000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.02.','011.006.5.2.2.02.','Belanja Bahan/Material','4360000,00','0','4360000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.02.04.','011.006.5.2.2.02.04.','Belanja Bahan Obat-Obatan','200000,00','0','200000,00','0','0','Belanja Bahan Obat-Obatan 200000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.02.07.','011.006.5.2.2.02.07.','Belanja Alat - Alat/Perlengkapan Kantor/Rumah Tangga/Kerja','4160000,00','0','4160000,00','0','0','Belanja Alat - Alat/Perlengkapan Kantor/Rumah Tangga/Kerja 4160000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.03.','011.006.5.2.2.03.','Belanja Jasa Kantor','271620000,00','0','271620000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.03.01.','011.006.5.2.2.03.01.','Belanja Telepon','8400000,00','0','8400000,00','0','0','Belanja Telepon 8400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.03.03.','011.006.5.2.2.03.03.','Belanja Listrik','96000000,00','0','96000000,00','0','0','Belanja Listrik 96000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.03.05.','011.006.5.2.2.03.05.','Belanja Surat Kabar/Majalah','660000,00','0','660000,00','0','0','Belanja Surat Kabar/Majalah 660000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.03.06.','011.006.5.2.2.03.06.','Belanja Kawat/Faxsimili/Internet','23400000,00','0','23400000,00','0','0','Belanja Kawat/Faxsimili/Internet 23400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.03.08.','011.006.5.2.2.03.08.','Belanja Sertifikasi','5500000,00','0','5500000,00','0','0','Belanja Sertifikasi 5500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.03.11.','011.006.5.2.2.03.11.','Belanja Jasa Media Massa','1000000,00','0','1000000,00','0','0','Belanja Jasa Media Massa 1000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.03.14.','011.006.5.2.2.03.14.','Belanja Retribusi/Tiket','126660000,00','0','126660000,00','0','0','Belanja Retribusi/Tiket 126660000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.03.22.','011.006.5.2.2.03.22.','Belanja PBB','10000000,00','0','10000000,00','0','0','Belanja PBB 10000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.06.','011.006.5.2.2.06.','Belanja Cetak Dan Penggandaan','9125000,00','0','9125000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.06.01.','011.006.5.2.2.06.01.','Belanja Cetak','7775000,00','0','7775000,00','0','0','Belanja Cetak 7775000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.06.02.','011.006.5.2.2.06.02.','Belanja Penggandaan','1350000,00','0','1350000,00','0','0','Belanja Penggandaan 1350000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.07.','011.006.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','60000000,00','0','60000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.07.02.','011.006.5.2.2.07.02.','Belanja Sewa Gedung/Kantor/Tempat','60000000,00','0','60000000,00','0','0','Belanja Sewa Gedung/Kantor/Tempat 60000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.10.','011.006.5.2.2.10.','Belanja Sewa Perlengkapan dan Peralatan Kantor','6500000,00','0','6500000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.10.11.','011.006.5.2.2.10.11.','Belanja Sewa Koneksi Jaringan/TV Kabel','6500000,00','0','6500000,00','0','0','Belanja Sewa Koneksi Jaringan/TV Kabel 6500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.11.','011.006.5.2.2.11.','Belanja Makanan Dan Minuman','173916000,00','0','173916000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.11.03.','011.006.5.2.2.11.03.','Belanja Makanan Dan Minuman Tamu','173916000,00','0','173916000,00','0','0','Belanja Makanan Dan Minuman Tamu 173916000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.20.','011.006.5.2.2.20.','Belanja Pemeliharaan','119422900,00','0','119422900,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.20.03.','011.006.5.2.2.20.03.','Belanja Pemeliharaan Bangunan Pemerintah','80000000,00','0','80000000,00','0','0','Belanja Pemeliharaan Bangunan Pemerintah 80000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.2.20.04.','011.006.5.2.2.20.04.','Belanja Pemeliharaan Peralatan Dan Perlengkapan Kantor/Kerja/Kerumahtanggaan/Komunikasi/Studio','39422900,00','0','39422900,00','0','0','Belanja Pemeliharaan Peralatan Dan Perlengkapan Kantor/Kerja/Kerumahtanggaan/Komunikasi/Studio 39422900','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.3.','011.006.5.2.3.','BELANJA MODAL','31795000,00','0','31795000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.3.10.','011.006.5.2.3.10.','Belanja Modal Pengadaan Peralatan Kantor','1125000,00','0','1125000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.3.10.13.','011.006.5.2.3.10.13.','Belanja Modal Papan Informasi','1125000,00','0','1125000,00','0','0','Belanja Modal Papan Informasi 1125000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.3.12.','011.006.5.2.3.12.','Belanja Modal Pengadaan Komputer','15000000,00','0','15000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.3.12.11.','011.006.5.2.3.12.11.','Belanja Modal Pengadaan Software/Lisensi','15000000,00','0','15000000,00','0','0','Belanja Modal Pengadaan Software/Lisensi 15000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.3.13.','011.006.5.2.3.13.','Belanja Modal Pengadaan Mebeulair','11120000,00','0','11120000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.3.13.01.','011.006.5.2.3.13.01.','Belanja Modal Pengadaan Meja Kerja','6698000,00','0','6698000,00','0','0','Belanja Modal Pengadaan Meja Kerja 6698000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.3.13.04.','011.006.5.2.3.13.04.','Belanja Modal Pengadaan Kursi Kerja','4422000,00','0','4422000,00','0','0','Belanja Modal Pengadaan Kursi Kerja 4422000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.3.16.','011.006.5.2.3.16.','Belanja Modal Pengadaan Alat – Alat Studio','4550000,00','0','4550000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.011.006.5.2.3.16.04.','011.006.5.2.3.16.04.','Belanja Modal Pengadaan LCD','4550000,00','0','4550000,00','0','0','Belanja Modal Pengadaan LCD 4550000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.1.','012.001.5.2.1.','BELANJA PEGAWAI','151795000,00','0','151795000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.1.01.','012.001.5.2.1.01.','Honorarium PNS','151795000,00','0','151795000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.1.01.01.','012.001.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','151170000,00','0','151170000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 151170000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.1.01.02.','012.001.5.2.1.01.02.','Honorarium Tim Pengadaan Barang dan Jasa','625000,00','0','625000,00','0','0','Honorarium Tim Pengadaan Barang dan Jasa 625000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.','012.001.5.2.2.','BELANJA BARANG DAN JASA','1761276700,00','0','1761276700,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.01.','012.001.5.2.2.01.','Belanja Bahan Pakai Habis','7100000,00','0','7100000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.01.01.','012.001.5.2.2.01.01.','Belanja Alat Tulis Kantor','7100000,00','0','7100000,00','0','0','Belanja Alat Tulis Kantor 7100000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.02.','012.001.5.2.2.02.','Belanja Bahan/Material','101200000,00','0','101200000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.02.08.','012.001.5.2.2.02.08.','Belanja Hadiah/Trophy','1200000,00','0','1200000,00','0','0','Belanja Hadiah/Trophy 1200000 Lokasi Kegiatan Kecamatan Danurejan Lomba Gugus PAUD 200000 Lomba PAUD Berprestasi 200000 Lomba Kreatifitas Pendidik dan Pengelola PAUD 800000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.02.10.','012.001.5.2.2.02.10.','Belanja Alat Peraga','100000000,00','0','100000000,00','0','0','Belanja Alat Peraga 100000000 Alat peraga workshop Peningkatan Kapasitas Lembaga PAUD 100000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.03.','012.001.5.2.2.03.','Belanja Jasa Kantor','4875000,00','0','4875000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.03.13.','012.001.5.2.2.03.13.','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film','4875000,00','0','4875000,00','0','0','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film 4875000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.06.','012.001.5.2.2.06.','Belanja Cetak Dan Penggandaan','51374200,00','0','51374200,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.06.01.','012.001.5.2.2.06.01.','Belanja Cetak','32950000,00','0','32950000,00','0','0','Belanja Cetak 32950000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.06.02.','012.001.5.2.2.06.02.','Belanja Penggandaan','17389200,00','0','17389200,00','0','0','Belanja Penggandaan 17389200','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.06.03.','012.001.5.2.2.06.03.','Belanja Cetak Foto','1035000,00','0','1035000,00','0','0','Belanja Cetak Foto 1035000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.07.','012.001.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','18500000,00','0','18500000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.07.02.','012.001.5.2.2.07.02.','Belanja Sewa Gedung/Kantor/Tempat','1500000,00','0','1500000,00','0','0','Belanja Sewa Gedung/Kantor/Tempat 1500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.07.03.','012.001.5.2.2.07.03.','Belanja Sewa Ruang Rapat/Pertemuan','17000000,00','0','17000000,00','0','0','Belanja Sewa Ruang Rapat/Pertemuan 17000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.10.','012.001.5.2.2.10.','Belanja Sewa Perlengkapan dan Peralatan Kantor','31887500,00','0','31887500,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.10.01.','012.001.5.2.2.10.01.','Belanja Sewa Meja Kursi','587500,00','0','587500,00','0','0','Belanja Sewa Meja Kursi 587500','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.10.09.','012.001.5.2.2.10.09.','Belanja Sewa Perlengkapan/Peralatan','31300000,00','0','31300000,00','0','0','Belanja Sewa Perlengkapan/Peralatan 31300000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.11.','012.001.5.2.2.11.','Belanja Makanan Dan Minuman','179890000,00','0','179890000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.11.02.','012.001.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','179890000,00','0','179890000,00','0','0','Belanja Makanan Dan Minuman Rapat 179890000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.15.','012.001.5.2.2.15.','Belanja Perjalanan Dinas','95200000,00','0','95200000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.15.01.','012.001.5.2.2.15.01.','Belanja Perjalanan Dinas Dalam Daerah','81600000,00','0','81600000,00','0','0','Belanja Perjalanan Dinas Dalam Daerah 81600000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.15.02.','012.001.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','13600000,00','0','13600000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 13600000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.31.','012.001.5.2.2.31.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','1224750000,00','0','1224750000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.31.01.','012.001.5.2.2.31.01.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','1224750000,00','0','1224750000,00','0','0','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator 1224750000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.001.5.2.2.32.','012.001.5.2.2.32.','Belanja Uang Untuk Diberikan Kepada Pihak Ketiga/Masyarakat','46500000,00','0','46500000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.01.001.5.2.2.32.02.','01.001.5.2.2.32.02.','Belanja Uang Untuk Diberikan Kepada Masyarakat','46500000,00','0','46500000,00','0','0','Belanja Uang Untuk Diberikan Kepada Masyarakat 46500000 Lokasi Kegiatan Kecamatan Danurejan Lomba Gugus PAUD 12000000 Lomba PAUD Berprestasi 22500000 Lomba Kreatifitas Pendidik dan Pengelola PAUD 12000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.1.','012.002.5.2.1.','BELANJA PEGAWAI','135740000,00','0','135740000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.1.01.','012.002.5.2.1.01.','Honorarium PNS','135740000,00','0','135740000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.1.01.01.','012.002.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','135740000,00','0','135740000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 135740000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.','012.002.5.2.2.','BELANJA BARANG DAN JASA','379017000,00','0','379017000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.03.','012.002.5.2.2.03.','Belanja Jasa Kantor','1500000,00','0','1500000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.03.13.','012.002.5.2.2.03.13.','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film','1500000,00','0','1500000,00','0','0','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film 1500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.06.','012.002.5.2.2.06.','Belanja Cetak Dan Penggandaan','20330000,00','0','20330000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.06.02.','012.002.5.2.2.06.02.','Belanja Penggandaan','20330000,00','0','20330000,00','0','0','Belanja Penggandaan 20330000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.07.','012.002.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','6200000,00','0','6200000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.07.03.','012.002.5.2.2.07.03.','Belanja Sewa Ruang Rapat/Pertemuan','6200000,00','0','6200000,00','0','0','Belanja Sewa Ruang Rapat/Pertemuan 6200000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.10.','012.002.5.2.2.10.','Belanja Sewa Perlengkapan dan Peralatan Kantor','3140000,00','0','3140000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.10.01.','012.002.5.2.2.10.01.','Belanja Sewa Meja Kursi','220000,00','0','220000,00','0','0','Belanja Sewa Meja Kursi 220000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.10.05.','012.002.5.2.2.10.05.','Belanja Sewa Tenda','1200000,00','0','1200000,00','0','0','Belanja Sewa Tenda 1200000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.10.06.','012.002.5.2.2.10.06.','Belanja Sewa Pakaian Adat/Tradisional','400000,00','0','400000,00','0','0','Belanja Sewa Pakaian Adat/Tradisional 400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.10.09.','012.002.5.2.2.10.09.','Belanja Sewa Perlengkapan/Peralatan','1320000,00','0','1320000,00','0','0','Belanja Sewa Perlengkapan/Peralatan 1320000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.11.','012.002.5.2.2.11.','Belanja Makanan Dan Minuman','125147000,00','0','125147000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.11.02.','012.002.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','125147000,00','0','125147000,00','0','0','Belanja Makanan Dan Minuman Rapat 125147000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.15.','012.002.5.2.2.15.','Belanja Perjalanan Dinas','49600000,00','0','49600000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.15.01.','012.002.5.2.2.15.01.','Belanja Perjalanan Dinas Dalam Daerah','36000000,00','0','36000000,00','0','0','Belanja Perjalanan Dinas Dalam Daerah 36000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.15.02.','012.002.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','13600000,00','0','13600000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 13600000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.31.','012.002.5.2.2.31.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','93350000,00','0','93350000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.31.01.','012.002.5.2.2.31.01.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','93350000,00','0','93350000,00','0','0','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator 93350000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.32.','012.002.5.2.2.32.','Belanja Uang Untuk Diberikan Kepada Pihak Ketiga/Masyarakat','79750000,00','0','79750000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.002.5.2.2.32.02.','012.002.5.2.2.32.02.','Belanja Uang Untuk Diberikan Kepada Masyarakat','79750000,00','0','79750000,00','0','0','Belanja Uang Untuk Diberikan Kepada Masyarakat 79750000 Lokasi Kegiatan Kecamatan Danurejan Lomba Apresiasi PAUD 64750000 Lomba JBM Tingkat Kota 15000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.1.','012.003.5.2.1.','BELANJA PEGAWAI','17140000,00','0','17140000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.1.01.','012.003.5.2.1.01.','Honorarium PNS','17140000,00','0','17140000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.1.01.01.','012.003.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','17140000,00','0','17140000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 17140000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.','012.003.5.2.2.','BELANJA BARANG DAN JASA','476675300,00','0','476675300,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.01.','012.003.5.2.2.01.','Belanja Bahan Pakai Habis','4363500,00','0','4363500,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.01.01.','012.003.5.2.2.01.01.','Belanja Alat Tulis Kantor','4363500,00','0','4363500,00','0','0','Belanja Alat Tulis Kantor 4363500','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.02.','012.003.5.2.2.02.','Belanja Bahan/Material','43550000,00','0','43550000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.02.06.','012.003.5.2.2.02.06.','Belanja Bahan Komputer/Printer','1910000,00','0','1910000,00','0','0','Belanja Bahan Komputer/Printer 1910000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.02.07.','012.003.5.2.2.02.07.','Belanja Alat - Alat/Perlengkapan Kantor/Rumah Tangga/Kerja','13300000,00','0','13300000,00','0','0','Belanja Alat - Alat/Perlengkapan Kantor/Rumah Tangga/Kerja 13300000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.02.08.','012.003.5.2.2.02.08.','Belanja Hadiah/Trophy','5720000,00','0','5720000,00','0','0','Belanja Hadiah/Trophy 5720000 Lokasi Kegiatan Kecamatan Gondokusuman Lomba Senam Anak Usia Dini 4820000 Lomba Senam Line Dance 900000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.02.09.','012.003.5.2.2.02.09.','Belanja Bahan Percontohan','22620000,00','0','22620000,00','0','0','Belanja Bahan Percontohan 22620000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.03.','012.003.5.2.2.03.','Belanja Jasa Kantor','1800000,00','0','1800000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.03.13.','012.003.5.2.2.03.13.','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film','1800000,00','0','1800000,00','0','0','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film 1800000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.06.','012.003.5.2.2.06.','Belanja Cetak Dan Penggandaan','7147500,00','0','7147500,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.06.02.','012.003.5.2.2.06.02.','Belanja Penggandaan','6787500,00','0','6787500,00','0','0','Belanja Penggandaan 6787500','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.06.03.','012.003.5.2.2.06.03.','Belanja Cetak Foto','360000,00','0','360000,00','0','0','Belanja Cetak Foto 360000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.07.','012.003.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','1000000,00','0','1000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.07.02.','012.003.5.2.2.07.02.','Belanja Sewa Gedung/Kantor/Tempat','1000000,00','0','1000000,00','0','0','Belanja Sewa Gedung/Kantor/Tempat 1000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.10.','012.003.5.2.2.10.','Belanja Sewa Perlengkapan dan Peralatan Kantor','2633500,00','0','2633500,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.10.01.','012.003.5.2.2.10.01.','Belanja Sewa Meja Kursi','833500,00','0','833500,00','0','0','Belanja Sewa Meja Kursi 833500','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.10.05.','012.003.5.2.2.10.05.','Belanja Sewa Tenda','600000,00','0','600000,00','0','0','Belanja Sewa Tenda 600000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.10.09.','012.003.5.2.2.10.09.','Belanja Sewa Perlengkapan/Peralatan','1200000,00','0','1200000,00','0','0','Belanja Sewa Perlengkapan/Peralatan 1200000','2','2')
INSERT INTO tweb_apbd(`rangkuman`,`berkas_id`,`lembaga_id`, `lembaga_kode`,`pemda_kode`, `wilayah_kode`,`tahun`, `rekening_kode`,`rekening`, `uraian`, `nominal`,`nominal_sebelum`, `nominal_sesudah`, `nominal_perubahan`, `nominal_persen`, `keterangan`, `created_by`, `updated_by`) VALUES
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.11.','012.003.5.2.2.11.','Belanja Makanan Dan Minuman','44338000,00','0','44338000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.11.02.','012.003.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','44338000,00','0','44338000,00','0','0','Belanja Makanan Dan Minuman Rapat 44338000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.14.','012.003.5.2.2.14.','Belanja Pakaian Khusus Dan Hari-hari Tertentu','7380000,00','0','7380000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.14.02.','012.003.5.2.2.14.02.','Belanja Pakaian Adat Daerah','1500000,00','0','1500000,00','0','0','Belanja Pakaian Adat Daerah 1500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.14.04.','012.003.5.2.2.14.04.','Belanja Pakaian Olahraga','5880000,00','0','5880000,00','0','0','Belanja Pakaian Olahraga 5880000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.15.','012.003.5.2.2.15.','Belanja Perjalanan Dinas','35216000,00','0','35216000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.15.01.','012.003.5.2.2.15.01.','Belanja Perjalanan Dinas Dalam Daerah','31456000,00','0','31456000,00','0','0','Belanja Perjalanan Dinas Dalam Daerah 31456000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.15.02.','012.003.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','3760000,00','0','3760000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 3760000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.27.','012.003.5.2.2.27.','Belanja Kursus,Pelatihan, Sosialisai dan Bimbingan Teknis Non PNS','7500000,00','0','7500000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.27.01.','012.003.5.2.2.27.01.','Belanja Kursus - kursus Singkat/Pelatihan','7500000,00','0','7500000,00','0','0','Belanja Kursus - kursus Singkat/Pelatihan 7500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.31.','012.003.5.2.2.31.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','315746800,00','0','315746800,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.31.01.','012.003.5.2.2.31.01.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','315746800,00','0','315746800,00','0','0','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator 315746800','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.32.','012.003.5.2.2.32.','Belanja Uang Untuk Diberikan Kepada Pihak Ketiga/Masyarakat','6000000,00','0','6000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.2.32.02.','012.003.5.2.2.32.02.','Belanja Uang Untuk Diberikan Kepada Masyarakat','6000000,00','0','6000000,00','0','0','Belanja Uang Untuk Diberikan Kepada Masyarakat 6000000 Lokasi Kegiatan Kecamatan Gondokusuman Lomba Senam Anak Usia Dini 3000000 Lomba Senam Line Dance 3000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.3.','012.003.5.2.3.','BELANJA MODAL','21340000,00','0','21340000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.3.11.','012.003.5.2.3.11.','Belanja Modal Pengadaan Perlengkapan Kantor','18700000,00','0','18700000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.3.11.02.','012.003.5.2.3.11.02.','Belanja Modal Pengadaan Almari','18700000,00','0','18700000,00','0','0','Belanja Modal Pengadaan Almari 18700000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.3.13.','012.003.5.2.3.13.','Belanja Modal Pengadaan Mebeulair','2640000,00','0','2640000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.012.003.5.2.3.13.10.','012.003.5.2.3.13.10.','Belanja Modal Pengadaan Mebelair Ruang Kelas','2640000,00','0','2640000,00','0','0','Belanja Modal Pengadaan Mebelair Ruang Kelas 2640000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.1.','013.001.5.2.1.','BELANJA PEGAWAI','219900000,00','0','219900000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.1.01.','013.001.5.2.1.01.','Honorarium PNS','219900000,00','0','219900000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.1.01.01.','013.001.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','219900000,00','0','219900000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 219900000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.','013.001.5.2.2.','BELANJA BARANG DAN JASA','35362078750,00','0','35362078750,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.06.','013.001.5.2.2.06.','Belanja Cetak Dan Penggandaan','23743750,00','0','23743750,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.06.01.','013.001.5.2.2.06.01.','Belanja Cetak','17500000,00','0','17500000,00','0','0','Belanja Cetak 17500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.06.02.','013.001.5.2.2.06.02.','Belanja Penggandaan','6243750,00','0','6243750,00','0','0','Belanja Penggandaan 6243750','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.07.','013.001.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','21200000,00','0','21200000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.07.03.','013.001.5.2.2.07.03.','Belanja Sewa Ruang Rapat/Pertemuan','21200000,00','0','21200000,00','0','0','Belanja Sewa Ruang Rapat/Pertemuan 21200000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.10.','013.001.5.2.2.10.','Belanja Sewa Perlengkapan dan Peralatan Kantor','79900000,00','0','79900000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.10.01.','013.001.5.2.2.10.01.','Belanja Sewa Meja Kursi','54700000,00','0','54700000,00','0','0','Belanja Sewa Meja Kursi 54700000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.10.09.','013.001.5.2.2.10.09.','Belanja Sewa Perlengkapan/Peralatan','25200000,00','0','25200000,00','0','0','Belanja Sewa Perlengkapan/Peralatan 25200000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.11.','013.001.5.2.2.11.','Belanja Makanan Dan Minuman','395185000,00','0','395185000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.11.02.','013.001.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','395185000,00','0','395185000,00','0','0','Belanja Makanan Dan Minuman Rapat 395185000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.15.','013.001.5.2.2.15.','Belanja Perjalanan Dinas','70800000,00','0','70800000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.15.01.','013.001.5.2.2.15.01.','Belanja Perjalanan Dinas Dalam Daerah','50400000,00','0','50400000,00','0','0','Belanja Perjalanan Dinas Dalam Daerah 50400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.15.02.','013.001.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','20400000,00','0','20400000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 20400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.28.','013.001.5.2.2.28.','Belanja Pelaksanaan Kegatan Belajar Mengajar (KBM)','33981800000,00','0','33981800000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.28.03.','013.001.5.2.2.28.03.','Belanja Jaminan Pendidikan Daerah','33981800000,00','0','33981800000,00','0','0','Belanja Jaminan Pendidikan Daerah 33981800000 Lokasi Kegiatan Kecamatan Danurejan JPD Sekolah Negeri dan Swasta 30546800000 Beasiswa Prestasi KMS dan Non KMS 1215000000 Beasiswa Mahasiswa KMS 270000000 Tunggaan KMS 1500000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.31.','013.001.5.2.2.31.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','789450000,00','0','789450000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.001.5.2.2.31.01.','013.001.5.2.2.31.01.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','789450000,00','0','789450000,00','0','0','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator 789450000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.1.','013.002.5.2.1.','BELANJA PEGAWAI','22683911250,00','0','22683911250,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.1.01.','013.002.5.2.1.01.','Honorarium PNS','305485000,00','0','305485000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.1.01.01.','013.002.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','305485000,00','0','305485000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 305485000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.1.04.','013.002.5.2.1.04.','Honorarium Pengelola Dana BOS','20434275000,00','0','20434275000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.1.04.01.','013.002.5.2.1.04.01.','Honorarium Pengelolaan Dana BOS','20434275000,00','0','20434275000,00','0','0','Honorarium Pengelolaan Dana BOS 20434275000 Lokasi Kegiatan Kecamatan Danurejan TK Negeri 63000000 SD Negeri 5620275000 SMP Negeri 3294000000 SMA Negeri 5472000000 SMK Negeri 5985000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.1.08.','013.002.5.2.1.08.','Honorarium Pelaksanaan Kegiatan Belajar Mengajar (kbm)','1944151250,00','0','1944151250,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.1.08.01.','013.002.5.2.1.08.01.','Honorarium Pengelola Ujian Akhir Nasional (UAN) /Ujian Akhir Sekolah (UAS)','1944151250,00','0','1944151250,00','0','0','Honorarium Pengelola Ujian Akhir Nasional (UAN) /Ujian Akhir Sekolah (UAS) 1944151250','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.2.','013.002.5.2.2.','BELANJA BARANG DAN JASA','50217645800,00','0','50217645800,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.2.03.','013.002.5.2.2.03.','Belanja Jasa Kantor','10000000,00','0','10000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.2.03.11.','013.002.5.2.2.03.11.','Belanja Jasa Media Massa','10000000,00','0','10000000,00','0','0','Belanja Jasa Media Massa 10000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.2.06.','013.002.5.2.2.06.','Belanja Cetak Dan Penggandaan','21030000,00','0','21030000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.2.06.02.','013.002.5.2.2.06.02.','Belanja Penggandaan','21030000,00','0','21030000,00','0','0','Belanja Penggandaan 21030000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.2.07.','013.002.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','6400000,00','0','6400000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.2.07.03.','013.002.5.2.2.07.03.','Belanja Sewa Ruang Rapat/Pertemuan','6400000,00','0','6400000,00','0','0','Belanja Sewa Ruang Rapat/Pertemuan 6400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.2.10.','013.002.5.2.2.10.','Belanja Sewa Perlengkapan dan Peralatan Kantor','4000000,00','0','4000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.2.10.09.','013.002.5.2.2.10.09.','Belanja Sewa Perlengkapan/Peralatan','4000000,00','0','4000000,00','0','0','Belanja Sewa Perlengkapan/Peralatan 4000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.2.11.','013.002.5.2.2.11.','Belanja Makanan Dan Minuman','254254000,00','0','254254000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.2.11.02.','013.002.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','254254000,00','0','254254000,00','0','0','Belanja Makanan Dan Minuman Rapat 254254000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.2.15.','013.002.5.2.2.15.','Belanja Perjalanan Dinas','27200000,00','0','27200000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.2.15.02.','013.002.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','27200000,00','0','27200000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 27200000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.2.22.','013.002.5.2.2.22.','Belanja Barang Dana BOS','47679975000,00','0','47679975000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.2.22.01.','013.002.5.2.2.22.01.','Belanja Barang Dana BOS','47679975000,00','0','47679975000,00','0','0','Belanja Barang Dana BOS 47679975000 Lokasi Kegiatan Kecamatan Danurejan TK Negeri 147000000 SD Negeri 13113975000 SMP Negeri 7686000000 SMA Negeri 12768000000 SMK Negeri 13965000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.013.002.5.2.2.28.','013.002.5.2.2.28.','Belanja Pelaksanaan Kegatan Belajar Mengajar (KBM)','1849370000,00','0','1849370000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.002.5.2.2.06.','014.002.5.2.2.06.','Belanja Cetak Dan Penggandaan','11250000,00','0','11250000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.002.5.2.2.06.02.','014.002.5.2.2.06.02.','Belanja Penggandaan','11250000,00','0','11250000,00','0','0','Belanja Penggandaan 11250000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.002.5.2.2.07.','014.002.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','1000000,00','0','1000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.002.5.2.2.07.03.','014.002.5.2.2.07.03.','Belanja Sewa Ruang Rapat/Pertemuan','1000000,00','0','1000000,00','0','0','Belanja Sewa Ruang Rapat/Pertemuan 1000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.002.5.2.2.10.','014.002.5.2.2.10.','Belanja Sewa Perlengkapan dan Peralatan Kantor','333620000,00','0','333620000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.002.5.2.2.10.04.','014.002.5.2.2.10.04.','Belanja Sewa Generator','8000000,00','0','8000000,00','0','0','Belanja Sewa Generator 8000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.002.5.2.2.10.05.','014.002.5.2.2.10.05.','Belanja Sewa Tenda','10800000,00','0','10800000,00','0','0','Belanja Sewa Tenda 10800000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.002.5.2.2.10.10.','014.002.5.2.2.10.10.','Belanja Sewa Software','300020000,00','0','300020000,00','0','0','Belanja Sewa Software 300020000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.002.5.2.2.10.11.','014.002.5.2.2.10.11.','Belanja Sewa Koneksi Jaringan/TV Kabel','14800000,00','0','14800000,00','0','0','Belanja Sewa Koneksi Jaringan/TV Kabel 14800000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.002.5.2.2.11.','014.002.5.2.2.11.','Belanja Makanan Dan Minuman','74440000,00','0','74440000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.002.5.2.2.11.02.','014.002.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','74440000,00','0','74440000,00','0','0','Belanja Makanan Dan Minuman Rapat 74440000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.002.5.2.2.15.','014.002.5.2.2.15.','Belanja Perjalanan Dinas','20400000,00','0','20400000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.002.5.2.2.15.02.','014.002.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','20400000,00','0','20400000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 20400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.002.5.2.2.31.','014.002.5.2.2.31.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','121830000,00','0','121830000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.002.5.2.2.31.01.','014.002.5.2.2.31.01.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','121830000,00','0','121830000,00','0','0','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator 121830000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.1.','014.003.5.2.1.','BELANJA PEGAWAI','335425000,00','0','335425000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.1.01.','014.003.5.2.1.01.','Honorarium PNS','335425000,00','0','335425000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.1.01.01.','014.003.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','335425000,00','0','335425000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 335425000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.','014.003.5.2.2.','BELANJA BARANG DAN JASA','761975000,00','0','761975000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.02.','014.003.5.2.2.02.','Belanja Bahan/Material','43270000,00','0','43270000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.02.07.','014.003.5.2.2.02.07.','Belanja Alat - Alat/Perlengkapan Kantor/Rumah Tangga/Kerja','3520000,00','0','3520000,00','0','0','Belanja Alat - Alat/Perlengkapan Kantor/Rumah Tangga/Kerja 3520000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.02.08.','014.003.5.2.2.02.08.','Belanja Hadiah/Trophy','39750000,00','0','39750000,00','0','0','Belanja Hadiah/Trophy 39750000 Tropy Guru dan Kepala Sekolah Berprestasi TK, SD, SMP, SMA, SMK 2250000 Lomba Guru Berprestasi TK, SD, SMP, SMA, SMK 18750000 Lomba Kepala Sekolah Berprestasi TK, SD, SMP, SMA, SMK 18750000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.03.','014.003.5.2.2.03.','Belanja Jasa Kantor','75000,00','0','75000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.03.13.','014.003.5.2.2.03.13.','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film','75000,00','0','75000,00','0','0','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film 75000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.06.','014.003.5.2.2.06.','Belanja Cetak Dan Penggandaan','15805000,00','0','15805000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.06.02.','014.003.5.2.2.06.02.','Belanja Penggandaan','15775000,00','0','15775000,00','0','0','Belanja Penggandaan 15775000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.06.03.','014.003.5.2.2.06.03.','Belanja Cetak Foto','30000,00','0','30000,00','0','0','Belanja Cetak Foto 30000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.07.','014.003.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','39280000,00','0','39280000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.07.02.','014.003.5.2.2.07.02.','Belanja Sewa Gedung/Kantor/Tempat','7480000,00','0','7480000,00','0','0','Belanja Sewa Gedung/Kantor/Tempat 7480000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.07.03.','014.003.5.2.2.07.03.','Belanja Sewa Ruang Rapat/Pertemuan','31800000,00','0','31800000,00','0','0','Belanja Sewa Ruang Rapat/Pertemuan 31800000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.10.','014.003.5.2.2.10.','Belanja Sewa Perlengkapan dan Peralatan Kantor','25860000,00','0','25860000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.10.01.','014.003.5.2.2.10.01.','Belanja Sewa Meja Kursi','12860000,00','0','12860000,00','0','0','Belanja Sewa Meja Kursi 12860000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.10.09.','014.003.5.2.2.10.09.','Belanja Sewa Perlengkapan/Peralatan','13000000,00','0','13000000,00','0','0','Belanja Sewa Perlengkapan/Peralatan 13000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.11.','014.003.5.2.2.11.','Belanja Makanan Dan Minuman','88935000,00','0','88935000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.11.02.','014.003.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','88935000,00','0','88935000,00','0','0','Belanja Makanan Dan Minuman Rapat 88935000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.14.','014.003.5.2.2.14.','Belanja Pakaian Khusus Dan Hari-hari Tertentu','2750000,00','0','2750000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.14.03.','014.003.5.2.2.14.03.','Belanja Pakaian Batik Tradisional','2750000,00','0','2750000,00','0','0','Belanja Pakaian Batik Tradisional 2750000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.15.','014.003.5.2.2.15.','Belanja Perjalanan Dinas','13600000,00','0','13600000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.15.02.','014.003.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','13600000,00','0','13600000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 13600000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.16.','014.003.5.2.2.16.','Belanja Beasiswa Pendidikan PNS','87500000,00','0','87500000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.16.02.','014.003.5.2.2.16.02.','Belanja Beasiswa Tugas Belajar S1','87500000,00','0','87500000,00','0','0','Belanja Beasiswa Tugas Belajar S1 87500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.17.','014.003.5.2.2.17.','Belanja Kursus, Pelatihan, Sosialisasi Dan Bimbingan Teknis PNS','274000000,00','0','274000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.17.01.','014.003.5.2.2.17.01.','Belanja Kursus-Kursus Singkat/Pelatihan','274000000,00','0','274000000,00','0','0','Belanja Kursus-Kursus Singkat/Pelatihan 274000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.29.','014.003.5.2.2.29.','Belanja Bea Siswa Pendidikan Non PNS','87500000,00','0','87500000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.29.02.','014.003.5.2.2.29.02.','Belanja Beasiswa Tugas Belajar S1','87500000,00','0','87500000,00','0','0','Belanja Beasiswa Tugas Belajar S1 87500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.31.','014.003.5.2.2.31.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','83400000,00','0','83400000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.003.5.2.2.31.01.','014.003.5.2.2.31.01.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','83400000,00','0','83400000,00','0','0','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator 83400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.1.','014.004.5.2.1.','BELANJA PEGAWAI','220100000,00','0','220100000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.1.01.','014.004.5.2.1.01.','Honorarium PNS','220100000,00','0','220100000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.1.01.01.','014.004.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','219050000,00','0','219050000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 219050000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.1.01.02.','014.004.5.2.1.01.02.','Honorarium Tim Pengadaan Barang dan Jasa','1050000,00','0','1050000,00','0','0','Honorarium Tim Pengadaan Barang dan Jasa 1050000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.','014.004.5.2.2.','BELANJA BARANG DAN JASA','1946398100,00','0','1946398100,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.01.','014.004.5.2.2.01.','Belanja Bahan Pakai Habis','16780000,00','0','16780000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.01.03.','014.004.5.2.2.01.03.','Belanja Alat Listrik Dan Elektronik','16780000,00','0','16780000,00','0','0','Belanja Alat Listrik Dan Elektronik 16780000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.02.','014.004.5.2.2.02.','Belanja Bahan/Material','6750000,00','0','6750000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.02.04.','014.004.5.2.2.02.04.','Belanja Bahan Obat-Obatan','2250000,00','0','2250000,00','0','0','Belanja Bahan Obat-Obatan 2250000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.02.11.','014.004.5.2.2.02.11.','Belanja Plakat/Cinderamata','4500000,00','0','4500000,00','0','0','Belanja Plakat/Cinderamata 4500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.03.','014.004.5.2.2.03.','Belanja Jasa Kantor','64025000,00','0','64025000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.03.03.','014.004.5.2.2.03.03.','Belanja Listrik','9900000,00','0','9900000,00','0','0','Belanja Listrik 9900000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.03.11.','014.004.5.2.2.03.11.','Belanja Jasa Media Massa','25500000,00','0','25500000,00','0','0','Belanja Jasa Media Massa 25500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.03.13.','014.004.5.2.2.03.13.','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film','18625000,00','0','18625000,00','0','0','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film 18625000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.03.25.','014.004.5.2.2.03.25.','Belanja Jasa Event Organizer','10000000,00','0','10000000,00','0','0','Belanja Jasa Event Organizer 10000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.06.','014.004.5.2.2.06.','Belanja Cetak Dan Penggandaan','48433100,00','0','48433100,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.06.01.','014.004.5.2.2.06.01.','Belanja Cetak','30483500,00','0','30483500,00','0','0','Belanja Cetak 30483500','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.06.02.','014.004.5.2.2.06.02.','Belanja Penggandaan','17469600,00','0','17469600,00','0','0','Belanja Penggandaan 17469600','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.06.03.','014.004.5.2.2.06.03.','Belanja Cetak Foto','480000,00','0','480000,00','0','0','Belanja Cetak Foto 480000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.07.','014.004.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','89050000,00','0','89050000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.07.02.','014.004.5.2.2.07.02.','Belanja Sewa Gedung/Kantor/Tempat','89050000,00','0','89050000,00','0','0','Belanja Sewa Gedung/Kantor/Tempat 89050000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.08.','014.004.5.2.2.08.','Belanja Sewa Sarana Mobilitas','20000000,00','0','20000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.08.01.','014.004.5.2.2.08.01.','Belanja Sewa Sarana Mobilitas Darat','20000000,00','0','20000000,00','0','0','Belanja Sewa Sarana Mobilitas Darat 20000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.10.','014.004.5.2.2.10.','Belanja Sewa Perlengkapan dan Peralatan Kantor','412925000,00','0','412925000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.10.01.','014.004.5.2.2.10.01.','Belanja Sewa Meja Kursi','7525000,00','0','7525000,00','0','0','Belanja Sewa Meja Kursi 7525000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.10.04.','014.004.5.2.2.10.04.','Belanja Sewa Generator','26400000,00','0','26400000,00','0','0','Belanja Sewa Generator 26400000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.10.05.','014.004.5.2.2.10.05.','Belanja Sewa Tenda','41000000,00','0','41000000,00','0','0','Belanja Sewa Tenda 41000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.10.09.','014.004.5.2.2.10.09.','Belanja Sewa Perlengkapan/Peralatan','338000000,00','0','338000000,00','0','0','Belanja Sewa Perlengkapan/Peralatan 338000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.11.','014.004.5.2.2.11.','Belanja Makanan Dan Minuman','271355000,00','0','271355000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.11.02.','014.004.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','271355000,00','0','271355000,00','0','0','Belanja Makanan Dan Minuman Rapat 271355000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.12.','014.004.5.2.2.12.','Belanja Pakaian Dinas Dan Atributnya','65900000,00','0','65900000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.12.05.','014.004.5.2.2.12.05.','Belanja Pakaian Dinas Upacara (PDU)','65900000,00','0','65900000,00','0','0','Belanja Pakaian Dinas Upacara (PDU) 65900000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.14.','014.004.5.2.2.14.','Belanja Pakaian Khusus Dan Hari-hari Tertentu','100480000,00','0','100480000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.14.03.','014.004.5.2.2.14.03.','Belanja Pakaian Batik Tradisional','17000000,00','0','17000000,00','0','0','Belanja Pakaian Batik Tradisional 17000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.14.04.','014.004.5.2.2.14.04.','Belanja Pakaian Olahraga','83480000,00','0','83480000,00','0','0','Belanja Pakaian Olahraga 83480000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.15.','014.004.5.2.2.15.','Belanja Perjalanan Dinas','493600000,00','0','493600000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.15.01.','014.004.5.2.2.15.01.','Belanja Perjalanan Dinas Dalam Daerah','9600000,00','0','9600000,00','0','0','Belanja Perjalanan Dinas Dalam Daerah 9600000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.15.02.','014.004.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','484000000,00','0','484000000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 484000000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.31.','014.004.5.2.2.31.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','342350000,00','0','342350000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.31.01.','014.004.5.2.2.31.01.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','342350000,00','0','342350000,00','0','0','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator 342350000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.32.','014.004.5.2.2.32.','Belanja Uang Untuk Diberikan Kepada Pihak Ketiga/Masyarakat','14750000,00','0','14750000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.004.5.2.2.32.02.','014.004.5.2.2.32.02.','Belanja Uang Untuk Diberikan Kepada Masyarakat','14750000,00','0','14750000,00','0','0','Belanja Uang Untuk Diberikan Kepada Masyarakat 14750000 Lokasi Kegiatan Kecamatan Danurejan Pemenang Lomba Pameran Kategori Stand dan Pentas Seni 14750000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.1.','014.005.5.2.1.','BELANJA PEGAWAI','85125000,00','0','85125000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.1.01.','014.005.5.2.1.01.','Honorarium PNS','85125000,00','0','85125000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.1.01.01.','014.005.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','85125000,00','0','85125000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 85125000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.2.','014.005.5.2.2.','BELANJA BARANG DAN JASA','71390000,00','0','71390000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.2.11.','014.005.5.2.2.11.','Belanja Makanan Dan Minuman','30590000,00','0','30590000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.2.11.02.','014.005.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','30590000,00','0','30590000,00','0','0','Belanja Makanan Dan Minuman Rapat 30590000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.2.15.','014.005.5.2.2.15.','Belanja Perjalanan Dinas','40800000,00','0','40800000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.2.15.02.','014.005.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','40800000,00','0','40800000,00','0','0','Belanja Perjalanan Dinas Luar Daerah 40800000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.','014.005.5.2.3.','BELANJA MODAL','16661157075,00','0','16661157075,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.03.','014.005.5.2.3.03.','Belanja Modal Pengadaan Alat Alat Angkutan Darat Bermotor','210600000,00','0','210600000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.03.03.','014.005.5.2.3.03.03.','Belanja Modal Pengadaan Alat Alat Angkutan Darat Bermotor Station Wagon','210600000,00','0','210600000,00','0','0','Belanja Modal Pengadaan Alat Alat Angkutan Darat Bermotor Station Wagon 210600000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.11.','014.005.5.2.3.11.','Belanja Modal Pengadaan Perlengkapan Kantor','14725000,00','0','14725000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.11.02.','014.005.5.2.3.11.02.','Belanja Modal Pengadaan Almari','14725000,00','0','14725000,00','0','0','Belanja Modal Pengadaan Almari 14725000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.12.','014.005.5.2.3.12.','Belanja Modal Pengadaan Komputer','21725000,00','0','21725000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.12.03.','014.005.5.2.3.12.03.','Belanja Modal Pengadaan Komputer Note Book','21725000,00','0','21725000,00','0','0','Belanja Modal Pengadaan Komputer Note Book 21725000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.13.','014.005.5.2.3.13.','Belanja Modal Pengadaan Mebeulair','41450000,00','0','41450000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.13.02.','014.005.5.2.3.13.02.','Belanja Modal Pengadaan Meja Rapat','24725000,00','0','24725000,00','0','0','Belanja Modal Pengadaan Meja Rapat 24725000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.13.05.','014.005.5.2.3.13.05.','Belanja Modal Pengadaan Kursi Rapat','16725000,00','0','16725000,00','0','0','Belanja Modal Pengadaan Kursi Rapat 16725000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.16.','014.005.5.2.3.16.','Belanja Modal Pengadaan Alat – Alat Studio','30950000,00','0','30950000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.16.03.','014.005.5.2.3.16.03.','Belanja Modal Pengadaan Proyektor','22725000,00','0','22725000,00','0','0','Belanja Modal Pengadaan Proyektor 22725000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.16.05.','014.005.5.2.3.16.05.','Belanja Modal Pengadaan Sound System','8225000,00','0','8225000,00','0','0','Belanja Modal Pengadaan Sound System 8225000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.19.','014.005.5.2.3.19.','Belanja Modal Pengadaan Alat – Alat Kedokteran','15725000,00','0','15725000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.19.16.','014.005.5.2.3.19.16.','Belanja Modal Pengadaan Kursi Roda','15725000,00','0','15725000,00','0','0','Belanja Modal Pengadaan Kursi Roda 15725000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.20.','014.005.5.2.3.20.','Belanja Modal Pengadaan Alat – Alat Laboratorium','3584838085,00','0','3584838085,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.20.09.','014.005.5.2.3.20.09.','Belanja Modal Pengadaan Alat – Alat Peraga/Praktik Sekolah','3584838085,00','0','3584838085,00','0','0','Belanja Modal Pengadaan Alat – Alat Peraga/Praktik Sekolah 3584838085','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.26.','014.005.5.2.3.26.','Belanja Modal Pengadaan Konstruksi/Pembelian*) Bangunan','1278890990,00','0','1278890990,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.26.01.','014.005.5.2.3.26.01.','Belanja Modal Pengadaan Konstruksi/pembelian Gedung Kantor','1278890990,00','0','1278890990,00','0','0','Belanja Modal Pengadaan Konstruksi/pembelian Gedung Kantor 1278890990','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.27.','014.005.5.2.3.27.','Belanja Modal Pengadaan Buku/kepustakaan','11462253000,00','0','11462253000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.005.5.2.3.27.26.','014.005.5.2.3.27.26.','Belanja Modal Buku Perpustakaan','11462253000,00','0','11462253000,00','0','0','Belanja Modal Buku Perpustakaan 11462253000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.1.','014.006.5.2.1.','BELANJA PEGAWAI','4275470000,00','0','4275470000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.1.01.','014.006.5.2.1.01.','Honorarium PNS','53870000,00','0','53870000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.1.01.01.','014.006.5.2.1.01.01.','Honorarium Panitia Pelaksana Kegiatan','53870000,00','0','53870000,00','0','0','Honorarium Panitia Pelaksana Kegiatan 53870000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.1.02.','014.006.5.2.1.02.','Honorarium Non PNS','4221600000,00','0','4221600000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.1.02.01.','014.006.5.2.1.02.01.','Honorarium Pegawai Honorer/Tidak Tetap','4221600000,00','0','4221600000,00','0','0','Honorarium Pegawai Honorer/Tidak Tetap 4221600000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.','014.006.5.2.2.','BELANJA BARANG DAN JASA','3000565000,00','0','3000565000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.01.','014.006.5.2.2.01.','Belanja Bahan Pakai Habis','3350000,00','0','3350000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.01.01.','014.006.5.2.2.01.01.','Belanja Alat Tulis Kantor','3350000,00','0','3350000,00','0','0','Belanja Alat Tulis Kantor 3350000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.02.','014.006.5.2.2.02.','Belanja Bahan/Material','287400000,00','0','287400000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.02.08.','014.006.5.2.2.02.08.','Belanja Hadiah/Trophy','287400000,00','0','287400000,00','0','0','Belanja Hadiah/Trophy 287400000 . Lokasi Kegiatan Tersebar se-Kota Yogyakarta. Lomba Kantin Sehat Sekolah 300000 Lomba Dokter Kecil 300000 Lomba Kader Kesehatan Remaja 600000 Lomba UKS Kit LSS Tingkat Kota 50000000 Lomba UKS Kit LSS Tingkat Provinsi 28000000 Lomba UKS Kit LSS Tingkat Nasional 50000000 Kantin Kit Lomba Kantin Sehat 50000000 Siaga Bencana Kit 50000000 Bantuan Kelengkapan TPU UKS Kecamatan 42000000 Bantuan Kelengkapan TPU UKS Kota 15000000 Lomba LSS TK, SD, SMP, SMA/K 1200000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.03.','014.006.5.2.2.03.','Belanja Jasa Kantor','3750000,00','0','3750000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.03.13.','014.006.5.2.2.03.13.','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film','3750000,00','0','3750000,00','0','0','Belanja Dekorasi, Dokumentasi, Publikasi, Pembuatan Film 3750000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.06.','014.006.5.2.2.06.','Belanja Cetak Dan Penggandaan','49506000,00','0','49506000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.06.02.','014.006.5.2.2.06.02.','Belanja Penggandaan','48396000,00','0','48396000,00','0','0','Belanja Penggandaan 48396000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.06.03.','014.006.5.2.2.06.03.','Belanja Cetak Foto','1110000,00','0','1110000,00','0','0','Belanja Cetak Foto 1110000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.07.','014.006.5.2.2.07.','Belanja Sewa Rumah/Gedung/Gudang/Parkir','22500000,00','0','22500000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.07.03.','014.006.5.2.2.07.03.','Belanja Sewa Ruang Rapat/Pertemuan','22500000,00','0','22500000,00','0','0','Belanja Sewa Ruang Rapat/Pertemuan 22500000','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.10.','014.006.5.2.2.10.','Belanja Sewa Perlengkapan dan Peralatan Kantor','19544000,00','0','19544000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.10.01.','014.006.5.2.2.10.01.','Belanja Sewa Meja Kursi','4044000,00','0','4044000,00','0','0','Belanja Sewa Meja Kursi','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.10.09.','014.006.5.2.2.10.09.','Belanja Sewa Perlengkapan/Peralatan','15500000,00','0','15500000,00','0','0','Belanja Sewa Perlengkapan/Peralatan','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.11.','014.006.5.2.2.11.','Belanja Makanan Dan Minuman','2341315000,00','0','2341315000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.11.02.','014.006.5.2.2.11.02.','Belanja Makanan Dan Minuman Rapat','91315000,00','0','91315000,00','0','0','Belanja Makanan Dan Minuman Rapat','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.11.07.','014.006.5.2.2.11.07.','Belanja Makanan dan Minuman Harian Umum','2250000000,00','0','2250000000,00','0','0','Belanja Makanan dan Minuman Harian Umum','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.15.','014.006.5.2.2.15.','Belanja Perjalanan Dinas','6800000,00','0','6800000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.15.02.','014.006.5.2.2.15.02.','Belanja Perjalanan Dinas Luar Daerah','6800000,00','0','6800000,00','0','0','Belanja Perjalanan Dinas Luar Daerah','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.31.','014.006.5.2.2.31.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','195400000,00','0','195400000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.31.01.','014.006.5.2.2.31.01.','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','195400000,00','0','195400000,00','0','0','Belanja Jasa Tenaga Ahli/Instruktur/Narasumber/Moderator','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.32.','014.006.5.2.2.32.','Belanja Uang Untuk Diberikan Kepada Pihak Ketiga/Masyarakat','71000000,00','0','71000000,00','0','0','','2','2'),
('0','245','112','1.01.01','1.01','3471','2015','1.01.1.01.01.014.006.5.2.2.32.02.','014.006.5.2.2.32.02.','Belanja Uang Untuk Diberikan Kepada Masyarakat','71000000,00','0','71000000,00','0','0','Belanja Uang Untuk Diberikan Kepada Masyarakat 71,000,000 Lokasi Kegiatan Tersebar se-Kota Yogyakarta Lomba Kader Kesehatan Remaja (SMP) 7,000,000 Lomba Kader Kesehatan Remaja (SMA) 7,000,000 Lomba Kantin Sekolah Sehat 10,000,000 Lomba Sekolah Sehat 40,000,000 Lomba Dokter Kecil','2','2'),
|
<gh_stars>10-100
create table ADDRESS_TRANSACTIONS
(
ADDRESS VARCHAR(255) not null
primary key,
LAST_CHECKED_AT_BLOCKHEIGHT INTEGER not null
);
create table ADDRESS_OWNERSHIP
(
ADDRESS VARCHAR(255) not null
primary key,
OWNERSHIP_STATUS VARCHAR(255)
);
create table ADDRESS_TRANSACTIONS_JPA_DTO_TRANSACTION_HASHES
(
ADDRESS_TRANSACTIONS_JPA_DTO_ADDRESS VARCHAR(255) not null,
TRANSACTION_HASHES VARCHAR(255),
constraint FKNPLWYPO3INM8AHQ6A9MI5EAGN
foreign key (ADDRESS_TRANSACTIONS_JPA_DTO_ADDRESS) references ADDRESS_TRANSACTIONS (ADDRESS)
);
create table ADDRESS_WITH_DESCRIPTION
(
ADDRESS VARCHAR(255) not null
primary key,
DESCRIPTION VARCHAR(255)
);
create table INPUTS
(
ID BIGINT not null
primary key,
SOURCE_ADDRESS VARCHAR(255),
VALUE BIGINT not null
);
create index IDXIOOJE4XO187QKRDTQ6OKNYEOW
on INPUTS (SOURCE_ADDRESS);
create table OUTPUTS
(
ID BIGINT not null
primary key,
TARGET_ADDRESS VARCHAR(255),
VALUE BIGINT not null
);
create index IDXKK3XIYIDI8HGAAX5B5C4RN98K
on OUTPUTS (TARGET_ADDRESS);
create table PRICES
(
DATE DATE not null
primary key,
PRICE DECIMAL(16, 8)
);
create table TRANSACTIONS
(
HASH VARCHAR(255) not null
primary key,
BLOCK_HEIGHT INTEGER not null,
FEES BIGINT not null,
TIME BIGINT not null
);
create table TRANSACTIONS_INPUTS
(
TRANSACTION_JPA_DTO_HASH VARCHAR(255) not null,
INPUTS_ID BIGINT not null
constraint UK_N75MRDL0TX30VMQE9LAV2WOCT
unique,
constraint FK12O65DNSM0TNHJWLEV43AXG96
foreign key (TRANSACTION_JPA_DTO_HASH) references TRANSACTIONS (HASH),
constraint FKOQXY5LIIG91FGTY7YICS5D88H
foreign key (INPUTS_ID) references INPUTS (ID)
);
create table TRANSACTIONS_OUTPUTS
(
TRANSACTION_JPA_DTO_HASH VARCHAR(255) not null,
OUTPUTS_ID BIGINT not null
constraint UK_FHIHE527GH79G8R45U4LRIFWX
unique,
constraint FKA22I3836F16KRQ712JLWU10QA
foreign key (OUTPUTS_ID) references OUTPUTS (ID),
constraint FKJKL8K6K4J4DUVGQKJJT9FIV9U
foreign key (TRANSACTION_JPA_DTO_HASH) references TRANSACTIONS (HASH)
);
create table TRANSACTION_WITH_DESCRIPTION
(
TRANSACTION_HASH VARCHAR(255) not null
primary key,
DESCRIPTION VARCHAR(255)
);
|
<filename>database/mysql/Change-Sets/changelogs-2020-04-28-db-002.user_info.mysql.sql
CREATE TABLE user_info (
id BIGINT AUTO_INCREMENT PRIMARY KEY,
first_name VARCHAR(128),
sur_name VARCHAR(128),
age INT,
sex CHAR(1),
city VARCHAR(128),
FOREIGN KEY (id) REFERENCES user_profile(id)
) ENGINE = InnoDB;
|
<filename>skating_elt/ddl/table/f_perf.sql
CREATE OR REPLACE TABLE `your-project.skating.f_perf` (
perf_id INT64 NOT NULL,
event_id INT64 NOT NULL,
event_perf_seq_nbr INT64 NOT NULL,
skater1_id INT64 NOT NULL,
skater2_id INT64,
event_perf_rank_nbr INT64,
component_score FLOAT64,
element_score FLOAT64,
deductions FLOAT64);
|
SELECT Name FROM Employee
ORDER BY Name;
|
ALTER PROCEDURE [dbo].[sp_SaveUpdatePharmacyPrescription_GreenCard]
@ptn_pharmacy_pk int = null,
@DrugId int = null,
@BatchId varchar(50) = null,
@Dose varchar(50) = null,
@FreqId int = null,
@Morning decimal(18,2)=0,
@Midday decimal(18,2)=0,
@Evening decimal(18,2)=0,
@Night decimal(18,2)=0,
@Duration decimal(18,2) = null,
@qtyPres decimal(18,2) = null,
@qtyDisp decimal(18,2) = null,
@UserID int = null,
@Prophylaxis int = null,
@pmscm varchar(50) = null
AS
Begin
declare @TotalOrderedQuantity int,@TotalDispensedQuantity int
Select @TotalOrderedQuantity = 0, @TotalDispensedQuantity = 0
declare @_dose as decimal(18,2);
Select @_dose = case when @Dose <> '' and @Dose <> null then @Dose else 1 end;
Insert Into dtl_PatientPharmacyOrder (
ptn_pharmacy_pk,Drug_Pk,Duration,OrderedQuantity,FrequencyID,BatchNo,SingleDose, DispensedQuantity, UserID,CreateDate,Prophylaxis,
genericid,StrengthID, MorningDose, MiddayDose, EveningDose, NightDose)
Values (
@ptn_pharmacy_pk,@DrugId,@Duration,@qtyPres,@FreqId,@BatchId,@_dose,@qtyDisp,@UserID,Getdate(),@Prophylaxis,0,0,@Morning,@Midday,@Evening,@Night);
if(@pmscm = 1 and @qtyDisp > 0)
BEGIN
--INSERT into dtl_patientPharmacyDispensed
--(ptn_pharmacy_pk,drug_pk,batchId,frequencyID,dose,duration,dispensedQuantity,dispensedDate,deleteFlag)
--values(@ptn_pharmacy_pk,@DrugId,@BatchId,@FreqId,@Dose,@Duration,@qtyDisp,GETDATE(),0)
declare @ptn_pk int = (select Ptn_pk from ord_patientpharmacyorder where ptn_pharmacy_pk=@ptn_pharmacy_pk)
declare @storeID int = (select top 1 StoreId from Dtl_StockTransaction where BatchId = @BatchId)
insert into Dtl_StockTransaction
(ItemId,BatchId,ptn_pharmacy_pk, PtnPk,storeid,transactiondate,quantity,UserId,createdate)
values(@DrugId,@BatchId,@ptn_pharmacy_pk,@ptn_pk,@storeID,getdate(),-@qtyDisp,@UserID,GETDATE())
END
Select @TotalOrderedQuantity = Sum(a.OrderedQuantity),
@TotalDispensedQuantity = Sum(a.dispensedQuantity)
From dtl_PatientPharmacyOrder a
Where a.ptn_pharmacy_pk = @ptn_pharmacy_pk
Update ord_PatientPharmacyOrder Set
OrderStatus = Case
When DispensedByDate Is Null Then 1 --new order
When DispensedByDate Is Not Null And @TotalDispensedQuantity = @TotalOrderedQuantity Then 2 --complete
When DispensedByDate Is Not Null And @TotalDispensedQuantity < @TotalOrderedQuantity Then 3 --partial
Else orderstatus End
Where ptn_pharmacy_pk = @ptn_pharmacy_pk
End
GO |
CREATE TABLE balance (
b_id VARCHAR(36),
b_version BIGINT,
b_time DATETIME,
b_account VARCHAR(36),
balance BIGINT
); |
BEGIN;
DROP FUNCTION gp_allocate_palloc_test_all_segs(content int, size int, sleep int, crit_section bool);
DROP FUNCTION gp_allocate_palloc_test_f(content int, size int, sleep int, crit_section bool);
DROP FUNCTION gp_allocate_top_memory_ctxt_test_all_segs(content int, size int, sleep int);
DROP FUNCTION gp_allocate_top_memory_ctxt_test_f(content int, size int, sleep int);
DROP FUNCTION gp_allocate_palloc_gradual_test_all_segs(content int, size int, sleep int);
DROP FUNCTION gp_allocate_palloc_gradual_test_f(content int, size int, sleep int);
DROP FUNCTION gp_inject_fault_test_all_segs(content int, fault_type int, arg int);
DROP FUNCTION gp_inject_fault_test_f(content int, fault_type int, arg int);
DROP VIEW gp_available_vmem_mb_test_all_segs;
DROP FUNCTION gp_available_vmem_mb_test_f();
COMMIT;
|
<reponame>lintzc/GPDB
-- @author prabhd
-- @created 2014-04-01 12:00:00
-- @modified 2012-04-01 12:00:00
-- @tags dml MPP-21090 ORCA
-- @optimizer_mode on
-- @description Tests for MPP-21090
\echo --start_ignore
set gp_enable_column_oriented_table=on;
\echo --end_ignore
DROP TABLE IF EXISTS mpp21090_drop_midcol_dml_time;
CREATE TABLE mpp21090_drop_midcol_dml_time
(
col1 int,
col2 decimal,
col3 time,
col4 char,
col5 date
) with (appendonly= true, orientation= column) DISTRIBUTED by(col4);
INSERT INTO mpp21090_drop_midcol_dml_time VALUES(0,0.00,'12:00:00','a','2014-01-01');
SELECT * FROM mpp21090_drop_midcol_dml_time ORDER BY 1,2,3,4;
ALTER TABLE mpp21090_drop_midcol_dml_time DROP COLUMN col3;
INSERT INTO mpp21090_drop_midcol_dml_time SELECT 1,1.00,'b','2014-01-02';
SELECT * FROM mpp21090_drop_midcol_dml_time ORDER BY 1,2,3,4;
UPDATE mpp21090_drop_midcol_dml_time SET col4='c' WHERE col4 = 'b' AND col1 = 1;
SELECT * FROM mpp21090_drop_midcol_dml_time ORDER BY 1,2,3,4;
|
--! Previous: sha1:1d54640835d8e602bbcb1cfacd38672adc258cc9
--! Hash: sha1:62b5e2158ca83a406b93f328d06dcf35e938cdb4
-- Enter migration here
DROP POLICY IF EXISTS survey_responses_insert ON public.survey_responses;
revoke insert on survey_responses from anon;
revoke insert on survey_responses from seasketch_user;
-- grant insert on survey_responses to anon;
-- CREATE POLICY survey_responses_insert ON public.survey_responses FOR INSERT WITH CHECK (
-- public.it_me(user_id) or
-- (
-- user_id is null and
-- (select access_type from surveys where surveys.id = survey_id) = 'PUBLIC'::survey_access_type and
-- (select is_disabled from surveys where surveys.id = survey_id) = false
-- )
-- );
alter table survey_responses add column if not exists is_facilitated boolean not null default false;
drop function if exists session_member_of_group;
create or replace function session_member_of_group(groups int[])
returns boolean
language SQL
stable
security definer
as $$
select (select count(group_id) from project_group_members where user_id = nullif(current_setting('session.user_id', TRUE), '')::integer and group_id = any(groups)) > 0;
$$;
drop function if exists create_survey_response;
create or replace function create_survey_response("surveyId" int, response_data json, facilitated boolean, draft boolean, bypassed_submission_control boolean)
returns survey_responses
language plpgsql
security definer
as $$
declare
access_type survey_access_type;
is_disabled boolean;
pid int;
response survey_responses;
begin
select
surveys.project_id,
surveys.access_type,
surveys.is_disabled
into
pid,
access_type,
is_disabled
from
surveys
where
surveys.id = "surveyId";
-- TODO: improve access control to consider group membership
if session_is_admin(pid) or (is_disabled = false and (access_type = 'PUBLIC'::survey_access_type) or (access_type = 'INVITE_ONLY'::survey_access_type and session_member_of_group((select array_agg(group_id) from survey_invited_groups where survey_id = "surveyId")))) then
insert into survey_responses (survey_id, data, user_id, is_draft, is_facilitated, bypassed_duplicate_submission_control) values ("surveyId", response_data, nullif(current_setting('session.user_id', TRUE), '')::int, draft, facilitated, bypassed_submission_control) returning * into response;
return response;
else
raise exception 'Access denied to % survey. is_disabled = %', access_type, is_disabled;
end if;
end;
$$;
grant EXECUTE on function create_survey_response to anon;
comment on column survey_responses.user_id is 'User account that submitted the survey. Note that if isFacilitated is set, the account may not be who is represented by the response content.';
comment on column survey_responses.is_facilitated is 'If true, a logged-in user entered information on behalf of another person, so userId is not as relevant.';
|
<reponame>opengauss-mirror/Yat
-- @testpoint:opengauss关键字existing(非保留),作为模式名
--关键字不带引号-成功
drop schema if exists existing;
create schema existing;
drop schema existing;
--关键字带双引号-成功
drop schema if exists "existing";
create schema "existing";
drop schema "existing";
--关键字带单引号-合理报错
drop schema if exists 'existing';
create schema 'existing';
--关键字带反引号-合理报错
drop schema if exists `existing`;
create schema `existing`;
|
CREATE OR REPLACE FUNCTION public.match_id(vid character varying)
RETURNS TABLE(video_id character varying, uploader character varying, uploader_id character varying, title character varying, description character varying, upload_date integer, filepath character varying, playlists character varying[])
LANGUAGE sql
AS $function$
SELECT * FROM metadata WHERE video_id = $1;
$function$
|
-- Banco de Dados: `revenda`
--
-- --------------------------------------------------------
--
-- Estrutura da tabela `automovel`
--
CREATE TABLE IF NOT EXISTS `automovel` (
`codautomovel` int(5) NOT NULL AUTO_INCREMENT,
`descricao` varchar(100) NOT NULL,
`codmodelo` int(5) NOT NULL,
`codcategoria` int(5) NOT NULL,
`ano` int(4) NOT NULL,
`cor` varchar(50) NOT NULL,
`placa` varchar(10) NOT NULL,
`localizacao` varchar(50) NOT NULL,
`tipocombustivel` varchar(50) NOT NULL,
`opcionais` varchar(100) NOT NULL,
`valor` float(10,2) NOT NULL,
`foto1` varchar(200) NOT NULL,
`foto2` varchar(200) NOT NULL,
PRIMARY KEY (`codautomovel`),
KEY `codmodelo` (`codmodelo`),
KEY `codcategoria` (`codcategoria`)
);
--
-- Estrutura da tabela `categoria`
--
CREATE TABLE IF NOT EXISTS `categoria` (
`codcategoria` int(5) NOT NULL AUTO_INCREMENT,
`nome` varchar(50) NOT NULL,
PRIMARY KEY (`codcategoria`)
);
-- Estrutura da tabela `marca`
--
CREATE TABLE IF NOT EXISTS `marca` (
`codmarca` int(5) NOT NULL AUTO_INCREMENT,
`nome` varchar(50) NOT NULL,
PRIMARY KEY (`codmarca`)
) ;
--
--
-- Estrutura da tabela `modelo`
--
CREATE TABLE IF NOT EXISTS `modelo` (
`codmodelo` int(5) NOT NULL AUTO_INCREMENT,
`nome` varchar(50) NOT NULL,
`codmarca` int(5) NOT NULL,
PRIMARY KEY (`codmodelo`),
KEY `codmarca` (`codmarca`)
) ;
-
|
<reponame>NeoYY/Leetcode-Solution<filename>183. Customers Who Never Order.sql
/*
SQL Schema
Suppose that a website contains two tables, the Customers table and the Orders table. Write a SQL query to find all customers who never order anything.
Table: Customers.
+----+-------+
| Id | Name |
+----+-------+
| 1 | Joe |
| 2 | Henry |
| 3 | Sam |
| 4 | Max |
+----+-------+
Table: Orders.
+----+------------+
| Id | CustomerId |
+----+------------+
| 1 | 3 |
| 2 | 1 |
+----+------------+
Using the above tables as example, return the following:
+-----------+
| Customers |
+-----------+
| Henry |
| Max |
+-----------+
Solution one us NOT IN, two use LEFT JOIN
*/
# Write your MySQL query statement below
SELECT Name AS Customers FROM Customers WHERE Id
NOT IN ( SELECT CustomerID FROM Orders);
SELECT Name AS Customers
FROM Customers
LEFT JOIN Orders
ON Customers.Id = Orders.CustomerId
WHERE Orders.CustomerId IS NULL;
|
CREATE TABLE member(
id VARCHAR(36) NOT NULL PRIMARY KEY,
name VARCHAR(80) NOT NULL
);
|
<gh_stars>0
use hannah;
drop table if exists Event;
drop table if exists Person;
create table Person(
ID int auto_increment primary key,
Name varchar(30),
Password varchar(30)
);
-- create table Event(
-- ID int auto_increment primary key,
-- PersonID int ,
-- Value varchar(255),
-- foreign key (PersonID) references Person(ID)
-- );
insert into Person(Name, Password)
values ('Todd','<PASSWORD>'),
('Trent','<PASSWORD>'),
('Tamisin','<PASSWORD>'),
('Trisha','<PASSWORD>');
-- insert into Event(PersonID, Value)
-- values (1, 'Todd said this'),
-- (2, 'Trent said this');
-- drop procedure if exists GetUsers;
-- delimiter //
-- create procedure GetUsers()
-- begin
-- select * from Person;
-- end //
-- delimiter ;
drop procedure if exists CheckPassword;
delimiter //
create procedure CheckPassword (pUser VARCHAR(50), pPassword VARCHAR(50))
begin
DECLARE vResult int ;
select
case
when Name = pUser and Password = <PASSWORD> then 1
when Name = pUser and Password <> <PASSWORD> then 0
end as Result
from
Person
where
pUser = Name
into vResult;
if ISNULL(vResult) then
set vResult = -1;
end if;
SELECT vResult as Result;
end //
delimiter ;
-- Test CheckPassword
call CheckPassword('<PASSWORD>','<PASSWORD>');
call CheckPassword('<PASSWORD>','<PASSWORD>');
call CheckPassword('<PASSWORD>','<PASSWORD>');
-- drop procedure if exists StoreComment;
-- delimiter //
-- create procedure StoreComment (pUser VARCHAR(50), pComment VARCHAR(50))
-- begin
-- insert into Event(PersonID, Value)
-- values ((select ID from Person where name = pUser LIMIT 1), pComment);
-- SELECT 'Stored a commnet' As Result;
-- end //
-- delimiter ;
-- -- Test StoreComment
-- call StoreComment('Todd','Test');
-- call StoreComment('Todd','Test2');
-- call StoreComment('Toddy','Test3');
|
<gh_stars>0
-- ----------------------------
-- 用途
-- 用户权限管理
--
-- 实现逻辑
-- ----------------------------
-- ----------------------------
-- Table structure for `{{%permission_path}}`
-- ----------------------------
CREATE TABLE `{{%permission_api}}` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`code` varchar(50) NOT NULL COMMENT '路径标识',
`path` varchar(200) NOT NULL DEFAULT '' COMMENT 'API路径',
`remark` varchar(200) NOT NULL DEFAULT '' COMMENT '路径描述',
`exts` json DEFAULT NULL COMMENT '扩展信息',
`is_public` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否公共路径,公共路径不需要权限',
`is_enable` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否启用',
`operate_ip` varchar(15) NOT NULL DEFAULT '' COMMENT '操作IP',
`operate_uid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '操作UID',
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
PRIMARY KEY (`id`),
UNIQUE KEY `uk_path` (`path`),
KEY `idx_isPublic` (`is_public`),
KEY `idx_isEnable` (`is_enable`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='后端api路径信息表';
-- ----------------------------
-- Table structure for `{{%permission_menu}}`
-- ----------------------------
CREATE TABLE `{{%permission_menu}}` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`type` varchar(20) NOT NULL COMMENT '类型[menu:菜单,footer:底部菜单,top:顶端菜单,button:按钮]',
`path` varchar(200) NOT NULL DEFAULT '' COMMENT '菜单路径',
`parent_code` varchar(50) NOT NULL DEFAULT '' COMMENT '上级标识',
`code` varchar(50) NOT NULL COMMENT '菜单标识',
`remark` varchar(200) NOT NULL DEFAULT '' COMMENT '路径描述',
`exts` json DEFAULT NULL COMMENT '扩展信息',
`is_public` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否公共路径,公共路径不需要权限',
`is_enable` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否启用',
`operate_ip` varchar(15) NOT NULL DEFAULT '' COMMENT '操作IP',
`operate_uid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '操作UID',
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
PRIMARY KEY (`id`),
UNIQUE KEY `uk_type_path` (`type`, `path`),
UNIQUE KEY `uk_code` (`code`),
KEY `idx_path` (`path`),
KEY `idx_isPublic` (`is_public`),
KEY `idx_isEnable` (`is_enable`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='前端url路径信息表';
-- ----------------------------
-- Table structure for `{{%permission_menu_api}}`
-- ----------------------------
CREATE TABLE `{{%permission_menu_api}}` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`menu_code` varchar(50) NOT NULL COMMENT '菜单、按钮代码',
`api_code` varchar(50) NOT NULL COMMENT 'api代码',
`operate_ip` varchar(15) NOT NULL DEFAULT '' COMMENT '操作IP',
`operate_uid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '操作UID',
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
PRIMARY KEY (`id`),
UNIQUE KEY `uk_menuCode_apiCode` (`menu_code`, `api_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='菜单、按钮拥有的api关联';
-- ----------------------------
-- Table structure for `{{%permission_role}}`
-- ----------------------------
CREATE TABLE `{{%permission_role}}` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`code` varchar(50) NOT NULL COMMENT '角色代码',
`remark` varchar(200) NOT NULL DEFAULT '' COMMENT '角色描述',
`is_enable` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否启用',
`operate_ip` varchar(15) NOT NULL DEFAULT '' COMMENT '操作IP',
`operate_uid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '操作UID',
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
PRIMARY KEY (`id`),
UNIQUE KEY `uk_code` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='角色信息表';
-- ----------------------------
-- Table structure for `{{%permission_role_menu}}`
-- ----------------------------
CREATE TABLE `{{%permission_role_menu}}` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`role_code` varchar(50) NOT NULL COMMENT '角色代码',
`menu_code` varchar(50) NOT NULL COMMENT '菜单、按钮代码',
`operate_ip` varchar(15) NOT NULL DEFAULT '' COMMENT '操作IP',
`operate_uid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '操作UID',
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
PRIMARY KEY (`id`),
UNIQUE KEY `uk_roleCode_menuCode` (`role_code`, `menu_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='角色、菜单关联信息表';
-- ----------------------------
-- Table structure for `{{%permission_role_menu}}`
-- ----------------------------
CREATE TABLE `{{%permission_user_role}}` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`uid` bigint(20) unsigned NOT NULL COMMENT '用户ID',
`role_code` varchar(50) NOT NULL COMMENT '角色代码',
`operate_ip` varchar(15) NOT NULL DEFAULT '' COMMENT '操作IP',
`operate_uid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '操作UID',
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间',
PRIMARY KEY (`id`),
UNIQUE KEY `uk_uid_roleCode` (`uid`, `role_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户、角色关联信息表';
|
<filename>server_inventory_system(2).sql
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Dec 12, 2020 at 05:09 PM
-- Server version: 10.4.14-MariaDB
-- PHP Version: 7.4.10
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: `server_inventory_system`
--
-- --------------------------------------------------------
--
-- Table structure for table `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `followups`
--
CREATE TABLE `followups` (
`id` bigint(20) UNSIGNED NOT NULL,
`server_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Serial_no` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Asset_no` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Rack_no` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Rack_unit_No` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`product_and_modal` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`remark` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`update_user_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`update_user_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `followups`
--
INSERT INTO `followups` (`id`, `server_type`, `Serial_no`, `Asset_no`, `Rack_no`, `Rack_unit_No`, `product_and_modal`, `status`, `remark`, `update_user_id`, `update_user_name`, `created_at`, `updated_at`) VALUES
(1, 'Physical', 'vsdzf66', '43222', '2', '3', 'Dell', 'Create', '', '1', 'Nuwan Athukorala', '2020-10-18 04:33:00', '2020-10-18 04:33:00'),
(2, 'Physical', 'vsdzf66', '43222', '2', '3', 'Dell', 'Create', '', '1', 'Nuwan Athukorala', '2020-10-18 04:46:39', '2020-10-18 04:46:39'),
(3, 'Physical', 'vsdzf66', '33444', '5', '4', 'hp', 'Create', '', '1', 'Nuwan Athukorala', '2020-10-18 04:54:54', '2020-10-18 04:54:54'),
(4, 'Physical', 'vsdzf66', '33444', '5', '4', 'hp', 'Create', '', '1', 'Nuwan Athukorala', '2020-10-18 05:50:31', '2020-10-18 05:50:31'),
(5, 'Physical', 'vsdzf66', '33444', '5', '4', 'hp', 'Create', '', '1', 'Nuwan Athukorala', '2020-10-18 05:50:54', '2020-10-18 05:50:54'),
(6, 'Physical', 'vsdzf66', '33444', '5', '4', 'hp', 'Create', '', '1', 'Nuwan Athukorala', '2020-10-18 05:51:36', '2020-10-18 05:51:36'),
(7, 'Physical', 'vsdzf66', '33444', '5', '4', 'hp', 'Create', '', '1', 'Nuwan Athukorala', '2020-10-18 06:49:12', '2020-10-18 06:49:12'),
(8, 'Physical', 'vsdzf66', '98090', '6', '5', 'HP', 'Create', '', '1', 'Nuwan Athukorala', '2020-10-18 06:55:55', '2020-10-18 06:55:55'),
(9, 'Physical', 'vvdvf', '5665', '4', '6', 'bdv', 'Create', '', '1', 'Nuwan Athukorala', '2020-10-18 07:08:56', '2020-10-18 07:08:56'),
(10, 'Physical', 'gefwedse', 'fswsad', '5', '6', 'dfgd', 'Create', '', '1', 'Nuwan Athukorala', '2020-10-18 07:11:19', '2020-10-18 07:11:19'),
(11, 'Physical', 'vsdzf', '6554', '4', '6', 'bdv', 'Create', '', '1', 'Nuwan Athukorala', '2020-10-18 07:15:05', '2020-10-18 07:15:05'),
(12, 'Virtual', '', '', '', '', '', 'Create', '', '1', 'Nuwan Athukorala', '2020-10-18 10:39:05', '2020-10-18 10:39:05'),
(13, 'Virtual', '', '', '', '', '', 'Create', '', '1', 'Nuwan Athukorala', '2020-10-18 10:39:34', '2020-10-18 10:39:34'),
(14, 'Physical', 'vsdzf66gg', '3222', '4', '6', 'bdv', 'Create', '', '1', 'Nuwan Athukorala', '2020-10-18 12:19:26', '2020-10-18 12:19:26'),
(15, 'Physical', 'vsdzf66', '65543', '4', '9', 'HP', 'Create', '', '1', 'Nuwan Athukorala', '2020-10-24 05:46:43', '2020-10-24 05:46:43'),
(16, 'Physical', 'vsdzf66', '65543', '4', '9', 'HP', 'Update', '', '1', 'Nuwan Athukorala', '2020-10-24 11:13:03', '2020-10-24 11:13:03'),
(17, 'Physical', 'vsdzf66gg', '3222', '4', '6', 'bdv', 'Remove', '', '1', 'Nuwan Athukorala', '2020-10-24 12:04:49', '2020-10-24 12:04:49'),
(18, 'Virtual', 'vsdzf66', '33444', '5', '4', 'hp', 'Remove', '', '1', 'Nuwan Athukorala', '2020-10-24 12:09:31', '2020-10-24 12:09:31'),
(19, 'Virtual', '', '', '', '', '', 'Remove', '', '1', 'Nuwan Athukorala', '2020-10-24 12:09:38', '2020-10-24 12:09:38'),
(20, 'Virtual', '', '', '', '', '', 'Remove', '', '1', 'Nuwan Athukorala', '2020-10-24 12:09:43', '2020-10-24 12:09:43'),
(21, 'Physical', 'vsdzf', '43322', '4', '7', 'HP', 'Create', '', '1', 'Nuwan Athukorala', '2020-10-24 22:14:42', '2020-10-24 22:14:42'),
(22, 'Physical', 'vsdzf66', '65543', '4', '9', 'HP', 'Update', '', '1', 'Nuwan Athukorala', '2020-10-25 02:23:47', '2020-10-25 02:23:47'),
(23, 'Physical', 'vsdzf66', '33444', '5', '4', 'hp', 'Remove', '', '1', 'Nuwan Athukorala', '2020-10-25 02:23:56', '2020-10-25 02:23:56'),
(24, 'Physical', 'vsdzf66', 'vsdf', '4', '7', 'HP DL320 G8 V2', 'Create', '', '1', 'Nuwan Athukorala', '2020-11-01 10:11:00', '2020-11-01 10:11:00'),
(25, 'Physical', 'CN711907BCE', '18508', 'RACK 0001', '20', 'DL320 G8 V2', 'Create', '', '1', 'Nuwan Athukorala', '2020-11-01 10:14:04', '2020-11-01 10:14:04'),
(26, 'Physical', 'CN711907BC', '18472', 'R001', '29', 'HP DL 160 G6', 'Create', '', '1', 'Nuwan Athukorala', '2020-11-01 10:20:31', '2020-11-01 10:20:31'),
(27, 'Physical', 'vsdzf', '185083', 'RACK 0001', '7', 'HP DL320 G8 V2', 'Create', '', '1', 'Nuwan Athukorala', '2020-11-01 10:25:36', '2020-11-01 10:25:36'),
(28, 'Physical', 'vsdzf66222', '18508554', '4', '6', 'bdv', 'Create', '', '1', 'Nuwan Athukorala', '2020-11-01 10:51:14', '2020-11-01 10:51:14'),
(29, 'Physical', 'CN711907BC', '18472', 'R001', '29', 'HP DL 160 G6', 'Remove', '', '1', 'Nuwan Athukorala', '2020-11-01 10:52:12', '2020-11-01 10:52:12'),
(30, 'Physical', 'CN711907BC', '18472', 'RACK 0001', '29', 'HP DL320 G8 V2', 'Create', '', '1', 'Nuwan Athukorala', '2020-11-01 11:07:10', '2020-11-01 11:07:10'),
(31, 'Physical', 'vsdzf66', '65543', '4', '9', 'HP', 'Update', '', '1', 'Nuwan Athukorala', '2020-11-25 12:45:09', '2020-11-25 12:45:09'),
(32, 'Physical', 'vsdzf66', '65543', '4', '9', 'HP', 'Update', '', '1', 'Nuwan Athukorala', '2020-11-25 12:55:37', '2020-11-25 12:55:37'),
(33, 'Physical', 'vsdzf66', '65543', '4', '9', 'HP', 'Update', '', '1', 'Nuwan Athukorala', '2020-11-25 12:57:23', '2020-11-25 12:57:23'),
(34, 'Physical', 'vsdzf66', '65543', '4', '9', 'HP', 'Update', '', '1', 'Nuwan Athukorala', '2020-11-25 12:57:46', '2020-11-25 12:57:46'),
(35, 'NAS', 'CN711907BCE', '34333', 'RACK 0005', '7', 'HP DL320 G8 V2', 'Create', '', '1', 'Nuwan Athukorala', '2020-11-25 13:47:29', '2020-11-25 13:47:29'),
(36, 'NAS', 'vsdzf66', '4432', 'hbxfgx4', '5', 'bsdfv', 'Create', '', '1', 'Nuwan Athukorala', '2020-11-25 13:56:07', '2020-11-25 13:56:07'),
(37, 'Switch', 'CN711907BCE43', '5453', 'RACK 00015', '5', '6543g', 'Create', '', '1', 'Nuwan Athukorala', '2020-11-25 14:00:30', '2020-11-25 14:00:30'),
(38, 'NAS', 'vsdzf66', '4432', 'hbxfgx4', '5', 'bsdfv', 'Update', '', '1', 'Nuwan Athukorala', '2020-12-07 12:33:48', '2020-12-07 12:33:48'),
(39, 'NAS', 'vsdzf66', '4432', 'hbxfgx4', '5', 'bsdfv', 'Update', '', '1', 'Nuwan Athukorala', '2020-12-07 12:34:04', '2020-12-07 12:34:04'),
(40, 'NAS', 'vsdzf66', '4432', 'hbxfgx4', '5', 'bsdfv', 'Update', '', '1', 'Nuwan Athukorala', '2020-12-07 12:35:41', '2020-12-07 12:35:41'),
(41, 'NAS', 'vsdzf66', '4432', 'hbxfgx4', '5', 'bsdfv', 'Update', '', '1', 'Nuwan Athukorala', '2020-12-07 12:36:25', '2020-12-07 12:36:25'),
(42, 'NAS', 'vsdzf66', '4432', 'hbxfgx4', '5', 'bsdfv', 'Update', '', '1', 'Nuwan Athukorala', '2020-12-07 12:42:22', '2020-12-07 12:42:22'),
(43, 'NAS', 'vsdzf66', '4432', 'hbxfgx4', '5', 'bsdfv', 'Update', '', '1', 'Nuwan Athukorala', '2020-12-07 12:43:38', '2020-12-07 12:43:38'),
(44, 'NAS', 'vsdzf66', '4432', 'hbxfgx4', '5', 'bsdfv', 'Update', '', '1', 'Nuwan Athukorala', '2020-12-07 12:43:51', '2020-12-07 12:43:51'),
(45, 'NAS', 'vsdzf66', '4432', 'hbxfgx4', '5', 'bsdfv', 'Update', '', '1', 'Nuwan Athukorala', '2020-12-07 12:57:52', '2020-12-07 12:57:52'),
(46, 'Physical', 'vsfasd', '34534', 'gt44', '453', 'fdfsd', 'Create', '', '1', 'Nuwan Athukorala', '2020-12-07 12:58:54', '2020-12-07 12:58:54'),
(47, 'Physical', 'bdgdrg', 'grgert', 'bdfg', 'gge', 'grge', 'Create', '', '1', 'Nuwan Athukorala', '2020-12-07 21:02:53', '2020-12-07 21:02:53'),
(48, 'NAS', 'vsdzf66', '4432', 'hbxfgx4', '5', 'bsdfv', 'Update', '', '1', 'Nuwan Athukorala', '2020-12-07 21:10:32', '2020-12-07 21:10:32'),
(49, 'Physical', 'vsdzf66222', '18508554', '4', '6', 'bdv', 'Power off', '', '1', 'Nuwan Athukorala', '2020-12-10 10:20:07', '2020-12-10 10:20:07'),
(50, 'Physical', 'vsfasd', '34534', 'gt44', '453', 'fdfsd', 'Power off', '', '1', 'Nuwan Athukorala', '2020-12-10 10:29:34', '2020-12-10 10:29:34'),
(51, 'Physical', 'vsfasd', '34534', 'gt44', '453', 'fdfsd', 'Power off', '', '1', 'Nuwan Athukorala', '2020-12-10 10:30:50', '2020-12-10 10:30:50'),
(52, 'Physical', 'vsfasd', '34534', 'gt44', '453', 'fdfsd', 'Power off', '', '1', 'Nuwan Athukorala', '2020-12-10 10:33:23', '2020-12-10 10:33:23'),
(53, 'Physical', 'vsdzf', '185083', 'RACK 0001', '7', 'HP DL320 G8 V2', 'Power off', '', '1', 'Nuwan Athukorala', '2020-12-10 10:33:29', '2020-12-10 10:33:29'),
(54, 'Physical', 'vsdzf', '185083', 'RACK 0001', '7', 'HP DL320 G8 V2', 'Power off', '', '1', 'Nuwan Athukorala', '2020-12-10 10:33:34', '2020-12-10 10:33:34'),
(55, 'Physical', 'vsdzf66222', '18508554', '4', '6', 'bdv', 'Power off', 'test', '1', 'Nuwan Athukorala', '2020-12-10 11:21:02', '2020-12-10 11:21:02'),
(56, 'Physical', 'CN711907BC', '18472', 'RACK 0001', '29', 'HP DL320 G8 V2', 'Remove', '', '1', 'Nuwan Athukorala', '2020-12-10 11:25:22', '2020-12-10 11:25:22'),
(57, 'Physical', 'vsdzf66222', '18508554', '4', '6', 'bdv', 'Remove', '', '1', 'Nuwan Athukorala', '2020-12-10 11:27:31', '2020-12-10 11:27:31'),
(58, 'Physical', 'bdgdrg', 'grgert', 'bdfg', 'gge', 'grge', 'Update', '', '1', 'Nuwan Athukorala', '2020-12-10 11:34:21', '2020-12-10 11:34:21'),
(59, 'Physical', 'bdgdrg', 'grgert', 'bdfg', 'gge', 'grge', 'Update', '', '1', 'Nuwan Athukorala', '2020-12-10 11:48:51', '2020-12-10 11:48:51'),
(60, 'Physical', 'vsdzf', '43322', '4', '7', 'HP', 'Remove', '', '1', 'Nuwan Athukorala', '2020-12-10 11:49:03', '2020-12-10 11:49:03'),
(61, 'Physical', 'dfvds', '43322', 'vdfvds', 'dsgsdf', 'bdvds', 'Create', '', '1', 'Nuwan Athukorala', '2020-12-10 11:51:46', '2020-12-10 11:51:46'),
(62, 'Physical', 'CN711907BCE', '18508', 'RACK 0001', '20', 'DL320 G8 V2', 'Remove', '', '1', 'Nuwan Athukorala', '2020-12-10 12:08:13', '2020-12-10 12:08:13'),
(63, 'Physical', 'vsdzf', '185083', 'RACK 0001', '7', 'HP DL320 G8 V2', 'Remove', '', '1', 'Nuwan Athukorala', '2020-12-10 12:08:26', '2020-12-10 12:08:26'),
(64, 'Physical', 'vsdzf', '185083', 'RACK 0001', '7', 'HP DL320 G8 V2', 'Remove', '', '1', 'Nuwan Athukorala', '2020-12-10 12:09:39', '2020-12-10 12:09:39'),
(65, 'Physical', 'vsdzf', '185083', 'RACK 0001', '7', 'HP DL320 G8 V2', 'Remove', '', '1', 'Nuwan Athukorala', '2020-12-10 12:11:13', '2020-12-10 12:11:13'),
(66, 'Physical', 'vsdzf', '185083', 'RACK 0001', '7', 'HP DL320 G8 V2', 'Remove', '', '1', 'Nuwan Athukorala', '2020-12-10 12:11:59', '2020-12-10 12:11:59'),
(67, 'Physical', 'gefwedse', 'fswsad', '5', '6', 'dfgd', 'Remove', '', '1', 'Nuwan Athukorala', '2020-12-10 12:12:21', '2020-12-10 12:12:21'),
(68, 'Physical', 'fdfs', '34234', 'vdsf', 'dsf', 'dgsg', 'Create', '', '1', 'Nuwan Athukorala', '2020-12-12 10:22:07', '2020-12-12 10:22:07'),
(69, 'Physical', 'dfvds', '43322', 'vdfvds', 'dsgsdf', 'bdvds', 'Update', '', '1', 'Nuwan Athukorala', '2020-12-12 10:37:56', '2020-12-12 10:37:56'),
(70, 'NAS', 'dsvf', 'sf', 'fse', 'sdfs', 'sdf', 'Create', '', '1', '<NAME>', '2020-12-12 10:38:39', '2020-12-12 10:38:39');
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(8, '2019_08_19_000000_create_failed_jobs_table', 2),
(9, '2020_09_13_052357_create_serverdetails_table', 2),
(10, '2020_09_13_083600_create_followups_table', 2),
(11, '2020_10_18_082042_create_py_vir_server_tables_table', 3),
(12, '2020_10_24_103431_create_py_vir_serve_followups_table', 4);
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `py_vir_server_tables`
--
CREATE TABLE `py_vir_server_tables` (
`id` bigint(20) UNSIGNED NOT NULL,
`virtual_serv_token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`vir_machine_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`virtual_machine_ip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`virtual_machine_os` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`virtual_apps` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`added_user_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`added_user` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`vir_status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `py_vir_server_tables`
--
INSERT INTO `py_vir_server_tables` (`id`, `virtual_serv_token`, `vir_machine_name`, `virtual_machine_ip`, `virtual_machine_os`, `virtual_apps`, `added_user_id`, `added_user`, `vir_status`, `created_at`, `updated_at`) VALUES
(5, '85770', 'wfsd', 'saad', 'asD', 'f', '1', 'Nuwan Athukorala', '1', NULL, NULL),
(6, '85770', 'csad', 'dawdaS', 'WAD', 'a', '1', 'Nuwan Athukorala', '1', NULL, NULL),
(7, '12568', 'wfsd', 'saad', 'asD', 'f', '1', 'Nuwan Athukorala', '1', NULL, NULL),
(8, '12568', 'csad', 'dawdaS', 'WAD', 'a', '1', 'Nuwan Athukorala', '1', NULL, NULL),
(9, '15625', 'lkjkjk', 'ghj', 'hjbhj', 'g', '1', 'Nuwan Athukorala', '1', NULL, NULL),
(10, '17064', 'dfsdf', 'vsdc', 'esd', 'f', '1', 'Nuwan Athukorala', '1', NULL, NULL),
(11, '17064', 'vdsfds', 'vdsfgg', 'vdsfsfcs', 'd', '1', 'Nuwan Athukorala', '1', NULL, NULL),
(12, '13241', 'bdfgvg', 'dsgdsf', 'gsdf', 'g', '1', 'Nuwan Athukorala', '1', NULL, NULL),
(13, '12939', 'sds', 'gefv', 'ew', 'f', '1', 'Nuwan Athukorala', '0', NULL, '2020-12-10 12:12:21'),
(14, '63189', 'gaesf', 'fas', 'sda', 'f', '1', 'Nuwan Athukorala', '0', NULL, '2020-10-24 23:38:35'),
(15, '63189', 'fsad', 'ad', 'asdcad', 'w', '1', 'Nuwan Athukorala', '0', NULL, '2020-10-24 23:38:36'),
(16, '85998', 'hgerdrf', 'fsdfc', 'sdfv', 'e', '1', 'Nuwan Athukorala', '1', NULL, NULL),
(17, '85998', 'fcasdc', 'asdca', 'fasfas', 's', '1', 'Nuwan Athukorala', '1', NULL, NULL),
(18, '1912', 'TCS Server', '192.168.1.1', 'Windows', 'TCS', '1', 'Nuwan Athukorala', '1', NULL, '2020-11-25 13:13:57'),
(19, '1912', 'IT Workflow', '192.168.10.49', 'Windows', 'C', '1', 'Nuwan Athukorala', '0', NULL, '2020-10-24 10:37:16'),
(20, '1912', 'VDS', 'VDSF', 'DSFF', 'VDSF', '1', 'Nuwan Athukorala', '0', '2020-10-24 06:10:39', '2020-10-24 23:36:06'),
(21, '85998', 'hgfg', 'gfgf', 'hgjmn', 'nghgh', '1', 'Nuwan Athukorala', '0', '2020-10-24 06:12:04', '2020-10-24 10:43:07'),
(22, '63189', 'cb', 'cvb', 'bfvd', 'vdfsdd', '1', 'Nuwan Athukorala', '0', '2020-10-24 06:13:32', '2020-10-24 23:38:40'),
(23, '63189', 'cb', 'cvb', 'bfvd', 'vdfsdd', '1', 'Nuwan Athukorala', '0', '2020-10-24 06:14:54', '2020-10-24 23:38:38'),
(24, '85998', 'vdsc', 'sdvdvfv', 'bfd', 'vdsfs', '1', 'Nuwan Athukorala', '1', '2020-10-24 06:17:28', '2020-10-24 06:17:28'),
(25, '17064', 'sdc', 'asc', 'avscvb', 'vd', '1', 'Nuwan Athukorala', '1', '2020-10-24 06:18:27', '2020-10-24 06:18:27'),
(26, '17064', 'aa', 'asc', 'avscvb', 'vd', '1', 'Nuwan Athukorala', '1', '2020-10-24 06:18:48', '2020-10-24 06:18:48'),
(27, '85998', 'bbdfg', 'dgsdf', 'dsfs', 'ggggg', '1', 'Nuwan Athukorala', '0', '2020-10-24 10:43:21', '2020-10-24 10:43:25'),
(28, '1912', 'gef', 'dsf', 'ewa', 'sghhh', '1', 'Nuwan Athukorala', '0', '2020-10-24 10:46:12', '2020-10-24 23:36:04'),
(29, '1912', 'dfvsd', 'ggg', 'ggdd', 'ggggggg', '1', 'Nuwan Athukorala', '0', '2020-10-24 10:46:25', '2020-10-24 10:46:27'),
(30, '12939', 'fwaf', 'wefw', 'gwaef', 'verwerwe|fwerqw', '1', 'Nuwan Athukorala', '0', '2020-10-24 21:50:09', '2020-10-24 21:52:36'),
(31, '1912', 'dfvd', 'dsv', 'fvdsf', 'vdvdf|vdsfsf', '1', 'Nuwan Athukorala', '1', '2020-10-24 21:51:15', '2020-10-24 21:51:15'),
(32, '12939', 'vdsfd', 'sdvsdf', 'sdsafaf', 'vdfsef|fffff', '1', 'Nuwan Athukorala', '0', '2020-10-24 21:52:28', '2020-12-10 12:12:21'),
(33, '28085', 'fds', 'sfsd', 'sdw', 'gdghh|gggg', '1', 'Nuwan Athukorala', '1', '2020-10-24 23:16:12', '2020-10-24 23:16:12'),
(34, '49041', 'fds', 'sfsd', 'sdw', 'gdghh|gggg', '1', 'Nuwan Athukorala', '1', '2020-10-24 23:16:20', '2020-10-24 23:16:20'),
(35, '9477', 'fds', 'sfsd', 'sdw', 'gdghh|gggg', '1', 'Nuwan Athukorala', '1', '2020-10-24 23:17:36', '2020-10-24 23:17:36'),
(36, '23424', 'fdg', 'gdsf', 'gesfs', 'gdghh|gggg|fsdfs', '1', 'Nuwan Athukorala', '1', '2020-10-24 23:18:35', '2020-10-24 23:18:35'),
(37, '23424', 'bdfv', 'dcf', 'sc', 'vscsd|vdxcsca', '1', 'Nuwan Athukorala', '1', '2020-10-24 23:23:52', '2020-10-24 23:23:52'),
(38, '23424', 'fvdsf', 'fsf', 'gvge', 'gsdfs|dfdsd', '1', 'Nuwan Athukorala', '1', '2020-10-24 23:27:49', '2020-10-24 23:27:49'),
(39, '23424', 'vc cv', 'cvb', 'dcv bcdxv', 'cvcxv|cvcv', '1', 'Nuwan Athukorala', '1', '2020-10-24 23:34:18', '2020-10-24 23:34:18'),
(40, '1912', 'dvxcv', 'csv', 'szv', 'vdsv|vxvscxv', '1', 'Nuwan Athukorala', '1', '2020-10-24 23:35:19', '2020-10-24 23:35:19'),
(41, '1912', 'vvd', 'zv', 'sdv', 'ss|aa|vv', '1', 'Nuwan Athukorala', '0', '2020-10-24 23:35:49', '2020-10-24 23:36:02'),
(42, '63189', 'dvcxv', 'vczdx', 'vdcv', 'fff|ggg|hhh', '1', 'Nuwan Athukorala', '1', '2020-10-24 23:37:51', '2020-10-24 23:37:51'),
(43, '63189', 'fdsfds', 'gdsvsz', 'dszfs', 'www|eee|rrr', '1', 'Nuwan Athukorala', '1', '2020-10-24 23:38:10', '2020-10-24 23:38:10'),
(44, '63189', 'dvd', 'vdv', 'fdsfsf', 'bbb|gggg|nnn', '1', 'Nuwan Athukorala', '1', '2020-10-24 23:38:29', '2020-10-24 23:38:29'),
(45, '63189', 'grgwe', 'erfrwae', 'fesfrw', 'efrer|ewerwr|erwer', '1', 'Nuwan Athukorala', '1', '2020-10-24 23:38:54', '2020-10-24 23:38:54'),
(46, '63189', 'vdscf', 'csad', 'sadf', 'dfsdfasdAFSGDHDHFDGDSFSFWRW|FFSFDFGFGDFHGvddg', '1', 'Nuwan Athukorala', '0', '2020-10-24 23:39:27', '2020-10-25 04:05:24'),
(47, '29505', 'User Backup – Life', '192.168.192.67', 'Win Svr 2012 R2 Std', 'U', '1', 'Nuwan Athukorala', '1', NULL, NULL),
(48, '29505', 'User Backup – General', '192.168.192.210', 'Win Svr 2008 R2 Ent', 's', '1', 'Nuwan Athukorala', '1', NULL, NULL),
(49, '29505', 'sdasd', '192.168.1.1', 'windows', 'ddddd|sssss', '1', 'Nuwan Athukorala', '1', '2020-11-01 10:23:23', '2020-11-01 10:23:23'),
(50, '83619', 'dsfcs', 'vdsfsf', 'vdsfawdwa', 'g', '1', 'Nuwan Athukorala', '0', NULL, '2020-12-10 12:11:13'),
(51, '60173', 'vsefcsf', '192.168.1.1', 'dsf', 'fffff|ddddd', '1', 'Nuwan Athukorala', '1', NULL, NULL),
(52, '8737', 'User Backup – Life', '192.168.192.67', 'Win Svr 2012 R2 Std', 'User Backup – Life', '1', 'Nu<NAME>', '1', NULL, NULL),
(53, '8737', 'User Backup – General', '192.168.192.210', 'Win Svr 2008 R2 Ent', 'User Backup – General', '1', 'Nuwan Athukorala', '1', NULL, NULL),
(54, '89314', 'User Backup – Life', '192.168.192.67', 'Win Svr 2012 R2 Std', 'User Backup – Life', '1', 'Nu<NAME>', '1', NULL, NULL),
(55, '89314', 'User Backup – General', '192.168.192.210', 'Win Svr 2008 R2 Ent', 'User Backup – General', '1', 'Nu<NAME>', '1', NULL, NULL),
(56, '64413', 'User Backup – Life', '192.168.192.67', 'Win Svr 2012 R2 Std', 'User Backup – Life', '1', 'Nu<NAME>', '1', NULL, NULL),
(57, '64413', 'User Backup – General', '192.168.192.210', 'Win Svr 2008 R2 Ent', 'User Backup – General', '1', 'Nu<NAME>', '1', NULL, NULL),
(58, '68299', 'Win server 2012 R2', '192.168.192.67', 'Win server 2012 R2', 'User Backup – Life', '1', 'Nu<NAME>', '1', NULL, NULL),
(59, '68299', 'User Backup – General', '192.168.192.210', 'Win Svr 2008 R2 Ent', 'User Backup – General', '1', 'Nuwan Athukorala', '1', NULL, NULL),
(60, '39613', 'gdsd', '192.168.1.1', 'was', 'vsdv|sadas', '1', 'Nuwan Athukorala', '1', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `py_vir_serve_followups`
--
CREATE TABLE `py_vir_serve_followups` (
`id` bigint(20) UNSIGNED NOT NULL,
`vm_server_token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`vm_server_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`vm_server_update_user_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`vm_server_update_user` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`vm_server_status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `py_vir_serve_followups`
--
INSERT INTO `py_vir_serve_followups` (`id`, `vm_server_token`, `vm_server_name`, `vm_server_update_user_id`, `vm_server_update_user`, `vm_server_status`, `created_at`, `updated_at`) VALUES
(1, '1912', 'TCS Server', '1', 'Nuwan Athukorala', 'Create', NULL, NULL),
(2, '1912', 'IT Workflow', '1', 'Nuwan Athukorala', 'Create', NULL, NULL),
(3, '1912', 'VDS', '1', 'Nuwan Athukorala', 'Update', '2020-10-24 06:10:39', '2020-10-24 06:10:39'),
(4, '85998', 'hgfg', '1', 'Nu<NAME>ukorala', 'Update', '2020-10-24 06:12:06', '2020-10-24 06:12:06'),
(5, '63189', 'cb', '1', 'Nuwan Athukorala', 'Update', '2020-10-24 06:13:32', '2020-10-24 06:13:32'),
(6, '63189', 'cb', '1', '<NAME>', 'Update', '2020-10-24 06:14:54', '2020-10-24 06:14:54'),
(7, '85998', 'vdsc', '1', '<NAME>', 'Update', '2020-10-24 06:17:28', '2020-10-24 06:17:28'),
(8, '17064', 'sdc', '1', '<NAME>', 'Update', '2020-10-24 06:18:27', '2020-10-24 06:18:27'),
(9, '17064', 'aa', '1', 'Nuwan Athukorala', 'Update', '2020-10-24 06:18:48', '2020-10-24 06:18:48'),
(10, '1912', 'VDS', '1', 'Nuwan Athukorala', 'Remove', '2020-10-24 10:42:29', '2020-10-24 10:42:29'),
(11, '85998', 'hgfg', '1', 'Nu<NAME>thukorala', 'Remove', '2020-10-24 10:43:07', '2020-10-24 10:43:07'),
(12, '85998', 'bbdfg', '1', 'Nuwan Athukorala', 'Update', '2020-10-24 10:43:21', '2020-10-24 10:43:21'),
(13, '85998', 'bbdfg', '1', '<NAME>', 'Remove', '2020-10-24 10:43:25', '2020-10-24 10:43:25'),
(14, '1912', 'gef', '1', '<NAME>', 'Update', '2020-10-24 10:46:12', '2020-10-24 10:46:12'),
(15, '1912', 'dfvsd', '1', '<NAME>', 'Update', '2020-10-24 10:46:25', '2020-10-24 10:46:25'),
(16, '1912', 'dfvsd', '1', 'Nuwan Athukorala', 'Remove', '2020-10-24 10:46:27', '2020-10-24 10:46:27'),
(17, '12939', 'fwaf', '1', 'Nuwan Athukorala', 'Update', '2020-10-24 21:50:09', '2020-10-24 21:50:09'),
(18, '1912', 'dfvd', '1', 'Nu<NAME>thukorala', 'Update', '2020-10-24 21:51:15', '2020-10-24 21:51:15'),
(19, '12939', 'vdsfd', '1', 'Nuwan Athukorala', 'Update', '2020-10-24 21:52:28', '2020-10-24 21:52:28'),
(20, '12939', 'fwaf', '1', 'Nuwan Athukorala', 'Remove', '2020-10-24 21:52:36', '2020-10-24 21:52:36'),
(21, '9477', 'fds', '1', 'Nuwan Athukorala', 'Update', '2020-10-24 23:17:36', '2020-10-24 23:17:36'),
(22, '23424', 'fdg', '1', 'Nuwan Athukorala', 'Update', '2020-10-24 23:18:35', '2020-10-24 23:18:35'),
(23, '23424', 'bdfv', '1', 'Nuwan Athukorala', 'Update', '2020-10-24 23:23:53', '2020-10-24 23:23:53'),
(24, '23424', 'fvdsf', '1', 'Nuwan Athukorala', 'Update', '2020-10-24 23:27:49', '2020-10-24 23:27:49'),
(25, '23424', 'vc cv', '1', 'Nuwan Athukorala', 'Update', '2020-10-24 23:34:18', '2020-10-24 23:34:18'),
(26, '1912', 'dvxcv', '1', 'Nuwan Athukorala', 'Update', '2020-10-24 23:35:19', '2020-10-24 23:35:19'),
(27, '1912', 'vvd', '1', 'Nuwan Athukorala', 'Update', '2020-10-24 23:35:51', '2020-10-24 23:35:51'),
(28, '1912', 'vvd', '1', 'Nuwan Athukorala', 'Remove', '2020-10-24 23:36:02', '2020-10-24 23:36:02'),
(29, '1912', 'TCS Server', '1', 'Nu<NAME>thukorala', 'Remove', '2020-10-24 23:36:03', '2020-10-24 23:36:03'),
(30, '1912', 'gef', '1', 'Nuwan Athukorala', 'Remove', '2020-10-24 23:36:04', '2020-10-24 23:36:04'),
(31, '1912', 'VDS', '1', 'Nuwan Athukorala', 'Remove', '2020-10-24 23:36:06', '2020-10-24 23:36:06'),
(32, '63189', 'dvcxv', '1', '<NAME>', 'Update', '2020-10-24 23:37:51', '2020-10-24 23:37:51'),
(33, '63189', 'fdsfds', '1', '<NAME>', 'Update', '2020-10-24 23:38:10', '2020-10-24 23:38:10'),
(34, '63189', 'dvd', '1', '<NAME>', 'Update', '2020-10-24 23:38:29', '2020-10-24 23:38:29'),
(35, '63189', 'gaesf', '1', 'Nuwan Athukorala', 'Remove', '2020-10-24 23:38:35', '2020-10-24 23:38:35'),
(36, '63189', 'fsad', '1', 'Nuwan Athukorala', 'Remove', '2020-10-24 23:38:36', '2020-10-24 23:38:36'),
(37, '63189', 'cb', '1', 'Nuwan Athukorala', 'Remove', '2020-10-24 23:38:38', '2020-10-24 23:38:38'),
(38, '63189', 'cb', '1', 'Nuwan Athukorala', 'Remove', '2020-10-24 23:38:40', '2020-10-24 23:38:40'),
(39, '63189', 'grgwe', '1', 'Nuwan Athukorala', 'Update', '2020-10-24 23:38:54', '2020-10-24 23:38:54'),
(40, '63189', 'vdscf', '1', 'Nuwan Athukorala', 'Update', '2020-10-24 23:39:29', '2020-10-24 23:39:29'),
(41, '63189', 'vdscf', '1', 'Nuwan Athukorala', 'Remove', '2020-10-25 04:05:24', '2020-10-25 04:05:24'),
(42, '29505', 'User Backup – Life', '1', 'Nuwan Athukorala', 'Create', NULL, NULL),
(43, '29505', 'User Backup – General', '1', 'Nuwan Athukorala', 'Create', NULL, NULL),
(44, '29505', 'sdasd', '1', 'Nuwan Athukorala', 'Update', '2020-11-01 10:23:24', '2020-11-01 10:23:24'),
(45, '83619', 'dsfcs', '1', 'Nuwan Athukorala', 'Create', NULL, NULL),
(46, '60173', 'vsefcsf', '1', 'Nuwan Athukorala', 'Create', NULL, NULL),
(47, '8737', 'User Backup – Life', '1', 'Nuwan Athukorala', 'Create', NULL, NULL),
(48, '8737', 'User Backup – General', '1', 'Nuwan Athukorala', 'Create', NULL, NULL),
(49, '89314', 'User Backup – Life', '1', 'Nuwan Athukorala', 'Create', NULL, NULL),
(50, '89314', 'User Backup – General', '1', 'Nuwan Athukorala', 'Create', NULL, NULL),
(51, '64413', 'User Backup – Life', '1', 'Nuwan Athukorala', 'Create', NULL, NULL),
(52, '64413', 'User Backup – General', '1', 'Nuwan Athukorala', 'Create', NULL, NULL),
(53, '68299', 'Win server 2012 R2', '1', 'Nuwan Athukorala', 'Create', NULL, NULL),
(54, '68299', 'User Backup – General', '1', 'Nuwan Athukorala', 'Create', NULL, NULL),
(55, '1912', 'TCS Server', '1', 'Nuwan Athukorala', 'Remove', '2020-11-25 13:12:03', '2020-11-25 13:12:03'),
(56, '1912', 'TCS Server', '1', 'Nuwan Athukorala', 'Remove', '2020-11-25 13:13:57', '2020-11-25 13:13:57'),
(57, '39613', 'gdsd', '1', 'Nuwan Athukorala', 'Create', NULL, NULL),
(58, '83619', 'dsfcs', '1', 'Nuwan Athukorala', 'Remove', '2020-12-10 12:10:44', '2020-12-10 12:10:44');
-- --------------------------------------------------------
--
-- Table structure for table `serverdetails`
--
CREATE TABLE `serverdetails` (
`id` bigint(20) UNSIGNED NOT NULL,
`Physial_or_Virtual` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`availble_vm` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`virtual_serv_token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Serial_No` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Asset_No` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`serv_location` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Purchase_year` date NOT NULL,
`Rack_No` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Rack_unit_No` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`product_and_modal` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`vir_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`ip_address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`vir_ipadd` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`OS` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`vir_os` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Applications` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`vir_application` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`py_spec_processor` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`py_spec_ram` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Created_user_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Created_by` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`power_status` tinyint(1) NOT NULL DEFAULT 1,
`Status` tinyint(1) NOT NULL DEFAULT 1,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `serverdetails`
--
INSERT INTO `serverdetails` (`id`, `Physial_or_Virtual`, `availble_vm`, `virtual_serv_token`, `Serial_No`, `Asset_No`, `serv_location`, `Purchase_year`, `Rack_No`, `Rack_unit_No`, `product_and_modal`, `vir_name`, `ip_address`, `vir_ipadd`, `OS`, `vir_os`, `Applications`, `vir_application`, `py_spec_processor`, `py_spec_ram`, `Created_user_id`, `Created_by`, `power_status`, `Status`, `created_at`, `updated_at`) VALUES
(7, 'Virtual', 'Yes', '85770', 'vsdzf66', '33444', '', '2020-10-18', '5', '4', 'hp', '', '10.109.1.74', '', 'Windows', '', '|TCS', '', '', '', '1', 'Nuwan Athukorala', 1, 0, '2020-10-18 05:51:36', '2020-10-24 12:09:33'),
(8, 'Physical', 'Yes', '12568', 'vsdzf66', '33444', '', '2020-10-18', '5', '4', 'hp', '', '10.109.1.74', '', 'Windows', '', '|TCS', '', '', '', '1', 'Nuwan Athukorala', 1, 0, '2020-10-18 06:49:12', '2020-10-25 02:23:56'),
(9, 'Physical', 'Yes', '15625', 'vsdzf66', '98090', '', '2020-10-18', '6', '5', 'HP', '', '10.221.159.78', '', 'Windows', '', '|tcs|main', '', '', '', '1', '<NAME>', 1, 1, '2020-10-18 06:55:55', '2020-10-18 06:55:55'),
(10, 'Physical', 'Yes', '17064', 'vvdvf', '5665', '', '2020-10-18', '4', '6', 'bdv', '', '10.109.1.74', '', 'Windows', '', '|tsc', '', '', '', '1', '<NAME>', 1, 1, '2020-10-18 07:08:56', '2020-10-18 07:08:56'),
(11, 'Physical', 'Yes', '12939', 'gefwedse', 'fswsad', '', '2020-10-08', '5', '6', 'dfgd', '', '10.221.159.221', '', 'gred', '', '|gdfd|sdfs', '', '', '', '1', '<NAME>', 1, 0, '2020-10-18 07:11:19', '2020-12-10 12:12:21'),
(12, 'Physical', 'Yes', '63189', 'vsdzf', '6554', '', '2020-10-18', '4', '6', 'bdv', '', '10.109.3.131', '', 'gred', '', '|jjgfhfgh|hrdgdf', '', '', '', '1', '<NAME>', 1, 1, '2020-10-18 07:15:05', '2020-10-18 07:15:05'),
(13, 'Virtual', 'No', '', '', '', '', '2020-10-18', '', '', '', 'TCS Server', '', '10.100.4.5', '', 'Windows', '', '|app|non app', '', '', '1', '<NAME>', 1, 0, '2020-10-18 10:39:05', '2020-10-24 12:09:43'),
(14, 'Virtual', 'No', '', '', '', '', '2020-10-18', '', '', '', 'TCS Server', '', '10.100.4.5', '', 'Windows', '', '|app|non app', '', '', '1', '<NAME>', 1, 0, '2020-10-18 10:39:34', '2020-10-24 12:09:38'),
(15, 'Physical', 'Yes', '85998', 'vsdzf66gg', '3222', '', '2020-10-24', '4', '6', 'bdv', '', '10.109.3.123', '', 'Windows', '', '|tcs', '', '', '', '1', '<NAME>', 1, 0, '2020-10-18 12:19:25', '2020-10-24 12:04:49'),
(16, 'Physical', 'Yes', '1912', 'vsdzf66', '65543', '', '2020-10-24', '4', '9', 'HP', '', '192.168.12.1', '', 'Windows', '', 'One UI|TCS', '', '', '', '1', '<NAME>', 1, 1, '2020-10-24 05:46:43', '2020-11-25 12:57:46'),
(17, 'Physical', 'Yes', '23424', 'vsdzf', '43322', '', '2020-10-25', '4', '7', 'HP', '', '10.109.3.131', '', 'Windows', '', 'TCS|workflow', '', '', '', '1', '<NAME>', 1, 0, '2020-10-24 22:14:42', '2020-12-10 11:49:03'),
(18, 'Physical', 'No', '', 'vsdzf66', 'vsdf', '', '2020-11-01', '4', '7', 'HP DL320 G8 V2', '', '10.221.159.78', '', 'Linux 5.8', '', 'linu', '', '', '', '1', '<NAME>', 1, 1, '2020-11-01 10:11:00', '2020-11-01 10:11:00'),
(19, 'Physical', 'No', '', 'CN711907BCE', '18508', '', '2020-10-01', 'RACK 0001', '20', 'DL320 G8 V2', '', '192.168.10.58', '', 'Linux 5.8', '', 'Takaful App', '', '', '', '1', '<NAME>orala', 1, 1, '2020-11-01 10:14:03', '2020-11-01 10:14:03'),
(20, 'Physical', 'Yes', '29505', 'CN711907BC', '18472', '', '2020-11-01', 'R001', '29', 'HP DL 160 G6', '', '192.168.192.79', '', 'Windows 2012-R2 standard', '', 'User Backup – Life|User Backup – General', '', '', '', '1', '<NAME>', 1, 0, '2020-11-01 10:20:31', '2020-11-01 10:52:12'),
(21, 'Physical', 'Yes', '83619', 'vsdzf', '185083', '', '2020-11-01', 'RACK 0001', '7', 'HP DL320 G8 V2', '', '10.109.1.74', '', 'Linux 5.8', '', 'wwwwww|ssssss', '', '', '', '1', '<NAME>', 1, 0, '2020-11-01 10:25:36', '2020-12-10 12:11:59'),
(22, 'Physical', 'Yes', '60173', 'vsdzf66222', '18508554', '', '2020-11-01', '4', '6', 'bdv', '', '192.168.10.58', '', 'Windows', '', 'sssss|fffff', '', '', '', '1', 'Nu<NAME>', 0, 0, '2020-11-01 10:51:14', '2020-12-10 11:27:31'),
(23, 'Physical', 'Yes', '68299', 'CN711907BC', '18472', '', '2020-10-01', 'RACK 0001', '29', 'HP DL320 G8 V2', '', '192.168.192.79', '', 'Windows 2012-R2 standard', '', 'User Backup – Life', '', '', '', '1', '<NAME>', 1, 0, '2020-11-01 11:07:10', '2020-12-10 11:25:22'),
(24, 'NAS', 'No', '', 'vsdzf66', '4432', 'DR Site', '2020-11-25', 'hbxfgx4', '5', 'bsdfv', '', '10.221.159.78', '', '', '', '', '', '', '', '1', '<NAME>', 1, 1, '2020-11-25 13:56:06', '2020-12-07 21:10:32'),
(25, 'Switch', 'No', '', 'CN711907BCE43', '5453', '', '2020-11-25', 'RACK 00015', '5', '6543g', '', '', '', '', '', '', '', '', '', '1', '<NAME>', 1, 1, '2020-11-25 14:00:30', '2020-11-25 14:00:30'),
(26, 'Physical', 'Yes', '39613', 'vsfasd', '34534', '', '2020-12-07', 'gt44', '453', 'fdfsd', '', 'sdgsf', '', 'sds', '', 'gess|dsgsf', '', '', '', '1', 'Nuwan Athukorala', 1, 1, '2020-12-07 12:58:54', '2020-12-10 10:33:23'),
(27, 'Physical', 'No', '', 'bdgdrg', 'grgert', 'DR Site', '2020-12-08', 'bdfg', 'gge', 'grge', '', 'gert', '', 'gegeg', '', 'bfdbgd', '', '', '', '1', 'Nuwan Athukorala', 1, 1, '2020-12-07 21:02:53', '2020-12-07 21:02:53'),
(28, 'Physical', 'No', '', 'dfvds', '43322', 'DR Site', '2020-12-10', 'vdfvds', 'dsgsdf', 'bdvds', '', 'dbsg', '', 'bdsgsd', '', 'dsdssg', '', 'ss1', 'ee2', '1', 'Nuwan Athukorala', 1, 1, '2020-12-10 11:51:46', '2020-12-12 10:37:56'),
(29, 'Physical', 'No', '', 'fdfs', '34234', 'DR Site', '2020-12-12', 'vdsf', 'dsf', 'dgsg', '', 'gsdg', '', 'gvsdf', '', 'gedsf', '', 'bfdgzvd', 'dsgdsds', '1', 'Nuwan Athukorala', 1, 1, '2020-12-12 10:22:07', '2020-12-12 10:22:07'),
(30, 'NAS', 'No', '', 'dsvf', 'sf', 'DR Site', '2020-12-12', 'fse', 'sdfs', 'sdf', '', 'sfwerr', '', '', '', '', '', '', '', '1', '<NAME>', 1, 1, '2020-12-12 10:38:37', '2020-12-12 10:38:37');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`epf` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`fname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`lname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`premission` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`Status` tinyint(1) NOT NULL DEFAULT 1,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `epf`, `fname`, `lname`, `name`, `username`, `email`, `email_verified_at`, `password`, `premission`, `Status`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, '2829', 'Nuwan', 'Athukorala', '<NAME>', 'Nuwan.Athukorala', '<EMAIL>', NULL, '$2y$10$8eeFcSaAsajZKCvHAGynkepzGA2Soq8w3tiXBSwu7J4zliRpIpOFW', '1', 1, NULL, NULL, NULL),
(2, '2830', 'Damith', 'Maduranga', '<NAME>', 'Damith.Maduranga', '<EMAIL>', NULL, '$2y$10$94xiTnPJvA878eF93phoq.lViOlHEjBs9LdjY4TvjVBaSzNSf03N6', '2', 1, NULL, '2020-10-25 03:03:27', '2020-10-25 03:23:23'),
(3, '2831', 'Sampath', 'Kariyawasam', '<NAME>', 'Sampath.Kariyawasam', '<EMAIL>', NULL, '$2y$10$kEBDdRcEdoPCb1WuAe7wEes2XxBWlF7QBgfFSyi./dY6QfL2B9a.W', '2', 1, NULL, '2020-10-25 03:24:41', '2020-10-25 03:24:41');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `followups`
--
ALTER TABLE `followups`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indexes for table `py_vir_server_tables`
--
ALTER TABLE `py_vir_server_tables`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `py_vir_serve_followups`
--
ALTER TABLE `py_vir_serve_followups`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `serverdetails`
--
ALTER TABLE `serverdetails`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `followups`
--
ALTER TABLE `followups`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=71;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `py_vir_server_tables`
--
ALTER TABLE `py_vir_server_tables`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=61;
--
-- AUTO_INCREMENT for table `py_vir_serve_followups`
--
ALTER TABLE `py_vir_serve_followups`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=59;
--
-- AUTO_INCREMENT for table `serverdetails`
--
ALTER TABLE `serverdetails`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<filename>src/main/resources/db/migration/V1__create_schema.sql<gh_stars>0
create table Store (
id int8 not null,
version int4,
name varchar(255) not null,
email varchar(255) not null unique,
status varchar(30) not null,
primary key (id)
);
create sequence hibernate_sequence;
|
<reponame>valerc123/EPS_VAL
-- phpMyAdmin SQL Dump
-- version 4.8.0.1
-- https://www.phpmyadmin.net/
--
-- Servidor: 127.0.0.1
-- Tiempo de generación: 06-06-2019 a las 01:10:53
-- Versión del servidor: 10.1.32-MariaDB
-- Versión de PHP: 7.2.5
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
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 */;
--
-- Base de datos: `eps_val`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `citas`
--
CREATE TABLE `citas` (
`paciente` varchar(255) NOT NULL,
`medico` varchar(255) NOT NULL,
`fecha` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`hora` time NOT NULL,
`observacion` varchar(255) NOT NULL,
`pkid` bigint(20) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `formula`
--
CREATE TABLE `formula` (
`pikd` bigint(20) NOT NULL,
`paciente` varchar(255) NOT NULL,
`medico` varchar(255) NOT NULL,
`fechaFormula` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`referencia1` varchar(255) NOT NULL,
`cantidad1` int(11) NOT NULL,
`referencia2` varchar(255) NOT NULL,
`cantidad2` int(11) NOT NULL,
`referencia3` varchar(255) NOT NULL,
`cantidad3` int(11) NOT NULL,
`observaciones` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `historiaclinica`
--
CREATE TABLE `historiaclinica` (
`pkid` bigint(20) NOT NULL,
`paciente` varchar(255) NOT NULL,
`medico` varchar(255) NOT NULL,
`lugarNacimiento` varchar(255) NOT NULL,
`estatura` varchar(255) NOT NULL,
`peso` varchar(255) NOT NULL,
`profesion` varchar(255) NOT NULL,
`motivoConsulta` varchar(255) NOT NULL,
`antecedentes` varchar(255) NOT NULL,
`diagnostico` varchar(255) NOT NULL,
`tratamiento` varchar(255) NOT NULL,
`fechaIngreso` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `medicos`
--
CREATE TABLE `medicos` (
`pkid` bigint(20) NOT NULL,
`nombre` varchar(255) NOT NULL,
`apellidos` varchar(255) NOT NULL,
`telefono` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`ciudad` varchar(255) NOT NULL,
`identificacion` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Volcado de datos para la tabla `medicos`
--
INSERT INTO `medicos` (`pkid`, `nombre`, `apellidos`, `telefono`, `email`, `ciudad`, `identificacion`) VALUES
(1, 'Pancha', 'Rancha', '6666666', '<EMAIL>', 'Medellìn', '789');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `pacientes`
--
CREATE TABLE `pacientes` (
`nombre` varchar(255) NOT NULL,
`apellidos` varchar(255) NOT NULL,
`telefono` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`direccion` varchar(255) NOT NULL,
`ciudad` varchar(255) NOT NULL,
`identificacion` varchar(255) NOT NULL,
`observaciones` varchar(255) NOT NULL,
`pkid` bigint(20) NOT NULL,
`clave` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Volcado de datos para la tabla `pacientes`
--
INSERT INTO `pacientes` (`nombre`, `apellidos`, `telefono`, `email`, `direccion`, `ciudad`, `identificacion`, `observaciones`, `pkid`, `clave`) VALUES
('valentina', 'R<NAME>', '3007865', '<EMAIL>', 'calle 23e 34-12', 'Medellín', '123456', '', 1, 'e10adc3949ba59abbe56e057f20f883e'),
('Pancho', 'Rancho', '3522222', '<EMAIL>', 'calle 23 23-22', 'Medellín', '456', '', 4, '250cf8b51c773f3f8dc8b4be867a9a02');
--
-- Índices para tablas volcadas
--
--
-- Indices de la tabla `citas`
--
ALTER TABLE `citas`
ADD PRIMARY KEY (`pkid`);
--
-- Indices de la tabla `formula`
--
ALTER TABLE `formula`
ADD PRIMARY KEY (`pikd`);
--
-- Indices de la tabla `historiaclinica`
--
ALTER TABLE `historiaclinica`
ADD PRIMARY KEY (`pkid`);
--
-- Indices de la tabla `medicos`
--
ALTER TABLE `medicos`
ADD PRIMARY KEY (`pkid`),
ADD UNIQUE KEY `identificacion` (`identificacion`);
--
-- Indices de la tabla `pacientes`
--
ALTER TABLE `pacientes`
ADD PRIMARY KEY (`pkid`),
ADD UNIQUE KEY `identificacion` (`identificacion`);
--
-- AUTO_INCREMENT de las tablas volcadas
--
--
-- AUTO_INCREMENT de la tabla `citas`
--
ALTER TABLE `citas`
MODIFY `pkid` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT de la tabla `formula`
--
ALTER TABLE `formula`
MODIFY `pikd` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT de la tabla `historiaclinica`
--
ALTER TABLE `historiaclinica`
MODIFY `pkid` bigint(20) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT de la tabla `medicos`
--
ALTER TABLE `medicos`
MODIFY `pkid` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT de la tabla `pacientes`
--
ALTER TABLE `pacientes`
MODIFY `pkid` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
<reponame>divakarpatil51/spring-security
create sequence if not exists role_id_generator start 1 increment 1
create sequence if not exists user_id_generator start 1 increment 1
create table if not exists roles (id int4 not null, role varchar(255), primary key (id))
create table if not exists users (id int4 not null, active boolean, password varchar(255), username varchar(255), primary key (id))
create table if not exists users_roles (user_id int4 not null, roles_id int4 not null, primary key (user_id, roles_id))
alter table if exists users_roles drop constraint if exists FK_roles_id
alter table if exists users_roles drop constraint if exists FK_user_id
alter table if exists users_roles add constraint FK_roles_id foreign key (roles_id) references roles
alter table if exists users_roles add constraint FK_user_id foreign key (user_id) references users |
-- MySQL dump 10.13 Distrib 8.0.19, for Linux (x86_64)
--
-- Host: localhost Database: blog
-- ------------------------------------------------------
-- Server version 8.0.19
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Dumping data for table `t_article`
--
LOCK TABLES `t_article` WRITE;
/*!40000 ALTER TABLE `t_article` DISABLE KEYS */;
INSERT INTO `t_article` VALUES (1215290345965985793,'关于本站',' 关于本站 简介这个博客系统是为了将学习的技术整合在一起,巩固基础的练习项目当然也作为本人的个人博客用于记录工作中的问题和学习新技术的笔记 項目的技术选型 SpringBoot MyBatis and MyBatisPlus SpringMVC MySQL.8.0 Shiro 安全框架 Redis 缓存 API 文档 Swagger lombok 消息队列 RabbitMQ 搜索引擎 Elas','### 关于本站\n\n> 😄 简介\n\n这个博客系统是为了将学习的技术整合在一起,巩固基础的练习项目。当然也作为本人的个人博客用于记录工作中的问题和学习新技术的笔记。\n\n> 🚀️ 項目的技术选型\n\n- Spring-Boot\n- MyBatis and MyBatis-Plus\n- SpringMVC\n- MySQL.8.0\n- Shiro 安全框架\n- Redis 缓存\n- API 文档 Swagger\n- lombok\n- 消息队列 RabbitMQ\n- 搜索引擎 Elasticsearch\n- Docker 化部署\n- 持续集成 Jenkins\n- Markdown 使用Vditor \n\n> TODOList\n\n- [X] 完成框架的搭建\n- [X] Shiro 完成整合\n- [X] Redis 完成整合\n- [X] SwaggerUI 完成整合\n- [X] 配置打包部署\n- [X] 用户管理\n- [X] 角色管理\n- [X] 菜单管理\n- [X] 文章管理\n- [X] 标签管理\n- [X] 分类管理\n- [X] 加入文件上传功能(只实现上传到本地)\n- [ ] ES 搜索文章\n- [ ] 使用 Redis 缓存数据\n- [ ] 文章备份\n- [ ] 安全问题防范\n- [ ] 整理整个搭建文档\n\n> 👍 感谢以下项目\n\n[vue-element-admin](https://github.com/PanJiaChen/vue-element-admin)\n[Vditor Markdown](https://hacpai.com/article/1549638745630)\n[Flog 博客模板](https://gitee.com/fengziy/Fblog)\n\n\n> ❤️ 联系\n- Email: 1432517356@qq.com\n- [Github](https://github.com/h-dj)\n- [掘金](https://juejin.im/user/58aac8de2f301e006c36160a)\n- [语雀](https://www.yuque.com/h_dj)\n','关于本站,关于博主',0,1,'<EMAIL>','2020-01-09 23:12:52',1,0,'2020-01-09 23:13:21',0,0,'2020-06-26 17:23:59',93,0,1,1215266189052461057,0,'http://cdn.jiajianhuang.cn/images/20200626/176db1e948a945219dca1783fb98373e.jpg','about'),(1255509468804808704,'并发编程之入门',' 并发编程之入门alignleftdisplayinlineheight784nameimage.pngoriginHeight784originWidth1918size153743statusdonestylenonewidth1918)a name\"SHKMP\"a 一、Java 并发的发展进程a name\"ziHA2\"a 1. 在JDK 1.x release的早期版本,就确立了 Java ','# 并发编程之入门\n\n\n\n<a name=\"SHKMP\"></a>\n### 一、Java 并发的发展进程\n<a name=\"ziHA2\"></a>\n#### 1. 在JDK 1.x release的早期版本,就确立了 Java 最基础的线程模型\n> 具有代表性的类和接口有:\n\n- java.lang.Thread\n- java.lang.ThreadGroup\n- java.lang.Runnable\n- java.lang.Process\n- java.lang.ThreadDeath\n> 异常类\n\n- java.lang.IllegalMonitorStateException\n- java.lang.IllegalStateException\n- java.lang.IllegalThreadStateException.\n<a name=\"erhQt\"></a>\n#### 2. JDK5发布了许多特性功能: 泛型 Generic、枚举类型 Enumeration、可变参数varargs、注解 Annotations等等\n\n- 在并发方面:提供了java.util.concurrent(并发包)\n - 原子(Atomic)类型\n - 显式锁(Lock)接口\n - 计数器(CountDownLatch)\n - 回环栅栏(CyclicBarrier)\n - 信号量(Semaphore)\n - 并发集合(concurrent collections)\n - Callable和Future接口\n - 执行器(Executor接口)\n\n\n\n<a name=\"naKCN\"></a>\n#### 3. JDK7 \n\n- 添加ForkJoinPool(工作窃取技术)框架的支持\n- 添加Phaser类,是可重用的同步屏障,类似于CountDownLatch和CyclicBarrier\n- TransferQueue 队列\n<a name=\"rj2Ol\"></a>\n#### 4. JDK8 \n\n- 加法器(Adder)和累加器(Accumulator):原子类型的扩充与优化,主要有:LongAdder、LongAccumulator、DoubleAdder和DoubleAccumulator,比AtomicLong和AtomicDouble性能更优。\n- CompletableFuture:JDK5中Future的增强版。\n- StampedLock:JDK5中ReadWriteLock的改进版。\n\n<a name=\"GbP6N\"></a>\n### 二、了解相关概念\n<a name=\"lSZNR\"></a>\n#### 1. 线程与进程的区别?\n\n- 进程(process)和线程(thread)是操作系统的基本概念\n- 现代操作系统调度的最小单元是线程,也叫轻量级进程(Light Weight Process)\n- 线程都拥有各自的计数器、堆栈和局部变量等属性,并且能够访问共享的内存变量\n- 一个进程可以包含多个线程\n\n<a name=\"ePvBY\"></a>\n#### 2. 并发(concurrency)和并行(parallelism)的区别?\n\n\n- 并发是两个任务在重叠的时间(交替)内开始,运行和完成; 而并行是两个任务能在多核CPU 下,同一时间开始,运行和完成\n- 并发是马上处理许多任务,而并行是马上开始执行多个任务\n\n\n<a name=\"3RDb6\"></a>\n### 三、了解CAS算法\n<a name=\"BnwdW\"></a>\n#### 1. CAS 涉及的三个操作数\n\n- 需要读写的内存位置V\n- 需要进行比较的预期值A\n- 需要写入的新值U\n<a name=\"NzNsL\"></a>\n#### 2. 图示\n\n\n<a name=\"wiRbE\"></a>\n#### 3. CAS引发的问题\n\n- **ABA问题**,一个线程将内存值从A改为B,另一个线程又从B改回到A\n - 图示\n\n\n\n - 解决方法:在变量前面添加**版本号**,每次变量更新的时候都将版本号加1,比如juc的原子包中的AtomicStampedReference类。\n\n- **循环时间长开销大**:CAS算法需要不断地自旋来读取最新的内存值,长时间读取不到就会造成不必要的CPU开销。\n- **只能保证一个共享变量的原子操作**(jdk1.5的AtomicReference来保证应用对象之间的原子性,可以把多个变量放在一个对象里来进行CAS操作,解决了这一问题)。\n\n \n<a name=\"AkT6i\"></a>\n### 四、了解Java的中线程\n<a name=\"iYDJY\"></a>\n#### 1. 简单线程的创建和启动\n\n```java\n//继承Thread类\npublic class MyThread extends Thread{\n @Override\n public void run() {\n System.out.println(\"线程运行\");\n }\n public static void main(String[] args) {\n MyThread myThread=new MyThread();\n myThread.start();\n }\n}\n```\n\n```java\n//实现Runable接口\npublic class MyRunable implements Runnable{\n @Override\n public void run() {\n System.out.println(\"线程运行\");\n }\n\n public static void main(String[] args) {http://moguhu.com/article/detail?articleId=39\n Thread t=new Thread(new MyRunable());\n t.start();\n }\n}\n```\n\n<a name=\"1OfIg\"></a>\n#### 2. 了解线程的生命周期\n<br />对上图进行对线程的生命周期的分析:\n\n- (1)新建状态(NEW):线程被创建出来,还没有调用start方法;\n- (2)可运行状态(RUNABLE):调用线程的start方法,线程等待CPU时间\n- (3)运行状态(RUNNING):线程获取到CPU时间,开始执行线程任务\n- (4)等待状态(WAITING):阻塞状态是指线程因为某种原因放弃了 cpu 使用权,也即让出了 cpu timeslice ,暂时停止运行。直到线程进入可运行状态,才有机会再次获得 cpu timeslice 转到运行状态。 \n- (5) 等待超时状态(TIME_WAITING): 超时等待状态,与WAITING不同,它可以在指定时间自行退出,释放锁\n- (6) 死亡(TERMINATED):线程 run ()、 main () 方法执行结束,或者因异常退出了 run ()方法,则该线程结束生命周期。死亡的线程不可再次复生。\n- 等待阻塞(BLOCKED)的情况分三种:\n - A:等待阻塞:线程调用wait方法,释放线程占有的锁,JVM把线程加入等待队列\n - B:同步阻塞:线程尝试获取对象锁的时候,但是该锁被别的线程占有,那么JVM把该线程加入锁池\n - C:其它阻塞:线程调用sleep,join方法(不会释放锁),请求I/O时,JVM把线程设为阻塞状态,当休眠时间到了,join等待的线程超时或者完成任务,I/O处理完毕,线程重新进入运行状态,等待CPU时间\n\n<a name=\"kNRek\"></a>\n#### 3. 线程的优先级\n\n- 在Thread 类中定义了属性 priority 用来控制线程的优先级\n- 优先级的范围从1~10,在线程构建的时候可以通过setPriority(int)方法来修改优先级,默认优先级是5,优先级高的线程分配时间片的数量要多于优先级低的线程。\n\n**注意**:线程优先级不能作为程序正确性的依赖,因为操作系统可以完全不用理会Java线程对于优先级的设定\n\n<a name=\"2YkfJ\"></a>\n#### 4. 守护线程\n\n```java\npublic class DaemonThread {\n public static void main(String[] args) {\n Thread thread = new Thread(new DaemonRunner(), \"DaemonRunner\");\n thread.setDaemon(true); //开启守护线程\n thread.start();\n }\n static class DaemonRunner implements Runnable {\n @Override\n public void run() {\n try {\n TimeUnit.SECONDS.sleep(100);\n } catch (InterruptedException e) {\n e.printStackTrace();\n } finally {\n //这里不会输出\n System.out.println(\"DaemonThread finally run.\");\n }\n }\n }\n}\n```\n**注意: **\n\n- Daemon属性需要在启动线程之前设置,不能在启动线程之后设置。不然会抛出IllegalThreadStateException 异常\n- 当一个Java虚拟机中不存在非Daemon线程的时候,Java虚拟机将会退出,意味着Daemon 线程会被中断\n- 所以,在构建Daemon线程时,不能依靠finally块中的内容来确保执行关闭或清理资源的逻辑\n\n\n到此, Java 多线程已经入门,接下来要先了解线程的抽象内存模型。\n\n<a name=\"tikZJ\"></a>\n### 参考\n\n- [https://blog.csdn.net/hanchao5272/article/details/79521731](https://blog.csdn.net/hanchao5272/article/details/79521731)\n- [https://howtodoinjava.com/java/multi-threading/java-multi-threading-evolution-and-topics/](https://howtodoinjava.com/java/multi-threading/java-multi-threading-evolution-and-topics/)\n- [https://docs.oracle.com/javase/8/docs/technotes/guides/concurrency/changes8.html](https://docs.oracle.com/javase/8/docs/technotes/guides/concurrency/changes8.html)\n- [https://www.itcodemonkey.com/article/1830.html](https://www.itcodemonkey.com/article/1830.html)\n- [https://mp.weixin.qq.com/s/-gvhklcWGO5aPiFaBLpp3g](https://mp.weixin.qq.com/s/-gvhklcWGO5aPiFaBLpp3g)\n\n','',0,1,'<EMAIL>','2020-04-29 22:49:18',1,0,'2020-04-29 23:09:00',0,0,'2020-04-29 23:09:00',4,0,1,0,0,'','1255509468804808704'),(1255514529761067008,'并发编程之JMM(Java Memory Model)',' 并发编程之JMMJava Memory Modela name\"a9SE9\"a 一、JMM基础a name\"oZfku\"a 1. 线程之间的通信机制在并发编程中,需要处理两个关键问题线程之间如何通信及线程之间如何同步这里的线程是指并发执行的活动实体通信是指线程之间以何种机制来交换信息在命令式编程中,线程之间的通信机制有两种共享内存和消息传递br 同步是指程序中用于控制不同线程间操作发生相对顺序','# 并发编程之JMM(Java Memory Model)\n\n\n<a name=\"a9SE9\"></a>\n### 一、JMM基础\n<a name=\"oZfku\"></a>\n#### 1. 线程之间的通信机制\n在并发编程中,需要处理两个关键问题:线程之间如何通信及线程之间如何同步(这里的线程是指并发执行的活动实体)。通信是指线程之间以何种机制来交换信息。在命令式编程中,线程之间的通信机制有两种:**共享内存和消息传递。**<br />**同步**是指程序中用于控制不同线程间操作发生相对顺序的机制。**在共享内存并发模里,同步是显式进行的**。程序员必须显式指定某个方法或某段代码需要在线程之间互斥执行。**在消息传递的并发模型里,由于消息的发送必须在消息的接收之前,因此同步是隐式进行的。<br />Java的并发采用的是共享内存模型**,Java线程之间的通信总是隐式进行,整个通信过程对程序员完全透明。\n\n后续,会说明有哪几种通信方法。\n\n<a name=\"ihiIM\"></a>\n#### 2. JMM 抽象结构\n\n\n在Java中,所有成员变量、静态变量和数组元素都存储在堆内存中,堆内存在线程之间共享,所以它们通常也称为共享变量。JMM定义了线程和主内存之间的抽象关系:线程之间的共享变量存储在主内存(Main Memory)中,每个线程都有一个私有的本地内存(Local Memory,或者也可以称为工作内存 Work Memory),本地内存中存储了该线程以读/写共享变量的副本。本地内存是JMM的一个抽象概念,并不真实存在。它涵盖了缓存、写缓冲区、寄存器以及其他的硬件和编译器优化。\n\n多个线程同时对同一个共享变量进行读写的时候会产生线程安全问题。那为什么CPU不直接操作内存,而要在CPU和内存间加上各种缓存和寄存器等缓冲区呢?因为CPU的运算速度要比内存的读写速度快得多,如果CPU直接操作内存的话势必会花费很长时间等待数据到来,所以缓存的出现主要是为了解决CPU运算速度与内存读写速度不匹配的矛盾。\n\n<a name=\"WNvQT\"></a>\n#### 3. Java内存间的交互操作\n\n\n\n\n- read:把一个变量的值从主内存传输到工作内存中\n- load:在 read 之后执行,把 read 得到的值放入工作内存的变量副本中\n- use:把工作内存中一个变量的值传递给执行引擎\n- assign:把一个从执行引擎接收到的值赋给工作内存的变量\n- store:把工作内存的一个变量的值传送到主内存中\n- write:在 store 之后执行,把 store 得到的值放入主内存的变量中\n- lock:作用于主内存的变量,把一个变量标识为一条线程独占状态\n- unlock:作用于主内存变量,把一个处于锁定状态的变量释放出来,释放后的变量才可以被其他线程锁定\n\n对应以上内存交互操作的相关规定:\n\n1. **不允许read和load、store和write操作之一单独出现**,即不允许出现从主内存读取了而工作内存不接受,或者从工作内存回写了但主内存不接受的情况出现;\n1. 不允许一个线程丢弃它最近的assign操作,即变量在工作内存变化了必须把该变化同步回主内存;\n1. 不允许一个线程无原因地(即未发生过assign操作)把一个变量从工作内存同步回主内存;\n1. 一个新的变量必须在主内存中诞生,不允许工作内存中直接使用一个未被初始化(load或assign)过的变量,换句话说就是对一个变量的use和store操作之前必须执行过load和assign操作;\n1. 一个变量同一时刻只允许一条线程对其进行lock操作,但lock操作可以被同一个线程执行多次,多次执行lock后,只有执行相同次数的unlock操作,变量才能被解锁。\n1. 如果对一个变量执行lock操作,将会清空工作内存中此变量的值,在执行引擎使用这个变量前,需要重新执行load或assign操作初始化变量的值;\n1. 如果一个变量没有被lock操作锁定,则不允许对其执行unlock操作,也不允许unlock一个其它线程锁定的变量;\n1. 对一个变量执行unlock操作之前,必须先把此变量同步回主内存中,即执行store和write操作;\n\n**注意:**这里的lock和unlock是实现synchronized的基础,Java并没有把lock和unlock操作直接开放给用户使用,但是却提供了两个更高层次的指令来隐式地使用这两个操作,即monitorenter和monitorexit。\n\n<a name=\"56m5h\"></a>\n### 二、指令重排\n在执行程序时,为了提高性能,编译器和处理器常常会对指令做重排序。\n\n<a name=\"uwJ7E\"></a>\n#### 1. 指令重排种类\n\n- **编译器优化的重排序。**编译器在不改变单线程程序语义的前提下,可以重新安排语句的执行顺序。\n- **指令级并行的重排序**。现代处理器采用了指令级并行技术(Instruction-LevelParallelism,ILP)来将多条指令重叠执行。如果不存在数据依赖性,处理器可以改变语句对应机器指令的执行顺序。\n- **内存系统的重排序**。由于处理器使用缓存和读/写缓冲区,这使得加载和存储操作看上去可能是在乱序执行\n\n<a name=\"9BvYj\"></a>\n#### 2. 图示\n\n\n**注意**:如果两个操作访问同一个变量,其中一个为写操作,此时这两个操作之间存在数据依赖性。 编译器和处理器不会改变存在数据依赖性关系的两个操作的执行顺序,即不会重排序。不管怎么重排序,单线程下的执行结果不能被改变,编译器、runtime和处理器都必须遵守as-if-serial语义。\n\n名称说明:<br />as-if-serial 语义: 不管怎么重排序(编译器和处理器为了提高并行度),(单线程)程序的执行结果不能被改变\n\n<a name=\"19o9e\"></a>\n### 三、内存屏障\n\n| 屏障类型 | 示例 | 描述 |\n| :--- | :--- | :--- |\n| LoadLoad Barriers | Load1-LoadLoad-Load2 | Load1数据装载过程要先于Load2及所有后续的数据装载过程 |\n| StoreStore Barriers | Store1-StoreStore-Store2 | Store1刷新数据到内存的过程要先于Strore2及后续所有刷新数据到内存的过程 |\n| LoadStore Barriers | Load1-LoadStore-Store2 | Load1数据装载要先于Strore2及后续所有刷新数据到内存的过程 |\n| StoreLoad Barriers | Store1-StoreLoad-Load2 | Store1刷新数据到内存的过程要先于Load2及所有后续的数据装载过程 |\n\n\n**注意**:Java中volatile关键字的实现就是通过内存屏障来完成的。\n\n<a name=\"OSY1p\"></a>\n### 四、Java内存模型的三大特性\n<a name=\"gsFIv\"></a>\n#### 1. 介绍\nJava内存模型就是为了解决多线程环境下共享变量的一致性问题;一致性主要包含三大特性:原子性、可见性、有序性\n<a name=\"uPoZv\"></a>\n#### 2. 原子性:\n\n- 原子性是指一段操作一旦开始就会一直运行到底,中间不会被其它线程打断,这段操作可以是一个操作,也可以是多个操作。\n<a name=\"IrR3M\"></a>\n#### 3. 可见性:\n\n- 可见性是指当一个线程修改了共享变量的值,其它线程能立即感知到这种变化。\n<a name=\"FdJp3\"></a>\n#### 4. 有序性\n\n- 如果在本线程中观察,所有的操作都是有序的;如果在另一个线程中观察,所有的操作都是无序的。\n- 前半句是指线程内表现为串行的语义,后半句是指“指令重排序”现象和“工作内存和主内存同步延迟”现象。\n\n<a name=\"J4w1O\"></a>\n### 五、happens-before\n<a name=\"oJfVX\"></a>\n#### 1. 介绍\n从JDK5开始,Java使用新的JSR-133内存模型,基于happens-before的概念来阐述操作之间的内存可见性。在JMM中,如果一个操作的执行结果需要对另一个操作可见,那么这两个操作之间必须要存在happens-before关系,这个的两个操作既可以在同一个线程,也可以在不同的两个线程中。\n\n<a name=\"OLk3b\"></a>\n#### 2. happens-before规则:\n\n- 程序次序原则:\n - 在一个线程内,按照程序书写的顺序执行,**书写在前面的操作先行发生于书写在后面的操作**,准确地讲是控制流顺序而不是代码顺序,因为要考虑分支、循环等情况。\n- 监视器锁定原则:\n - 一个unlock操作先行发生于后面对同一个锁的lock操作。\n- volatile域规则:\n - 对一个volatile变量的**写操作**先行发生于后面对该变量的**读操作**。\n- 传递性规则:\n - 如果 A happens-before B,且 B happens-before C,那么A happens-before C。\n- 线程启动原则\n - 对线程的start()操作先行发生于线程内的任何操作。\n- 线程终止原则\n - 线程中的所有操作先行发生于检测到线程终止,可以通过Thread.join()、Thread.isAlive()的返回值检测线程是否已经终止。\n- 线程中断原则\n - 对线程的interrupt()的调用先行发生于线程的代码中检测到中断事件的发生,可以通过Thread.interrupted()方法检测是否发生中断。\n- 对象终结原则\n - 一个对象的初始化完成(构造方法执行结束)先行发生于它的finalize()方法的开始。\n\n**注意:**两个操作之间具有happens-before关系,并不意味着前一个操作必须要在后一个操作之前执行!happens-before仅仅要求前一个操作(**执行的结果**)对后一个操作可见,且前一个操作按顺序排在第二个操作之前(the first is visible to and ordered before the second)。\n\n<a name=\"bLdqc\"></a>\n#### 3. 图示\n\n\n**解析:**\n\n- **1 happens-before 2和3 happens-before 4**由程序顺序规则产生。由于编译器和处理器都要遵守as-if-serial语义,也就是说,as-if-serial语义保证了程序顺序规则。因此,可以把程序顺序规则看成是对as-if-serial语义的“封装”。\n- **2 happens-before 3**是由volatile规则产生。对一个volatile变量的读,总是能看到(任意线程)之前对这个volatile变量最后的写入。因此,volatile的这个特性可以保证实现volatile规则。\n- **1 happens-before 4**是由传递性规则产生的。这里的传递性是由volatile的内存屏障插入策略和volatile的编译器重排序规则共同来保证的。\n\n<a name=\"o7DOo\"></a>\n### 参考\n\n- [https://mrbird.cc/Java-Memory-model.html](https://mrbird.cc/Java-Memory-model.html)\n- [死磕 java同步系列之JMM(Java Memory Model)](https://mp.weixin.qq.com/s?__biz=Mzg2ODA0ODM0Nw==&mid=2247483909&idx=1&sn=778c86bc63a350e9d8397e1a727aabf5&scene=21#wechat_redirect)\n- 《Java并发编程的艺术》\n\n','',0,1,'<EMAIL>','2020-04-29 23:09:25',1,0,'2020-04-29 23:10:21',0,0,'2020-04-29 23:10:21',18,0,1,0,0,'','1255514529761067008'),(1255514634941628416,'并发编程之线程间的通信',' 并发编程之线程间的通信Java支持多个线程同时访问一个对象或者对象的成员变量,由于每个线程可以拥有这个变量的拷贝虽然对象以及成员变量分配的内存是在共享内存中的,但是每个执行的线程还是可以拥有一份拷贝,这样做的目的是加速程序的执行,这是现代多核处理器的一个显著特性,所以程序在执行过程中,一个线程看到的变量并不一定是最新的a name\"9ElWg\"a 一、了解volatile 和 synchroni','# 并发编程之线程间的通信\n\nJava支持多个线程同时访问一个对象或者对象的成员变量,由于每个线程可以拥有这个变量的拷贝(虽然对象以及成员变量分配的内存是在共享内存中的,但是每个执行的线程还是可以拥有一份拷贝,这样做的目的是加速程序的执行,这是现代多核处理器的一个显著特性),所以程序在执行过程中,一个线程看到的变量并不一定是最新的。\n\n<a name=\"9ElWg\"></a>\n### 一、了解volatile 和 synchronized关键字\n<a name=\"8MbOP\"></a>\n#### 1.1. volatile关键字\n关键字volatile可以用来修饰字段(成员变量),就是告知程序任何对该变量的访问均需要从共享内存(主内存)中获取,忽视(设置无效)工作内存中的变量,而对它的改变必须同步刷新回共享内存,它能保证所有线程对变量访问的**可见性。**<br />**\n\n<a name=\"XDMcF\"></a>\n#### 1.2. synchronized 关键字\nsynchronized 是提供同步锁 关键字,可以修饰方法 或 以同步块的方式使用,synchronized 实现的锁是排他锁,非公平锁。主要采用monitorenter和monitorexit指令 来保持线程同步, synchronized 可以保证数据的一致性:**即原子性、可见性和有序性**\n\n关键字volatile 和 synchronized简单了解一下,后面着重深入了解。\n\n<a name=\"nkFWx\"></a>\n### 二、**等待通知机制**\n<a name=\"kHZAt\"></a>\n#### 2.1 Object 类中等待通知的方法\n\n- notify() : 用于唤醒正在等待对象监视器的单一线程,使其从wait()方法中返回,返回的前提是该线程必须获取了对象锁\n- notifyAll(): 唤醒等待对象监视器的所有线程\n- wait() : 调用该方法线程进入等待状态WAITING,只用等其他线程唤醒或者中断操作才能返回,注意在调用wait() 方法后,线程会释放锁\n- wait(long timeout) : 超时等待返回,超时参数为毫秒,所以说在等待n毫秒后,没有被唤醒,则超时返回\n- wait(long timeout, int nanos) : 用于控制超时参数的单位,可以达到纳秒级\n<a name=\"j89qs\"></a>\n#### 2.2 实现交替打印1,2\n\n```java\n//交替打印1 2 1 2 \npublic class WaitNotifyThread {\n //定义对象锁\n private static Object lock = new Object();\n private static boolean flag = false;\n\n public static void main(String[] args) {\n WaitThread waitThread = new WaitThread();\n NotifyThread notifyThread = new NotifyThread();\n\n waitThread.setName(\"WaitThread\");\n notifyThread.setName(\"notifyThread\");\n waitThread.start();\n notifyThread.start();\n\n }\n\n static class WaitThread extends Thread {\n\n @Override\n public void run() {\n //synchronized代码块,锁住lock\n synchronized (lock) {\n while (true) {\n //如果flag == true ,则挂起线程等待,释放锁\n while (flag) {\n try {\n lock.wait();\n } catch (InterruptedException e) {\n e.printStackTrace();\n }\n }\n System.out.println(Thread.currentThread().getName() + \" 1\");\n try {\n TimeUnit.SECONDS.sleep(1);\n } catch (InterruptedException e) {\n e.printStackTrace();\n }\n //设置flag = true ,挂起线程\n flag = true;\n //通知其他线程执行\n lock.notifyAll();\n }\n }\n }\n }\n\n static class NotifyThread extends Thread {\n @Override\n public void run() {\n synchronized (lock) {\n while (true) {\n //如果flag == false ,则挂起线程等待,释放锁\n while (!flag) {\n try {\n lock.wait();\n } catch (InterruptedException e) {\n e.printStackTrace();\n }\n }\n System.out.println(Thread.currentThread().getName() + \" 2\");\n try {\n TimeUnit.SECONDS.sleep(1);\n } catch (InterruptedException e) {\n e.printStackTrace();\n }\n //设置flag = false ,挂起线程\n flag = false;\n //通知其他线程执行\n lock.notifyAll();\n }\n }\n }\n }\n}\n```\n\n**注意:**\n\n- 1)使用wait()、notify()和notifyAll()时需要先对调用对象加锁。\n- 2)调用wait()方法后,线程状态由RUNNING变为WAITING,并将当前线程放置到对象的等待队列,释放对象锁。\n- 3)notify()或notifyAll()方法调用后,等待线程依旧不会从wait()返回,需要调用notify()或notifAll()的线程释放锁之后,等待线程才有机会从wait()返回。\n- 4)notify()方法将等待队列中的任意一个等待线程从等待队列中移到同步队列中,而notifyAll()方法则是将等待队列中所有的线程全部移到同步队列,被移动的线程状态由WAITING变为BLOCKED\n\n<a name=\"yw7kJ\"></a>\n#### 2.3 等待通知图示\n\n\n<a name=\"T0slm\"></a>\n### 三、管道输入/输出流\n<a name=\"mRooA\"></a>\n#### 3.1 定义\n管道流用于输送一个线程的输出流到另一个线程的输入流,即可用于线程间的通信\n\n<a name=\"mpWUH\"></a>\n#### 3.2 管道流相关类\n\n- [PipedReader](http://java.sun.com/j2se/1.5.0/docs/api/java/io/PipedReader.html)\n- [PipedWriter](http://java.sun.com/j2se/1.5.0/docs/api/java/io/PipedWriter.html)\n- [PipedInputStream](http://java.sun.com/j2se/1.5.0/docs/api/java/io/PipedInputStream.html)\n- [PipedOutputStream](http://java.sun.com/j2se/1.5.0/docs/api/java/io/PipedOutputStream.html)\n\n<a name=\"KJ9il\"></a>\n#### 3.3 例子\n\n```java\npublic class SendAndReceivePips {\n\n PipedReader reader = new PipedReader();\n PipedWriter writer = new PipedWriter();\n\n public SendAndReceivePips() {\n try {\n //管道连接\n reader.connect(writer);\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n\n public void sender() {\n new Thread(new Runnable() {\n @Override\n public void run() {\n try {\n int a = 10;\n while (a > 0) {\n a = a - 1;\n Thread.sleep(1000);\n int num = (int) (Math.random() * 255);\n System.out.println(Thread.currentThread().getName() + \" 生产者生产了一个数字,该数字为: \" + num);\n \n writer.write(num);\n writer.flush();\n }\n } catch (Exception e) {\n e.printStackTrace();\n }finally {\n try {\n writer.close();\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n }\n }).start();\n }\n\n public void receiver() {\n new Thread(new Runnable() {\n @Override\n public void run() {\n try {\n int a = 10;\n while (a > 0) {\n a = a - 1;\n Thread.sleep(2000);\n int num = reader.read();\n System.out.println(Thread.currentThread().getName() + \" 消费者消费了一个数字,该数字为:\" + num);\n }\n } catch (Exception e) {\n e.printStackTrace();\n }finally {\n try {\n reader.close();\n } catch (IOException e) {\n e.printStackTrace();\n }\n }\n }\n }).start();\n }\n\n public static void main(String[] args) {\n SendAndReceivePips pips = new SendAndReceivePips();\n pips.sender();\n pips.receiver();\n }\n}\n```\n\n```bash\nThread-0 生产者生产了一个数字,该数字为: 150\nThread-0 生产者生产了一个数字,该数字为: 118\nThread-1 消费者消费了一个数字,该数字为:150\nThread-0 生产者生产了一个数字,该数字为: 232\nThread-0 生产者生产了一个数字,该数字为: 250\nThread-1 消费者消费了一个数字,该数字为:118\nThread-0 生产者生产了一个数字,该数字为: 141\nThread-0 生产者生产了一个数字,该数字为: 103\nThread-1 消费者消费了一个数字,该数字为:232\nThread-0 生产者生产了一个数字,该数字为: 24\nThread-0 生产者生产了一个数字,该数字为: 111\nThread-1 消费者消费了一个数字,该数字为:250\nThread-0 生产者生产了一个数字,该数字为: 142\nThread-0 生产者生产了一个数字,该数字为: 12\nThread-1 消费者消费了一个数字,该数字为:141\nThread-1 消费者消费了一个数字,该数字为:103\nThread-1 消费者消费了一个数字,该数字为:24\nThread-1 消费者消费了一个数字,该数字为:111\nThread-1 消费者消费了一个数字,该数字为:142\nThread-1 消费者消费了一个数字,该数字为:12\n```\n\n<a name=\"obvLV\"></a>\n### 四、 Thread.join 的使用\n<a name=\"aOQ4k\"></a>\n#### 4.1 介绍\n如果一个线程A执行了thread.join()语句,其含义是:当前线程A等待thread线程终止之后才从thread.join()返回。线程Thread除了提供join()方法之外,还提供了join(long millis)和join(longmillis,int nanos)两个具备超时特性的方法。这两个超时方法表示,如果线程thread在给定的超时时间里没有终止,那么将会从该超时方法中返回\n<a name=\"8jGxe\"></a>\n#### 4.2 例子\n\n```java\npublic class Join {\n public static void main(String[] args) throws Exception {\n Thread previous = Thread.currentThread();\n for (int i = 0; i < 10; i++) {\n // 每个线程拥有前一个线程的引用,需要等待前一个线程终止,才能从等待中返回\n Thread thread = new Thread(new Domino(previous), String.valueOf(i));\n thread.start();\n previous = thread;\n }\n TimeUnit.SECONDS.sleep(5);\n System.out.println(Thread.currentThread().getName() + \" terminate.\");\n }\n\n static class Domino implements Runnable {\n private Thread thread;\n\n public Domino(Thread thread) {\n this.thread = thread;\n }\n\n public void run() {\n try {\n //当前线程挂起,进入阻塞状态\n thread.join();\n } catch (InterruptedException e) {\n }\n System.out.println(Thread.currentThread().getName() + \" terminate.\");\n }\n }\n}\n```\n\n输出\n```bash\nmain terminate.\n0 terminate.\n1 terminate.\n2 terminate.\n3 terminate.\n4 terminate.\n5 terminate.\n6 terminate.\n7 terminate.\n8 terminate.\n9 terminate.\n```\n<a name=\"X7O1B\"></a>\n#### 4.3 join 源码\n```java\npublic final synchronized void join(long millis)\nthrows InterruptedException {\n long base = System.currentTimeMillis();\n long now = 0;\n\n if (millis < 0) {\n throw new IllegalArgumentException(\"timeout value is negative\");\n }\n\n if (millis == 0) {\n // 条件不满足,继续等待\n while (isAlive()) {\n wait(0);\n }\n } else {\n // 条件不满足,继续等待\n while (isAlive()) {\n long delay = millis - now;\n if (delay <= 0) {\n break;\n }\n wait(delay);\n now = System.currentTimeMillis() - base;\n }\n }\n // 条件满足,方法返回\n}\n```\n\n\n<a name=\"Xo1ir\"></a>\n### 五、**ThreadLocal**\n<a name=\"wheph\"></a>\n#### 5.1 介绍\n ThreadLocal,即线程本地变量,是一个以ThreadLocal对象为键、任意对象为值的存储结构。\n<a name=\"B8yOS\"></a>\n#### 5.2 ThreadLocal 、Thread和ThreadLocalMap 关系 图示(来自google搜索)\n\n\n<a name=\"H610w\"></a>\n#### 5.3 ThreadLocal 使用总结\n\n- ThreadLocal 并不解决线程间共享数据的问题\n- ThreadLocal 通过隐式的在不同线程内创建独立实例副本避免了实例线程安全的问题\n- 个线程持有一个 Map 并维护了 ThreadLocal 对象与具体实例的映射,该 Map 由于只被持有它的线程访问,故不存在线程安全以及锁的问题\n- ThreadLocalMap 的 Entry 对 ThreadLocal 的引用为**弱引用**,避免了 ThreadLocal 对象无法被回收的问题\n- ThreadLocal 适用于变量在线程间隔离且在方法间共享的场景\n<a name=\"QAfdb\"></a>\n### 六、并发工具类\n\n- CountDownLatch 并发工具\n- CyclicBarrier 并发工具\n\n线程之间的通信可按照实际场景,选择合适的方法。\n\n<a name=\"W4g6G\"></a>\n### 参考\n\n- 《Java并发编程的艺术》\n\n','',0,1,'<EMAIL>','2020-04-29 23:09:50',1,0,'2020-04-29 23:10:32',0,0,'2020-04-29 23:10:32',1,0,1,0,0,'','1255514634941628416'),(1257195405330874368,'个人简历','姓名 黄家健电话 13660846589邮箱 13660846589163.com工作经验 2 年求职意向 Java 后端开发工程师专业 软件技术学历 : 大专个人博客 专业技能 掌握 Java 基础知识,熟练使用 Java 集合,Java JUC 并发包 熟悉Servlet及其工作原理和生命周期 能熟练使用 SpringBoot、 Spring、 SpringMVC、 MyBatis等 Ja','姓名: 黄家健\n电话: 1366-0846-589\n邮箱: <EMAIL>.<EMAIL>\n\n工作经验: **2 年**\n求职意向: **Java 后端开发工程师**\n\n专业: 软件技术\n学历 : 大专\n个人博客:\n\n## 专业技能\n\n- 掌握 **Java 基础知识**,熟练使用 **Java 集合**,**Java JUC 并发包**\n- 熟悉**Servlet**及其工作原理和生命周期\n- 能熟练使用 **SpringBoot**、 **Spring**、 **SpringMVC**、 **MyBatis**等 Java 框架进行后台开发,了解其执行原理\n- 熟悉关系型数据库**MySQL**,能熟练编写 SQL 及简单优化;\n- 熟悉使用 **Redis**、**Rabbitmq**、**Elasticsearch**等中间件;以及与 Spring 的整合使用\n- 熟练使用 Java 开发环境 Eclipse 和 IntelliJIDEA、版本控制工具 Git、项目构建和管理工具 Maven。\n- 熟悉使用 Nginx, 采用 Nginx 作为静态服务器,限流,反向代理,防盗链,SSL 配置等操作\n- 熟悉使用 HTML、CSS、JavaScript 和 Vue.js 进行 Web 开发\n- 熟悉使用 SpringCloud 构建微服务\n- 了解 Linux 常用命令\n- 了解 Docker,并有使用 docker-compose 编排项目\n\n## 证书\n\nCTE4 , 全国计算机等级考试二级证书(Java)\n\n## 工作经历\n\n2019.06-至今 | 佛山市深简软件科技有限公司 | Java 后端开发工程师\n\n2018.04-2019.02 | 奇立智云科技有限公司 | Java 后端开发工程师\n\n## 项目经验\n\n#### 2019.06 -至今 | DBSTOOL 亚马逊卖家分析系统 | 佛山市深简软件科技有限公司\n\n项目简介:公司自主研发,针对亚马逊卖家运营过程中的需求和痛点,运用人工智能 AI、云计算、大数据等前沿技术,能给出精准实时的决策数据分析,帮助卖家降低成本,提升工作效率,提高销售业绩的系统。\n\n主要负责如下工作:\n\n* 负责用户权限模块,基于 RBAC 模型 采用 Shiro + JWT(JSON Web Token) 实现授权和鉴权\n* 负责系统消息通知功能,包括短信、邮件和站内信; 采用 AOP + 注解 + Rabbitmq 实现无侵入业务代码,异步发送消息。\n* 在后端 leader 的指导下,了解业务和整合亚马逊 API 实现卖家店铺授权和广告授权模块。\n* 在后端 leader 的指导下,针对评论分析数据复杂,API 接口响应慢问题。一、对原有的表结构进行调整,先在后端统计计算保存。 二、对 API 基于单一原则拆分返回数据。\n\n项目主要使用 **SpringBoot**、 **SpringMVC**、**Mybatis-Plus** 框架基于 Java 语言开发,前端使用基于 **Vue.js** 的 UI 框架 Element UI ,采用了前后端分离开发部署\n\n项目地址: [https://www.dbstool.com/](https://www.dbstool.com/)\n\n#### 2019.01 - 2019.03 | 优车优盟 | 奇立智云科技有限公司\n\n项目一:二手车拍卖平台,类似瓜子二手车\n\n对公司老旧项目进行二次迭代,技术栈:前端采用 JQuery+DoT.js+LayUi;后端采用 Spring, SpringMVC, MyBatis ,SpringSecurity\n\n主要负责如下工作:\n\n- 负责询价模块和拍卖模块重构优化\n- 负责用户权限模块的调整\n\n项目二、Gbox 系统\n\n项目介绍:该系统对 4s 店买车的客户流失分析、客户行为分析,以供广汽商贸集团及时制定对应的方案\n\n主要负责如下工作\n\n- 了解客户需求与客户沟通,对 4s 店的销售系统和售后服务系统的数据进行抓取、清洗,协助产品经理编写数据统计文档。\n- 使用 Java 编写爬虫,抓取销售数据,为 GBox 系统提供分析数据。\n\n#### 个人项目\n\n##### 一、个人博客项目\n\n项目介绍:\n该项目主要是为了磨合自己的技术,方便自己总结日常技术和生活的琐事而创建的。\n\n项目模块:\n\n- 用户角色菜单管理模块\n- 文章创建发布模块\n- 图库模块\n- 评论模块\n- 操作日志模块\n- 文章搜索模块\n\n项目技术:\n\n- 前端使用基于 **Vue.js** 的 UI 框架 Element UI\n- 后台采用 SpringBoot,SpringMVC , Mybatis-Plus ,Redis ,Rabbitmq 和 Elasticsearch\n- 部署使用 Docker, docker-compose 编排\n','关于博主',0,1,'h-dj','2020-05-04 14:28:37',0,0,NULL,0,0,'2020-05-12 21:33:06',0,0,1,0,0,'','1257195405330874368'),(1262989998001487872,'博客备份到Github 私有仓库',' 一、配置SSH 秘钥 1. 创建ssh 秘钥检查是否存在ssh ls al .ssh 不存在,则生成key sshkeygen t rsa b 4096 C \"youremailexample.com\" 添加ssh key 到sshagent eval \"(sshagent s)\" 拷贝到Github 中 cat .sshidrsa.pub 2. 配置ssh 密钥到 Git 仓库 (Github','### 一、配置SSH 秘钥\n#### 1. 创建ssh 秘钥\n```\n#检查是否存在ssh \nls -al ~/.ssh \n#不存在,则生成key \nssh-keygen -t rsa -b 4096 -C \"your_<EMAIL>\" \n#添加ssh key 到ssh-agent \neval \"$(ssh-agent -s)\" \n#拷贝到Github 中 \ncat ~/.ssh/id_rsa.pub\n```\n#### 2. 配置ssh 密钥到 Git 仓库 (Github 或 Gitee )\n- [配置到Github](https://help.github.com/en/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)\n\n','关于本站',0,1,'<EMAIL>','2020-05-20 14:14:15',2,0,'2020-05-20 14:14:15',0,0,'2020-05-20 14:14:15',0,0,1,1215266189052461057,0,'','1262989998001487872'),(1262989998605467648,'Docker mysqldump备份及推送到Github私有仓库',' 创建 GitHub 私有仓库,配置服务器 SSH 秘钥到 GitHub 定时备份数据库,并推送到 GitHub 仓库中 1. 创建 SSH 秘钥检查是否存在ssh ls al .ssh 不存在,则生成key sshkeygen t rsa b 4096 C \"youremailexample.com\" 添加ssh key 到sshagent eval \"(sshagent s)\" 拷贝到Gith','1 .创建 GitHub 私有仓库,配置服务器 SSH 秘钥到 GitHub\n2 .定时备份数据库,并推送到 GitHub 仓库中\n\n#### 1. 创建 SSH 秘钥\n\n```\n#检查是否存在ssh \nls -al ~/.ssh \n#不存在,则生成key \nssh-keygen -t rsa -b 4096 -C \"<EMAIL>\" \n#添加ssh key 到ssh-agent \neval \"$(ssh-agent -s)\" \n#拷贝到Github 中 \ncat ~/.ssh/id_rsa.pub\n```\n\n#### 2. 配置 SSH 密钥到 Git 仓库 (Github 或 Gitee )\n\n- [配置到Github](https://help.github.com/en/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent)\n- [配置到 Gitee]()\n\n#### 3. docker mysqldump 备份数据库命令\n\n```\n#备份 \ndocker exec blog-mysql sh -c \'exec mysqldump --all-databases -uroot -p\"$MYSQL_ROOT_PASSWORD\"\' > ./all-databases.sql \n#恢复 \ndocker exec -i some-mysql sh -c \'exec mysql -uroot -p\"$MYSQL_ROOT_PASSWORD\"\' < /some/path/on/your/host/all-databases.sql \n# 备份数据库表结构 \ndocker exec blog-mysql sh -c \'exec mysqldump -uroot -p\"$MYSQL_ROOT_PASSWORD\" -d blog\' > ./blog-schema.sql \n#备份数据库数据 \ndocker exec blog-mysql sh -c \'exec mysqldump -uroot -p\"$MYSQL_ROOT_PASSWORD\" -t blog\' > ./blog-data-`date +%Y%m%d`.sql\n```\n\n#### 4. 备份脚本编写\n\n```\n#!/bin/bash\n#删除日志函数\ncleanLog () {\n #3天前的日期\n three_day_ago=$(date +%Y%m%d --date=\"-3 day\")\n #遍历这个数组\n for file in $files\n do\n echo $file\n #获取该文件的创建时间\n echo $(echo $file | sed \'s/[^0-9]*//g\')\n datatime=$(echo $file | sed \'s/[^0-9]*//g\')\n echo \"文件: $datatime\"\n #如果这个文件的时间小于三天前的时间则删除这个文件\n if [ $datatime -lt $three_day_ago ]; then\n rm -rf ./$file\n git rm ./$file\n fi\n done\n}\n\nfile_back_path=/opt/blog/backup/blog_back\n\ncd $file_back_path\n\ntody = $(date \"+%Y-%m-%d %H:%M:%S\")\necho \"备份日期 开始====> :$tody \"\npwd\n\n# 先清除过期文件\nfiles=blog-data-*.sql\ncleanLog $files\nfiles=blog-schema-*.sql\ncleanLog $files\n\n# 备份数据\n# 备份数据库表结构\ndocker exec blog-mysql sh -c \'exec mysqldump -uroot -p\"$MYSQL_ROOT_PASSWORD\" -d blog\' > /blog-schema-`date +%Y%m%d`.sql\n##备份数据库数据\ndocker exec blog-mysql sh -c \'exec mysqldump -uroot -p\"$MYSQL_ROOT_PASSWORD\" -t blog\' > /blog-data-`date +%Y%m%d`.sql\necho \"备份结束 ===> \"\n\necho \"push 到Github\"\ngit pull\ngit add .\ngit commit -m \"backup blog at $tody\"\ngit push\necho \"push 到Github 结束\"\n```\n\n#### 5、配置定时执行\n\n- 脚步执行权限\n\n```\nchmod u+x BlogBack.sh\n```\n\n- 添加任务\n\n```\ncrontab -e \n#在文件尾部添加 \n#语法: m h dom mon dow command \n#分钟 小时 天数 月 周 命令 \n#例子: 每周上午5点 : 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/ \n0 0 * * * sh /opt/blog/backup/BlogBack.sh >/dev/null 2>&1\n```\n\n- 重启\n\n```\n/etc/init.d/cron restart\n```\n\n- 开启 crontab 日志(非必须)\n\n```\nsudo vim /etc/rsyslog.d/50-default.conf\n#找到cron.log相关行,将前面注释符#去掉,保存退出,重启rsyslog:\nsudo service rsyslog restart\n```\n','博客备份',0,1,'<EMAIL>','2020-05-20 14:14:16',1,0,'2020-05-20 14:14:16',1,0,'2020-06-26 17:43:41',20,0,1,1215266189052461057,0,'','1262989998605467648'),(1267078518487908352,'Linux服务器配置笔记','最近想购买服务器搭建属于自己的个人博客,需要对服务器进行一下配置,防止被人攻击购买服务器一般都有安全组配置,注意不要开放一些常用的端口 一、 参考 http:www.ruanyifeng.comblog201403serversetup.html','\n最近想购买服务器搭建属于自己的个人博客,需要对服务器进行一下配置,防止被人攻击\n\n购买服务器一般都有安全组配置,注意不要开放一些常用的端口\n\n### 一、\n\n### 参考\n- http://www.ruanyifeng.com/blog/2014/03/server_setup.html\n','',0,1,'<EMAIL>','2020-05-31 21:00:35',0,0,NULL,0,0,'2020-05-31 21:00:35',0,0,1,0,0,'','1267078518487908352');
/*!40000 ALTER TABLE `t_article` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `t_attachment`
--
LOCK TABLES `t_attachment` WRITE;
/*!40000 ALTER TABLE `t_attachment` DISABLE KEYS */;
INSERT INTO `t_attachment` VALUES (1276068048603918338,'file','jpg','3165021',0,'2020-06-25 16:21:46','2020-06-25 16:21:46','http://cdn.jiajianhuang.cn/images/20200625/20f01c15c2cc462d838223f6700046ca.jpg'),(1276423038035959810,'Flying_Whale_by_Shu_Le.jpg','jpg','966178',0,'2020-06-26 15:52:22','2020-06-26 15:52:22','http://cdn.jiajianhuang.cn/images/20200626/5aa8a827cb604d43a5cdbab2faca208e.jpg'),(1276440276981956610,'Hummingbird_by_Shu_Le.jpg','jpg','1748222',0,'2020-06-26 17:00:52','2020-06-26 17:00:52','http://cdn.jiajianhuang.cn/images/20200626/6672eb4959a54d558fb83fa1058e7f72.jpg'),(1276440894974902274,'Hummingbird_by_Shu_Le.jpg','jpg','1748222',0,'2020-06-26 17:03:19','2020-06-26 17:03:19','http://cdn.jiajianhuang.cn/images/20200626/176db1e948a945219dca1783fb98373e.jpg');
/*!40000 ALTER TABLE `t_attachment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `t_category`
--
LOCK TABLES `t_category` WRITE;
/*!40000 ALTER TABLE `t_category` DISABLE KEYS */;
INSERT INTO `t_category` VALUES (0,'其它','2020-06-10 21:11:46','','2020-06-10 21:11:46'),(1215262901141749762,'后台','2020-01-09 21:23:49','','2020-01-09 21:23:49'),(1215262935740563457,'前端','2020-01-09 21:23:57','','2020-01-09 21:23:57'),(1215262961250320386,'Linux','2020-01-09 21:24:03','','2020-01-09 21:24:03'),(1215263075968729089,'框架','2020-01-09 21:24:30','','2020-01-09 21:24:30'),(1215266189052461057,'关于本站','2020-01-09 21:36:53','','2020-01-09 21:36:53');
/*!40000 ALTER TABLE `t_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `t_comment`
--
LOCK TABLES `t_comment` WRITE;
/*!40000 ALTER TABLE `t_comment` DISABLE KEYS */;
/*!40000 ALTER TABLE `t_comment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `t_friend_link`
--
LOCK TABLES `t_friend_link` WRITE;
/*!40000 ALTER TABLE `t_friend_link` DISABLE KEYS */;
INSERT INTO `t_friend_link` VALUES (1,'2020-06-26 17:42:23','2020-06-26 17:44:40',1,'','http://www.<EMAIL>','<EMAIL>','test');
/*!40000 ALTER TABLE `t_friend_link` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `t_menu`
--
LOCK TABLES `t_menu` WRITE;
/*!40000 ALTER TABLE `t_menu` DISABLE KEYS */;
INSERT INTO `t_menu` VALUES (1190952764063309825,'系统管理',0,0,'根目录',1,'','','','2019-11-03 19:24:00','2020-01-05 21:09:02',0,'sys','layout/index',0),(1190953725242597378,'文章管理',0,0,'根目录',0,'','','','2019-11-03 19:27:50','2020-06-06 21:43:46',0,'article','layout/index',0),(1190953983393619969,'系统监控',0,0,'根目录',2,'','','','2019-11-03 19:28:51','2020-01-05 21:10:33',0,'Monitor','layout/index',0),(1190955569503232002,'菜单管理',1,1190952764063309825,'根目录',1,'','sys:menu','/sys/menu','2019-11-03 19:35:09','2020-06-06 21:36:47',0,'menu','views/sys/menu/index',0),(1190956260263157762,'角色管理',1,1190952764063309825,'根目录',2,'','sys:role','/sys/role','2019-11-03 19:37:54','2020-06-06 21:37:04',0,'role','views/sys/role/index',0),(1190956520771379201,'用户管理',1,1190952764063309825,'根目录',0,'','sys:user','/sys/user','2019-11-03 19:38:56','2020-06-06 21:38:37',0,'user','views/sys/user/index',0),(1190956782248484866,'个人中心',1,1190952764063309825,'根目录',99,'','sys:user:profile','/profile','2019-11-03 19:39:58','2020-06-06 21:39:16',0,'user','views/sys/profile/index',0),(1190961402907701250,'菜单搜索',2,1190955569503232002,'根目录',99,'','sys:menu:search',NULL,'2019-11-03 19:58:20','2020-01-10 21:24:51',0,'search','layout/index',1),(1190963023809081346,'添加菜单',2,1190955569503232002,'根目录',99,'','sys:menu:add',NULL,'2019-11-03 20:04:47','2020-01-10 21:24:58',0,'add','layout/index',1),(1190963114494128130,'编辑菜单',2,1190955569503232002,'根目录',99,'','sys:menu:edit',NULL,'2019-11-03 20:05:08','2020-01-10 21:25:13',0,'edit','layout/index',1),(1190963313421578241,'菜单详情',2,1190955569503232002,'根目录',99,'','sys:menu:info',NULL,'2019-11-03 20:05:56','2020-01-10 21:25:23',0,'menu','layout/index',1),(1190963700576808962,'文章列表',1,1190953725242597378,'根目录',99,'','article','/articles','2019-11-03 20:07:28','2020-06-06 21:44:32',0,'article','views/article/article-list',0),(1190964240761221122,'创建文章',1,1190953725242597378,'根目录',99,'','admin:article:add','/article/create','2019-11-03 20:09:37','2020-01-06 20:52:40',0,'create','views/article/article-create',0),(1190964656332861442,'文章编辑',1,1190953725242597378,'根目录',99,'','article:edit','/article/edit/:id','2019-11-03 20:11:16','2020-06-26 16:21:49',0,'editor','views/article/article-edit',1),(1190965214737330177,'文章分类',1,1190953725242597378,'根目录',99,'','admin:article:category','/article/category','2019-11-03 20:13:29','2020-01-09 21:13:33',0,'category','views/article/category',0),(1190965536222343170,'文章标签',1,1190953725242597378,'根目录',99,'','admin:article:tag','/article/tag','2019-11-03 20:14:46','2020-01-09 21:13:42',0,'tag','views/article/tags',0),(1190966241939156993,'文章删除',2,1190963700576808962,'根目录',99,'','article:delete',NULL,'2019-11-03 20:17:34','2020-06-06 21:42:26',0,'delete','layout/index',1),(1190966783444774913,'文章详情',2,1190963700576808962,'根目录',99,'','article:info',NULL,'2019-11-03 20:19:43','2020-01-10 21:27:13',0,'article','layout/index',1),(1190967812462735362,'角色搜索',2,1190956260263157762,'根目录',99,'','sys:role:search',NULL,'2019-11-03 20:23:48','2020-01-10 21:24:07',0,'search','layout/index',1),(1190967915520978946,'添加角色',2,1190956260263157762,'根目录',99,'','sys:role:add',NULL,'2019-11-03 20:24:13','2020-01-10 21:24:14',0,'add','layout/index',1),(1190968025067810817,'角色编辑',2,1190956260263157762,'根目录',99,'','sys:role:edit',NULL,'2019-11-03 20:24:39','2020-01-10 21:24:28',0,'edit','layout/index',1),(1190968129396928514,'角色详情',2,1190956260263157762,'根目录',99,'','sys:role:info',NULL,'2019-11-03 20:25:04','2020-01-10 21:24:37',0,'role','layout/index',1),(1190968410293661697,'用户添加',2,1190956520771379201,'根目录',99,'','sys:user:add',NULL,'2019-11-03 20:26:11','2020-06-06 21:38:49',0,'add','layout/index',1),(1190968508327129090,'用户编辑',2,1190956520771379201,'根目录',99,'','sys:user:edit',NULL,'2019-11-03 20:26:34','2020-06-06 21:38:55',0,'edit','layout/index',1),(1190968587712720897,'用户详情',2,1190956520771379201,'根目录',99,'','sys:user:info',NULL,'2019-11-03 20:26:53','2020-06-06 21:39:02',0,'user','layout/index',1),(1190970848706818049,'系统日志',1,1190953983393619969,'根目录',99,'','admin:monitor:log','/monitor/log','2019-11-03 20:35:52','2020-01-05 21:10:45',0,'log','views/monitor/log/index',0),(1215624999269015554,'用户搜索',2,1190956520771379201,'根目录',99,'','sys:user:search',NULL,'2020-01-10 21:22:40','2020-06-06 21:39:09',0,'search','layout/index',1),(1215626296789540865,'文章搜索',2,1190963700576808962,'根目录',99,'','article:search',NULL,'2020-01-10 21:27:49','2020-01-10 21:27:49',0,'search','layout/index',1),(1215626547663446017,'分类添加',2,1190965214737330177,'根目录',99,'','article:category:add',NULL,'2020-01-10 21:28:49','2020-01-10 21:28:49',0,'add','layout/index',1),(1215626696632541186,'分类删除',2,1190965214737330177,'根目录',99,'','article:category:delete',NULL,'2020-01-10 21:29:24','2020-06-06 21:58:18',0,'delete','layout/index',1),(1215626845844905985,'分类编辑',2,1190965214737330177,'根目录',99,'','article:category:edit',NULL,'2020-01-10 21:30:00','2020-06-06 21:58:25',0,'edit','layout/index',1),(1215627034445979649,'分类搜索',2,1190965214737330177,'根目录',99,'','article:category:search',NULL,'2020-01-10 21:30:45','2020-01-10 21:30:45',0,'search','layout/index',1),(1215627152536608769,'标签添加',2,1190965536222343170,'根目录',99,'','article:tag:add',NULL,'2020-01-10 21:31:13','2020-01-10 21:31:13',0,'add','layout/index',1),(1215627251610263554,'标签删除',2,1190965536222343170,'根目录',99,'','article:tag:delete',NULL,'2020-01-10 21:31:37','2020-01-10 21:31:37',0,'delete','layout/index',1),(1215627366181871617,'标签编辑',2,1190965536222343170,'根目录',99,'','article:tag:edit',NULL,'2020-01-10 21:32:04','2020-01-10 21:32:04',0,'edit','layout/index',1),(1215627489569906689,'标签搜索',2,1190965536222343170,'根目录',99,'','article:tag:search',NULL,'2020-01-10 21:32:33','2020-01-10 21:32:33',0,'search','layout/index',1),(1269261854996172801,'菜单删除',2,1190955569503232002,'根目录',99,'','sys:menu:delete',NULL,'2020-06-06 21:36:23','2020-06-06 21:36:23',0,'delete','layout/index',1),(1269262138686312450,'角色删除',2,1190956260263157762,'根目录',99,'','sys:role:delete',NULL,'2020-06-06 21:37:30','2020-06-06 21:37:30',0,'delete','layout/index',1),(1269262362750226433,'用户删除',2,1190956520771379201,'根目录',99,'','sys:user:delete',NULL,'2020-06-06 21:38:24','2020-06-06 21:38:24',0,'delete','layout/index',1),(1269267622323556354,'分类详情',2,1190965214737330177,'根目录',99,'','article:category:info',NULL,'2020-06-06 21:59:18','2020-06-06 21:59:18',0,'form','layout/index',1),(1269267783800066049,'标签详情',2,1190965536222343170,'根目录',99,'','article:tag:info',NULL,'2020-06-06 21:59:56','2020-06-06 21:59:56',0,'form','layout/index',1),(1276426909986725890,'附件',1,0,'根目录',99,'','sys-tool:picture:*','/picture','2020-06-26 16:07:45','2020-06-26 16:07:45',0,'picture','views/sys-tool/picture/index',0),(1276433891468689409,'附件搜索',2,1276426909986725890,'根目录',99,'','sys-tool:picture:search','','2020-06-26 16:35:29','2020-06-26 16:35:29',0,'search','layout/index',1),(1276433950432215042,'附件上传',2,1276426909986725890,'根目录',99,'','sys-tool:picture:upload',NULL,'2020-06-26 16:35:43','2020-06-26 16:35:43',0,'picture','layout/index',1),(1276435220253556737,'友链管理',1,0,'根目录',99,'','friends','/friends','2020-06-26 16:40:46','2020-06-26 16:40:46',0,'peoples','views/friend-link/index',0),(1276435679060082690,'友链删除',2,1276435220253556737,'根目录',99,'','friends:delete','','2020-06-26 16:42:36','2020-06-26 16:42:36',0,'delete','layout/index',1),(1276435791958163458,'友链添加',2,1276435220253556737,'根目录',99,'','friends:add',NULL,'2020-06-26 16:43:02','2020-06-26 16:43:02',0,'add','layout/index',1),(1276435912909307905,'友链搜索',2,1276435220253556737,'根目录',99,'','friends:search',NULL,'2020-06-26 16:43:31','2020-06-26 16:43:31',0,'search','layout/index',1),(1276436035705946113,'友链审核',2,1276435220253556737,'根目录',99,'','friends:examine',NULL,'2020-06-26 16:44:01','2020-06-26 16:44:01',0,'peoples','layout/index',1);
/*!40000 ALTER TABLE `t_menu` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `t_role`
--
LOCK TABLES `t_role` WRITE;
/*!40000 ALTER TABLE `t_role` DISABLE KEYS */;
/*!40000 ALTER TABLE `t_role` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `t_role_menu`
--
LOCK TABLES `t_role_menu` WRITE;
/*!40000 ALTER TABLE `t_role_menu` DISABLE KEYS */;
INSERT INTO `t_role_menu` VALUES (30,1256542256089796610,1190956520771379201),(31,1256542256089796610,1190955569503232002),(32,1256542256089796610,1190956782248484866),(33,1256542256089796610,1190965214737330177),(34,1256542256089796610,1190970848706818049),(35,1256542256089796610,1190963700576808962),(36,1256542256089796610,1190970158727032834),(37,1256542256089796610,1190964240761221122),(38,1256542256089796610,1190964656332861442),(39,1256542256089796610,1190956260263157762),(40,1256542256089796610,1213806193341001729),(41,1256542256089796610,1190971465814765570),(42,1256542256089796610,1190965536222343170);
/*!40000 ALTER TABLE `t_role_menu` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `t_tag`
--
LOCK TABLES `t_tag` WRITE;
/*!40000 ALTER TABLE `t_tag` DISABLE KEYS */;
INSERT INTO `t_tag` VALUES (1215290346028900353,'关于本站','2020-01-09 23:12:52','2020-01-09 23:12:52'),(1215290346041483265,'关于博主','2020-01-09 23:12:52','2020-01-09 23:12:52'),(1276448300710674434,'博客备份','2020-06-26 17:32:45','2020-06-26 17:32:45'),(1276451051616256001,'博客备份','2020-06-26 17:43:41','2020-06-26 17:43:41');
/*!40000 ALTER TABLE `t_tag` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `t_tag_article`
--
LOCK TABLES `t_tag_article` WRITE;
/*!40000 ALTER TABLE `t_tag_article` DISABLE KEYS */;
INSERT INTO `t_tag_article` VALUES (54,1215290346041483265,1257195405330874368),(82,1215290346028900353,1215290345965985793),(83,1215290346041483265,1215290345965985793),(85,1276451051616256001,1262989998605467648);
/*!40000 ALTER TABLE `t_tag_article` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `t_user`
--
LOCK TABLES `t_user` WRITE;
/*!40000 ALTER TABLE `t_user` DISABLE KEYS */;
INSERT INTO `t_user` VALUES (0,'hdj','<EMAIL>','9f21cc7ca266502c618f63d457646adb820ef200cd2e4de79f265e2118091c9a','af46887b235b20e31235aa9903c345ed','http://cdn.jiajianhuang.cn/images/20200625/20f01c15c2cc462d838223f6700046ca.jpg',1,'1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111',0,0,'2020-06-26 16:19:37','2019-07-10 10:48:04','2020-06-26 16:14:40');
/*!40000 ALTER TABLE `t_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping data for table `t_user_role`
--
LOCK TABLES `t_user_role` WRITE;
/*!40000 ALTER TABLE `t_user_role` DISABLE KEYS */;
/*!40000 ALTER TABLE `t_user_role` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2020-06-26 9:59:08
|
<reponame>nvanbaak/project2placeholder
DROP DATABASE IF EXISTS pocketbutler_db;
CREATE DATABASE pocketbutler_db; |
-- file:triggers.sql ln:75 expect:true
insert into fkeys2 values (30, '3', 2)
|
<filename>internal/endtoend/testdata/func_aggregate/query.sql
-- Example queries for sqlc
CREATE TABLE authors (
id BIGSERIAL PRIMARY KEY,
name text NOT NULL,
bio text
);
-- name: Percentile :one
select percentile_disc(0.5) within group (order by authors.name)
from authors;
|
CREATE TABLE featureshop (
id CHAVE NOT NULL,
id_feature CHAVE NOT NULL,
id_shop CHAVE NOT NULL,
CONSTRAINT pk_featureshop PRIMARY KEY (id)
); |
CREATE TABLE IF NOT EXISTS `account_links` (
`id` varchar(200) NOT NULL,
`uid` varchar(200) NOT NULL,
`provider` char(60) DEFAULT NULL,
`profile` text NOT NULL,
`linked` datetime NOT NULL,
PRIMARY KEY (`id`,`uid`),
KEY `uid` (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `audit_events` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`ip` varchar(50) DEFAULT NULL,
`initiator` varchar(200) DEFAULT NULL,
`browser` varchar(200) DEFAULT NULL,
`platform` varchar(200) DEFAULT NULL,
`date` datetime NOT NULL,
`tenant_id` int(10) NOT NULL,
`user_id` char(38) DEFAULT NULL,
`page` varchar(300) DEFAULT NULL,
`action` int(11) DEFAULT NULL,
`description` varchar(20000) DEFAULT NULL,
`target` text,
PRIMARY KEY (`id`),
KEY `date` (`tenant_id`,`date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `backup_backup` (
`id` char(38) NOT NULL,
`tenant_id` int(11) NOT NULL,
`is_scheduled` int(1) NOT NULL,
`name` varchar(255) NOT NULL,
`storage_type` int(11) NOT NULL,
`storage_base_path` varchar(255) DEFAULT NULL,
`storage_path` varchar(255) NOT NULL,
`created_on` datetime NOT NULL,
`expires_on` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
`storage_params` TEXT NULL,
`hash` char(64) NOT NULL,
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`),
KEY `expires_on` (`expires_on`),
KEY `is_scheduled` (`is_scheduled`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `backup_schedule` (
`tenant_id` int(11) NOT NULL,
`backup_mail` int(11) NOT NULL DEFAULT '0',
`cron` varchar(255) NOT NULL,
`backups_stored` int(11) NOT NULL,
`storage_type` int(11) NOT NULL,
`storage_base_path` varchar(255) DEFAULT NULL,
`last_backup_time` datetime NOT NULL,
`storage_params` TEXT NULL,
PRIMARY KEY (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `blogs_comments` (
`tenant` int(11) NOT NULL,
`id` char(38) NOT NULL,
`post_id` char(38) NOT NULL,
`content` text,
`created_by` char(38) NOT NULL,
`created_when` datetime NOT NULL,
`parent_id` char(38) DEFAULT NULL,
`inactive` int(11) DEFAULT NULL,
PRIMARY KEY (`tenant`,`id`),
KEY `ixComments_PostId` (`tenant`,`post_id`),
KEY `ixComments_Created` (`created_when`,`tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `blogs_posts` (
`post_id` int(11) NOT NULL AUTO_INCREMENT,
`id` char(38) NOT NULL,
`title` varchar(255) NOT NULL,
`content` mediumtext NOT NULL,
`created_by` char(38) NOT NULL,
`created_when` datetime NOT NULL,
`blog_id` int(11) NOT NULL,
`Tenant` int(11) NOT NULL DEFAULT '0',
`LastCommentId` char(38) DEFAULT NULL,
`LastModified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`post_id`),
KEY `ixPosts_CreatedBy` (`Tenant`,`created_by`),
KEY `ixPosts_LastCommentId` (`Tenant`,`LastCommentId`),
KEY `ixPosts_CreatedWhen` (`created_when`,`Tenant`),
KEY `LastModified` (`LastModified`),
KEY `Tenant` (`Tenant`,`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `blogs_reviewposts` (
`post_id` char(38) NOT NULL,
`reviewed_by` char(38) NOT NULL,
`timestamp` datetime NOT NULL,
`Tenant` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`Tenant`,`post_id`,`reviewed_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `blogs_tags` (
`post_id` varchar(38) NOT NULL,
`name` varchar(255) NOT NULL,
`Tenant` int(11) NOT NULL,
PRIMARY KEY (`Tenant`,`post_id`,`name`),
KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `bookmarking_bookmark` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`URL` text,
`Date` datetime DEFAULT NULL,
`Name` varchar(255) DEFAULT NULL,
`Description` text,
`UserCreatorID` char(38) DEFAULT NULL,
`Tenant` int(11) NOT NULL,
PRIMARY KEY (`ID`),
KEY `Tenant` (`Tenant`),
KEY `DateIndex` (`Date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `bookmarking_bookmarktag` (
`BookmarkID` int(11) NOT NULL,
`TagID` int(11) NOT NULL,
`Tenant` int(11) NOT NULL,
PRIMARY KEY (`BookmarkID`,`TagID`),
KEY `Tenant` (`Tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `bookmarking_comment` (
`ID` char(38) NOT NULL,
`UserID` char(38) DEFAULT NULL,
`Content` text,
`Datetime` datetime DEFAULT NULL,
`Parent` char(38) DEFAULT NULL,
`BookmarkID` int(11) DEFAULT NULL,
`Inactive` int(11) DEFAULT NULL,
`Tenant` int(11) NOT NULL,
PRIMARY KEY (`Tenant`,`ID`),
KEY `IndexCommentBookmarkID` (`Tenant`,`BookmarkID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `bookmarking_tag` (
`TagID` int(11) NOT NULL AUTO_INCREMENT,
`Name` varchar(255) NOT NULL,
`Tenant` int(11) NOT NULL,
PRIMARY KEY (`TagID`),
KEY `Name` (`Tenant`,`Name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `bookmarking_userbookmark` (
`UserBookmarkID` int(11) NOT NULL AUTO_INCREMENT,
`UserID` char(38) DEFAULT NULL,
`DateAdded` datetime DEFAULT NULL,
`Name` varchar(255) DEFAULT NULL,
`Description` text,
`BookmarkID` int(11) NOT NULL,
`Raiting` int(11) NOT NULL DEFAULT '0',
`Tenant` int(11) NOT NULL,
`LastModified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`UserBookmarkID`),
KEY `BookmarkID` (`BookmarkID`),
KEY `LastModified` (`LastModified`),
KEY `Tenant` (`Tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `bookmarking_userbookmarktag` (
`UserBookmarkID` int(11) NOT NULL,
`TagID` int(11) NOT NULL,
`Tenant` int(11) NOT NULL,
PRIMARY KEY (`UserBookmarkID`,`TagID`),
KEY `Tenant` (`Tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `calendar_calendars` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`owner_id` char(38) NOT NULL,
`name` varchar(255) NOT NULL,
`description` varchar(255) DEFAULT NULL,
`tenant` int(10) NOT NULL,
`text_color` varchar(50) NOT NULL DEFAULT '#000000',
`background_color` varchar(50) NOT NULL DEFAULT '#fa9191',
`alert_type` smallint(6) NOT NULL DEFAULT '0',
`time_zone` varchar(255) NOT NULL DEFAULT 'UTC',
`ical_url` mediumtext,
`caldav_guid` char(38) DEFAULT NULL,
`is_todo` int(11) NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `owner_id` (`tenant`,`owner_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `calendar_calendar_item` (
`calendar_id` int(10) NOT NULL,
`item_id` char(38) NOT NULL,
`is_group` smallint(2) NOT NULL DEFAULT '0',
PRIMARY KEY (`calendar_id`,`item_id`,`is_group`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `calendar_calendar_user` (
`calendar_id` int(10) NOT NULL DEFAULT '0',
`ext_calendar_id` varchar(50) NOT NULL DEFAULT '',
`user_id` char(38) NOT NULL,
`hide_events` smallint(2) NOT NULL DEFAULT '0',
`is_accepted` smallint(2) NOT NULL DEFAULT '0',
`text_color` varchar(50) NOT NULL,
`background_color` varchar(50) NOT NULL,
`is_new` smallint(2) NOT NULL DEFAULT '0',
`alert_type` smallint(6) NOT NULL DEFAULT '0',
`name` varchar(255) DEFAULT NULL,
`time_zone` varchar(255) DEFAULT 'UTC',
PRIMARY KEY (`calendar_id`,`ext_calendar_id`,`user_id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `calendar_events` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`tenant` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`description` text NOT NULL,
`calendar_id` int(11) NOT NULL,
`start_date` datetime NOT NULL,
`end_date` datetime NOT NULL,
`update_date` datetime NULL DEFAULT NULL,
`all_day_long` smallint(6) NOT NULL DEFAULT '0',
`repeat_type` smallint(6) NOT NULL DEFAULT '0',
`owner_id` char(38) NOT NULL,
`alert_type` smallint(6) NOT NULL DEFAULT '0',
`rrule` text NOT NULL,
`uid` varchar(255) DEFAULT NULL,
`status` smallint(6) NOT NULL DEFAULT '0',
`time_zone` varchar(255) NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `calendar_id` (`tenant`,`calendar_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `calendar_event_history` (
`tenant` int(11) NOT NULL,
`calendar_id` int(11) NOT NULL,
`event_uid` char(255) NOT NULL,
`event_id` int(10) NOT NULL DEFAULT '0',
`ics` mediumtext,
PRIMARY KEY (`tenant`,`calendar_id`,`event_uid`),
KEY `event_id` (`tenant`,`event_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `calendar_event_item` (
`event_id` int(10) NOT NULL,
`item_id` char(38) NOT NULL,
`is_group` smallint(2) NOT NULL DEFAULT '0',
PRIMARY KEY (`event_id`,`item_id`,`is_group`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `calendar_event_user` (
`event_id` int(10) NOT NULL,
`user_id` char(38) NOT NULL,
`alert_type` smallint(6) NOT NULL DEFAULT '0',
`is_unsubscribe` smallint(2) NOT NULL DEFAULT '0',
PRIMARY KEY (`event_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `calendar_notifications` (
`user_id` char(38) NOT NULL,
`event_id` int(10) NOT NULL,
`notify_date` datetime NOT NULL,
`tenant` int(10) NOT NULL,
`alert_type` smallint(2) NOT NULL,
`repeat_type` smallint(2) NOT NULL DEFAULT '0',
`time_zone` varchar(255) NOT NULL DEFAULT 'UTC',
`rrule` varchar(255) DEFAULT NULL,
PRIMARY KEY (`user_id`,`event_id`),
KEY `event_id` (`event_id`),
KEY `notify_date` (`notify_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `calendar_todos` (
`id` INT(10) NOT NULL AUTO_INCREMENT,
`tenant` INT(11) NOT NULL,
`name` VARCHAR(255) NOT NULL,
`description` TEXT NOT NULL,
`calendar_id` INT(11) NOT NULL,
`start_date` DATETIME NULL DEFAULT NULL,
`completed` DATETIME NULL DEFAULT NULL,
`owner_id` CHAR(38) NOT NULL,
`uid` VARCHAR(255) NULL DEFAULT NULL,
PRIMARY KEY (`id`),
INDEX `calendar_id` (`tenant`, `calendar_id`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `core_acl` (
`tenant` int(11) NOT NULL,
`subject` varchar(38) NOT NULL,
`action` varchar(38) NOT NULL,
`object` varchar(255) NOT NULL DEFAULT '',
`acetype` int(11) NOT NULL,
PRIMARY KEY (`tenant`,`subject`,`action`,`object`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `core_group` (
`tenant` int(11) NOT NULL,
`id` varchar(38) NOT NULL,
`name` varchar(128) NOT NULL,
`categoryid` varchar(38) DEFAULT NULL,
`parentid` varchar(38) DEFAULT NULL,
`sid` varchar(512) DEFAULT NULL,
`removed` int(11) NOT NULL DEFAULT '0',
`last_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `parentid` (`tenant`,`parentid`),
KEY `last_modified` (`last_modified`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `core_settings` (
`tenant` int(11) NOT NULL,
`id` varchar(128) NOT NULL,
`value` mediumblob NOT NULL,
`last_modified` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`tenant`,`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `core_subscription` (
`tenant` int(11) NOT NULL,
`source` varchar(38) NOT NULL,
`action` varchar(128) NOT NULL,
`recipient` varchar(38) NOT NULL,
`object` varchar(128) NOT NULL,
`unsubscribed` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`tenant`,`source`,`action`,`recipient`,`object`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
CREATE TABLE IF NOT EXISTS `core_subscriptionmethod` (
`tenant` int(11) NOT NULL,
`source` varchar(38) NOT NULL,
`action` varchar(128) NOT NULL,
`recipient` varchar(38) NOT NULL,
`sender` varchar(1024) NOT NULL,
PRIMARY KEY (`tenant`,`source`,`action`,`recipient`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `core_user` (
`tenant` int(11) NOT NULL,
`id` varchar(38) NOT NULL,
`username` varchar(255) NOT NULL,
`firstname` varchar(64) NOT NULL,
`lastname` varchar(64) NOT NULL,
`sex` int(11) DEFAULT NULL,
`bithdate` datetime DEFAULT NULL,
`status` int(11) NOT NULL DEFAULT '1',
`activation_status` int(11) NOT NULL DEFAULT '0',
`email` varchar(255) DEFAULT NULL,
`workfromdate` datetime DEFAULT NULL,
`terminateddate` datetime DEFAULT NULL,
`title` varchar(64) DEFAULT NULL,
`department` varchar(128) DEFAULT NULL,
`culture` varchar(20) DEFAULT NULL,
`contacts` varchar(1024) DEFAULT NULL,
`phone` varchar(255) DEFAULT NULL,
`phone_activation` int(11) NOT NULL DEFAULT '0',
`location` varchar(255) DEFAULT NULL,
`notes` varchar(512) DEFAULT NULL,
`sid` varchar(512) DEFAULT NULL,
`sso_name_id` varchar(512) DEFAULT NULL,
`sso_session_id` varchar(512) DEFAULT NULL,
`removed` int(11) NOT NULL DEFAULT '0',
`create_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`last_modified` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `last_modified` (`last_modified`),
KEY `username` (`tenant`,`username`),
KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `core_usergroup` (
`tenant` int(11) NOT NULL,
`userid` varchar(38) NOT NULL,
`groupid` varchar(38) NOT NULL,
`ref_type` int(11) NOT NULL,
`removed` int(11) NOT NULL DEFAULT '0',
`last_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`tenant`,`userid`,`groupid`,`ref_type`),
KEY `last_modified` (`last_modified`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `core_userphoto` (
`tenant` int(11) NOT NULL,
`userid` varchar(38) NOT NULL,
`photo` mediumblob NOT NULL,
PRIMARY KEY (`userid`),
KEY `tenant` (`tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `core_usersecurity` (
`tenant` int(11) NOT NULL,
`userid` varchar(38) NOT NULL,
`pwdhash` varchar(512) DEFAULT NULL,
`pwdhashsha512` varchar(512) DEFAULT NULL,
`LastModified` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`userid`),
KEY `pwdhash` (`<PASSWORD>`(255)),
KEY `tenant` (`tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_case` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`is_closed` tinyint(1) NOT NULL DEFAULT '0',
`create_by` char(38) NOT NULL,
`create_on` datetime NOT NULL,
`tenant_id` int(11) NOT NULL,
`last_modifed_on` datetime DEFAULT NULL,
`last_modifed_by` char(38) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`),
KEY `create_on` (`create_on`),
KEY `last_modifed_on` (`last_modifed_on`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_contact` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tenant_id` int(11) NOT NULL,
`is_company` tinyint(1) NOT NULL,
`notes` text,
`title` varchar(255) DEFAULT NULL,
`first_name` varchar(255) DEFAULT NULL,
`last_name` varchar(255) DEFAULT NULL,
`company_name` varchar(255) DEFAULT NULL,
`industry` varchar(255) DEFAULT NULL,
`status_id` int(11) NOT NULL DEFAULT '0',
`company_id` int(11) NOT NULL,
`contact_type_id` int(11) NOT NULL DEFAULT '0',
`create_by` char(38) NOT NULL,
`create_on` datetime NOT NULL,
`last_modifed_on` datetime DEFAULT NULL,
`last_modifed_by` char(38) DEFAULT NULL,
`display_name` varchar(255) DEFAULT NULL,
`is_shared` tinyint(4) DEFAULT NULL,
`currency` varchar(3) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `company_id` (`tenant_id`,`company_id`),
KEY `display_name` (`tenant_id`,`display_name`),
KEY `create_on` (`create_on`),
KEY `last_modifed_on` (`last_modifed_on`,`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_contact_info` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`data` text NOT NULL,
`category` int(255) NOT NULL,
`tenant_id` int(255) NOT NULL,
`is_primary` tinyint(4) NOT NULL,
`contact_id` int(11) NOT NULL,
`type` int(255) NOT NULL,
`last_modifed_on` datetime DEFAULT NULL,
`last_modifed_by` char(38) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `IX_Contact` (`tenant_id`,`contact_id`),
KEY `last_modifed_on` (`last_modifed_on`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_currency_info` (
`resource_key` varchar(255) NOT NULL,
`abbreviation` varchar(255) NOT NULL,
`symbol` varchar(255) NOT NULL,
`culture_name` varchar(255) NOT NULL,
`is_convertable` tinyint(4) NOT NULL,
`is_basic` tinyint(4) NOT NULL,
PRIMARY KEY (`abbreviation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_currency_rate` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`from_currency` varchar(255) NOT NULL,
`to_currency` varchar(255) NOT NULL,
`rate` decimal(10,2) NOT NULL DEFAULT '0.00',
`create_by` char(38) NOT NULL,
`create_on` datetime NOT NULL,
`tenant_id` int(11) NOT NULL,
`last_modifed_by` char(38) DEFAULT NULL,
`last_modifed_on` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`),
KEY `from_currency` (`from_currency`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_deal` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`description` text,
`responsible_id` char(38) NOT NULL,
`contact_id` int(11) NOT NULL,
`create_on` datetime NOT NULL,
`create_by` char(38) NOT NULL,
`bid_currency` varchar(255) DEFAULT NULL,
`bid_value` decimal(50,9) NOT NULL DEFAULT '0.000000000',
`bid_type` int(11) NOT NULL DEFAULT '0',
`deal_milestone_id` int(11) NOT NULL,
`tenant_id` int(11) NOT NULL,
`expected_close_date` datetime NOT NULL,
`per_period_value` int(11) NOT NULL DEFAULT '0',
`deal_milestone_probability` int(11) DEFAULT NULL,
`last_modifed_on` datetime DEFAULT NULL,
`last_modifed_by` char(38) DEFAULT NULL,
`actual_close_date` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `contact_id` (`tenant_id`,`contact_id`),
KEY `create_on` (`create_on`),
KEY `deal_milestone_id` (`deal_milestone_id`),
KEY `last_modifed_on` (`last_modifed_on`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_deal_milestone` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`color` varchar(50) NOT NULL DEFAULT '0',
`sort_order` int(10) NOT NULL DEFAULT '0',
`title` varchar(250) NOT NULL,
`description` text,
`probability` int(10) NOT NULL DEFAULT '0',
`status` int(10) NOT NULL DEFAULT '0',
`tenant_id` int(10) NOT NULL,
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_entity_contact` (
`entity_id` int(11) NOT NULL,
`entity_type` int(11) NOT NULL,
`contact_id` int(11) NOT NULL,
PRIMARY KEY (`entity_id`,`entity_type`,`contact_id`),
KEY `IX_Contact` (`contact_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_entity_tag` (
`tag_id` int(11) NOT NULL,
`entity_id` int(11) NOT NULL,
`entity_type` int(10) NOT NULL,
PRIMARY KEY (`entity_id`,`entity_type`,`tag_id`),
KEY `tag_id` (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_field_description` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tenant_id` int(11) NOT NULL,
`label` varchar(255) NOT NULL,
`type` int(11) NOT NULL,
`sort_order` int(11) NOT NULL DEFAULT '0',
`mask` text,
`entity_type` int(255) NOT NULL,
PRIMARY KEY (`id`),
KEY `entity_type` (`tenant_id`,`entity_type`,`sort_order`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_field_value` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`value` text,
`entity_id` int(11) NOT NULL,
`tenant_id` int(11) NOT NULL,
`field_id` int(11) NOT NULL,
`entity_type` int(10) NOT NULL,
`last_modifed_on` datetime DEFAULT NULL,
`last_modifed_by` char(38) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `field_id` (`field_id`),
KEY `last_modifed_on` (`last_modifed_on`),
KEY `tenant_id` (`tenant_id`,`entity_id`,`entity_type`,`field_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_invoice` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`status` int(11) NOT NULL DEFAULT '1',
`number` varchar(255) NOT NULL,
`issue_date` datetime NOT NULL,
`template_type` int(11) NOT NULL DEFAULT '0',
`contact_id` int(11) NOT NULL DEFAULT '-1',
`consignee_id` int(11) NOT NULL DEFAULT '-1',
`entity_type` int(11) NOT NULL,
`entity_id` int(11) NOT NULL,
`due_date` datetime NOT NULL,
`language` varchar(255) NOT NULL,
`currency` varchar(255) NOT NULL,
`exchange_rate` decimal(10,2) NOT NULL DEFAULT '1.00',
`purchase_order_number` varchar(255) NOT NULL,
`terms` text,
`description` text,
`json_data` text,
`file_id` int(11) NOT NULL DEFAULT '-1',
`create_on` datetime NOT NULL,
`create_by` char(38) NOT NULL,
`last_modifed_on` datetime DEFAULT NULL,
`last_modifed_by` char(38) DEFAULT NULL,
`tenant_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_invoice_item` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`description` text NOT NULL,
`stock_keeping_unit` varchar(255) NOT NULL,
`price` decimal(10,2) NOT NULL DEFAULT '0.00',
`stock_quantity` decimal(10,2) NOT NULL DEFAULT '0.00',
`track_inventory` tinyint(4) NOT NULL DEFAULT '0',
`invoice_tax1_id` int(11) NOT NULL DEFAULT '0',
`invoice_tax2_id` int(11) NOT NULL DEFAULT '0',
`currency` varchar(255) NOT NULL,
`create_on` datetime NOT NULL,
`create_by` char(38) NOT NULL,
`last_modifed_on` datetime DEFAULT NULL,
`last_modifed_by` char(38) DEFAULT NULL,
`tenant_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_invoice_line` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`invoice_id` int(11) NOT NULL,
`invoice_item_id` int(11) NOT NULL,
`invoice_tax1_id` int(11) NOT NULL,
`invoice_tax2_id` int(11) NOT NULL,
`description` text NOT NULL,
`quantity` decimal(10,2) NOT NULL DEFAULT '0.00',
`price` decimal(10,2) NOT NULL DEFAULT '0.00',
`discount` decimal(10,2) NOT NULL DEFAULT '0.00',
`sort_order` int(11) NOT NULL DEFAULT '0',
`tenant_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_invoice_tax` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`description` text NOT NULL,
`rate` decimal(10,2) NOT NULL DEFAULT '0.00',
`create_on` datetime NOT NULL,
`create_by` char(38) NOT NULL,
`last_modifed_on` datetime DEFAULT NULL,
`last_modifed_by` char(38) DEFAULT NULL,
`tenant_id` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_list_item` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`sort_order` int(11) NOT NULL DEFAULT '0',
`color` varchar(255) DEFAULT NULL,
`additional_params` varchar(255) DEFAULT NULL,
`tenant_id` int(11) NOT NULL,
`list_type` int(255) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `list_type` (`tenant_id`,`list_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_organisation_logo` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`content` mediumtext NOT NULL,
`create_by` char(38) NOT NULL,
`create_on` datetime NOT NULL,
`tenant_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_projects` (
`project_id` int(10) NOT NULL,
`contact_id` int(10) NOT NULL,
`tenant_id` int(10) NOT NULL,
PRIMARY KEY (`tenant_id`,`contact_id`,`project_id`),
KEY `project_id` (`tenant_id`,`project_id`),
KEY `contact_id` (`tenant_id`,`contact_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_relationship_event` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`contact_id` int(11) NOT NULL,
`content` text,
`create_by` char(38) NOT NULL,
`create_on` datetime NOT NULL,
`tenant_id` int(11) NOT NULL,
`entity_type` int(11) NOT NULL,
`entity_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`last_modifed_by` char(38) DEFAULT NULL,
`last_modifed_on` datetime DEFAULT NULL,
`have_files` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`),
KEY `IX_Contact` (`contact_id`),
KEY `IX_Entity` (`entity_id`,`entity_type`),
KEY `last_modifed_on` (`last_modifed_on`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_report_file` (
`file_id` int(11) NOT NULL,
`report_type` int(11) NOT NULL,
`create_on` datetime NOT NULL,
`create_by` char(38) NOT NULL,
`tenant_id` int(11) NOT NULL,
PRIMARY KEY (`file_id`),
KEY `tenant_id` (`tenant_id`),
KEY `create_by` (`create_by`),
KEY `create_on` (`create_on`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_tag` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`tenant_id` int(11) NOT NULL,
`entity_type` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_task` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`description` text,
`deadline` datetime NOT NULL,
`responsible_id` char(38) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
`contact_id` int(11) NOT NULL DEFAULT '-1',
`is_closed` int(1) NOT NULL DEFAULT '0',
`tenant_id` int(11) NOT NULL,
`entity_type` int(11) NOT NULL,
`entity_id` int(11) NOT NULL,
`category_id` int(11) NOT NULL DEFAULT '0',
`create_on` datetime NOT NULL,
`create_by` char(38) NOT NULL,
`last_modifed_on` datetime DEFAULT NULL,
`last_modifed_by` char(38) DEFAULT NULL,
`alert_value` int(10) NOT NULL DEFAULT '0',
`exec_alert` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `responsible_id` (`tenant_id`,`responsible_id`),
KEY `IX_Contact` (`tenant_id`,`contact_id`),
KEY `IX_Entity` (`tenant_id`,`entity_id`,`entity_type`),
KEY `create_on` (`create_on`),
KEY `deadline` (`deadline`),
KEY `last_modifed_on` (`last_modifed_on`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_task_template` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`create_on` datetime NOT NULL,
`create_by` char(38) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
`last_modifed_on` datetime NOT NULL,
`last_modifed_by` char(38) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
`title` varchar(255) NOT NULL,
`category_id` int(10) NOT NULL,
`description` tinytext,
`responsible_id` char(38) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
`is_notify` tinyint(4) NOT NULL,
`offset` bigint(20) NOT NULL DEFAULT '0',
`sort_order` int(11) NOT NULL DEFAULT '0',
`deadLine_is_fixed` tinyint(4) NOT NULL,
`tenant_id` int(10) NOT NULL,
`container_id` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `template_id` (`tenant_id`,`container_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_task_template_container` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`title` varchar(256) NOT NULL,
`entity_type` int(10) NOT NULL,
`tenant_id` int(10) NOT NULL,
`create_on` datetime NOT NULL,
`create_by` char(38) NOT NULL DEFAULT '0',
`last_modifed_on` datetime NOT NULL,
`last_modifed_by` char(38) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `entity_type` (`tenant_id`,`entity_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_task_template_task` (
`task_id` int(10) NOT NULL,
`task_template_id` int(10) NOT NULL,
`tenant_id` int(10) NOT NULL,
PRIMARY KEY (`tenant_id`,`task_id`,`task_template_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_voip_calls` (
`id` varchar(50) NOT NULL,
`parent_call_id` varchar(50) NOT NULL,
`number_from` varchar(50) NOT NULL,
`number_to` varchar(50) NOT NULL,
`status` int(10) DEFAULT NULL,
`answered_by` varchar(50) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
`dial_date` datetime DEFAULT NULL,
`dial_duration` int(11) DEFAULT NULL,
`record_sid` VARCHAR(50) NULL DEFAULT NULL,
`record_url` text,
`record_duration` int(11) DEFAULT NULL,
`record_price` DECIMAL(10,4) NOT NULL,
`contact_id` int(10) DEFAULT NULL,
`price` decimal(10,4) DEFAULT NULL,
`tenant_id` int(10) NOT NULL,
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`),
KEY `parent_call_id` (`parent_call_id`, `tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `crm_voip_number` (
`id` varchar(50) NOT NULL,
`number` varchar(50) NOT NULL,
`alias` varchar(255) DEFAULT NULL,
`settings` text,
`tenant_id` int(10) NOT NULL,
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `dbip_location` (
`id` INT(10) NOT NULL AUTO_INCREMENT,
`addr_type` ENUM('ipv4','ipv6') NOT NULL,
`ip_start` VARCHAR(39) NOT NULL,
`ip_end` VARCHAR(39) NOT NULL,
`country` VARCHAR(2) NOT NULL,
`stateprov` VARCHAR(255) NOT NULL,
`district` VARCHAR(255) NULL DEFAULT NULL,
`city` VARCHAR(255) NOT NULL,
`zipcode` VARCHAR(255) NULL DEFAULT NULL,
`latitude` FLOAT NULL DEFAULT NULL,
`longitude` FLOAT NULL DEFAULT NULL,
`geoname_id` INT(11) NULL DEFAULT NULL,
`timezone_offset` INT(10) NULL DEFAULT NULL,
`timezone_name` VARCHAR(255) NULL DEFAULT NULL,
`processed` INT(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
INDEX `ip_start` (`ip_start`)
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB;
CREATE TABLE IF NOT EXISTS `dbsync_last` (
`last_key` varchar(128) NOT NULL,
`last_date` datetime NOT NULL,
PRIMARY KEY (`last_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `events_comment` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`Feed` int(11) NOT NULL,
`Comment` text NOT NULL,
`Parent` int(11) NOT NULL DEFAULT '0',
`Date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`Creator` varchar(38) DEFAULT NULL,
`Inactive` int(11) NOT NULL DEFAULT '0',
`Tenant` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`Id`),
KEY `Tenant` (`Tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `events_feed` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`FeedType` int(11) NOT NULL DEFAULT '1',
`Caption` text NOT NULL,
`Text` text,
`Date` datetime NOT NULL,
`Creator` varchar(38) DEFAULT NULL,
`Tenant` int(11) NOT NULL DEFAULT '0',
`LastModified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`Id`),
KEY `Date` (`Date`),
KEY `LastModified` (`LastModified`),
KEY `Tenant` (`Tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `events_poll` (
`Id` int(11) NOT NULL,
`PollType` int(11) NOT NULL DEFAULT '0',
`StartDate` datetime NOT NULL,
`EndDate` datetime NOT NULL,
`Tenant` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`Id`),
KEY `Tenant` (`Tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `events_pollanswer` (
`Variant` int(11) NOT NULL,
`User` varchar(64) NOT NULL,
`Tenant` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`Variant`,`User`),
KEY `Tenant` (`Tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `events_pollvariant` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`Poll` int(11) NOT NULL,
`Name` varchar(1024) NOT NULL,
`Tenant` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`Id`),
KEY `Poll` (`Tenant`,`Poll`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `events_reader` (
`Feed` int(11) NOT NULL,
`Reader` varchar(38) NOT NULL,
`Tenant` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`Feed`,`Reader`),
KEY `Tenant` (`Tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `feed_aggregate` (
`id` varchar(88) NOT NULL,
`tenant` int(10) NOT NULL,
`product` varchar(50) NOT NULL,
`module` varchar(50) NOT NULL,
`author` char(38) NOT NULL,
`modified_by` char(38) NOT NULL,
`created_date` datetime NOT NULL,
`modified_date` datetime NOT NULL,
`group_id` varchar(70) DEFAULT NULL,
`json` mediumtext NOT NULL,
`keywords` text,
`aggregated_date` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `product` (`tenant`,`product`),
KEY `aggregated_date` (`tenant`,`aggregated_date`),
KEY `modified_date` (`tenant`,`modified_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `feed_last` (
`last_key` varchar(128) NOT NULL,
`last_date` datetime NOT NULL,
PRIMARY KEY (`last_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `feed_readed` (
`user_id` varchar(38) NOT NULL,
`timestamp` datetime NOT NULL,
`module` varchar(50) NOT NULL,
`tenant_id` int(10) NOT NULL,
PRIMARY KEY (`tenant_id`,`user_id`,`module`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `feed_users` (
`feed_id` varchar(88) NOT NULL,
`user_id` char(38) NOT NULL,
PRIMARY KEY (`feed_id`,`user_id`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `files_bunch_objects` (
`tenant_id` int(10) NOT NULL,
`right_node` varchar(255) NOT NULL,
`left_node` varchar(255) NOT NULL,
PRIMARY KEY (`tenant_id`,`right_node`),
KEY `left_node` (`left_node`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `files_converts` (
`input` varchar(50) NOT NULL,
`output` varchar(50) NOT NULL,
PRIMARY KEY (`input`,`output`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `files_file` (
`id` int(11) NOT NULL,
`version` int(11) NOT NULL,
`version_group` int(11) NOT NULL DEFAULT '1',
`current_version` int(11) NOT NULL DEFAULT '0',
`folder_id` int(11) NOT NULL DEFAULT '0',
`title` varchar(400) NOT NULL,
`content_length` bigint(25) NOT NULL DEFAULT '0',
`file_status` int(11) NOT NULL DEFAULT '0',
`category` int(11) NOT NULL DEFAULT '0',
`create_by` char(38) NOT NULL,
`create_on` datetime NOT NULL,
`modified_by` char(38) NOT NULL,
`modified_on` datetime NOT NULL,
`tenant_id` int(11) NOT NULL,
`converted_type` varchar(10) DEFAULT NULL,
`comment` varchar(255) DEFAULT NULL,
`changes` mediumtext,
`encrypted` int(1) NOT NULL DEFAULT '0',
`forcesave` int(1) NOT NULL DEFAULT '0',
`thumb` INT(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`tenant_id`,`id`,`version`),
KEY `modified_on` (`modified_on`),
KEY `folder_id` (`folder_id`),
KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `files_folder` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parent_id` int(11) NOT NULL DEFAULT '0',
`title` varchar(400) NOT NULL,
`folder_type` int(11) NOT NULL DEFAULT '0',
`create_by` char(38) NOT NULL,
`create_on` datetime NOT NULL,
`modified_by` char(38) NOT NULL,
`modified_on` datetime NOT NULL,
`tenant_id` int(11) NOT NULL,
`foldersCount` int(10) NOT NULL DEFAULT '0',
`filesCount` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `parent_id` (`tenant_id`,`parent_id`),
KEY `modified_on` (`modified_on`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `files_folder_tree` (
`folder_id` int(11) NOT NULL,
`parent_id` int(11) NOT NULL,
`level` int(11) NOT NULL,
PRIMARY KEY (`parent_id`,`folder_id`),
KEY `folder_id` (`folder_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `files_link` (
`source_id` varchar(32) NOT NULL,
`linked_id` varchar(32) NOT NULL,
`linked_for` char(38) NOT NULL,
`tenant_id` int(10) NOT NULL,
PRIMARY KEY (`tenant_id`, `source_id`, `linked_id`),
KEY `linked_for` (`tenant_id`, `source_id`, `linked_id`, `linked_for`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `files_security` (
`tenant_id` int(10) NOT NULL,
`entry_id` varchar(50) NOT NULL,
`entry_type` int(10) NOT NULL,
`subject` char(38) NOT NULL,
`owner` char(38) NOT NULL,
`security` int(11) NOT NULL,
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`tenant_id`,`entry_id`,`entry_type`,`subject`),
KEY `owner` (`owner`),
KEY `tenant_id` (`tenant_id`,`entry_type`,`entry_id`,`owner`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `files_tag` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`owner` varchar(38) NOT NULL,
`flag` int(11) NOT NULL DEFAULT '0',
`tenant_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `name` (`tenant_id`,`owner`,`name`,`flag`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `files_tag_link` (
`tenant_id` int(10) NOT NULL,
`tag_id` int(10) NOT NULL,
`entry_type` int(10) NOT NULL,
`entry_id` varchar(32) NOT NULL,
`create_by` char(38) DEFAULT NULL,
`create_on` datetime DEFAULT NULL,
`tag_count` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`tenant_id`,`tag_id`,`entry_id`,`entry_type`),
KEY `entry_id` (`tenant_id`,`entry_id`,`entry_type`),
KEY `create_on` (`create_on`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `files_thirdparty_account` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`provider` varchar(50) NOT NULL DEFAULT '0',
`customer_title` varchar(400) NOT NULL,
`user_name` varchar(100) NOT NULL,
`password` varchar(512) NOT NULL,
`token` text,
`user_id` varchar(38) NOT NULL,
`folder_type` int(11) NOT NULL DEFAULT '0',
`create_on` datetime NOT NULL,
`url` text,
`tenant_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `files_thirdparty_app` (
`user_id` varchar(38) NOT NULL,
`app` varchar(50) NOT NULL,
`token` text,
`tenant_id` int(11) NOT NULL,
`modified_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`user_id`,`app`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `files_thirdparty_id_mapping` (
`hash_id` char(32) NOT NULL,
`id` text NOT NULL,
`tenant_id` int(11) NOT NULL,
PRIMARY KEY (`hash_id`),
KEY `index_1` (`tenant_id`,`hash_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `forum_answer` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`question_id` int(11) NOT NULL,
`create_date` datetime DEFAULT NULL,
`user_id` char(38) NOT NULL,
`TenantID` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `TenantID` (`TenantID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `forum_answer_variant` (
`answer_id` int(11) NOT NULL,
`variant_id` int(11) NOT NULL,
PRIMARY KEY (`answer_id`,`variant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `forum_attachment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(500) NOT NULL,
`post_id` int(11) NOT NULL,
`size` int(11) NOT NULL DEFAULT '0',
`download_count` int(11) NOT NULL DEFAULT '0',
`content_type` int(11) NOT NULL DEFAULT '0',
`mime_content_type` varchar(100) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`path` varchar(1000) NOT NULL,
`TenantID` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `post_id` (`TenantID`,`post_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `forum_category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(500) NOT NULL,
`description` varchar(500) DEFAULT NULL,
`sort_order` int(11) NOT NULL DEFAULT '0',
`create_date` datetime NOT NULL,
`poster_id` char(38) NOT NULL,
`tenantid` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `TenantID` (`tenantid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `forum_lastvisit` (
`tenantid` int(11) NOT NULL,
`user_id` char(38) NOT NULL,
`thread_id` int(11) NOT NULL,
`last_visit` datetime NOT NULL,
PRIMARY KEY (`tenantid`,`user_id`,`thread_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `forum_post` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`topic_id` int(11) NOT NULL,
`poster_id` char(38) NOT NULL,
`create_date` datetime NOT NULL,
`subject` varchar(500) NOT NULL DEFAULT '',
`text` mediumtext NOT NULL,
`edit_date` datetime DEFAULT NULL,
`edit_count` int(11) NOT NULL DEFAULT '0',
`is_approved` int(11) NOT NULL DEFAULT '0',
`parent_post_id` int(11) NOT NULL DEFAULT '0',
`formatter` int(11) NOT NULL DEFAULT '0',
`editor_id` char(38) DEFAULT NULL,
`TenantID` int(11) NOT NULL DEFAULT '0',
`LastModified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `topic_id` (`TenantID`,`topic_id`),
KEY `create_date` (`create_date`),
KEY `LastModified` (`LastModified`),
KEY `TenantID` (`TenantID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `forum_question` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`topic_id` int(11) NOT NULL,
`type` int(11) NOT NULL DEFAULT '0',
`name` varchar(500) NOT NULL,
`create_date` datetime NOT NULL,
`TenantID` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `topic_id` (`TenantID`,`topic_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `forum_tag` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL,
`is_approved` int(11) NOT NULL DEFAULT '0',
`TenantID` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `TenantID` (`TenantID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `forum_thread` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(500) NOT NULL,
`description` varchar(500) NOT NULL DEFAULT '',
`sort_order` int(11) NOT NULL DEFAULT '0',
`category_id` int(11) NOT NULL,
`topic_count` int(11) NOT NULL DEFAULT '0',
`post_count` int(11) NOT NULL DEFAULT '0',
`is_approved` int(11) NOT NULL DEFAULT '0',
`TenantID` int(11) NOT NULL DEFAULT '0',
`recent_post_id` int(11) NOT NULL DEFAULT '0',
`recent_topic_id` int(11) NOT NULL DEFAULT '0',
`recent_post_date` datetime DEFAULT NULL,
`recent_poster_id` char(38) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `tenantid` (`TenantID`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `forum_topic` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`thread_id` int(11) NOT NULL,
`title` varchar(500) NOT NULL,
`type` int(11) NOT NULL DEFAULT '0',
`create_date` datetime NOT NULL,
`view_count` int(11) NOT NULL DEFAULT '0',
`post_count` int(11) NOT NULL DEFAULT '0',
`recent_post_id` int(11) NOT NULL DEFAULT '0',
`is_approved` int(11) NOT NULL DEFAULT '0',
`poster_id` char(38) DEFAULT NULL,
`sticky` int(11) NOT NULL DEFAULT '0',
`closed` int(11) DEFAULT '0',
`question_id` varchar(45) DEFAULT '0',
`TenantID` int(11) NOT NULL DEFAULT '0',
`LastModified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `thread_id` (`thread_id`),
KEY `LastModified` (`LastModified`),
KEY `TenantID` (`TenantID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `forum_topicwatch` (
`TenantID` int(11) NOT NULL,
`UserID` char(38) NOT NULL,
`TopicID` int(11) NOT NULL,
`ThreadID` int(11) NOT NULL,
PRIMARY KEY (`TenantID`,`UserID`,`TopicID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `forum_topic_tag` (
`topic_id` int(11) NOT NULL,
`tag_id` int(11) NOT NULL,
PRIMARY KEY (`topic_id`,`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `forum_variant` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL,
`question_id` int(11) NOT NULL,
`sort_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `install_registration` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`timestamp` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`email` varchar(500) NOT NULL,
`version` varchar(500) NOT NULL,
`ip` varchar(50) NOT NULL,
`tenant` varchar(36) DEFAULT NULL,
`alias` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `jabber_archive` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`jid` varchar(255) NOT NULL,
`stamp` datetime NOT NULL,
`message` mediumtext,
PRIMARY KEY (`id`),
KEY `jabber_archive_jid` (`jid`(190))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
CREATE TABLE IF NOT EXISTS `jabber_archive_switch` (
`id` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `jabber_clear` (
`lastdate` datetime DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `jabber_offactivity` (
`jid` varchar(255) NOT NULL,
`logout` datetime DEFAULT NULL,
`status` varchar(255) DEFAULT NULL,
PRIMARY KEY (`jid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `jabber_offmessage` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`jid` varchar(255) NOT NULL,
`message` mediumtext,
PRIMARY KEY (`id`),
KEY `jabber_offmessage_jid` (`jid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `jabber_offpresence` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`jid_to` varchar(255) NOT NULL,
`jid_from` varchar(255) DEFAULT NULL,
`type` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `jabber_offpresence_to` (`jid_to`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `jabber_private` (
`jid` varchar(255) NOT NULL,
`tag` varchar(255) NOT NULL,
`namespace` varchar(255) NOT NULL,
`element` mediumtext,
PRIMARY KEY (`jid`,`tag`,`namespace`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `jabber_room` (
`jid` varchar(255) NOT NULL,
`title` varchar(255) DEFAULT NULL,
`description` text,
`subject` varchar(255) DEFAULT NULL,
`instructions` varchar(255) DEFAULT NULL,
`pwd` varchar(255) DEFAULT NULL,
`pwdprotect` int(11) DEFAULT NULL,
`visible` int(11) DEFAULT NULL,
`members` text,
`maxoccupant` int(11) DEFAULT NULL,
`historycountonenter` int(11) DEFAULT NULL,
`anonymous` int(11) DEFAULT NULL,
`logging` int(11) DEFAULT NULL,
`membersonly` int(11) DEFAULT NULL,
`usernamesonly` int(11) DEFAULT NULL,
`moderated` int(11) DEFAULT NULL,
`persistent` int(11) DEFAULT NULL,
`presencebroadcastedfrom` int(11) DEFAULT NULL,
`canchangesubject` int(11) DEFAULT NULL,
`caninvite` int(11) DEFAULT NULL,
`canseememberlist` int(11) DEFAULT NULL,
PRIMARY KEY (`jid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `jabber_room_history` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`jid` varchar(255) NOT NULL,
`stamp` datetime NOT NULL,
`message` mediumtext NOT NULL,
PRIMARY KEY (`id`),
KEY `jabber_room_history_jid` (`jid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `jabber_roster` (
`jid` varchar(255) NOT NULL,
`item_jid` varchar(255) NOT NULL,
`name` varchar(512) DEFAULT NULL,
`subscription` int(11) NOT NULL DEFAULT '0',
`ask` int(11) NOT NULL DEFAULT '0',
`groups` text,
PRIMARY KEY (`jid`,`item_jid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `jabber_vcard` (
`jid` varchar(255) NOT NULL,
`vcard` text NOT NULL,
PRIMARY KEY (`jid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `login_events` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`ip` varchar(50) DEFAULT NULL,
`login` varchar(200) DEFAULT NULL,
`browser` varchar(200) DEFAULT NULL,
`platform` varchar(200) DEFAULT NULL,
`date` datetime NOT NULL,
`tenant_id` int(10) NOT NULL,
`user_id` char(38) NOT NULL,
`page` varchar(300) DEFAULT NULL,
`action` int(11) DEFAULT NULL,
`description` varchar(500) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `date` (`date`),
KEY `tenant_id` (`tenant_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_alerts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tenant` int(11) NOT NULL,
`id_user` varchar(255) NOT NULL,
`id_mailbox` int(11) NOT NULL DEFAULT '-1',
`type` int(11) NOT NULL DEFAULT '0',
`data` mediumtext,
PRIMARY KEY (`id`),
KEY `tenant_id_user_id_mailbox_type` (`tenant`,`id_user`,`id_mailbox`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
CREATE TABLE IF NOT EXISTS `mail_attachment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_mail` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`stored_name` varchar(255) DEFAULT NULL,
`type` varchar(255) DEFAULT NULL,
`size` bigint(20) NOT NULL DEFAULT '0',
`need_remove` int(11) NOT NULL DEFAULT '0',
`file_number` int(11) NOT NULL DEFAULT '0',
`content_id` varchar(255) DEFAULT NULL,
`tenant` int(11) NOT NULL,
`id_mailbox` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `tenant` (`tenant`,`id_mail`),
KEY `id_mail` (`id_mail`,`content_id`),
KEY `id_mailbox` (`id_mailbox`,`tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
CREATE TABLE IF NOT EXISTS `mail_chain` (
`id` varchar(255) NOT NULL,
`id_mailbox` int(10) unsigned NOT NULL,
`tenant` int(10) unsigned NOT NULL,
`id_user` varchar(255) NOT NULL,
`folder` int(10) unsigned NOT NULL,
`length` int(10) unsigned NOT NULL,
`unread` tinyint(1) unsigned NOT NULL,
`has_attachments` tinyint(1) unsigned NOT NULL,
`importance` tinyint(1) unsigned NOT NULL,
`tags` text NOT NULL,
`is_crm_chain` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`tenant`,`id_user`,`id`,`id_mailbox`,`folder`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_chain_x_crm_entity` (
`id_tenant` int(11) NOT NULL,
`id_mailbox` int(11) NOT NULL,
`id_chain` varchar(255) NOT NULL,
`entity_id` int(11) NOT NULL,
`entity_type` int(11) NOT NULL,
PRIMARY KEY (`id_tenant`,`id_mailbox`,`id_chain`,`entity_id`,`entity_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_contacts` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`id_user` varchar(255) NOT NULL,
`tenant` int(11) NOT NULL,
`name` varchar(255) DEFAULT NULL,
`address` varchar(255) NOT NULL,
`description` varchar(100) DEFAULT NULL,
`type` int(11) NOT NULL,
`has_photo` tinyint(1) NOT NULL DEFAULT '0',
`last_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `tenant_id_user_name_address` (`tenant`,`id_user`,`address`),
KEY `last_modified` (`last_modified`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_contact_info` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`tenant` int(11) NOT NULL,
`id_user` varchar(255) NOT NULL,
`id_contact` int(11) unsigned NOT NULL,
`data` varchar(255) NOT NULL,
`type` int(11) NOT NULL,
`is_primary` tinyint(1) NOT NULL DEFAULT '0',
`last_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `last_modified` (`last_modified`),
KEY `contact_id` (`id_contact`),
KEY `tenant_id_user_data` (`tenant`,`id_user`,`data`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_display_images` (
`tenant` int(10) NOT NULL,
`id_user` varchar(255) NOT NULL,
`address` varchar(255) NOT NULL,
PRIMARY KEY (`tenant`,`id_user`,`address`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_folder` (
`tenant` int(11) NOT NULL,
`id_user` varchar(255) NOT NULL,
`folder` smallint(5) unsigned NOT NULL,
`time_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`unread_messages_count` int(10) unsigned NOT NULL DEFAULT '0',
`total_messages_count` int(10) unsigned NOT NULL DEFAULT '0',
`unread_conversations_count` int(10) unsigned NOT NULL DEFAULT '0',
`total_conversations_count` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`tenant`,`id_user`,`folder`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_folder_counters` (
`tenant` int(11) NOT NULL,
`id_user` varchar(255) NOT NULL,
`folder` smallint(5) unsigned NOT NULL,
`unread_messages_count` int(10) unsigned NOT NULL DEFAULT '0',
`total_messages_count` int(10) unsigned NOT NULL DEFAULT '0',
`unread_conversations_count` int(10) unsigned NOT NULL DEFAULT '0',
`total_conversations_count` int(10) unsigned NOT NULL DEFAULT '0',
`time_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`tenant`,`id_user`,`folder`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_filter` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`tenant` INT(11) NOT NULL,
`id_user` VARCHAR(38) NOT NULL,
`enabled` TINYINT(1) NOT NULL DEFAULT '1',
`filter` TEXT NOT NULL,
`position` INT(11) NOT NULL DEFAULT '0',
`date_created` TIMESTAMP NULL DEFAULT NULL,
`date_modified` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
INDEX `tenant_id_user` (`tenant`, `id_user`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_imap_flags` (
`name` varchar(50) NOT NULL,
`folder_id` int(11) NOT NULL,
`skip` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_imap_special_mailbox` (
`server` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`folder_id` int(11) NOT NULL,
`skip` int(11) NOT NULL,
PRIMARY KEY (`server`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_mail` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_mailbox` int(11) NOT NULL DEFAULT '0',
`id_user` varchar(255) NOT NULL,
`tenant` int(11) NOT NULL,
`uidl` varchar(255) DEFAULT NULL,
`md5` varchar(255) DEFAULT NULL,
`address` varchar(255) NOT NULL,
`from_text` text,
`to_text` text,
`reply_to` text,
`cc` text,
`bcc` text,
`subject` text,
`introduction` varchar(255) NOT NULL DEFAULT '',
`importance` tinyint(1) NOT NULL DEFAULT '0',
`date_received` datetime NOT NULL DEFAULT '1975-01-01 00:00:00',
`date_sent` datetime NOT NULL DEFAULT '1975-01-01 00:00:00',
`size` int(11) NOT NULL DEFAULT '0',
`attachments_count` int(11) NOT NULL DEFAULT '0',
`unread` int(11) NOT NULL DEFAULT '0',
`is_answered` int(11) NOT NULL DEFAULT '0',
`is_forwarded` int(11) NOT NULL DEFAULT '0',
`is_from_crm` int(11) NOT NULL DEFAULT '0',
`is_from_tl` int(11) NOT NULL DEFAULT '0',
`is_text_body_only` int(11) NOT NULL DEFAULT '0',
`has_parse_error` tinyint(1) NOT NULL DEFAULT '0',
`calendar_uid` varchar(255) DEFAULT NULL,
`stream` varchar(38) NOT NULL,
`folder` int(11) NOT NULL DEFAULT '1',
`folder_restore` int(11) NOT NULL DEFAULT '1',
`spam` int(11) NOT NULL DEFAULT '0',
`time_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`is_removed` tinyint(1) NOT NULL DEFAULT '0',
`mime_message_id` varchar(255) DEFAULT NULL,
`mime_in_reply_to` varchar(255) DEFAULT NULL,
`chain_id` varchar(255) DEFAULT NULL,
`chain_date` datetime NOT NULL DEFAULT '1975-01-01 00:00:00',
PRIMARY KEY (`id`),
KEY `chain_index_folders` (`chain_id`,`id_mailbox`,`folder`),
KEY `uidl` (`uidl`,`id_mailbox`),
KEY `mime_message_id` (`id_mailbox`,`mime_message_id`),
KEY `md5` (`md5`,`id_mailbox`),
KEY `list_conversations` (`tenant`, `id_user`, `folder`, `chain_date`),
KEY `list_messages` (`tenant`, `id_user`, `folder`, `date_sent`),
KEY `time_modified` (`time_modified`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
CREATE TABLE IF NOT EXISTS `mail_mailbox` (
`id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`tenant` INT(11) NOT NULL,
`id_user` VARCHAR(38) NOT NULL,
`address` VARCHAR(255) NOT NULL,
`name` VARCHAR(255) NULL DEFAULT NULL,
`enabled` TINYINT(1) UNSIGNED NOT NULL DEFAULT '1',
`is_removed` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',
`is_processed` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',
`is_server_mailbox` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',
`imap` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',
`user_online` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',
`is_default` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',
`msg_count_last` INT(11) NOT NULL DEFAULT '0',
`size_last` INT(11) NOT NULL DEFAULT '0',
`login_delay` INT(11) UNSIGNED NOT NULL DEFAULT '30',
`quota_error` TINYINT(1) NOT NULL DEFAULT '0',
`imap_intervals` MEDIUMTEXT NULL,
`begin_date` TIMESTAMP NOT NULL DEFAULT '1975-01-01 00:00:00',
`email_in_folder` TEXT NULL,
`pop3_password` VARCHAR(255) NULL DEFAULT NULL,
`smtp_password` VARCHAR(255) NULL DEFAULT NULL,
`token_type` TINYINT(4) NOT NULL DEFAULT '0',
`token` TEXT NULL,
`id_smtp_server` INT(11) NOT NULL,
`id_in_server` INT(11) NOT NULL,
`date_checked` DATETIME NULL DEFAULT NULL,
`date_user_checked` DATETIME NULL DEFAULT NULL,
`date_login_delay_expires` DATETIME NOT NULL DEFAULT '1975-01-01 00:00:00',
`date_auth_error` DATETIME NULL DEFAULT NULL,
`date_created` DATETIME NULL DEFAULT NULL,
`date_modified` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
INDEX `address_index` (`address`),
INDEX `main_mailbox_id_smtp_server_mail_mailbox_server_id` (`id_smtp_server`),
INDEX `main_mailbox_id_in_server_mail_mailbox_server_id` (`id_in_server`),
INDEX `date_login_delay_expires` (`date_checked`, `date_login_delay_expires`),
INDEX `user_id_index` (`tenant`, `id_user`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_mailbox_autoreply` (
`id_mailbox` int(11) NOT NULL,
`tenant` int(11) NOT NULL,
`turn_on` tinyint(1) NOT NULL,
`only_contacts` tinyint(1) NOT NULL,
`turn_on_to_date` tinyint(1) NOT NULL,
`from_date` datetime NOT NULL,
`to_date` datetime NOT NULL,
`subject` text,
`html` text,
PRIMARY KEY (`id_mailbox`),
KEY `tenant` (`tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_mailbox_autoreply_history` (
`id_mailbox` int(11) NOT NULL,
`tenant` int(11) NOT NULL,
`sending_email` varchar(255) NOT NULL,
`sending_date` datetime NOT NULL,
PRIMARY KEY (`id_mailbox`,`sending_email`),
KEY `tenant` (`tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_mailbox_domain` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_provider` int(11) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
KEY `id_provider` (`name`,`id_provider`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
CREATE TABLE IF NOT EXISTS `mail_mailbox_provider` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`display_name` varchar(255) DEFAULT NULL,
`display_short_name` varchar(255) DEFAULT NULL,
`documentation` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
CREATE TABLE IF NOT EXISTS `mail_mailbox_server` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_provider` int(11) NOT NULL DEFAULT '0',
`type` enum('pop3','imap','smtp') NOT NULL,
`hostname` varchar(255) NOT NULL,
`port` int(11) NOT NULL DEFAULT '0',
`socket_type` enum('plain','SSL','STARTTLS') NOT NULL DEFAULT 'plain',
`username` varchar(255) DEFAULT NULL,
`authentication` varchar(255) DEFAULT NULL,
`is_user_data` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `id_provider` (`id_provider`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_mailbox_signature` (
`tenant` int(11) NOT NULL,
`id_mailbox` int(11) NOT NULL,
`html` text,
`is_active` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id_mailbox`),
KEY `tenant` (`tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_pop_unordered_domain` (
`server` varchar(255) NOT NULL,
PRIMARY KEY (`server`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_server_address` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tenant` int(11) NOT NULL,
`name` varchar(64) NOT NULL,
`id_domain` int(11) NOT NULL,
`id_mailbox` int(11) NOT NULL,
`is_mail_group` int(10) NOT NULL DEFAULT '0',
`is_alias` int(10) NOT NULL DEFAULT '0',
`date_created` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `id_mailbox_fk_index` (`id_mailbox`),
KEY `domain_index` (`id_domain`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_server_dns` (
`id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`tenant` INT(11) NOT NULL,
`id_user` VARCHAR(255) NOT NULL,
`id_domain` INT(11) NOT NULL DEFAULT '-1',
`dkim_selector` VARCHAR(63) NOT NULL DEFAULT 'dkim',
`dkim_private_key` TEXT NULL,
`dkim_public_key` TEXT NULL,
`dkim_ttl` INT(11) NOT NULL DEFAULT '300',
`dkim_verified` TINYINT(1) NOT NULL DEFAULT '0',
`dkim_date_checked` DATETIME NULL DEFAULT NULL,
`domain_check` TEXT NULL,
`spf` TEXT NULL,
`spf_ttl` INT(11) NOT NULL DEFAULT '300',
`spf_verified` TINYINT(1) NOT NULL DEFAULT '0',
`spf_date_checked` DATETIME NULL DEFAULT NULL,
`mx` VARCHAR(255) NULL DEFAULT NULL,
`mx_ttl` INT(11) NOT NULL DEFAULT '300',
`mx_verified` TINYINT(1) NOT NULL DEFAULT '0',
`mx_date_checked` DATETIME NULL DEFAULT NULL,
`time_modified` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
INDEX `id_domain_tenant_id_user` (`id_domain`, `tenant`, `id_user`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_server_domain` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tenant` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`is_verified` int(10) NOT NULL DEFAULT '0',
`date_added` datetime NOT NULL,
`date_checked` datetime NOT NULL DEFAULT '1975-01-01 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`),
KEY `tenant` (`tenant`),
KEY `date_checked` (`date_checked`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_server_mail_group` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_tenant` int(11) NOT NULL,
`id_address` int(11) NOT NULL,
`date_created` datetime NOT NULL,
`address` varchar(320) NOT NULL,
PRIMARY KEY (`id`),
KEY `mail_server_address_fk_id` (`id_address`),
KEY `tenant` (`id_tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_server_mail_group_x_mail_server_address` (
`id_address` int(11) NOT NULL,
`id_mail_group` int(11) NOT NULL,
PRIMARY KEY (`id_address`,`id_mail_group`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_server_server` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`mx_record` varchar(128) NOT NULL DEFAULT '',
`connection_string` text NOT NULL,
`server_type` int(11) NOT NULL,
`smtp_settings_id` int(11) NOT NULL,
`imap_settings_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `mail_server_server_type_server_type_fk_id` (`server_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_server_server_type` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(64) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_server_server_x_tenant` (
`id_tenant` int(11) NOT NULL,
`id_server` int(11) NOT NULL,
PRIMARY KEY (`id_tenant`,`id_server`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_tag` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tenant` int(11) NOT NULL,
`id_user` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`style` varchar(20) DEFAULT NULL,
`addresses` text NOT NULL,
`count` int(10) NOT NULL DEFAULT '0',
`crm_id` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `username` (`tenant`,`id_user`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_tag_addresses` (
`id_tag` int(11) unsigned NOT NULL,
`address` varchar(255) NOT NULL,
`tenant` int(11) NOT NULL,
PRIMARY KEY (`id_tag`,`address`,`tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_tag_mail` (
`tenant` int(11) NOT NULL,
`id_user` varchar(255) NOT NULL,
`id_mail` int(11) NOT NULL,
`id_tag` int(11) NOT NULL,
`time_created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`tenant`,`id_user`,`id_mail`,`id_tag`),
KEY `id_mail` (`id_mail`),
KEY `id_tag` (`id_tag`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_user_folder` (
`id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`parent_id` INT(11) NOT NULL DEFAULT '0',
`tenant` INT(11) NOT NULL,
`id_user` VARCHAR(38) NOT NULL,
`name` VARCHAR(400) NOT NULL,
`folders_count` INT(11) UNSIGNED NOT NULL,
`unread_messages_count` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`total_messages_count` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`unread_conversations_count` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`total_conversations_count` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`modified_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
INDEX `tenant_user_parent` (`tenant`, `id_user`, `parent_id`)
)ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_user_folder_tree` (
`folder_id` INT(11) UNSIGNED NOT NULL,
`parent_id` INT(11) UNSIGNED NOT NULL,
`level` INT(11) UNSIGNED NOT NULL,
PRIMARY KEY (`parent_id`, `folder_id`),
INDEX `folder_id` (`folder_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mail_user_folder_x_mail` (
`tenant` INT(11) NOT NULL,
`id_user` VARCHAR(38) NOT NULL,
`id_mail` INT(11) UNSIGNED NOT NULL,
`id_folder` INT(11) UNSIGNED NOT NULL,
`time_created` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`tenant`, `id_user`, `id_mail`, `id_folder`),
INDEX `id_mail` (`id_mail`),
INDEX `id_tag` (`id_folder`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `mobile_app_install` (
`user_email` varchar(255) NOT NULL,
`app_type` int(11) NOT NULL,
`registered_on` datetime NOT NULL,
`last_sign` datetime DEFAULT NULL,
PRIMARY KEY (`user_email`,`app_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `notify_info` (
`notify_id` int(10) NOT NULL,
`state` int(10) NOT NULL DEFAULT '0',
`attempts` int(10) NOT NULL DEFAULT '0',
`modify_date` datetime NOT NULL,
`priority` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`notify_id`),
KEY `state` (`state`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `notify_promotion_watch` (
`id` varchar(50) NOT NULL,
`user_id` varchar(50) NOT NULL,
`session_id` varchar(25) NOT NULL DEFAULT '',
`viewcount` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`user_id`,`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `notify_queue` (
`notify_id` int(11) NOT NULL AUTO_INCREMENT,
`tenant_id` int(11) NOT NULL,
`sender` varchar(255) DEFAULT NULL,
`reciever` varchar(255) DEFAULT NULL,
`subject` varchar(1024) DEFAULT NULL,
`content_type` varchar(64) DEFAULT NULL,
`content` text,
`sender_type` varchar(64) DEFAULT NULL,
`reply_to` varchar(1024) DEFAULT NULL,
`creation_date` datetime NOT NULL,
`attachments` text NULL,
`auto_submitted` varchar(64) DEFAULT NULL,
PRIMARY KEY (`notify_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `notify_tip_watch` (
`tip_id` varchar(50) NOT NULL,
`user_id` varchar(38) NOT NULL,
`tenant_id` int(11) NOT NULL,
PRIMARY KEY (`tip_id`,`user_id`),
KEY `tenant_id` (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_comments` (
`comment_id` int(11) NOT NULL AUTO_INCREMENT,
`id` char(38) NOT NULL,
`content` text,
`inactive` tinyint(1) NOT NULL DEFAULT '0',
`create_by` char(38) NOT NULL,
`create_on` datetime NOT NULL,
`parent_id` char(38) DEFAULT NULL,
`tenant_id` int(11) NOT NULL,
`target_uniq_id` varchar(50) NOT NULL,
PRIMARY KEY (`comment_id`,`id`),
KEY `target_uniq_id` (`tenant_id`,`target_uniq_id`),
KEY `create_on` (`create_on`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_following_project_participant` (
`project_id` int(11) NOT NULL,
`participant_id` char(38) NOT NULL,
PRIMARY KEY (`participant_id`,`project_id`),
KEY `project_id` (`project_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_messages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`status` int(11) NOT NULL DEFAULT '0',
`create_by` char(38) NOT NULL,
`create_on` datetime NOT NULL,
`last_modified_on` datetime DEFAULT NULL,
`last_modified_by` char(38) DEFAULT NULL,
`content` mediumtext,
`project_id` int(11) NOT NULL,
`tenant_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`),
KEY `project_id` (`project_id`),
KEY `create_on` (`create_on`),
KEY `last_modified_on` (`last_modified_on`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_milestones` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`description` text,
`deadline` datetime NOT NULL,
`responsible_id` char(38) DEFAULT NULL,
`status` int(11) NOT NULL,
`status_changed` datetime NOT NULL DEFAULT '2000-01-01 00:00:00',
`project_id` int(11) NOT NULL,
`tenant_id` int(11) NOT NULL,
`is_notify` tinyint(1) NOT NULL DEFAULT '0',
`is_key` tinyint(1) DEFAULT '0',
`create_by` char(38) DEFAULT NULL,
`create_on` datetime DEFAULT NULL,
`last_modified_by` char(38) DEFAULT NULL,
`last_modified_on` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`),
KEY `project_id` (`project_id`),
KEY `create_on` (`create_on`),
KEY `last_modified_on` (`last_modified_on`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_projects` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`status` int(11) NOT NULL,
`status_changed` datetime NOT NULL DEFAULT '2000-01-01 00:00:00',
`title` varchar(255) DEFAULT NULL,
`description` text,
`responsible_id` char(38) NOT NULL,
`tenant_id` int(11) NOT NULL,
`private` int(10) NOT NULL DEFAULT '0',
`create_on` datetime DEFAULT NULL,
`create_by` char(38) DEFAULT NULL,
`last_modified_on` datetime DEFAULT NULL,
`last_modified_by` char(38) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `responsible_id` (`responsible_id`),
KEY `tenant_id` (`tenant_id`),
KEY `create_on` (`create_on`),
KEY `last_modified_on` (`last_modified_on`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_project_participant` (
`project_id` int(11) NOT NULL,
`participant_id` char(38) NOT NULL,
`security` int(10) NOT NULL DEFAULT '0',
`created` timestamp NOT NULL DEFAULT '2000-01-01 00:00:00',
`updated` timestamp NOT NULL DEFAULT '2000-01-01 00:00:00',
`removed` int(10) NOT NULL DEFAULT '0',
`tenant` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`tenant`,`project_id`,`participant_id`),
KEY `participant_id` (`participant_id`),
KEY `created` (`created`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_project_tag` (
`tag_id` int(11) NOT NULL,
`project_id` int(11) NOT NULL,
PRIMARY KEY (`project_id`,`tag_id`),
KEY `tag_id` (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_reports` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`type` INT(11) NOT NULL,
`name` VARCHAR(1024) NOT NULL,
`fileId` INT(11) NOT NULL DEFAULT '0',
`create_on` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`create_by` VARCHAR(38) NULL DEFAULT NULL,
`tenant_id` INT(10) NOT NULL,
PRIMARY KEY (`id`),
INDEX `tenant_id` (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_report_template` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` int(11) NOT NULL,
`name` varchar(1024) NOT NULL,
`filter` text,
`cron` varchar(255) DEFAULT NULL,
`create_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`create_by` varchar(38) DEFAULT NULL,
`tenant_id` int(10) NOT NULL,
`auto` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_subtasks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Title` varchar(255) NOT NULL,
`responsible_id` char(38) NOT NULL,
`task_id` int(11) NOT NULL,
`status` int(11) NOT NULL,
`status_changed` datetime NOT NULL DEFAULT '2000-01-01 00:00:00',
`tenant_id` int(11) NOT NULL,
`create_by` char(38) DEFAULT NULL,
`create_on` datetime DEFAULT NULL,
`last_modified_by` char(38) DEFAULT NULL,
`last_modified_on` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `responsible_id` (`responsible_id`),
KEY `task_id` (`tenant_id`,`task_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_status` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`title` VARCHAR(255) NOT NULL,
`description` VARCHAR(255) NOT NULL,
`statusType` TINYINT(2) NOT NULL,
`image` TEXT NOT NULL,
`imageType` VARCHAR(50) NOT NULL,
`color` CHAR(7) NOT NULL,
`order` TINYINT(3) UNSIGNED NOT NULL,
`isDefault` TINYINT(1) NOT NULL,
`available` TINYINT(1) NOT NULL,
`tenant_id` INT(11) NOT NULL,
PRIMARY KEY (`id`),
INDEX `tenant` (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_tags` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`tenant_id` int(11) DEFAULT NULL,
`create_on` datetime DEFAULT NULL,
`create_by` char(38) DEFAULT NULL,
`last_modified_on` datetime DEFAULT NULL,
`last_modified_by` char(38) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_tasks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`description` text,
`responsible_id` char(38) DEFAULT '00000000-0000-0000-0000-000000000000',
`priority` int(11) NOT NULL,
`status` int(11) NOT NULL,
`status_id` SMALLINT(6) NULL DEFAULT NULL,
`status_changed` datetime NOT NULL DEFAULT '2000-01-01 00:00:00',
`project_id` int(11) NOT NULL,
`milestone_id` int(11) DEFAULT NULL,
`tenant_id` int(11) NOT NULL,
`sort_order` int(11) NOT NULL DEFAULT '0',
`deadline` datetime DEFAULT NULL,
`create_by` char(38) NOT NULL,
`create_on` datetime DEFAULT NULL,
`last_modified_by` char(38) DEFAULT NULL,
`last_modified_on` datetime DEFAULT NULL,
`start_date` datetime DEFAULT NULL,
`progress` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `responsible_id` (`responsible_id`),
KEY `project_id` (`project_id`),
KEY `deadline` (`deadline`),
KEY `create_on` (`create_on`),
KEY `milestone_id` (`tenant_id`,`milestone_id`),
KEY `tenant_id` (`tenant_id`,`project_id`),
KEY `last_modified_on` (`last_modified_on`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_tasks_links` (
`tenant_id` int(10) NOT NULL DEFAULT '0',
`task_id` int(10) NOT NULL DEFAULT '0',
`parent_id` int(10) NOT NULL DEFAULT '0',
`link_type` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`tenant_id`,`task_id`,`parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_tasks_order` (
`tenant_id` int(10) NOT NULL,
`project_id` int(10) NOT NULL,
`task_order` text,
PRIMARY KEY (`tenant_id`,`project_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_tasks_recurrence` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`task_id` int(11) NOT NULL,
`cron` varchar(255) DEFAULT NULL,
`start_date` datetime NOT NULL,
`end_date` datetime NOT NULL,
`tenant_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `task_id` (`tenant_id`,`task_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_tasks_responsible` (
`tenant_id` int(11) NOT NULL,
`task_id` int(11) NOT NULL,
`responsible_id` char(38) NOT NULL,
PRIMARY KEY (`tenant_id`,`task_id`,`responsible_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_templates` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT NULL,
`description` text,
`create_by` char(38) NOT NULL,
`last_modified_on` datetime DEFAULT NULL,
`last_modified_by` char(38) DEFAULT NULL,
`create_on` datetime DEFAULT NULL,
`tenant_id` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `tenant_id` (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `projects_time_tracking` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`note` varchar(255) DEFAULT NULL,
`date` datetime NOT NULL,
`hours` float DEFAULT '0',
`tenant_id` int(11) NOT NULL,
`relative_task_id` int(11) DEFAULT NULL,
`person_id` char(38) NOT NULL,
`project_id` int(11) NOT NULL,
`create_on` datetime DEFAULT NULL,
`create_by` char(38) DEFAULT NULL,
`payment_status` int(10) NOT NULL DEFAULT '0',
`status_changed` datetime NOT NULL DEFAULT '2000-01-01 00:00:00',
PRIMARY KEY (`id`),
KEY `person_id` (`person_id`),
KEY `project_id` (`project_id`),
KEY `relative_task_id` (`tenant_id`,`relative_task_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `res_authors` (
`login` varchar(150) NOT NULL,
`password` varchar(50) NOT NULL,
`isAdmin` tinyint(1) NOT NULL DEFAULT '0',
`online` int(10) NOT NULL DEFAULT '0',
`lastVisit` datetime DEFAULT NULL,
PRIMARY KEY (`login`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AVG_ROW_LENGTH=4096;
CREATE TABLE IF NOT EXISTS `res_authorsfile` (
`authorLogin` varchar(50) NOT NULL,
`fileid` int(11) NOT NULL,
`writeAccess` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`authorLogin`,`fileid`),
KEY `res_authorsfile_FK2` (`fileid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `res_authorslang` (
`authorLogin` varchar(50) NOT NULL,
`cultureTitle` varchar(20) NOT NULL,
PRIMARY KEY (`authorLogin`,`cultureTitle`),
KEY `res_authorslang_FK2` (`cultureTitle`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AVG_ROW_LENGTH=1170;
CREATE TABLE IF NOT EXISTS `res_cultures` (
`title` varchar(120) NOT NULL,
`value` varchar(120) NOT NULL,
`available` tinyint(1) NOT NULL DEFAULT '0',
`creationDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `res_data` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`fileid` int(11) NOT NULL,
`title` varchar(120) NOT NULL,
`cultureTitle` varchar(20) NOT NULL,
`textValue` text,
`description` text,
`timeChanges` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`resourceType` varchar(20) DEFAULT NULL,
`flag` int(11) NOT NULL DEFAULT '0',
`link` varchar(120) DEFAULT NULL,
`authorLogin` varchar(50) NOT NULL DEFAULT 'Console',
PRIMARY KEY (`fileid`,`cultureTitle`,`title`),
UNIQUE KEY `id` (`id`),
KEY `dateIndex` (`timeChanges`),
KEY `resources_FK2` (`cultureTitle`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AVG_ROW_LENGTH=140;
CREATE TABLE IF NOT EXISTS `res_files` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`projectName` varchar(50) NOT NULL,
`moduleName` varchar(50) NOT NULL,
`resName` varchar(50) NOT NULL,
`isLock` tinyint(1) NOT NULL DEFAULT '0',
`lastUpdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`creationDate` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
UNIQUE KEY `resname` (`resName`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AVG_ROW_LENGTH=16384;
CREATE TABLE IF NOT EXISTS `res_reserve` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`fileid` int(11) NOT NULL,
`title` varchar(120) NOT NULL,
`cultureTitle` varchar(20) NOT NULL,
`textValue` text,
`flag` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`fileid`,`title`,`cultureTitle`),
UNIQUE KEY `id` (`id`),
KEY `resources_FK2` (`cultureTitle`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AVG_ROW_LENGTH=250;
CREATE TABLE IF NOT EXISTS `sso_links` (
`id` varchar(200) NOT NULL,
`uid` varchar(200) NOT NULL,
`profile` varchar(200) NOT NULL,
PRIMARY KEY (`id`,`uid`,`profile`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `sso_tokens` (
`tokenType` varchar(50) NOT NULL,
`tenant` int(11) NOT NULL,
`tokenId` varchar(100) NOT NULL,
`expirationDate` datetime NOT NULL,
PRIMARY KEY (`tokenId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `tenants_buttons` (
`tariff_id` int(10) NOT NULL,
`partner_id` varchar(50) NOT NULL,
`button_url` text NOT NULL,
PRIMARY KEY (`tariff_id`,`partner_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `tenants_forbiden` (
`address` varchar(50) NOT NULL,
PRIMARY KEY (`address`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `tenants_iprestrictions` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`tenant` int(10) NOT NULL,
`ip` varchar(50) NOT NULL,
PRIMARY KEY (`id`),
KEY `tenant` (`tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `tenants_partners` (
`tenant_id` int(10) NOT NULL,
`partner_id` varchar(36) DEFAULT NULL,
`affiliate_id` varchar(50) DEFAULT NULL,
`campaign` VARCHAR(50) NULL DEFAULT NULL,
PRIMARY KEY (`tenant_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `tenants_quota` (
`tenant` int(10) NOT NULL,
`name` varchar(128) DEFAULT NULL,
`description` varchar(128) DEFAULT NULL,
`max_file_size` bigint(20) NOT NULL DEFAULT '0',
`max_total_size` bigint(20) NOT NULL DEFAULT '0',
`active_users` int(10) NOT NULL DEFAULT '0',
`features` text,
`price` decimal(10,2) NOT NULL DEFAULT '0.00',
`price2` decimal(10,2) NOT NULL DEFAULT '0.00',
`avangate_id` varchar(128) DEFAULT NULL,
`visible` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
CREATE TABLE IF NOT EXISTS `tenants_quotarow` (
`tenant` int(11) NOT NULL,
`path` varchar(255) NOT NULL,
`counter` bigint(20) NOT NULL DEFAULT '0',
`tag` varchar(1024) DEFAULT NULL,
`last_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`tenant`,`path`),
KEY `last_modified` (`last_modified`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `tenants_tariff` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`tenant` int(10) NOT NULL,
`tariff` int(10) NOT NULL,
`stamp` datetime NOT NULL,
`quantity` int(10) NOT NULL DEFAULT 1,
`comment` varchar(255) DEFAULT NULL,
`create_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
KEY `tenant` (`tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `tenants_tenants` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`alias` varchar(100) NOT NULL,
`mappeddomain` varchar(100) DEFAULT NULL,
`version` int(10) NOT NULL DEFAULT '2',
`version_changed` datetime DEFAULT NULL,
`language` char(10) NOT NULL DEFAULT 'en-US',
`timezone` varchar(50) DEFAULT NULL,
`trusteddomains` varchar(1024) DEFAULT NULL,
`trusteddomainsenabled` int(10) NOT NULL DEFAULT '1',
`status` int(11) NOT NULL DEFAULT '0',
`statuschanged` datetime DEFAULT NULL,
`creationdatetime` datetime NOT NULL,
`owner_id` varchar(38) DEFAULT NULL,
`public` int(10) NOT NULL DEFAULT '0',
`publicvisibleproducts` varchar(1024) DEFAULT NULL,
`payment_id` varchar(38) DEFAULT NULL,
`industry` int(11) NOT NULL DEFAULT '0',
`last_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`spam` INT(10) NOT NULL DEFAULT '1',
`calls` INT(10) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `alias` (`alias`),
KEY `last_modified` (`last_modified`),
KEY `mappeddomain` (`mappeddomain`),
KEY `version` (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `tenants_version` (
`id` int(10) NOT NULL,
`version` varchar(64) NOT NULL,
`url` varchar(64) NOT NULL,
`default_version` int(11) NOT NULL DEFAULT '0',
`visible` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `webstudio_fckuploads` (
`TenantID` int(11) NOT NULL,
`StoreDomain` varchar(50) NOT NULL,
`FolderID` varchar(100) NOT NULL,
`ItemID` varchar(100) NOT NULL,
PRIMARY KEY (`TenantID`,`StoreDomain`,`FolderID`,`ItemID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `webstudio_index` (
`index_name` varchar(50) NOT NULL,
`last_modified` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`index_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `webstudio_settings` (
`TenantID` int(11) NOT NULL,
`ID` varchar(64) NOT NULL,
`UserID` varchar(64) NOT NULL,
`Data` mediumtext NOT NULL,
PRIMARY KEY (`TenantID`,`ID`,`UserID`),
KEY `ID` (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `webstudio_uservisit` (
`tenantid` int(11) NOT NULL,
`visitdate` datetime NOT NULL,
`productid` varchar(38) NOT NULL,
`userid` varchar(38) NOT NULL,
`visitcount` int(11) NOT NULL DEFAULT '0',
`firstvisittime` datetime DEFAULT NULL,
`lastvisittime` datetime DEFAULT NULL,
PRIMARY KEY (`tenantid`,`visitdate`,`productid`,`userid`),
KEY `visitdate` (`visitdate`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `wiki_categories` (
`Tenant` int(11) NOT NULL,
`CategoryName` varchar(255) NOT NULL,
`PageName` varchar(255) NOT NULL,
PRIMARY KEY (`Tenant`,`CategoryName`,`PageName`),
KEY `PageName` (`Tenant`,`PageName`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `wiki_comments` (
`Tenant` int(11) NOT NULL,
`Id` char(38) NOT NULL,
`ParentId` char(38) NOT NULL,
`PageName` varchar(255) NOT NULL,
`Body` text NOT NULL,
`UserId` char(38) NOT NULL,
`Date` datetime NOT NULL,
`Inactive` int(11) NOT NULL,
PRIMARY KEY (`Tenant`,`Id`),
KEY `PageName` (`Tenant`,`PageName`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `wiki_files` (
`Tenant` int(11) NOT NULL,
`FileName` varchar(255) NOT NULL,
`Version` int(11) NOT NULL,
`UploadFileName` text NOT NULL,
`UserID` char(38) NOT NULL,
`Date` datetime NOT NULL,
`FileLocation` text NOT NULL,
`FileSize` int(11) NOT NULL,
PRIMARY KEY (`Tenant`,`FileName`,`Version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `wiki_pages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tenant` int(11) NOT NULL,
`pagename` varchar(255) NOT NULL,
`version` int(11) NOT NULL,
`modified_by` char(38) NOT NULL,
`modified_on` datetime NOT NULL,
PRIMARY KEY (`id`,`tenant`,`pagename`),
KEY `modified_on` (`modified_on`),
KEY `tenant` (`tenant`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `wiki_pages_history` (
`tenant` int(11) NOT NULL,
`pagename` varchar(255) NOT NULL,
`version` int(11) NOT NULL,
`create_by` char(38) NOT NULL,
`create_on` datetime NOT NULL,
`body` mediumtext,
PRIMARY KEY (`tenant`,`pagename`,`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `short_links` (
`id` INT(21) NOT NULL AUTO_INCREMENT,
`short` VARCHAR(12) COLLATE utf8_bin NULL DEFAULT NULL,
`link` TEXT NULL,
PRIMARY KEY (`id`),
UNIQUE INDEX `UNIQUE` (`short`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `telegram_users` (
`portal_user_id` VARCHAR(38) NOT NULL,
`tenant_id` INT(11) NOT NULL,
`telegram_user_id` INT(11) NOT NULL,
PRIMARY KEY (`portal_user_id`, `tenant_id`),
INDEX `tgId` (`telegram_user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
-- reclaim diskspace after dropping column 'contents' by performing a 'full vacuum'
--
-- See https://www.postgresql.org/docs/9.1/sql-vacuum.html on how 'aggressive'
-- VACUUM FULL is vs. a regular VACUUM
VACUUM FULL;
|
{{ config(
materialized ='materializedview'
) }}
with fct_bus as (
SELECT *
FROM {{ ref('stg_bus_information') }} fi
)
select id, modified from fct_bus order by id, modified |
<reponame>fivetran-saraseylani/dbt-training
{{ config(enabled=var('fivetran_log_using_triggers', True)) }}
with trigger_table as (
select * from {{ var('trigger_table') }}
),
fields as (
select
{% if target.type == 'bigquery' %}
table as trigger_table,
{% elif target.type == 'postgres' %}
"table" as trigger_table,
{% else %}
"TABLE" as trigger_table,
{% endif %}
transformation_id
from trigger_table
)
select * from fields
where transformation_id is not null |
use questionsdatabase;
drop function if exists GetWordPoint;
create function GetWordPoint(original varchar(1), symbol varchar(1))
returns decimal(4, 2) DETERMINISTIC
return if(original = 'Y' and symbol = 'Y', 1,
if(original = 'Y' and symbol = 'N', 0,
if(original = 'Y' and symbol = 'U', 0,
if(original = 'Y' and symbol = 'S', 0.5,
if(original = 'N' and symbol = 'Y', 0,
if(original = 'N' and symbol = 'N', 1,
if(original = 'N' and symbol = 'U', 0,
if(original = 'N' and symbol = 'S', 0.5,
if(original = 'U' and symbol = 'Y', 0,
if(original = 'U' and symbol = 'N', 0,
if(original = 'U' and symbol = 'U', 1,
if(original = 'U' and symbol = 'S', 0,
if(original = 'S' and symbol = 'Y', 0.5,
if(original = 'S' and symbol = 'N', 0.5,
if(original = 'S' and symbol = 'U', 0,
if(original = 'S' and symbol = 'S', 1,
0
)))))))))))))))); |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.