create table if not exists branches ( id integer not null constraint branches_pk primary key, title varchar, lon numeric, lat numeric, address varchar ); comment on column branches.id is 'Номер офиса'; comment on column branches.title is 'Удобное имя для поиска'; comment on column branches.lon is 'Долгота'; comment on column branches.lat is 'Широта'; comment on column branches.address is 'Адрес'; create table if not exists queue_log ( data date, start_time_of_wait time, end_time_of_wait time, end_time_of_service time, branches_id integer constraint queue_log_fk references branches, id serial not null constraint queue_log_pk primary key ); comment on column queue_log.data is 'Дата взятия талона'; comment on column queue_log.start_time_of_wait is 'Время начала ожидания'; comment on column queue_log.end_time_of_wait is 'Время окончания ожидания'; comment on column queue_log.end_time_of_service is 'Время окончания обслуживания'; comment on column queue_log.branches_id is 'Код отделения'; INSERT INTO branches (id, title, lon, lat, address) VALUES (627, 'Тверская', 37.6064, 55.7646, 'Тверская ул., 16'); INSERT INTO branches (id, title, lon, lat, address) VALUES (612, 'Мясницкий', 37.6329, 55.7621, 'Мясницкая ул., 13, стр. 1'); INSERT INTO branches (id, title, lon, lat, address) VALUES (631, 'Цветной Бульвар', 37.6227, 55.7695, 'Цветной бул., 16/1'); commit; INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '08:54:03', '08:54:45', '09:02:15', 631, 1); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '09:01:00', '09:01:08', '09:40:27', 631, 2); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '09:04:58', '09:09:59', '11:17:36', 627, 3); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '09:13:09', '09:13:17', '09:20:51', 627, 4); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '09:26:39', '09:26:46', '09:53:02', 631, 5); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '09:38:24', '09:38:29', '09:43:23', 627, 6); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '09:39:56', '09:40:27', '10:34:23', 631, 7); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '09:46:17', '09:46:22', '09:52:49', 627, 8); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '09:48:56', '09:53:02', '10:23:28', 631, 9); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '09:53:16', '09:54:48', '10:48:27', 612, 10); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:00:15', '10:00:53', '11:00:12', 612, 11); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:02:33', '10:02:40', '10:21:15', 627, 12); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:04:04', '10:04:14', '12:08:29', 627, 13); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:06:27', '10:07:58', '10:18:45', 627, 14); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:10:34', '10:10:42', '10:25:09', 612, 15); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:17:51', '10:17:55', '10:59:54', 627, 16); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:17:56', '10:18:21', '10:33:34', 631, 17); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:23:44', '10:25:27', '10:32:22', 612, 18); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:23:46', '10:23:50', '10:54:36', 631, 19); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:33:27', '10:33:34', '10:58:02', 631, 20); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:33:56', '10:34:23', '10:45:48', 631, 21); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:45:24', '10:45:48', '10:51:47', 631, 22); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:48:00', '10:48:27', '10:56:30', 612, 23); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:50:43', '10:51:48', '11:44:48', 631, 24); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:51:28', '10:51:37', '11:11:00', 627, 25); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:54:07', '10:56:37', '11:01:43', 627, 26); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:54:22', '10:54:36', '11:26:06', 631, 27); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:55:29', '10:59:54', '11:02:36', 627, 28); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:57:56', '10:58:02', '11:06:04', 631, 29); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:58:13', '11:06:04', '12:34:44', 631, 30); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '10:59:13', '11:00:12', '11:24:56', 612, 31); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:01:52', '11:02:36', '11:13:23', 627, 32); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:04:39', '11:05:01', '11:08:34', 612, 33); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:06:26', '11:06:38', '11:13:40', 627, 34); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:08:07', '11:08:35', '11:28:22', 612, 35); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:12:27', '11:12:45', '11:37:21', 612, 36); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:13:17', '11:13:23', '11:36:41', 627, 37); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:14:13', '11:14:21', '11:27:57', 627, 38); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:15:40', '11:15:43', '11:20:30', 612, 39); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:17:26', '11:17:28', '11:33:56', 627, 40); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:24:09', '11:24:56', '11:37:15', 612, 41); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:26:07', '11:26:17', '11:52:28', 631, 42); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:27:24', '11:27:26', '11:51:35', 631, 43); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:27:39', '11:27:57', '11:35:10', 627, 44); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:28:14', '11:28:22', '13:47:07', 612, 45); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:34:27', '11:35:10', '11:44:07', 627, 46); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:36:21', '11:37:16', '12:46:31', 612, 47); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:37:07', '11:37:22', '11:52:54', 612, 48); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:37:48', '11:37:52', '11:52:46', 612, 49); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:40:37', '11:40:45', '11:48:10', 627, 50); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:44:35', '11:44:48', '14:00:21', 631, 51); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:48:18', '11:48:28', '12:09:29', 627, 52); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:49:13', '11:49:21', '12:04:01', 612, 53); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:51:19', '11:52:55', '12:58:39', 612, 54); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:51:41', '11:51:47', '11:58:02', 631, 55); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '11:57:23', '11:57:30', '12:14:23', 627, 56); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:02:26', '12:02:28', '12:07:09', 627, 57); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:07:59', '12:08:30', '13:39:18', 627, 58); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:08:10', '12:09:29', '12:47:10', 627, 59); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:09:48', '12:09:50', '12:18:11', 627, 60); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:10:30', '12:10:31', '12:45:29', 631, 61); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:14:07', '12:14:23', '12:49:27', 627, 62); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:15:35', '12:15:40', '12:39:49', 627, 63); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:16:05', '12:16:14', '12:26:44', 631, 64); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:17:01', '12:17:06', '12:25:17', 627, 65); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:19:50', '12:38:54', '12:39:59', 631, 66); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:26:23', '12:26:44', '12:33:40', 631, 67); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:28:12', '12:33:40', '12:57:49', 631, 68); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:31:55', '12:34:44', '12:57:55', 631, 69); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:36:24', '12:39:04', '13:18:08', 627, 70); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:39:11', '12:39:59', '13:21:03', 631, 71); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:42:41', '12:45:29', '13:17:00', 631, 72); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:45:41', '12:46:42', '13:10:23', 612, 73); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:52:29', '12:53:02', '13:11:02', 627, 74); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:56:24', '12:57:49', '13:32:40', 631, 75); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:56:56', '12:57:55', '14:36:04', 631, 76); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:57:07', '12:57:37', '14:08:46', 612, 77); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '12:57:35', '12:58:40', '13:20:27', 612, 78); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '13:04:33', '13:04:43', '13:20:23', 627, 79); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '13:08:57', '13:10:23', '13:20:27', 612, 80); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '13:10:54', '13:17:20', '13:23:34', 627, 81); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '13:13:17', '13:17:00', '13:34:37', 631, 82); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '13:19:02', '13:19:43', '13:28:49', 627, 83); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '13:19:57', '13:21:04', '15:04:14', 631, 84); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '13:20:20', '13:20:27', '14:11:54', 612, 85); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '13:28:07', '13:32:41', '13:41:58', 631, 86); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '13:30:30', '13:31:28', '14:26:29', 627, 87); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '13:31:45', '13:34:37', '13:53:16', 631, 88); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '13:32:04', '13:41:58', '14:20:17', 631, 89); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '13:38:53', '13:39:02', '14:37:23', 627, 90); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '13:44:40', '13:53:17', '14:41:48', 631, 91); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '13:45:23', '13:47:07', '14:28:31', 612, 92); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '13:56:29', '14:00:22', '15:23:18', 631, 93); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:03:17', '14:03:32', '14:11:57', 627, 94); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:06:55', '14:07:06', '14:30:15', 612, 95); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:08:03', '14:08:46', '14:20:16', 612, 96); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:09:29', '14:11:54', '14:25:35', 612, 97); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:13:00', '14:13:49', '14:31:58', 627, 98); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:17:13', '14:20:16', '14:44:48', 612, 99); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:18:32', '14:19:01', '15:00:11', 627, 100); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:20:07', '14:20:18', '14:39:37', 631, 101); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:22:49', '14:25:36', '14:53:27', 612, 102); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:27:57', '14:37:24', '15:03:31', 627, 103); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:28:24', '14:28:32', '14:55:53', 612, 104); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:28:47', '14:30:15', '15:00:23', 612, 105); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:32:54', '14:44:49', '14:47:17', 612, 106); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:34:46', '14:35:37', '15:00:39', 627, 107); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:35:25', '14:35:43', '14:39:02', 627, 108); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:35:29', '14:36:04', '15:23:04', 631, 109); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:37:43', '14:37:46', '16:42:48', 612, 110); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:38:36', '14:39:38', '15:03:22', 631, 111); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:42:45', '14:47:39', '14:57:07', 627, 112); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:43:39', '14:47:18', '15:25:01', 612, 113); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:46:52', '14:47:00', '14:50:49', 627, 114); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:47:57', '14:50:50', '15:56:39', 627, 115); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:48:05', '14:48:13', '15:07:53', 612, 116); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:51:54', '14:53:27', '15:27:59', 612, 117); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:54:28', '15:07:54', '15:33:15', 612, 118); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:55:33', '14:55:54', '15:08:33', 612, 119); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '14:56:46', '14:56:49', '15:31:31', 631, 120); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:00:10', '15:00:23', '15:16:21', 612, 121); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:01:53', '15:03:22', '16:15:09', 631, 122); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:03:44', '15:04:14', '17:03:53', 631, 123); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:06:47', '15:08:34', '15:18:29', 612, 124); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:10:23', '15:11:14', '15:41:31', 627, 125); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:11:27', '15:21:12', '17:58:11', 631, 126); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:15:24', '15:23:04', '15:24:04', 631, 127); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:15:40', '15:16:21', '15:23:58', 612, 128); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:16:11', '15:23:18', '15:41:25', 631, 129); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:18:07', '15:18:29', '15:21:06', 612, 130); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:19:48', '15:21:06', '15:32:00', 612, 131); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:19:50', '15:24:04', '15:25:32', 631, 132); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:23:08', '15:30:01', '15:36:01', 627, 133); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:23:14', '15:27:59', '15:32:21', 612, 134); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:23:32', '15:23:58', '15:41:54', 612, 135); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:24:08', '15:25:32', '15:45:45', 631, 136); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:24:16', '15:25:02', '17:34:59', 612, 137); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:26:03', '15:31:31', '16:33:41', 631, 138); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:27:53', '15:32:01', '15:39:54', 612, 139); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:30:08', '15:32:22', '15:41:22', 612, 140); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:30:53', '15:33:15', '15:36:24', 612, 141); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:35:54', '15:41:22', '17:26:10', 612, 142); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:38:25', '15:41:55', '15:48:39', 612, 143); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:38:32', '15:41:25', '16:00:34', 631, 144); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:39:38', '15:45:45', '16:38:08', 631, 145); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:47:07', '15:48:39', '16:12:18', 612, 146); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:47:21', '15:51:29', '16:11:52', 627, 147); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:47:30', '15:47:32', '16:17:43', 627, 148); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '15:56:18', '15:56:43', '16:48:14', 627, 149); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:00:11', '16:00:34', '16:22:33', 631, 150); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:09:18', '16:09:26', '16:43:10', 612, 151); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:10:39', '16:17:43', '16:47:37', 627, 152); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:12:09', '16:12:40', '17:01:31', 612, 153); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:13:11', '16:13:19', '16:31:59', 627, 154); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:13:32', '16:15:09', '17:45:29', 631, 155); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:17:54', '16:22:33', '16:30:45', 631, 156); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:27:11', '16:27:24', '16:34:49', 627, 157); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:30:17', '16:30:46', '16:46:49', 631, 158); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:32:05', '16:47:37', '17:03:12', 627, 159); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:32:43', '16:33:41', '17:06:45', 631, 160); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:36:46', '16:48:14', '17:06:40', 627, 161); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:37:39', '16:38:09', '17:07:26', 631, 162); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:40:21', '16:42:56', '16:54:52', 612, 163); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:46:12', '16:46:49', '18:45:53', 631, 164); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:48:18', '16:48:21', '17:01:35', 612, 165); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:49:35', '16:52:35', '17:41:48', 612, 166); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:49:38', '16:49:42', '16:56:59', 627, 167); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '16:54:47', '17:01:51', '17:20:05', 612, 168); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:00:37', '17:06:46', '17:36:07', 631, 169); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:00:47', '17:01:36', '17:05:14', 612, 170); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:02:59', '17:07:26', '17:56:49', 631, 171); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:03:31', '17:03:54', '17:30:06', 631, 172); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:04:30', '17:20:06', '17:24:41', 612, 173); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:05:02', '17:05:31', '17:16:34', 627, 174); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:06:16', '17:06:23', '17:26:18', 627, 175); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:20:25', '17:24:41', '18:30:11', 612, 176); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:22:58', '17:26:11', '17:36:45', 612, 177); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:23:34', '17:26:18', '19:57:16', 627, 178); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:24:19', '17:35:00', '19:04:31', 612, 179); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:24:28', '17:24:36', '17:50:19', 612, 180); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:32:08', '17:36:46', '17:40:40', 612, 181); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:33:13', '17:33:20', '18:04:57', 627, 182); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:34:40', '17:41:48', '17:45:51', 612, 183); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:34:55', '17:36:08', '17:38:17', 631, 184); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:35:11', '17:40:40', '18:23:41', 612, 185); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:37:07', '17:38:17', '17:44:53', 631, 186); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:38:38', '17:50:20', '18:13:59', 612, 187); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:40:30', '17:45:29', '17:54:52', 631, 188); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:45:43', '17:45:55', '17:54:35', 612, 189); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:46:02', '17:51:23', '18:01:35', 627, 190); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:53:35', '17:54:36', '18:12:00', 612, 191); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:54:22', '17:54:52', '19:01:04', 631, 192); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:54:40', '18:01:59', '18:25:47', 627, 193); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:54:58', '17:56:50', '18:00:40', 631, 194); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:55:20', '17:58:11', '18:17:43', 631, 195); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:55:22', '18:00:24', '18:13:23', 627, 196); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '17:58:25', '18:00:40', '19:51:50', 631, 197); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '18:07:52', '18:08:26', '19:04:06', 627, 198); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '18:10:02', '18:12:00', '19:14:52', 612, 199); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '18:13:24', '18:17:43', '18:27:15', 631, 200); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '18:19:21', '18:19:21', '18:48:05', 627, 201); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '18:23:30', '18:23:41', '18:29:16', 612, 202); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '18:24:34', '18:24:35', '18:28:51', 627, 203); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '18:24:52', '18:27:13', '18:37:34', 627, 204); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '18:26:06', '18:27:15', '18:40:01', 631, 205); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '18:27:23', '18:29:17', '18:34:14', 612, 206); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '18:30:44', '18:34:14', '18:49:41', 612, 207); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '18:39:32', '18:40:01', '19:33:35', 631, 208); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '18:41:37', '18:41:47', '18:47:14', 627, 209); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '18:43:07', '18:47:14', '19:36:33', 627, 210); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '18:46:40', '18:49:41', '19:18:50', 612, 211); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '18:47:18', '18:48:06', '19:55:22', 627, 212); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '19:01:42', '19:03:44', '19:32:10', 627, 213); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '19:08:21', '19:13:02', '19:18:23', 627, 214); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '19:22:43', '19:27:31', '19:40:43', 627, 215); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '19:26:30', '19:26:35', '20:09:20', 627, 216); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '19:57:09', '19:58:17', '20:23:14', 627, 217); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-01', '20:13:26', '20:13:37', '20:48:39', 627, 218); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '09:07:15', '09:18:16', '09:21:06', 612, 219); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '09:12:41', '09:21:07', '09:29:42', 612, 220); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '09:31:58', '09:32:06', '09:40:40', 612, 221); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '09:34:49', '09:35:37', '10:21:54', 631, 222); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '09:36:31', '09:43:06', '10:29:15', 627, 223); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '09:41:50', '09:43:06', '11:22:32', 627, 224); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '09:49:07', '09:49:11', '10:16:11', 627, 225); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '09:50:04', '09:50:11', '09:59:12', 627, 226); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '09:52:12', '09:54:02', '10:37:22', 631, 227); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '10:12:00', '10:12:01', '11:12:16', 612, 228); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '10:19:53', '10:21:55', '10:36:49', 631, 229); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '10:21:01', '10:29:15', '10:38:56', 627, 230); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '10:34:54', '10:36:50', '12:28:07', 631, 231); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '10:36:18', '10:37:23', '10:42:11', 631, 232); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '10:37:09', '10:42:11', '11:21:20', 631, 233); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '10:38:21', '10:38:57', '11:19:40', 627, 234); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '10:42:00', '10:42:03', '11:04:00', 627, 235); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '10:54:55', '10:55:04', '11:13:43', 612, 236); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:03:52', '11:03:53', '11:20:03', 627, 237); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:11:57', '11:12:01', '12:05:21', 612, 238); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:12:33', '11:12:34', '11:21:35', 627, 239); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:13:37', '11:19:20', '11:36:33', 627, 240); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:15:09', '11:20:03', '11:46:36', 627, 241); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:16:15', '11:17:05', '11:34:06', 631, 242); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:16:18', '11:16:26', '11:31:12', 612, 243); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:16:35', '11:21:38', '12:11:52', 627, 244); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:19:00', '11:19:41', '12:19:16', 627, 245); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:20:47', '11:20:50', '11:30:10', 627, 246); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:20:57', '11:21:21', '11:58:18', 631, 247); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:21:04', '11:22:32', '11:23:42', 627, 248); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:22:29', '11:23:42', '15:56:29', 627, 249); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:31:08', '11:31:13', '11:40:07', 612, 250); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:33:16', '11:34:06', '12:15:46', 631, 251); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:37:35', '11:37:41', '12:01:28', 627, 252); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:47:07', '11:47:12', '11:55:35', 612, 253); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:55:21', '11:55:35', '12:17:12', 612, 254); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:57:22', '11:57:27', '12:09:25', 627, 255); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '11:57:45', '11:58:18', '13:07:43', 631, 256); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:03:21', '12:05:21', '12:10:26', 612, 257); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:10:03', '12:10:26', '12:19:24', 612, 258); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:10:55', '12:17:13', '13:04:15', 612, 259); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:14:54', '12:15:46', '13:07:38', 631, 260); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:18:15', '12:19:24', '12:37:36', 612, 261); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:19:41', '12:19:44', '12:29:08', 627, 262); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:21:08', '12:21:14', '12:28:57', 627, 263); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:24:37', '12:29:08', '12:31:39', 627, 264); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:27:01', '12:27:20', '13:16:51', 631, 265); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:27:13', '12:29:10', '13:15:18', 627, 266); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:27:48', '12:28:07', '12:51:27', 631, 267); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:34:54', '12:35:04', '12:45:10', 612, 268); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:36:00', '12:43:54', '15:54:53', 627, 269); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:36:40', '12:37:37', '12:50:57', 612, 270); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:37:06', '12:37:11', '12:51:59', 627, 271); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:43:29', '12:51:59', '12:56:43', 627, 272); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:49:24', '12:52:41', '13:17:56', 612, 273); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:50:36', '12:51:27', '12:57:18', 631, 274); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:50:46', '12:50:58', '13:01:23', 612, 275); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:52:08', '13:01:23', '13:44:48', 612, 276); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:54:55', '12:57:18', '13:27:31', 631, 277); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:56:28', '12:56:32', '13:18:02', 627, 278); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '12:57:21', '13:04:16', '13:25:30', 612, 279); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:03:46', '13:07:39', '13:33:40', 631, 280); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:06:02', '13:07:43', '13:21:59', 631, 281); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:08:44', '13:15:10', '13:17:07', 627, 282); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:10:00', '13:10:06', '14:20:31', 627, 283); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:10:34', '13:10:35', '13:45:46', 627, 284); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:12:02', '13:18:02', '14:37:41', 627, 285); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:16:36', '13:16:51', '13:48:00', 631, 286); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:17:02', '13:21:34', '13:47:25', 631, 287); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:18:18', '13:18:38', '13:25:05', 612, 288); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:18:31', '13:23:28', '13:33:45', 612, 289); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:20:33', '13:22:00', '13:33:20', 631, 290); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:22:19', '13:25:05', '14:05:21', 612, 291); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:23:26', '13:33:40', '13:47:49', 631, 292); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:23:44', '13:25:31', '13:32:06', 612, 293); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:24:34', '13:27:31', '14:35:49', 631, 294); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:25:03', '13:33:46', '13:43:34', 612, 295); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:25:54', '13:28:07', '13:37:59', 627, 296); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:26:32', '13:33:20', '13:38:21', 631, 297); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:29:17', '13:38:22', '13:41:10', 631, 298); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:35:34', '13:36:00', '13:42:45', 627, 299); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:35:44', '13:37:59', '13:41:57', 627, 300); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:42:33', '13:42:38', '14:13:19', 627, 301); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:43:16', '13:43:22', '13:50:09', 627, 302); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:44:26', '13:44:48', '14:34:44', 612, 303); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:46:31', '13:47:26', '15:12:07', 631, 304); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:46:54', '13:48:01', '13:57:38', 631, 305); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:47:15', '13:47:50', '14:06:18', 631, 306); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:49:39', '13:57:38', '14:06:35', 631, 307); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:52:57', '13:53:26', '14:21:13', 627, 308); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '13:56:45', '15:15:14', '15:40:37', 612, 309); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:02:11', '14:05:22', '14:14:45', 612, 310); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:05:35', '14:06:18', '15:19:25', 631, 311); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:09:12', '14:13:20', '14:14:20', 627, 312); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:10:28', '14:10:37', '14:14:50', 612, 313); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:12:33', '14:14:43', '14:34:30', 627, 314); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:14:24', '14:14:46', '14:41:12', 612, 315); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:15:05', '14:15:11', '14:24:00', 612, 316); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:15:38', '14:15:41', '14:16:48', 627, 317); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:21:55', '14:21:57', '14:55:04', 627, 318); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:22:53', '14:22:54', '16:01:41', 627, 319); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:23:18', '14:23:26', '14:40:35', 631, 320); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:31:40', '14:31:46', '14:37:26', 612, 321); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:32:50', '14:35:01', '14:59:36', 631, 322); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:32:59', '14:40:05', '14:58:27', 627, 323); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:33:00', '14:34:44', '14:54:01', 612, 324); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:33:52', '14:37:26', '15:01:55', 612, 325); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:35:32', '14:35:49', '15:37:35', 631, 326); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:37:56', '14:41:13', '15:14:51', 612, 327); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:38:50', '14:40:35', '14:52:05', 631, 328); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:40:51', '14:40:55', '14:53:56', 612, 329); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:51:42', '14:54:01', '15:49:20', 612, 330); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:52:10', '14:52:17', '15:29:22', 631, 331); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:53:46', '14:53:56', '15:08:02', 612, 332); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '14:58:39', '14:59:36', '15:25:57', 631, 333); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:06:38', '15:06:54', '15:13:54', 612, 334); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:06:55', '15:08:02', '15:23:11', 612, 335); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:11:13', '15:11:27', '15:20:09', 627, 336); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:11:51', '15:12:07', '16:02:38', 631, 337); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:12:06', '15:13:55', '15:33:59', 612, 338); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:16:54', '15:20:09', '15:32:40', 627, 339); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:18:57', '15:19:25', '16:02:06', 631, 340); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:19:08', '15:21:43', '15:27:25', 627, 341); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:20:31', '15:27:25', '15:34:00', 627, 342); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:22:33', '15:32:40', '15:37:02', 627, 343); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:25:28', '15:25:57', '15:39:32', 631, 344); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:26:02', '15:33:59', '15:40:46', 612, 345); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:27:17', '15:29:22', '15:57:36', 631, 346); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:35:03', '15:37:35', '15:52:35', 631, 347); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:35:30', '15:39:32', '16:01:27', 631, 348); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:47:36', '15:47:38', '15:58:59', 627, 349); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:49:08', '15:52:36', '16:02:33', 631, 350); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:52:49', '15:54:54', '16:02:01', 627, 351); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:55:30', '15:56:29', '16:01:55', 627, 352); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-02', '15:59:23', '16:01:28', '16:03:01', 631, 353); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '09:00:31', '09:00:39', '10:15:50', 631, 354); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '09:06:32', '09:06:39', '09:35:20', 631, 355); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '09:15:44', '09:15:50', '10:21:10', 631, 356); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '09:17:45', '09:17:54', '09:35:57', 631, 357); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '09:33:49', '09:35:20', '10:09:59', 631, 358); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '09:38:21', '09:38:28', '09:50:38', 631, 359); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '09:39:27', '09:39:33', '09:48:11', 612, 360); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '09:47:59', '09:48:04', '09:55:32', 612, 361); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '09:52:33', '09:54:18', '10:18:14', 631, 362); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '09:53:59', '09:54:09', '10:01:22', 631, 363); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:10:07', '10:10:11', '11:18:11', 631, 364); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:11:14', '10:11:23', '10:22:04', 631, 365); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:17:24', '10:18:14', '12:48:34', 631, 366); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:17:49', '10:17:51', '11:03:08', 631, 367); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:19:31', '10:19:38', '10:32:37', 612, 368); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:19:59', '10:21:10', '10:24:32', 631, 369); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:21:22', '10:22:04', '10:53:03', 631, 370); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:30:55', '10:31:00', '10:47:47', 612, 371); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:31:31', '10:31:45', '10:48:50', 612, 372); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:32:17', '10:32:38', '10:47:59', 612, 373); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:33:53', '10:34:03', '10:38:32', 612, 374); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:34:39', '10:38:32', '10:54:04', 612, 375); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:39:48', '10:39:53', '10:51:56', 631, 376); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:47:51', '10:48:00', '11:31:31', 612, 377); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:48:23', '10:48:46', '11:09:52', 612, 378); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:48:37', '10:48:51', '11:02:57', 612, 379); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:50:35', '10:51:56', '11:26:32', 631, 380); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:51:02', '10:53:03', '11:03:36', 631, 381); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '10:59:03', '10:59:05', '11:13:52', 612, 382); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '11:02:28', '11:13:52', '11:37:47', 612, 383); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '11:02:45', '11:02:57', '12:17:00', 612, 384); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '11:03:16', '11:03:19', '12:11:21', 631, 385); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '11:16:38', '11:16:47', '11:43:24', 631, 386); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '11:18:09', '11:18:11', '12:02:06', 631, 387); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '11:22:48', '11:41:09', '11:47:18', 612, 388); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '11:24:40', '11:32:08', '11:44:47', 612, 389); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '11:28:50', '11:44:47', '12:09:02', 612, 390); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '11:29:12', '11:29:13', '11:42:48', 631, 391); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '11:35:19', '11:47:19', '12:03:58', 612, 392); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '11:37:37', '12:03:58', '12:05:36', 612, 393); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '11:38:52', '11:42:49', '11:56:16', 631, 394); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '11:46:41', '11:50:04', '11:57:36', 627, 395); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '11:55:19', '11:55:25', '12:04:01', 631, 396); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '11:56:08', '11:56:16', '12:21:49', 631, 397); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:00:51', '12:05:36', '12:47:03', 612, 398); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:00:51', '12:02:07', '12:20:17', 631, 399); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:03:38', '12:09:09', '12:16:54', 612, 400); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:07:39', '12:16:54', '13:05:57', 612, 401); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:11:00', '12:11:02', '12:22:27', 631, 402); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:18:59', '12:19:09', '12:29:00', 627, 403); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:19:40', '12:19:43', '13:09:43', 631, 404); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:20:01', '12:20:17', '12:39:36', 631, 405); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:20:18', '12:21:49', '12:56:35', 631, 406); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:21:14', '12:22:28', '12:28:42', 631, 407); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:22:55', '12:28:42', '12:31:17', 631, 408); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:28:35', '12:30:48', '12:45:09', 631, 409); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:30:01', '12:31:18', '13:30:04', 631, 410); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:31:28', '12:31:31', '13:13:23', 627, 411); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:33:35', '12:39:12', '12:54:42', 627, 412); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:38:49', '12:39:19', '13:02:41', 627, 413); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:38:56', '12:39:37', '12:51:47', 631, 414); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:39:42', '12:45:10', '14:19:18', 631, 415); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:41:32', '12:42:11', '12:53:42', 612, 416); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:44:48', '12:44:56', '13:16:26', 627, 417); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:46:53', '12:47:04', '13:01:32', 612, 418); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:50:41', '12:51:48', '13:07:23', 631, 419); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:51:53', '12:53:42', '13:06:05', 612, 420); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:54:39', '12:54:48', '13:20:45', 612, 421); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:56:09', '12:56:36', '13:24:46', 631, 422); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '12:57:14', '13:01:33', '13:04:15', 612, 423); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:00:48', '13:09:38', '13:35:00', 627, 424); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:01:31', '13:02:41', '13:11:34', 627, 425); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:01:54', '13:04:15', '13:15:33', 612, 426); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:02:16', '13:05:58', '13:14:33', 612, 427); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:03:28', '13:06:51', '13:10:52', 612, 428); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:04:05', '13:10:52', '13:18:14', 612, 429); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:05:08', '13:11:34', '15:14:09', 627, 430); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:06:13', '13:07:24', '13:44:12', 631, 431); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:07:03', '13:15:33', '13:20:38', 612, 432); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:08:11', '13:09:43', '13:47:19', 631, 433); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:09:03', '13:18:15', '14:07:12', 612, 434); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:12:36', '13:14:34', '13:50:52', 631, 435); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:12:56', '13:14:33', '13:34:58', 612, 436); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:15:37', '13:16:21', '13:19:10', 627, 437); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:15:40', '13:21:16', '13:37:53', 612, 438); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:21:16', '13:21:18', '13:39:35', 627, 439); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:24:24', '13:24:46', '13:33:36', 631, 440); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:26:00', '13:28:05', '13:47:58', 627, 441); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:29:56', '13:30:04', '13:57:33', 631, 442); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:31:26', '13:33:37', '14:21:34', 631, 443); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:33:15', '13:34:58', '14:04:08', 612, 444); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:34:33', '13:43:37', '14:35:54', 627, 445); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:35:41', '13:37:54', '14:04:01', 612, 446); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:40:01', '13:47:58', '13:52:57', 627, 447); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:44:05', '13:44:12', '14:02:49', 631, 448); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:44:59', '13:47:19', '14:02:43', 631, 449); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:49:02', '13:50:52', '14:24:32', 631, 450); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '13:55:54', '13:57:33', '14:16:50', 631, 451); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:00:02', '14:02:43', '14:57:40', 631, 452); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:01:53', '14:02:50', '14:14:16', 631, 453); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:04:05', '14:04:08', '14:15:29', 612, 454); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:06:36', '14:06:45', '14:28:52', 612, 455); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:07:51', '14:07:59', '14:15:26', 627, 456); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:08:34', '14:10:05', '14:14:31', 627, 457); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:11:38', '14:11:43', '14:32:40', 612, 458); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:12:34', '14:12:44', '14:46:51', 627, 459); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:13:19', '14:15:29', '14:19:40', 612, 460); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:13:55', '14:14:16', '14:33:30', 631, 461); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:15:34', '14:15:36', '14:20:30', 612, 462); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:16:34', '14:16:50', '14:28:12', 631, 463); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:17:01', '14:19:19', '15:00:58', 631, 464); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:17:24', '14:19:40', '14:34:24', 612, 465); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:17:26', '14:21:34', '14:26:04', 631, 466); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:17:37', '14:20:30', '14:32:46', 612, 467); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:17:48', '14:26:05', '14:44:52', 631, 468); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:18:40', '14:28:53', '14:43:10', 612, 469); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:19:27', '14:20:46', '14:35:34', 627, 470); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:20:22', '14:32:40', '14:50:24', 612, 471); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:22:14', '14:34:24', '14:41:42', 612, 472); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:23:03', '14:29:01', '14:56:29', 631, 473); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:23:36', '14:24:33', '14:54:09', 631, 474); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:25:38', '14:26:06', '15:03:29', 627, 475); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:29:16', '14:41:42', '14:48:14', 612, 476); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:30:12', '14:32:47', '14:35:09', 612, 477); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:30:34', '14:43:10', '14:58:49', 612, 478); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:30:56', '14:41:50', '14:46:36', 627, 479); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:31:23', '14:48:15', '14:50:25', 612, 480); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:31:47', '14:35:09', '14:37:57', 612, 481); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:32:10', '14:50:25', '15:19:31', 612, 482); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:32:26', '14:35:54', '14:42:42', 627, 483); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:33:33', '14:33:42', '15:28:50', 631, 484); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:39:30', '14:50:25', '14:57:03', 612, 485); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:43:45', '14:44:52', '15:00:31', 631, 486); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:45:23', '14:46:51', '15:03:20', 627, 487); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:47:14', '14:57:53', '15:10:29', 612, 488); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:48:00', '14:58:55', '15:13:04', 627, 489); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:51:52', '15:10:29', '15:20:30', 612, 490); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:52:16', '14:56:29', '15:12:50', 631, 491); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:53:38', '14:59:01', '15:03:30', 612, 492); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:53:47', '14:54:10', '15:24:20', 631, 493); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:54:27', '14:59:17', '15:18:47', 627, 494); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:55:47', '15:03:20', '15:05:46', 627, 495); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:56:00', '15:03:29', '15:06:13', 627, 496); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:56:50', '14:57:40', '15:00:31', 631, 497); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:58:00', '15:03:30', '15:13:42', 612, 498); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '14:58:45', '15:00:31', '15:31:13', 631, 499); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:00:08', '15:00:31', '15:21:05', 631, 500); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:07:25', '15:09:26', '15:13:43', 627, 501); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:10:15', '15:20:30', '15:24:59', 612, 502); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:12:18', '15:13:47', '15:17:52', 627, 503); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:12:23', '15:12:50', '16:08:27', 631, 504); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:12:48', '15:15:18', '15:24:42', 627, 505); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:13:10', '15:14:10', '15:45:38', 627, 506); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:13:51', '15:17:53', '15:43:00', 627, 507); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:14:02', '15:14:16', '15:41:56', 612, 508); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:21:37', '15:24:42', '15:31:02', 627, 509); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:22:41', '15:22:46', '15:30:13', 631, 510); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:22:46', '15:31:02', '15:34:29', 627, 511); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:23:04', '15:24:21', '15:37:04', 631, 512); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:24:44', '15:24:59', '15:26:06', 612, 513); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:25:09', '15:26:06', '15:42:41', 612, 514); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:26:59', '15:34:30', '15:43:18', 627, 515); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:27:16', '15:28:50', '15:49:05', 631, 516); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:29:00', '15:29:02', '15:55:17', 612, 517); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:30:03', '15:30:13', '15:51:01', 631, 518); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:31:21', '15:31:29', '16:04:20', 612, 519); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:32:46', '15:32:54', '15:49:40', 631, 520); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:33:03', '15:37:04', '16:04:35', 631, 521); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:36:03', '15:43:01', '15:50:45', 627, 522); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:39:38', '15:41:57', '15:52:03', 612, 523); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:40:29', '15:42:45', '15:51:09', 612, 524); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:41:23', '15:52:04', '15:54:24', 612, 525); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:43:38', '15:51:09', '15:54:36', 612, 526); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:44:13', '15:45:38', '16:00:22', 627, 527); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:44:19', '15:54:24', '16:34:34', 612, 528); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:44:43', '15:54:36', '15:57:38', 612, 529); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:47:53', '15:49:05', '16:10:27', 631, 530); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:48:27', '15:49:41', '16:10:19', 631, 531); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-03', '15:50:20', '15:55:17', '16:10:59', 612, 532); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '10:26:56', '10:27:06', '10:28:19', 627, 533); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '10:27:20', '10:27:25', '10:39:13', 631, 534); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '10:27:33', '10:27:38', '10:30:48', 627, 535); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '10:29:50', '10:29:54', '11:55:32', 612, 536); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '10:39:30', '10:39:31', '11:07:23', 631, 537); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '10:43:08', '10:43:09', '11:19:05', 627, 538); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '10:45:09', '10:45:11', '11:07:42', 631, 539); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '10:46:01', '10:46:14', '11:19:52', 627, 540); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '10:46:26', '10:46:36', '10:51:33', 627, 541); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '10:48:14', '10:51:06', '11:01:05', 627, 542); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '10:48:25', '10:48:56', '10:54:59', 627, 543); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '10:49:52', '10:49:54', '11:12:25', 612, 544); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '10:50:11', '10:52:34', '11:27:32', 627, 545); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '10:50:40', '10:55:00', '11:10:22', 627, 546); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:01:14', '11:01:24', '11:17:06', 631, 547); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:05:32', '11:08:03', '11:19:48', 612, 548); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:07:52', '11:07:53', '11:36:11', 631, 549); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:09:19', '11:10:22', '12:44:06', 627, 550); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:10:11', '11:10:19', '11:14:07', 627, 551); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:12:17', '11:12:25', '12:22:35', 612, 552); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:18:14', '11:22:21', '11:38:48', 612, 553); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:19:35', '11:19:48', '11:22:37', 612, 554); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:20:21', '11:22:37', '11:59:59', 612, 555); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:27:04', '11:27:08', '11:39:24', 631, 556); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:33:34', '11:33:44', '11:45:47', 631, 557); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:36:03', '11:36:11', '11:56:02', 631, 558); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:38:31', '11:38:48', '12:27:40', 612, 559); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:39:05', '11:41:10', '12:05:00', 627, 560); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:39:48', '11:39:56', '11:54:33', 631, 561); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:45:23', '11:47:07', '12:46:46', 627, 562); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:50:31', '11:50:39', '12:22:05', 631, 563); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:52:39', '11:54:33', '12:27:51', 631, 564); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:52:44', '11:53:54', '12:41:21', 627, 565); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:54:01', '11:56:03', '12:20:52', 631, 566); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:54:46', '11:55:32', '12:59:10', 612, 567); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '11:59:54', '11:59:59', '12:27:54', 612, 568); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:02:12', '12:10:31', '12:15:24', 627, 569); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:20:22', '12:20:52', '13:21:54', 631, 570); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:22:05', '12:22:05', '13:22:46', 631, 571); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:22:28', '12:22:35', '12:27:40', 612, 572); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:26:51', '12:27:52', '12:54:06', 631, 573); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:27:13', '12:27:40', '12:32:04', 612, 574); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:27:48', '12:27:54', '12:42:40', 612, 575); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:31:48', '12:32:04', '12:40:42', 612, 576); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:40:09', '12:41:22', '13:01:00', 627, 577); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:40:27', '12:40:42', '12:42:47', 612, 578); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:42:34', '12:42:40', '13:05:32', 612, 579); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:43:07', '12:44:07', '13:55:12', 627, 580); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:46:37', '12:46:47', '13:28:12', 627, 581); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:47:28', '12:50:38', '12:59:02', 627, 582); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:47:31', '12:47:39', '13:25:50', 612, 583); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:53:53', '12:54:06', '13:01:22', 631, 584); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '12:58:22', '12:58:37', '13:21:12', 612, 585); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:04:13', '13:04:32', '13:17:38', 612, 586); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:05:21', '13:05:32', '14:04:36', 612, 587); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:07:37', '13:07:39', '13:31:59', 627, 588); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:11:14', '13:11:23', '13:39:34', 631, 589); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:11:45', '13:21:13', '13:48:11', 612, 590); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:14:02', '13:17:38', '13:42:29', 612, 591); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:17:59', '13:25:50', '13:29:54', 612, 592); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:21:30', '13:21:54', '14:33:07', 631, 593); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:22:07', '13:29:54', '13:38:11', 612, 594); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:23:19', '13:38:12', '13:53:52', 612, 595); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:30:14', '13:30:30', '13:33:52', 627, 596); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:33:13', '13:42:30', '13:45:49', 612, 597); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:34:12', '13:37:30', '14:25:37', 631, 598); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:38:44', '13:39:53', '14:09:44', 631, 599); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:43:33', '13:48:50', '13:56:47', 612, 600); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:44:43', '13:45:49', '13:58:55', 612, 601); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:45:30', '13:53:53', '13:56:50', 612, 602); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:48:28', '13:58:55', '14:40:46', 612, 603); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '13:56:20', '13:56:48', '14:08:25', 612, 604); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:00:14', '14:04:51', '14:13:31', 612, 605); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:00:44', '14:00:51', '14:05:31', 612, 606); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:03:33', '14:03:34', '14:33:17', 631, 607); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:05:08', '14:05:31', '14:21:06', 612, 608); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:08:16', '14:08:25', '14:20:12', 612, 609); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:08:53', '14:09:44', '14:13:31', 631, 610); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:09:15', '14:13:31', '14:47:13', 631, 611); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:13:07', '14:13:31', '14:52:05', 612, 612); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:14:48', '14:14:50', '14:32:36', 627, 613); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:15:59', '14:21:07', '14:24:25', 612, 614); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:16:27', '14:16:35', '14:20:38', 627, 615); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:22:24', '14:24:25', '14:33:16', 612, 616); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:22:40', '14:22:41', '14:47:20', 627, 617); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:25:46', '14:26:39', '14:59:06', 631, 618); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:27:20', '14:28:38', '14:51:19', 627, 619); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:32:44', '14:33:08', '14:49:29', 631, 620); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:33:07', '14:33:16', '15:10:55', 612, 621); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:35:33', '14:40:46', '15:46:11', 612, 622); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:39:27', '14:43:22', '15:10:37', 631, 623); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:39:42', '14:42:34', '15:14:45', 612, 624); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:40:38', '14:40:41', '14:51:00', 627, 625); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:43:45', '14:47:13', '15:01:44', 631, 626); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:45:54', '14:49:29', '15:06:17', 631, 627); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:48:01', '14:48:08', '14:53:49', 627, 628); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:51:22', '14:52:05', '16:02:00', 612, 629); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:53:21', '14:59:07', '15:16:32', 631, 630); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:57:57', '15:01:45', '15:03:00', 631, 631); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:58:55', '15:03:00', '15:33:43', 631, 632); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '14:59:13', '15:06:18', '16:02:26', 631, 633); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '15:07:56', '15:08:00', '15:26:57', 627, 634); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '15:09:28', '15:09:31', '15:18:58', 627, 635); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '15:10:45', '15:10:55', '15:36:48', 612, 636); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '15:14:08', '15:14:25', '15:32:12', 627, 637); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '15:14:33', '15:14:45', '15:34:21', 612, 638); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '15:33:09', '15:33:44', '15:52:54', 631, 639); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '15:34:30', '15:34:33', '16:01:13', 612, 640); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '15:36:36', '15:36:48', '15:46:09', 612, 641); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '15:42:40', '15:43:15', '15:57:50', 627, 642); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '15:44:52', '15:46:10', '16:06:39', 612, 643); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '15:45:52', '15:47:22', '15:57:28', 627, 644); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-04', '15:52:34', '15:52:55', '16:02:27', 631, 645); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '12:32:58', '12:33:02', '12:41:16', 612, 646); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '12:33:18', '12:33:25', '12:57:58', 612, 647); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '12:39:43', '12:39:54', '12:49:13', 612, 648); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '12:41:15', '12:41:25', '12:46:45', 612, 649); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '12:45:03', '12:46:46', '12:56:02', 612, 650); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '12:45:35', '12:49:13', '13:41:13', 612, 651); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '12:47:04', '12:57:59', '13:04:55', 612, 652); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '12:47:37', '12:56:02', '13:05:12', 612, 653); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '12:53:25', '13:04:55', '13:57:37', 612, 654); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '12:58:27', '13:05:13', '13:21:01', 612, 655); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '13:20:54', '13:21:01', '13:40:53', 612, 656); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '13:40:50', '13:41:13', '14:11:58', 612, 657); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '13:46:20', '13:46:34', '13:51:16', 612, 658); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '13:51:04', '13:51:16', '13:57:38', 612, 659); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '13:57:32', '13:57:42', '14:09:29', 612, 660); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '14:09:19', '14:09:29', '14:55:04', 612, 661); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '14:11:41', '14:11:58', '16:05:01', 612, 662); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '14:13:35', '14:23:19', '14:44:07', 612, 663); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '14:43:47', '14:44:07', '15:10:38', 612, 664); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '14:54:57', '14:55:04', '15:30:42', 612, 665); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '15:10:31', '15:10:42', '15:58:17', 612, 666); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '15:30:34', '15:30:43', '15:42:32', 612, 667); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '15:31:12', '15:42:32', '15:45:31', 612, 668); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '15:33:30', '15:45:32', '15:47:58', 612, 669); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '15:42:39', '15:47:58', '15:50:25', 612, 670); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-05', '15:44:31', '15:50:25', '16:05:57', 612, 671); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:02:00', '09:03:07', '09:48:14', 627, 672); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:02:35', '09:02:39', '09:21:02', 627, 673); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:02:55', '09:03:00', '09:21:21', 627, 674); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:03:27', '09:03:33', '09:18:14', 627, 675); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:04:08', '09:10:17', '09:25:11', 627, 676); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:05:47', '09:11:59', '09:14:41', 627, 677); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:08:04', '09:08:08', '10:34:18', 612, 678); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:16:20', '09:16:27', '09:32:55', 631, 679); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:17:03', '09:20:27', '09:39:24', 631, 680); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:29:58', '09:30:03', '09:31:23', 612, 681); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:31:16', '09:31:25', '10:02:28', 631, 682); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:31:49', '09:32:55', '09:45:43', 631, 683); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:32:14', '09:39:24', '09:54:21', 631, 684); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:33:32', '09:40:49', '10:00:10', 631, 685); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:37:43', '09:48:14', '10:00:10', 627, 686); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:40:27', '09:40:32', '09:48:02', 627, 687); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:44:05', '09:45:44', '10:04:58', 631, 688); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:49:43', '09:54:21', '10:26:22', 631, 689); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:51:37', '10:00:11', '11:38:18', 631, 690); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:57:52', '10:00:10', '10:20:01', 627, 691); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '09:58:59', '09:59:05', '11:03:19', 612, 692); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:01:03', '10:02:28', '10:47:10', 631, 693); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:01:19', '10:01:25', '10:45:38', 627, 694); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:01:28', '10:06:27', '10:49:40', 612, 695); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:05:13', '10:05:19', '10:10:02', 631, 696); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:06:16', '10:06:19', '10:12:38', 612, 697); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:06:36', '10:10:03', '10:21:59', 631, 698); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:13:15', '10:20:01', '11:31:22', 627, 699); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:17:31', '10:17:38', '10:35:25', 627, 700); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:19:43', '10:19:45', '10:38:28', 627, 701); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:23:54', '10:24:03', '10:27:04', 627, 702); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:25:59', '10:26:01', '10:52:45', 612, 703); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:26:13', '10:28:38', '11:35:54', 631, 704); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:32:25', '10:33:19', '11:05:52', 612, 705); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:34:12', '10:34:18', '10:52:28', 612, 706); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:35:17', '10:35:24', '10:50:37', 612, 707); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:39:33', '10:39:36', '11:00:47', 627, 708); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:40:10', '10:40:19', '11:25:51', 627, 709); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:40:34', '10:42:39', '11:10:50', 631, 710); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:43:32', '10:47:11', '10:58:51', 631, 711); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:49:28', '10:49:40', '11:11:50', 612, 712); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:50:54', '10:52:28', '11:57:20', 612, 713); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:52:17', '10:52:45', '10:56:58', 612, 714); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:56:32', '10:56:58', '10:59:33', 612, 715); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:56:51', '10:58:51', '11:07:20', 631, 716); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:58:51', '10:59:33', '14:12:10', 612, 717); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '10:59:37', '11:01:25', '12:07:16', 612, 718); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:00:28', '11:03:20', '11:57:04', 612, 719); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:00:55', '11:02:16', '11:17:02', 612, 720); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:02:11', '11:07:20', '11:42:18', 631, 721); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:04:38', '11:10:50', '11:22:48', 631, 722); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:04:48', '11:04:56', '11:48:49', 627, 723); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:05:44', '11:05:53', '12:13:47', 612, 724); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:07:25', '11:07:43', '12:19:26', 631, 725); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:10:20', '11:10:28', '11:51:40', 627, 726); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:12:18', '11:12:20', '11:26:18', 612, 727); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:22:13', '11:22:41', '12:16:35', 631, 728); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:24:26', '11:26:19', '11:55:58', 612, 729); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:27:46', '11:27:52', '11:33:44', 627, 730); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:30:10', '11:31:22', '11:45:43', 627, 731); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:30:52', '11:30:57', '12:02:03', 627, 732); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:31:04', '11:35:55', '13:40:45', 631, 733); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:32:54', '11:45:43', '12:47:33', 627, 734); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:34:05', '11:34:10', '12:08:28', 631, 735); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:42:29', '11:42:29', '11:52:46', 631, 736); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:42:49', '11:49:47', '12:16:16', 631, 737); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:45:35', '11:52:46', '11:59:40', 631, 738); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:48:37', '11:48:49', '12:11:37', 627, 739); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:49:12', '11:49:13', '12:09:49', 627, 740); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:52:23', '11:55:58', '12:06:31', 612, 741); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:53:13', '11:59:40', '12:38:52', 631, 742); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:53:29', '11:57:04', '13:05:53', 612, 743); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:54:45', '11:57:20', '12:48:30', 612, 744); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:58:52', '11:58:54', '12:12:50', 627, 745); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '11:59:47', '11:59:52', '12:27:07', 627, 746); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:00:24', '12:47:41', '13:01:48', 627, 747); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:03:55', '12:11:38', '12:21:20', 627, 748); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:04:25', '13:01:48', '13:07:07', 627, 749); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:05:36', '12:09:49', '12:50:50', 627, 750); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:05:52', '12:05:58', '12:09:49', 612, 751); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:06:22', '12:06:32', '12:12:46', 612, 752); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:07:10', '12:07:17', '12:28:41', 612, 753); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:07:14', '12:08:29', '12:46:07', 631, 754); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:08:12', '12:16:16', '12:58:10', 631, 755); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:09:04', '12:16:36', '12:32:05', 631, 756); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:11:46', '12:12:46', '12:19:04', 612, 757); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:13:04', '12:13:47', '12:15:42', 612, 758); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:15:14', '12:15:43', '12:34:14', 612, 759); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:15:29', '12:32:05', '12:39:45', 631, 760); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:16:22', '12:20:48', '12:30:13', 627, 761); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:16:52', '12:17:01', '12:28:14', 627, 762); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:17:26', '12:19:04', '12:28:53', 612, 763); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:18:32', '12:19:26', '14:31:02', 631, 764); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:20:18', '12:39:15', '12:47:00', 631, 765); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:28:36', '12:28:42', '12:48:55', 612, 766); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:31:17', '12:31:45', '12:37:07', 627, 767); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:34:02', '12:34:14', '12:41:45', 612, 768); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:36:12', '12:52:16', '13:06:20', 612, 769); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:39:02', '12:39:45', '13:08:22', 631, 770); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:40:08', '12:40:16', '12:46:14', 627, 771); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:41:39', '12:41:46', '13:12:18', 612, 772); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:42:36', '13:07:07', '13:12:58', 627, 773); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:44:56', '12:45:02', '13:04:45', 627, 774); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:45:45', '12:46:07', '13:28:19', 631, 775); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:45:52', '12:52:26', '13:00:43', 627, 776); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:46:24', '12:47:00', '12:57:14', 631, 777); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:46:42', '12:46:50', '12:59:01', 612, 778); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:47:37', '12:48:30', '13:02:54', 612, 779); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:48:09', '12:58:10', '13:15:48', 631, 780); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:55:52', '12:58:10', '13:12:17', 631, 781); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:57:10', '13:08:23', '13:18:50', 631, 782); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:58:24', '13:00:44', '13:42:45', 627, 783); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '12:59:10', '12:59:11', '13:07:56', 612, 784); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:02:37', '13:02:55', '13:05:53', 612, 785); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:03:08', '13:03:29', '13:06:33', 612, 786); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:04:04', '13:12:30', '13:36:16', 631, 787); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:04:20', '13:04:46', '13:39:52', 627, 788); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:04:47', '13:15:49', '13:55:27', 631, 789); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:05:45', '13:05:53', '14:11:21', 612, 790); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:06:52', '13:06:54', '14:05:50', 612, 791); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:07:49', '13:08:01', '13:37:05', 612, 792); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:08:29', '13:12:19', '13:37:06', 612, 793); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:08:57', '13:18:50', '13:30:18', 631, 794); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:11:00', '13:12:58', '13:29:43', 627, 795); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:12:25', '13:14:42', '13:19:30', 612, 796); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:13:12', '13:15:34', '13:42:30', 627, 797); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:13:45', '13:16:15', '13:46:25', 627, 798); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:14:54', '13:39:53', '14:20:11', 627, 799); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:19:19', '13:19:31', '13:23:07', 612, 800); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:24:40', '13:28:20', '13:43:15', 631, 801); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:28:22', '13:29:44', '13:41:42', 627, 802); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:29:41', '13:30:18', '13:42:43', 631, 803); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:31:10', '13:36:16', '13:45:50', 631, 804); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:35:56', '13:42:43', '14:38:24', 631, 805); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:36:49', '13:37:05', '13:49:19', 612, 806); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:37:52', '13:43:16', '13:48:07', 631, 807); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:38:47', '13:45:50', '13:59:20', 631, 808); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:39:19', '13:48:07', '14:08:50', 631, 809); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:39:39', '13:40:45', '14:11:56', 631, 810); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:40:18', '13:40:21', '14:17:29', 627, 811); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:41:25', '13:41:42', '14:07:59', 627, 812); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:42:32', '13:42:41', '14:10:30', 627, 813); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:43:00', '13:46:26', '14:00:21', 627, 814); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:44:45', '14:07:59', '14:12:48', 627, 815); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:45:14', '14:12:48', '14:17:13', 627, 816); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:45:48', '13:54:55', '14:06:59', 627, 817); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:46:24', '13:46:50', '14:16:24', 612, 818); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:47:33', '14:00:21', '14:07:41', 627, 819); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:47:36', '13:55:27', '14:02:27', 631, 820); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:48:53', '14:06:59', '14:13:51', 627, 821); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:49:25', '13:49:30', '13:56:04', 612, 822); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:49:25', '14:17:14', '14:31:03', 627, 823); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:50:57', '13:51:00', '14:05:50', 612, 824); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:51:40', '14:07:42', '14:22:01', 627, 825); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:53:13', '13:59:20', '14:16:04', 631, 826); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:55:47', '14:08:51', '14:17:05', 631, 827); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:55:53', '13:56:05', '14:22:00', 612, 828); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:57:04', '14:03:24', '14:14:33', 631, 829); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:57:43', '14:14:33', '14:44:47', 631, 830); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:57:55', '13:59:51', '14:07:16', 612, 831); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:58:18', '14:16:04', '14:18:23', 631, 832); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:59:09', '14:07:17', '14:22:02', 612, 833); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '13:59:50', '14:17:06', '14:32:18', 631, 834); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:02:17', '14:12:10', '15:18:19', 627, 835); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:03:03', '14:18:23', '14:42:04', 631, 836); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:03:39', '14:32:19', '15:40:02', 631, 837); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:05:43', '14:05:51', '14:12:13', 612, 838); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:08:03', '14:31:03', '14:50:03', 627, 839); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:08:13', '14:38:24', '14:40:08', 631, 840); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:08:29', '14:11:57', '15:13:08', 631, 841); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:10:42', '14:20:33', '15:04:34', 627, 842); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:10:59', '14:11:21', '15:15:22', 612, 843); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:11:19', '14:22:01', '14:30:15', 627, 844); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:12:13', '14:12:13', '14:25:34', 612, 845); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:12:30', '14:12:31', '15:15:12', 612, 846); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:16:10', '14:16:11', '15:52:24', 612, 847); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:18:43', '14:40:09', '15:24:59', 631, 848); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:18:57', '14:30:16', '14:48:51', 627, 849); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:20:56', '14:21:02', '14:26:21', 612, 850); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:21:54', '14:22:02', '15:20:33', 612, 851); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:24:26', '14:42:04', '15:04:12', 631, 852); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:25:10', '14:25:35', '14:34:30', 612, 853); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:25:38', '14:26:21', '14:31:26', 612, 854); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:26:42', '14:31:26', '14:33:25', 612, 855); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:27:16', '14:50:03', '15:05:39', 627, 856); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:30:14', '14:33:27', '14:57:28', 612, 857); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:30:17', '14:39:57', '14:48:26', 627, 858); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:30:40', '14:31:02', '15:10:59', 631, 859); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:31:55', '14:44:47', '15:30:01', 631, 860); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:32:20', '14:34:30', '14:41:41', 612, 861); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:34:32', '14:41:41', '15:25:08', 612, 862); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:45:00', '14:48:26', '14:57:14', 627, 863); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:53:35', '15:05:39', '15:07:01', 627, 864); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:55:24', '15:07:01', '15:54:58', 627, 865); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '14:57:08', '14:57:28', '15:15:33', 612, 866); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:00:54', '15:04:12', '15:16:43', 631, 867); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:02:41', '15:04:34', '15:15:54', 627, 868); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:06:14', '15:08:39', '15:21:06', 612, 869); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:06:34', '15:06:36', '15:12:14', 627, 870); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:09:14', '15:18:20', '15:20:54', 627, 871); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:10:11', '15:15:55', '15:38:11', 627, 872); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:10:45', '15:10:59', '16:02:53', 631, 873); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:12:28', '15:13:08', '16:03:10', 631, 874); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:14:24', '15:15:23', '15:26:47', 612, 875); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:14:38', '15:15:13', '15:26:37', 612, 876); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:15:02', '15:15:33', '15:34:58', 612, 877); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:16:09', '15:16:43', '15:37:48', 631, 878); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:16:58', '15:20:34', '15:45:42', 612, 879); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:17:36', '15:21:06', '15:50:17', 612, 880); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:20:53', '15:20:56', '15:24:42', 627, 881); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:21:06', '15:24:59', '15:41:12', 631, 882); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:21:14', '15:25:09', '15:34:04', 612, 883); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:21:45', '15:34:05', '15:46:00', 612, 884); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:22:12', '15:26:47', '15:52:59', 612, 885); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:29:04', '15:30:01', '15:38:38', 631, 886); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:29:32', '15:39:08', '15:49:03', 627, 887); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:30:12', '15:37:43', '15:39:08', 627, 888); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:33:55', '15:37:48', '16:03:53', 631, 889); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:34:18', '15:34:59', '15:45:46', 612, 890); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:35:52', '15:38:12', '15:55:00', 627, 891); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:35:56', '15:38:43', '16:04:12', 631, 892); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:36:14', '15:40:02', '15:44:38', 631, 893); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:36:32', '15:41:12', '15:47:12', 631, 894); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:37:01', '15:45:42', '15:51:50', 612, 895); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:39:50', '15:44:38', '15:53:34', 631, 896); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:45:51', '15:46:00', '15:53:04', 612, 897); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:46:19', '15:47:26', '15:54:37', 612, 898); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:47:31', '15:49:04', '15:59:47', 627, 899); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:51:44', '15:51:51', '15:53:10', 612, 900); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-06', '15:54:50', '15:55:10', '15:59:41', 612, 901); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '08:44:41', '08:45:27', '09:14:47', 612, 902); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:00:17', '09:01:09', '09:16:51', 627, 903); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:00:26', '09:00:31', '09:42:27', 631, 904); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:00:48', '09:01:40', '09:19:59', 627, 905); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:01:05', '09:01:11', '10:12:47', 631, 906); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:01:40', '09:01:46', '09:13:56', 627, 907); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:03:25', '09:03:26', '09:26:03', 627, 908); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:10:04', '09:16:51', '09:25:54', 627, 909); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:10:19', '09:23:46', '09:26:07', 627, 910); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:13:44', '09:13:57', '09:24:29', 627, 911); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:16:29', '09:19:25', '10:41:56', 631, 912); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:17:17', '09:17:24', '09:41:43', 631, 913); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:20:36', '09:20:37', '10:19:29', 612, 914); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:22:34', '09:24:30', '09:42:10', 627, 915); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:23:10', '09:42:11', '09:54:14', 627, 916); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:29:25', '09:54:15', '09:57:03', 627, 917); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:34:07', '09:34:09', '10:03:49', 612, 918); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:34:55', '09:57:04', '10:21:53', 627, 919); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:35:20', '09:35:24', '09:47:03', 627, 920); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:41:12', '09:41:43', '11:37:33', 631, 921); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:41:58', '09:42:27', '10:24:03', 631, 922); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:43:59', '09:44:07', '11:06:00', 627, 923); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:49:26', '09:49:35', '10:06:05', 627, 924); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:52:09', '09:52:12', '10:32:47', 612, 925); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:52:44', '09:53:01', '10:50:32', 612, 926); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:57:05', '09:57:15', '10:06:13', 627, 927); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '09:58:06', '10:03:49', '10:18:37', 612, 928); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:02:15', '10:02:24', '10:14:41', 627, 929); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:04:18', '10:07:54', '10:19:29', 612, 930); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:04:45', '10:06:05', '10:09:37', 627, 931); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:12:40', '10:21:54', '10:58:46', 627, 932); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:15:41', '10:15:56', '10:56:01', 627, 933); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:17:47', '10:17:55', '10:28:25', 627, 934); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:18:07', '10:18:38', '11:18:58', 612, 935); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:19:20', '10:19:29', '10:54:13', 612, 936); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:20:07', '10:23:49', '11:15:22', 627, 937); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:22:51', '10:28:17', '12:48:19', 612, 938); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:23:05', '10:29:16', '10:40:37', 627, 939); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:24:54', '10:24:55', '10:37:01', 631, 940); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:25:09', '10:27:54', '10:49:40', 631, 941); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:28:31', '10:28:56', '10:42:50', 612, 942); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:31:11', '10:33:21', '11:36:56', 612, 943); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:33:54', '10:42:50', '10:58:42', 612, 944); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:34:40', '10:40:37', '11:00:42', 627, 945); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:38:02', '10:38:03', '11:06:13', 631, 946); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:39:57', '11:00:42', '11:01:42', 627, 947); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:40:47', '11:01:42', '11:04:32', 627, 948); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:40:57', '10:49:41', '10:53:16', 631, 949); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:47:24', '10:53:29', '10:59:58', 631, 950); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:50:33', '10:50:44', '11:18:17', 612, 951); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:51:31', '10:58:46', '11:36:13', 627, 952); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:54:06', '10:54:14', '11:36:07', 612, 953); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '10:58:38', '10:58:43', '11:19:43', 612, 954); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:00:12', '11:00:19', '11:42:02', 631, 955); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:02:51', '11:06:14', '11:29:57', 631, 956); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:12:19', '11:12:23', '12:15:50', 627, 957); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:12:45', '11:17:54', '11:21:02', 627, 958); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:17:22', '11:19:44', '11:24:56', 612, 959); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:18:07', '11:18:18', '11:41:21', 612, 960); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:18:32', '11:18:58', '11:21:13', 612, 961); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:20:43', '11:21:13', '11:52:24', 612, 962); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:22:08', '11:23:57', '11:46:49', 627, 963); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:28:49', '11:32:39', '12:03:35', 627, 964); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:28:59', '11:29:58', '11:43:24', 631, 965); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:29:14', '11:29:17', '11:54:44', 631, 966); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:31:08', '11:32:48', '11:46:09', 627, 967); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:32:03', '11:36:14', '11:59:14', 627, 968); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:33:38', '11:37:34', '12:00:19', 631, 969); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:34:33', '11:36:56', '11:48:14', 612, 970); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:35:21', '11:35:28', '11:45:29', 627, 971); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:35:43', '11:38:17', '12:45:40', 612, 972); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:36:01', '11:36:07', '12:05:52', 612, 973); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:37:09', '11:42:02', '12:28:37', 631, 974); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:38:25', '11:43:25', '11:52:48', 631, 975); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:39:54', '11:42:10', '12:57:01', 612, 976); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:41:01', '11:48:14', '12:49:49', 612, 977); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:44:40', '11:45:30', '11:50:59', 627, 978); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:47:26', '11:54:44', '12:22:38', 631, 979); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:48:21', '11:52:48', '13:31:38', 631, 980); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:50:31', '11:52:24', '11:58:54', 612, 981); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:51:18', '11:59:14', '12:11:27', 627, 982); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:56:17', '12:11:28', '12:34:40', 627, 983); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:57:13', '12:34:41', '12:37:55', 627, 984); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:57:19', '11:58:55', '12:09:48', 612, 985); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '11:58:07', '12:00:20', '12:09:53', 631, 986); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:00:58', '12:01:00', '12:08:54', 627, 987); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:04:25', '12:09:53', '12:18:46', 631, 988); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:05:31', '12:13:24', '12:34:16', 627, 989); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:05:40', '12:05:52', '12:30:43', 612, 990); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:05:44', '12:14:36', '12:40:16', 631, 991); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:08:29', '12:08:55', '12:57:11', 627, 992); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:09:06', '12:10:48', '12:15:10', 627, 993); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:09:40', '12:09:52', '12:12:20', 612, 994); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:09:40', '12:17:17', '12:30:14', 627, 995); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:09:49', '12:37:56', '12:40:43', 627, 996); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:11:52', '12:12:20', '12:46:13', 612, 997); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:17:58', '12:18:46', '12:53:30', 631, 998); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:19:11', '12:22:15', '12:57:17', 627, 999); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:19:21', '12:40:43', '12:42:28', 627, 1000); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:19:27', '12:42:31', '12:50:16', 627, 1001); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:20:03', '12:50:16', '13:00:54', 627, 1002); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:28:37', '12:28:48', '12:35:58', 631, 1003); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:28:55', '12:30:24', '13:09:19', 631, 1004); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:30:06', '12:35:58', '12:53:53', 631, 1005); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:30:36', '12:30:44', '12:37:41', 612, 1006); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:31:27', '12:40:16', '12:47:07', 631, 1007); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:33:26', '12:37:41', '13:42:48', 612, 1008); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:34:05', '12:47:07', '12:59:01', 631, 1009); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:35:22', '12:53:30', '13:12:10', 631, 1010); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:36:44', '12:36:49', '13:13:00', 627, 1011); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:37:42', '13:00:54', '13:05:17', 627, 1012); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:42:26', '12:53:54', '14:32:33', 631, 1013); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:42:41', '12:42:48', '13:16:28', 627, 1014); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:42:49', '12:43:26', '12:53:08', 612, 1015); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:43:30', '12:45:40', '13:42:35', 612, 1016); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:44:01', '12:46:13', '12:51:42', 612, 1017); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:45:24', '12:48:19', '14:07:23', 612, 1018); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:47:56', '12:48:01', '16:25:03', 631, 1019); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:48:45', '12:49:49', '13:01:08', 612, 1020); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:49:18', '12:59:02', '13:09:21', 631, 1021); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:51:37', '12:57:01', '13:08:57', 612, 1022); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:52:43', '13:00:12', '13:06:13', 627, 1023); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:53:36', '13:06:14', '13:33:01', 627, 1024); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:55:23', '12:57:17', '13:06:57', 627, 1025); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '12:58:56', '13:06:57', '13:18:39', 627, 1026); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:00:05', '13:09:20', '13:24:07', 631, 1027); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:00:11', '13:16:28', '13:25:30', 627, 1028); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:02:12', '13:18:39', '13:21:53', 627, 1029); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:05:48', '13:05:53', '14:06:50', 612, 1030); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:08:32', '13:09:22', '13:25:35', 631, 1031); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:08:47', '13:08:57', '13:52:28', 612, 1032); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:09:36', '13:12:10', '13:22:02', 631, 1033); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:11:31', '13:19:44', '14:06:43', 627, 1034); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:21:56', '13:22:02', '13:41:56', 631, 1035); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:22:17', '13:24:07', '14:06:59', 631, 1036); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:23:43', '13:33:01', '13:58:06', 627, 1037); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:25:41', '13:25:51', '13:46:49', 627, 1038); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:31:04', '13:31:38', '13:34:01', 631, 1039); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:31:38', '13:31:49', '14:14:13', 612, 1040); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:32:28', '13:34:02', '14:13:53', 631, 1041); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:34:05', '13:37:48', '14:05:47', 631, 1042); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:34:36', '13:36:09', '13:40:46', 627, 1043); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:35:26', '13:38:56', '13:48:32', 627, 1044); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:36:36', '13:41:57', '13:46:23', 631, 1045); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:40:51', '13:43:33', '14:00:38', 612, 1046); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:41:58', '13:42:48', '14:11:19', 612, 1047); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:43:57', '13:46:23', '13:58:39', 631, 1048); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:44:17', '13:52:28', '14:10:23', 612, 1049); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:44:48', '13:46:49', '13:52:07', 627, 1050); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:47:28', '13:49:16', '14:26:52', 627, 1051); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:49:38', '13:49:39', '14:38:03', 631, 1052); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:51:31', '13:51:37', '13:56:53', 627, 1053); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:54:20', '13:58:39', '14:19:10', 631, 1054); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:55:25', '13:58:07', '14:11:57', 627, 1055); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '13:55:50', '14:05:47', '14:27:03', 631, 1056); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:00:30', '14:00:38', '14:11:19', 612, 1057); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:03:58', '14:04:04', '14:15:59', 627, 1058); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:05:04', '14:06:59', '15:14:19', 631, 1059); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:05:45', '14:10:35', '14:31:56', 627, 1060); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:07:06', '14:11:58', '14:21:06', 627, 1061); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:07:07', '14:13:54', '14:18:57', 631, 1062); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:07:15', '14:07:23', '14:27:47', 612, 1063); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:07:38', '14:18:58', '14:54:51', 631, 1064); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:08:37', '14:08:41', '14:26:55', 612, 1065); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:10:00', '14:19:11', '14:45:57', 631, 1066); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:10:08', '14:10:24', '14:16:58', 612, 1067); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:10:40', '14:11:19', '14:20:25', 612, 1068); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:11:13', '14:11:19', '14:19:37', 612, 1069); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:13:54', '14:14:14', '14:48:35', 612, 1070); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:15:29', '14:16:58', '14:51:23', 612, 1071); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:16:12', '14:16:20', '14:18:36', 627, 1072); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:16:33', '14:20:25', '14:52:07', 612, 1073); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:17:48', '14:21:06', '14:49:39', 627, 1074); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:18:32', '14:27:03', '15:02:53', 631, 1075); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:19:25', '14:19:27', '14:27:45', 627, 1076); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:19:30', '14:19:38', '16:00:27', 612, 1077); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:20:08', '14:20:22', '14:32:10', 627, 1078); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:22:39', '14:27:46', '14:34:09', 627, 1079); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:24:08', '14:32:33', '14:37:53', 631, 1080); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:25:25', '14:26:56', '14:41:33', 612, 1081); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:27:29', '14:27:48', '14:36:42', 612, 1082); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:28:46', '14:31:57', '14:33:36', 627, 1083); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:29:07', '14:49:40', '14:52:25', 627, 1084); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:33:26', '14:33:28', '14:51:29', 612, 1085); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:35:03', '14:36:43', '15:02:16', 612, 1086); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:36:19', '14:37:53', '14:54:23', 631, 1087); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:36:41', '14:38:59', '14:50:43', 627, 1088); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:36:44', '14:38:03', '15:03:56', 631, 1089); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:37:17', '14:41:34', '14:50:50', 612, 1090); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:37:54', '14:52:26', '15:48:22', 627, 1091); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:38:08', '14:46:17', '14:51:17', 631, 1092); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:43:37', '14:44:31', '14:46:31', 627, 1093); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:44:11', '14:50:51', '14:59:51', 612, 1094); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:45:02', '14:51:17', '15:04:26', 631, 1095); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:48:26', '14:48:35', '16:00:27', 612, 1096); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:49:40', '14:51:24', '15:00:51', 612, 1097); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:49:50', '14:54:45', '15:16:20', 631, 1098); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:50:20', '14:55:10', '15:46:16', 631, 1099); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:51:57', '14:56:47', '15:09:49', 627, 1100); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:52:00', '14:52:07', '15:12:54', 612, 1101); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:54:31', '15:02:54', '16:21:55', 631, 1102); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:56:42', '14:59:23', '15:07:37', 627, 1103); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:57:25', '15:02:17', '16:13:53', 627, 1104); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:57:27', '15:05:23', '15:08:26', 631, 1105); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '14:58:58', '14:59:52', '15:11:12', 612, 1106); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:00:31', '15:00:51', '15:08:54', 612, 1107); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:00:35', '15:07:37', '15:15:57', 627, 1108); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:01:09', '15:02:16', '15:29:30', 612, 1109); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:01:12', '15:16:00', '15:19:22', 627, 1110); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:02:19', '15:19:22', '15:30:43', 627, 1111); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:02:24', '15:02:34', '15:08:14', 612, 1112); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:02:49', '15:08:27', '15:28:48', 631, 1113); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:04:35', '15:08:14', '15:36:51', 612, 1114); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:07:04', '15:16:20', '15:25:06', 631, 1115); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:07:09', '15:08:54', '15:21:11', 612, 1116); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:08:19', '15:14:19', '16:04:45', 631, 1117); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:09:29', '15:09:50', '15:26:15', 627, 1118); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:11:04', '15:20:52', '15:31:49', 627, 1119); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:11:05', '15:11:12', '15:55:39', 612, 1120); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:11:32', '15:30:43', '15:41:08', 627, 1121); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:12:33', '15:12:54', '16:00:09', 612, 1122); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:20:12', '15:21:13', '15:28:41', 627, 1123); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:21:04', '15:21:12', '15:30:50', 612, 1124); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:23:18', '15:26:15', '15:36:17', 627, 1125); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:23:33', '15:25:06', '16:22:56', 631, 1126); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:24:16', '15:29:30', '15:39:25', 612, 1127); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:25:09', '15:28:48', '15:39:35', 631, 1128); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:30:40', '15:30:51', '15:41:35', 612, 1129); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:33:38', '15:33:43', '15:40:50', 627, 1130); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:35:46', '15:41:36', '15:48:22', 612, 1131); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:37:17', '15:39:25', '15:59:42', 612, 1132); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:39:10', '15:39:35', '15:56:34', 631, 1133); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:40:14', '15:41:46', '16:24:54', 631, 1134); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:42:20', '15:46:16', '15:55:47', 631, 1135); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:43:42', '15:44:09', '15:50:10', 627, 1136); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:46:26', '15:48:22', '15:54:59', 627, 1137); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:48:08', '15:48:22', '15:52:37', 612, 1138); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:48:36', '15:50:10', '15:52:47', 627, 1139); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:49:13', '15:52:48', '15:57:03', 627, 1140); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:50:39', '15:55:47', '15:59:33', 631, 1141); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:52:06', '15:54:59', '16:13:50', 627, 1142); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:52:21', '15:56:34', '16:22:34', 631, 1143); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:52:49', '15:59:33', '16:22:43', 631, 1144); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-07', '15:55:46', '15:57:03', '16:00:57', 627, 1145); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:00:36', '09:00:44', '10:00:21', 631, 1146); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:05:28', '09:05:37', '09:27:21', 631, 1147); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:16:16', '09:16:20', '09:23:45', 627, 1148); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:20:14', '09:21:00', '09:26:37', 631, 1149); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:22:24', '09:22:30', '10:28:28', 627, 1150); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:24:58', '09:26:37', '09:33:56', 631, 1151); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:26:24', '09:27:21', '09:50:37', 631, 1152); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:26:49', '09:26:49', '10:07:33', 612, 1153); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:33:37', '09:33:40', '09:54:36', 627, 1154); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:34:07', '09:34:09', '11:11:27', 612, 1155); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:40:22', '09:40:24', '09:53:53', 627, 1156); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:43:52', '09:43:57', '09:53:06', 631, 1157); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:44:00', '09:44:07', '10:27:03', 627, 1158); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:48:15', '09:53:54', '09:55:59', 627, 1159); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:52:17', '09:56:00', '10:05:25', 627, 1160); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:53:06', '09:53:07', '10:20:54', 627, 1161); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:55:25', '09:55:28', '09:57:35', 631, 1162); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '09:56:49', '09:57:01', '10:20:32', 612, 1163); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:01:02', '10:01:02', '10:41:06', 631, 1164); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:01:09', '10:05:26', '10:18:00', 627, 1165); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:04:07', '10:04:08', '10:11:02', 631, 1166); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:04:34', '10:11:02', '10:37:38', 631, 1167); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:05:45', '10:07:03', '12:35:12', 631, 1168); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:07:18', '10:07:34', '11:01:12', 612, 1169); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:08:35', '10:18:00', '10:58:22', 627, 1170); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:11:55', '10:12:02', '11:39:59', 627, 1171); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:15:23', '10:15:27', '10:24:12', 631, 1172); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:18:59', '10:20:32', '11:00:37', 612, 1173); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:19:16', '10:27:03', '10:41:36', 627, 1174); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:20:45', '10:20:54', '10:56:10', 627, 1175); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:26:19', '10:26:38', '11:07:45', 631, 1176); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:28:13', '10:28:28', '10:34:32', 627, 1177); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:31:57', '10:34:35', '10:39:10', 627, 1178); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:33:42', '10:33:50', '13:10:53', 612, 1179); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:35:12', '10:39:10', '11:20:47', 627, 1180); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:37:27', '10:37:39', '11:41:41', 631, 1181); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:45:05', '10:45:08', '11:32:00', 631, 1182); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:57:00', '10:57:59', '11:03:22', 631, 1183); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:57:12', '10:57:17', '11:10:18', 627, 1184); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '10:59:29', '10:59:37', '11:51:12', 612, 1185); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:01:07', '11:01:11', '12:43:51', 612, 1186); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:05:21', '11:05:30', '11:25:57', 631, 1187); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:07:36', '11:07:46', '12:13:27', 631, 1188); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:11:06', '11:11:27', '11:59:58', 612, 1189); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:11:28', '11:11:29', '11:28:14', 627, 1190); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:11:42', '11:11:43', '12:09:48', 612, 1191); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:17:18', '11:17:28', '12:39:02', 612, 1192); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:17:24', '11:20:48', '12:06:55', 627, 1193); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:23:15', '11:23:23', '11:36:01', 627, 1194); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:27:27', '11:27:28', '12:02:34', 631, 1195); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:29:20', '11:29:25', '11:42:01', 627, 1196); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:30:51', '11:36:02', '12:03:14', 627, 1197); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:31:53', '11:32:00', '11:47:51', 631, 1198); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:32:18', '11:35:02', '11:43:02', 631, 1199); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:34:17', '11:42:02', '11:57:46', 627, 1200); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:40:39', '11:41:41', '11:45:18', 631, 1201); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:41:48', '11:43:02', '12:22:00', 631, 1202); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:44:08', '11:45:19', '12:35:22', 631, 1203); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:50:18', '11:57:46', '12:11:35', 627, 1204); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:50:46', '11:50:55', '12:05:21', 627, 1205); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:51:01', '11:51:12', '11:59:50', 612, 1206); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:58:03', '12:11:35', '12:22:31', 627, 1207); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:59:29', '11:59:58', '12:08:52', 612, 1208); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '11:59:46', '11:59:50', '12:38:39', 612, 1209); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:01:51', '12:01:52', '12:17:56', 631, 1210); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:02:11', '12:02:34', '12:27:14', 631, 1211); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:03:43', '12:06:55', '13:36:15', 627, 1212); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:05:02', '12:05:03', '12:30:28', 627, 1213); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:06:46', '12:22:57', '12:24:01', 627, 1214); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:08:23', '12:08:52', '12:48:07', 612, 1215); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:09:41', '12:09:48', '12:14:49', 612, 1216); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:12:38', '12:13:28', '13:45:08', 631, 1217); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:14:06', '12:14:49', '12:33:38', 612, 1218); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:14:36', '12:24:10', '12:42:14', 627, 1219); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:18:06', '12:18:07', '12:38:00', 631, 1220); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:19:25', '12:22:00', '12:43:04', 631, 1221); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:21:32', '12:27:14', '12:34:10', 631, 1222); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:30:53', '12:36:32', '12:41:43', 627, 1223); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:31:30', '12:35:22', '12:46:20', 631, 1224); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:33:49', '12:33:49', '13:05:09', 612, 1225); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:33:49', '12:35:13', '13:00:58', 631, 1226); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:35:33', '12:38:00', '12:46:16', 631, 1227); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:39:12', '12:39:14', '13:00:52', 612, 1228); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:40:59', '12:43:04', '13:35:30', 631, 1229); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:41:07', '12:41:12', '12:49:54', 612, 1230); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:45:03', '12:46:16', '13:50:52', 631, 1231); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:45:41', '12:45:50', '13:10:28', 627, 1232); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:45:45', '12:46:20', '13:22:07', 631, 1233); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:47:56', '12:48:07', '12:49:07', 612, 1234); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:48:29', '12:49:48', '13:59:56', 612, 1235); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:48:52', '12:49:02', '14:26:08', 612, 1236); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:49:12', '12:49:54', '13:08:18', 612, 1237); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:50:20', '12:50:49', '13:20:04', 612, 1238); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:50:20', '12:54:20', '13:20:45', 627, 1239); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '12:54:42', '13:00:58', '13:43:19', 631, 1240); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:00:35', '13:00:53', '13:16:32', 612, 1241); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:02:42', '13:05:29', '13:11:11', 612, 1242); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:07:37', '13:08:19', '13:12:52', 612, 1243); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:08:41', '13:11:11', '13:48:55', 612, 1244); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:09:14', '13:12:52', '13:49:42', 612, 1245); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:09:53', '13:09:57', '13:24:08', 631, 1246); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:15:18', '13:20:45', '13:46:21', 627, 1247); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:15:32', '13:16:32', '14:46:10', 612, 1248); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:19:54', '13:20:04', '14:01:23', 612, 1249); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:20:10', '13:20:19', '13:52:23', 612, 1250); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:20:43', '13:22:07', '13:28:43', 631, 1251); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:22:02', '13:24:08', '13:41:26', 631, 1252); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:24:50', '13:32:54', '13:51:24', 627, 1253); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:31:59', '13:33:18', '13:37:26', 627, 1254); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:32:31', '13:37:27', '13:48:11', 627, 1255); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:33:14', '13:33:18', '13:58:43', 627, 1256); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:35:12', '13:35:30', '13:45:13', 631, 1257); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:35:33', '13:36:15', '14:19:03', 627, 1258); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:40:20', '13:41:26', '14:06:10', 631, 1259); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:41:48', '13:44:36', '13:57:43', 631, 1260); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:42:14', '13:46:21', '13:52:03', 627, 1261); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:42:30', '13:43:58', '14:51:00', 631, 1262); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:43:29', '13:45:14', '14:19:29', 631, 1263); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:44:00', '13:50:52', '14:41:01', 631, 1264); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:44:17', '13:45:08', '15:41:50', 631, 1265); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:46:14', '13:51:24', '14:27:42', 627, 1266); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:46:21', '13:55:09', '14:54:17', 631, 1267); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:47:43', '13:54:37', '14:05:00', 627, 1268); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:48:53', '13:48:55', '13:59:24', 612, 1269); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:49:42', '13:57:43', '14:09:21', 631, 1270); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:49:58', '13:50:03', '14:21:06', 612, 1271); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:54:17', '13:59:25', '14:17:57', 612, 1272); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:54:50', '13:54:52', '14:06:21', 627, 1273); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:55:03', '13:55:04', '14:02:42', 612, 1274); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:57:42', '13:57:44', '14:05:24', 627, 1275); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '13:59:37', '13:59:56', '14:10:04', 612, 1276); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:00:03', '14:01:23', '14:20:17', 612, 1277); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:00:36', '14:05:25', '14:16:57', 627, 1278); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:02:55', '14:06:10', '14:32:27', 631, 1279); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:05:37', '14:09:21', '14:40:43', 631, 1280); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:06:54', '14:10:05', '14:26:09', 612, 1281); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:07:01', '14:17:01', '14:20:38', 627, 1282); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:13:42', '14:19:29', '14:41:09', 631, 1283); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:17:44', '14:17:58', '14:32:40', 612, 1284); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:19:56', '14:20:17', '14:53:16', 612, 1285); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:20:33', '14:21:07', '14:25:59', 612, 1286); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:21:11', '14:21:14', '14:58:20', 627, 1287); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:26:01', '14:26:09', '15:09:32', 612, 1288); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:27:00', '14:31:39', '15:05:40', 627, 1289); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:28:15', '14:34:34', '14:36:10', 627, 1290); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:30:41', '14:30:50', '14:50:24', 612, 1291); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:31:37', '14:32:30', '14:52:48', 631, 1292); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:32:40', '14:32:44', '14:47:20', 612, 1293); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:33:29', '14:36:11', '14:48:28', 627, 1294); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:33:30', '14:33:33', '14:44:37', 612, 1295); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:34:23', '14:35:35', '14:39:46', 627, 1296); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:35:27', '14:39:48', '14:46:08', 627, 1297); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:37:26', '14:46:08', '14:48:16', 627, 1298); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:38:17', '14:38:19', '14:59:32', 612, 1299); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:39:21', '14:41:10', '14:58:59', 631, 1300); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:39:40', '14:41:22', '14:50:00', 631, 1301); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:39:52', '14:48:16', '14:50:36', 627, 1302); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:40:18', '14:50:01', '15:31:43', 631, 1303); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:43:46', '14:52:49', '15:39:20', 631, 1304); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:44:26', '14:46:14', '15:03:24', 627, 1305); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:44:40', '14:54:17', '15:11:45', 631, 1306); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:44:59', '14:50:37', '14:53:17', 627, 1307); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:45:19', '14:53:17', '15:25:55', 627, 1308); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:45:51', '14:46:11', '15:12:34', 612, 1309); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:45:57', '14:48:29', '15:03:51', 627, 1310); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:48:34', '14:59:11', '15:01:37', 627, 1311); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:48:35', '14:48:40', '14:51:39', 612, 1312); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:49:27', '14:50:25', '15:07:30', 612, 1313); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:49:38', '14:51:01', '15:41:56', 631, 1314); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:50:19', '14:51:39', '15:06:41', 612, 1315); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:51:30', '15:01:38', '16:02:58', 627, 1316); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:52:53', '14:53:16', '15:18:34', 612, 1317); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:52:59', '14:58:20', '15:01:07', 627, 1318); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:56:01', '15:06:16', '15:44:32', 627, 1319); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:58:28', '14:58:59', '15:23:17', 631, 1320); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:59:17', '14:59:32', '15:34:26', 612, 1321); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '14:59:44', '15:06:42', '15:23:55', 612, 1322); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:00:20', '15:01:07', '15:18:08', 627, 1323); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:01:48', '15:12:34', '16:44:36', 612, 1324); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:05:23', '15:18:35', '15:19:53', 612, 1325); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:07:22', '15:07:31', '15:31:44', 612, 1326); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:07:47', '15:09:32', '16:44:29', 612, 1327); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:09:24', '15:19:53', '15:40:39', 612, 1328); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:09:50', '15:18:36', '16:23:27', 631, 1329); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:10:09', '15:11:46', '15:18:36', 631, 1330); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:12:17', '15:23:56', '15:32:16', 612, 1331); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:15:44', '15:16:04', '15:32:19', 627, 1332); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:15:46', '15:23:18', '15:55:49', 631, 1333); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:16:50', '15:18:08', '16:26:43', 627, 1334); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:22:37', '15:31:43', '16:23:22', 631, 1335); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:26:39', '15:26:46', '16:08:14', 627, 1336); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:27:04', '15:33:11', '15:40:11', 631, 1337); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:28:27', '15:32:16', '16:44:36', 612, 1338); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:31:14', '15:39:21', '16:23:25', 631, 1339); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:31:36', '15:31:44', '15:40:38', 612, 1340); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:34:09', '15:34:27', '16:44:36', 612, 1341); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:38:40', '15:43:02', '16:23:25', 627, 1342); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:40:32', '15:40:39', '16:20:33', 612, 1343); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:40:43', '15:44:55', '16:12:42', 627, 1344); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:41:32', '15:41:51', '16:21:15', 631, 1345); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:41:40', '15:41:56', '16:26:35', 631, 1346); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:44:58', '16:02:58', '16:12:16', 627, 1347); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:46:56', '16:03:24', '16:20:37', 627, 1348); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:48:34', '15:55:49', '16:08:33', 631, 1349); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-08', '15:57:47', '16:08:15', '16:22:37', 627, 1350); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '09:00:33', '09:01:26', '09:19:48', 631, 1351); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '09:10:52', '09:11:18', '09:59:31', 612, 1352); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '09:14:39', '09:14:48', '09:35:16', 631, 1353); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '09:32:05', '09:32:05', '09:56:43', 631, 1354); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '09:32:25', '09:35:15', '09:42:36', 631, 1355); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '09:35:06', '09:35:45', '11:28:56', 631, 1356); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '09:38:02', '09:39:01', '10:06:18', 627, 1357); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '09:45:58', '09:46:07', '09:54:31', 631, 1358); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '09:46:17', '09:46:18', '09:58:57', 627, 1359); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '09:46:51', '09:47:33', '10:08:20', 627, 1360); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '09:46:57', '09:48:40', '10:36:36', 631, 1361); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '09:52:02', '09:52:02', '10:13:30', 631, 1362); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '09:53:15', '09:54:31', '10:14:29', 631, 1363); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '09:55:10', '09:55:13', '11:03:14', 612, 1364); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '09:59:23', '09:59:31', '11:18:11', 612, 1365); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:00:49', '10:00:54', '10:10:27', 612, 1366); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:03:25', '10:03:26', '11:18:09', 612, 1367); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:04:07', '10:06:21', '11:07:17', 627, 1368); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:04:19', '10:04:24', '10:44:10', 631, 1369); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:05:43', '10:10:27', '10:13:35', 612, 1370); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:09:42', '10:12:15', '10:31:28', 627, 1371); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:10:45', '10:13:30', '10:32:03', 631, 1372); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:13:47', '10:14:29', '10:46:57', 631, 1373); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:25:37', '10:25:46', '10:44:57', 627, 1374); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:29:09', '10:32:03', '11:53:35', 631, 1375); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:31:01', '10:31:29', '10:40:03', 627, 1376); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:34:05', '10:40:03', '10:59:41', 627, 1377); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:34:17', '10:36:36', '12:05:27', 631, 1378); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:34:56', '10:35:26', '10:44:38', 627, 1379); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:36:54', '10:44:11', '11:02:08', 631, 1380); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:39:02', '10:39:06', '10:59:02', 612, 1381); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:44:12', '10:44:17', '10:48:33', 612, 1382); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:47:57', '10:54:46', '10:57:34', 627, 1383); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '10:52:21', '10:52:28', '11:04:36', 631, 1384); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:03:07', '11:03:14', '11:17:01', 612, 1385); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:03:11', '11:03:19', '11:22:36', 631, 1386); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:06:55', '11:07:17', '11:13:15', 627, 1387); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:11:26', '11:13:16', '11:27:54', 627, 1388); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:12:18', '11:12:25', '11:21:05', 627, 1389); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:15:38', '11:15:56', '11:35:57', 627, 1390); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:16:09', '11:20:05', '11:38:31', 627, 1391); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:16:54', '11:17:01', '11:36:25', 612, 1392); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:17:40', '11:17:43', '12:05:18', 612, 1393); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:18:02', '11:18:11', '11:42:45', 612, 1394); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:18:21', '11:18:29', '11:48:32', 612, 1395); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:19:17', '11:20:57', '11:43:40', 627, 1396); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:19:45', '11:21:05', '11:32:26', 627, 1397); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:20:03', '11:20:07', '11:25:40', 612, 1398); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:20:49', '11:22:36', '11:54:14', 631, 1399); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:22:19', '11:27:54', '11:33:18', 627, 1400); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:24:56', '11:39:27', '12:05:31', 627, 1401); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:25:02', '11:33:18', '11:39:27', 627, 1402); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:25:10', '11:25:40', '12:03:46', 612, 1403); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:27:54', '11:28:56', '12:01:10', 631, 1404); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:30:59', '11:33:29', '12:12:18', 631, 1405); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:31:59', '12:01:11', '12:37:40', 631, 1406); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:35:33', '11:36:25', '11:43:33', 612, 1407); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:36:29', '11:36:39', '11:54:30', 627, 1408); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:40:59', '11:41:09', '11:42:58', 627, 1409); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:41:48', '11:43:33', '12:51:26', 612, 1410); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:42:14', '11:48:32', '13:12:02', 612, 1411); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:42:22', '11:42:58', '11:58:28', 627, 1412); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:42:38', '11:42:45', '11:52:55', 612, 1413); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:44:36', '11:52:55', '11:55:00', 612, 1414); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:44:57', '11:46:32', '12:02:39', 627, 1415); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:46:13', '11:51:27', '12:01:11', 627, 1416); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:47:10', '11:54:31', '12:10:14', 627, 1417); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:50:03', '12:05:31', '12:09:55', 627, 1418); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:52:09', '11:53:35', '13:07:39', 631, 1419); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:52:40', '11:52:41', '12:02:07', 612, 1420); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:53:59', '11:54:14', '12:08:17', 631, 1421); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:54:54', '11:55:00', '12:18:39', 612, 1422); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:55:03', '11:55:06', '12:25:40', 627, 1423); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '11:55:56', '12:01:11', '12:02:41', 627, 1424); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:00:35', '12:02:39', '12:16:56', 627, 1425); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:03:39', '12:03:46', '12:44:00', 612, 1426); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:04:20', '12:04:29', '12:05:59', 627, 1427); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:04:33', '12:09:55', '12:28:18', 627, 1428); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:04:55', '12:05:27', '12:44:30', 631, 1429); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:05:13', '12:05:18', '12:25:16', 627, 1430); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:05:26', '12:05:30', '13:00:56', 612, 1431); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:11:02', '12:11:08', '12:44:10', 631, 1432); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:14:22', '12:14:23', '12:22:56', 627, 1433); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:14:30', '12:17:35', '12:44:34', 612, 1434); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:14:50', '12:16:06', '12:37:22', 627, 1435); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:16:49', '12:19:16', '12:38:38', 627, 1436); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:17:55', '12:17:55', '13:03:49', 627, 1437); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:18:34', '12:18:39', '12:46:28', 612, 1438); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:19:01', '12:19:10', '15:20:29', 627, 1439); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:19:53', '12:22:57', '12:49:10', 627, 1440); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:26:55', '12:27:00', '13:13:57', 631, 1441); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:27:27', '12:28:18', '12:54:17', 627, 1442); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:30:11', '12:30:48', '12:37:08', 631, 1443); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:32:27', '12:37:08', '12:53:05', 631, 1444); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:32:28', '12:32:38', '12:51:41', 627, 1445); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:32:58', '12:37:22', '12:51:56', 627, 1446); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:34:09', '12:37:40', '13:14:18', 631, 1447); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:37:09', '12:44:01', '13:08:14', 612, 1448); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:37:19', '12:38:39', '12:57:43', 627, 1449); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:42:20', '12:44:10', '13:50:39', 631, 1450); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:44:42', '12:44:46', '13:13:02', 612, 1451); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:45:22', '12:45:31', '13:48:14', 631, 1452); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:46:01', '12:46:28', '14:06:18', 612, 1453); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:46:58', '12:49:11', '13:06:28', 627, 1454); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:47:45', '12:53:06', '13:00:58', 631, 1455); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:50:09', '12:51:26', '14:10:59', 612, 1456); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:52:24', '12:54:18', '13:09:22', 627, 1457); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:54:41', '13:00:59', '13:18:03', 631, 1458); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:59:03', '13:07:40', '13:47:54', 631, 1459); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '12:59:51', '13:09:22', '13:34:49', 627, 1460); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:00:50', '13:00:57', '13:08:15', 612, 1461); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:06:04', '13:06:08', '13:08:19', 627, 1462); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:08:09', '13:08:14', '13:12:03', 612, 1463); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:12:04', '13:12:04', '14:05:47', 612, 1464); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:13:14', '13:13:57', '13:27:09', 631, 1465); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:13:46', '13:18:03', '13:40:11', 631, 1466); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:13:54', '13:14:18', '13:33:37', 631, 1467); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:21:11', '13:21:22', '13:24:34', 627, 1468); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:21:29', '13:33:37', '15:14:25', 631, 1469); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:23:11', '13:27:09', '13:41:59', 631, 1470); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:24:12', '13:24:20', '13:33:46', 627, 1471); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:25:02', '13:28:28', '13:43:57', 627, 1472); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:31:55', '13:34:49', '13:54:10', 627, 1473); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:33:14', '13:40:11', '14:09:08', 631, 1474); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:36:59', '13:41:59', '14:18:10', 631, 1475); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:41:08', '13:41:13', '14:10:03', 612, 1476); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:41:27', '13:41:28', '14:28:44', 627, 1477); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:41:43', '13:51:41', '13:54:26', 627, 1478); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:43:34', '13:47:54', '14:25:39', 631, 1479); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:44:33', '13:44:36', '14:10:55', 612, 1480); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:45:16', '13:45:23', '14:43:53', 612, 1481); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:50:07', '13:52:57', '14:03:03', 627, 1482); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:50:21', '13:50:40', '14:02:50', 631, 1483); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:52:18', '14:03:24', '14:11:05', 627, 1484); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:53:58', '13:54:10', '14:11:14', 627, 1485); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:54:31', '13:57:45', '14:37:48', 627, 1486); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:58:50', '14:11:15', '14:31:34', 627, 1487); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '13:58:52', '14:02:50', '14:18:42', 631, 1488); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:00:11', '14:31:34', '14:36:13', 627, 1489); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:05:34', '14:05:47', '14:22:46', 612, 1490); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:05:43', '14:36:14', '14:46:07', 627, 1491); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:06:06', '14:06:19', '14:31:30', 612, 1492); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:08:51', '14:09:08', '14:36:02', 631, 1493); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:09:08', '14:10:04', '14:26:07', 612, 1494); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:10:24', '14:11:05', '14:16:07', 627, 1495); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:11:10', '14:11:19', '15:56:40', 612, 1496); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:14:18', '14:14:26', '14:46:05', 612, 1497); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:15:16', '14:16:08', '14:54:17', 627, 1498); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:15:21', '14:18:10', '14:28:49', 631, 1499); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:15:45', '14:22:55', '14:40:41', 627, 1500); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:18:18', '14:22:46', '14:57:06', 612, 1501); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:19:18', '14:28:45', '14:35:18', 627, 1502); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:20:45', '14:35:18', '14:38:40', 627, 1503); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:23:32', '14:23:36', '14:33:09', 612, 1504); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:23:42', '14:25:39', '14:50:12', 631, 1505); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:24:36', '14:38:40', '14:43:02', 627, 1506); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:24:50', '14:31:30', '14:43:53', 612, 1507); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:25:12', '14:25:41', '15:01:07', 631, 1508); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:25:50', '14:26:09', '14:37:27', 612, 1509); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:28:08', '14:28:49', '14:30:49', 631, 1510); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:29:16', '14:30:49', '14:39:15', 631, 1511); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:29:28', '14:36:02', '14:47:46', 631, 1512); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:30:48', '14:39:16', '14:47:02', 631, 1513); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:31:02', '14:46:07', '14:50:58', 627, 1514); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:32:19', '14:33:09', '15:14:27', 612, 1515); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:37:24', '14:37:28', '15:04:00', 612, 1516); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:40:15', '14:50:58', '15:02:26', 627, 1517); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:41:20', '14:47:02', '15:09:17', 631, 1518); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:42:07', '14:47:46', '15:59:51', 631, 1519); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:43:47', '14:43:53', '15:15:10', 612, 1520); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:44:25', '14:44:34', '15:06:08', 612, 1521); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:45:25', '15:14:27', '15:16:31', 612, 1522); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:45:49', '14:46:44', '14:48:50', 627, 1523); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:46:08', '14:54:17', '15:01:24', 627, 1524); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:47:00', '14:55:36', '15:17:17', 612, 1525); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:49:25', '14:50:12', '15:07:17', 631, 1526); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:52:04', '15:01:32', '15:38:21', 627, 1527); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:53:58', '14:57:06', '15:08:23', 612, 1528); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:58:35', '15:01:08', '15:12:33', 631, 1529); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:59:01', '15:10:59', '15:14:02', 627, 1530); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '14:59:58', '15:08:38', '15:15:44', 627, 1531); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:01:16', '15:02:26', '15:05:17', 627, 1532); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:02:27', '15:04:01', '15:14:22', 612, 1533); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:04:59', '15:05:17', '15:08:38', 627, 1534); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:05:10', '15:07:17', '15:22:34', 631, 1535); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:06:03', '15:06:09', '15:17:05', 612, 1536); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:07:47', '15:08:24', '15:16:49', 612, 1537); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:08:03', '15:09:18', '15:46:53', 631, 1538); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:11:01', '15:12:33', '15:47:29', 631, 1539); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:11:03', '15:15:44', '15:31:40', 627, 1540); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:13:40', '15:14:26', '15:36:04', 631, 1541); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:13:55', '15:14:23', '15:29:17', 612, 1542); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:15:04', '15:15:10', '15:44:13', 612, 1543); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:15:06', '15:15:15', '15:24:02', 627, 1544); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:15:58', '15:18:36', '15:22:27', 627, 1545); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:16:01', '15:17:05', '15:23:29', 612, 1546); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:16:37', '15:16:49', '15:23:30', 612, 1547); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:17:47', '15:22:27', '15:38:21', 627, 1548); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:17:58', '15:36:05', '15:46:06', 631, 1549); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:18:41', '15:22:34', '15:44:09', 631, 1550); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:19:22', '15:19:27', '15:25:17', 612, 1551); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:19:46', '15:24:02', '15:42:38', 627, 1552); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:19:54', '15:46:06', '15:57:58', 631, 1553); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:20:18', '15:23:30', '15:37:13', 612, 1554); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:20:29', '15:38:21', '15:40:20', 627, 1555); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:23:05', '15:23:10', '15:39:26', 627, 1556); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:24:42', '15:25:17', '15:30:46', 612, 1557); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:27:11', '15:29:17', '15:43:54', 612, 1558); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:28:01', '15:37:13', '15:51:51', 612, 1559); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:28:36', '15:57:58', '16:16:37', 631, 1560); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:29:20', '15:40:19', '16:15:50', 627, 1561); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:29:48', '15:31:41', '16:03:04', 627, 1562); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:33:59', '15:40:20', '16:05:17', 627, 1563); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:35:00', '15:42:38', '15:44:18', 627, 1564); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:36:25', '15:38:21', '15:40:18', 627, 1565); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:36:53', '15:44:19', '15:46:14', 627, 1566); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:38:02', '15:38:06', '15:40:32', 631, 1567); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:38:55', '15:43:55', '15:59:49', 612, 1568); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:40:43', '15:40:44', '16:06:03', 631, 1569); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:41:13', '15:41:18', '15:43:33', 627, 1570); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:41:50', '15:46:15', '16:11:13', 627, 1571); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:43:21', '15:44:10', '16:11:41', 631, 1572); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:44:04', '15:44:14', '15:56:43', 612, 1573); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:45:01', '15:46:53', '15:53:26', 631, 1574); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:47:35', '15:53:26', '15:54:48', 631, 1575); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:49:22', '15:51:52', '15:57:52', 612, 1576); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:53:10', '16:05:17', '16:10:45', 627, 1577); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:57:38', '16:08:43', '16:33:47', 627, 1578); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-09', '15:58:24', '15:59:52', '16:11:56', 631, 1579); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:03:07', '09:03:17', '09:22:22', 627, 1580); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:06:43', '09:10:35', '09:45:45', 631, 1581); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:08:33', '09:08:42', '09:21:50', 627, 1582); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:17:56', '09:17:57', '09:28:25', 631, 1583); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:18:07', '09:21:51', '09:30:40', 627, 1584); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:19:46', '09:19:53', '11:29:18', 627, 1585); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:28:13', '09:28:13', '09:39:58', 627, 1586); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:35:25', '09:35:32', '09:52:35', 627, 1587); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:37:58', '09:38:39', '09:50:46', 627, 1588); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:39:13', '09:39:16', '09:45:48', 612, 1589); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:39:15', '09:39:16', '09:47:11', 631, 1590); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:42:35', '09:42:40', '09:44:56', 627, 1591); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:43:19', '09:45:45', '10:05:04', 631, 1592); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:44:08', '09:44:11', '10:09:34', 627, 1593); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:45:42', '09:45:42', '10:55:57', 612, 1594); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:47:11', '09:47:12', '10:33:33', 631, 1595); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:49:15', '09:49:19', '10:04:03', 612, 1596); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:50:52', '09:50:57', '10:16:25', 627, 1597); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:52:09', '09:52:10', '10:26:20', 631, 1598); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '09:55:12', '10:05:04', '11:18:49', 631, 1599); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '10:00:21', '10:00:32', '11:51:49', 612, 1600); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '10:03:50', '10:03:52', '12:26:02', 631, 1601); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '10:03:52', '10:03:55', '11:41:14', 612, 1602); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '10:05:13', '10:09:34', '10:16:29', 627, 1603); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '10:06:37', '10:16:30', '13:03:48', 627, 1604); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '10:11:02', '10:11:02', '11:05:25', 631, 1605); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '10:32:51', '10:33:01', '10:51:09', 631, 1606); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '10:40:39', '10:40:41', '10:53:34', 631, 1607); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '10:41:08', '10:41:26', '11:33:30', 612, 1608); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '10:50:59', '10:51:04', '11:36:30', 631, 1609); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '10:55:51', '10:56:04', '11:03:23', 612, 1610); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '10:55:56', '10:56:00', '11:43:49', 631, 1611); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '10:55:57', '10:56:06', '11:00:47', 627, 1612); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '10:58:13', '10:58:33', '11:03:20', 612, 1613); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '10:58:36', '11:01:48', '11:03:44', 612, 1614); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:03:15', '11:03:21', '11:04:36', 612, 1615); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:04:28', '11:04:36', '12:04:50', 612, 1616); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:05:13', '11:05:15', '13:34:07', 631, 1617); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:07:30', '11:18:50', '11:24:13', 631, 1618); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:09:25', '11:24:14', '11:29:25', 631, 1619); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:09:49', '11:09:54', '11:54:37', 612, 1620); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:11:39', '11:11:47', '11:15:28', 627, 1621); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:11:54', '11:11:55', '11:41:06', 631, 1622); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:15:16', '11:15:22', '11:39:43', 627, 1623); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:29:08', '11:29:09', '11:32:43', 627, 1624); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:29:29', '11:29:38', '12:05:47', 627, 1625); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:31:39', '11:31:39', '11:44:39', 612, 1626); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:33:41', '11:33:43', '12:23:20', 612, 1627); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:34:11', '11:34:15', '12:13:54', 627, 1628); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:34:51', '11:34:52', '12:41:40', 631, 1629); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:35:43', '11:35:50', '12:26:56', 631, 1630); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:35:46', '11:35:58', '11:54:04', 612, 1631); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:35:57', '11:36:30', '11:55:14', 631, 1632); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:39:38', '11:39:39', '12:19:21', 627, 1633); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:40:00', '11:41:14', '11:49:26', 612, 1634); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:40:10', '11:42:33', '11:47:48', 631, 1635); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:40:40', '11:47:48', '12:22:22', 631, 1636); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:45:11', '11:46:22', '12:39:08', 627, 1637); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:49:27', '11:49:38', '12:15:25', 612, 1638); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:50:16', '11:51:49', '12:19:01', 612, 1639); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:53:19', '11:54:04', '12:15:24', 612, 1640); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:54:54', '11:55:14', '12:02:13', 631, 1641); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:55:43', '11:56:24', '12:28:59', 631, 1642); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:56:44', '12:02:13', '12:21:49', 631, 1643); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '11:59:14', '12:04:59', '12:18:06', 627, 1644); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:04:44', '12:04:50', '13:23:29', 612, 1645); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:05:39', '12:06:31', '12:21:52', 612, 1646); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:06:36', '12:13:54', '12:23:36', 627, 1647); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:15:18', '12:15:25', '12:46:01', 612, 1648); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:17:27', '12:21:16', '12:42:04', 612, 1649); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:18:48', '12:19:22', '13:14:00', 627, 1650); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:18:53', '12:19:02', '12:21:16', 612, 1651); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:19:52', '12:23:36', '12:31:02', 627, 1652); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:19:59', '12:23:21', '12:24:30', 612, 1653); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:21:31', '12:21:49', '12:58:51', 631, 1654); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:21:45', '12:21:53', '13:29:49', 612, 1655); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:24:22', '12:25:59', '12:31:37', 627, 1656); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:24:23', '12:24:30', '12:28:11', 612, 1657); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:24:23', '12:26:03', '12:34:31', 631, 1658); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:25:46', '12:28:50', '12:44:49', 631, 1659); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:26:47', '12:31:03', '12:52:03', 627, 1660); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:26:53', '12:26:56', '13:16:14', 631, 1661); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:28:05', '12:28:12', '12:41:32', 612, 1662); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:28:07', '12:31:22', '12:49:34', 627, 1663); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:29:42', '12:29:45', '12:58:07', 631, 1664); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:31:54', '12:34:31', '12:59:25', 631, 1665); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:34:10', '12:35:46', '13:04:58', 627, 1666); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:35:15', '12:36:31', '13:35:11', 612, 1667); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:39:25', '12:41:32', '13:29:53', 612, 1668); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:40:04', '12:40:11', '12:44:41', 612, 1669); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:41:25', '12:42:05', '13:35:11', 612, 1670); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:42:12', '12:42:18', '12:57:29', 631, 1671); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:42:40', '12:42:41', '12:52:33', 631, 1672); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:43:06', '12:44:41', '12:48:47', 612, 1673); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:45:50', '12:46:01', '12:51:19', 612, 1674); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:46:58', '12:47:04', '14:17:37', 627, 1675); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:48:46', '12:51:20', '13:35:11', 612, 1676); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:50:40', '12:52:33', '13:06:53', 631, 1677); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:53:34', '12:58:07', '13:02:04', 631, 1678); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:53:56', '12:58:51', '13:10:26', 631, 1679); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:54:20', '12:59:00', '13:25:05', 631, 1680); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '12:56:34', '12:59:25', '14:38:14', 631, 1681); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:00:23', '13:00:31', '13:02:51', 627, 1682); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:01:55', '13:02:04', '13:19:46', 631, 1683); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:02:21', '13:03:48', '13:12:10', 627, 1684); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:04:44', '13:04:50', '13:15:22', 627, 1685); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:05:54', '13:06:15', '13:19:13', 627, 1686); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:09:18', '13:10:26', '13:13:51', 631, 1687); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:10:07', '13:13:52', '13:47:03', 631, 1688); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:10:38', '13:15:23', '13:59:21', 627, 1689); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:10:53', '13:19:13', '13:48:11', 627, 1690); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:11:02', '13:12:10', '13:25:51', 627, 1691); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:12:40', '13:16:14', '13:36:03', 631, 1692); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:12:44', '13:14:01', '13:34:49', 627, 1693); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:15:42', '13:19:46', '13:47:10', 631, 1694); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:15:50', '13:21:06', '13:27:01', 627, 1695); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:17:28', '13:24:05', '13:27:28', 627, 1696); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:21:35', '13:26:47', '14:29:05', 631, 1697); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:21:36', '13:23:29', '13:55:24', 612, 1698); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:22:03', '13:27:01', '13:59:48', 627, 1699); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:23:45', '13:25:52', '13:31:42', 627, 1700); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:26:52', '13:31:42', '14:19:46', 627, 1701); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:29:40', '13:29:49', '15:46:07', 612, 1702); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:31:35', '13:37:07', '14:01:21', 627, 1703); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:32:06', '13:36:03', '13:44:54', 631, 1704); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:32:59', '13:34:08', '15:53:08', 631, 1705); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:35:04', '13:35:11', '15:22:59', 612, 1706); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:37:34', '13:44:54', '14:45:07', 631, 1707); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:38:15', '13:38:24', '13:53:43', 612, 1708); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:38:34', '13:38:53', '13:55:56', 612, 1709); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:40:42', '13:40:58', '13:45:47', 612, 1710); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:42:58', '13:43:06', '13:59:45', 627, 1711); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:43:33', '13:45:47', '13:55:57', 612, 1712); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:44:33', '13:53:43', '14:03:35', 612, 1713); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:45:36', '13:45:43', '14:05:55', 631, 1714); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:46:38', '13:47:03', '16:04:29', 631, 1715); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:46:55', '13:59:45', '14:11:29', 627, 1716); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:50:00', '13:50:01', '13:56:03', 631, 1717); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:54:27', '13:54:29', '13:58:18', 612, 1718); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:55:31', '13:55:57', '14:36:39', 612, 1719); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:56:52', '13:57:00', '15:34:16', 627, 1720); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:57:00', '13:57:04', '14:09:42', 631, 1721); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '13:58:19', '13:59:21', '14:11:15', 627, 1722); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:03:14', '14:03:36', '14:09:10', 612, 1723); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:05:21', '14:05:29', '16:02:21', 612, 1724); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:05:49', '14:06:46', '14:32:52', 612, 1725); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:06:35', '14:07:57', '14:29:27', 627, 1726); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:06:58', '14:09:10', '14:15:32', 612, 1727); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:08:22', '14:12:25', '14:14:36', 627, 1728); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:09:22', '14:10:02', '14:36:24', 631, 1729); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:09:45', '14:19:26', '14:31:26', 631, 1730); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:10:06', '14:14:36', '14:34:15', 627, 1731); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:15:13', '14:15:32', '14:32:25', 612, 1732); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:16:48', '14:17:37', '14:57:54', 627, 1733); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:18:04', '14:22:12', '14:27:53', 627, 1734); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:19:01', '14:27:54', '14:48:58', 627, 1735); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:19:20', '14:19:47', '14:25:56', 627, 1736); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:19:51', '14:25:57', '16:00:48', 627, 1737); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:24:15', '14:29:06', '14:47:45', 631, 1738); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:27:35', '14:29:49', '14:41:00', 627, 1739); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:28:39', '14:30:55', '14:46:19', 631, 1740); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:30:16', '14:34:16', '14:40:50', 627, 1741); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:30:50', '14:31:27', '14:38:00', 631, 1742); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:32:33', '14:40:50', '14:47:25', 627, 1743); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:32:47', '14:32:52', '14:56:10', 612, 1744); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:33:16', '14:38:00', '14:52:21', 631, 1745); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:33:36', '14:38:14', '14:57:57', 631, 1746); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:35:16', '14:37:38', '14:41:06', 627, 1747); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:35:52', '14:41:33', '14:57:44', 627, 1748); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:36:05', '14:36:40', '14:42:54', 612, 1749); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:36:12', '14:47:25', '14:51:42', 627, 1750); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:38:59', '14:39:01', '14:42:24', 612, 1751); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:41:32', '14:45:08', '14:49:28', 631, 1752); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:42:14', '14:42:19', '14:54:30', 612, 1753); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:42:31', '14:48:58', '15:19:57', 627, 1754); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:42:48', '14:42:54', '14:47:02', 612, 1755); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:43:14', '14:43:21', '14:47:16', 612, 1756); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:43:39', '14:47:45', '14:49:32', 631, 1757); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:44:00', '14:46:19', '15:13:25', 631, 1758); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:44:14', '14:47:02', '14:49:00', 612, 1759); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:44:23', '14:49:28', '15:04:50', 631, 1760); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:46:07', '14:51:43', '14:56:57', 627, 1761); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:46:18', '14:49:32', '15:26:12', 631, 1762); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:46:50', '14:56:57', '15:32:07', 627, 1763); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:47:09', '14:47:16', '15:18:19', 612, 1764); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:47:39', '14:57:44', '14:59:50', 627, 1765); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:47:44', '14:49:01', '15:29:14', 612, 1766); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:49:39', '15:00:41', '15:11:07', 627, 1767); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:49:49', '14:54:30', '15:05:13', 612, 1768); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:50:12', '14:52:22', '15:13:41', 631, 1769); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:50:54', '14:57:57', '15:16:50', 631, 1770); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:53:27', '15:02:38', '16:10:49', 631, 1771); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:53:40', '14:53:49', '15:05:23', 627, 1772); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:53:42', '15:04:51', '15:10:48', 631, 1773); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:56:16', '15:05:14', '15:17:50', 612, 1774); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '14:57:55', '14:58:01', '15:17:43', 612, 1775); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:00:16', '15:10:48', '15:20:34', 631, 1776); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:01:29', '15:13:25', '15:21:50', 631, 1777); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:03:00', '15:13:41', '15:14:41', 631, 1778); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:03:19', '15:03:29', '15:17:13', 627, 1779); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:05:10', '15:14:04', '15:24:51', 631, 1780); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:06:18', '15:14:42', '15:17:50', 631, 1781); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:10:48', '15:19:57', '15:22:17', 627, 1782); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:13:23', '15:22:17', '15:32:30', 627, 1783); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:15:03', '15:16:50', '16:09:38', 631, 1784); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:17:14', '15:17:50', '15:44:53', 631, 1785); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:17:33', '15:17:43', '15:26:09', 612, 1786); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:17:56', '15:18:20', '16:01:49', 612, 1787); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:18:11', '15:20:35', '15:42:34', 631, 1788); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:19:35', '15:21:51', '15:38:40', 631, 1789); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:19:55', '15:22:59', '15:46:31', 612, 1790); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:20:32', '15:32:08', '15:34:05', 627, 1791); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:23:54', '15:32:30', '15:37:49', 627, 1792); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:24:22', '15:26:12', '16:06:00', 631, 1793); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:25:09', '15:25:12', '15:31:33', 612, 1794); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:25:33', '15:34:05', '15:51:20', 627, 1795); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:26:04', '15:26:09', '16:01:47', 612, 1796); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:26:25', '15:26:32', '15:41:19', 631, 1797); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:26:38', '15:29:15', '16:01:40', 612, 1798); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:27:02', '15:27:16', '15:47:44', 627, 1799); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:30:58', '15:51:20', '15:59:17', 627, 1800); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:33:28', '15:42:35', '15:47:31', 631, 1801); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:34:56', '15:39:53', '15:43:40', 627, 1802); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:36:30', '15:43:41', '16:00:41', 627, 1803); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:37:53', '15:38:40', '16:12:16', 631, 1804); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:38:12', '15:41:20', '16:12:12', 631, 1805); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:43:36', '15:44:53', '16:05:48', 631, 1806); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:45:58', '15:46:07', '16:02:57', 612, 1807); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:46:21', '15:46:31', '16:02:26', 612, 1808); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:47:57', '15:51:35', '16:01:03', 627, 1809); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-10', '15:58:29', '16:04:29', '16:12:00', 631, 1810); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '09:58:05', '09:58:09', '11:04:33', 612, 1811); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '09:59:51', '09:59:53', '10:10:19', 612, 1812); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:00:12', '10:00:22', '10:05:31', 631, 1813); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:00:39', '10:00:49', '10:08:31', 631, 1814); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:00:50', '10:03:20', '11:00:10', 631, 1815); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:01:22', '10:02:21', '10:04:02', 631, 1816); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:01:44', '10:04:02', '10:59:32', 631, 1817); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:02:09', '10:05:32', '11:31:29', 631, 1818); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:02:36', '10:08:31', '10:14:53', 631, 1819); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:05:38', '10:14:54', '10:27:02', 631, 1820); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:06:04', '10:26:45', '10:33:08', 631, 1821); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:06:38', '10:07:06', '10:32:42', 612, 1822); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:10:05', '10:10:20', '10:32:41', 612, 1823); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:12:34', '10:27:02', '10:36:09', 631, 1824); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:16:11', '10:16:13', '10:21:00', 612, 1825); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:16:30', '10:33:09', '10:38:45', 631, 1826); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:18:09', '10:36:10', '10:47:26', 631, 1827); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:20:26', '10:21:00', '10:32:46', 612, 1828); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:23:26', '10:27:46', '10:42:57', 627, 1829); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:25:24', '10:32:14', '10:33:48', 627, 1830); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:28:47', '10:38:45', '10:47:14', 631, 1831); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:30:05', '10:30:07', '11:08:43', 627, 1832); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:31:42', '10:32:13', '10:34:45', 627, 1833); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:32:44', '10:32:45', '10:47:19', 612, 1834); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:33:13', '10:33:17', '10:48:27', 612, 1835); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:34:17', '10:34:26', '11:38:59', 627, 1836); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:35:01', '10:35:47', '10:43:09', 627, 1837); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:37:54', '10:47:15', '11:19:52', 631, 1838); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:37:56', '11:08:31', '11:21:48', 627, 1839); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:38:27', '10:47:27', '11:01:22', 631, 1840); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:46:24', '10:46:27', '11:11:50', 612, 1841); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:47:10', '10:47:19', '11:29:47', 612, 1842); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:48:19', '10:48:27', '12:01:10', 612, 1843); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:51:38', '11:09:08', '11:21:39', 627, 1844); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:51:53', '10:51:59', '11:55:05', 627, 1845); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:54:57', '11:21:40', '11:41:51', 627, 1846); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:57:37', '10:59:33', '11:08:22', 631, 1847); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:58:16', '11:00:10', '12:03:20', 631, 1848); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '10:58:49', '11:01:23', '11:05:18', 631, 1849); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:02:45', '11:05:19', '11:41:21', 631, 1850); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:03:07', '11:08:23', '11:15:35', 631, 1851); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:04:39', '11:04:44', '11:24:14', 612, 1852); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:06:05', '11:15:35', '11:26:30', 631, 1853); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:10:09', '11:19:53', '12:02:10', 631, 1854); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:11:20', '11:39:02', '11:42:31', 627, 1855); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:11:32', '11:11:50', '11:40:02', 612, 1856); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:12:14', '11:13:44', '11:35:41', 612, 1857); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:12:24', '11:42:31', '11:56:24', 627, 1858); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:18:12', '11:26:30', '11:43:29', 631, 1859); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:22:20', '11:31:29', '11:50:06', 631, 1860); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:24:09', '11:24:15', '11:45:17', 612, 1861); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:29:22', '11:29:48', '12:25:54', 612, 1862); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:32:46', '11:41:22', '11:53:43', 631, 1863); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:35:24', '11:35:42', '13:00:37', 612, 1864); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:35:37', '11:37:51', '12:02:21', 627, 1865); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:37:52', '11:43:29', '11:48:37', 631, 1866); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:38:19', '11:40:02', '11:51:32', 612, 1867); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:38:52', '11:48:38', '12:06:12', 631, 1868); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:40:36', '11:41:51', '12:08:35', 627, 1869); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:42:42', '11:50:07', '12:02:49', 631, 1870); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:44:38', '12:02:21', '12:09:20', 627, 1871); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:44:49', '11:45:18', '12:39:28', 612, 1872); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:45:25', '12:08:35', '12:31:59', 627, 1873); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:46:15', '11:53:43', '12:15:09', 631, 1874); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:49:15', '12:02:10', '12:36:11', 631, 1875); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:49:51', '12:02:49', '12:44:29', 631, 1876); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:50:34', '11:55:05', '12:18:43', 627, 1877); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:51:22', '11:51:32', '12:24:14', 612, 1878); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:54:46', '11:56:24', '12:14:02', 627, 1879); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:55:44', '11:55:49', '12:17:31', 627, 1880); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:57:08', '12:06:12', '12:17:12', 631, 1881); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:57:30', '12:15:09', '12:16:44', 631, 1882); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:57:38', '12:37:42', '12:51:51', 627, 1883); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '11:58:42', '12:16:44', '12:33:39', 631, 1884); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:01:01', '12:01:10', '12:22:52', 612, 1885); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:01:18', '12:03:20', '12:36:01', 631, 1886); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:04:59', '12:05:09', '12:15:20', 627, 1887); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:07:16', '12:09:20', '12:24:15', 627, 1888); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:08:49', '12:17:29', '12:35:13', 631, 1889); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:09:32', '12:17:31', '12:37:42', 627, 1890); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:13:43', '12:33:40', '12:37:56', 631, 1891); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:14:04', '12:35:13', '12:42:30', 631, 1892); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:14:31', '12:36:11', '12:40:16', 631, 1893); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:16:42', '12:24:20', '12:41:02', 627, 1894); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:18:04', '12:18:09', '12:32:00', 627, 1895); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:18:39', '12:32:00', '12:34:17', 627, 1896); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:22:38', '12:22:52', '12:56:04', 612, 1897); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:23:17', '12:35:21', '12:40:01', 627, 1898); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:24:00', '12:37:56', '12:41:08', 631, 1899); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:24:34', '12:25:54', '12:54:01', 612, 1900); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:26:55', '12:40:16', '13:24:39', 631, 1901); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:31:37', '12:40:02', '12:53:24', 627, 1902); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:32:38', '12:41:09', '12:59:52', 631, 1903); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:32:50', '12:40:54', '13:32:31', 627, 1904); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:33:20', '12:42:31', '13:15:02', 631, 1905); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:34:15', '12:36:01', '13:36:05', 631, 1906); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:36:13', '12:36:15', '13:04:42', 612, 1907); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:39:10', '12:44:29', '12:56:25', 631, 1908); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:39:19', '12:39:29', '12:57:20', 612, 1909); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:42:56', '12:43:46', '13:10:51', 627, 1910); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:45:54', '12:52:14', '13:00:06', 627, 1911); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:46:56', '12:53:25', '13:01:55', 627, 1912); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:48:42', '12:56:25', '13:06:31', 631, 1913); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:49:04', '12:51:52', '13:07:34', 627, 1914); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:52:15', '12:54:01', '13:59:34', 612, 1915); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:55:46', '12:56:04', '14:09:32', 612, 1916); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:56:00', '13:00:28', '13:24:53', 627, 1917); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:56:52', '13:01:55', '13:26:50', 627, 1918); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:57:23', '12:57:31', '14:02:29', 612, 1919); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '12:59:42', '12:59:52', '14:06:09', 631, 1920); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:00:29', '13:00:37', '13:11:13', 612, 1921); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:00:32', '13:00:39', '13:05:59', 631, 1922); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:01:43', '13:10:52', '13:18:52', 627, 1923); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:02:12', '13:18:53', '13:22:37', 627, 1924); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:02:49', '13:22:38', '13:33:02', 627, 1925); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:04:18', '13:04:43', '13:23:52', 612, 1926); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:05:01', '13:26:50', '13:34:34', 627, 1927); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:06:09', '13:06:31', '13:25:41', 631, 1928); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:06:27', '13:07:34', '14:13:31', 627, 1929); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:07:00', '13:24:53', '13:31:20', 627, 1930); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:09:25', '13:15:03', '14:07:21', 631, 1931); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:11:06', '13:11:13', '13:41:54', 612, 1932); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:12:02', '13:32:31', '13:39:42', 627, 1933); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:14:09', '13:33:02', '13:56:05', 627, 1934); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:20:56', '13:24:40', '13:27:12', 631, 1935); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:22:24', '13:25:41', '13:38:33', 631, 1936); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:24:04', '13:27:12', '13:34:26', 631, 1937); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:26:07', '13:33:50', '14:27:29', 627, 1938); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:28:16', '13:34:26', '13:39:41', 631, 1939); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:28:39', '13:34:34', '14:26:44', 627, 1940); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:30:04', '13:38:33', '14:07:00', 631, 1941); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:30:23', '13:39:42', '13:50:07', 631, 1942); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:30:40', '13:50:07', '14:11:05', 631, 1943); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:32:18', '14:06:32', '14:14:53', 631, 1944); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:33:14', '14:07:00', '14:14:22', 631, 1945); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:34:12', '14:07:21', '14:16:38', 631, 1946); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:34:55', '13:35:04', '13:46:40', 612, 1947); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:35:21', '13:45:11', '14:07:49', 627, 1948); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:35:57', '14:11:05', '14:17:47', 631, 1949); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:36:20', '14:14:23', '14:49:01', 631, 1950); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:38:42', '13:41:55', '14:19:13', 612, 1951); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:39:51', '14:14:53', '14:21:32', 631, 1952); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:41:28', '13:56:06', '14:01:54', 627, 1953); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:46:28', '13:46:40', '14:09:30', 612, 1954); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:49:49', '14:01:55', '15:13:53', 627, 1955); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:50:19', '14:16:38', '14:19:42', 631, 1956); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:53:25', '14:07:50', '14:24:48', 627, 1957); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:56:34', '13:56:42', '14:00:14', 612, 1958); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:57:40', '14:25:11', '15:08:59', 627, 1959); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '13:59:17', '13:59:34', '14:42:37', 612, 1960); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:02:22', '14:02:29', '14:14:53', 612, 1961); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:04:47', '14:17:47', '14:36:51', 631, 1962); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:05:11', '14:19:42', '14:27:15', 631, 1963); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:05:59', '14:21:32', '14:30:19', 631, 1964); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:09:17', '14:26:44', '14:48:17', 627, 1965); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:09:26', '14:09:32', '15:00:53', 612, 1966); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:10:10', '14:10:12', '14:22:03', 612, 1967); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:10:35', '14:10:35', '14:30:56', 612, 1968); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:11:28', '14:13:31', '16:00:25', 627, 1969); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:11:49', '14:14:53', '15:05:25', 612, 1970); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:19:07', '14:27:15', '14:39:57', 631, 1971); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:19:10', '14:19:13', '15:06:13', 612, 1972); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:21:40', '14:27:29', '14:45:52', 627, 1973); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:22:20', '14:22:24', '14:32:59', 612, 1974); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:26:45', '14:30:52', '14:56:17', 631, 1975); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:28:29', '14:33:00', '14:37:26', 612, 1976); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:28:51', '14:32:57', '15:57:57', 631, 1977); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:32:21', '14:37:26', '14:55:08', 612, 1978); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:35:14', '14:36:51', '15:22:03', 631, 1979); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:38:40', '14:42:37', '15:29:56', 612, 1980); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:38:51', '14:48:17', '14:54:03', 627, 1981); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:39:06', '14:39:57', '14:46:51', 631, 1982); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:42:47', '14:46:51', '14:48:28', 631, 1983); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:43:38', '14:49:01', '15:07:01', 631, 1984); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:43:41', '14:55:08', '15:00:28', 612, 1985); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:44:32', '14:49:05', '14:58:53', 631, 1986); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:47:25', '14:56:18', '14:58:10', 631, 1987); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:48:29', '14:58:11', '15:01:49', 631, 1988); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:48:53', '14:58:53', '15:44:25', 631, 1989); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:53:19', '15:01:49', '15:12:36', 631, 1990); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:55:10', '15:00:29', '15:20:12', 612, 1991); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:56:02', '15:05:25', '15:35:50', 612, 1992); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '14:57:45', '15:02:42', '15:34:50', 627, 1993); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:00:38', '15:00:53', '15:10:45', 612, 1994); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:00:46', '15:08:59', '15:38:46', 627, 1995); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:01:03', '15:01:12', '15:09:38', 627, 1996); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:01:08', '15:06:13', '15:12:09', 612, 1997); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:01:24', '15:13:54', '15:53:58', 627, 1998); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:02:36', '15:10:45', '15:15:08', 612, 1999); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:03:25', '15:14:11', '15:37:52', 627, 2000); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:04:33', '15:07:02', '15:21:33', 631, 2001); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:07:01', '15:15:08', '15:29:50', 612, 2002); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:09:37', '15:12:36', '15:24:02', 631, 2003); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:10:50', '15:12:10', '15:29:18', 612, 2004); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:13:09', '15:34:51', '16:10:13', 627, 2005); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:13:46', '15:37:53', '15:47:24', 627, 2006); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:16:56', '15:21:33', '15:48:55', 631, 2007); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:17:24', '15:38:46', '15:50:02', 627, 2008); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:18:15', '15:22:04', '16:00:24', 631, 2009); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:18:40', '15:47:24', '16:11:45', 627, 2010); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:18:54', '15:24:02', '15:27:07', 631, 2011); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:19:21', '15:20:13', '15:30:22', 612, 2012); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:25:27', '15:27:07', '15:54:13', 631, 2013); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:25:32', '15:50:02', '16:00:59', 627, 2014); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:35:40', '15:35:50', '15:55:09', 612, 2015); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:37:18', '15:44:25', '15:52:24', 631, 2016); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:39:36', '15:53:58', '16:15:19', 627, 2017); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:40:41', '15:54:43', '16:03:26', 627, 2018); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:42:06', '15:43:27', '15:54:50', 612, 2019); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:42:18', '15:48:55', '16:00:24', 631, 2020); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-11', '15:43:31', '15:52:24', '16:00:35', 631, 2021); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '11:58:31', '11:58:56', '12:36:36', 612, 2022); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '11:59:20', '12:00:00', '13:13:52', 612, 2023); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '12:02:11', '12:02:27', '13:55:01', 612, 2024); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '12:04:16', '12:04:18', '12:07:10', 612, 2025); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '12:07:26', '12:07:29', '12:36:52', 612, 2026); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '12:26:19', '12:26:43', '12:29:15', 612, 2027); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '12:29:09', '12:29:15', '12:53:13', 612, 2028); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '12:36:15', '12:36:36', '13:51:39', 612, 2029); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '12:36:45', '12:36:52', '12:47:25', 612, 2030); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '12:46:55', '12:47:26', '13:13:29', 612, 2031); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '12:52:51', '12:53:14', '13:28:06', 612, 2032); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '13:13:09', '13:13:29', '13:32:06', 612, 2033); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '13:13:39', '13:13:53', '14:01:57', 612, 2034); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '13:27:00', '13:28:06', '14:01:06', 612, 2035); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '13:32:08', '13:32:17', '13:56:54', 612, 2036); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '13:50:02', '14:00:29', '15:35:29', 612, 2037); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '13:51:34', '13:51:46', '15:53:06', 612, 2038); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '13:52:03', '13:55:01', '14:32:28', 612, 2039); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '13:54:41', '13:56:54', '14:07:35', 612, 2040); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '13:56:26', '14:01:06', '14:29:57', 612, 2041); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '14:01:47', '14:01:57', '14:13:04', 612, 2042); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '14:05:02', '14:07:35', '15:29:51', 612, 2043); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '14:12:17', '14:13:05', '15:20:23', 612, 2044); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '14:29:20', '14:29:57', '15:43:20', 612, 2045); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '14:31:05', '14:32:28', '15:50:51', 612, 2046); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '15:20:04', '15:20:23', '15:26:32', 612, 2047); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '15:29:31', '15:29:51', '15:46:21', 612, 2048); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '15:35:02', '15:35:29', '15:52:58', 612, 2049); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-12', '15:42:56', '15:43:20', '15:54:34', 612, 2050); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '08:57:46', '08:58:46', '09:46:50', 612, 2051); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '08:58:21', '08:58:31', '09:38:45', 612, 2052); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '09:00:26', '09:00:32', '09:49:13', 631, 2053); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '09:23:18', '09:23:21', '09:42:38', 627, 2054); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '09:27:23', '09:27:26', '09:50:55', 631, 2055); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '09:33:39', '09:33:49', '10:29:05', 612, 2056); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '09:37:26', '09:37:31', '09:38:46', 612, 2057); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '09:38:34', '09:38:45', '09:59:03', 612, 2058); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '09:45:52', '09:45:59', '09:53:56', 627, 2059); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '09:46:48', '09:46:58', '11:28:11', 612, 2060); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '09:49:32', '09:49:34', '10:26:35', 631, 2061); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '09:50:21', '09:50:55', '10:37:43', 631, 2062); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '09:51:49', '09:51:54', '09:59:01', 612, 2063); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '09:56:13', '09:57:12', '10:07:46', 631, 2064); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '09:58:53', '09:58:57', '12:46:58', 631, 2065); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '09:58:56', '09:59:01', '10:43:47', 612, 2066); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:01:48', '10:01:54', '10:58:41', 612, 2067); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:05:36', '10:05:41', '10:08:11', 612, 2068); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:07:03', '10:07:46', '10:41:39', 631, 2069); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:08:04', '10:08:11', '11:30:59', 631, 2070); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:08:31', '10:08:43', '10:22:40', 612, 2071); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:08:58', '10:09:32', '11:06:18', 627, 2072); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:09:55', '10:15:30', '10:21:40', 631, 2073); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:10:23', '10:11:07', '12:44:13', 631, 2074); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:16:30', '10:16:38', '10:19:24', 627, 2075); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:17:04', '10:17:23', '10:19:26', 627, 2076); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:20:20', '10:21:40', '10:56:15', 631, 2077); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:22:29', '10:22:37', '10:29:05', 612, 2078); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:26:30', '10:26:36', '11:08:31', 631, 2079); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:27:31', '10:27:36', '10:57:14', 627, 2080); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:28:59', '10:29:09', '10:58:14', 612, 2081); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:31:19', '10:31:27', '11:06:44', 627, 2082); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:36:24', '10:36:26', '10:42:03', 627, 2083); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:37:46', '10:37:50', '10:43:10', 631, 2084); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:39:30', '10:41:39', '11:07:46', 631, 2085); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:41:33', '10:43:10', '11:57:45', 631, 2086); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:43:05', '10:44:59', '12:52:37', 631, 2087); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:43:41', '10:43:48', '11:49:34', 612, 2088); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:45:28', '10:45:32', '10:55:42', 627, 2089); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:45:28', '10:49:18', '11:25:44', 631, 2090); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:49:08', '10:49:14', '11:01:23', 627, 2091); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:55:07', '10:56:15', '11:39:27', 631, 2092); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '10:58:32', '10:58:42', '13:01:55', 612, 2093); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:00:23', '11:00:26', '11:37:55', 612, 2094); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:00:29', '11:01:24', '11:09:31', 627, 2095); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:05:22', '11:06:18', '11:51:54', 627, 2096); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:06:10', '11:06:44', '12:06:30', 627, 2097); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:07:43', '11:07:47', '11:57:04', 631, 2098); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:08:11', '11:08:31', '11:26:04', 631, 2099); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:10:14', '11:10:25', '11:44:50', 612, 2100); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:21:01', '11:21:01', '11:33:20', 612, 2101); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:21:58', '11:22:04', '11:25:19', 612, 2102); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:26:09', '11:26:10', '12:05:54', 631, 2103); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:31:07', '11:31:08', '14:21:28', 631, 2104); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:32:53', '11:32:53', '11:37:58', 627, 2105); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:35:04', '11:35:05', '11:44:54', 612, 2106); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:37:06', '11:37:10', '11:44:33', 612, 2107); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:38:05', '11:39:28', '12:09:28', 631, 2108); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:38:14', '11:38:16', '12:35:58', 612, 2109); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:44:39', '11:44:50', '11:49:29', 612, 2110); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:47:41', '11:47:43', '11:52:57', 627, 2111); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:49:33', '11:49:35', '13:06:55', 612, 2112); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:56:52', '11:57:05', '13:24:43', 631, 2113); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '11:57:15', '11:57:45', '12:05:49', 631, 2114); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:04:12', '12:04:48', '12:13:46', 627, 2115); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:05:02', '12:05:49', '12:22:13', 631, 2116); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:05:23', '12:05:55', '14:23:27', 631, 2117); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:05:33', '12:06:30', '12:44:36', 627, 2118); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:07:39', '12:09:29', '12:19:38', 631, 2119); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:08:52', '12:17:45', '16:12:49', 631, 2120); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:10:01', '12:19:39', '12:28:24', 631, 2121); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:10:29', '12:10:35', '12:19:38', 612, 2122); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:10:47', '12:15:51', '12:37:23', 631, 2123); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:18:53', '12:19:38', '12:36:10', 612, 2124); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:21:48', '12:22:13', '12:31:58', 631, 2125); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:22:27', '12:28:25', '12:33:46', 631, 2126); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:22:38', '12:22:39', '12:38:54', 627, 2127); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:27:02', '12:31:59', '12:56:41', 631, 2128); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:29:48', '12:33:46', '12:37:10', 631, 2129); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:32:50', '12:37:11', '12:48:33', 631, 2130); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:32:51', '12:38:54', '12:40:42', 627, 2131); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:33:34', '12:40:43', '12:43:10', 627, 2132); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:34:43', '12:37:24', '12:46:22', 631, 2133); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:35:22', '12:35:58', '13:59:31', 612, 2134); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:35:48', '12:42:28', '12:43:48', 627, 2135); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:37:00', '12:43:11', '12:58:23', 627, 2136); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:38:38', '12:50:58', '13:32:45', 627, 2137); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:39:43', '12:46:22', '12:53:27', 631, 2138); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:41:30', '12:41:33', '12:53:54', 612, 2139); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:43:12', '12:43:48', '12:51:42', 627, 2140); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:43:21', '12:44:36', '13:08:11', 627, 2141); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:43:38', '12:44:13', '14:14:16', 631, 2142); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:44:38', '12:46:58', '16:13:06', 631, 2143); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:45:47', '12:56:47', '13:14:33', 627, 2144); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:45:56', '12:55:55', '13:40:55', 631, 2145); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:47:26', '12:48:33', '13:07:25', 631, 2146); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:49:02', '12:53:05', '13:48:24', 627, 2147); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:51:24', '12:53:27', '12:55:04', 631, 2148); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:51:37', '12:52:37', '13:51:48', 631, 2149); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:53:27', '12:59:55', '13:02:58', 627, 2150); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:53:48', '12:53:55', '13:25:23', 627, 2151); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:54:22', '12:58:56', '13:08:22', 627, 2152); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:54:25', '12:54:31', '13:28:28', 612, 2153); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:54:29', '13:02:58', '13:51:41', 627, 2154); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:55:05', '13:14:33', '13:20:07', 627, 2155); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:56:22', '12:56:24', '13:02:02', 612, 2156); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:56:37', '13:08:22', '13:31:46', 627, 2157); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '12:59:00', '13:20:07', '13:34:49', 627, 2158); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:01:06', '13:01:13', '13:05:50', 631, 2159); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:01:47', '13:01:55', '13:26:11', 612, 2160); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:02:56', '13:03:15', '13:14:57', 612, 2161); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:04:27', '13:04:46', '13:27:47', 612, 2162); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:05:25', '13:05:51', '13:13:15', 631, 2163); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:05:48', '13:06:55', '13:44:25', 612, 2164); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:06:35', '13:07:26', '13:20:27', 631, 2165); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:06:58', '13:15:17', '13:34:51', 627, 2166); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:07:08', '13:08:11', '13:49:27', 627, 2167); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:09:42', '13:28:42', '13:30:33', 612, 2168); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:11:13', '13:13:15', '14:13:45', 631, 2169); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:14:51', '13:14:53', '13:22:30', 612, 2170); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:15:45', '13:19:16', '13:59:09', 612, 2171); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:16:48', '13:26:11', '13:27:39', 612, 2172); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:18:08', '13:31:56', '13:58:59', 627, 2173); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:19:41', '13:20:27', '13:26:47', 631, 2174); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:19:47', '13:32:45', '13:39:19', 627, 2175); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:20:06', '13:27:39', '13:47:00', 612, 2176); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:21:03', '13:24:43', '13:33:35', 631, 2177); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:21:23', '13:27:47', '13:29:21', 612, 2178); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:22:09', '13:26:47', '13:40:49', 631, 2179); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:23:34', '13:25:24', '14:44:39', 627, 2180); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:24:01', '13:33:36', '13:49:00', 631, 2181); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:27:25', '13:28:29', '14:11:22', 612, 2182); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:27:42', '13:28:39', '13:41:14', 631, 2183); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:28:56', '13:29:21', '14:00:16', 612, 2184); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:30:48', '13:30:51', '13:35:49', 612, 2185); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:35:02', '13:47:00', '13:48:57', 612, 2186); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:37:50', '13:40:49', '13:41:50', 631, 2187); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:38:37', '13:47:18', '13:53:14', 627, 2188); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:39:39', '13:51:05', '13:53:00', 612, 2189); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:40:29', '13:40:56', '14:13:26', 631, 2190); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:40:49', '13:41:50', '14:37:46', 631, 2191); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:41:18', '13:49:27', '14:23:24', 627, 2192); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:43:27', '13:44:25', '14:07:58', 612, 2193); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:43:58', '13:53:01', '13:56:26', 612, 2194); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:44:08', '13:44:13', '13:54:20', 612, 2195); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:45:23', '13:56:28', '14:05:02', 612, 2196); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:48:11', '13:51:48', '14:18:23', 631, 2197); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:48:35', '13:49:00', '15:20:33', 631, 2198); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:48:48', '13:48:58', '13:51:04', 612, 2199); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:49:09', '13:59:33', '14:01:58', 612, 2200); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:50:08', '13:59:09', '14:42:36', 612, 2201); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:51:12', '14:00:17', '14:29:14', 612, 2202); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:51:58', '13:55:37', '15:54:28', 627, 2203); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:52:51', '14:02:38', '14:07:56', 612, 2204); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:54:46', '13:58:59', '14:01:14', 627, 2205); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '13:58:53', '14:01:15', '14:22:16', 627, 2206); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:03:49', '14:05:02', '14:37:40', 612, 2207); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:04:10', '14:04:19', '14:06:43', 612, 2208); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:04:47', '14:07:57', '14:25:01', 612, 2209); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:05:45', '14:07:58', '14:24:30', 612, 2210); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:07:31', '14:14:17', '14:33:42', 631, 2211); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:10:21', '14:16:28', '15:05:42', 627, 2212); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:11:51', '14:11:53', '14:19:38', 612, 2213); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:12:43', '14:27:56', '14:30:20', 627, 2214); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:13:14', '14:22:28', '14:32:33', 627, 2215); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:13:18', '14:13:26', '14:43:51', 631, 2216); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:15:37', '14:21:28', '15:09:59', 631, 2217); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:17:40', '14:18:23', '14:43:33', 631, 2218); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:18:38', '14:23:27', '14:36:50', 631, 2219); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:21:46', '14:30:21', '14:32:05', 627, 2220); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:22:02', '14:23:25', '14:30:11', 627, 2221); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:22:24', '14:32:06', '14:51:41', 627, 2222); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:23:40', '14:27:12', '14:42:02', 631, 2223); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:24:43', '14:32:33', '14:42:56', 627, 2224); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:28:59', '14:29:03', '15:35:08', 612, 2225); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:29:31', '14:36:50', '14:57:32', 631, 2226); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:30:02', '14:30:11', '15:07:07', 627, 2227); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:31:16', '14:31:19', '14:46:23', 612, 2228); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:31:35', '14:31:42', '14:46:51', 612, 2229); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:32:56', '14:46:51', '14:52:59', 612, 2230); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:33:02', '14:37:46', '15:37:01', 631, 2231); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:33:13', '14:33:43', '15:34:55', 631, 2232); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:33:53', '14:51:41', '14:55:05', 627, 2233); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:33:53', '14:42:02', '14:49:41', 631, 2234); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:34:59', '14:34:59', '15:02:10', 612, 2235); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:35:39', '14:43:52', '14:51:29', 631, 2236); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:37:16', '14:42:57', '14:46:45', 627, 2237); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:37:32', '14:37:40', '15:35:08', 612, 2238); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:38:03', '14:38:11', '14:54:10', 612, 2239); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:40:12', '14:44:40', '15:11:09', 627, 2240); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:42:28', '14:49:41', '15:02:39', 631, 2241); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:42:36', '14:43:34', '15:28:04', 631, 2242); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:44:39', '14:46:46', '15:48:48', 627, 2243); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:44:51', '14:54:11', '15:04:42', 627, 2244); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:45:50', '15:07:07', '15:18:09', 627, 2245); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:46:19', '14:51:30', '15:01:45', 631, 2246); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:47:35', '14:47:36', '14:56:27', 612, 2247); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:49:14', '14:55:05', '14:56:16', 627, 2248); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:49:33', '14:57:32', '15:09:04', 631, 2249); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:50:07', '15:04:42', '15:10:14', 627, 2250); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:53:15', '14:53:38', '15:26:58', 612, 2251); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:54:00', '14:54:10', '15:03:44', 612, 2252); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:54:51', '14:56:16', '15:45:57', 627, 2253); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:55:57', '14:56:27', '15:35:08', 612, 2254); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:56:15', '14:56:24', '15:32:47', 627, 2255); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:56:23', '14:57:43', '15:06:15', 627, 2256); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '14:57:54', '14:58:00', '15:00:28', 612, 2257); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:01:18', '15:01:45', '15:10:12', 631, 2258); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:03:26', '15:03:45', '15:35:08', 612, 2259); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:03:31', '15:23:38', '15:51:23', 627, 2260); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:04:38', '15:05:43', '15:35:44', 627, 2261); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:06:06', '15:09:04', '15:45:02', 631, 2262); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:07:16', '15:09:59', '15:41:20', 631, 2263); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:07:57', '15:28:21', '15:58:37', 627, 2264); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:08:42', '15:10:12', '15:21:06', 631, 2265); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:09:56', '15:18:10', '16:00:56', 627, 2266); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:10:29', '15:41:36', '15:44:18', 627, 2267); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:10:38', '15:10:41', '15:14:25', 612, 2268); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:10:47', '15:11:10', '16:01:00', 627, 2269); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:15:02', '15:15:06', '15:20:19', 612, 2270); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:15:08', '15:44:19', '15:59:58', 627, 2271); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:15:53', '15:20:33', '15:30:35', 631, 2272); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:16:55', '15:21:06', '16:12:11', 631, 2273); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:21:58', '15:45:57', '15:49:22', 627, 2274); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:27:38', '15:28:04', '16:03:38', 631, 2275); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:28:03', '15:28:29', '15:57:59', 631, 2276); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:29:05', '15:29:13', '15:31:11', 612, 2277); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:29:57', '15:30:36', '16:13:31', 631, 2278); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:31:00', '15:48:01', '15:58:23', 627, 2279); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:31:49', '15:37:01', '15:46:35', 631, 2280); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:34:15', '15:34:55', '15:37:40', 631, 2281); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:34:41', '15:41:20', '16:12:04', 631, 2282); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:35:02', '15:49:14', '16:04:17', 627, 2283); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:35:49', '15:37:40', '16:02:20', 631, 2284); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:39:14', '15:40:47', '16:12:07', 612, 2285); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:40:34', '15:41:00', '16:18:43', 612, 2286); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:41:44', '15:45:03', '16:11:58', 631, 2287); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:43:19', '15:50:59', '17:38:31', 612, 2288); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:49:33', '15:51:21', '15:53:21', 612, 2289); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-13', '15:52:22', '15:53:22', '16:11:07', 612, 2290); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '08:58:25', '08:58:34', '09:20:47', 612, 2291); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:03:38', '09:03:43', '09:43:48', 631, 2292); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:04:46', '09:09:42', '09:42:58', 631, 2293); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:04:53', '09:06:17', '11:48:39', 631, 2294); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:08:37', '09:10:19', '09:36:09', 612, 2295); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:10:54', '09:16:11', '10:18:26', 631, 2296); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:20:41', '09:20:41', '09:50:01', 612, 2297); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:22:53', '09:29:56', '09:45:01', 631, 2298); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:31:37', '09:31:44', '09:46:01', 627, 2299); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:34:11', '09:34:16', '09:43:06', 627, 2300); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:35:57', '09:36:10', '10:07:35', 612, 2301); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:41:27', '09:41:28', '10:17:52', 612, 2302); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:43:07', '09:43:09', '11:09:28', 631, 2303); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:43:27', '09:43:49', '10:06:57', 631, 2304); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:50:03', '09:50:06', '10:33:26', 612, 2305); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:51:31', '09:51:39', '10:00:40', 612, 2306); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:52:17', '09:52:22', '10:00:52', 631, 2307); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:55:14', '09:56:45', '10:05:36', 627, 2308); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:56:44', '09:59:04', '11:17:30', 631, 2309); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '09:58:38', '10:00:52', '10:57:10', 631, 2310); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:03:12', '10:07:35', '11:34:08', 612, 2311); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:03:36', '10:05:36', '11:34:05', 627, 2312); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:06:28', '10:06:58', '10:52:27', 631, 2313); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:13:41', '10:13:42', '10:18:01', 627, 2314); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:17:32', '10:18:26', '13:05:55', 631, 2315); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:18:00', '10:18:02', '10:26:26', 612, 2316); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:19:41', '10:20:57', '10:43:52', 627, 2317); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:20:23', '10:20:31', '10:52:09', 612, 2318); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:26:31', '10:26:32', '10:42:47', 627, 2319); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:28:11', '10:28:17', '10:34:18', 627, 2320); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:36:27', '10:36:30', '10:44:39', 627, 2321); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:39:46', '10:40:03', '11:24:24', 631, 2322); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:44:42', '10:44:43', '10:51:42', 627, 2323); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:45:22', '10:45:28', '11:04:39', 627, 2324); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:46:10', '10:46:11', '12:52:21', 612, 2325); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:52:06', '10:52:19', '11:01:25', 627, 2326); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:52:09', '10:52:18', '10:53:19', 612, 2327); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:52:35', '10:52:38', '12:06:33', 631, 2328); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:54:51', '10:54:55', '11:20:25', 612, 2329); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:56:43', '10:57:10', '12:05:54', 631, 2330); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '10:59:28', '10:59:38', '11:33:37', 627, 2331); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:02:53', '11:03:01', '11:11:30', 631, 2332); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:03:03', '11:04:39', '11:15:02', 627, 2333); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:04:06', '11:04:44', '11:16:15', 627, 2334); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:07:34', '11:08:47', '12:00:14', 631, 2335); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:08:28', '11:08:42', '11:58:16', 627, 2336); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:15:01', '11:16:15', '11:25:59', 627, 2337); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:15:56', '11:17:22', '12:17:01', 627, 2338); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:16:53', '11:17:29', '11:23:58', 627, 2339); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:17:29', '11:17:30', '12:20:58', 631, 2340); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:20:18', '11:20:25', '11:37:16', 612, 2341); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:25:08', '11:25:13', '11:34:11', 612, 2342); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:29:49', '11:34:11', '11:53:06', 612, 2343); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:30:23', '11:34:09', '12:02:04', 612, 2344); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:31:08', '11:33:38', '11:40:49', 627, 2345); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:31:23', '11:34:06', '11:56:21', 627, 2346); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:32:04', '11:37:16', '11:49:09', 612, 2347); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:34:21', '11:49:10', '11:54:07', 612, 2348); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:36:03', '11:40:15', '11:50:20', 612, 2349); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:39:06', '11:56:22', '12:24:40', 627, 2350); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:39:31', '11:39:33', '11:44:40', 627, 2351); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:40:16', '11:40:49', '12:04:59', 627, 2352); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:46:15', '11:48:39', '13:35:17', 631, 2353); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:47:43', '11:50:20', '12:06:24', 612, 2354); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:49:15', '11:49:44', '11:56:10', 627, 2355); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:50:49', '11:53:06', '11:56:09', 612, 2356); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:51:58', '11:52:05', '12:06:11', 631, 2357); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:52:31', '11:56:11', '12:30:46', 627, 2358); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:53:59', '11:54:07', '12:18:56', 612, 2359); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:54:55', '11:56:10', '12:08:47', 612, 2360); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:58:06', '12:00:14', '12:18:36', 631, 2361); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:59:00', '12:02:05', '12:34:00', 612, 2362); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:59:14', '12:06:24', '12:10:16', 612, 2363); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '11:59:45', '12:05:54', '12:37:31', 631, 2364); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:00:28', '12:08:47', '12:48:19', 612, 2365); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:00:51', '12:01:03', '12:08:13', 627, 2366); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:00:56', '12:06:11', '13:25:04', 631, 2367); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:02:10', '12:03:23', '12:06:31', 627, 2368); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:03:42', '12:25:56', '12:48:24', 612, 2369); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:04:03', '12:06:34', '12:33:31', 631, 2370); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:04:28', '12:05:55', '12:35:25', 631, 2371); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:09:30', '12:10:17', '12:14:08', 612, 2372); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:10:54', '12:11:00', '12:19:07', 627, 2373); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:11:58', '12:17:02', '12:31:59', 627, 2374); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:13:32', '12:13:37', '12:15:25', 612, 2375); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:13:36', '12:19:07', '12:54:14', 627, 2376); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:14:00', '12:14:09', '12:52:59', 612, 2377); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:16:12', '12:24:41', '13:13:38', 627, 2378); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:17:26', '12:18:36', '12:27:19', 631, 2379); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:18:25', '12:20:59', '12:56:42', 631, 2380); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:18:46', '12:18:56', '12:49:46', 612, 2381); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:25:34', '12:31:39', '12:58:20', 627, 2382); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:26:03', '12:26:06', '12:48:30', 612, 2383); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:26:20', '12:27:19', '12:40:08', 631, 2384); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:29:33', '12:29:39', '12:33:42', 612, 2385); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:33:13', '12:33:22', '12:45:11', 627, 2386); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:33:45', '12:33:53', '12:48:08', 631, 2387); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:33:53', '12:34:00', '13:22:03', 612, 2388); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:34:39', '12:35:25', '13:09:31', 631, 2389); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:39:22', '12:40:08', '12:49:47', 631, 2390); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:44:51', '12:45:00', '12:55:58', 627, 2391); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:46:18', '12:46:22', '12:53:05', 627, 2392); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:46:59', '12:48:08', '12:54:52', 631, 2393); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:48:14', '12:48:24', '12:53:09', 612, 2394); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:48:45', '12:49:47', '12:55:58', 631, 2395); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:49:40', '12:49:46', '13:30:40', 612, 2396); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:51:14', '12:51:21', '13:16:35', 612, 2397); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:52:14', '12:52:21', '13:40:51', 612, 2398); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:52:44', '12:52:59', '13:49:04', 612, 2399); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:54:27', '12:54:30', '13:23:02', 612, 2400); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:54:42', '12:54:52', '13:04:38', 631, 2401); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:55:14', '12:55:58', '14:08:53', 631, 2402); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '12:55:39', '12:56:43', '13:22:38', 631, 2403); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:00:53', '13:00:53', '13:27:04', 631, 2404); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:02:29', '13:04:39', '13:22:53', 631, 2405); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:02:39', '13:04:00', '13:18:06', 627, 2406); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:03:09', '13:23:02', '13:31:19', 612, 2407); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:04:04', '13:04:47', '13:24:16', 627, 2408); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:05:27', '13:05:55', '13:48:52', 631, 2409); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:06:27', '13:06:36', '14:21:19', 627, 2410); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:07:14', '13:13:35', '13:33:40', 627, 2411); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:07:33', '13:07:35', '13:58:24', 627, 2412); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:10:58', '13:13:39', '13:51:12', 627, 2413); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:11:53', '13:11:59', '13:20:25', 627, 2414); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:17:20', '13:17:26', '13:35:13', 612, 2415); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:17:27', '13:20:25', '13:23:50', 627, 2416); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:21:04', '13:21:11', '13:28:23', 612, 2417); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:21:58', '13:22:03', '13:33:33', 612, 2418); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:22:38', '13:22:53', '13:57:29', 631, 2419); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:24:12', '13:27:04', '13:38:21', 631, 2420); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:25:12', '13:25:15', '14:38:44', 631, 2421); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:29:16', '13:33:40', '14:01:02', 627, 2422); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:30:25', '13:30:41', '13:48:02', 612, 2423); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:30:52', '13:35:14', '13:58:00', 627, 2424); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:32:46', '13:32:53', '13:47:35', 612, 2425); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:33:21', '13:33:33', '15:03:58', 612, 2426); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:33:59', '13:35:13', '13:39:13', 612, 2427); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:34:39', '13:35:17', '15:37:38', 631, 2428); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:34:56', '13:39:13', '13:50:41', 612, 2429); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:36:19', '13:42:30', '13:57:42', 627, 2430); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:37:37', '13:38:22', '13:53:48', 631, 2431); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:38:49', '13:40:51', '14:03:08', 612, 2432); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:41:06', '13:41:11', '14:00:23', 627, 2433); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:41:59', '13:58:03', '13:59:11', 627, 2434); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:44:53', '13:48:52', '14:03:57', 631, 2435); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:45:33', '13:52:57', '14:06:00', 627, 2436); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:47:45', '13:48:02', '14:54:11', 612, 2437); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:48:12', '13:53:48', '14:06:31', 631, 2438); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:48:27', '13:56:51', '16:15:02', 631, 2439); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:48:59', '13:49:08', '13:52:38', 612, 2440); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:50:49', '13:51:12', '16:39:49', 627, 2441); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:50:54', '13:50:56', '14:04:10', 612, 2442); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:51:29', '13:59:14', '14:03:48', 627, 2443); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:51:48', '13:57:30', '14:21:18', 631, 2444); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:51:57', '14:00:23', '14:17:56', 627, 2445); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:52:41', '13:52:43', '14:15:46', 612, 2446); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:56:13', '14:01:02', '15:26:36', 627, 2447); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:56:43', '14:06:00', '14:18:09', 627, 2448); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:57:55', '13:57:59', '14:08:16', 612, 2449); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '13:58:18', '14:03:58', '14:06:37', 631, 2450); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:01:35', '14:06:00', '14:22:52', 627, 2451); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:01:46', '14:06:32', '15:02:19', 631, 2452); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:02:08', '14:06:37', '14:11:14', 631, 2453); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:02:31', '14:02:40', '14:23:39', 612, 2454); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:02:32', '14:08:20', '14:32:01', 631, 2455); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:03:03', '14:03:10', '15:10:12', 612, 2456); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:05:50', '14:11:34', '14:17:58', 627, 2457); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:05:59', '14:08:53', '14:12:38', 631, 2458); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:06:54', '14:11:14', '14:46:21', 631, 2459); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:07:12', '14:12:38', '14:36:20', 631, 2460); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:07:20', '14:07:24', '14:09:52', 612, 2461); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:08:07', '14:08:17', '14:32:18', 612, 2462); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:08:24', '14:17:57', '14:27:37', 627, 2463); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:13:41', '14:21:19', '14:47:13', 631, 2464); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:14:16', '14:14:42', '14:28:07', 612, 2465); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:15:19', '14:15:46', '14:20:47', 612, 2466); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:16:25', '14:17:58', '14:28:08', 627, 2467); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:20:38', '14:20:45', '15:41:05', 627, 2468); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:21:02', '14:21:08', '14:57:05', 612, 2469); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:23:33', '14:23:39', '14:29:49', 612, 2470); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:27:58', '14:28:07', '14:54:16', 612, 2471); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:31:21', '14:32:01', '14:49:48', 631, 2472); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:32:05', '14:32:19', '14:49:05', 612, 2473); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:33:21', '14:36:21', '15:10:16', 631, 2474); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:34:02', '14:34:11', '15:05:09', 627, 2475); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:34:29', '14:35:51', '14:48:48', 627, 2476); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:35:16', '14:38:44', '15:04:44', 631, 2477); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:35:22', '14:36:00', '14:38:45', 627, 2478); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:42:37', '14:46:21', '15:12:49', 631, 2479); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:43:04', '14:47:13', '15:16:58', 631, 2480); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:44:27', '14:49:05', '15:42:26', 612, 2481); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:45:54', '14:47:16', '15:07:18', 627, 2482); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:47:39', '14:49:48', '15:53:25', 631, 2483); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:49:17', '14:50:53', '15:52:56', 631, 2484); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:51:21', '14:51:54', '15:07:47', 627, 2485); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:54:32', '14:54:35', '15:23:24', 612, 2486); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:55:56', '14:56:41', '15:04:29', 612, 2487); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:57:03', '14:57:05', '15:09:16', 612, 2488); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '14:59:50', '14:59:57', '15:14:39', 612, 2489); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:00:43', '15:02:20', '15:16:24', 631, 2490); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:01:41', '15:04:45', '15:17:23', 631, 2491); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:02:11', '15:10:17', '15:13:30', 631, 2492); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:02:29', '15:12:49', '15:37:23', 631, 2493); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:03:43', '15:03:59', '15:51:26', 612, 2494); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:04:28', '15:04:30', '15:14:19', 627, 2495); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:04:59', '15:05:10', '17:11:40', 627, 2496); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:09:15', '15:10:12', '15:21:28', 612, 2497); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:09:34', '15:09:37', '15:34:23', 612, 2498); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:09:56', '15:13:30', '15:31:16', 631, 2499); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:11:15', '15:16:24', '15:40:52', 631, 2500); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:12:20', '15:16:59', '15:29:08', 631, 2501); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:14:01', '15:21:28', '15:45:31', 612, 2502); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:14:14', '15:14:20', '15:25:06', 627, 2503); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:14:29', '15:14:39', '15:46:40', 612, 2504); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:15:44', '15:17:24', '15:49:56', 631, 2505); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:16:08', '15:24:31', '15:27:19', 627, 2506); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:21:21', '15:23:24', '16:32:10', 612, 2507); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:21:59', '15:25:06', '15:27:46', 627, 2508); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:22:51', '15:26:37', '15:34:16', 627, 2509); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:23:12', '15:34:16', '15:38:29', 627, 2510); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:23:32', '15:27:20', '15:29:04', 627, 2511); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:28:53', '15:29:09', '16:09:15', 631, 2512); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:29:34', '15:31:17', '15:55:57', 631, 2513); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:30:01', '15:30:05', '15:37:49', 627, 2514); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:34:04', '15:34:24', '16:05:30', 612, 2515); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:36:03', '15:37:23', '15:47:44', 631, 2516); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:37:01', '15:37:39', '15:58:42', 631, 2517); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:38:00', '15:40:52', '15:51:46', 631, 2518); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:39:21', '15:39:59', '15:55:45', 627, 2519); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:39:47', '15:41:06', '17:08:30', 627, 2520); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:40:26', '15:42:26', '17:52:31', 612, 2521); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:40:32', '15:47:45', '16:18:27', 631, 2522); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:43:58', '15:49:56', '15:56:51', 631, 2523); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:45:21', '15:51:46', '16:11:04', 631, 2524); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:45:24', '15:45:32', '15:57:24', 612, 2525); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:46:18', '15:46:40', '16:26:35', 612, 2526); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:46:39', '15:46:41', '16:00:10', 612, 2527); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:47:44', '15:53:26', '15:57:33', 631, 2528); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:48:44', '15:50:31', '15:51:45', 627, 2529); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:50:41', '15:51:26', '16:33:25', 612, 2530); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:52:14', '15:52:56', '15:56:41', 631, 2531); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:52:56', '15:56:52', '16:10:16', 631, 2532); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:54:33', '15:56:42', '16:00:51', 631, 2533); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:55:12', '15:57:33', '16:12:54', 631, 2534); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:56:32', '16:09:16', '16:20:27', 631, 2535); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:57:50', '15:58:54', '16:02:15', 627, 2536); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-14', '15:58:27', '15:58:42', '16:06:49', 631, 2537); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '09:01:16', '09:02:10', '09:32:00', 631, 2538); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '09:30:42', '09:30:48', '09:48:03', 627, 2539); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '09:31:23', '09:32:00', '09:41:56', 631, 2540); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '09:35:48', '09:36:02', '09:42:42', 627, 2541); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '09:35:54', '09:35:56', '09:49:59', 631, 2542); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '09:43:16', '09:43:17', '09:52:34', 631, 2543); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '09:43:54', '09:49:59', '11:53:23', 631, 2544); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '09:46:40', '09:46:43', '09:48:03', 627, 2545); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '09:47:40', '09:47:42', '10:10:24', 627, 2546); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '09:50:49', '09:52:34', '10:18:07', 631, 2547); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '09:57:18', '09:57:24', '10:07:47', 627, 2548); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '09:57:20', '09:58:19', '11:49:02', 631, 2549); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '09:58:25', '09:59:13', '10:20:43', 627, 2550); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:01:40', '10:01:43', '10:25:06', 627, 2551); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:03:03', '10:03:12', '11:05:52', 627, 2552); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:04:09', '10:04:25', '11:36:38', 627, 2553); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:06:47', '10:06:57', '10:40:13', 627, 2554); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:07:21', '10:10:26', '11:07:06', 627, 2555); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:11:43', '10:12:36', '10:26:50', 612, 2556); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:13:12', '10:18:07', '10:39:27', 631, 2557); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:17:01', '10:23:37', '10:48:09', 631, 2558); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:17:23', '10:24:25', '10:28:25', 631, 2559); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:20:48', '10:26:51', '10:52:07', 612, 2560); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:22:10', '10:22:11', '10:52:16', 612, 2561); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:22:58', '10:28:25', '10:47:58', 631, 2562); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:28:29', '10:29:12', '10:44:16', 627, 2563); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:32:06', '10:33:34', '13:12:51', 631, 2564); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:39:17', '10:39:27', '11:18:25', 631, 2565); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:44:26', '10:47:58', '11:01:52', 631, 2566); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:45:15', '10:48:35', '11:01:39', 612, 2567); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:47:19', '10:48:09', '12:00:26', 631, 2568); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:51:10', '10:52:07', '11:27:38', 612, 2569); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:55:02', '10:55:42', '11:26:41', 627, 2570); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '10:58:18', '10:58:24', '12:01:32', 627, 2571); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:00:31', '11:01:52', '11:10:07', 631, 2572); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:01:19', '11:01:40', '11:27:38', 612, 2573); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:05:23', '11:07:07', '11:29:00', 627, 2574); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:09:48', '11:10:08', '11:32:39', 631, 2575); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:11:51', '11:12:03', '11:40:51', 612, 2576); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:12:38', '11:18:25', '12:46:52', 631, 2577); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:13:57', '11:14:08', '11:21:29', 627, 2578); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:24:24', '11:30:31', '11:33:48', 631, 2579); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:26:02', '11:29:02', '12:53:31', 627, 2580); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:27:26', '11:27:38', '11:55:56', 612, 2581); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:27:53', '11:28:00', '12:37:10', 612, 2582); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:28:51', '11:28:59', '11:41:39', 612, 2583); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:29:53', '11:32:39', '11:56:50', 631, 2584); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:30:58', '11:41:39', '12:16:07', 612, 2585); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:33:52', '11:33:55', '12:06:29', 612, 2586); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:34:44', '11:41:34', '12:02:08', 627, 2587); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:36:07', '11:40:51', '12:15:33', 612, 2588); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:40:07', '11:42:13', '11:49:27', 627, 2589); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:41:54', '11:42:53', '11:47:40', 627, 2590); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:47:00', '11:49:19', '13:59:58', 627, 2591); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:48:49', '11:49:02', '12:54:56', 631, 2592); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:49:08', '11:49:25', '12:43:17', 627, 2593); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:53:27', '11:53:35', '12:58:01', 631, 2594); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:55:48', '11:55:56', '13:07:00', 612, 2595); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:56:10', '11:56:50', '12:09:09', 631, 2596); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '11:59:28', '12:00:26', '13:08:01', 631, 2597); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:00:37', '12:01:33', '12:16:00', 627, 2598); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:00:44', '12:04:05', '13:21:27', 631, 2599); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:00:59', '12:06:52', '12:10:28', 627, 2600); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:05:36', '12:08:37', '12:22:15', 627, 2601); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:08:44', '12:16:00', '12:41:06', 627, 2602); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:08:58', '12:09:10', '12:14:04', 631, 2603); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:09:30', '12:09:42', '12:31:11', 627, 2604); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:09:38', '12:14:05', '12:32:32', 631, 2605); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:12:59', '12:13:07', '12:15:43', 612, 2606); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:15:24', '12:15:33', '12:49:10', 612, 2607); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:16:01', '12:16:08', '13:11:25', 612, 2608); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:16:44', '12:18:20', '12:37:09', 612, 2609); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:22:55', '12:23:36', '15:33:49', 627, 2610); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:23:15', '12:23:24', '12:29:09', 612, 2611); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:23:38', '12:31:11', '12:36:08', 627, 2612); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:29:46', '12:34:22', '12:44:11', 627, 2613); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:31:00', '12:34:51', '13:00:03', 627, 2614); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:32:13', '12:32:32', '12:51:19', 631, 2615); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:37:03', '12:37:10', '12:52:34', 612, 2616); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:40:28', '12:41:07', '12:45:06', 627, 2617); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:41:14', '12:41:20', '12:48:01', 612, 2618); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:43:19', '12:46:52', '13:04:39', 631, 2619); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:47:16', '12:51:20', '13:20:34', 631, 2620); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:48:23', '12:53:32', '13:25:09', 627, 2621); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:48:31', '12:58:02', '13:33:36', 631, 2622); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:48:46', '12:49:10', '12:56:21', 612, 2623); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:48:58', '12:51:43', '13:06:17', 612, 2624); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:49:58', '12:50:04', '13:02:30', 627, 2625); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:52:24', '12:52:35', '13:16:32', 612, 2626); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:53:28', '12:54:52', '12:56:13', 627, 2627); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:54:10', '12:54:56', '13:06:17', 631, 2628); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:54:38', '12:54:51', '14:05:08', 612, 2629); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:55:33', '12:56:21', '13:16:36', 612, 2630); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:55:44', '12:56:13', '13:03:03', 627, 2631); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:57:58', '13:04:39', '14:06:22', 631, 2632); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '12:58:21', '13:08:01', '13:54:42', 631, 2633); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:02:37', '13:25:09', '15:43:19', 627, 2634); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:03:42', '13:03:52', '13:19:33', 627, 2635); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:04:35', '13:07:00', '13:12:52', 612, 2636); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:05:32', '13:06:18', '13:07:42', 631, 2637); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:06:10', '13:11:25', '13:13:15', 612, 2638); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:06:15', '13:15:39', '14:19:54', 627, 2639); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:06:42', '13:07:42', '13:33:11', 631, 2640); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:07:17', '13:13:15', '13:20:35', 612, 2641); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:08:53', '13:15:40', '13:56:55', 627, 2642); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:12:00', '13:12:51', '13:41:16', 631, 2643); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:12:06', '13:12:52', '13:27:00', 612, 2644); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:13:49', '13:14:26', '13:29:19', 631, 2645); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:15:22', '13:19:00', '13:24:23', 627, 2646); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:15:45', '13:16:32', '13:52:09', 612, 2647); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:16:24', '13:16:36', '13:38:24', 612, 2648); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:19:41', '13:20:34', '13:57:39', 631, 2649); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:19:44', '13:20:36', '13:38:44', 612, 2650); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:20:15', '13:21:27', '13:31:24', 631, 2651); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:22:55', '13:29:20', '13:48:48', 631, 2652); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:23:13', '13:31:25', '13:58:32', 631, 2653); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:25:03', '13:27:00', '13:53:39', 612, 2654); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:31:32', '13:33:11', '13:42:25', 631, 2655); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:32:40', '13:38:44', '13:58:45', 612, 2656); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:33:24', '13:33:36', '14:17:38', 631, 2657); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:35:36', '13:38:30', '14:06:58', 627, 2658); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:35:44', '13:38:24', '13:51:49', 612, 2659); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:39:38', '13:48:49', '14:01:35', 631, 2660); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:39:55', '13:40:05', '13:59:47', 627, 2661); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:40:04', '13:59:59', '14:12:26', 627, 2662); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:41:11', '13:41:13', '14:13:15', 612, 2663); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:43:55', '13:45:49', '14:03:22', 627, 2664); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:47:38', '13:47:44', '14:09:58', 612, 2665); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:49:14', '13:51:50', '14:31:14', 612, 2666); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:49:52', '13:53:39', '15:23:33', 612, 2667); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:50:36', '13:54:42', '14:09:46', 631, 2668); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:51:22', '13:58:46', '14:13:07', 612, 2669); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:52:02', '13:52:10', '14:20:59', 612, 2670); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:52:42', '13:57:39', '14:28:40', 631, 2671); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:57:52', '14:06:22', '16:19:08', 631, 2672); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '13:58:26', '14:07:10', '14:28:57', 631, 2673); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:01:38', '14:09:46', '14:37:36', 631, 2674); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:02:12', '14:02:34', '15:36:44', 631, 2675); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:04:39', '14:05:08', '14:39:40', 612, 2676); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:06:33', '14:06:43', '14:11:51', 627, 2677); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:10:05', '14:12:26', '15:43:58', 627, 2678); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:10:37', '14:11:51', '14:22:26', 627, 2679); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:11:20', '14:17:38', '14:24:34', 631, 2680); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:12:54', '14:13:07', '15:11:36', 612, 2681); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:15:28', '14:20:59', '14:26:19', 612, 2682); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:16:27', '14:16:43', '14:21:10', 627, 2683); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:16:37', '14:24:35', '14:43:02', 631, 2684); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:19:29', '14:28:40', '14:48:07', 631, 2685); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:22:45', '14:22:46', '15:04:01', 612, 2686); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:26:04', '14:35:28', '15:32:01', 631, 2687); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:26:27', '14:31:14', '14:37:47', 612, 2688); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:27:23', '14:39:12', '14:58:29', 631, 2689); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:28:42', '14:37:37', '14:44:47', 631, 2690); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:30:41', '14:39:38', '15:48:33', 631, 2691); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:32:18', '14:40:08', '16:01:03', 631, 2692); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:33:40', '14:43:02', '14:57:35', 631, 2693); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:34:06', '14:37:48', '15:28:58', 612, 2694); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:35:21', '14:44:47', '14:53:25', 631, 2695); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:36:57', '14:39:41', '15:24:45', 612, 2696); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:44:46', '14:44:57', '14:59:29', 627, 2697); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:45:15', '14:48:07', '15:22:43', 631, 2698); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:46:47', '14:53:26', '15:05:00', 631, 2699); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:51:15', '14:51:19', '14:53:43', 612, 2700); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:51:56', '14:52:32', '15:23:21', 627, 2701); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:52:03', '14:53:12', '15:30:41', 631, 2702); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:56:40', '14:57:35', '15:15:10', 631, 2703); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:57:37', '14:58:29', '15:11:51', 631, 2704); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:59:17', '14:59:34', '15:04:39', 612, 2705); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '14:59:36', '15:05:00', '15:07:00', 631, 2706); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:03:28', '15:03:41', '15:41:46', 612, 2707); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:04:30', '15:07:00', '15:26:26', 631, 2708); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:04:57', '15:11:51', '16:01:47', 631, 2709); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:05:27', '15:15:10', '15:25:04', 631, 2710); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:09:40', '15:11:36', '15:34:45', 612, 2711); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:18:35', '15:25:05', '15:34:39', 631, 2712); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:19:24', '15:19:30', '15:20:38', 612, 2713); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:20:33', '15:20:47', '15:47:20', 627, 2714); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:21:20', '15:26:26', '15:52:57', 631, 2715); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:22:19', '15:23:33', '15:57:45', 612, 2716); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:22:54', '15:23:39', '16:58:42', 627, 2717); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:23:17', '15:24:45', '15:34:19', 612, 2718); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:24:13', '15:33:49', '15:35:27', 627, 2719); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:28:22', '15:28:59', '15:58:29', 612, 2720); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:28:53', '15:34:19', '15:57:49', 612, 2721); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:29:48', '15:32:02', '16:01:38', 631, 2722); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:30:04', '15:34:45', '15:57:48', 612, 2723); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:30:04', '15:30:41', '16:01:40', 631, 2724); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:30:35', '15:34:40', '15:58:21', 631, 2725); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:31:40', '15:31:49', '15:58:13', 612, 2726); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:36:27', '15:36:45', '16:10:18', 631, 2727); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:42:18', '15:43:19', '16:58:40', 627, 2728); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:47:08', '15:47:17', '16:18:33', 627, 2729); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:49:36', '15:49:51', '16:05:22', 631, 2730); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:51:44', '15:52:57', '16:09:18', 631, 2731); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:53:12', '15:58:22', '16:00:57', 631, 2732); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-15', '15:54:48', '15:54:48', '16:58:41', 627, 2733); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:03:41', '09:08:14', '09:15:09', 631, 2734); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:09:06', '09:15:10', '09:23:25', 631, 2735); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:11:01', '09:12:09', '09:23:50', 627, 2736); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:15:58', '09:16:16', '13:24:48', 631, 2737); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:20:24', '09:23:50', '10:01:23', 627, 2738); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:23:01', '09:23:13', '11:17:39', 612, 2739); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:24:40', '09:24:48', '09:57:52', 631, 2740); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:28:43', '09:28:48', '10:04:31', 612, 2741); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:32:05', '09:32:18', '12:12:22', 612, 2742); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:40:34', '09:43:27', '10:22:19', 631, 2743); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:43:16', '09:52:37', '16:39:13', 631, 2744); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:43:56', '09:54:29', '10:02:34', 631, 2745); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:50:08', '09:50:30', '10:09:14', 627, 2746); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:50:26', '09:57:53', '10:35:38', 631, 2747); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:51:36', '09:59:22', '10:23:00', 627, 2748); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:55:25', '10:02:34', '13:14:58', 631, 2749); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '09:59:26', '10:01:17', '10:05:27', 612, 2750); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '10:00:38', '10:02:47', '10:12:18', 627, 2751); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '10:04:00', '10:04:31', '11:15:56', 612, 2752); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '10:09:46', '10:11:36', '10:38:51', 627, 2753); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '10:13:38', '10:15:27', '10:39:20', 631, 2754); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '10:14:10', '10:22:19', '10:52:23', 631, 2755); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '10:33:38', '10:35:38', '11:09:22', 631, 2756); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '10:38:18', '10:39:21', '11:13:54', 631, 2757); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '10:38:22', '10:40:00', '11:01:11', 627, 2758); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '10:46:11', '10:46:17', '11:47:03', 612, 2759); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '10:53:01', '10:53:04', '11:23:33', 631, 2760); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '10:57:31', '10:57:57', '11:23:13', 627, 2761); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '10:59:00', '10:59:06', '11:03:14', 612, 2762); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:01:48', '11:01:48', '13:22:39', 627, 2763); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:04:05', '11:04:10', '11:57:24', 612, 2764); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:04:38', '11:10:43', '11:49:19', 627, 2765); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:07:09', '11:09:22', '11:58:47', 631, 2766); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:10:49', '11:13:54', '12:13:52', 631, 2767); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:11:52', '11:12:01', '11:28:15', 627, 2768); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:16:13', '11:16:18', '11:20:09', 612, 2769); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:17:33', '11:17:39', '11:21:05', 612, 2770); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:18:09', '11:18:26', '11:24:30', 612, 2771); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:20:03', '11:21:05', '12:10:24', 612, 2772); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:20:20', '11:24:31', '11:44:57', 612, 2773); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:23:42', '11:23:43', '13:56:47', 631, 2774); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:24:45', '11:24:55', '12:59:33', 627, 2775); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:25:23', '11:28:15', '11:38:07', 627, 2776); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:30:34', '11:31:50', '13:22:01', 631, 2777); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:34:51', '11:35:06', '12:40:25', 627, 2778); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:37:42', '11:38:07', '11:44:56', 627, 2779); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:47:24', '11:50:04', '12:00:38', 627, 2780); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:48:41', '11:49:19', '12:44:07', 627, 2781); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:49:42', '11:50:31', '12:15:33', 627, 2782); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:50:48', '11:50:50', '12:40:22', 612, 2783); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:54:14', '11:54:20', '12:12:17', 612, 2784); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:54:44', '11:57:24', '12:52:34', 612, 2785); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '11:57:02', '11:57:08', '11:59:38', 612, 2786); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:00:20', '12:00:39', '12:14:58', 627, 2787); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:06:00', '12:06:36', '13:16:36', 631, 2788); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:06:13', '12:14:58', '12:22:50', 627, 2789); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:10:16', '12:10:24', '12:51:26', 612, 2790); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:12:12', '12:12:22', '12:27:41', 612, 2791); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:13:35', '12:13:52', '12:18:31', 631, 2792); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:17:55', '12:18:32', '13:00:11', 631, 2793); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:18:46', '12:27:41', '12:51:01', 612, 2794); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:23:49', '12:30:38', '15:40:01', 631, 2795); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:25:15', '12:34:16', '13:05:56', 631, 2796); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:25:50', '12:25:52', '12:35:38', 627, 2797); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:35:30', '12:35:33', '13:52:45', 627, 2798); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:35:50', '12:35:59', '12:44:12', 627, 2799); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:38:59', '12:40:22', '13:25:35', 612, 2800); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:41:12', '12:44:12', '13:03:53', 627, 2801); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:41:32', '12:41:37', '17:38:54', 631, 2802); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:43:05', '12:44:07', '14:51:21', 627, 2803); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:43:52', '12:43:58', '12:51:42', 612, 2804); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:44:12', '12:51:02', '13:06:40', 612, 2805); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:46:06', '12:46:13', '13:44:06', 627, 2806); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:50:31', '12:51:26', '13:12:37', 612, 2807); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:51:12', '12:52:34', '13:20:27', 612, 2808); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:51:23', '12:51:29', '13:02:03', 612, 2809); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:58:37', '13:02:04', '13:39:55', 612, 2810); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '12:59:25', '12:59:33', '14:09:07', 627, 2811); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:00:01', '13:00:12', '13:18:12', 631, 2812); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:03:30', '13:05:56', '15:34:46', 631, 2813); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:06:31', '13:06:41', '14:07:48', 612, 2814); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:11:41', '13:22:02', '13:57:23', 631, 2815); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:12:06', '13:12:37', '13:41:50', 612, 2816); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:15:40', '13:16:36', '14:24:13', 631, 2817); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:20:34', '13:20:47', '14:31:14', 612, 2818); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:22:20', '13:24:48', '14:19:40', 631, 2819); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:22:30', '13:22:39', '13:46:57', 627, 2820); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:25:30', '13:25:36', '13:54:51', 612, 2821); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:28:15', '13:29:55', '13:40:54', 627, 2822); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:32:36', '13:35:39', '13:49:02', 627, 2823); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:35:51', '13:36:57', '13:38:28', 627, 2824); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:38:38', '13:38:51', '14:04:40', 631, 2825); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:39:33', '13:39:36', '14:14:00', 627, 2826); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:41:42', '13:41:50', '14:00:47', 612, 2827); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:43:55', '13:52:45', '14:10:24', 627, 2828); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:44:40', '13:46:57', '14:39:27', 627, 2829); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:45:15', '13:45:23', '14:14:44', 627, 2830); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:50:43', '13:52:39', '14:23:22', 631, 2831); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:52:05', '13:57:24', '16:05:22', 631, 2832); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:54:44', '13:54:52', '14:14:26', 612, 2833); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:55:53', '13:56:01', '14:05:21', 627, 2834); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:57:02', '14:04:40', '14:30:56', 631, 2835); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '13:57:11', '13:57:17', '14:37:22', 612, 2836); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:00:39', '14:00:47', '14:43:00', 612, 2837); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:01:39', '14:01:43', '14:05:48', 612, 2838); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:02:24', '14:05:22', '14:09:08', 627, 2839); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:07:30', '14:07:49', '14:37:51', 612, 2840); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:10:22', '14:14:44', '14:43:40', 627, 2841); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:14:16', '14:14:26', '14:23:30', 612, 2842); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:15:04', '14:19:14', '14:32:38', 627, 2843); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:17:44', '14:24:13', '15:17:33', 631, 2844); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:18:12', '14:24:15', '15:09:24', 612, 2845); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:18:44', '14:18:45', '14:33:26', 612, 2846); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:19:37', '14:19:39', '14:38:56', 631, 2847); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:20:52', '14:31:14', '14:39:47', 612, 2848); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:23:15', '14:23:22', '14:49:36', 631, 2849); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:23:36', '14:37:22', '14:48:05', 612, 2850); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:23:48', '14:30:57', '14:39:21', 631, 2851); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:25:34', '14:25:39', '15:47:51', 631, 2852); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:26:16', '14:34:56', '16:00:28', 631, 2853); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:29:46', '14:37:51', '14:43:32', 612, 2854); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:30:14', '14:30:26', '14:41:31', 612, 2855); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:36:27', '14:40:18', '14:57:30', 612, 2856); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:38:20', '14:38:56', '14:47:55', 631, 2857); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:38:58', '14:39:21', '14:57:56', 631, 2858); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:39:03', '14:39:28', '14:56:41', 627, 2859); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:39:24', '14:47:55', '16:55:01', 631, 2860); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:41:00', '14:43:32', '14:45:39', 612, 2861); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:42:18', '14:43:00', '15:05:30', 612, 2862); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:43:16', '14:45:41', '14:49:22', 612, 2863); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:43:47', '14:48:05', '15:45:18', 612, 2864); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:45:01', '14:57:30', '15:24:13', 612, 2865); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:45:09', '14:45:12', '14:58:39', 612, 2866); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:46:59', '14:47:05', '15:33:14', 627, 2867); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:47:07', '14:49:22', '15:05:22', 612, 2868); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:48:09', '15:05:22', '15:39:51', 612, 2869); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:49:25', '14:49:36', '14:57:05', 631, 2870); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:49:40', '14:51:22', '16:08:20', 627, 2871); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:49:55', '14:57:05', '15:08:59', 631, 2872); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:50:19', '14:50:21', '14:56:25', 627, 2873); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:50:51', '14:56:26', '15:04:45', 627, 2874); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:51:28', '15:05:30', '15:37:01', 612, 2875); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:52:05', '14:56:42', '16:11:07', 627, 2876); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:52:58', '14:57:57', '15:01:11', 631, 2877); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:55:40', '15:01:11', '15:05:51', 631, 2878); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:56:04', '15:05:51', '15:33:16', 631, 2879); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '14:57:30', '15:01:48', '15:12:27', 627, 2880); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:00:44', '15:04:46', '15:10:10', 627, 2881); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:02:55', '15:09:24', '15:34:46', 612, 2882); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:06:20', '15:10:10', '15:33:21', 627, 2883); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:08:57', '15:09:00', '15:19:04', 631, 2884); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:09:14', '15:20:06', '15:48:39', 627, 2885); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:09:21', '15:17:34', '15:32:23', 631, 2886); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:11:20', '15:24:14', '15:27:29', 612, 2887); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:17:59', '15:23:52', '16:07:56', 627, 2888); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:18:24', '15:19:05', '15:25:31', 631, 2889); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:18:40', '15:18:47', '15:28:35', 612, 2890); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:22:33', '15:22:37', '15:30:40', 627, 2891); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:22:39', '15:25:31', '15:43:25', 631, 2892); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:22:56', '15:29:31', '15:34:30', 627, 2893); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:24:59', '15:27:30', '15:42:34', 612, 2894); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:26:45', '15:33:15', '16:05:37', 627, 2895); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:27:49', '15:33:21', '15:41:00', 627, 2896); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:28:23', '15:30:44', '15:38:04', 627, 2897); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:29:10', '15:33:17', '16:02:44', 631, 2898); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:30:07', '15:32:24', '16:07:12', 631, 2899); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:31:07', '15:38:04', '15:51:29', 627, 2900); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:31:48', '15:40:01', '16:05:06', 631, 2901); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:33:32', '15:34:46', '15:45:38', 631, 2902); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:34:32', '15:34:46', '15:46:30', 612, 2903); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:34:43', '15:43:25', '15:57:25', 631, 2904); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:35:16', '15:37:01', '15:58:30', 612, 2905); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:39:21', '15:39:52', '15:41:08', 612, 2906); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:39:44', '15:41:09', '15:54:25', 612, 2907); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:40:00', '15:45:39', '16:05:19', 631, 2908); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:40:16', '15:45:18', '15:58:42', 612, 2909); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:42:26', '15:42:34', '15:59:02', 612, 2910); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:43:09', '15:47:30', '16:20:28', 612, 2911); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:44:45', '15:48:35', '15:49:49', 627, 2912); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:46:13', '15:49:50', '15:58:00', 627, 2913); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:47:53', '15:57:25', '15:58:58', 631, 2914); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:50:01', '15:57:46', '16:04:53', 627, 2915); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '15:51:17', '16:00:29', '16:05:23', 631, 2916); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-16', '16:03:24', '16:04:53', '16:07:59', 627, 2917); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '08:59:10', '09:01:04', '09:39:11', 612, 2918); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '08:59:18', '09:01:26', '10:45:05', 612, 2919); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '09:20:46', '09:20:51', '09:27:28', 612, 2920); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '09:39:05', '09:39:13', '09:42:42', 612, 2921); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '09:39:52', '09:39:56', '11:19:49', 631, 2922); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '09:40:42', '09:41:31', '09:47:45', 631, 2923); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:02:52', '10:02:56', '10:18:16', 631, 2924); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:06:12', '10:06:22', '10:45:02', 612, 2925); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:13:17', '10:13:19', '11:40:58', 612, 2926); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:13:36', '10:13:36', '11:41:26', 631, 2927); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:18:24', '10:18:27', '10:50:45', 631, 2928); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:20:41', '10:24:32', '10:28:43', 627, 2929); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:20:59', '10:21:04', '10:22:27', 612, 2930); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:21:22', '10:22:27', '11:15:47', 612, 2931); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:29:18', '10:29:20', '10:50:15', 627, 2932); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:30:22', '10:32:54', '11:35:07', 631, 2933); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:34:19', '10:34:21', '10:52:12', 627, 2934); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:35:03', '10:36:57', '10:55:08', 627, 2935); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:39:53', '10:39:58', '10:49:03', 631, 2936); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:41:26', '10:41:29', '12:29:20', 631, 2937); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:44:30', '10:50:15', '11:03:58', 627, 2938); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:44:55', '10:45:05', '13:31:37', 612, 2939); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:46:14', '10:49:03', '11:36:18', 631, 2940); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:48:20', '10:50:45', '12:32:23', 631, 2941); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '10:50:56', '10:51:04', '11:02:49', 612, 2942); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:03:25', '11:04:09', '11:23:45', 627, 2943); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:08:18', '11:08:23', '11:12:55', 612, 2944); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:10:30', '11:10:33', '11:34:46', 627, 2945); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:12:45', '11:12:55', '11:23:15', 612, 2946); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:15:40', '11:15:47', '11:44:05', 612, 2947); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:16:42', '11:19:49', '11:50:18', 631, 2948); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:19:20', '11:19:29', '11:25:42', 627, 2949); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:23:36', '11:25:00', '11:38:55', 612, 2950); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:25:01', '11:25:42', '11:33:39', 627, 2951); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:33:20', '11:33:49', '11:43:50', 627, 2952); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:34:17', '11:36:18', '12:22:10', 631, 2953); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:34:34', '11:35:07', '11:40:14', 631, 2954); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:35:58', '11:40:14', '11:59:57', 631, 2955); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:40:44', '11:40:46', '12:06:37', 612, 2956); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:41:01', '11:41:10', '11:53:33', 612, 2957); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:41:13', '11:41:26', '12:23:56', 631, 2958); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:42:29', '11:44:00', '12:19:27', 627, 2959); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:42:31', '11:44:05', '11:51:42', 612, 2960); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:46:02', '11:46:06', '12:35:58', 612, 2961); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:47:12', '11:51:42', '13:14:51', 612, 2962); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:47:15', '11:47:17', '11:54:28', 627, 2963); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:47:46', '11:47:50', '12:13:31', 627, 2964); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:48:51', '11:50:18', '13:15:56', 631, 2965); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:54:00', '11:54:28', '11:59:09', 627, 2966); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:56:17', '11:56:21', '12:19:53', 612, 2967); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:58:47', '12:01:36', '13:07:27', 631, 2968); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:59:12', '12:17:02', '13:01:01', 627, 2969); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '11:59:34', '11:59:57', '12:12:33', 631, 2970); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:02:43', '12:06:37', '12:22:48', 612, 2971); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:09:10', '12:12:34', '12:20:33', 631, 2972); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:09:11', '12:09:21', '12:40:49', 627, 2973); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:15:21', '12:19:53', '12:24:41', 612, 2974); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:19:10', '12:22:49', '12:34:46', 612, 2975); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:20:18', '12:24:42', '12:29:46', 612, 2976); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:20:54', '12:29:46', '13:32:24', 612, 2977); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:21:10', '12:24:08', '12:34:44', 627, 2978); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:21:40', '12:22:10', '12:40:45', 631, 2979); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:22:57', '12:23:41', '12:29:15', 631, 2980); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:23:43', '12:23:48', '13:09:27', 627, 2981); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:26:24', '12:34:46', '13:02:03', 612, 2982); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:28:33', '12:35:59', '12:56:34', 612, 2983); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:29:04', '12:29:06', '12:35:21', 627, 2984); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:29:12', '12:29:20', '13:12:06', 631, 2985); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:29:27', '12:34:47', '12:47:15', 627, 2986); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:29:53', '12:32:24', '12:36:13', 631, 2987); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:30:10', '12:33:05', '13:05:52', 631, 2988); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:34:25', '12:35:48', '12:58:48', 627, 2989); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:35:26', '12:40:50', '13:12:16', 627, 2990); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:36:44', '12:36:44', '12:43:45', 631, 2991); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:38:14', '12:40:45', '12:49:57', 631, 2992); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:39:48', '12:39:52', '12:58:57', 627, 2993); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:41:56', '12:43:46', '13:01:39', 631, 2994); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:45:54', '12:49:57', '13:17:30', 631, 2995); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:51:49', '12:51:59', '12:53:24', 627, 2996); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:56:06', '12:56:34', '13:04:05', 612, 2997); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:58:12', '13:01:40', '13:35:03', 631, 2998); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '12:58:13', '12:58:15', '13:07:32', 627, 2999); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:00:14', '13:02:04', '13:22:51', 612, 3000); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:01:24', '13:07:27', '13:26:46', 631, 3001); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:02:24', '13:06:44', '13:45:40', 627, 3002); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:03:52', '13:03:55', '13:13:51', 612, 3003); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:06:04', '13:10:58', '13:35:08', 631, 3004); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:07:02', '13:12:06', '14:53:47', 631, 3005); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:08:54', '13:08:56', '13:45:09', 612, 3006); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:09:04', '13:09:27', '13:40:14', 627, 3007); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:11:47', '13:23:12', '13:37:07', 631, 3008); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:12:02', '13:12:16', '14:12:21', 627, 3009); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:13:07', '13:13:16', '13:15:50', 612, 3010); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:13:57', '13:15:56', '13:47:23', 631, 3011); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:14:47', '13:14:51', '14:10:56', 612, 3012); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:15:51', '13:17:31', '14:08:04', 631, 3013); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:19:22', '13:26:46', '13:40:15', 631, 3014); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:22:33', '13:22:52', '13:43:13', 612, 3015); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:23:41', '13:32:24', '13:47:48', 612, 3016); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:24:57', '13:25:02', '13:27:30', 612, 3017); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:25:11', '13:31:32', '14:01:11', 631, 3018); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:25:43', '13:26:39', '13:50:09', 627, 3019); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:25:57', '13:35:31', '13:51:01', 627, 3020); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:26:16', '13:26:18', '13:36:13', 627, 3021); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:28:10', '13:35:03', '13:44:15', 631, 3022); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:30:59', '13:32:21', '14:00:47', 627, 3023); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:31:29', '13:31:38', '13:44:14', 612, 3024); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:32:26', '13:36:13', '13:46:29', 627, 3025); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:34:19', '13:35:08', '14:01:02', 631, 3026); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:34:56', '13:44:07', '14:03:40', 612, 3027); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:36:08', '13:37:07', '13:38:18', 631, 3028); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:36:16', '13:38:18', '13:46:13', 631, 3029); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:40:28', '13:44:15', '13:50:13', 612, 3030); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:40:37', '13:44:15', '13:46:18', 631, 3031); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:41:06', '13:46:13', '13:58:14', 631, 3032); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:41:09', '13:41:16', '13:45:21', 612, 3033); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:41:21', '13:43:04', '14:04:41', 627, 3034); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:41:27', '13:45:09', '13:59:33', 612, 3035); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:43:23', '13:47:48', '13:58:47', 612, 3036); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:44:00', '13:46:19', '15:02:44', 631, 3037); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:44:51', '13:46:30', '14:06:23', 627, 3038); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:45:14', '13:57:38', '14:01:39', 612, 3039); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:45:35', '13:45:35', '15:25:50', 627, 3040); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:45:42', '13:50:14', '14:16:01', 612, 3041); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:53:20', '14:01:02', '14:14:50', 631, 3042); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:54:56', '13:58:47', '14:01:44', 612, 3043); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:56:10', '13:58:14', '14:51:06', 631, 3044); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:59:15', '14:01:39', '14:06:31', 612, 3045); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '13:59:56', '14:02:03', '14:19:14', 631, 3046); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:00:33', '14:08:04', '14:50:51', 631, 3047); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:01:51', '14:01:52', '14:10:49', 627, 3048); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:02:21', '14:04:41', '14:10:56', 627, 3049); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:02:33', '14:02:34', '14:35:21', 612, 3050); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:03:36', '14:03:45', '14:46:55', 612, 3051); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:04:11', '14:10:49', '14:16:51', 627, 3052); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:04:55', '14:12:21', '14:36:07', 627, 3053); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:05:39', '14:14:50', '14:15:50', 631, 3054); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:06:19', '14:06:31', '14:16:00', 612, 3055); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:07:23', '14:10:58', '15:51:43', 612, 3056); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:10:10', '14:15:50', '15:18:17', 631, 3057); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:10:38', '14:11:22', '14:16:55', 627, 3058); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:11:14', '14:11:22', '14:19:45', 612, 3059); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:13:28', '14:18:18', '14:36:16', 631, 3060); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:14:13', '14:16:52', '14:35:49', 627, 3061); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:15:51', '14:16:00', '15:51:43', 612, 3062); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:16:58', '14:19:14', '14:46:24', 631, 3063); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:17:14', '14:20:43', '14:46:32', 612, 3064); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:20:31', '14:20:36', '15:24:56', 612, 3065); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:21:51', '14:29:55', '14:37:12', 627, 3066); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:23:53', '14:32:54', '14:42:52', 627, 3067); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:25:36', '14:25:41', '14:27:24', 612, 3068); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:26:13', '14:26:21', '14:35:10', 612, 3069); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:32:19', '14:35:50', '14:56:45', 627, 3070); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:34:45', '14:36:07', '15:08:46', 627, 3071); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:37:06', '14:37:12', '14:53:57', 627, 3072); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:40:49', '14:40:53', '14:56:43', 631, 3073); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:41:09', '14:44:22', '14:51:49', 627, 3074); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:43:31', '14:45:31', '15:16:47', 627, 3075); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:44:15', '14:53:58', '15:33:40', 627, 3076); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:46:01', '14:46:24', '15:03:06', 631, 3077); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:46:22', '14:51:06', '15:27:15', 631, 3078); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:46:45', '14:46:54', '14:54:17', 612, 3079); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:47:34', '14:53:47', '15:00:01', 631, 3080); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:48:08', '14:51:49', '14:59:29', 627, 3081); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:49:03', '14:49:06', '14:53:04', 612, 3082); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:52:30', '14:59:29', '15:03:56', 627, 3083); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:52:45', '14:59:30', '15:03:33', 627, 3084); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:52:50', '14:53:04', '14:57:17', 612, 3085); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:53:12', '14:56:43', '15:31:23', 631, 3086); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:53:48', '14:54:18', '14:59:50', 612, 3087); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:54:18', '14:57:18', '15:04:53', 612, 3088); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:54:18', '15:00:02', '15:20:44', 631, 3089); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:54:52', '14:59:51', '15:13:15', 612, 3090); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:55:22', '15:00:38', '15:51:43', 612, 3091); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:55:38', '15:02:23', '15:08:12', 627, 3092); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:55:53', '15:03:35', '15:19:45', 627, 3093); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:56:57', '15:02:44', '15:12:06', 631, 3094); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:57:29', '15:06:37', '15:12:15', 627, 3095); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:59:01', '15:04:55', '15:06:50', 612, 3096); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:59:03', '15:03:37', '15:18:18', 631, 3097); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '14:59:51', '15:27:15', '15:44:39', 631, 3098); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:00:17', '15:08:46', '16:01:42', 627, 3099); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:02:28', '15:06:50', '15:15:17', 612, 3100); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:02:58', '15:13:16', '15:51:43', 612, 3101); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:05:11', '15:12:06', '16:11:52', 631, 3102); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:06:55', '15:08:12', '15:15:53', 627, 3103); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:07:12', '15:14:53', '15:21:07', 627, 3104); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:08:12', '15:16:48', '15:26:03', 627, 3105); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:11:41', '15:18:17', '16:11:15', 631, 3106); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:12:08', '15:19:45', '15:45:59', 627, 3107); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:12:41', '15:15:22', '15:51:43', 612, 3108); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:12:43', '15:21:08', '15:48:52', 627, 3109); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:13:57', '15:18:19', '15:29:04', 631, 3110); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:15:11', '15:26:03', '15:43:31', 627, 3111); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:16:24', '15:19:39', '15:53:31', 631, 3112); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:17:07', '15:20:45', '15:53:55', 631, 3113); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:24:48', '15:25:51', '16:08:11', 627, 3114); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:25:09', '15:33:40', '15:49:46', 627, 3115); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:27:56', '15:29:04', '15:57:35', 631, 3116); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:28:40', '15:31:24', '15:38:21', 631, 3117); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:29:47', '15:41:36', '15:47:05', 627, 3118); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:30:50', '15:30:57', '16:13:07', 631, 3119); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:31:18', '15:43:32', '16:09:52', 627, 3120); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:31:19', '15:38:22', '15:59:37', 631, 3121); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:41:26', '15:45:42', '15:58:01', 631, 3122); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:43:29', '15:46:00', '16:04:53', 627, 3123); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:46:19', '15:48:53', '16:05:44', 627, 3124); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:53:11', '15:53:31', '16:14:50', 631, 3125); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:53:41', '15:53:56', '16:11:23', 631, 3126); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:55:41', '15:56:24', '16:08:46', 627, 3127); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:55:55', '15:57:36', '16:10:04', 631, 3128); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '15:59:16', '15:59:37', '16:06:40', 631, 3129); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-17', '16:02:50', '16:06:40', '16:12:29', 631, 3130); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:00:02', '10:00:22', '10:07:20', 612, 3131); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:00:16', '10:00:27', '10:16:41', 612, 3132); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:00:25', '10:07:21', '11:56:58', 612, 3133); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:02:10', '10:11:45', '10:15:17', 612, 3134); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:02:57', '10:03:00', '10:11:03', 631, 3135); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:03:33', '10:03:41', '10:55:42', 631, 3136); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:04:10', '10:06:28', '10:16:42', 612, 3137); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:08:45', '10:11:03', '11:11:37', 631, 3138); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:10:12', '10:11:16', '14:42:32', 631, 3139); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:14:27', '10:15:18', '10:52:33', 612, 3140); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:16:35', '10:16:42', '10:27:11', 612, 3141); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:21:43', '10:21:44', '14:24:51', 612, 3142); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:25:16', '10:25:19', '11:01:48', 612, 3143); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:26:14', '10:44:36', '11:12:47', 627, 3144); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:26:27', '10:46:57', '13:43:20', 627, 3145); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:27:05', '10:27:12', '11:17:27', 612, 3146); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:32:51', '10:45:50', '11:22:53', 627, 3147); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:36:41', '10:47:31', '11:01:29', 627, 3148); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:39:14', '10:39:17', '11:00:32', 631, 3149); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:44:13', '10:53:51', '11:29:14', 627, 3150); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:46:57', '10:48:14', '11:11:36', 631, 3151); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:52:24', '10:52:33', '12:54:57', 612, 3152); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:53:03', '11:01:29', '11:10:54', 627, 3153); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:55:30', '10:55:42', '12:04:02', 631, 3154); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '10:58:50', '11:00:33', '11:33:38', 631, 3155); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '11:01:44', '11:01:49', '11:39:14', 612, 3156); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '11:10:35', '11:11:37', '11:50:52', 631, 3157); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '11:16:45', '11:16:49', '12:44:21', 631, 3158); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '11:17:15', '11:17:27', '11:58:53', 612, 3159); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '11:21:45', '11:21:59', '15:05:54', 612, 3160); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '11:33:40', '11:33:49', '12:27:50', 631, 3161); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '11:43:11', '11:43:15', '12:13:08', 627, 3162); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '11:50:01', '11:50:53', '12:43:06', 631, 3163); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '11:57:13', '11:57:18', '12:45:37', 612, 3164); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '11:58:07', '11:58:54', '14:18:41', 612, 3165); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '12:03:35', '12:04:02', '12:15:58', 631, 3166); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '12:15:46', '12:15:58', '12:34:57', 631, 3167); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '12:20:43', '12:20:49', '12:30:57', 627, 3168); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '12:26:17', '12:27:12', '13:05:34', 627, 3169); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '12:28:05', '12:28:11', '13:01:11', 631, 3170); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '12:33:48', '12:34:57', '13:31:17', 631, 3171); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '12:35:00', '12:45:37', '13:20:05', 612, 3172); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '12:42:55', '12:43:07', '13:02:22', 631, 3173); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '12:43:17', '12:44:21', '13:22:01', 631, 3174); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '12:54:48', '12:54:57', '12:56:17', 612, 3175); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '12:55:26', '12:56:18', '13:46:26', 612, 3176); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:00:18', '13:00:33', '13:35:17', 631, 3177); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:00:41', '13:01:12', '13:08:27', 631, 3178); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:02:18', '13:02:22', '13:16:55', 631, 3179); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:05:00', '13:08:27', '14:29:37', 631, 3180); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:06:55', '13:07:25', '13:11:55', 627, 3181); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:08:12', '13:10:10', '13:37:46', 627, 3182); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:09:21', '13:11:55', '13:28:21', 627, 3183); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:16:16', '13:16:55', '13:35:14', 631, 3184); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:20:11', '13:20:16', '13:59:33', 612, 3185); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:29:59', '13:31:38', '14:06:10', 627, 3186); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:31:08', '13:31:17', '13:51:58', 631, 3187); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:34:27', '13:35:14', '13:41:37', 631, 3188); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:34:54', '13:35:18', '14:02:34', 631, 3189); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:35:18', '13:37:30', '13:43:10', 627, 3190); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:37:06', '13:43:11', '13:48:54', 627, 3191); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:38:35', '13:48:54', '14:07:25', 627, 3192); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:41:02', '13:41:37', '13:49:32', 631, 3193); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:43:13', '13:45:57', '14:08:18', 631, 3194); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:44:46', '13:49:33', '14:18:27', 631, 3195); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:45:34', '13:46:27', '14:02:44', 612, 3196); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:46:38', '13:50:00', '13:51:39', 627, 3197); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:49:17', '13:51:40', '14:01:06', 627, 3198); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:51:39', '13:51:59', '13:58:45', 631, 3199); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:52:08', '14:01:06', '14:03:48', 627, 3200); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:54:18', '13:58:45', '14:06:51', 631, 3201); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:54:52', '14:02:35', '14:12:43', 631, 3202); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '13:57:59', '14:03:48', '14:08:51', 627, 3203); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:00:08', '14:06:52', '14:12:37', 631, 3204); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:01:00', '14:08:18', '14:13:24', 631, 3205); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:01:26', '14:02:45', '14:13:10', 612, 3206); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:05:07', '14:13:10', '14:32:16', 612, 3207); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:05:12', '14:12:37', '14:28:57', 631, 3208); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:09:39', '14:09:42', '14:12:49', 627, 3209); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:10:31', '14:12:43', '16:03:52', 631, 3210); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:10:44', '14:15:21', '14:36:47', 612, 3211); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:11:28', '14:13:24', '14:39:05', 631, 3212); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:11:48', '14:18:27', '14:23:14', 631, 3213); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:18:24', '14:18:41', '14:27:26', 612, 3214); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:19:11', '14:23:15', '14:56:46', 631, 3215); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:19:38', '14:21:11', '14:25:40', 627, 3216); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:22:41', '14:24:51', '15:05:54', 612, 3217); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:24:09', '14:25:41', '14:31:42', 627, 3218); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:26:02', '14:32:17', '15:15:37', 612, 3219); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:27:23', '14:28:57', '14:31:49', 631, 3220); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:28:37', '14:29:37', '14:46:54', 631, 3221); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:29:13', '14:31:49', '15:07:00', 631, 3222); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:32:03', '14:39:05', '14:47:20', 631, 3223); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:35:23', '14:35:33', '15:09:55', 627, 3224); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:36:26', '14:36:47', '15:14:47', 612, 3225); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:37:18', '14:42:32', '14:50:52', 631, 3226); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:39:54', '14:46:54', '14:50:45', 631, 3227); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:40:48', '14:47:20', '14:55:41', 631, 3228); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:44:37', '14:44:55', '14:49:20', 627, 3229); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:45:20', '14:45:56', '15:11:19', 627, 3230); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:45:23', '14:50:45', '15:22:18', 631, 3231); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:47:03', '14:50:53', '15:45:19', 631, 3232); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:49:38', '14:55:41', '15:06:14', 631, 3233); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '14:56:07', '14:56:52', '15:10:53', 631, 3234); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '15:04:52', '15:06:15', '16:04:48', 631, 3235); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '15:05:46', '15:05:54', '15:47:08', 612, 3236); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '15:06:40', '15:07:00', '15:41:57', 631, 3237); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '15:08:59', '15:10:53', '16:03:34', 631, 3238); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '15:15:30', '15:15:40', '15:40:03', 612, 3239); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '15:17:34', '15:17:38', '16:05:21', 612, 3240); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '15:21:03', '15:22:18', '15:42:52', 631, 3241); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '15:30:43', '15:31:59', '15:43:05', 627, 3242); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '15:30:58', '15:32:48', '16:05:21', 627, 3243); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '15:31:55', '15:37:08', '15:43:13', 627, 3244); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '15:39:09', '15:40:06', '18:52:56', 612, 3245); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '15:41:35', '15:41:57', '15:53:06', 631, 3246); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '15:41:54', '15:42:52', '15:56:56', 631, 3247); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '15:44:33', '15:45:19', '16:04:01', 631, 3248); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '15:52:54', '15:53:06', '16:02:40', 631, 3249); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-18', '15:53:27', '15:54:48', '18:52:56', 612, 3250); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-19', '11:57:46', '11:59:46', '13:14:04', 612, 3251); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-19', '11:59:10', '12:00:14', '13:19:43', 612, 3252); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-19', '12:03:33', '12:04:15', '15:49:53', 612, 3253); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-19', '13:19:47', '13:19:48', '14:50:17', 612, 3254); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-19', '14:03:34', '14:03:37', '14:51:08', 612, 3255); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-19', '14:13:36', '14:13:41', '15:51:01', 612, 3256); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-19', '14:45:22', '14:45:25', '15:25:04', 612, 3257); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-19', '14:47:13', '14:50:17', '14:57:48', 612, 3258); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-19', '14:51:01', '14:51:09', '16:05:49', 612, 3259); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-19', '14:57:42', '14:57:48', '15:34:31', 612, 3260); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-19', '15:24:07', '15:25:04', '15:38:33', 612, 3261); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-19', '15:34:35', '15:34:35', '15:57:01', 612, 3262); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-19', '15:36:55', '15:38:33', '15:50:54', 612, 3263); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '09:07:47', '09:07:51', '09:54:50', 612, 3264); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '09:09:37', '09:10:11', '09:27:12', 612, 3265); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '09:26:24', '09:26:27', '09:49:02', 612, 3266); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '09:27:06', '09:27:16', '10:34:51', 627, 3267); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '09:44:24', '09:44:27', '09:53:39', 627, 3268); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '09:45:44', '09:53:39', '10:00:36', 627, 3269); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '09:50:30', '09:56:26', '10:11:05', 627, 3270); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '09:54:44', '09:54:50', '11:06:14', 612, 3271); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '09:55:06', '09:55:06', '10:00:10', 612, 3272); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '09:55:30', '09:55:31', '10:01:44', 612, 3273); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '09:59:24', '10:00:36', '10:34:54', 627, 3274); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '09:59:53', '10:00:03', '10:06:50', 612, 3275); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:01:36', '10:01:46', '10:29:36', 612, 3276); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:10:24', '10:10:44', '11:33:37', 627, 3277); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:11:19', '10:11:22', '11:13:59', 612, 3278); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:19:54', '10:19:57', '10:35:44', 627, 3279); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:22:19', '10:22:24', '11:06:14', 612, 3280); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:25:03', '10:26:12', '10:33:48', 631, 3281); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:25:04', '10:34:51', '10:44:06', 627, 3282); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:27:27', '10:34:54', '10:45:48', 627, 3283); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:28:39', '10:29:36', '10:44:52', 612, 3284); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:33:47', '10:33:57', '10:36:20', 627, 3285); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:36:33', '10:37:22', '10:38:42', 627, 3286); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:44:09', '10:45:49', '10:48:09', 627, 3287); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:45:19', '10:45:23', '11:00:15', 612, 3288); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:47:24', '10:53:01', '11:18:23', 612, 3289); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:52:56', '11:00:16', '12:15:31', 612, 3290); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:58:11', '10:58:18', '11:05:15', 627, 3291); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '10:58:36', '10:58:38', '11:01:21', 612, 3292); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:06:07', '11:06:14', '11:18:36', 612, 3293); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:06:41', '11:06:46', '11:15:17', 627, 3294); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:09:11', '11:09:14', '11:18:21', 612, 3295); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:12:16', '11:12:22', '11:35:44', 612, 3296); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:15:02', '11:15:11', '11:19:14', 612, 3297); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:18:16', '11:18:22', '12:18:45', 612, 3298); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:19:58', '11:19:58', '11:42:02', 627, 3299); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:21:41', '11:22:31', '11:51:27', 612, 3300); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:22:56', '11:23:09', '12:05:31', 612, 3301); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:34:25', '11:35:44', '11:46:55', 612, 3302); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:38:40', '11:38:50', '11:41:18', 627, 3303); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:40:45', '11:40:47', '11:41:59', 627, 3304); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:41:23', '11:41:53', '13:42:36', 627, 3305); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:41:57', '11:41:59', '12:21:38', 627, 3306); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:45:40', '11:45:44', '11:53:53', 627, 3307); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:48:01', '11:48:09', '12:04:45', 627, 3308); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:52:16', '11:52:23', '12:16:58', 612, 3309); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:52:59', '11:53:53', '12:02:19', 627, 3310); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:56:56', '12:02:19', '12:05:35', 627, 3311); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '11:57:03', '11:57:17', '12:25:04', 612, 3312); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:01:55', '12:05:36', '12:10:23', 627, 3313); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:02:37', '12:10:23', '12:13:00', 627, 3314); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:03:47', '12:05:31', '12:19:54', 612, 3315); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:06:25', '12:13:01', '12:23:35', 627, 3316); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:07:03', '12:15:31', '12:27:14', 612, 3317); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:08:22', '12:09:47', '12:13:27', 627, 3318); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:10:07', '12:13:27', '12:50:54', 627, 3319); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:13:22', '12:16:58', '12:28:21', 612, 3320); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:14:13', '12:21:39', '12:32:06', 627, 3321); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:16:23', '12:18:45', '12:26:41', 612, 3322); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:18:14', '12:19:54', '12:30:37', 612, 3323); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:20:36', '12:26:41', '12:42:00', 612, 3324); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:23:23', '12:27:15', '12:51:00', 612, 3325); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:23:43', '12:25:42', '12:32:14', 612, 3326); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:25:51', '12:29:10', '12:40:38', 627, 3327); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:26:10', '12:32:07', '13:14:04', 627, 3328); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:29:58', '12:30:37', '12:48:29', 612, 3329); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:30:24', '12:32:14', '12:44:27', 612, 3330); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:36:09', '12:36:19', '12:52:39', 612, 3331); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:36:56', '12:44:27', '12:51:16', 612, 3332); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:41:24', '12:51:00', '13:06:28', 612, 3333); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:41:47', '12:42:00', '13:38:50', 612, 3334); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:45:57', '12:45:57', '12:49:11', 612, 3335); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:46:12', '12:46:21', '12:52:48', 627, 3336); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:46:43', '12:51:17', '12:54:57', 612, 3337); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:47:17', '12:52:26', '12:56:33', 627, 3338); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:47:39', '12:56:33', '14:00:04', 627, 3339); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:48:24', '12:48:30', '12:49:54', 612, 3340); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:49:06', '12:55:10', '12:59:21', 627, 3341); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:49:16', '12:49:54', '13:42:02', 612, 3342); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:49:23', '12:50:55', '14:16:18', 627, 3343); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:49:54', '13:03:18', '13:14:13', 627, 3344); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:50:12', '12:54:15', '13:15:57', 612, 3345); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:55:10', '13:10:14', '13:23:45', 627, 3346); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:56:54', '12:56:59', '13:08:56', 612, 3347); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:57:32', '12:59:21', '13:42:47', 627, 3348); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '12:57:42', '12:57:59', '13:08:19', 612, 3349); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:00:36', '13:06:29', '13:07:41', 612, 3350); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:03:21', '13:12:52', '13:34:25', 627, 3351); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:06:19', '13:07:41', '13:23:43', 612, 3352); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:07:42', '13:15:31', '13:29:12', 627, 3353); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:08:41', '13:14:04', '13:25:54', 627, 3354); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:11:27', '13:23:45', '13:34:41', 627, 3355); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:12:06', '13:25:55', '13:31:21', 627, 3356); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:16:22', '13:16:27', '13:34:17', 612, 3357); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:17:38', '13:17:48', '13:23:44', 612, 3358); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:17:50', '13:29:12', '13:49:11', 627, 3359); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:18:48', '13:31:21', '14:06:27', 627, 3360); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:19:32', '13:34:25', '13:38:29', 627, 3361); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:19:50', '13:20:00', '13:29:31', 612, 3362); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:19:57', '13:35:12', '14:15:03', 627, 3363); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:20:35', '13:23:43', '14:33:38', 612, 3364); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:20:54', '13:23:45', '13:41:03', 612, 3365); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:21:40', '13:38:30', '13:43:19', 627, 3366); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:22:58', '13:24:15', '13:54:42', 612, 3367); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:24:37', '13:42:47', '14:01:44', 627, 3368); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:34:02', '13:34:12', '13:37:40', 612, 3369); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:35:06', '13:43:19', '13:46:49', 627, 3370); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:37:31', '13:38:51', '13:41:34', 612, 3371); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:38:04', '13:41:35', '14:30:44', 612, 3372); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:38:32', '13:42:02', '13:49:55', 612, 3373); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:42:20', '13:42:37', '14:56:43', 627, 3374); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:47:07', '13:59:22', '14:07:18', 627, 3375); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:49:22', '13:49:55', '14:15:22', 612, 3376); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:49:35', '13:49:41', '13:56:35', 612, 3377); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:50:22', '14:00:05', '14:31:32', 627, 3378); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:50:34', '13:52:15', '13:54:54', 627, 3379); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:50:43', '13:54:55', '13:59:22', 627, 3380); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:54:26', '14:06:29', '14:11:07', 627, 3381); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:55:25', '13:56:55', '14:27:33', 627, 3382); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '13:56:05', '14:01:44', '14:08:40', 627, 3383); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:02:16', '14:02:29', '14:06:52', 612, 3384); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:05:13', '14:07:48', '14:12:50', 627, 3385); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:06:43', '14:06:53', '14:21:04', 612, 3386); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:09:36', '14:11:08', '14:15:41', 627, 3387); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:11:06', '14:15:23', '14:25:34', 612, 3388); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:11:30', '14:12:05', '14:36:38', 627, 3389); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:12:57', '14:15:41', '14:25:37', 627, 3390); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:13:39', '14:15:18', '16:21:35', 631, 3391); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:15:23', '14:21:04', '14:41:14', 627, 3392); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:16:05', '14:16:18', '14:37:57', 627, 3393); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:20:50', '14:21:04', '14:32:56', 612, 3394); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:21:05', '14:27:33', '14:39:50', 627, 3395); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:22:57', '14:30:45', '14:47:08', 612, 3396); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:23:17', '14:31:32', '14:55:31', 627, 3397); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:24:20', '14:25:37', '15:08:56', 627, 3398); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:25:08', '14:25:34', '14:58:21', 612, 3399); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:27:49', '14:36:39', '15:22:45', 627, 3400); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:28:02', '14:33:38', '15:11:58', 612, 3401); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:31:16', '14:32:56', '14:35:20', 612, 3402); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:32:36', '14:35:35', '16:10:16', 612, 3403); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:33:02', '14:39:51', '14:46:11', 627, 3404); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:33:40', '14:41:14', '14:43:00', 627, 3405); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:33:53', '14:37:57', '16:00:54', 627, 3406); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:34:51', '14:34:58', '14:46:47', 612, 3407); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:37:15', '14:43:01', '14:46:11', 627, 3408); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:43:18', '14:44:01', '15:16:19', 612, 3409); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:46:41', '14:46:43', '14:56:15', 627, 3410); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:46:49', '14:47:09', '15:06:40', 612, 3411); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:48:19', '14:58:22', '15:25:16', 612, 3412); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:48:30', '14:50:05', '14:56:29', 627, 3413); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:48:40', '14:55:32', '15:09:50', 627, 3414); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:49:52', '14:56:15', '15:12:12', 627, 3415); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:55:08', '14:56:44', '16:00:56', 627, 3416); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:58:12', '15:06:42', '15:26:00', 612, 3417); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '14:59:15', '15:11:58', '15:13:41', 612, 3418); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:00:19', '15:08:56', '17:01:07', 627, 3419); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:01:51', '15:09:08', '15:12:20', 627, 3420); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:04:28', '15:09:50', '15:20:05', 627, 3421); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:07:10', '15:13:42', '15:16:16', 612, 3422); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:07:25', '15:16:16', '15:29:59', 612, 3423); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:12:34', '15:16:19', '15:24:58', 612, 3424); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:22:02', '15:24:58', '16:21:09', 612, 3425); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:22:52', '15:23:01', '15:25:02', 612, 3426); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:24:09', '15:25:16', '18:48:12', 612, 3427); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:25:53', '15:26:01', '15:53:01', 612, 3428); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:27:50', '15:28:27', '15:32:31', 627, 3429); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:32:36', '15:32:50', '17:56:26', 627, 3430); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:33:40', '15:33:48', '15:37:01', 627, 3431); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:33:48', '15:44:26', '16:10:24', 627, 3432); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:34:06', '15:34:08', '15:37:29', 612, 3433); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:37:07', '15:37:16', '15:42:59', 612, 3434); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:38:05', '15:38:12', '15:46:28', 627, 3435); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:39:16', '15:39:20', '15:40:32', 612, 3436); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:42:00', '15:42:00', '15:54:31', 627, 3437); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:43:32', '15:46:28', '15:47:45', 627, 3438); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '15:50:15', '15:53:14', '15:58:43', 612, 3439); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-20', '16:01:13', '16:01:22', '16:12:32', 627, 3440); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '09:09:12', '09:09:43', '09:43:23', 631, 3441); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '09:46:50', '09:46:58', '09:54:04', 627, 3442); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '10:07:57', '10:07:58', '10:25:50', 627, 3443); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '10:08:12', '10:08:22', '10:11:42', 627, 3444); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '10:10:33', '10:10:44', '10:18:53', 627, 3445); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '10:12:22', '10:12:28', '11:28:44', 627, 3446); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '10:13:33', '10:16:40', '10:35:39', 627, 3447); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '10:14:33', '10:18:53', '10:45:25', 627, 3448); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '10:31:41', '10:31:42', '10:39:06', 627, 3449); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '10:42:17', '10:42:59', '10:45:43', 627, 3450); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '10:44:51', '10:45:20', '11:02:24', 627, 3451); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '10:55:11', '10:56:05', '12:59:27', 631, 3452); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:02:17', '11:02:18', '11:12:42', 627, 3453); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:04:44', '11:08:35', '12:18:02', 627, 3454); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:09:08', '11:10:37', '11:21:08', 627, 3455); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:10:24', '11:10:39', '11:18:41', 627, 3456); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:10:42', '11:10:44', '11:30:34', 631, 3457); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:13:21', '11:13:25', '12:15:26', 631, 3458); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:14:04', '11:14:13', '11:32:44', 627, 3459); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:18:14', '11:18:41', '11:29:19', 627, 3460); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:19:12', '11:21:30', '11:44:38', 627, 3461); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:22:29', '11:24:09', '11:29:36', 627, 3462); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:28:25', '11:29:19', '12:16:10', 627, 3463); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:28:39', '11:28:44', '11:48:58', 627, 3464); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:30:08', '11:30:35', '11:53:10', 631, 3465); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:30:33', '11:33:03', '12:18:40', 631, 3466); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:37:39', '11:39:53', '11:53:13', 627, 3467); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:40:47', '11:40:59', '12:59:03', 631, 3468); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:42:34', '11:43:01', '12:22:59', 631, 3469); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:43:28', '11:43:36', '11:47:12', 627, 3470); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:48:32', '11:48:58', '11:57:26', 627, 3471); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:52:01', '11:52:11', '12:15:53', 631, 3472); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:53:02', '11:53:10', '13:52:01', 631, 3473); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '11:55:50', '11:57:26', '12:02:01', 627, 3474); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:03:35', '12:03:53', '12:13:39', 627, 3475); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:12:17', '12:12:21', '13:27:02', 631, 3476); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:12:37', '12:15:26', '12:26:17', 631, 3477); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:13:02', '12:15:53', '13:25:34', 631, 3478); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:14:13', '12:16:08', '12:42:33', 631, 3479); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:15:20', '12:15:25', '12:19:17', 627, 3480); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:15:53', '12:16:40', '12:26:06', 627, 3481); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:17:40', '12:18:02', '12:40:28', 627, 3482); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:19:33', '12:20:48', '12:37:29', 627, 3483); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:20:13', '12:26:17', '12:44:17', 631, 3484); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:20:48', '12:22:59', '14:17:40', 631, 3485); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:22:05', '12:23:47', '12:32:39', 627, 3486); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:37:56', '12:37:58', '14:00:34', 627, 3487); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:38:14', '12:38:27', '12:51:14', 627, 3488); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:39:57', '12:40:28', '13:42:15', 627, 3489); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:42:17', '12:42:33', '12:51:25', 631, 3490); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:42:39', '12:49:02', '13:02:33', 627, 3491); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:44:04', '12:44:18', '13:00:16', 631, 3492); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:49:21', '12:51:25', '13:25:40', 631, 3493); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:51:28', '12:53:05', '13:05:40', 627, 3494); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:52:43', '12:56:30', '13:05:21', 627, 3495); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:55:20', '13:02:33', '13:14:40', 627, 3496); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:55:39', '13:05:22', '13:19:11', 627, 3497); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:55:56', '13:05:40', '13:13:14', 627, 3498); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:56:54', '12:59:28', '14:26:55', 631, 3499); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:58:37', '12:59:04', '13:44:14', 631, 3500); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:59:27', '13:00:16', '13:13:30', 631, 3501); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '12:59:54', '13:00:07', '13:18:01', 612, 3502); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:02:19', '13:13:14', '13:20:49', 627, 3503); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:02:49', '13:02:59', '13:09:08', 612, 3504); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:03:37', '13:03:46', '13:31:07', 612, 3505); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:06:07', '13:09:08', '13:12:18', 612, 3506); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:10:42', '13:14:40', '13:28:14', 627, 3507); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:11:20', '13:11:25', '13:20:42', 612, 3508); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:12:11', '13:12:19', '13:32:31', 612, 3509); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:12:42', '13:31:07', '13:46:07', 612, 3510); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:13:00', '13:13:31', '13:33:41', 631, 3511); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:13:11', '13:20:50', '13:43:55', 627, 3512); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:14:25', '13:28:14', '13:37:01', 627, 3513); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:16:00', '13:19:11', '14:16:02', 627, 3514); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:17:21', '13:17:26', '13:34:06', 612, 3515); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:20:28', '13:20:42', '13:31:14', 612, 3516); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:21:59', '13:34:16', '13:53:59', 612, 3517); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:22:59', '13:34:17', '13:51:16', 612, 3518); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:23:14', '13:25:34', '14:49:30', 631, 3519); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:23:48', '13:25:40', '13:31:08', 631, 3520); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:25:01', '13:27:02', '13:30:05', 631, 3521); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:25:16', '13:37:01', '13:57:17', 627, 3522); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:25:32', '13:30:05', '13:39:21', 631, 3523); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:25:42', '13:43:55', '14:01:01', 627, 3524); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:26:00', '13:31:08', '13:52:09', 631, 3525); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:30:40', '13:44:39', '13:57:29', 627, 3526); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:31:49', '13:36:13', '13:43:39', 612, 3527); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:33:12', '13:33:41', '15:19:32', 631, 3528); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:33:57', '13:34:28', '13:36:12', 612, 3529); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:34:35', '13:39:22', '13:48:44', 631, 3530); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:36:30', '13:43:40', '14:09:33', 612, 3531); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:37:45', '13:50:36', '13:57:55', 627, 3532); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:41:39', '13:53:59', '14:05:33', 612, 3533); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:41:56', '13:42:15', '14:22:09', 627, 3534); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:42:42', '13:44:14', '14:01:59', 631, 3535); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:42:57', '13:46:07', '13:55:58', 612, 3536); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:43:11', '13:47:03', '14:08:21', 627, 3537); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:45:13', '13:48:44', '14:00:16', 631, 3538); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:45:38', '13:52:02', '14:06:12', 631, 3539); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:47:36', '13:51:36', '14:48:32', 612, 3540); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:47:38', '13:57:17', '14:25:22', 627, 3541); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:49:46', '13:55:09', '13:56:35', 612, 3542); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:49:47', '13:52:09', '14:01:38', 631, 3543); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:51:51', '13:55:58', '14:27:21', 612, 3544); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:52:40', '13:57:29', '14:18:14', 627, 3545); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:53:52', '14:00:17', '14:11:51', 631, 3546); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:55:22', '13:56:35', '13:58:00', 612, 3547); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:55:49', '13:58:00', '14:07:05', 612, 3548); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:56:40', '14:05:35', '14:07:01', 612, 3549); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:56:57', '13:57:55', '14:29:01', 627, 3550); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:57:21', '14:01:01', '14:15:25', 627, 3551); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:58:06', '14:07:01', '14:29:58', 612, 3552); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:58:54', '14:09:33', '14:22:54', 612, 3553); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:59:02', '14:15:25', '14:59:49', 627, 3554); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '13:59:50', '14:01:38', '14:10:04', 631, 3555); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:00:51', '14:01:59', '16:30:15', 631, 3556); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:02:15', '14:16:03', '14:34:45', 627, 3557); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:03:15', '14:06:12', '14:56:16', 631, 3558); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:06:21', '14:07:05', '14:25:43', 612, 3559); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:09:52', '14:10:04', '14:19:29', 631, 3560); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:11:27', '14:11:51', '14:23:05', 631, 3561); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:12:27', '14:17:41', '15:28:42', 631, 3562); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:14:38', '14:19:29', '14:37:15', 631, 3563); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:19:32', '14:23:06', '14:55:42', 631, 3564); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:21:20', '14:21:33', '14:24:34', 627, 3565); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:21:49', '14:22:10', '14:52:21', 627, 3566); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:21:55', '14:22:54', '14:30:31', 612, 3567); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:23:18', '14:29:58', '14:39:58', 612, 3568); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:24:07', '14:26:55', '15:08:53', 631, 3569); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:24:34', '14:25:43', '15:35:59', 612, 3570); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:27:15', '14:27:22', '14:43:28', 612, 3571); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:27:30', '14:29:02', '15:01:25', 627, 3572); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:28:10', '14:30:31', '14:32:39', 612, 3573); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:28:13', '14:29:08', '14:33:51', 627, 3574); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:32:08', '14:34:46', '14:37:52', 627, 3575); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:32:30', '14:37:53', '14:44:20', 627, 3576); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:33:41', '14:33:47', '14:34:57', 631, 3577); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:34:16', '14:37:15', '16:00:25', 631, 3578); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:35:55', '14:36:01', '14:43:29', 612, 3579); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:36:24', '14:36:25', '15:29:18', 627, 3580); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:36:54', '14:44:51', '14:59:13', 627, 3581); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:38:31', '14:38:37', '14:47:46', 612, 3582); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:39:52', '14:40:05', '14:59:51', 612, 3583); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:43:20', '14:43:29', '14:49:16', 612, 3584); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:43:52', '14:44:42', '14:55:34', 612, 3585); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:45:44', '14:49:31', '15:06:02', 631, 3586); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:47:39', '14:49:16', '15:24:47', 612, 3587); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:48:24', '14:48:32', '15:29:57', 612, 3588); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:51:13', '14:52:21', '14:56:47', 627, 3589); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:52:44', '14:56:48', '15:53:19', 627, 3590); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:52:58', '14:55:34', '15:33:24', 612, 3591); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:54:20', '14:55:42', '15:43:31', 631, 3592); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:54:55', '14:59:13', '15:03:12', 627, 3593); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:55:45', '14:55:48', '15:00:40', 612, 3594); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:55:46', '14:56:16', '15:35:55', 631, 3595); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:55:53', '15:01:25', '15:08:20', 627, 3596); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:56:24', '14:58:00', '16:03:33', 627, 3597); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:57:52', '14:57:58', '15:00:06', 631, 3598); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:58:56', '15:03:13', '15:14:37', 627, 3599); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '14:59:46', '14:59:51', '15:21:28', 612, 3600); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:01:41', '15:06:03', '15:19:38', 631, 3601); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:02:50', '15:08:52', '15:17:21', 627, 3602); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:05:38', '15:08:25', '16:02:06', 631, 3603); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:05:49', '15:21:28', '15:23:15', 612, 3604); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:06:48', '15:08:53', '15:32:49', 631, 3605); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:08:50', '15:23:15', '15:46:05', 612, 3606); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:09:42', '15:15:29', '15:27:56', 627, 3607); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:19:06', '15:19:33', '16:00:24', 631, 3608); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:19:22', '15:19:39', '16:02:25', 631, 3609); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:19:45', '15:25:14', '16:07:33', 612, 3610); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:24:08', '15:28:42', '15:57:44', 631, 3611); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:29:32', '15:29:57', '15:35:54', 612, 3612); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:30:27', '15:30:31', '15:38:19', 627, 3613); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:31:55', '15:33:07', '15:42:32', 627, 3614); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:32:25', '15:32:49', '16:08:10', 631, 3615); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:32:36', '15:32:42', '16:04:59', 612, 3616); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:32:52', '15:35:55', '16:00:31', 631, 3617); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:33:05', '15:35:54', '16:16:15', 612, 3618); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:33:23', '15:35:59', '16:07:22', 612, 3619); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:43:16', '15:43:32', '16:05:57', 631, 3620); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:44:04', '15:46:06', '16:20:42', 612, 3621); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:51:20', '15:53:19', '16:08:19', 627, 3622); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '15:56:11', '15:57:44', '16:02:48', 631, 3623); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-21', '16:00:31', '16:00:40', '16:03:32', 627, 3624); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '09:12:56', '09:13:50', '09:36:03', 627, 3625); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '09:14:17', '09:15:13', '12:38:01', 627, 3626); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '09:15:10', '09:15:19', '10:36:16', 631, 3627); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '09:24:22', '09:25:22', '10:11:24', 627, 3628); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '09:25:24', '09:25:29', '09:50:01', 627, 3629); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '09:25:50', '09:25:54', '09:41:00', 627, 3630); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '09:27:31', '09:27:39', '11:58:47', 631, 3631); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '09:41:00', '09:42:12', '13:22:17', 631, 3632); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '09:53:08', '09:53:12', '10:38:18', 631, 3633); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '09:53:25', '09:53:35', '11:28:16', 631, 3634); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '09:54:15', '09:54:22', '10:22:51', 627, 3635); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '09:54:20', '09:54:25', '10:18:02', 631, 3636); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '09:57:05', '09:57:22', '10:46:01', 612, 3637); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:03:58', '10:03:59', '10:36:22', 631, 3638); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:07:48', '10:08:08', '10:40:49', 631, 3639); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:07:50', '10:11:49', '10:24:49', 627, 3640); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:08:00', '10:08:03', '11:39:54', 612, 3641); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:14:34', '10:16:35', '10:38:20', 627, 3642); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:18:00', '10:18:04', '10:34:47', 612, 3643); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:18:08', '10:18:13', '13:05:48', 631, 3644); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:18:53', '10:22:51', '10:35:19', 627, 3645); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:20:20', '10:24:49', '10:29:55', 627, 3646); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:24:32', '10:29:55', '10:37:29', 627, 3647); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:32:46', '10:35:19', '10:48:40', 627, 3648); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:35:10', '10:35:19', '12:03:25', 612, 3649); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:35:42', '10:36:17', '11:19:04', 631, 3650); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:37:11', '10:37:13', '11:45:11', 631, 3651); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:37:35', '10:38:19', '11:15:55', 631, 3652); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:40:46', '10:40:55', '11:09:43', 612, 3653); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:41:59', '10:42:02', '12:21:58', 627, 3654); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:43:15', '10:43:57', '10:55:06', 627, 3655); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:45:53', '10:46:01', '11:09:40', 612, 3656); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '10:55:10', '10:55:20', '11:22:24', 612, 3657); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:02:43', '11:02:49', '11:28:29', 631, 3658); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:04:46', '11:05:08', '11:12:37', 627, 3659); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:08:57', '11:12:38', '11:50:21', 627, 3660); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:09:30', '11:09:40', '11:57:24', 612, 3661); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:15:15', '11:15:55', '12:11:20', 631, 3662); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:18:48', '11:19:04', '12:44:34', 631, 3663); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:19:33', '11:19:34', '11:50:03', 612, 3664); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:21:41', '11:22:24', '11:34:03', 612, 3665); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:23:27', '11:34:08', '11:56:10', 627, 3666); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:27:42', '11:30:51', '11:34:08', 627, 3667); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:28:17', '11:28:28', '12:12:35', 631, 3668); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:28:43', '11:28:50', '11:52:58', 631, 3669); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:31:12', '11:50:21', '11:57:38', 627, 3670); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:38:07', '11:48:05', '11:52:33', 612, 3671); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:38:21', '11:38:36', '12:35:30', 627, 3672); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:39:39', '11:56:11', '12:14:14', 627, 3673); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:39:46', '11:39:54', '13:05:10', 612, 3674); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:42:11', '11:57:38', '12:05:19', 627, 3675); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:42:44', '12:00:45', '12:13:57', 627, 3676); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:45:06', '11:45:21', '11:46:33', 612, 3677); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:46:11', '11:46:33', '12:00:35', 612, 3678); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:48:57', '11:49:02', '11:58:13', 631, 3679); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:49:47', '11:50:03', '12:10:18', 612, 3680); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:53:04', '11:53:10', '12:47:10', 631, 3681); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:54:31', '11:57:24', '12:14:30', 612, 3682); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '11:58:53', '11:58:54', '12:12:26', 631, 3683); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:00:30', '12:00:36', '12:05:52', 612, 3684); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:03:18', '12:03:25', '13:14:24', 612, 3685); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:05:13', '12:05:52', '12:54:32', 612, 3686); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:05:30', '12:08:05', '12:16:35', 627, 3687); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:07:14', '12:21:59', '14:41:55', 627, 3688); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:09:48', '12:09:48', '13:37:39', 631, 3689); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:10:18', '12:10:19', '12:22:43', 612, 3690); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:10:36', '12:14:30', '12:30:39', 612, 3691); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:10:45', '12:10:57', '12:15:04', 612, 3692); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:10:50', '12:11:20', '13:41:53', 631, 3693); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:11:14', '12:12:26', '13:00:36', 631, 3694); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:11:32', '12:13:57', '12:35:24', 627, 3695); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:12:09', '12:12:36', '13:36:37', 631, 3696); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:12:27', '12:14:13', '12:17:04', 627, 3697); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:15:43', '12:22:43', '12:59:55', 612, 3698); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:19:44', '12:30:39', '12:35:50', 612, 3699); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:22:16', '12:31:27', '12:49:15', 612, 3700); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:23:37', '12:23:45', '12:39:42', 612, 3701); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:31:22', '12:35:25', '12:54:12', 627, 3702); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:35:23', '12:35:33', '13:39:36', 627, 3703); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:35:34', '12:35:50', '12:40:59', 612, 3704); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:37:04', '12:39:43', '12:46:50', 627, 3705); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:39:36', '12:40:59', '12:51:09', 612, 3706); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:41:33', '12:41:38', '12:42:47', 631, 3707); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:44:07', '12:44:34', '13:21:27', 631, 3708); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:45:54', '12:46:50', '12:50:11', 627, 3709); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:46:54', '12:49:16', '13:19:12', 612, 3710); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:46:55', '12:47:10', '13:27:12', 631, 3711); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:49:06', '12:51:10', '12:57:04', 612, 3712); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:50:21', '12:54:32', '12:56:54', 612, 3713); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:50:46', '12:56:54', '14:34:28', 612, 3714); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:51:46', '12:57:04', '13:08:40', 612, 3715); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:53:53', '13:00:36', '13:08:52', 631, 3716); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:54:23', '12:54:33', '12:58:07', 612, 3717); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:58:01', '12:58:03', '15:03:25', 627, 3718); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '12:59:30', '12:59:55', '13:01:59', 612, 3719); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:00:10', '13:01:33', '13:14:01', 627, 3720); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:03:40', '13:04:29', '13:05:34', 612, 3721); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:03:50', '13:05:10', '13:38:49', 612, 3722); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:04:50', '13:06:07', '13:33:24', 627, 3723); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:04:57', '13:05:48', '13:40:46', 631, 3724); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:04:59', '13:14:24', '13:26:57', 612, 3725); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:05:33', '13:05:34', '13:29:03', 612, 3726); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:05:56', '13:08:40', '13:36:35', 612, 3727); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:08:36', '13:08:52', '13:38:07', 631, 3728); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:11:10', '13:14:01', '13:40:38', 627, 3729); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:12:58', '13:37:08', '13:47:59', 627, 3730); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:19:03', '13:19:13', '15:04:55', 612, 3731); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:19:28', '13:26:58', '15:04:55', 612, 3732); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:19:41', '13:40:41', '14:33:11', 627, 3733); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:21:12', '13:21:28', '13:48:30', 631, 3734); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:22:12', '13:22:18', '14:37:18', 631, 3735); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:22:23', '13:39:37', '13:51:55', 627, 3736); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:26:35', '13:29:03', '14:14:49', 612, 3737); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:26:55', '13:27:12', '13:38:49', 631, 3738); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:33:15', '13:37:40', '13:46:24', 631, 3739); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:34:25', '13:47:59', '13:54:25', 627, 3740); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:36:17', '13:36:35', '13:43:04', 612, 3741); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:37:09', '13:38:08', '13:53:00', 631, 3742); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:37:38', '13:37:48', '13:46:29', 612, 3743); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:37:59', '13:38:50', '14:03:00', 631, 3744); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:38:24', '13:40:47', '14:22:36', 631, 3745); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:38:33', '13:38:49', '14:00:23', 612, 3746); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:39:15', '13:41:53', '13:52:53', 631, 3747); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:41:39', '13:48:30', '14:21:09', 631, 3748); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:42:41', '13:43:05', '13:47:10', 612, 3749); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:43:21', '13:46:25', '13:53:47', 631, 3750); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:45:08', '13:52:53', '14:23:49', 631, 3751); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:46:12', '13:54:26', '13:55:30', 627, 3752); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:46:52', '13:47:10', '13:55:18', 612, 3753); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:48:02', '13:48:04', '13:57:01', 612, 3754); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:48:07', '13:55:30', '14:25:42', 627, 3755); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:53:56', '13:53:59', '14:23:07', 631, 3756); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:55:04', '13:55:18', '14:08:19', 612, 3757); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:55:20', '13:55:21', '14:22:36', 631, 3758); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:57:03', '14:00:23', '14:02:39', 612, 3759); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '13:59:50', '14:06:46', '14:20:28', 627, 3760); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:01:36', '14:02:50', '14:22:10', 612, 3761); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:01:44', '14:03:00', '14:22:32', 631, 3762); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:03:35', '14:13:36', '14:42:36', 627, 3763); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:04:16', '14:08:20', '14:17:36', 612, 3764); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:05:16', '14:20:28', '14:38:38', 627, 3765); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:08:46', '14:26:16', '14:46:04', 627, 3766); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:09:56', '14:25:42', '14:32:20', 627, 3767); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:10:52', '14:32:20', '14:35:39', 627, 3768); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:11:21', '14:11:40', '14:16:19', 612, 3769); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:12:24', '14:14:49', '14:22:14', 612, 3770); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:13:24', '14:17:36', '14:41:10', 612, 3771); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:13:47', '14:23:25', '14:41:34', 612, 3772); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:15:54', '14:22:11', '14:23:25', 612, 3773); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:15:59', '14:33:11', '14:43:20', 627, 3774); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:16:58', '14:22:15', '15:04:55', 612, 3775); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:18:02', '14:21:09', '14:42:34', 631, 3776); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:18:27', '14:22:32', '14:33:17', 631, 3777); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:18:54', '14:18:57', '15:04:55', 612, 3778); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:19:02', '14:22:36', '14:41:09', 631, 3779); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:19:45', '14:22:37', '15:14:20', 631, 3780); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:21:24', '14:23:07', '15:00:23', 631, 3781); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:21:57', '14:23:49', '14:31:59', 631, 3782); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:25:55', '14:35:39', '14:44:09', 627, 3783); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:26:25', '14:42:37', '15:00:34', 627, 3784); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:32:23', '14:32:26', '14:48:44', 612, 3785); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:32:31', '14:32:37', '14:34:27', 631, 3786); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:32:59', '14:33:17', '14:52:31', 631, 3787); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:33:41', '14:43:20', '15:07:14', 627, 3788); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:34:14', '14:34:28', '15:04:55', 612, 3789); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:35:23', '14:37:18', '14:50:49', 631, 3790); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:35:47', '14:44:55', '14:52:49', 627, 3791); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:36:37', '14:46:04', '15:07:27', 627, 3792); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:37:12', '14:41:09', '15:39:17', 631, 3793); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:37:21', '14:48:03', '14:51:15', 627, 3794); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:37:53', '14:41:55', '15:08:51', 627, 3795); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:38:57', '14:51:15', '15:59:08', 627, 3796); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:40:12', '14:40:51', '15:23:41', 627, 3797); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:41:05', '14:41:10', '15:04:55', 612, 3798); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:41:25', '14:41:34', '14:54:11', 612, 3799); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:42:26', '14:42:34', '14:59:08', 631, 3800); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:47:19', '14:47:34', '15:07:31', 631, 3801); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:49:12', '15:07:27', '15:14:13', 627, 3802); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:49:58', '14:52:50', '15:07:20', 627, 3803); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:50:20', '14:50:50', '15:08:46', 631, 3804); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:50:58', '14:52:31', '15:03:04', 631, 3805); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:53:49', '14:54:12', '15:04:55', 612, 3806); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:56:00', '14:59:09', '15:00:58', 631, 3807); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:57:05', '15:00:24', '15:12:31', 631, 3808); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:59:27', '15:01:12', '15:07:16', 631, 3809); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '14:59:50', '15:03:05', '15:27:19', 631, 3810); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:00:14', '15:01:23', '16:13:04', 631, 3811); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:03:00', '15:03:25', '16:01:19', 627, 3812); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:03:50', '15:07:16', '15:15:33', 631, 3813); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:04:19', '15:07:31', '15:45:22', 631, 3814); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:06:57', '15:08:52', '15:30:49', 627, 3815); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:08:20', '15:08:46', '15:29:12', 631, 3816); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:08:24', '15:09:16', '15:11:49', 627, 3817); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:08:34', '15:12:31', '15:59:03', 631, 3818); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:08:50', '15:14:20', '16:24:50', 631, 3819); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:09:43', '15:11:49', '15:17:22', 627, 3820); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:12:17', '15:15:25', '15:44:29', 631, 3821); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:13:56', '15:17:22', '15:47:53', 627, 3822); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:14:32', '15:15:33', '16:17:45', 631, 3823); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:17:01', '15:17:23', '16:12:01', 612, 3824); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:19:23', '15:24:42', '15:41:31', 627, 3825); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:20:43', '15:20:50', '16:19:49', 612, 3826); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:20:57', '15:35:25', '15:59:22', 627, 3827); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:23:16', '15:27:20', '15:34:14', 631, 3828); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:27:14', '15:37:57', '15:46:52', 627, 3829); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:28:30', '15:30:50', '16:01:18', 627, 3830); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:28:39', '15:29:12', '16:00:12', 631, 3831); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:29:46', '15:34:14', '15:47:58', 631, 3832); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:30:37', '15:39:58', '15:45:41', 612, 3833); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:31:46', '15:39:17', '16:25:17', 631, 3834); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:40:12', '15:40:15', '16:06:43', 612, 3835); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:41:08', '15:46:52', '16:00:49', 627, 3836); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:42:05', '15:44:29', '15:49:00', 631, 3837); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:43:22', '15:45:22', '16:00:48', 631, 3838); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:45:41', '15:49:00', '16:11:49', 631, 3839); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:46:31', '15:47:58', '15:51:46', 631, 3840); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:47:42', '15:47:53', '15:54:54', 627, 3841); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-22', '15:59:29', '16:00:26', '16:04:46', 631, 3842); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '08:57:41', '08:57:50', '09:28:20', 612, 3843); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '08:57:52', '08:58:01', '09:14:12', 612, 3844); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '08:58:03', '08:59:24', '09:57:01', 612, 3845); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:01:10', '09:02:06', '10:44:38', 631, 3846); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:03:59', '09:04:00', '12:19:28', 627, 3847); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:09:18', '09:09:18', '09:20:27', 612, 3848); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:12:00', '09:12:06', '09:34:22', 627, 3849); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:14:30', '09:14:33', '09:28:20', 612, 3850); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:20:03', '09:20:27', '09:55:25', 612, 3851); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:28:27', '09:28:28', '09:34:15', 612, 3852); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:34:03', '09:38:38', '12:22:39', 627, 3853); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:34:09', '09:34:16', '09:50:38', 612, 3854); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:39:35', '09:39:38', '09:54:22', 627, 3855); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:43:59', '09:44:39', '09:53:54', 627, 3856); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:50:29', '09:50:38', '11:39:46', 612, 3857); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:51:34', '09:51:41', '09:59:36', 612, 3858); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:52:09', '09:52:11', '10:03:57', 612, 3859); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:55:15', '09:55:26', '11:31:33', 612, 3860); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:56:46', '09:57:01', '11:40:29', 612, 3861); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:58:11', '10:00:17', '10:56:53', 627, 3862); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '09:58:45', '09:59:36', '11:10:27', 612, 3863); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '10:01:59', '10:03:58', '12:04:28', 612, 3864); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '10:11:50', '10:12:02', '10:21:59', 627, 3865); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '10:12:56', '10:16:12', '10:22:00', 627, 3866); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '10:13:34', '10:13:36', '11:54:19', 631, 3867); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '10:23:42', '10:23:43', '12:03:26', 631, 3868); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '10:29:17', '10:29:57', '10:35:03', 627, 3869); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '10:29:28', '10:32:35', '11:07:39', 627, 3870); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '10:35:24', '10:35:51', '10:47:57', 627, 3871); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '10:40:22', '10:40:23', '10:58:49', 627, 3872); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '10:44:30', '10:44:33', '11:28:49', 631, 3873); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '10:47:18', '10:47:36', '10:57:05', 627, 3874); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '10:47:54', '10:47:57', '10:51:21', 627, 3875); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '10:52:36', '10:52:41', '13:23:14', 631, 3876); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '10:56:23', '10:57:15', '11:24:05', 631, 3877); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '10:56:37', '10:56:53', '11:38:41', 627, 3878); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '10:58:28', '10:58:49', '12:30:14', 627, 3879); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:06:04', '11:06:29', '11:22:31', 627, 3880); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:10:21', '11:10:42', '11:31:36', 631, 3881); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:10:22', '11:10:27', '11:23:53', 612, 3882); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:11:46', '11:18:09', '11:25:29', 627, 3883); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:16:38', '11:22:31', '11:55:22', 627, 3884); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:17:37', '11:24:05', '12:08:48', 631, 3885); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:20:06', '11:20:36', '14:55:57', 612, 3886); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:20:16', '11:25:29', '11:57:28', 627, 3887); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:22:31', '11:23:53', '11:52:24', 612, 3888); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:25:07', '11:25:19', '11:35:36', 627, 3889); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:25:16', '11:38:41', '11:53:17', 627, 3890); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:26:25', '11:35:37', '12:46:36', 627, 3891); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:27:39', '11:28:49', '12:02:38', 631, 3892); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:30:30', '11:31:33', '11:59:42', 612, 3893); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:35:41', '11:46:49', '11:54:51', 627, 3894); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:36:47', '11:53:17', '12:36:56', 627, 3895); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:37:25', '11:55:22', '12:12:58', 627, 3896); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:40:19', '11:40:29', '13:07:56', 612, 3897); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:46:37', '12:00:53', '12:28:07', 627, 3898); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:47:02', '12:12:59', '12:27:19', 627, 3899); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:48:56', '12:22:40', '15:55:49', 627, 3900); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:49:08', '11:49:10', '12:11:37', 612, 3901); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:52:07', '12:19:47', '12:22:34', 627, 3902); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:52:15', '11:52:25', '12:12:07', 612, 3903); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:52:41', '11:57:29', '13:40:20', 627, 3904); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:54:06', '11:54:19', '12:24:34', 631, 3905); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:55:53', '12:02:39', '12:25:17', 631, 3906); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:59:13', '11:59:42', '12:21:20', 612, 3907); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '11:59:54', '12:22:35', '12:34:55', 627, 3908); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:03:01', '12:04:29', '12:11:32', 612, 3909); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:04:04', '12:11:32', '12:15:06', 612, 3910); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:04:47', '12:04:47', '13:19:04', 631, 3911); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:07:05', '12:08:49', '12:54:55', 631, 3912); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:10:01', '12:12:11', '12:26:23', 612, 3913); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:11:25', '12:11:37', '12:15:18', 612, 3914); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:11:48', '12:15:19', '12:43:06', 612, 3915); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:11:51', '12:12:24', '12:18:19', 631, 3916); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:13:39', '12:15:07', '12:48:57', 612, 3917); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:17:12', '12:17:22', '12:30:31', 612, 3918); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:18:09', '12:18:19', '12:38:49', 631, 3919); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:19:36', '12:21:21', '12:45:22', 612, 3920); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:23:29', '12:24:34', '12:42:47', 631, 3921); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:23:46', '12:27:20', '12:34:27', 627, 3922); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:24:08', '12:25:18', '12:48:10', 631, 3923); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:26:10', '12:26:24', '13:27:55', 612, 3924); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:27:03', '12:28:07', '12:31:35', 627, 3925); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:27:17', '12:27:20', '12:50:03', 631, 3926); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:30:18', '12:30:26', '12:38:17', 612, 3927); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:34:52', '12:34:55', '13:00:40', 627, 3928); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:35:10', '12:36:47', '12:46:25', 627, 3929); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:37:28', '12:38:25', '12:59:04', 627, 3930); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:38:39', '12:38:49', '13:06:22', 631, 3931); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:40:34', '12:54:55', '13:03:30', 631, 3932); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:40:43', '13:03:30', '14:13:21', 631, 3933); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:42:03', '12:42:07', '16:10:53', 631, 3934); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:42:32', '12:42:47', '13:16:46', 631, 3935); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:42:59', '12:43:06', '13:26:40', 612, 3936); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:43:26', '12:48:11', '13:23:11', 631, 3937); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:45:13', '12:45:22', '13:13:00', 612, 3938); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:46:16', '12:46:26', '12:54:26', 627, 3939); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:48:13', '12:48:57', '12:54:46', 612, 3940); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:50:20', '13:00:55', '13:05:12', 612, 3941); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:54:38', '12:54:46', '13:27:15', 612, 3942); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:54:38', '12:59:04', '13:06:15', 627, 3943); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:56:04', '12:59:21', '13:08:31', 627, 3944); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '12:58:58', '13:05:13', '13:09:56', 612, 3945); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:01:55', '13:12:38', '13:47:27', 612, 3946); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:04:26', '13:04:32', '13:08:16', 627, 3947); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:05:45', '13:06:22', '13:25:53', 631, 3948); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:06:17', '13:13:00', '13:52:32', 612, 3949); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:07:41', '13:07:57', '13:12:37', 612, 3950); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:08:46', '13:08:47', '13:17:11', 627, 3951); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:09:08', '13:09:11', '15:27:11', 627, 3952); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:11:32', '13:26:41', '13:46:01', 612, 3953); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:15:59', '13:16:47', '13:40:28', 631, 3954); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:16:14', '13:19:05', '13:32:03', 631, 3955); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:16:44', '13:17:11', '13:32:00', 627, 3956); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:18:00', '13:23:11', '13:24:27', 631, 3957); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:18:26', '13:23:15', '13:37:05', 631, 3958); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:20:12', '13:27:16', '13:30:06', 612, 3959); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:20:25', '13:20:52', '13:59:39', 627, 3960); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:20:42', '13:20:48', '13:27:06', 612, 3961); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:22:39', '13:25:53', '14:46:58', 631, 3962); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:23:21', '13:27:55', '13:47:08', 612, 3963); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:23:56', '13:30:06', '13:51:14', 612, 3964); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:24:11', '13:24:28', '13:30:59', 631, 3965); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:24:25', '13:26:18', '15:28:05', 631, 3966); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:27:38', '13:30:59', '13:47:57', 631, 3967); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:28:07', '13:32:03', '13:42:04', 631, 3968); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:28:52', '13:31:47', '13:50:31', 627, 3969); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:34:34', '13:37:05', '13:54:32', 631, 3970); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:37:45', '13:46:01', '14:36:01', 612, 3971); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:38:24', '13:39:49', '13:44:20', 627, 3972); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:39:17', '13:44:21', '13:57:49', 627, 3973); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:39:58', '13:40:20', '15:10:54', 627, 3974); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:41:58', '13:42:05', '14:15:18', 631, 3975); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:43:35', '13:57:50', '14:02:47', 627, 3976); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:44:40', '13:47:09', '13:51:42', 612, 3977); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:45:26', '13:47:57', '14:03:11', 631, 3978); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:47:03', '13:47:27', '14:04:06', 612, 3979); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:47:36', '13:51:14', '14:04:48', 612, 3980); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:48:29', '13:51:42', '13:52:45', 612, 3981); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:49:17', '13:52:32', '14:32:31', 612, 3982); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:49:44', '13:52:45', '14:03:03', 612, 3983); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:55:34', '13:55:43', '14:03:16', 631, 3984); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:57:13', '14:03:12', '14:14:22', 631, 3985); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '13:59:53', '14:03:03', '14:17:51', 612, 3986); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:01:44', '14:03:17', '14:14:18', 631, 3987); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:02:06', '14:04:48', '14:41:18', 612, 3988); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:02:40', '14:11:47', '14:13:06', 627, 3989); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:03:59', '14:04:07', '15:12:04', 612, 3990); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:04:23', '14:05:02', '14:23:10', 627, 3991); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:06:50', '14:13:06', '14:17:54', 627, 3992); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:08:30', '14:08:38', '14:11:41', 612, 3993); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:09:57', '14:17:54', '14:54:50', 627, 3994); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:10:07', '14:22:31', '14:38:18', 627, 3995); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:10:36', '14:21:46', '14:37:21', 627, 3996); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:11:44', '14:23:10', '14:42:50', 627, 3997); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:12:46', '14:14:19', '14:53:50', 631, 3998); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:12:58', '14:13:22', '15:34:35', 631, 3999); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:14:01', '14:15:18', '14:57:26', 631, 4000); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:14:52', '14:17:52', '14:45:39', 612, 4001); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:16:17', '14:16:20', '15:04:46', 631, 4002); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:19:06', '14:19:12', '14:23:45', 612, 4003); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:19:10', '14:37:21', '15:08:01', 627, 4004); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:21:28', '14:38:19', '14:50:38', 627, 4005); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:22:27', '14:42:50', '15:05:59', 627, 4006); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:24:44', '14:50:38', '14:56:28', 627, 4007); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:27:21', '14:27:25', '14:53:24', 631, 4008); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:32:13', '14:32:31', '15:45:08', 612, 4009); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:35:52', '14:36:02', '14:47:44', 612, 4010); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:38:19', '14:54:50', '15:10:35', 627, 4011); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:40:52', '14:41:18', '15:13:25', 612, 4012); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:44:12', '14:57:16', '15:00:42', 627, 4013); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:45:30', '14:45:39', '14:53:05', 612, 4014); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:46:41', '14:46:59', '15:21:10', 631, 4015); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:47:37', '14:47:44', '14:59:32', 612, 4016); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:50:29', '15:04:48', '15:07:02', 627, 4017); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:51:32', '14:53:25', '15:05:21', 631, 4018); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:52:47', '14:53:50', '15:20:53', 631, 4019); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:52:51', '14:53:05', '15:27:28', 612, 4020); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:54:21', '15:06:00', '15:40:27', 627, 4021); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:55:48', '14:55:58', '16:44:00', 612, 4022); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:57:55', '14:58:10', '15:42:08', 631, 4023); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '14:59:18', '14:59:33', '15:46:13', 612, 4024); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:00:43', '15:04:46', '15:34:57', 631, 4025); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:02:53', '15:07:03', '15:09:28', 627, 4026); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:03:12', '15:05:09', '15:18:52', 627, 4027); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:03:24', '15:13:26', '15:33:47', 612, 4028); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:03:59', '15:08:02', '15:09:14', 627, 4029); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:04:04', '15:05:21', '16:07:14', 631, 4030); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:05:42', '15:10:24', '15:42:36', 631, 4031); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:06:11', '15:09:14', '16:03:37', 627, 4032); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:07:41', '15:12:04', '15:32:26', 612, 4033); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:08:40', '15:09:28', '15:31:50', 627, 4034); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:08:59', '15:10:35', '15:30:26', 627, 4035); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:09:18', '15:10:54', '15:55:24', 627, 4036); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:13:26', '15:20:53', '15:34:57', 631, 4037); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:15:42', '15:21:10', '15:35:57', 631, 4038); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:18:52', '15:28:06', '15:49:48', 631, 4039); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:18:57', '15:32:27', '15:41:26', 612, 4040); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:19:41', '15:19:54', '15:30:02', 627, 4041); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:21:54', '15:26:59', '15:48:54', 627, 4042); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:25:36', '15:30:02', '15:41:25', 627, 4043); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:27:14', '15:27:28', '15:41:54', 612, 4044); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:28:24', '15:34:57', '16:18:47', 631, 4045); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:30:02', '15:31:50', '15:42:08', 627, 4046); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:30:56', '15:30:57', '15:39:37', 627, 4047); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:31:34', '15:40:27', '16:47:42', 627, 4048); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:32:04', '15:33:47', '15:43:34', 612, 4049); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:32:12', '15:39:37', '16:11:29', 627, 4050); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:33:29', '15:41:25', '15:51:33', 627, 4051); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:33:40', '15:34:57', '15:45:49', 631, 4052); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:34:07', '15:34:36', '15:39:27', 631, 4053); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:34:28', '15:42:47', '16:19:21', 612, 4054); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:34:58', '15:35:57', '15:45:21', 631, 4055); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:35:38', '15:42:08', '15:59:10', 631, 4056); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:37:06', '15:41:33', '15:46:51', 612, 4057); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:37:54', '15:39:27', '16:04:18', 631, 4058); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:39:07', '15:42:37', '16:00:10', 631, 4059); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:39:15', '15:44:32', '15:51:57', 612, 4060); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:39:53', '15:45:21', '16:08:35', 631, 4061); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:40:12', '15:46:14', '16:44:00', 612, 4062); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:41:40', '15:45:49', '16:08:33', 631, 4063); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:43:26', '15:49:48', '16:06:11', 631, 4064); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:43:40', '15:45:08', '16:44:00', 612, 4065); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:46:24', '15:48:55', '16:09:39', 627, 4066); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:48:35', '15:51:58', '15:55:22', 612, 4067); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:50:36', '15:55:24', '16:15:08', 627, 4068); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:51:10', '15:55:49', '16:46:55', 627, 4069); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:51:38', '16:03:37', '16:47:35', 627, 4070); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:54:05', '15:55:23', '16:18:25', 612, 4071); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:55:38', '15:55:49', '16:04:07', 627, 4072); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '15:59:00', '15:59:10', '16:08:36', 631, 4073); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-23', '16:04:04', '16:06:11', '16:10:22', 631, 4074); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '08:57:20', '09:03:58', '09:13:48', 612, 4075); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '08:57:51', '08:58:18', '09:07:23', 612, 4076); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '08:58:07', '09:07:23', '09:57:17', 612, 4077); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:00:56', '09:02:08', '10:21:37', 631, 4078); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:01:12', '09:03:22', '10:13:35', 631, 4079); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:01:47', '09:09:35', '12:29:05', 631, 4080); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:02:10', '09:02:13', '09:33:04', 612, 4081); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:02:53', '09:03:02', '10:07:17', 612, 4082); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:08:12', '09:08:19', '10:08:11', 612, 4083); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:08:39', '09:13:22', '16:00:36', 631, 4084); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:09:30', '09:09:45', '10:02:14', 612, 4085); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:11:26', '09:11:28', '09:18:24', 627, 4086); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:11:54', '09:12:00', '09:26:22', 627, 4087); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:16:40', '09:16:53', '09:20:10', 631, 4088); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:17:05', '09:17:18', '10:09:03', 612, 4089); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:17:31', '09:25:28', '12:29:06', 631, 4090); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:19:04', '09:20:10', '10:26:34', 631, 4091); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:26:05', '09:26:09', '11:58:54', 612, 4092); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:44:00', '09:44:02', '10:13:28', 631, 4093); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:46:02', '09:47:56', '10:04:23', 631, 4094); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '09:51:28', '09:51:47', '09:56:58', 627, 4095); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:01:07', '10:01:13', '10:12:28', 627, 4096); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:02:11', '10:02:15', '10:35:42', 612, 4097); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:02:30', '10:02:48', '10:07:18', 612, 4098); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:03:55', '10:12:02', '15:51:17', 627, 4099); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:04:01', '10:04:23', '12:30:36', 631, 4100); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:07:09', '10:07:17', '10:09:28', 612, 4101); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:07:29', '10:07:36', '10:24:44', 612, 4102); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:08:04', '10:08:12', '10:10:19', 612, 4103); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:08:11', '10:09:29', '10:23:15', 612, 4104); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:08:52', '10:09:03', '10:41:30', 612, 4105); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:09:37', '10:12:28', '10:23:08', 627, 4106); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:10:06', '10:10:19', '10:41:38', 612, 4107); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:10:13', '10:10:17', '10:55:53', 631, 4108); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:13:39', '10:13:46', '11:00:24', 631, 4109); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:14:53', '10:15:00', '11:31:00', 631, 4110); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:17:53', '10:17:59', '12:19:53', 631, 4111); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:19:50', '10:24:44', '10:29:47', 612, 4112); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:20:56', '10:21:37', '10:37:52', 631, 4113); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:21:23', '10:22:29', '11:28:18', 631, 4114); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:22:25', '10:22:26', '10:33:10', 627, 4115); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:23:04', '10:23:15', '10:41:35', 612, 4116); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:25:08', '10:26:34', '10:37:10', 631, 4117); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:25:36', '10:29:47', '10:37:22', 612, 4118); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:30:28', '10:30:38', '10:39:12', 612, 4119); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:33:44', '10:33:49', '10:34:57', 612, 4120); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:35:26', '10:37:10', '11:18:13', 631, 4121); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:35:37', '10:35:42', '11:20:21', 612, 4122); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:37:18', '10:37:52', '11:21:13', 631, 4123); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:41:42', '10:41:50', '11:26:05', 612, 4124); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:43:03', '11:13:19', '11:19:46', 627, 4125); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:46:59', '10:47:08', '10:54:31', 612, 4126); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:51:01', '10:51:02', '10:58:15', 627, 4127); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:52:25', '10:52:50', '11:14:02', 627, 4128); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:55:01', '10:55:16', '11:25:49', 612, 4129); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:55:05', '10:55:54', '11:14:56', 631, 4130); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:56:02', '10:58:16', '11:39:26', 627, 4131); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '10:59:53', '11:00:24', '11:12:16', 631, 4132); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:01:04', '11:06:45', '11:15:26', 627, 4133); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:02:07', '11:02:15', '11:07:18', 612, 4134); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:06:58', '11:07:07', '11:31:45', 612, 4135); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:11:46', '11:12:17', '12:00:46', 631, 4136); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:14:02', '11:14:56', '11:57:32', 631, 4137); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:15:24', '11:18:14', '11:40:51', 631, 4138); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:16:32', '11:19:46', '11:48:44', 627, 4139); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:17:19', '11:17:38', '11:31:29', 612, 4140); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:19:11', '11:20:22', '11:46:54', 612, 4141); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:20:52', '11:21:13', '11:49:40', 631, 4142); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:21:14', '11:25:49', '11:34:53', 612, 4143); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:22:15', '11:22:21', '11:31:04', 627, 4144); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:22:34', '11:22:46', '11:28:03', 627, 4145); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:23:43', '11:26:05', '11:43:20', 612, 4146); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:24:16', '11:34:53', '11:53:44', 612, 4147); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:26:44', '11:28:18', '12:20:48', 631, 4148); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:29:38', '11:31:30', '11:44:30', 612, 4149); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:31:02', '11:31:21', '12:01:05', 631, 4150); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:31:23', '11:40:52', '12:38:02', 631, 4151); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:34:20', '11:34:46', '11:47:02', 627, 4152); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:34:51', '11:35:08', '11:42:16', 627, 4153); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:35:55', '11:36:09', '11:48:49', 612, 4154); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:37:20', '11:39:27', '12:10:32', 627, 4155); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:43:12', '11:43:21', '12:11:42', 612, 4156); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:44:01', '11:44:37', '11:54:10', 612, 4157); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:45:36', '11:46:54', '12:39:28', 612, 4158); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:46:08', '11:48:49', '12:06:20', 612, 4159); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:47:47', '11:48:45', '13:00:38', 627, 4160); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:49:19', '11:49:41', '12:32:58', 631, 4161); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:53:40', '11:53:44', '12:30:29', 612, 4162); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:53:47', '11:54:11', '12:27:43', 612, 4163); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:54:03', '11:54:05', '12:06:32', 612, 4164); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:54:11', '11:57:49', '12:14:52', 627, 4165); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:54:46', '11:58:54', '12:30:18', 612, 4166); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '11:56:57', '11:57:32', '12:12:32', 631, 4167); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:00:00', '12:00:47', '12:42:45', 631, 4168); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:00:37', '12:01:06', '12:31:28', 631, 4169); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:07:51', '12:11:42', '12:16:43', 612, 4170); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:09:26', '12:12:32', '12:55:30', 631, 4171); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:12:25', '12:12:33', '12:19:29', 627, 4172); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:16:54', '12:20:48', '12:49:44', 631, 4173); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:21:54', '12:29:05', '12:39:49', 631, 4174); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:25:00', '12:29:07', '12:35:18', 631, 4175); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:26:21', '12:26:26', '12:44:17', 627, 4176); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:26:42', '12:27:44', '13:02:55', 612, 4177); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:26:52', '12:39:28', '13:11:48', 612, 4178); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:30:08', '12:30:19', '12:39:40', 612, 4179); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:30:17', '12:31:28', '12:52:59', 631, 4180); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:30:22', '12:30:29', '12:42:45', 612, 4181); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:30:27', '12:30:36', '12:46:12', 631, 4182); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:31:18', '12:32:58', '12:55:31', 631, 4183); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:32:32', '12:35:18', '12:42:37', 631, 4184); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:34:38', '12:40:44', '12:51:52', 627, 4185); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:36:20', '12:37:48', '16:04:08', 631, 4186); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:37:04', '12:39:41', '12:41:59', 612, 4187); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:37:18', '12:38:02', '12:58:31', 631, 4188); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:37:28', '12:41:59', '12:47:36', 612, 4189); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:37:50', '12:44:22', '13:04:16', 612, 4190); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:37:58', '12:39:49', '12:52:22', 631, 4191); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:38:49', '12:42:37', '12:48:23', 631, 4192); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:40:01', '12:42:45', '13:31:42', 631, 4193); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:40:08', '12:42:13', '12:53:51', 627, 4194); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:40:30', '12:44:17', '12:48:04', 627, 4195); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:41:31', '12:47:36', '12:57:05', 612, 4196); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:42:05', '12:42:13', '12:45:47', 612, 4197); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:42:39', '12:42:45', '12:59:11', 612, 4198); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:44:25', '12:46:12', '13:27:05', 631, 4199); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:46:16', '12:48:24', '13:56:17', 631, 4200); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:46:51', '12:49:44', '13:10:25', 631, 4201); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:46:53', '12:48:04', '13:03:09', 627, 4202); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:47:08', '12:52:22', '13:10:01', 631, 4203); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:47:26', '12:52:59', '13:09:41', 631, 4204); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:49:10', '12:59:12', '13:00:53', 612, 4205); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:49:45', '12:57:05', '13:03:15', 612, 4206); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:50:09', '13:06:22', '13:16:29', 612, 4207); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:51:33', '12:55:30', '13:34:12', 631, 4208); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:53:29', '12:55:22', '13:32:58', 627, 4209); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:53:47', '13:00:53', '13:15:08', 612, 4210); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:56:29', '13:03:16', '13:37:12', 612, 4211); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:57:29', '12:58:31', '14:02:33', 631, 4212); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:58:04', '12:58:11', '12:59:24', 612, 4213); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:59:01', '13:03:51', '13:05:33', 612, 4214); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '12:59:47', '13:00:39', '13:06:02', 627, 4215); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:00:11', '13:00:12', '13:11:01', 631, 4216); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:01:38', '13:04:16', '13:18:09', 612, 4217); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:02:24', '13:06:02', '13:27:49', 627, 4218); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:02:37', '13:09:41', '13:14:43', 631, 4219); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:03:40', '13:05:33', '13:14:08', 612, 4220); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:03:46', '13:03:51', '13:09:03', 627, 4221); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:04:13', '13:11:48', '13:46:12', 612, 4222); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:04:57', '13:10:02', '13:16:12', 631, 4223); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:06:01', '13:10:25', '13:33:28', 631, 4224); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:06:52', '13:09:04', '13:11:30', 627, 4225); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:07:12', '13:11:30', '13:14:00', 627, 4226); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:07:42', '13:14:08', '14:08:23', 612, 4227); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:07:43', '13:08:44', '13:31:35', 627, 4228); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:07:56', '13:08:55', '13:13:23', 627, 4229); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:08:12', '13:11:01', '14:16:24', 631, 4230); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:08:29', '13:13:23', '13:20:59', 627, 4231); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:08:41', '13:27:49', '15:10:01', 627, 4232); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:11:27', '13:18:10', '13:23:54', 612, 4233); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:11:32', '13:14:44', '13:21:57', 631, 4234); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:13:10', '13:14:00', '13:25:46', 627, 4235); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:13:20', '13:16:12', '13:27:26', 631, 4236); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:14:39', '13:15:09', '15:19:47', 612, 4237); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:15:05', '13:18:51', '13:25:56', 612, 4238); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:16:55', '13:17:04', '13:41:58', 627, 4239); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:17:15', '13:20:59', '13:34:21', 627, 4240); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:17:20', '13:37:12', '14:54:45', 612, 4241); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:19:45', '13:22:28', '13:32:03', 627, 4242); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:22:03', '13:22:20', '13:44:54', 612, 4243); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:22:52', '13:27:27', '13:34:46', 631, 4244); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:23:09', '13:23:16', '13:27:24', 612, 4245); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:23:30', '13:25:46', '13:36:06', 627, 4246); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:24:24', '13:33:29', '14:05:30', 631, 4247); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:24:48', '13:34:12', '13:50:58', 631, 4248); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:25:32', '13:31:42', '14:00:37', 631, 4249); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:26:09', '13:26:13', '13:35:01', 612, 4250); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:26:19', '13:34:21', '14:07:35', 627, 4251); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:26:30', '13:32:04', '13:41:09', 627, 4252); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:26:33', '13:35:29', '14:24:37', 612, 4253); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:26:34', '13:27:06', '14:06:50', 631, 4254); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:30:04', '13:36:06', '13:37:43', 627, 4255); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:31:51', '13:34:46', '15:21:02', 631, 4256); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:40:14', '13:40:34', '13:45:26', 627, 4257); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:40:27', '13:40:57', '13:42:36', 627, 4258); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:43:34', '13:43:35', '14:21:49', 612, 4259); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:44:36', '13:44:55', '13:55:39', 612, 4260); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:46:08', '13:46:12', '14:08:23', 612, 4261); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:47:39', '13:49:40', '13:53:19', 627, 4262); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:50:44', '13:50:58', '14:00:12', 631, 4263); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:51:02', '13:56:18', '14:51:08', 631, 4264); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:52:25', '13:55:39', '14:29:16', 612, 4265); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:55:28', '13:57:11', '13:58:48', 627, 4266); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:56:34', '14:00:12', '14:08:10', 631, 4267); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '13:57:58', '14:01:28', '14:51:01', 627, 4268); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:00:13', '14:00:37', '14:38:50', 631, 4269); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:01:57', '14:07:36', '14:26:30', 627, 4270); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:02:14', '14:02:33', '14:48:32', 631, 4271); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:02:48', '14:02:52', '14:20:50', 627, 4272); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:03:28', '14:10:13', '14:27:19', 627, 4273); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:05:37', '14:06:02', '14:11:12', 627, 4274); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:05:41', '14:05:46', '14:16:08', 631, 4275); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:06:14', '14:06:50', '16:01:03', 631, 4276); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:06:41', '14:20:51', '14:38:14', 627, 4277); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:07:46', '14:08:05', '14:09:27', 612, 4278); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:08:02', '14:08:10', '14:28:32', 631, 4279); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:08:16', '14:08:23', '14:12:05', 612, 4280); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:08:48', '14:10:10', '14:34:24', 631, 4281); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:09:25', '14:11:13', '14:23:19', 627, 4282); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:10:11', '14:10:25', '14:15:11', 612, 4283); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:10:48', '14:16:09', '15:04:49', 631, 4284); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:10:51', '14:12:05', '14:27:14', 612, 4285); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:12:25', '14:16:24', '14:27:25', 631, 4286); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:13:24', '14:15:11', '14:39:07', 612, 4287); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:13:42', '14:23:20', '14:26:53', 627, 4288); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:14:51', '14:19:43', '14:30:37', 612, 4289); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:16:46', '14:26:30', '14:33:18', 627, 4290); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:17:02', '14:24:38', '15:19:47', 612, 4291); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:17:52', '14:27:15', '15:19:47', 612, 4292); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:18:22', '14:30:37', '14:36:22', 612, 4293); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:25:52', '14:26:53', '14:45:29', 627, 4294); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:25:54', '14:28:33', '14:38:02', 631, 4295); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:33:15', '14:38:14', '14:40:58', 627, 4296); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:33:32', '14:34:24', '15:04:49', 631, 4297); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:35:06', '14:38:02', '15:34:26', 631, 4298); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:38:04', '14:38:50', '15:04:42', 631, 4299); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:38:54', '14:39:07', '14:41:44', 612, 4300); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:41:29', '14:41:44', '15:19:47', 612, 4301); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:41:33', '14:41:40', '14:47:31', 627, 4302); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:41:53', '14:45:30', '15:02:44', 627, 4303); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:42:27', '14:42:31', '14:50:57', 612, 4304); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:42:33', '14:47:32', '14:55:50', 627, 4305); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:46:28', '14:49:04', '14:55:46', 627, 4306); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:47:59', '14:48:33', '16:01:00', 631, 4307); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:48:53', '14:55:03', '15:34:49', 627, 4308); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:49:08', '14:51:01', '14:58:17', 627, 4309); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:50:27', '14:51:08', '16:02:12', 631, 4310); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:51:06', '14:55:50', '15:11:03', 627, 4311); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:52:25', '14:52:27', '15:14:58', 612, 4312); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:54:21', '14:54:46', '15:19:47', 612, 4313); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '14:55:15', '14:58:08', '15:36:42', 627, 4314); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:00:14', '15:09:31', '15:11:38', 627, 4315); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:01:41', '15:04:17', '15:29:55', 631, 4316); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:02:02', '15:02:45', '15:08:01', 627, 4317); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:03:11', '15:08:01', '15:33:28', 627, 4318); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:04:56', '15:05:00', '15:35:37', 631, 4319); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:08:25', '15:10:01', '16:27:09', 627, 4320); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:09:02', '15:09:26', '15:19:59', 627, 4321); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:14:03', '15:14:03', '15:20:06', 631, 4322); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:17:55', '15:19:59', '15:37:57', 627, 4323); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:19:42', '15:20:06', '15:24:13', 631, 4324); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:20:22', '15:21:03', '15:42:14', 631, 4325); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:22:19', '15:25:58', '15:39:59', 627, 4326); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:23:01', '15:26:17', '16:12:18', 627, 4327); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:23:31', '15:24:13', '16:00:39', 631, 4328); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:25:00', '15:28:43', '15:36:40', 627, 4329); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:28:31', '15:33:28', '15:56:08', 627, 4330); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:29:42', '15:29:55', '16:00:31', 631, 4331); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:30:48', '15:34:49', '15:45:53', 627, 4332); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:31:41', '15:36:43', '15:49:33', 627, 4333); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:32:09', '15:37:57', '15:47:31', 627, 4334); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:32:36', '15:40:00', '15:44:12', 627, 4335); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:32:41', '15:34:26', '16:00:29', 631, 4336); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:34:06', '15:35:37', '15:48:01', 631, 4337); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:35:58', '15:42:14', '16:01:21', 631, 4338); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:36:31', '15:36:41', '15:59:49', 627, 4339); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:37:38', '15:45:54', '16:09:15', 627, 4340); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:38:11', '15:47:31', '15:51:43', 627, 4341); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:39:42', '15:49:33', '16:18:14', 627, 4342); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:46:46', '15:51:44', '16:12:17', 627, 4343); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:48:16', '15:56:08', '15:58:39', 627, 4344); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:50:03', '15:58:39', '16:26:53', 627, 4345); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '15:50:18', '15:51:17', '16:27:02', 627, 4346); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-24', '16:00:17', '16:09:15', '16:19:09', 627, 4347); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '10:01:06', '10:07:18', '10:26:21', 627, 4348); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '10:01:23', '10:07:37', '10:17:40', 627, 4349); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '10:01:30', '10:10:04', '11:03:15', 627, 4350); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '10:06:06', '10:11:38', '10:16:30', 627, 4351); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '10:21:33', '10:21:36', '11:10:33', 631, 4352); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '10:23:58', '10:23:59', '11:50:04', 612, 4353); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '10:34:05', '10:34:46', '11:44:01', 627, 4354); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '10:41:27', '10:41:39', '12:17:39', 612, 4355); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '10:43:42', '10:43:59', '11:18:52', 627, 4356); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '10:46:44', '10:52:21', '10:57:24', 627, 4357); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '10:51:32', '10:51:33', '11:13:31', 631, 4358); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '10:52:13', '10:58:06', '11:04:16', 627, 4359); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '10:52:36', '10:52:37', '11:01:48', 631, 4360); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '10:55:06', '10:55:09', '11:09:14', 612, 4361); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '10:58:34', '10:58:40', '11:14:06', 631, 4362); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:01:28', '11:03:15', '11:15:01', 627, 4363); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:01:50', '11:01:59', '11:15:32', 631, 4364); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:02:50', '11:03:16', '11:10:06', 627, 4365); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:03:03', '11:03:12', '11:51:10', 612, 4366); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:04:48', '11:08:21', '11:50:42', 627, 4367); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:06:51', '11:15:01', '11:42:43', 627, 4368); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:07:07', '11:13:31', '11:18:40', 631, 4369); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:09:05', '11:09:14', '12:41:41', 612, 4370); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:09:05', '11:10:33', '11:15:33', 631, 4371); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:11:05', '11:11:14', '13:36:41', 612, 4372); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:12:46', '11:14:07', '12:15:15', 631, 4373); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:13:11', '11:14:59', '11:56:39', 631, 4374); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:13:54', '11:15:32', '11:42:00', 631, 4375); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:14:24', '11:15:34', '11:43:57', 631, 4376); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:17:46', '11:18:40', '12:33:49', 631, 4377); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:25:51', '11:33:12', '11:41:53', 627, 4378); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:32:48', '11:44:02', '11:49:06', 627, 4379); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:41:49', '11:42:00', '12:07:58', 631, 4380); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:42:45', '11:42:45', '12:29:36', 627, 4381); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:43:44', '11:43:58', '12:00:18', 631, 4382); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:45:28', '11:50:04', '12:03:13', 612, 4383); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:47:19', '11:50:08', '12:10:08', 627, 4384); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:47:27', '11:50:42', '12:30:56', 627, 4385); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:48:45', '11:49:06', '12:34:44', 627, 4386); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:49:18', '11:54:48', '12:15:42', 627, 4387); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:51:20', '11:51:40', '12:16:47', 612, 4388); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:51:39', '11:51:53', '12:13:50', 631, 4389); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:53:41', '11:56:39', '12:10:53', 631, 4390); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '11:58:37', '12:00:18', '12:32:17', 631, 4391); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:03:03', '12:03:14', '13:00:35', 612, 4392); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:07:18', '12:15:43', '12:26:38', 627, 4393); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:07:47', '12:07:59', '12:19:31', 631, 4394); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:08:33', '12:10:53', '12:44:27', 631, 4395); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:09:37', '12:10:08', '12:16:41', 627, 4396); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:12:40', '12:13:50', '13:13:13', 631, 4397); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:14:43', '12:15:15', '12:43:48', 631, 4398); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:15:31', '12:22:58', '13:01:00', 627, 4399); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:16:06', '12:16:42', '12:22:17', 627, 4400); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:17:37', '12:17:40', '13:05:48', 612, 4401); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:21:07', '12:21:08', '13:02:19', 631, 4402); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:24:17', '12:29:31', '12:44:29', 627, 4403); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:24:35', '12:29:36', '12:38:02', 627, 4404); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:26:29', '12:30:56', '13:23:17', 627, 4405); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:31:33', '12:38:02', '12:43:53', 627, 4406); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:32:06', '12:32:17', '12:57:26', 631, 4407); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:33:44', '12:33:50', '12:46:20', 631, 4408); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:34:11', '12:34:45', '15:25:30', 627, 4409); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:35:12', '12:43:54', '12:53:55', 627, 4410); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:37:44', '12:43:48', '13:47:30', 631, 4411); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:41:27', '12:41:41', '13:13:11', 612, 4412); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:42:27', '12:44:27', '13:13:31', 631, 4413); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:42:55', '12:47:42', '12:50:52', 627, 4414); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:43:38', '12:46:21', '12:51:05', 631, 4415); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:47:04', '12:53:55', '13:21:34', 627, 4416); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:49:17', '12:51:06', '13:15:46', 631, 4417); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:51:11', '13:01:00', '13:16:35', 627, 4418); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:56:30', '12:57:26', '13:12:42', 631, 4419); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:56:48', '12:58:19', '13:57:30', 612, 4420); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:58:05', '13:00:35', '13:19:12', 612, 4421); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '12:59:49', '13:02:20', '13:37:13', 631, 4422); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:00:09', '13:05:48', '13:10:06', 612, 4423); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:06:10', '13:07:24', '15:56:46', 631, 4424); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:07:06', '13:12:42', '13:19:25', 631, 4425); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:09:14', '13:10:07', '13:16:13', 612, 4426); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:09:54', '13:13:13', '13:46:34', 631, 4427); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:11:12', '13:13:11', '13:35:36', 612, 4428); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:13:28', '13:13:31', '15:14:10', 631, 4429); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:14:19', '13:19:12', '13:21:32', 612, 4430); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:15:29', '13:15:47', '13:44:11', 631, 4431); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:17:45', '13:19:26', '14:06:15', 631, 4432); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:18:36', '13:21:34', '15:32:07', 627, 4433); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:20:11', '13:20:13', '13:27:55', 627, 4434); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:20:44', '13:23:18', '13:28:57', 627, 4435); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:21:20', '13:21:32', '13:32:50', 612, 4436); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:26:49', '13:28:57', '13:37:23', 627, 4437); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:32:39', '13:32:50', '13:55:04', 612, 4438); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:35:17', '13:35:36', '13:38:05', 612, 4439); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:36:07', '13:36:17', '14:02:17', 612, 4440); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:36:28', '13:36:41', '14:01:17', 612, 4441); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:37:03', '13:37:14', '14:33:12', 631, 4442); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:37:22', '13:38:05', '14:05:01', 612, 4443); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:42:50', '13:44:12', '14:16:42', 631, 4444); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:43:24', '13:46:34', '14:18:49', 631, 4445); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:45:37', '13:46:08', '13:51:56', 627, 4446); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:48:40', '13:51:56', '14:10:49', 627, 4447); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:55:04', '13:55:05', '14:07:33', 612, 4448); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '13:59:03', '14:01:17', '14:27:54', 612, 4449); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:02:11', '14:02:17', '14:11:33', 612, 4450); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:02:58', '14:13:03', '14:30:44', 627, 4451); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:04:33', '14:05:02', '14:16:44', 612, 4452); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:06:04', '14:06:15', '14:14:11', 631, 4453); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:07:28', '14:07:33', '15:25:26', 612, 4454); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:11:27', '14:11:33', '14:27:30', 612, 4455); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:11:37', '14:12:59', '14:34:25', 631, 4456); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:12:55', '14:14:12', '14:20:25', 631, 4457); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:14:18', '14:16:42', '14:20:07', 631, 4458); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:14:36', '14:20:07', '14:27:33', 631, 4459); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:15:55', '14:16:44', '14:29:10', 612, 4460); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:17:39', '14:18:49', '14:59:52', 631, 4461); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:18:05', '14:20:26', '14:41:47', 631, 4462); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:21:28', '14:21:52', '14:49:18', 612, 4463); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:25:41', '14:26:35', '14:37:46', 627, 4464); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:25:53', '14:27:34', '14:46:41', 631, 4465); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:25:56', '14:26:00', '14:38:31', 612, 4466); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:26:58', '14:27:30', '15:18:28', 612, 4467); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:27:01', '14:31:26', '14:39:15', 627, 4468); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:27:25', '14:27:54', '14:36:33', 612, 4469); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:28:00', '14:37:21', '14:44:17', 627, 4470); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:28:34', '14:29:11', '14:39:58', 612, 4471); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:33:10', '14:38:32', '16:02:53', 612, 4472); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:33:27', '14:33:33', '14:45:48', 631, 4473); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:33:45', '14:34:25', '15:09:54', 631, 4474); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:36:14', '14:41:47', '14:53:20', 631, 4475); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:38:39', '14:45:48', '15:14:31', 631, 4476); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:39:37', '14:39:58', '15:14:32', 612, 4477); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:41:03', '14:41:06', '15:00:00', 627, 4478); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:42:20', '14:46:42', '14:56:08', 631, 4479); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:48:30', '14:49:19', '15:17:06', 612, 4480); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:49:38', '14:53:21', '15:02:30', 631, 4481); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:54:25', '14:56:08', '15:05:46', 631, 4482); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:54:53', '14:59:52', '15:11:08', 631, 4483); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:56:29', '15:02:30', '15:03:30', 631, 4484); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:57:23', '14:58:27', '15:26:30', 627, 4485); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '14:58:12', '14:58:32', '15:44:43', 627, 4486); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:02:19', '15:03:30', '15:10:08', 631, 4487); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:04:20', '15:04:21', '15:08:54', 627, 4488); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:04:29', '15:05:46', '16:05:19', 631, 4489); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:05:01', '15:09:54', '15:33:20', 631, 4490); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:06:36', '15:10:09', '15:59:47', 631, 4491); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:07:16', '15:11:09', '15:20:34', 631, 4492); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:07:54', '15:25:31', '15:29:18', 627, 4493); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:09:46', '15:14:33', '15:18:51', 612, 4494); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:11:06', '15:14:10', '15:23:50', 631, 4495); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:13:47', '15:14:31', '15:48:49', 631, 4496); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:16:38', '15:16:45', '15:25:06', 627, 4497); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:17:02', '15:18:28', '15:28:00', 612, 4498); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:18:37', '15:18:51', '15:38:00', 612, 4499); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:18:52', '15:20:34', '15:59:53', 631, 4500); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:19:41', '15:23:50', '15:59:52', 631, 4501); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:25:20', '15:25:27', '15:28:47', 612, 4502); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:26:23', '15:29:18', '16:02:17', 627, 4503); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:27:52', '15:28:00', '16:01:43', 612, 4504); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:28:04', '15:28:48', '15:48:45', 612, 4505); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:30:00', '15:30:42', '15:34:54', 612, 4506); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:30:12', '15:30:18', '15:48:46', 627, 4507); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:30:18', '15:32:08', '15:52:22', 627, 4508); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:30:35', '15:48:47', '16:02:55', 627, 4509); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:30:51', '15:49:22', '15:57:50', 627, 4510); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:34:42', '15:34:55', '15:40:41', 612, 4511); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:37:36', '15:38:24', '16:02:45', 612, 4512); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:37:52', '15:49:34', '16:11:30', 627, 4513); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:39:14', '15:52:22', '16:05:45', 627, 4514); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:40:10', '15:40:42', '16:05:26', 612, 4515); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:53:52', '15:55:59', '16:38:23', 627, 4516); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:54:16', '16:02:55', '16:07:54', 627, 4517); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-25', '15:57:09', '16:07:57', '16:33:13', 627, 4518); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '11:57:44', '11:57:56', '12:41:00', 612, 4519); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '12:00:24', '12:00:51', '12:40:58', 612, 4520); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '12:00:41', '12:01:07', '12:03:57', 612, 4521); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '12:12:36', '12:12:42', '12:34:17', 612, 4522); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '12:34:14', '12:34:17', '15:00:42', 612, 4523); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '12:41:10', '12:41:10', '13:10:18', 612, 4524); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '13:10:19', '13:10:19', '13:20:01', 612, 4525); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '13:19:52', '13:20:01', '15:28:16', 612, 4526); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '14:20:39', '14:21:07', '15:29:00', 612, 4527); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '14:21:14', '14:21:48', '15:20:43', 612, 4528); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '14:26:13', '14:27:35', '15:36:21', 612, 4529); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '14:52:49', '14:53:33', '15:13:05', 612, 4530); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '14:59:58', '15:00:42', '15:46:26', 612, 4531); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '15:10:33', '15:13:05', '15:21:13', 612, 4532); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '15:20:19', '15:20:43', '15:34:03', 612, 4533); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '15:27:41', '15:29:01', '15:46:40', 612, 4534); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '15:33:46', '15:34:04', '15:48:27', 612, 4535); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-26', '15:35:37', '15:36:21', '15:46:26', 612, 4536); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '08:58:23', '08:59:42', '10:02:18', 612, 4537); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '08:58:45', '09:02:18', '10:02:18', 612, 4538); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '09:07:30', '09:07:37', '09:39:43', 627, 4539); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '09:12:51', '09:12:59', '09:22:22', 627, 4540); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '09:13:55', '09:15:14', '10:13:32', 627, 4541); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '09:18:32', '09:18:37', '12:45:35', 631, 4542); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '09:31:13', '09:32:27', '10:02:41', 627, 4543); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '09:38:57', '09:38:57', '09:46:17', 627, 4544); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '09:45:16', '09:45:23', '10:23:25', 627, 4545); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '09:51:27', '09:51:33', '10:26:19', 627, 4546); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '09:57:51', '09:57:51', '10:35:28', 631, 4547); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '09:59:41', '09:59:48', '10:38:17', 631, 4548); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:01:08', '10:02:41', '10:50:18', 627, 4549); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:11:46', '10:11:49', '10:26:32', 631, 4550); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:11:54', '10:11:55', '10:37:50', 627, 4551); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:14:02', '10:14:03', '10:19:22', 627, 4552); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:17:42', '10:17:46', '10:38:23', 612, 4553); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:22:34', '10:22:38', '10:24:55', 627, 4554); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:23:28', '10:23:37', '11:36:32', 627, 4555); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:24:09', '10:24:14', '10:35:20', 612, 4556); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:26:09', '10:26:33', '10:39:09', 631, 4557); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:30:31', '10:35:28', '10:45:30', 631, 4558); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:33:50', '10:33:54', '10:46:46', 627, 4559); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:35:08', '10:35:13', '11:32:53', 612, 4560); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:35:44', '10:35:51', '10:53:27', 612, 4561); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:36:14', '10:38:17', '11:28:20', 631, 4562); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:37:52', '10:39:09', '10:52:32', 631, 4563); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:38:15', '10:38:25', '10:50:23', 612, 4564); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:42:35', '10:42:43', '10:48:50', 612, 4565); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:45:30', '10:45:31', '11:21:46', 631, 4566); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:46:32', '10:50:18', '11:00:09', 627, 4567); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:49:42', '10:52:32', '11:09:33', 631, 4568); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:50:16', '10:50:23', '10:57:34', 612, 4569); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:53:14', '10:53:27', '11:25:07', 612, 4570); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:56:10', '10:56:27', '11:56:48', 612, 4571); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:57:21', '10:57:35', '11:27:17', 612, 4572); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:57:55', '11:00:10', '11:19:09', 627, 4573); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '10:58:07', '10:59:17', '11:08:51', 627, 4574); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:01:41', '11:06:17', '11:56:47', 612, 4575); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:09:41', '11:09:44', '11:34:02', 631, 4576); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:09:59', '11:10:07', '11:18:32', 627, 4577); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:13:02', '11:15:15', '12:13:48', 612, 4578); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:13:40', '11:14:24', '11:34:18', 631, 4579); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:14:00', '11:19:10', '12:21:06', 627, 4580); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:14:50', '11:18:32', '11:21:57', 627, 4581); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:18:09', '11:21:57', '11:32:38', 627, 4582); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:21:00', '11:21:01', '11:43:54', 612, 4583); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:21:24', '11:21:47', '12:00:20', 631, 4584); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:24:27', '11:25:07', '11:48:36', 612, 4585); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:26:44', '11:27:18', '12:47:06', 612, 4586); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:28:07', '11:28:21', '11:40:47', 631, 4587); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:30:57', '11:34:18', '11:40:02', 631, 4588); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:31:34', '11:32:53', '11:49:50', 612, 4589); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:33:52', '11:33:56', '11:44:45', 612, 4590); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:34:05', '11:34:13', '12:00:10', 631, 4591); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:34:42', '11:40:48', '11:52:13', 631, 4592); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:35:53', '11:36:33', '14:17:07', 627, 4593); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:37:14', '11:44:16', '12:44:37', 631, 4594); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:37:36', '11:40:02', '12:07:15', 631, 4595); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:38:03', '11:38:12', '11:56:44', 627, 4596); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:38:22', '11:48:36', '12:02:42', 612, 4597); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:40:50', '11:46:59', '11:52:26', 631, 4598); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:43:40', '11:43:55', '12:19:58', 612, 4599); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:47:34', '11:52:14', '12:07:37', 631, 4600); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:49:04', '11:49:08', '11:56:10', 627, 4601); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:49:24', '11:49:51', '12:31:25', 612, 4602); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:49:27', '11:52:26', '12:01:15', 631, 4603); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:50:49', '12:00:11', '12:10:10', 631, 4604); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:51:12', '11:56:49', '12:13:47', 612, 4605); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:56:38', '11:56:47', '12:41:59', 612, 4606); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:57:19', '12:00:21', '12:28:20', 631, 4607); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '11:58:02', '12:01:15', '12:37:11', 631, 4608); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:01:02', '12:02:42', '12:31:29', 612, 4609); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:02:10', '12:07:37', '12:13:46', 631, 4610); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:05:34', '12:05:41', '12:23:42', 627, 4611); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:05:41', '12:07:16', '12:45:11', 631, 4612); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:06:06', '12:10:11', '12:42:42', 631, 4613); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:12:10', '12:12:17', '12:20:41', 627, 4614); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:12:42', '12:13:47', '12:38:40', 631, 4615); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:13:39', '12:13:47', '13:44:42', 612, 4616); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:19:22', '12:21:07', '12:27:03', 627, 4617); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:22:46', '12:27:03', '12:48:15', 627, 4618); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:25:32', '12:25:39', '12:33:55', 612, 4619); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:28:05', '12:28:20', '12:32:19', 631, 4620); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:28:29', '12:32:19', '12:37:45', 631, 4621); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:29:15', '12:37:11', '13:11:41', 631, 4622); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:29:56', '12:37:46', '12:40:46', 631, 4623); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:30:34', '12:38:41', '13:37:54', 631, 4624); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:31:09', '12:31:29', '12:44:33', 612, 4625); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:31:13', '12:40:46', '12:42:43', 631, 4626); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:32:17', '12:32:50', '12:57:32', 612, 4627); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:33:38', '12:33:56', '12:41:31', 612, 4628); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:35:59', '12:37:04', '12:41:10', 627, 4629); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:36:48', '12:36:52', '12:52:53', 627, 4630); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:38:31', '12:42:42', '12:48:15', 631, 4631); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:38:43', '12:44:34', '12:56:43', 612, 4632); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:39:25', '12:42:43', '13:14:07', 631, 4633); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:39:30', '12:42:20', '13:44:16', 612, 4634); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:40:18', '12:44:38', '13:33:40', 631, 4635); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:40:59', '12:45:35', '13:06:20', 631, 4636); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:41:35', '12:48:16', '12:51:02', 631, 4637); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:41:41', '12:47:06', '12:59:11', 612, 4638); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:41:49', '12:41:55', '13:10:05', 627, 4639); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:43:43', '12:45:12', '12:54:10', 631, 4640); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:43:57', '12:56:43', '13:49:34', 612, 4641); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:44:38', '12:54:10', '13:17:17', 631, 4642); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:45:23', '12:48:15', '13:38:49', 627, 4643); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:46:22', '12:51:02', '12:57:33', 631, 4644); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:48:01', '12:57:33', '13:02:21', 631, 4645); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:50:56', '12:58:27', '13:01:11', 612, 4646); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:51:34', '12:59:12', '13:07:24', 612, 4647); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:53:51', '13:02:21', '13:16:15', 631, 4648); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:56:24', '13:07:24', '13:12:05', 612, 4649); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '12:58:04', '13:06:20', '13:32:48', 631, 4650); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:01:05', '13:01:12', '13:05:12', 612, 4651); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:03:18', '13:03:25', '13:36:18', 627, 4652); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:03:49', '13:05:50', '13:12:31', 627, 4653); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:04:18', '13:04:23', '13:45:48', 627, 4654); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:04:47', '13:11:42', '13:51:06', 631, 4655); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:05:05', '13:05:13', '13:27:59', 612, 4656); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:06:14', '13:10:05', '14:11:04', 627, 4657); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:07:44', '13:07:46', '13:21:31', 612, 4658); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:08:06', '13:14:08', '13:50:09', 631, 4659); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:08:25', '13:13:49', '13:54:51', 612, 4660); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:09:34', '13:16:16', '13:41:16', 631, 4661); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:12:33', '13:23:53', '13:25:16', 612, 4662); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:13:10', '13:13:12', '13:55:01', 612, 4663); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:14:50', '13:21:32', '13:39:23', 612, 4664); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:14:56', '13:15:01', '13:22:19', 627, 4665); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:16:46', '13:17:17', '13:32:23', 631, 4666); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:18:38', '13:25:17', '13:29:32', 612, 4667); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:24:17', '13:32:48', '13:42:29', 631, 4668); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:25:00', '13:33:40', '14:25:09', 631, 4669); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:25:28', '13:29:33', '13:51:11', 612, 4670); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:27:52', '13:28:00', '13:35:20', 612, 4671); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:28:42', '13:28:44', '13:36:34', 627, 4672); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:29:38', '13:41:08', '13:57:23', 612, 4673); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:31:04', '13:31:11', '13:59:23', 627, 4674); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:31:05', '13:44:16', '13:49:00', 612, 4675); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:31:56', '13:32:24', '16:05:22', 631, 4676); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:35:14', '13:35:21', '13:41:08', 612, 4677); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:35:36', '13:49:00', '13:52:48', 612, 4678); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:35:43', '13:36:21', '13:39:40', 627, 4679); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:37:09', '13:37:15', '13:45:59', 627, 4680); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:37:34', '13:38:49', '13:47:43', 627, 4681); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:37:38', '13:37:54', '14:08:45', 631, 4682); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:37:55', '13:41:16', '13:43:14', 631, 4683); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:38:02', '13:44:43', '14:11:19', 612, 4684); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:39:17', '13:42:29', '13:59:11', 631, 4685); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:39:33', '13:43:14', '13:51:40', 631, 4686); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:39:58', '13:40:00', '13:51:50', 627, 4687); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:40:39', '13:47:43', '13:51:32', 627, 4688); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:40:53', '13:50:09', '14:02:29', 631, 4689); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:43:34', '13:45:59', '13:50:41', 627, 4690); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:45:39', '13:51:06', '14:11:56', 631, 4691); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:47:59', '13:51:40', '13:54:49', 631, 4692); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:48:15', '13:50:30', '14:20:28', 612, 4693); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:49:58', '13:51:12', '14:17:02', 612, 4694); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:50:09', '13:52:12', '14:02:25', 627, 4695); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:50:22', '13:54:49', '14:22:22', 631, 4696); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:50:23', '13:52:48', '14:34:43', 612, 4697); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:52:14', '13:54:51', '14:15:06', 612, 4698); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:52:36', '13:52:47', '14:08:15', 627, 4699); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:54:36', '13:54:41', '13:59:00', 627, 4700); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:54:53', '14:00:03', '15:48:46', 631, 4701); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:55:19', '13:59:12', '14:20:11', 631, 4702); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:57:16', '13:57:24', '14:12:32', 612, 4703); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '13:58:44', '14:02:30', '14:10:32', 631, 4704); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:01:05', '14:10:32', '14:46:27', 631, 4705); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:01:31', '14:02:27', '14:27:34', 627, 4706); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:02:04', '14:08:45', '15:16:04', 631, 4707); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:03:13', '14:17:08', '14:37:56', 627, 4708); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:05:41', '14:11:20', '14:15:25', 612, 4709); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:06:15', '14:11:57', '14:28:30', 631, 4710); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:06:43', '14:12:32', '14:33:38', 612, 4711); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:13:11', '14:22:23', '14:28:28', 631, 4712); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:13:54', '14:15:25', '14:49:03', 612, 4713); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:14:23', '14:14:26', '15:07:11', 627, 4714); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:14:29', '14:15:06', '14:37:41', 612, 4715); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:14:46', '14:17:02', '14:35:41', 612, 4716); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:15:23', '14:15:53', '14:38:35', 627, 4717); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:15:25', '14:25:09', '14:54:52', 631, 4718); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:16:55', '14:20:29', '14:38:54', 612, 4719); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:17:54', '14:33:38', '14:57:38', 612, 4720); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:18:51', '14:28:28', '14:43:14', 631, 4721); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:19:37', '14:20:12', '14:26:08', 631, 4722); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:20:24', '14:20:26', '14:24:09', 612, 4723); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:21:45', '14:34:43', '14:36:50', 612, 4724); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:22:14', '14:36:51', '14:41:37', 612, 4725); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:22:25', '14:24:01', '14:31:35', 627, 4726); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:22:37', '14:35:41', '14:41:55', 612, 4727); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:23:03', '14:27:34', '14:42:26', 627, 4728); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:23:31', '14:28:30', '14:47:14', 631, 4729); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:23:54', '14:37:41', '14:43:19', 612, 4730); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:25:22', '14:26:08', '15:05:22', 631, 4731); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:26:17', '14:38:54', '14:40:49', 612, 4732); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:26:39', '14:40:49', '15:10:11', 612, 4733); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:27:24', '14:29:15', '14:49:23', 627, 4734); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:29:18', '14:29:24', '14:35:03', 627, 4735); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:30:06', '14:31:35', '14:37:30', 627, 4736); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:30:17', '14:38:58', '14:43:39', 627, 4737); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:31:34', '14:35:03', '14:43:37', 627, 4738); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:32:51', '14:41:38', '14:45:24', 612, 4739); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:34:50', '14:35:10', '14:40:47', 627, 4740); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:35:57', '14:44:12', '14:49:34', 631, 4741); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:36:15', '14:36:25', '14:50:47', 612, 4742); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:37:35', '14:41:56', '14:45:26', 612, 4743); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:38:13', '14:43:39', '15:27:02', 627, 4744); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:38:28', '14:43:20', '15:18:24', 612, 4745); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:39:35', '14:46:27', '14:52:42', 631, 4746); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:40:10', '14:45:24', '15:01:00', 612, 4747); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:41:16', '14:45:26', '14:46:47', 612, 4748); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:42:05', '14:42:26', '14:43:39', 627, 4749); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:42:37', '14:47:14', '15:23:57', 631, 4750); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:43:47', '14:46:48', '14:54:21', 612, 4751); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:44:25', '14:49:03', '15:07:15', 612, 4752); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:44:51', '14:46:08', '15:08:57', 627, 4753); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:46:06', '14:49:35', '15:03:32', 631, 4754); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:47:08', '14:47:12', '14:50:58', 612, 4755); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:48:17', '14:50:47', '14:59:34', 612, 4756); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:50:20', '14:50:58', '14:52:39', 612, 4757); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:51:03', '14:52:42', '14:58:31', 631, 4758); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:51:50', '14:58:32', '15:13:45', 631, 4759); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:52:04', '14:52:14', '14:57:25', 627, 4760); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:52:07', '14:54:21', '15:13:41', 612, 4761); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:53:19', '14:54:52', '16:10:30', 631, 4762); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:56:12', '14:56:22', '15:14:36', 612, 4763); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:56:29', '14:56:33', '17:37:23', 631, 4764); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:57:13', '15:03:32', '15:05:27', 631, 4765); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:57:33', '14:57:39', '15:18:48', 612, 4766); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '14:59:47', '15:05:23', '15:09:47', 631, 4767); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:00:47', '15:01:01', '15:41:04', 612, 4768); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:02:04', '15:07:16', '17:48:10', 612, 4769); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:02:34', '15:05:27', '15:28:31', 631, 4770); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:02:47', '15:02:51', '15:20:13', 627, 4771); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:07:21', '15:13:45', '15:24:37', 631, 4772); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:07:50', '15:10:11', '15:33:24', 612, 4773); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:07:56', '15:08:57', '15:16:40', 627, 4774); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:08:08', '15:16:04', '15:33:21', 631, 4775); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:08:37', '15:09:36', '15:38:33', 627, 4776); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:08:47', '15:09:48', '15:16:48', 631, 4777); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:08:50', '15:27:02', '15:59:41', 627, 4778); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:09:50', '15:09:50', '15:45:08', 612, 4779); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:12:42', '15:16:35', '15:29:52', 627, 4780); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:13:03', '15:13:41', '15:27:38', 612, 4781); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:13:09', '15:16:49', '15:25:41', 631, 4782); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:17:16', '15:18:24', '15:33:56', 612, 4783); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:18:24', '15:18:49', '15:21:28', 612, 4784); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:18:50', '15:27:39', '15:35:12', 612, 4785); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:19:55', '15:20:01', '15:23:11', 627, 4786); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:20:46', '15:23:57', '16:04:06', 631, 4787); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:21:18', '15:21:28', '15:45:34', 612, 4788); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:21:25', '15:24:37', '15:36:04', 631, 4789); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:21:29', '15:21:38', '15:31:53', 627, 4790); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:21:55', '15:22:36', '15:38:24', 627, 4791); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:22:07', '15:23:12', '15:28:16', 627, 4792); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:22:28', '15:28:16', '15:38:09', 627, 4793); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:22:33', '15:25:41', '15:44:34', 631, 4794); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:22:45', '15:33:24', '17:48:15', 612, 4795); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:23:18', '15:26:18', '15:45:06', 627, 4796); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:24:16', '15:28:31', '15:38:02', 631, 4797); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:25:29', '15:31:53', '15:40:54', 627, 4798); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:27:27', '15:33:58', '15:55:24', 612, 4799); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:29:26', '15:38:10', '15:49:10', 627, 4800); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:30:41', '15:36:05', '15:42:43', 631, 4801); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:31:20', '15:35:13', '15:42:01', 612, 4802); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:33:21', '15:41:04', '16:06:53', 612, 4803); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:35:46', '15:42:03', '16:07:27', 612, 4804); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:37:24', '15:45:35', '17:48:11', 612, 4805); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:37:29', '15:38:03', '16:01:45', 631, 4806); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:40:18', '15:40:55', '15:53:35', 627, 4807); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:41:33', '15:49:11', '15:54:53', 627, 4808); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:42:34', '15:42:43', '15:56:09', 631, 4809); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:43:57', '15:44:34', '16:10:29', 631, 4810); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:44:23', '15:45:08', '16:03:26', 612, 4811); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:47:35', '15:56:10', '16:16:16', 631, 4812); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:47:53', '15:48:47', '16:14:41', 631, 4813); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:53:57', '15:55:24', '16:20:37', 612, 4814); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '15:56:01', '16:00:19', '16:10:41', 631, 4815); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '17:38:55', '17:38:58', '18:29:14', 631, 4816); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-27', '17:42:41', '17:42:44', '17:49:53', 631, 4817); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '09:02:30', '09:03:53', '09:28:20', 612, 4818); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '09:20:42', '09:24:38', '10:14:57', 612, 4819); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '09:26:22', '09:26:44', '10:30:06', 612, 4820); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '09:27:02', '09:28:21', '09:59:58', 612, 4821); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '09:27:46', '09:27:50', '09:49:18', 627, 4822); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '09:28:12', '09:28:23', '09:41:54', 612, 4823); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '09:32:50', '09:32:51', '10:26:37', 631, 4824); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '09:41:00', '09:42:57', '10:09:24', 612, 4825); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '09:44:26', '09:44:28', '10:07:49', 612, 4826); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '09:48:12', '09:48:20', '10:22:52', 627, 4827); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '09:50:52', '09:50:53', '10:24:20', 631, 4828); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '09:51:15', '09:52:00', '10:07:21', 631, 4829); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '09:59:48', '09:59:58', '10:13:03', 612, 4830); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:01:17', '10:01:19', '10:21:43', 627, 4831); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:02:35', '10:02:44', '10:29:58', 627, 4832); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:03:56', '10:04:04', '10:43:14', 631, 4833); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:05:50', '10:07:21', '10:24:54', 631, 4834); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:06:02', '10:06:37', '10:13:00', 627, 4835); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:06:31', '10:13:01', '10:32:11', 627, 4836); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:07:26', '10:07:35', '10:14:08', 612, 4837); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:09:18', '10:09:24', '10:15:07', 612, 4838); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:11:20', '10:12:58', '11:58:19', 612, 4839); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:12:02', '10:21:43', '10:33:46', 627, 4840); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:12:55', '10:13:03', '10:46:25', 612, 4841); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:13:57', '10:14:03', '10:50:05', 627, 4842); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:13:58', '10:14:57', '12:12:09', 612, 4843); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:14:31', '10:15:07', '12:12:10', 612, 4844); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:16:57', '10:17:01', '10:34:14', 612, 4845); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:20:08', '10:20:25', '10:30:14', 631, 4846); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:21:45', '10:24:21', '11:04:28', 631, 4847); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:24:02', '10:24:55', '11:56:06', 631, 4848); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:25:04', '10:25:28', '11:42:10', 612, 4849); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:25:20', '10:26:26', '10:40:06', 631, 4850); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:25:52', '10:26:37', '10:46:19', 631, 4851); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:29:56', '10:30:06', '11:29:19', 612, 4852); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:30:07', '10:30:15', '11:43:29', 631, 4853); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:34:08', '10:34:14', '10:38:31', 612, 4854); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:38:02', '10:38:07', '10:57:38', 627, 4855); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:39:15', '10:40:07', '10:54:14', 631, 4856); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:40:04', '10:43:15', '11:19:11', 631, 4857); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:40:55', '10:41:01', '11:14:09', 627, 4858); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:41:09', '10:46:19', '11:30:12', 631, 4859); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:41:39', '10:50:59', '10:58:10', 631, 4860); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:44:28', '10:44:55', '10:50:17', 627, 4861); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:46:13', '10:46:25', '10:59:44', 612, 4862); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:49:53', '10:51:51', '12:26:39', 631, 4863); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:50:25', '10:54:14', '11:04:31', 631, 4864); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:57:33', '10:58:10', '11:45:39', 631, 4865); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:58:09', '10:59:45', '11:41:27', 627, 4866); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:58:23', '10:58:27', '11:26:24', 627, 4867); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:59:36', '10:59:45', '11:14:57', 612, 4868); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '10:59:50', '10:59:58', '12:24:38', 631, 4869); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:04:05', '11:04:28', '11:15:29', 631, 4870); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:07:31', '11:07:33', '12:03:18', 631, 4871); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:08:29', '11:08:31', '11:20:45', 627, 4872); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:13:05', '11:14:03', '13:15:13', 627, 4873); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:14:40', '11:15:30', '11:30:43', 631, 4874); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:14:49', '11:14:57', '12:00:06', 612, 4875); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:18:13', '11:20:45', '11:27:55', 627, 4876); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:18:17', '11:19:11', '11:48:44', 631, 4877); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:23:44', '11:30:12', '11:40:10', 631, 4878); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:25:03', '11:30:43', '11:53:30', 631, 4879); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:25:39', '11:26:25', '11:31:38', 627, 4880); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:28:55', '11:29:19', '11:32:43', 612, 4881); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:32:12', '11:32:43', '11:55:25', 612, 4882); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:33:40', '11:41:27', '12:21:44', 627, 4883); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:36:11', '11:40:14', '13:53:23', 631, 4884); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:39:00', '11:40:11', '11:53:41', 631, 4885); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:40:15', '11:40:32', '11:47:23', 612, 4886); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:41:08', '11:56:06', '13:18:58', 631, 4887); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:42:03', '11:42:10', '12:05:25', 612, 4888); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:42:23', '11:42:24', '13:24:55', 627, 4889); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:42:42', '11:43:30', '13:17:43', 631, 4890); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:42:50', '11:42:57', '12:05:44', 627, 4891); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:43:33', '11:45:39', '12:32:05', 631, 4892); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:48:34', '11:48:45', '11:51:45', 631, 4893); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:49:51', '11:51:45', '12:48:29', 631, 4894); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:52:05', '11:52:14', '11:56:55', 612, 4895); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:52:24', '11:53:31', '12:12:12', 631, 4896); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:53:26', '11:53:42', '12:19:11', 631, 4897); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:55:17', '11:55:25', '12:38:44', 612, 4898); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:56:54', '12:00:06', '12:40:10', 612, 4899); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:57:08', '12:00:52', '12:17:03', 627, 4900); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:57:14', '12:03:18', '12:08:28', 631, 4901); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:57:15', '12:05:25', '12:21:24', 612, 4902); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:57:41', '12:05:10', '12:26:07', 627, 4903); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '11:58:12', '11:58:19', '12:00:37', 612, 4904); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:00:33', '12:00:39', '12:12:09', 612, 4905); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:03:27', '12:05:46', '12:53:15', 627, 4906); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:04:09', '12:08:17', '12:23:02', 627, 4907); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:04:55', '12:14:31', '12:18:43', 627, 4908); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:05:08', '12:12:09', '13:29:28', 612, 4909); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:06:45', '12:08:28', '12:18:06', 631, 4910); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:09:29', '12:12:10', '12:57:59', 612, 4911); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:10:58', '12:17:03', '12:38:13', 627, 4912); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:11:30', '12:12:13', '12:20:22', 631, 4913); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:12:01', '12:12:09', '12:28:47', 612, 4914); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:12:34', '12:18:07', '12:37:31', 631, 4915); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:12:37', '12:12:39', '12:19:15', 612, 4916); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:12:56', '12:19:11', '12:59:32', 631, 4917); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:14:22', '12:21:44', '12:35:49', 627, 4918); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:15:04', '12:21:24', '12:35:10', 612, 4919); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:19:06', '12:20:22', '12:29:33', 631, 4920); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:20:43', '12:28:47', '13:15:55', 612, 4921); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:21:06', '12:26:39', '13:45:58', 631, 4922); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:23:11', '12:35:10', '14:37:36', 612, 4923); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:28:17', '12:29:33', '12:48:56', 631, 4924); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:31:19', '12:32:05', '13:15:12', 631, 4925); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:34:29', '12:35:49', '13:02:27', 627, 4926); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:36:34', '12:37:31', '12:41:19', 631, 4927); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:38:37', '12:38:44', '12:55:20', 612, 4928); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:39:11', '12:40:10', '12:56:09', 612, 4929); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:40:21', '12:41:19', '13:20:06', 631, 4930); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:41:42', '12:41:49', '12:52:11', 612, 4931); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:47:04', '12:48:30', '13:18:32', 631, 4932); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:48:18', '12:48:56', '13:19:26', 631, 4933); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:49:18', '12:49:36', '13:03:46', 612, 4934); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:51:10', '12:55:21', '13:10:19', 612, 4935); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:52:16', '12:56:09', '13:18:09', 612, 4936); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:52:59', '12:53:09', '12:57:36', 627, 4937); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:53:36', '12:57:36', '13:05:05', 627, 4938); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:55:06', '12:55:12', '13:07:47', 612, 4939); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '12:58:30', '13:10:19', '13:30:21', 612, 4940); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:01:43', '13:02:27', '14:21:20', 627, 4941); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:03:07', '13:03:47', '13:09:32', 612, 4942); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:06:04', '13:10:15', '13:19:28', 627, 4943); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:09:59', '13:15:56', '14:30:54', 612, 4944); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:10:08', '13:10:15', '14:47:40', 631, 4945); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:10:20', '13:18:10', '13:47:40', 612, 4946); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:11:15', '13:15:13', '13:29:16', 627, 4947); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:12:55', '13:15:12', '13:33:27', 631, 4948); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:15:38', '13:23:10', '13:29:37', 612, 4949); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:16:04', '13:28:29', '13:37:43', 612, 4950); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:16:41', '13:17:44', '13:40:57', 631, 4951); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:17:04', '13:18:58', '13:30:31', 631, 4952); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:17:29', '13:18:32', '14:07:34', 631, 4953); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:19:57', '13:20:06', '13:30:03', 631, 4954); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:21:27', '13:30:03', '14:28:24', 631, 4955); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:22:39', '13:29:16', '13:48:12', 627, 4956); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:24:34', '13:29:28', '13:42:38', 612, 4957); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:26:52', '13:33:28', '13:37:59', 631, 4958); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:27:29', '13:30:21', '13:55:56', 612, 4959); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:29:40', '13:30:23', '13:47:00', 627, 4960); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:30:00', '13:37:44', '13:39:47', 612, 4961); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:30:01', '13:30:31', '15:00:09', 631, 4962); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:33:08', '13:33:13', '13:41:02', 627, 4963); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:34:38', '13:39:48', '14:50:02', 612, 4964); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:39:21', '13:40:58', '14:35:35', 631, 4965); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:40:28', '13:42:38', '14:02:10', 612, 4966); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:40:43', '13:40:47', '13:55:44', 627, 4967); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:41:04', '13:47:41', '13:51:32', 612, 4968); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:41:16', '13:41:31', '13:48:23', 612, 4969); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:41:35', '13:41:42', '13:46:30', 631, 4970); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:45:00', '13:48:24', '14:01:27', 612, 4971); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:45:27', '13:46:02', '14:12:28', 631, 4972); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:45:48', '14:21:21', '14:36:55', 627, 4973); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:46:52', '13:51:32', '13:54:25', 612, 4974); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:46:58', '13:47:01', '14:06:39', 627, 4975); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:47:59', '13:48:12', '14:31:09', 627, 4976); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:51:22', '13:51:38', '14:42:04', 627, 4977); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:52:40', '13:53:23', '15:04:56', 631, 4978); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:53:40', '13:55:56', '14:30:54', 612, 4979); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:54:17', '13:54:32', '14:02:14', 612, 4980); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:57:05', '13:57:07', '14:09:09', 627, 4981); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:58:04', '14:00:11', '14:27:43', 627, 4982); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:58:25', '13:58:35', '14:03:43', 627, 4983); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '13:59:37', '13:59:37', '14:00:43', 612, 4984); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:00:15', '14:03:43', '14:05:10', 627, 4985); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:00:25', '14:36:55', '14:49:26', 627, 4986); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:00:42', '14:05:10', '14:07:18', 627, 4987); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:01:24', '14:02:10', '14:29:32', 612, 4988); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:01:47', '14:02:15', '14:15:43', 612, 4989); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:07:00', '14:07:21', '14:16:45', 627, 4990); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:07:25', '14:07:34', '14:28:08', 631, 4991); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:07:58', '14:08:06', '14:39:32', 627, 4992); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:09:15', '14:09:24', '14:13:09', 612, 4993); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:10:30', '14:14:36', '14:21:30', 627, 4994); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:11:46', '14:14:59', '14:27:11', 627, 4995); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:12:32', '14:12:40', '14:17:44', 631, 4996); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:14:44', '14:31:50', '15:21:08', 627, 4997); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:15:01', '14:16:45', '14:29:25', 627, 4998); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:15:12', '14:15:43', '14:44:59', 612, 4999); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:15:17', '14:17:45', '14:35:34', 631, 5000); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:15:35', '14:21:30', '14:30:34', 627, 5001); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:15:59', '14:23:12', '14:36:29', 627, 5002); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:17:30', '14:28:24', '14:59:50', 631, 5003); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:18:42', '14:28:29', '14:40:36', 631, 5004); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:21:44', '14:27:11', '15:10:12', 627, 5005); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:22:11', '14:29:26', '14:35:06', 627, 5006); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:25:55', '14:28:30', '14:41:59', 631, 5007); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:26:55', '14:30:21', '15:17:45', 631, 5008); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:27:06', '14:27:44', '15:05:30', 627, 5009); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:28:01', '14:35:35', '15:48:41', 631, 5010); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:28:04', '14:30:34', '14:55:12', 627, 5011); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:28:34', '14:29:32', '15:13:48', 612, 5012); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:29:01', '14:30:54', '15:25:21', 612, 5013); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:29:16', '14:35:35', '15:21:59', 631, 5014); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:31:39', '14:31:44', '14:59:51', 627, 5015); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:34:25', '14:40:36', '15:28:06', 631, 5016); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:35:27', '14:35:29', '14:48:19', 612, 5017); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:36:11', '14:37:36', '15:20:07', 612, 5018); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:36:44', '14:49:26', '15:03:47', 627, 5019); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:37:27', '14:41:59', '14:47:28', 631, 5020); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:42:04', '14:47:31', '15:48:41', 631, 5021); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:44:44', '14:44:59', '15:16:50', 612, 5022); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:48:26', '14:49:24', '15:04:50', 627, 5023); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:48:31', '14:50:02', '15:05:32', 612, 5024); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:49:04', '14:55:12', '16:00:44', 627, 5025); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:49:08', '14:49:11', '15:33:11', 631, 5026); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:49:42', '15:02:05', '15:07:36', 627, 5027); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:55:08', '14:55:10', '15:02:30', 612, 5028); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:55:42', '15:04:02', '15:38:08', 627, 5029); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:59:09', '15:00:48', '15:02:42', 612, 5030); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:59:21', '14:59:50', '15:05:06', 631, 5031); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '14:59:38', '15:00:10', '15:23:16', 631, 5032); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:00:36', '15:03:47', '16:03:23', 627, 5033); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:00:57', '15:05:07', '15:12:22', 631, 5034); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:01:51', '15:02:30', '15:08:42', 612, 5035); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:02:16', '15:02:42', '15:15:05', 612, 5036); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:02:51', '15:13:49', '15:33:28', 612, 5037); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:03:58', '15:12:23', '15:16:06', 631, 5038); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:04:16', '15:04:56', '15:22:40', 631, 5039); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:04:17', '15:04:23', '15:46:58', 627, 5040); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:05:28', '15:05:33', '15:19:04', 612, 5041); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:05:29', '15:06:38', '15:18:10', 627, 5042); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:09:49', '15:09:59', '15:25:15', 612, 5043); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:10:56', '15:16:51', '15:47:10', 612, 5044); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:10:57', '15:11:04', '15:19:57', 627, 5045); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:11:18', '15:11:19', '15:15:25', 612, 5046); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:11:32', '15:11:33', '15:17:54', 612, 5047); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:12:29', '15:16:06', '15:48:41', 631, 5048); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:13:56', '15:17:45', '15:48:41', 631, 5049); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:13:58', '15:14:07', '15:50:39', 627, 5050); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:14:58', '15:15:06', '15:24:11', 612, 5051); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:15:05', '15:21:08', '16:03:18', 627, 5052); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:16:56', '15:22:00', '15:25:39', 631, 5053); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:16:57', '15:18:10', '15:35:39', 627, 5054); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:17:01', '15:17:55', '15:23:40', 612, 5055); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:17:41', '15:19:04', '15:55:01', 612, 5056); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:19:25', '15:20:07', '15:44:07', 612, 5057); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:20:28', '15:20:29', '15:30:31', 627, 5058); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:20:56', '15:25:39', '15:48:41', 631, 5059); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:21:34', '15:28:55', '15:33:43', 627, 5060); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:22:01', '15:22:40', '15:48:41', 631, 5061); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:22:26', '15:28:06', '15:40:24', 631, 5062); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:22:32', '15:24:12', '15:51:03', 612, 5063); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:23:04', '15:23:17', '15:48:41', 631, 5064); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:23:12', '15:29:50', '15:51:58', 627, 5065); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:23:58', '15:34:38', '18:44:34', 612, 5066); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:24:24', '15:30:31', '15:48:58', 627, 5067); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:25:09', '15:25:21', '15:34:38', 612, 5068); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:32:55', '15:44:08', '18:44:34', 612, 5069); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:33:10', '15:35:40', '15:46:32', 627, 5070); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:33:33', '15:33:43', '15:57:32', 627, 5071); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:33:35', '15:33:49', '16:37:32', 612, 5072); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:33:50', '15:41:55', '15:55:16', 627, 5073); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:34:43', '15:46:32', '15:55:06', 627, 5074); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:35:14', '15:48:58', '15:58:02', 627, 5075); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:37:51', '15:38:08', '15:58:05', 627, 5076); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:39:49', '15:55:06', '16:00:47', 627, 5077); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:43:27', '15:47:10', '16:04:00', 612, 5078); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:45:16', '15:50:39', '16:00:42', 627, 5079); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:48:28', '15:51:58', '16:00:50', 627, 5080); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:50:54', '15:51:04', '16:20:44', 612, 5081); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:54:38', '16:00:22', '16:13:15', 631, 5082); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:58:54', '16:00:27', '16:30:02', 631, 5083); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-28', '15:59:46', '16:01:19', '16:15:07', 631, 5084); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '08:58:27', '09:01:30', '09:49:17', 612, 5085); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '09:13:06', '09:13:54', '09:49:18', 612, 5086); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '09:15:35', '09:15:45', '09:35:23', 627, 5087); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '09:23:00', '09:23:27', '09:30:58', 627, 5088); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '09:23:30', '09:26:28', '09:41:38', 631, 5089); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '09:25:40', '09:29:24', '09:36:47', 612, 5090); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '09:35:30', '09:36:47', '10:19:21', 612, 5091); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '09:37:56', '09:38:03', '10:16:13', 612, 5092); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '09:40:47', '09:41:38', '10:03:34', 631, 5093); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '09:48:47', '09:48:50', '11:33:23', 631, 5094); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '09:49:10', '09:49:18', '10:23:39', 612, 5095); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '09:49:14', '09:49:19', '10:14:00', 631, 5096); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '09:51:22', '09:51:25', '10:32:31', 627, 5097); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '09:55:12', '09:55:12', '16:11:45', 627, 5098); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:02:30', '10:06:53', '12:00:32', 627, 5099); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:02:40', '10:03:35', '11:39:45', 631, 5100); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:03:14', '10:03:44', '10:33:39', 631, 5101); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:05:56', '10:05:59', '10:35:00', 627, 5102); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:14:05', '10:14:07', '12:00:03', 631, 5103); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:16:00', '10:16:14', '10:54:16', 612, 5104); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:17:35', '10:17:45', '10:23:39', 612, 5105); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:19:14', '10:19:32', '10:35:06', 612, 5106); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:22:32', '10:23:39', '10:45:44', 612, 5107); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:23:32', '10:23:39', '11:32:31', 612, 5108); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:25:20', '10:39:48', '10:50:14', 627, 5109); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:33:22', '10:33:39', '11:47:55', 631, 5110); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:33:49', '10:50:14', '11:07:49', 627, 5111); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:34:26', '10:35:50', '10:44:08', 631, 5112); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:34:39', '10:35:02', '11:13:52', 627, 5113); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:34:58', '10:35:06', '11:32:32', 612, 5114); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:36:19', '10:36:47', '10:39:38', 627, 5115); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:41:00', '10:41:03', '10:59:18', 627, 5116); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:42:03', '10:44:08', '10:45:46', 631, 5117); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:44:10', '10:45:45', '11:35:44', 612, 5118); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:44:58', '10:45:46', '11:07:08', 631, 5119); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:53:42', '10:54:16', '11:51:25', 612, 5120); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '10:53:54', '10:53:59', '11:04:47', 612, 5121); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:00:21', '11:00:32', '11:24:52', 627, 5122); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:05:28', '11:07:49', '11:50:19', 627, 5123); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:06:50', '11:07:09', '11:55:50', 631, 5124); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:08:28', '11:09:29', '11:38:35', 627, 5125); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:09:24', '11:10:35', '11:49:48', 627, 5126); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:10:21', '11:11:22', '11:33:23', 627, 5127); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:19:27', '11:19:45', '12:50:35', 627, 5128); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:27:02', '11:30:07', '12:15:39', 631, 5129); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:29:43', '11:33:23', '11:46:07', 631, 5130); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:31:06', '11:39:46', '12:13:18', 631, 5131); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:32:25', '11:32:32', '12:30:04', 612, 5132); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:35:59', '11:36:00', '12:30:05', 612, 5133); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:36:14', '11:36:46', '11:44:47', 627, 5134); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:36:19', '11:36:29', '11:51:12', 612, 5135); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:36:34', '11:37:11', '11:44:02', 627, 5136); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:39:07', '11:46:07', '12:17:20', 631, 5137); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:39:51', '11:47:55', '11:53:56', 631, 5138); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:40:50', '11:43:20', '11:59:59', 627, 5139); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:41:20', '11:41:35', '12:01:41', 631, 5140); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:44:36', '11:53:56', '12:14:09', 631, 5141); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:47:58', '11:55:50', '12:25:46', 631, 5142); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:49:25', '11:50:19', '13:30:43', 627, 5143); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:51:20', '11:51:25', '12:07:36', 612, 5144); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:52:52', '11:53:05', '12:09:12', 612, 5145); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:54:39', '12:00:03', '12:21:17', 631, 5146); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '11:57:14', '12:00:32', '13:27:00', 627, 5147); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:00:50', '12:01:41', '14:30:37', 631, 5148); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:01:03', '12:01:04', '13:30:22', 627, 5149); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:07:45', '12:07:48', '12:31:35', 612, 5150); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:08:37', '12:09:12', '12:33:11', 612, 5151); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:08:46', '12:13:18', '12:24:19', 631, 5152); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:11:45', '12:14:09', '12:51:26', 631, 5153); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:13:31', '12:15:39', '13:09:48', 631, 5154); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:14:59', '12:17:21', '13:04:41', 631, 5155); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:15:52', '12:21:18', '12:58:54', 631, 5156); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:16:11', '12:24:20', '12:37:43', 631, 5157); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:22:29', '12:24:59', '13:01:51', 627, 5158); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:23:44', '12:37:43', '13:27:28', 631, 5159); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:24:53', '12:27:28', '12:33:17', 612, 5160); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:25:03', '12:25:46', '13:25:00', 631, 5161); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:29:57', '12:30:04', '13:04:03', 612, 5162); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:30:26', '12:31:12', '12:37:46', 627, 5163); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:31:20', '12:31:35', '12:48:14', 612, 5164); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:31:45', '12:31:47', '12:42:41', 612, 5165); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:32:23', '12:33:11', '13:11:28', 612, 5166); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:36:41', '12:37:46', '13:18:58', 627, 5167); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:37:44', '12:38:23', '13:48:11', 627, 5168); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:38:33', '12:44:02', '13:16:56', 627, 5169); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:38:39', '12:38:44', '13:58:02', 612, 5170); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:41:27', '12:41:33', '12:44:37', 612, 5171); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:42:00', '12:42:41', '12:57:09', 612, 5172); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:42:26', '12:47:30', '12:56:25', 627, 5173); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:44:43', '12:50:35', '12:57:53', 627, 5174); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:47:08', '12:56:26', '13:06:37', 627, 5175); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:47:52', '12:48:15', '13:31:03', 612, 5176); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:50:57', '12:57:53', '13:05:01', 627, 5177); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:51:02', '12:51:32', '13:09:17', 631, 5178); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:54:35', '12:54:39', '13:05:53', 612, 5179); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:56:04', '12:57:10', '13:47:55', 612, 5180); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:58:20', '12:58:54', '13:16:19', 631, 5181); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:58:36', '13:05:01', '13:11:46', 627, 5182); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '12:59:39', '13:04:42', '13:54:02', 631, 5183); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:01:36', '13:01:51', '13:47:22', 627, 5184); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:03:47', '13:04:04', '13:05:15', 612, 5185); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:04:52', '13:09:17', '13:34:41', 631, 5186); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:05:04', '13:05:15', '14:21:47', 612, 5187); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:05:31', '13:09:49', '14:13:29', 631, 5188); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:06:27', '13:06:38', '13:43:34', 627, 5189); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:10:19', '13:11:28', '13:47:54', 612, 5190); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:11:46', '13:11:54', '13:21:12', 612, 5191); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:15:01', '13:16:19', '13:30:12', 631, 5192); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:18:45', '13:18:53', '13:47:13', 627, 5193); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:19:52', '13:27:28', '14:09:35', 631, 5194); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:24:17', '13:25:01', '14:44:53', 631, 5195); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:25:10', '13:27:00', '16:10:15', 627, 5196); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:26:36', '13:30:12', '13:36:04', 631, 5197); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:28:20', '13:28:28', '14:01:48', 627, 5198); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:30:07', '13:30:43', '13:49:13', 627, 5199); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:30:56', '13:31:04', '13:45:46', 612, 5200); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:34:27', '13:34:41', '13:49:21', 631, 5201); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:35:22', '13:35:23', '13:42:50', 612, 5202); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:35:25', '13:36:05', '14:01:52', 631, 5203); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:40:13', '13:45:47', '13:53:17', 612, 5204); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:42:32', '13:43:34', '13:52:02', 627, 5205); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:43:18', '13:47:13', '14:00:30', 627, 5206); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:44:15', '13:49:22', '13:56:09', 631, 5207); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:44:46', '13:49:14', '14:13:15', 627, 5208); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:45:45', '13:54:03', '14:01:03', 631, 5209); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:47:52', '13:47:54', '14:33:59', 612, 5210); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:48:12', '13:48:15', '14:16:05', 612, 5211); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:51:04', '13:51:11', '14:05:33', 612, 5212); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:53:06', '13:53:19', '14:00:59', 612, 5213); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:54:30', '13:56:09', '14:36:35', 631, 5214); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:54:39', '14:00:59', '14:23:42', 612, 5215); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:56:40', '13:58:14', '14:15:04', 627, 5216); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:57:54', '13:58:03', '14:06:40', 612, 5217); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:58:24', '14:01:03', '14:36:26', 631, 5218); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '13:58:43', '13:59:55', '15:03:45', 627, 5219); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:00:31', '14:01:52', '14:37:49', 631, 5220); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:01:39', '14:01:49', '14:19:19', 627, 5221); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:02:07', '14:06:41', '14:09:04', 612, 5222); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:03:44', '14:13:29', '14:25:50', 631, 5223); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:03:46', '14:09:04', '15:15:55', 612, 5224); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:05:07', '14:08:58', '14:33:46', 627, 5225); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:09:25', '14:13:15', '14:44:40', 627, 5226); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:10:54', '14:15:05', '14:22:48', 627, 5227); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:11:06', '14:12:09', '14:27:24', 627, 5228); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:12:47', '14:18:54', '14:46:07', 627, 5229); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:15:45', '14:19:19', '14:44:31', 627, 5230); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:15:51', '14:21:48', '14:35:40', 612, 5231); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:16:34', '14:21:03', '14:30:12', 627, 5232); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:17:48', '14:17:54', '14:22:30', 612, 5233); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:18:56', '14:21:39', '14:49:52', 627, 5234); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:19:04', '14:19:07', '14:20:25', 631, 5235); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:20:03', '14:23:43', '14:32:30', 612, 5236); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:20:06', '14:22:49', '14:25:45', 627, 5237); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:20:22', '14:25:51', '15:12:09', 631, 5238); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:20:59', '14:25:46', '15:10:57', 627, 5239); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:22:34', '14:27:24', '14:55:28', 627, 5240); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:25:55', '14:29:33', '14:56:22', 627, 5241); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:26:08', '14:32:40', '14:44:52', 627, 5242); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:27:08', '14:33:47', '14:46:45', 627, 5243); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:27:30', '14:27:44', '14:59:48', 612, 5244); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:27:59', '14:44:31', '14:53:00', 627, 5245); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:29:15', '14:38:15', '14:41:16', 612, 5246); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:30:22', '14:30:37', '14:51:23', 631, 5247); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:31:12', '14:41:16', '14:50:45', 612, 5248); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:31:24', '14:36:26', '14:43:53', 631, 5249); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:32:11', '14:36:36', '15:12:20', 631, 5250); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:32:22', '14:32:30', '15:00:30', 612, 5251); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:33:01', '14:37:50', '14:45:46', 631, 5252); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:33:31', '14:43:54', '15:29:05', 631, 5253); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:33:48', '14:34:00', '14:56:18', 612, 5254); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:34:20', '14:45:47', '15:15:56', 631, 5255); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:35:23', '14:35:41', '14:40:30', 612, 5256); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:36:20', '14:44:52', '15:19:10', 627, 5257); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:37:09', '14:44:54', '16:56:29', 631, 5258); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:37:30', '14:40:31', '14:58:15', 612, 5259); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:38:16', '14:56:18', '15:15:11', 612, 5260); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:40:34', '14:46:45', '15:16:54', 627, 5261); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:42:44', '14:49:53', '15:02:00', 627, 5262); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:43:30', '14:50:20', '14:58:19', 627, 5263); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:43:43', '14:51:23', '15:53:45', 631, 5264); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:43:51', '14:53:01', '14:57:14', 627, 5265); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:44:00', '14:44:40', '15:02:45', 627, 5266); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:46:28', '15:02:45', '15:21:41', 627, 5267); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:48:33', '14:48:36', '14:57:25', 631, 5268); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:50:05', '14:59:16', '15:24:29', 612, 5269); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:51:04', '14:59:49', '15:13:55', 612, 5270); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:54:16', '14:55:29', '15:28:31', 627, 5271); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:57:13', '14:57:25', '15:12:12', 631, 5272); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:58:32', '15:02:01', '16:10:27', 627, 5273); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:58:53', '15:00:30', '15:22:27', 612, 5274); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '14:59:05', '15:03:26', '15:18:19', 612, 5275); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:01:05', '15:18:20', '15:28:34', 612, 5276); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:01:16', '15:03:01', '15:23:12', 627, 5277); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:01:38', '15:03:45', '15:25:32', 627, 5278); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:03:33', '15:04:56', '15:29:10', 627, 5279); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:06:14', '15:12:09', '15:36:22', 631, 5280); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:06:29', '15:15:12', '15:17:37', 612, 5281); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:07:55', '15:10:58', '15:12:22', 627, 5282); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:08:27', '15:12:12', '15:21:42', 631, 5283); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:09:11', '15:12:20', '15:23:00', 631, 5284); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:13:01', '15:15:56', '15:26:36', 631, 5285); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:13:06', '15:16:38', '15:30:16', 612, 5286); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:14:05', '15:19:18', '15:45:50', 627, 5287); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:14:41', '15:19:10', '15:28:47', 627, 5288); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:14:55', '15:17:37', '15:26:14', 612, 5289); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:15:08', '15:21:42', '15:23:09', 631, 5290); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:16:33', '15:22:28', '15:32:47', 612, 5291); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:17:21', '15:28:54', '15:32:59', 612, 5292); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:18:39', '15:24:29', '15:59:23', 612, 5293); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:19:56', '15:21:42', '15:49:12', 627, 5294); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:20:58', '15:23:00', '15:41:07', 631, 5295); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:21:01', '15:26:15', '15:28:54', 612, 5296); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:21:20', '15:23:10', '16:22:56', 631, 5297); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:22:04', '15:26:37', '15:48:43', 631, 5298); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:23:23', '15:32:47', '16:21:41', 612, 5299); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:23:39', '15:32:59', '15:55:58', 612, 5300); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:27:07', '15:29:05', '15:54:10', 631, 5301); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:28:50', '15:49:12', '16:10:19', 627, 5302); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:29:00', '15:36:22', '15:40:06', 631, 5303); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:30:09', '15:30:12', '15:36:59', 627, 5304); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:30:10', '15:30:16', '15:42:18', 612, 5305); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:30:34', '15:30:38', '16:20:53', 631, 5306); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:31:06', '15:38:04', '16:00:22', 631, 5307); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:31:28', '15:39:56', '16:19:53', 631, 5308); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:32:36', '15:33:22', '15:54:27', 627, 5309); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:33:27', '15:36:59', '15:46:45', 627, 5310); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:34:31', '15:35:57', '15:45:26', 627, 5311); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:34:35', '15:40:07', '16:22:43', 631, 5312); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:36:07', '15:41:08', '16:17:55', 631, 5313); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:39:15', '15:45:57', '16:06:23', 631, 5314); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:42:23', '15:42:25', '16:02:28', 612, 5315); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:45:15', '15:45:27', '16:08:48', 627, 5316); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:47:57', '15:48:43', '15:51:46', 631, 5317); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:50:08', '15:51:47', '16:13:55', 631, 5318); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:51:25', '15:54:11', '16:25:42', 631, 5319); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:52:52', '15:53:45', '16:01:14', 631, 5320); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:53:07', '15:55:58', '15:59:24', 612, 5321); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-29', '15:54:13', '15:54:28', '15:59:39', 627, 5322); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:07:16', '09:07:19', '09:16:21', 612, 5323); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:16:16', '09:16:22', '09:45:26', 612, 5324); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:17:01', '09:18:48', '09:36:50', 627, 5325); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:17:37', '09:18:55', '09:33:51', 627, 5326); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:19:43', '09:19:55', '10:00:59', 612, 5327); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:32:28', '09:33:30', '11:38:16', 631, 5328); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:35:01', '09:35:03', '09:47:00', 627, 5329); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:35:20', '09:35:26', '10:09:07', 627, 5330); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:36:01', '09:36:02', '09:50:29', 612, 5331); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:39:36', '09:39:40', '09:41:23', 612, 5332); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:41:42', '09:45:27', '10:20:52', 612, 5333); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:48:03', '09:48:18', '11:09:03', 631, 5334); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:48:12', '09:48:19', '09:49:21', 627, 5335); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:50:12', '09:50:30', '10:09:47', 612, 5336); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:52:13', '09:52:19', '10:41:21', 627, 5337); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:53:02', '09:54:50', '10:19:54', 612, 5338); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:54:50', '09:54:51', '10:11:35', 627, 5339); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:56:26', '10:00:59', '10:04:36', 612, 5340); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:57:29', '10:04:04', '10:22:35', 627, 5341); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '09:59:56', '09:59:56', '10:11:09', 631, 5342); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:03:26', '10:11:10', '11:19:39', 631, 5343); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:04:28', '10:04:36', '12:33:26', 612, 5344); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:05:48', '10:05:55', '10:40:40', 627, 5345); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:05:57', '10:13:14', '10:38:34', 631, 5346); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:06:12', '10:08:32', '10:14:19', 627, 5347); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:09:02', '10:09:47', '10:17:35', 612, 5348); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:13:01', '10:13:07', '10:26:12', 627, 5349); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:15:12', '10:19:55', '11:02:29', 612, 5350); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:15:26', '10:15:34', '10:18:50', 627, 5351); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:17:23', '10:17:35', '10:31:42', 612, 5352); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:20:43', '10:20:52', '10:48:12', 612, 5353); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:23:58', '10:24:01', '10:39:36', 627, 5354); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:27:03', '10:38:32', '11:36:52', 612, 5355); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:29:13', '10:31:42', '10:38:32', 612, 5356); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:33:00', '10:37:56', '10:56:24', 627, 5357); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:35:22', '10:35:24', '11:13:37', 631, 5358); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:36:22', '10:36:24', '10:45:07', 612, 5359); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:37:31', '10:38:34', '12:10:02', 631, 5360); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:46:48', '10:46:55', '10:52:25', 627, 5361); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:48:03', '10:48:13', '11:21:48', 612, 5362); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:52:19', '10:52:25', '11:07:57', 627, 5363); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:53:59', '10:56:24', '11:16:40', 627, 5364); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:55:31', '11:02:29', '11:53:46', 612, 5365); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:56:09', '10:56:09', '11:11:33', 627, 5366); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:56:57', '11:02:49', '11:12:05', 631, 5367); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '10:58:28', '10:58:28', '11:09:52', 612, 5368); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:01:23', '11:01:30', '11:47:04', 627, 5369); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:03:50', '11:03:59', '11:14:40', 627, 5370); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:04:42', '11:09:52', '11:18:14', 612, 5371); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:08:04', '11:08:08', '11:39:03', 627, 5372); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:08:23', '11:11:33', '11:17:11', 627, 5373); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:08:52', '11:09:03', '11:11:06', 631, 5374); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:10:57', '11:11:06', '11:22:37', 631, 5375); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:11:13', '11:12:05', '11:23:58', 631, 5376); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:12:00', '11:14:07', '11:29:25', 631, 5377); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:12:32', '11:13:38', '12:09:08', 631, 5378); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:14:54', '11:19:39', '11:24:25', 631, 5379); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:15:39', '11:16:41', '11:33:54', 627, 5380); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:15:58', '11:22:37', '11:31:23', 631, 5381); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:16:42', '11:16:50', '11:27:01', 627, 5382); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:19:22', '11:19:25', '11:23:11', 612, 5383); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:21:35', '11:21:48', '11:22:55', 612, 5384); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:22:01', '11:22:02', '11:27:51', 627, 5385); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:22:33', '11:22:55', '12:46:37', 612, 5386); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:23:12', '11:23:59', '11:33:48', 631, 5387); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:23:51', '11:24:25', '11:54:55', 631, 5388); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:26:31', '11:27:01', '11:48:08', 627, 5389); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:28:45', '11:33:55', '11:35:00', 627, 5390); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:29:14', '11:29:23', '11:47:12', 627, 5391); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:30:00', '11:31:16', '11:38:50', 627, 5392); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:30:49', '11:38:08', '11:49:26', 627, 5393); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:31:01', '11:31:24', '11:40:12', 631, 5394); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:32:10', '11:36:28', '11:45:21', 612, 5395); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:32:43', '11:35:01', '12:04:19', 627, 5396); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:32:53', '11:33:38', '12:16:15', 631, 5397); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:33:01', '11:38:16', '11:51:40', 631, 5398); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:33:18', '11:33:49', '11:45:41', 631, 5399); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:33:31', '11:38:14', '11:57:49', 627, 5400); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:35:18', '11:36:52', '12:15:19', 612, 5401); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:35:32', '11:37:15', '13:20:57', 627, 5402); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:38:59', '11:40:13', '11:47:52', 631, 5403); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:39:35', '11:41:10', '11:48:29', 627, 5404); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:43:49', '11:47:04', '12:03:06', 627, 5405); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:45:03', '11:45:41', '12:11:33', 631, 5406); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:45:29', '11:46:10', '13:28:33', 631, 5407); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:47:15', '11:53:46', '12:26:40', 612, 5408); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:47:40', '11:47:52', '11:56:42', 631, 5409); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:49:27', '11:51:40', '12:12:33', 631, 5410); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:52:57', '11:54:55', '12:46:00', 631, 5411); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:57:06', '11:57:14', '13:56:49', 631, 5412); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:57:51', '11:57:55', '12:31:15', 627, 5413); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '11:59:24', '11:59:26', '12:18:05', 627, 5414); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:00:00', '12:09:08', '12:17:18', 631, 5415); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:03:02', '12:03:09', '12:08:26', 612, 5416); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:03:02', '12:10:02', '12:26:18', 631, 5417); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:03:36', '12:04:19', '12:23:52', 627, 5418); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:04:05', '12:11:33', '12:15:48', 631, 5419); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:06:52', '12:08:26', '12:21:52', 612, 5420); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:07:43', '12:13:34', '13:51:27', 631, 5421); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:09:42', '12:12:33', '12:33:54', 631, 5422); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:10:04', '12:33:54', '12:43:51', 631, 5423); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:11:14', '12:15:48', '12:57:21', 631, 5424); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:13:40', '12:16:16', '12:43:48', 631, 5425); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:14:23', '12:17:18', '12:33:28', 631, 5426); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:15:10', '12:15:19', '12:27:20', 612, 5427); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:18:21', '12:23:53', '13:28:25', 627, 5428); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:24:15', '12:26:18', '13:02:29', 631, 5429); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:26:19', '12:26:40', '12:35:23', 612, 5430); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:27:09', '12:27:20', '12:32:29', 612, 5431); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:32:18', '12:32:30', '12:52:48', 612, 5432); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:32:30', '12:33:29', '12:50:43', 631, 5433); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:32:53', '12:33:26', '13:06:33', 612, 5434); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:34:44', '12:43:54', '13:13:52', 631, 5435); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:35:14', '12:35:34', '12:47:06', 612, 5436); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:39:16', '12:39:21', '13:22:16', 627, 5437); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:39:18', '12:43:49', '14:24:41', 631, 5438); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:40:11', '12:40:13', '13:09:19', 627, 5439); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:42:45', '12:46:01', '13:28:26', 631, 5440); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:44:36', '12:50:43', '13:42:58', 631, 5441); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:46:29', '12:46:38', '13:17:58', 612, 5442); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:46:58', '12:47:06', '12:57:25', 612, 5443); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:50:20', '12:50:29', '12:57:54', 627, 5444); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:52:39', '12:52:48', '13:35:14', 612, 5445); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:53:21', '12:57:22', '13:14:00', 631, 5446); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:54:36', '12:57:25', '13:06:39', 612, 5447); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:54:37', '12:54:43', '13:38:43', 627, 5448); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:54:56', '13:06:39', '13:18:10', 612, 5449); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:56:23', '12:56:54', '13:15:45', 627, 5450); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '12:56:46', '13:13:52', '13:25:59', 631, 5451); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:00:13', '13:00:20', '13:27:43', 627, 5452); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:00:26', '13:00:43', '13:15:40', 627, 5453); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:00:31', '13:07:25', '13:31:11', 612, 5454); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:01:38', '13:20:58', '13:28:34', 627, 5455); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:02:08', '13:02:30', '13:18:44', 631, 5456); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:02:28', '13:15:05', '13:25:33', 612, 5457); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:04:31', '13:17:58', '13:23:42', 612, 5458); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:06:33', '13:06:39', '13:15:05', 612, 5459); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:07:56', '13:09:20', '13:12:11', 627, 5460); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:09:02', '13:12:11', '13:16:35', 627, 5461); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:11:21', '13:15:40', '13:19:49', 627, 5462); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:12:23', '13:18:10', '13:24:01', 612, 5463); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:13:29', '13:14:01', '13:34:14', 631, 5464); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:13:53', '13:23:42', '13:45:17', 612, 5465); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:13:55', '13:18:44', '13:32:46', 631, 5466); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:14:25', '13:24:44', '13:27:59', 612, 5467); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:16:01', '13:16:06', '13:21:15', 627, 5468); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:16:43', '13:19:49', '13:39:57', 627, 5469); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:18:55', '13:26:10', '13:55:30', 612, 5470); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:21:42', '13:28:26', '13:42:14', 627, 5471); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:22:45', '13:28:00', '13:54:37', 612, 5472); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:23:10', '13:28:26', '13:39:13', 631, 5473); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:23:19', '13:25:15', '13:41:33', 627, 5474); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:23:31', '13:24:01', '13:28:14', 612, 5475); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:23:56', '13:25:32', '13:27:20', 627, 5476); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:24:25', '13:26:00', '13:28:40', 631, 5477); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:25:02', '13:28:33', '14:39:06', 631, 5478); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:25:06', '13:27:20', '13:43:39', 627, 5479); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:25:09', '13:31:11', '13:48:06', 612, 5480); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:25:17', '13:28:34', '14:05:09', 627, 5481); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:25:17', '13:28:41', '13:32:06', 631, 5482); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:28:19', '13:32:07', '13:37:31', 631, 5483); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:28:42', '13:32:46', '14:30:02', 631, 5484); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:28:56', '13:45:18', '13:51:49', 612, 5485); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:29:13', '13:37:46', '13:45:43', 631, 5486); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:29:43', '13:35:29', '13:41:55', 627, 5487); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:30:26', '13:30:32', '14:21:26', 612, 5488); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:31:19', '13:35:15', '13:52:13', 612, 5489); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:31:48', '13:34:14', '13:46:43', 631, 5490); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:33:01', '13:48:08', '13:55:11', 612, 5491); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:33:55', '13:39:58', '13:47:25', 627, 5492); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:35:07', '13:41:35', '13:47:13', 612, 5493); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:37:37', '13:39:13', '14:34:46', 631, 5494); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:38:42', '13:42:59', '15:07:50', 631, 5495); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:39:15', '13:46:43', '14:16:43', 631, 5496); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:40:00', '13:47:23', '13:50:59', 612, 5497); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:41:14', '13:41:33', '13:50:22', 627, 5498); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:41:23', '13:42:15', '13:57:47', 627, 5499); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:41:26', '13:51:49', '14:18:52', 612, 5500); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:42:13', '13:52:13', '15:30:51', 612, 5501); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:43:22', '13:51:28', '14:57:21', 631, 5502); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:43:36', '13:45:43', '14:35:10', 631, 5503); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:44:49', '13:54:37', '14:00:53', 612, 5504); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:46:13', '13:50:54', '13:59:58', 627, 5505); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:47:42', '13:55:31', '14:11:27', 612, 5506); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:48:35', '13:51:00', '13:59:28', 612, 5507); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:50:52', '13:50:54', '14:16:34', 627, 5508); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:51:20', '13:59:58', '14:03:31', 627, 5509); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:51:30', '13:55:11', '13:57:34', 612, 5510); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:53:12', '13:53:16', '14:01:08', 627, 5511); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:54:42', '13:57:34', '14:03:33', 612, 5512); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:55:19', '13:56:49', '14:24:21', 631, 5513); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:56:52', '13:57:47', '14:05:09', 627, 5514); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:59:02', '14:11:42', '14:33:55', 612, 5515); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '13:59:11', '14:00:53', '14:27:23', 612, 5516); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:01:59', '14:05:09', '14:38:00', 627, 5517); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:02:30', '14:03:33', '14:19:01', 612, 5518); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:04:09', '14:05:13', '14:13:18', 627, 5519); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:04:31', '14:04:40', '14:17:15', 627, 5520); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:06:09', '14:11:17', '14:20:04', 627, 5521); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:08:10', '14:18:53', '14:23:02', 612, 5522); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:10:55', '14:16:34', '14:50:18', 627, 5523); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:11:03', '14:23:03', '14:25:45', 612, 5524); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:12:17', '14:17:19', '14:19:07', 627, 5525); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:12:51', '14:13:34', '14:22:22', 627, 5526); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:13:51', '14:25:45', '14:31:58', 612, 5527); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:14:38', '14:16:43', '14:41:30', 631, 5528); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:14:52', '14:19:02', '14:29:18', 612, 5529); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:14:59', '14:19:08', '14:26:22', 627, 5530); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:15:22', '14:24:23', '14:32:46', 627, 5531); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:16:20', '14:24:21', '14:30:23', 631, 5532); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:17:28', '14:27:24', '14:38:52', 612, 5533); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:17:53', '14:17:59', '15:07:38', 612, 5534); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:17:57', '14:22:23', '14:24:23', 627, 5535); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:20:43', '14:24:41', '15:08:37', 631, 5536); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:23:37', '14:31:58', '14:55:32', 612, 5537); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:24:07', '14:33:55', '14:44:46', 612, 5538); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:24:56', '14:30:02', '14:34:14', 631, 5539); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:26:37', '14:30:24', '14:47:20', 631, 5540); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:28:51', '14:29:18', '15:07:36', 612, 5541); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:29:32', '14:34:14', '15:11:41', 631, 5542); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:29:52', '14:34:46', '14:51:04', 631, 5543); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:30:40', '14:40:01', '15:06:43', 612, 5544); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:31:36', '14:31:37', '14:43:54', 612, 5545); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:32:07', '14:35:10', '14:47:30', 631, 5546); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:32:27', '14:32:46', '14:52:28', 627, 5547); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:32:49', '14:39:07', '14:56:05', 631, 5548); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:36:47', '14:38:52', '14:40:00', 612, 5549); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:37:19', '14:37:34', '14:40:10', 627, 5550); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:37:36', '14:38:55', '14:43:25', 627, 5551); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:37:37', '14:45:16', '14:55:54', 612, 5552); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:37:53', '14:38:01', '14:41:33', 627, 5553); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:38:13', '14:40:24', '14:54:20', 627, 5554); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:39:03', '14:43:25', '15:00:56', 627, 5555); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:41:04', '14:41:30', '15:12:29', 631, 5556); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:41:14', '14:41:33', '15:45:03', 627, 5557); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:42:54', '14:45:48', '14:48:09', 627, 5558); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:43:01', '14:47:20', '15:01:38', 631, 5559); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:44:14', '14:47:31', '15:03:31', 631, 5560); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:45:02', '14:45:10', '14:59:42', 627, 5561); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:45:23', '14:45:55', '15:19:08', 627, 5562); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:46:58', '14:50:18', '15:07:00', 627, 5563); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:47:16', '14:55:55', '15:05:34', 612, 5564); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:48:00', '14:51:05', '15:21:14', 631, 5565); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:49:19', '14:56:31', '15:09:04', 612, 5566); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:49:46', '14:49:53', '14:59:41', 612, 5567); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:50:20', '14:54:21', '15:00:01', 627, 5568); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:51:55', '14:52:28', '15:00:50', 627, 5569); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:53:36', '15:08:26', '15:09:45', 612, 5570); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:55:33', '15:00:51', '16:03:15', 627, 5571); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:56:04', '15:05:35', '15:11:52', 612, 5572); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:56:35', '15:06:44', '15:18:41', 612, 5573); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:56:49', '14:57:22', '15:41:44', 631, 5574); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '14:58:54', '15:01:39', '16:37:37', 631, 5575); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:00:20', '15:07:51', '15:59:47', 631, 5576); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:00:36', '15:03:31', '15:24:54', 631, 5577); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:01:26', '15:01:27', '15:45:17', 627, 5578); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:02:33', '15:08:37', '15:33:25', 631, 5579); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:02:41', '15:06:12', '15:17:26', 627, 5580); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:03:05', '15:09:05', '15:22:52', 612, 5581); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:03:20', '15:11:41', '15:19:31', 631, 5582); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:05:02', '15:12:29', '15:18:55', 631, 5583); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:05:20', '15:05:22', '15:06:35', 612, 5584); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:05:56', '15:07:04', '15:21:44', 627, 5585); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:07:03', '15:07:36', '15:12:58', 612, 5586); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:08:01', '15:12:58', '15:30:51', 612, 5587); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:08:23', '15:09:45', '15:15:33', 612, 5588); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:08:34', '15:16:50', '15:21:41', 627, 5589); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:09:47', '15:18:55', '15:46:01', 631, 5590); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:10:32', '15:19:32', '15:20:57', 631, 5591); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:10:52', '15:11:52', '15:20:11', 612, 5592); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:11:18', '15:17:27', '15:26:33', 627, 5593); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:12:08', '15:21:45', '15:29:17', 627, 5594); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:12:15', '15:15:40', '15:46:50', 627, 5595); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:14:14', '15:18:44', '15:30:51', 612, 5596); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:15:36', '15:23:08', '15:30:51', 612, 5597); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:16:13', '15:42:55', '16:35:33', 612, 5598); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:17:33', '15:25:52', '15:30:07', 627, 5599); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:18:00', '15:19:08', '15:47:07', 627, 5600); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:19:35', '15:21:12', '15:45:21', 631, 5601); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:19:45', '15:20:12', '15:30:51', 612, 5602); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:20:00', '15:21:14', '15:42:12', 631, 5603); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:20:12', '15:26:33', '15:31:26', 627, 5604); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:20:30', '15:20:46', '15:48:37', 627, 5605); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:20:30', '15:27:25', '15:28:59', 631, 5606); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:21:05', '15:21:42', '15:57:53', 627, 5607); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:21:39', '15:29:00', '16:39:12', 631, 5608); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:23:51', '15:29:18', '15:40:29', 627, 5609); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:24:25', '15:24:54', '15:30:27', 631, 5610); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:25:47', '15:33:56', '15:37:55', 631, 5611); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:29:06', '15:30:07', '15:34:06', 627, 5612); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:30:02', '15:30:27', '16:08:49', 631, 5613); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:30:18', '15:31:26', '15:37:54', 627, 5614); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:34:06', '15:37:55', '15:52:39', 631, 5615); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:35:03', '15:42:12', '16:31:49', 631, 5616); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:35:40', '15:41:44', '16:37:19', 631, 5617); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:37:55', '15:45:22', '16:31:56', 631, 5618); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:38:22', '15:46:01', '16:37:17', 631, 5619); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:38:38', '15:46:51', '16:03:10', 627, 5620); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:41:30', '15:41:57', '15:54:31', 627, 5621); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:42:30', '15:44:31', '15:54:51', 627, 5622); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:43:40', '15:45:17', '15:48:28', 627, 5623); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:44:46', '15:45:03', '16:03:36', 627, 5624); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:46:55', '15:48:29', '15:56:02', 627, 5625); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:47:46', '15:52:39', '16:08:55', 631, 5626); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:48:30', '15:59:47', '16:40:08', 631, 5627); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:52:11', '15:52:21', '16:01:04', 627, 5628); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-04-30', '15:56:15', '15:57:53', '16:03:09', 627, 5629); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '10:03:55', '10:04:05', '10:22:15', 631, 5630); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '10:15:30', '10:15:36', '12:57:18', 631, 5631); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '10:22:18', '10:22:26', '10:35:45', 631, 5632); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '10:24:56', '10:31:02', '12:58:53', 631, 5633); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '10:29:56', '10:35:45', '10:43:45', 631, 5634); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '10:36:26', '10:41:53', '11:16:33', 627, 5635); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '10:36:48', '10:42:27', '10:58:53', 627, 5636); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '10:43:14', '10:43:46', '12:10:21', 631, 5637); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '10:43:56', '10:51:25', '11:42:34', 627, 5638); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '10:51:39', '10:58:53', '11:20:31', 627, 5639); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '10:52:07', '10:52:23', '11:41:47', 627, 5640); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '10:57:11', '10:57:54', '12:14:32', 627, 5641); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '11:06:48', '11:16:33', '15:26:52', 627, 5642); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '11:11:26', '11:20:32', '11:28:30', 627, 5643); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '11:24:02', '11:24:18', '12:33:46', 631, 5644); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '11:51:55', '11:52:02', '13:08:14', 627, 5645); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '12:03:14', '12:03:16', '13:00:28', 631, 5646); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '12:03:39', '12:03:41', '12:59:34', 631, 5647); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '12:07:57', '12:10:21', '12:27:37', 631, 5648); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '12:11:02', '12:12:01', '12:17:39', 627, 5649); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '12:13:09', '12:14:35', '13:43:02', 627, 5650); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '12:19:12', '12:20:52', '12:45:00', 627, 5651); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '12:27:07', '12:27:37', '12:37:40', 631, 5652); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '12:33:22', '12:33:47', '15:09:24', 631, 5653); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '12:33:55', '12:35:39', '12:50:08', 627, 5654); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '12:36:46', '12:37:40', '13:57:56', 631, 5655); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '12:53:08', '12:55:02', '13:04:31', 627, 5656); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '12:53:30', '13:00:37', '13:56:34', 627, 5657); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '13:01:08', '13:01:30', '13:09:56', 631, 5658); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '13:01:23', '13:01:30', '13:53:42', 631, 5659); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '13:05:57', '13:06:27', '13:14:21', 627, 5660); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '13:06:15', '13:09:56', '14:03:33', 631, 5661); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '13:06:52', '13:08:54', '13:21:42', 631, 5662); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '13:20:59', '13:21:42', '13:45:01', 631, 5663); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '13:31:52', '13:32:42', '13:40:56', 627, 5664); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '13:40:02', '13:40:57', '13:54:46', 627, 5665); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '13:42:16', '13:43:02', '16:01:12', 627, 5666); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '13:43:02', '13:43:43', '14:12:43', 627, 5667); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '13:43:27', '13:45:01', '14:13:38', 631, 5668); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '13:52:26', '13:53:42', '15:18:22', 631, 5669); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '13:56:43', '14:01:13', '14:03:16', 627, 5670); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '13:57:31', '13:57:56', '14:18:35', 631, 5671); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '13:58:12', '14:03:45', '14:06:09', 627, 5672); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:03:02', '14:03:33', '15:10:50', 631, 5673); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:04:17', '14:06:10', '14:13:01', 627, 5674); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:05:14', '14:11:09', '14:39:32', 627, 5675); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:07:36', '14:11:10', '14:25:37', 627, 5676); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:09:16', '14:12:43', '14:18:24', 627, 5677); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:13:43', '14:13:49', '14:28:54', 631, 5678); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:17:22', '14:26:10', '14:44:02', 627, 5679); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:17:59', '14:18:35', '16:19:07', 631, 5680); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:22:29', '14:22:40', '14:28:22', 627, 5681); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:24:34', '14:28:55', '15:10:54', 631, 5682); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:29:36', '14:36:06', '16:17:22', 631, 5683); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:33:52', '14:34:08', '14:47:45', 627, 5684); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:42:26', '14:42:32', '15:01:08', 627, 5685); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:48:03', '14:48:10', '15:30:36', 627, 5686); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:49:21', '14:51:04', '14:53:13', 627, 5687); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:52:59', '14:55:33', '14:57:19', 627, 5688); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:54:59', '14:57:22', '15:29:34', 627, 5689); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '14:57:58', '15:01:09', '15:07:15', 627, 5690); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '15:00:00', '15:07:16', '15:09:48', 627, 5691); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '15:08:03', '15:10:50', '15:48:11', 631, 5692); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '15:09:00', '15:09:25', '15:57:11', 631, 5693); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '15:10:23', '15:10:29', '15:19:16', 627, 5694); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '15:10:33', '15:10:54', '15:41:56', 631, 5695); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '15:18:10', '15:18:22', '15:45:10', 631, 5696); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '15:21:18', '15:26:53', '16:30:03', 627, 5697); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '15:28:15', '15:29:46', '16:08:15', 627, 5698); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '15:33:31', '15:41:56', '15:59:44', 631, 5699); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '15:40:19', '15:45:10', '16:18:09', 631, 5700); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '15:43:33', '15:48:11', '15:50:36', 631, 5701); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-02', '15:50:16', '15:50:36', '16:17:26', 631, 5702); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '09:00:50', '09:01:17', '12:08:07', 612, 5703); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '09:02:02', '09:02:28', '11:17:14', 627, 5704); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '09:15:11', '09:16:19', '09:59:43', 612, 5705); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '09:22:22', '09:22:28', '10:53:34', 612, 5706); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '09:22:48', '09:22:53', '11:20:14', 612, 5707); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '09:28:41', '09:28:49', '09:36:03', 627, 5708); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '09:30:06', '09:30:14', '09:58:04', 631, 5709); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '09:32:20', '09:32:26', '10:01:35', 631, 5710); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '09:45:05', '09:48:53', '11:21:23', 631, 5711); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '09:58:16', '09:58:25', '10:44:06', 631, 5712); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '09:59:11', '10:01:35', '10:24:28', 631, 5713); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '09:59:32', '09:59:43', '11:16:04', 612, 5714); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '10:15:07', '10:15:12', '10:20:33', 631, 5715); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '10:16:18', '10:18:31', '12:13:38', 631, 5716); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '10:20:46', '10:20:49', '11:21:04', 631, 5717); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '10:22:54', '10:24:29', '10:30:46', 631, 5718); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '10:24:38', '10:30:46', '12:52:42', 631, 5719); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '10:25:07', '10:25:13', '10:38:07', 627, 5720); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '10:35:06', '10:35:46', '11:28:51', 631, 5721); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '10:39:17', '10:39:36', '11:20:21', 612, 5722); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '10:44:18', '10:44:28', '11:37:27', 631, 5723); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '10:53:18', '10:53:48', '11:01:37', 627, 5724); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '10:53:21', '10:53:34', '11:16:01', 612, 5725); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '10:53:38', '10:53:51', '11:04:15', 627, 5726); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:00:32', '11:00:58', '11:44:09', 627, 5727); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:13:36', '11:15:09', '13:11:46', 627, 5728); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:15:10', '11:15:21', '12:05:16', 627, 5729); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:15:54', '11:16:01', '11:53:08', 612, 5730); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:16:02', '11:17:14', '11:44:11', 627, 5731); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:18:49', '11:20:06', '11:30:20', 627, 5732); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:19:31', '11:21:29', '11:49:07', 631, 5733); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:20:26', '11:20:26', '13:14:15', 612, 5734); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:20:42', '11:21:04', '11:48:37', 631, 5735); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:25:04', '11:25:16', '11:33:15', 612, 5736); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:28:23', '11:33:17', '11:41:07', 612, 5737); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:28:23', '11:28:51', '11:34:49', 631, 5738); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:34:28', '11:34:49', '12:53:34', 631, 5739); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:35:02', '11:35:07', '11:42:46', 627, 5740); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:37:46', '11:37:48', '11:59:34', 631, 5741); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:40:55', '11:49:07', '12:54:45', 631, 5742); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:40:59', '11:41:11', '12:08:31', 612, 5743); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:43:31', '11:44:07', '11:48:38', 627, 5744); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:43:43', '11:44:12', '12:29:04', 627, 5745); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:48:46', '11:48:48', '12:24:25', 631, 5746); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:52:55', '11:53:02', '11:58:00', 627, 5747); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:52:57', '11:53:08', '12:18:06', 612, 5748); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '11:59:07', '11:59:34', '12:35:52', 631, 5749); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:03:39', '12:03:44', '12:23:41', 627, 5750); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:04:50', '12:05:16', '12:48:00', 627, 5751); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:08:23', '12:08:34', '12:36:50', 612, 5752); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:12:14', '12:13:38', '15:28:39', 631, 5753); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:13:02', '12:13:12', '12:33:43', 612, 5754); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:16:55', '12:17:12', '12:51:03', 612, 5755); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:18:13', '12:18:17', '12:43:26', 612, 5756); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:19:59', '12:20:06', '12:35:03', 627, 5757); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:23:30', '12:23:35', '12:25:30', 627, 5758); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:24:26', '12:24:27', '12:36:19', 631, 5759); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:26:49', '12:29:05', '14:44:19', 627, 5760); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:32:32', '12:33:43', '12:38:27', 612, 5761); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:36:24', '12:36:30', '12:53:27', 631, 5762); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:36:36', '12:36:52', '13:01:51', 612, 5763); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:37:25', '12:37:27', '12:45:00', 627, 5764); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:37:47', '12:38:27', '12:40:06', 612, 5765); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:42:44', '12:43:15', '12:48:07', 612, 5766); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:43:11', '12:43:27', '13:01:17', 612, 5767); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:43:50', '12:44:37', '12:54:31', 627, 5768); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:45:56', '12:48:07', '13:08:22', 612, 5769); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:47:18', '12:51:03', '13:13:04', 612, 5770); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:48:14', '12:53:41', '13:15:55', 627, 5771); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:50:45', '12:52:42', '13:02:04', 631, 5772); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:51:25', '12:54:31', '13:15:43', 627, 5773); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:51:56', '12:53:27', '13:29:49', 631, 5774); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:52:20', '12:54:46', '15:30:52', 631, 5775); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:52:52', '13:02:04', '14:08:28', 631, 5776); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:53:07', '12:53:34', '14:44:52', 631, 5777); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:56:57', '12:57:10', '13:09:51', 627, 5778); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '12:57:16', '13:03:34', '13:13:34', 627, 5779); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:01:10', '13:01:17', '13:49:26', 612, 5780); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:01:41', '13:01:51', '13:48:17', 612, 5781); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:02:46', '13:08:23', '13:18:59', 612, 5782); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:05:23', '13:09:51', '13:43:48', 627, 5783); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:09:47', '13:11:46', '13:24:21', 627, 5784); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:10:10', '13:13:59', '13:24:19', 627, 5785); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:10:30', '13:14:47', '13:36:39', 627, 5786); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:11:51', '13:13:05', '13:38:43', 612, 5787); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:12:54', '13:15:43', '13:21:00', 627, 5788); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:13:46', '13:14:16', '13:33:49', 612, 5789); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:13:54', '13:15:55', '13:56:43', 627, 5790); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:18:26', '13:21:00', '13:36:33', 627, 5791); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:18:33', '13:19:00', '13:31:34', 612, 5792); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:27:14', '13:27:25', '13:38:22', 612, 5793); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:27:14', '13:31:09', '14:05:41', 627, 5794); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:28:04', '13:29:49', '13:43:42', 631, 5795); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:28:33', '13:31:20', '13:36:41', 627, 5796); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:29:12', '13:36:34', '13:50:12', 627, 5797); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:29:35', '13:31:34', '13:58:02', 612, 5798); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:30:51', '13:39:00', '13:58:02', 612, 5799); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:31:45', '13:48:17', '13:58:02', 612, 5800); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:33:38', '13:33:50', '13:48:36', 612, 5801); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:37:12', '13:38:22', '13:58:02', 612, 5802); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:39:19', '13:50:16', '13:55:04', 612, 5803); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:40:05', '13:55:15', '13:58:02', 612, 5804); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:42:09', '13:43:48', '14:07:24', 627, 5805); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:42:30', '13:50:13', '13:56:08', 627, 5806); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:45:02', '13:48:37', '13:58:02', 612, 5807); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:46:29', '13:53:22', '14:08:13', 627, 5808); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:49:35', '13:49:49', '14:18:07', 627, 5809); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:49:41', '13:49:56', '14:09:55', 627, 5810); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:50:37', '13:50:43', '13:58:55', 631, 5811); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:56:46', '13:57:21', '14:13:32', 627, 5812); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '13:59:03', '13:59:06', '14:29:32', 631, 5813); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:01:36', '14:09:55', '14:15:56', 627, 5814); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:02:39', '14:02:50', '14:08:52', 627, 5815); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:07:28', '14:14:57', '14:24:23', 627, 5816); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:07:48', '14:08:28', '15:17:50', 631, 5817); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:15:27', '14:18:19', '14:26:25', 627, 5818); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:15:48', '14:15:56', '14:26:02', 627, 5819); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:16:08', '14:18:07', '14:57:33', 627, 5820); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:17:20', '14:24:23', '14:30:30', 627, 5821); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:20:09', '14:24:46', '14:37:15', 627, 5822); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:27:08', '14:30:31', '15:01:10', 627, 5823); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:30:42', '14:30:56', '16:13:27', 627, 5824); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:34:20', '14:39:07', '15:02:28', 627, 5825); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:36:03', '14:36:14', '15:50:41', 612, 5826); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:36:11', '14:36:14', '14:58:52', 631, 5827); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:39:28', '14:42:48', '14:58:22', 612, 5828); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:43:04', '14:44:43', '14:50:48', 627, 5829); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:43:20', '14:44:19', '15:41:23', 627, 5830); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:44:17', '14:44:53', '15:29:08', 631, 5831); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:48:57', '14:50:44', '15:16:41', 627, 5832); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:52:33', '14:58:22', '15:11:41', 612, 5833); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:56:13', '14:56:53', '16:01:49', 627, 5834); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:56:21', '14:57:32', '15:05:14', 627, 5835); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:56:38', '14:56:50', '15:15:06', 612, 5836); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:56:41', '14:57:34', '15:34:12', 627, 5837); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:58:29', '14:58:53', '15:15:05', 631, 5838); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '14:59:12', '15:02:28', '15:03:45', 627, 5839); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:05:23', '15:14:23', '16:06:47', 627, 5840); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:06:38', '15:06:49', '15:16:42', 627, 5841); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:10:23', '15:14:31', '15:18:09', 627, 5842); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:11:24', '15:11:41', '15:39:34', 612, 5843); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:11:58', '15:16:41', '15:23:43', 627, 5844); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:14:25', '15:14:44', '15:33:13', 612, 5845); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:14:58', '15:15:06', '15:45:12', 612, 5846); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:15:01', '15:18:09', '15:20:48', 627, 5847); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:15:16', '15:15:16', '15:57:49', 631, 5848); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:17:25', '15:17:50', '15:33:37', 631, 5849); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:18:09', '15:18:19', '15:45:58', 612, 5850); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:21:36', '15:29:08', '16:01:26', 631, 5851); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:21:38', '15:21:52', '15:45:12', 612, 5852); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:23:32', '15:30:52', '16:22:21', 631, 5853); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:24:55', '15:28:40', '15:50:08', 631, 5854); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:27:09', '15:27:24', '15:34:16', 627, 5855); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:28:21', '15:33:37', '15:52:30', 631, 5856); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:32:54', '15:33:14', '15:48:22', 612, 5857); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:33:15', '15:34:12', '16:39:43', 627, 5858); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:34:06', '15:34:16', '16:06:36', 627, 5859); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:37:08', '15:42:53', '16:04:00', 631, 5860); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:38:37', '15:41:23', '15:53:14', 627, 5861); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:39:05', '15:39:35', '15:41:39', 612, 5862); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:41:55', '15:50:09', '16:09:52', 631, 5863); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:44:37', '15:45:12', '16:07:36', 612, 5864); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:45:40', '15:45:58', '16:04:39', 612, 5865); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:47:15', '15:48:23', '16:01:54', 612, 5866); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:51:13', '15:52:30', '16:03:56', 631, 5867); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:52:59', '15:53:15', '16:03:44', 627, 5868); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-04', '15:54:57', '15:57:49', '16:04:26', 631, 5869); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '09:05:08', '09:05:13', '09:53:38', 627, 5870); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '09:23:36', '09:23:41', '10:07:05', 612, 5871); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '09:46:55', '09:47:12', '10:10:13', 612, 5872); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '09:53:57', '09:54:04', '10:13:45', 627, 5873); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '09:56:40', '09:56:51', '10:48:19', 631, 5874); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '10:06:35', '10:07:05', '11:09:52', 612, 5875); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '10:08:46', '10:08:51', '11:16:08', 631, 5876); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '10:10:05', '10:10:15', '10:36:10', 612, 5877); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '10:13:25', '10:13:35', '10:26:00', 627, 5878); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '10:16:40', '10:17:13', '10:27:34', 627, 5879); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '10:18:23', '10:18:59', '10:56:26', 631, 5880); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '10:19:06', '10:19:51', '10:58:58', 627, 5881); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '10:28:56', '10:29:17', '10:40:20', 627, 5882); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '10:32:20', '10:32:27', '10:41:31', 627, 5883); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '10:40:07', '10:40:20', '11:34:25', 627, 5884); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '10:40:15', '10:47:15', '12:05:48', 612, 5885); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '10:52:11', '10:52:15', '15:31:19', 631, 5886); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:04:50', '11:04:57', '11:40:07', 627, 5887); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:04:53', '11:05:02', '11:22:28', 631, 5888); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:09:54', '11:10:01', '11:19:19', 612, 5889); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:10:45', '11:10:50', '11:51:05', 627, 5890); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:11:12', '11:11:31', '11:17:25', 612, 5891); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:15:16', '11:16:08', '11:55:25', 631, 5892); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:16:48', '11:17:12', '12:09:37', 612, 5893); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:19:17', '11:19:19', '12:24:18', 612, 5894); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:22:27', '11:22:28', '11:55:26', 631, 5895); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:34:20', '11:59:38', '12:04:31', 612, 5896); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:35:35', '11:35:40', '12:01:52', 631, 5897); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:36:57', '11:37:29', '11:55:07', 631, 5898); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:37:04', '11:37:06', '12:53:34', 627, 5899); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:38:28', '11:39:03', '12:03:54', 627, 5900); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:38:34', '11:40:35', '11:56:34', 631, 5901); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:39:05', '11:40:08', '12:42:41', 627, 5902); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:40:19', '11:40:47', '11:41:50', 627, 5903); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:54:25', '11:55:25', '12:02:19', 631, 5904); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:55:41', '11:55:47', '12:26:50', 631, 5905); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '11:56:33', '11:56:35', '12:33:52', 631, 5906); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:01:44', '12:01:53', '12:08:52', 631, 5907); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:02:10', '12:02:20', '13:15:40', 631, 5908); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:03:27', '12:03:55', '12:13:28', 627, 5909); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:04:10', '12:06:44', '12:25:41', 627, 5910); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:04:31', '12:04:32', '13:59:28', 612, 5911); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:05:00', '12:05:39', '12:39:17', 612, 5912); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:05:32', '12:05:48', '13:04:23', 612, 5913); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:05:44', '12:07:42', '12:27:22', 627, 5914); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:07:30', '12:13:28', '12:31:57', 627, 5915); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:07:47', '12:08:52', '12:38:36', 631, 5916); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:08:57', '12:09:38', '13:14:00', 612, 5917); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:17:08', '12:17:38', '13:15:26', 631, 5918); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:18:22', '12:21:16', '12:30:05', 627, 5919); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:19:05', '12:25:30', '12:37:17', 627, 5920); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:21:34', '12:21:43', '13:32:32', 627, 5921); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:23:26', '12:24:19', '12:36:23', 612, 5922); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:25:24', '12:26:50', '13:20:08', 631, 5923); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:26:32', '12:33:52', '13:56:49', 631, 5924); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:27:59', '12:28:18', '12:52:56', 612, 5925); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:29:57', '12:30:05', '12:39:20', 627, 5926); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:30:43', '12:31:57', '12:42:27', 627, 5927); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:36:17', '12:36:23', '13:23:26', 612, 5928); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:38:44', '12:42:42', '15:01:38', 627, 5929); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:39:08', '12:39:18', '13:10:28', 612, 5930); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:42:34', '12:42:38', '12:46:07', 627, 5931); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:47:15', '12:48:55', '13:01:31', 627, 5932); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:47:25', '12:52:57', '12:54:33', 612, 5933); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:47:54', '12:54:33', '13:08:37', 612, 5934); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:51:34', '12:51:42', '13:38:34', 631, 5935); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:52:40', '13:04:23', '13:53:22', 612, 5936); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:53:46', '12:53:51', '13:00:30', 627, 5937); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:56:02', '12:56:05', '13:03:21', 627, 5938); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '12:56:45', '12:56:46', '13:55:06', 627, 5939); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:04:56', '13:12:30', '13:34:33', 627, 5940); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:08:15', '13:08:38', '14:05:01', 612, 5941); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:09:30', '13:10:29', '13:19:57', 612, 5942); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:12:59', '13:16:54', '13:26:42', 627, 5943); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:13:30', '13:14:01', '13:20:03', 612, 5944); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:13:53', '13:15:26', '15:00:55', 631, 5945); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:14:46', '13:15:40', '13:54:43', 631, 5946); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:15:58', '13:16:50', '14:39:06', 627, 5947); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:18:53', '13:20:09', '13:49:58', 631, 5948); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:19:44', '13:26:42', '13:42:56', 627, 5949); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:19:49', '13:20:03', '13:29:01', 612, 5950); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:20:13', '13:20:23', '13:38:58', 612, 5951); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:22:03', '13:23:27', '13:49:50', 612, 5952); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:22:40', '13:29:01', '13:31:14', 612, 5953); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:26:18', '13:31:15', '14:10:06', 612, 5954); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:32:11', '13:32:33', '14:26:13', 627, 5955); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:38:26', '13:38:35', '14:25:42', 631, 5956); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:41:24', '13:44:37', '14:24:22', 631, 5957); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:42:34', '13:42:56', '13:47:24', 627, 5958); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:49:13', '13:49:59', '15:28:38', 631, 5959); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:49:29', '13:49:50', '13:57:18', 612, 5960); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:49:54', '13:53:23', '14:06:10', 612, 5961); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:50:59', '13:54:43', '14:16:31', 631, 5962); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:52:36', '13:53:00', '14:26:14', 627, 5963); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:54:02', '13:54:25', '14:38:08', 627, 5964); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:54:33', '13:56:49', '14:02:32', 631, 5965); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:55:43', '14:02:33', '14:45:16', 631, 5966); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:57:09', '13:57:18', '14:23:53', 612, 5967); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '13:58:06', '13:59:29', '14:13:10', 612, 5968); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:04:26', '14:05:01', '14:08:34', 612, 5969); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:05:07', '14:06:11', '14:33:03', 612, 5970); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:05:46', '14:06:32', '14:13:18', 612, 5971); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:07:48', '14:16:31', '14:37:58', 631, 5972); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:07:54', '14:08:34', '15:10:04', 612, 5973); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:08:27', '14:10:06', '15:27:59', 612, 5974); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:09:24', '14:13:10', '15:53:04', 612, 5975); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:14:51', '14:24:22', '15:27:15', 631, 5976); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:15:50', '14:16:04', '14:18:27', 612, 5977); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:22:26', '14:22:34', '15:03:53', 627, 5978); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:23:45', '14:23:53', '14:26:58', 612, 5979); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:24:35', '14:25:42', '14:56:47', 631, 5980); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:24:40', '14:24:58', '14:44:07', 612, 5981); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:25:19', '14:26:14', '14:38:43', 627, 5982); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:25:53', '14:26:13', '15:21:53', 627, 5983); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:27:02', '14:27:09', '14:44:04', 612, 5984); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:32:44', '14:33:03', '15:21:29', 612, 5985); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:35:58', '14:37:58', '16:46:06', 631, 5986); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:37:06', '14:45:17', '15:32:22', 631, 5987); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:38:36', '14:38:40', '14:40:02', 627, 5988); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:39:49', '14:40:03', '14:42:19', 627, 5989); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:41:17', '14:41:31', '14:49:23', 627, 5990); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:43:44', '14:44:04', '15:05:17', 612, 5991); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:44:33', '14:44:41', '14:46:34', 627, 5992); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:46:37', '14:46:46', '15:17:55', 627, 5993); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:51:25', '14:56:48', '15:30:21', 631, 5994); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:51:42', '14:51:49', '14:56:01', 612, 5995); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:52:31', '14:57:44', '15:08:55', 612, 5996); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:53:19', '14:57:51', '15:17:34', 627, 5997); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '14:56:16', '15:03:54', '15:35:24', 627, 5998); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:00:23', '15:00:55', '16:05:08', 631, 5999); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:00:50', '15:08:22', '15:17:04', 627, 6000); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:01:11', '15:01:38', '15:20:11', 627, 6001); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:02:54', '15:20:12', '15:32:18', 627, 6002); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:05:06', '15:05:18', '15:15:49', 612, 6003); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:08:42', '15:08:55', '15:39:03', 612, 6004); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:09:40', '15:10:05', '15:51:39', 612, 6005); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:15:40', '15:15:49', '16:08:15', 612, 6006); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:19:14', '15:19:16', '15:42:03', 627, 6007); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:19:30', '15:23:43', '16:02:55', 627, 6008); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:20:40', '15:21:30', '15:47:29', 612, 6009); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:21:30', '15:21:53', '16:11:28', 627, 6010); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:23:35', '15:23:43', '16:11:15', 627, 6011); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:25:37', '15:27:56', '15:36:46', 627, 6012); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:26:49', '15:27:59', '15:47:14', 612, 6013); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:27:06', '15:27:15', '15:37:52', 631, 6014); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:28:09', '15:28:38', '15:47:21', 631, 6015); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:28:37', '15:30:21', '15:38:41', 631, 6016); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:30:07', '15:31:19', '16:22:15', 631, 6017); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:30:37', '15:32:18', '15:35:38', 627, 6018); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:30:52', '15:35:38', '15:46:15', 627, 6019); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:31:08', '15:32:22', '15:49:06', 631, 6020); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:32:05', '15:37:52', '16:56:35', 631, 6021); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:34:14', '15:35:24', '15:59:35', 627, 6022); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:36:11', '15:36:46', '15:50:09', 627, 6023); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:38:26', '15:38:41', '15:47:04', 631, 6024); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:38:34', '15:39:03', '15:47:25', 612, 6025); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:41:30', '15:42:03', '15:51:59', 627, 6026); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:43:27', '15:47:04', '15:53:56', 631, 6027); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:45:21', '15:46:15', '16:06:26', 627, 6028); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:45:54', '15:50:09', '16:22:45', 627, 6029); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:45:56', '15:47:22', '16:25:21', 631, 6030); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:46:34', '15:47:15', '16:01:35', 612, 6031); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:47:04', '15:47:26', '15:52:37', 612, 6032); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:49:00', '15:49:06', '16:22:10', 631, 6033); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:49:24', '15:53:57', '15:59:45', 631, 6034); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-05', '15:56:05', '15:59:45', '16:22:25', 631, 6035); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:00:14', '09:00:19', '09:49:48', 627, 6036); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:01:10', '09:01:14', '11:32:20', 631, 6037); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:01:48', '09:01:54', '09:39:37', 631, 6038); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:02:09', '09:03:46', '09:18:17', 612, 6039); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:07:32', '09:16:01', '11:35:52', 631, 6040); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:07:45', '09:07:49', '10:10:43', 612, 6041); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:09:27', '09:09:30', '09:18:04', 627, 6042); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:10:45', '09:16:13', '11:25:55', 612, 6043); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:15:52', '09:16:29', '09:51:18', 612, 6044); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:16:24', '09:18:17', '09:39:39', 612, 6045); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:17:53', '09:17:55', '09:33:03', 631, 6046); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:19:14', '09:19:15', '09:26:33', 627, 6047); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:20:16', '09:20:20', '09:40:56', 627, 6048); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:22:33', '09:22:36', '09:32:37', 631, 6049); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:24:42', '09:24:46', '10:17:41', 631, 6050); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:25:02', '09:25:09', '09:40:25', 631, 6051); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:31:17', '09:32:38', '10:14:24', 631, 6052); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:32:56', '09:36:09', '09:42:58', 612, 6053); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:34:57', '09:34:58', '09:46:54', 631, 6054); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:36:05', '09:39:37', '10:17:45', 631, 6055); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:37:09', '09:37:30', '09:47:09', 627, 6056); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:38:09', '09:38:10', '09:42:58', 627, 6057); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:39:18', '09:40:26', '10:25:42', 631, 6058); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:39:31', '09:39:39', '09:58:24', 612, 6059); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:39:38', '09:46:54', '10:09:46', 631, 6060); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:42:43', '09:42:58', '10:04:52', 612, 6061); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:43:20', '09:48:02', '10:50:37', 631, 6062); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:48:39', '09:49:29', '10:11:17', 627, 6063); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:50:11', '09:50:18', '10:05:04', 627, 6064); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:50:53', '09:50:55', '10:43:55', 627, 6065); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:51:14', '09:51:18', '12:37:57', 612, 6066); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:53:28', '09:53:36', '12:46:08', 627, 6067); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:53:44', '09:57:39', '10:52:51', 627, 6068); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:57:53', '09:57:55', '09:59:37', 627, 6069); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:57:58', '09:58:24', '10:33:28', 612, 6070); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '09:58:38', '09:59:39', '10:58:40', 627, 6071); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:01:55', '10:02:00', '10:11:47', 627, 6072); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:02:26', '10:02:33', '10:14:41', 627, 6073); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:02:37', '10:02:45', '10:27:11', 627, 6074); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:04:41', '10:04:52', '10:17:56', 612, 6075); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:06:42', '10:06:45', '10:14:54', 627, 6076); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:08:10', '10:09:46', '10:27:15', 631, 6077); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:12:56', '10:14:25', '10:44:12', 631, 6078); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:13:15', '10:17:41', '10:36:02', 631, 6079); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:14:30', '10:17:46', '10:37:54', 631, 6080); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:15:11', '10:17:56', '11:01:17', 612, 6081); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:15:45', '10:15:47', '10:26:24', 627, 6082); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:15:59', '10:16:06', '10:29:11', 612, 6083); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:27:12', '10:27:15', '10:49:14', 631, 6084); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:30:30', '10:30:38', '11:09:29', 612, 6085); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:32:18', '10:32:28', '11:18:01', 627, 6086); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:33:21', '10:33:28', '10:39:59', 612, 6087); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:35:11', '10:36:03', '11:53:22', 631, 6088); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:37:15', '10:37:54', '10:56:10', 631, 6089); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:37:40', '10:38:51', '10:43:37', 612, 6090); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:39:51', '10:39:59', '11:01:25', 612, 6091); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:40:08', '10:40:38', '11:04:00', 627, 6092); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:40:15', '10:41:20', '11:40:31', 627, 6093); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:42:26', '10:43:37', '10:59:43', 612, 6094); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:44:02', '10:44:12', '11:12:56', 631, 6095); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:44:18', '10:49:14', '11:04:49', 631, 6096); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:44:59', '10:50:38', '11:23:23', 631, 6097); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:47:13', '10:47:15', '12:39:20', 612, 6098); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:52:47', '10:52:52', '13:32:24', 627, 6099); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:53:18', '10:53:26', '10:59:58', 627, 6100); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:55:32', '10:56:10', '11:23:03', 631, 6101); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '10:58:09', '10:58:41', '11:49:02', 627, 6102); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:01:17', '11:01:28', '11:37:15', 612, 6103); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:01:20', '11:01:22', '11:11:10', 627, 6104); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:04:31', '11:04:50', '11:20:11', 631, 6105); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:05:46', '11:05:54', '11:22:04', 612, 6106); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:11:04', '11:12:56', '11:25:12', 631, 6107); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:18:50', '11:18:56', '11:44:23', 612, 6108); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:19:07', '11:20:11', '12:07:35', 631, 6109); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:19:43', '11:23:04', '12:21:01', 631, 6110); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:21:51', '11:23:23', '12:57:43', 631, 6111); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:21:58', '11:22:04', '11:44:17', 612, 6112); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:23:07', '11:24:09', '11:31:18', 631, 6113); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:23:48', '11:25:13', '11:36:45', 631, 6114); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:24:44', '11:25:55', '12:09:04', 612, 6115); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:26:09', '11:35:52', '11:49:23', 631, 6116); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:31:07', '11:31:19', '13:39:31', 631, 6117); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:31:54', '11:32:20', '12:05:19', 631, 6118); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:32:22', '11:37:58', '11:44:09', 631, 6119); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:34:09', '11:34:19', '11:43:00', 627, 6120); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:34:15', '11:36:46', '11:37:57', 631, 6121); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:37:08', '11:37:15', '11:53:49', 612, 6122); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:40:16', '11:40:25', '12:10:11', 627, 6123); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:41:59', '11:44:10', '11:49:40', 631, 6124); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:42:16', '11:49:02', '12:59:44', 627, 6125); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:44:09', '11:44:24', '12:08:52', 612, 6126); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:45:56', '11:49:40', '13:03:19', 631, 6127); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:46:06', '11:46:14', '11:55:30', 612, 6128); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:46:39', '11:49:24', '12:38:59', 631, 6129); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:53:14', '11:53:22', '12:06:15', 631, 6130); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:53:16', '11:53:50', '12:37:29', 612, 6131); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:54:06', '11:54:11', '12:02:30', 627, 6132); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:55:23', '11:55:30', '12:02:12', 612, 6133); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '11:59:37', '11:59:47', '13:02:03', 627, 6134); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:02:07', '12:02:12', '13:07:25', 612, 6135); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:03:49', '12:05:19', '12:54:40', 631, 6136); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:04:59', '12:05:50', '12:16:00', 627, 6137); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:05:18', '12:06:15', '13:23:12', 631, 6138); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:05:43', '12:08:52', '12:22:48', 612, 6139); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:06:04', '12:07:36', '12:40:16', 631, 6140); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:07:53', '12:09:07', '12:36:59', 612, 6141); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:07:57', '12:08:01', '12:22:06', 627, 6142); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:12:06', '12:12:14', '12:46:26', 631, 6143); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:13:11', '12:13:12', '12:22:10', 627, 6144); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:18:23', '12:21:01', '13:06:49', 631, 6145); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:19:06', '12:19:14', '12:23:37', 627, 6146); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:22:35', '12:22:48', '12:46:17', 612, 6147); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:25:14', '12:36:59', '13:46:21', 612, 6148); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:27:50', '12:27:57', '12:39:01', 627, 6149); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:28:11', '12:28:44', '13:19:18', 627, 6150); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:28:47', '12:37:29', '12:43:40', 612, 6151); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:29:53', '12:29:58', '12:53:06', 612, 6152); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:31:18', '12:37:57', '13:18:40', 612, 6153); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:31:36', '12:43:09', '13:02:45', 612, 6154); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:31:38', '12:31:46', '12:40:00', 627, 6155); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:33:19', '12:40:16', '13:18:14', 631, 6156); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:35:38', '12:46:09', '12:59:49', 627, 6157); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:35:40', '12:43:40', '12:49:33', 612, 6158); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:37:27', '12:46:17', '13:31:32', 612, 6159); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:38:18', '12:38:59', '12:55:17', 631, 6160); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:46:26', '12:49:34', '13:07:18', 612, 6161); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:47:55', '12:53:07', '13:04:32', 612, 6162); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:52:34', '12:55:17', '13:11:29', 631, 6163); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:56:57', '12:57:07', '13:05:18', 627, 6164); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:57:27', '12:59:55', '13:36:43', 627, 6165); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:57:52', '12:57:54', '13:56:06', 631, 6166); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:58:49', '12:59:44', '13:32:05', 627, 6167); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '12:59:17', '12:59:49', '13:56:19', 627, 6168); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:00:45', '13:03:19', '13:28:47', 631, 6169); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:01:03', '13:06:49', '13:16:38', 631, 6170); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:02:40', '13:02:46', '14:40:23', 612, 6171); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:03:37', '13:11:30', '14:53:13', 631, 6172); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:04:46', '13:07:18', '14:20:28', 612, 6173); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:05:36', '13:07:25', '13:14:14', 612, 6174); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:09:33', '13:09:35', '13:32:13', 627, 6175); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:10:20', '13:10:30', '13:27:01', 627, 6176); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:14:05', '13:14:14', '13:32:39', 612, 6177); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:15:21', '13:18:14', '13:44:29', 631, 6178); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:17:10', '13:23:12', '13:58:00', 631, 6179); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:18:33', '13:18:40', '13:42:10', 612, 6180); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:25:26', '13:28:47', '14:09:39', 631, 6181); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:31:14', '13:31:32', '15:30:32', 612, 6182); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:31:41', '13:32:05', '14:15:19', 627, 6183); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:32:28', '13:32:39', '13:39:34', 612, 6184); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:32:44', '13:32:54', '13:36:50', 612, 6185); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:36:36', '13:36:43', '13:45:10', 627, 6186); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:37:01', '13:39:33', '13:53:48', 631, 6187); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:39:22', '13:39:34', '13:53:05', 612, 6188); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:41:08', '13:41:14', '13:56:12', 627, 6189); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:41:30', '13:44:29', '14:25:25', 631, 6190); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:42:02', '13:42:11', '13:50:33', 612, 6191); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:43:06', '13:44:12', '13:49:58', 627, 6192); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:44:50', '13:46:21', '14:16:25', 612, 6193); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:47:14', '13:53:06', '13:59:58', 612, 6194); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:49:08', '13:50:33', '13:53:29', 612, 6195); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:49:20', '13:52:50', '14:18:29', 627, 6196); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:49:51', '13:59:59', '14:06:42', 612, 6197); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:50:06', '13:53:48', '14:17:13', 631, 6198); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:50:34', '13:56:06', '14:02:30', 631, 6199); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:53:25', '13:53:29', '14:01:37', 612, 6200); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:53:48', '13:53:53', '13:58:55', 627, 6201); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:54:01', '13:56:13', '14:13:00', 627, 6202); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:55:07', '13:56:20', '14:01:44', 627, 6203); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:56:48', '14:01:44', '15:22:36', 627, 6204); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:57:40', '13:58:00', '14:32:22', 631, 6205); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '13:58:28', '14:02:26', '15:31:06', 631, 6206); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:00:19', '14:00:29', '14:20:01', 627, 6207); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:01:19', '14:01:37', '14:30:21', 612, 6208); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:02:06', '14:02:16', '14:21:20', 627, 6209); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:03:35', '14:09:39', '14:27:51', 631, 6210); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:03:55', '14:07:43', '14:33:23', 612, 6211); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:04:20', '14:16:25', '15:17:34', 612, 6212); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:06:48', '14:15:17', '15:52:29', 631, 6213); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:09:32', '14:09:41', '14:11:20', 612, 6214); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:11:40', '14:15:20', '14:29:34', 627, 6215); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:12:48', '14:12:56', '14:54:40', 627, 6216); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:13:06', '14:18:05', '14:28:08', 631, 6217); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:13:22', '14:13:36', '14:28:11', 627, 6218); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:13:39', '14:20:29', '14:27:04', 612, 6219); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:13:52', '14:25:25', '16:05:30', 631, 6220); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:20:49', '14:20:51', '14:32:58', 627, 6221); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:21:11', '14:27:40', '14:34:32', 627, 6222); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:21:36', '14:27:49', '14:48:54', 627, 6223); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:24:47', '14:28:12', '14:48:45', 627, 6224); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:25:08', '14:32:58', '14:37:56', 627, 6225); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:25:12', '14:27:04', '15:04:21', 612, 6226); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:25:18', '14:29:42', '15:59:19', 627, 6227); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:25:52', '14:27:51', '14:41:35', 631, 6228); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:26:10', '14:28:09', '15:19:00', 631, 6229); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:26:36', '14:33:14', '15:20:17', 627, 6230); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:26:57', '14:33:23', '15:32:32', 612, 6231); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:30:14', '14:30:21', '15:41:23', 612, 6232); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:32:06', '14:32:22', '14:36:19', 631, 6233); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:34:07', '14:37:56', '14:48:06', 627, 6234); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:35:21', '14:36:20', '14:47:44', 631, 6235); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:35:32', '14:40:23', '15:56:26', 612, 6236); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:36:56', '14:40:33', '15:24:38', 627, 6237); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:37:17', '14:41:36', '15:07:11', 631, 6238); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:39:51', '14:47:17', '15:13:10', 627, 6239); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:40:15', '14:48:06', '15:00:29', 627, 6240); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:40:35', '14:40:41', '14:59:18', 612, 6241); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:44:41', '14:48:46', '15:13:43', 627, 6242); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:47:52', '14:48:42', '15:25:22', 631, 6243); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:50:22', '14:54:40', '15:27:43', 627, 6244); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:50:38', '14:53:14', '16:38:45', 631, 6245); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:52:35', '14:52:41', '15:15:01', 627, 6246); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:54:41', '15:02:20', '15:34:34', 627, 6247); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '14:57:53', '15:07:11', '15:42:15', 631, 6248); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:00:36', '15:04:49', '15:09:59', 627, 6249); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:02:26', '15:04:21', '15:57:55', 612, 6250); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:03:00', '15:05:27', '15:09:39', 627, 6251); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:03:21', '15:10:00', '15:20:13', 627, 6252); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:06:38', '15:13:10', '15:34:37', 627, 6253); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:09:31', '15:09:39', '15:19:37', 627, 6254); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:10:53', '15:17:35', '15:34:39', 612, 6255); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:13:23', '15:13:44', '15:59:41', 627, 6256); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:19:10', '15:19:11', '15:57:08', 631, 6257); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:19:29', '15:34:39', '16:03:05', 612, 6258); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:20:16', '15:20:18', '16:35:51', 631, 6259); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:20:49', '15:22:37', '15:58:46', 627, 6260); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:23:08', '15:27:43', '15:30:17', 627, 6261); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:25:05', '15:25:23', '15:46:46', 631, 6262); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:25:33', '15:25:39', '15:31:46', 612, 6263); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:29:30', '15:30:17', '15:49:53', 627, 6264); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:29:52', '15:31:07', '16:11:23', 631, 6265); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:30:25', '15:30:32', '15:37:53', 612, 6266); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:31:12', '15:31:19', '15:32:39', 631, 6267); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:32:27', '15:32:32', '15:46:41', 612, 6268); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:36:37', '15:42:15', '15:54:07', 631, 6269); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:37:38', '15:37:53', '16:06:03', 612, 6270); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:38:23', '15:46:46', '15:49:39', 631, 6271); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:40:06', '15:41:23', '16:07:08', 612, 6272); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:46:14', '15:46:21', '15:50:38', 627, 6273); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:46:27', '15:46:41', '16:07:56', 612, 6274); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:46:45', '15:49:39', '16:18:19', 631, 6275); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:51:59', '15:52:30', '16:28:04', 631, 6276); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:52:52', '15:54:08', '15:58:48', 631, 6277); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '15:56:37', '15:57:08', '16:18:04', 631, 6278); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-06', '16:18:35', '16:18:41', '16:21:03', 631, 6279); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '09:08:59', '09:09:03', '10:31:16', 631, 6280); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '09:24:21', '09:24:53', '09:31:33', 627, 6281); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '09:25:40', '09:25:48', '09:59:56', 612, 6282); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '09:30:52', '09:30:54', '10:07:07', 612, 6283); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '09:31:13', '09:31:50', '09:55:13', 631, 6284); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '09:39:34', '09:39:38', '09:46:39', 627, 6285); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '09:43:23', '09:44:20', '11:36:32', 612, 6286); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '09:46:53', '09:56:39', '11:52:46', 612, 6287); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '09:47:37', '09:47:46', '11:05:14', 631, 6288); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '09:49:22', '09:49:24', '10:39:31', 627, 6289); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '09:49:33', '09:49:34', '11:24:58', 631, 6290); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '09:50:50', '09:50:56', '11:05:05', 631, 6291); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '09:54:23', '09:55:14', '10:13:38', 631, 6292); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '09:54:59', '09:57:02', '10:33:42', 612, 6293); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '09:58:49', '09:59:56', '10:08:52', 612, 6294); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '10:06:53', '10:07:08', '11:01:58', 612, 6295); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '10:07:12', '10:08:53', '11:01:48', 612, 6296); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '10:13:17', '10:13:38', '12:42:58', 631, 6297); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '10:15:06', '10:20:12', '11:26:32', 631, 6298); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '10:25:55', '10:31:16', '12:19:59', 631, 6299); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '10:26:30', '10:26:32', '10:29:28', 627, 6300); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '10:26:38', '10:29:28', '10:59:24', 627, 6301); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '10:32:11', '10:32:15', '11:41:38', 627, 6302); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '10:33:31', '10:33:42', '11:52:47', 612, 6303); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '10:35:07', '10:39:32', '12:14:14', 627, 6304); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '10:50:00', '10:50:19', '10:51:19', 627, 6305); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '10:58:20', '10:59:24', '11:39:12', 627, 6306); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:00:35', '11:00:43', '11:10:35', 631, 6307); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:01:49', '11:01:57', '11:32:00', 612, 6308); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:02:04', '11:05:06', '11:40:21', 631, 6309); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:03:38', '11:04:07', '11:12:28', 612, 6310); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:05:05', '11:05:15', '11:17:04', 631, 6311); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:06:55', '11:17:05', '12:18:58', 631, 6312); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:08:43', '11:09:05', '11:34:52', 612, 6313); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:10:36', '11:12:28', '11:52:11', 612, 6314); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:12:04', '11:12:11', '11:17:42', 627, 6315); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:17:02', '11:24:58', '11:42:43', 631, 6316); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:20:57', '11:26:32', '12:04:54', 631, 6317); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:31:51', '11:32:01', '11:47:18', 612, 6318); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:33:00', '11:34:53', '11:38:38', 612, 6319); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:36:30', '11:38:38', '12:25:14', 612, 6320); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:36:53', '11:39:12', '12:07:28', 627, 6321); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:37:53', '11:38:00', '11:52:45', 627, 6322); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:39:33', '11:39:42', '12:14:51', 627, 6323); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:40:05', '11:40:21', '11:57:10', 631, 6324); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:40:30', '11:42:44', '12:18:59', 631, 6325); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:42:27', '11:42:33', '12:07:24', 627, 6326); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:43:13', '11:47:18', '12:26:38', 612, 6327); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:47:33', '11:47:41', '11:59:39', 612, 6328); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:50:08', '11:59:40', '12:34:44', 612, 6329); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:50:34', '11:53:52', '12:19:42', 631, 6330); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:51:01', '11:52:12', '12:09:03', 612, 6331); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:52:39', '11:52:46', '12:25:14', 612, 6332); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '11:57:03', '11:57:10', '12:05:41', 631, 6333); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:00:13', '12:00:15', '13:28:06', 631, 6334); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:01:04', '12:04:54', '12:42:54', 631, 6335); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:01:13', '12:01:23', '13:32:07', 627, 6336); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:02:35', '12:05:42', '13:11:28', 631, 6337); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:06:40', '12:07:31', '12:40:08', 627, 6338); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:07:07', '12:09:04', '13:02:17', 612, 6339); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:12:26', '12:12:35', '12:26:57', 627, 6340); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:13:05', '12:34:45', '12:40:46', 612, 6341); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:13:05', '12:14:13', '12:35:42', 627, 6342); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:13:38', '12:14:19', '12:47:59', 627, 6343); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:13:56', '12:14:14', '12:40:45', 627, 6344); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:18:02', '12:19:01', '13:03:01', 627, 6345); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:18:21', '12:26:57', '12:31:25', 627, 6346); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:19:11', '12:19:20', '13:21:21', 631, 6347); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:19:54', '12:20:00', '12:34:21', 631, 6348); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:22:01', '12:40:47', '12:44:07', 612, 6349); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:22:46', '12:22:51', '13:54:39', 612, 6350); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:25:05', '12:25:14', '12:52:33', 612, 6351); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:26:32', '12:26:38', '13:26:28', 612, 6352); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:26:34', '12:40:46', '12:46:10', 627, 6353); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:26:56', '12:27:57', '12:43:31', 612, 6354); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:29:25', '12:29:29', '12:48:06', 631, 6355); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:33:59', '12:34:22', '12:39:33', 631, 6356); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:36:10', '12:44:07', '12:56:55', 612, 6357); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:36:34', '12:39:33', '13:02:59', 631, 6358); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:37:25', '12:42:59', '13:22:05', 631, 6359); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:39:34', '12:40:08', '13:15:53', 627, 6360); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:42:32', '12:42:58', '13:39:52', 631, 6361); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:43:24', '12:43:31', '12:54:43', 612, 6362); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:44:34', '12:46:10', '13:25:09', 627, 6363); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:46:25', '12:48:06', '13:41:46', 631, 6364); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:50:15', '12:50:19', '13:51:50', 631, 6365); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:51:24', '13:39:52', '14:36:42', 631, 6366); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:52:11', '12:52:16', '12:57:16', 627, 6367); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:52:27', '12:52:34', '13:26:26', 612, 6368); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:53:20', '12:55:23', '12:57:17', 627, 6369); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:54:39', '12:54:43', '13:13:46', 612, 6370); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:55:43', '13:02:17', '13:11:08', 612, 6371); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '12:57:11', '12:57:16', '13:05:34', 627, 6372); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:02:23', '13:02:59', '15:34:16', 631, 6373); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:02:25', '13:02:29', '13:24:07', 627, 6374); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:04:49', '13:04:52', '13:25:31', 627, 6375); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:05:18', '13:05:26', '13:24:42', 627, 6376); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:10:56', '13:11:09', '13:23:52', 612, 6377); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:11:22', '13:11:28', '13:25:50', 631, 6378); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:11:50', '13:11:55', '13:15:08', 627, 6379); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:13:40', '13:13:46', '13:42:19', 612, 6380); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:15:25', '13:15:53', '14:37:43', 627, 6381); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:20:25', '13:21:22', '13:33:13', 631, 6382); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:20:42', '13:28:06', '14:37:39', 631, 6383); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:21:14', '13:22:05', '15:23:09', 631, 6384); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:21:31', '13:25:50', '13:32:53', 631, 6385); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:22:40', '13:23:53', '13:48:33', 612, 6386); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:23:45', '13:23:47', '13:55:42', 612, 6387); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:23:59', '13:25:10', '16:10:04', 627, 6388); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:24:27', '13:32:53', '13:44:51', 631, 6389); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:26:22', '13:26:29', '13:57:16', 612, 6390); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:27:11', '13:27:14', '14:07:41', 627, 6391); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:29:05', '13:33:13', '13:38:43', 631, 6392); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:29:28', '13:35:01', '13:48:06', 631, 6393); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:29:47', '13:29:49', '13:35:08', 627, 6394); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:38:17', '13:38:43', '14:22:39', 631, 6395); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:38:34', '13:38:39', '14:04:26', 627, 6396); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:38:57', '13:41:46', '14:37:08', 631, 6397); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:41:58', '13:42:19', '13:47:41', 612, 6398); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:43:06', '13:44:52', '14:12:23', 631, 6399); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:44:50', '13:46:28', '13:54:50', 627, 6400); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:44:54', '13:48:06', '14:07:18', 631, 6401); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:45:52', '13:53:00', '14:16:16', 627, 6402); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:47:31', '13:47:41', '14:30:08', 612, 6403); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:50:00', '13:54:19', '14:07:49', 627, 6404); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:51:59', '13:52:04', '14:10:52', 612, 6405); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:52:35', '13:52:41', '14:18:46', 631, 6406); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:52:55', '13:54:39', '15:03:09', 612, 6407); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:57:06', '13:57:17', '14:01:34', 612, 6408); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '13:57:41', '14:01:35', '14:22:00', 612, 6409); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:01:14', '14:07:19', '14:24:08', 631, 6410); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:04:42', '14:12:24', '14:46:11', 631, 6411); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:07:37', '14:08:46', '14:42:30', 612, 6412); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:10:27', '14:10:52', '14:43:21', 612, 6413); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:11:42', '14:11:43', '14:14:37', 612, 6414); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:15:41', '14:16:04', '14:20:43', 627, 6415); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:16:33', '14:18:47', '14:31:25', 631, 6416); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:18:19', '14:22:39', '15:27:21', 631, 6417); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:20:38', '14:20:39', '14:47:08', 627, 6418); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:21:11', '14:24:08', '14:49:17', 631, 6419); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:21:53', '14:22:00', '14:30:46', 612, 6420); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:21:58', '14:31:25', '14:48:19', 631, 6421); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:27:49', '14:30:47', '14:51:45', 612, 6422); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:28:19', '14:28:44', '15:31:46', 627, 6423); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:30:00', '14:30:08', '15:01:32', 612, 6424); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:30:07', '14:30:08', '14:39:44', 612, 6425); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:30:11', '14:37:39', '14:55:31', 631, 6426); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:30:22', '14:36:42', '15:30:25', 631, 6427); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:32:04', '14:32:24', '15:17:46', 627, 6428); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:33:42', '14:33:46', '15:58:08', 612, 6429); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:33:59', '14:39:45', '14:43:41', 612, 6430); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:34:32', '14:37:44', '15:15:31', 627, 6431); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:34:56', '14:37:08', '15:27:38', 631, 6432); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:36:08', '14:36:13', '14:54:00', 627, 6433); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:37:40', '14:46:12', '15:12:01', 631, 6434); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:38:16', '14:42:19', '15:45:28', 627, 6435); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:38:47', '14:48:19', '15:36:20', 631, 6436); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:39:11', '14:43:41', '14:48:32', 612, 6437); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:39:53', '14:43:21', '15:08:56', 612, 6438); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:40:13', '14:51:45', '14:57:42', 612, 6439); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:42:23', '14:42:30', '14:59:46', 612, 6440); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:45:34', '14:49:18', '16:50:27', 631, 6441); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:46:02', '14:55:31', '15:31:14', 631, 6442); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:46:56', '14:47:08', '15:26:50', 627, 6443); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:47:34', '14:48:32', '14:57:44', 612, 6444); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:48:00', '14:57:42', '15:24:44', 612, 6445); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:49:05', '15:30:25', '15:31:35', 631, 6446); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:49:30', '14:59:47', '15:30:28', 612, 6447); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:51:07', '15:01:32', '15:23:06', 612, 6448); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:52:50', '15:03:10', '15:36:03', 612, 6449); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:57:15', '14:57:22', '15:34:09', 627, 6450); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '14:57:16', '14:57:44', '15:00:40', 612, 6451); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:02:18', '15:08:56', '15:28:52', 612, 6452); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:04:49', '15:10:22', '15:16:19', 612, 6453); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:07:11', '15:07:14', '15:20:15', 627, 6454); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:08:11', '15:16:19', '15:17:29', 612, 6455); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:08:24', '15:31:35', '15:41:06', 631, 6456); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:12:28', '15:15:31', '16:10:01', 627, 6457); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:15:07', '15:17:30', '16:06:00', 612, 6458); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:15:46', '15:24:44', '15:35:54', 612, 6459); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:16:10', '15:23:06', '15:29:28', 612, 6460); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:17:29', '15:17:32', '15:22:13', 612, 6461); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:18:31', '15:20:16', '15:35:32', 627, 6462); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:22:31', '15:23:09', '16:50:19', 631, 6463); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:25:07', '15:26:52', '16:10:06', 627, 6464); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:25:19', '15:28:52', '15:47:27', 612, 6465); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:25:27', '15:29:29', '16:04:29', 612, 6466); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:26:00', '15:26:50', '16:04:32', 627, 6467); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:26:26', '15:35:54', '16:05:27', 612, 6468); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:26:32', '15:27:21', '16:36:24', 631, 6469); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:26:51', '15:36:03', '16:05:09', 612, 6470); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:27:34', '15:27:39', '15:37:47', 631, 6471); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:28:36', '15:34:16', '16:36:22', 631, 6472); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:29:00', '15:34:09', '16:12:14', 627, 6473); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:30:22', '15:30:29', '16:05:03', 612, 6474); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:30:35', '15:35:32', '16:00:23', 627, 6475); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:32:58', '15:42:59', '16:16:42', 627, 6476); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:33:37', '15:36:21', '15:48:22', 631, 6477); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:37:24', '15:41:07', '16:05:05', 631, 6478); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:39:49', '15:39:54', '15:43:45', 612, 6479); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:40:57', '15:40:58', '16:03:17', 631, 6480); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:42:34', '15:43:45', '15:49:09', 612, 6481); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:45:21', '15:45:26', '16:33:15', 631, 6482); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:46:44', '15:54:40', '16:08:45', 627, 6483); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:47:56', '15:48:23', '16:06:09', 631, 6484); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:48:32', '15:57:59', '16:15:49', 627, 6485); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:48:47', '15:49:09', '15:56:43', 612, 6486); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-07', '15:49:35', '15:56:44', '15:58:49', 612, 6487); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '08:58:13', '08:58:30', '09:07:10', 612, 6488); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '08:58:27', '08:58:45', '09:10:38', 612, 6489); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '08:58:53', '09:00:57', '09:19:14', 612, 6490); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:00:56', '09:01:01', '09:47:19', 631, 6491); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:01:42', '09:01:48', '09:14:55', 627, 6492); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:03:00', '09:03:01', '09:20:47', 631, 6493); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:03:02', '09:03:16', '09:24:17', 612, 6494); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:04:27', '09:04:30', '09:46:58', 631, 6495); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:04:49', '09:05:58', '10:48:00', 612, 6496); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:04:56', '09:05:51', '10:29:55', 627, 6497); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:06:41', '09:07:11', '09:17:45', 612, 6498); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:09:58', '09:11:53', '09:27:41', 612, 6499); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:10:25', '09:10:38', '09:18:12', 612, 6500); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:13:25', '09:13:31', '09:17:28', 612, 6501); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:14:11', '09:20:46', '10:05:30', 631, 6502); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:17:36', '09:17:45', '09:57:16', 612, 6503); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:19:07', '09:19:13', '09:28:46', 612, 6504); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:19:32', '09:27:41', '09:56:30', 612, 6505); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:23:08', '09:24:17', '09:35:19', 612, 6506); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:23:36', '09:25:40', '10:24:07', 627, 6507); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:32:37', '09:33:00', '09:57:21', 631, 6508); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:35:27', '09:35:37', '09:45:02', 612, 6509); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:35:57', '09:35:58', '10:46:18', 631, 6510); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:37:01', '09:37:02', '09:44:17', 627, 6511); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:37:18', '09:40:21', '09:45:30', 627, 6512); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:39:13', '09:46:59', '10:27:44', 631, 6513); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:39:50', '09:39:50', '10:10:08', 612, 6514); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:39:51', '09:41:01', '11:42:52', 627, 6515); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:45:35', '09:45:38', '11:40:50', 627, 6516); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:46:43', '09:47:19', '11:46:19', 631, 6517); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:56:56', '09:57:16', '10:12:41', 612, 6518); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:57:38', '09:57:40', '10:24:17', 631, 6519); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '09:59:34', '09:59:34', '10:10:35', 612, 6520); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:00:57', '10:01:24', '10:26:25', 631, 6521); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:05:17', '10:05:31', '11:38:23', 631, 6522); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:08:41', '10:08:52', '10:27:34', 612, 6523); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:09:48', '10:10:09', '10:59:14', 612, 6524); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:10:28', '10:10:38', '10:55:41', 612, 6525); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:10:48', '10:10:59', '10:46:42', 612, 6526); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:11:52', '10:12:41', '10:23:00', 612, 6527); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:12:18', '10:12:21', '10:21:28', 612, 6528); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:15:24', '10:18:59', '11:15:20', 631, 6529); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:16:40', '10:21:29', '10:23:03', 612, 6530); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:18:01', '10:19:48', '10:42:34', 631, 6531); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:22:30', '10:23:01', '10:37:24', 612, 6532); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:24:05', '10:24:18', '10:57:12', 631, 6533); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:25:16', '10:26:25', '10:42:03', 631, 6534); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:26:24', '10:27:45', '11:20:46', 631, 6535); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:29:34', '10:29:55', '13:37:44', 627, 6536); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:31:30', '10:31:33', '10:59:18', 627, 6537); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:34:01', '10:34:07', '10:37:02', 627, 6538); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:35:52', '10:36:39', '10:43:04', 612, 6539); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:36:31', '10:37:24', '10:49:51', 612, 6540); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:38:12', '10:43:04', '11:42:48', 612, 6541); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:41:58', '10:42:03', '11:19:05', 631, 6542); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:42:22', '10:42:35', '11:47:50', 631, 6543); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:45:32', '10:46:42', '12:05:14', 612, 6544); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:45:35', '10:46:19', '11:16:19', 631, 6545); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:45:58', '10:48:00', '11:12:39', 612, 6546); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:46:27', '10:46:29', '10:53:17', 627, 6547); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:46:34', '10:49:51', '11:15:57', 612, 6548); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:48:23', '10:57:13', '12:03:05', 631, 6549); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:50:52', '10:50:52', '11:26:28', 627, 6550); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:51:53', '10:55:41', '11:32:10', 612, 6551); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:53:25', '11:05:48', '11:09:24', 612, 6552); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:54:00', '10:59:14', '11:05:47', 612, 6553); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:54:18', '11:09:24', '11:11:57', 612, 6554); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:54:37', '11:11:57', '11:27:42', 612, 6555); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:55:51', '11:15:20', '11:44:46', 631, 6556); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:59:10', '10:59:12', '11:12:00', 627, 6557); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:59:16', '10:59:24', '11:00:35', 612, 6558); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:59:31', '10:59:31', '11:15:27', 612, 6559); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '10:59:49', '10:59:58', '11:06:30', 627, 6560); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:10:26', '11:16:19', '11:28:34', 631, 6561); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:11:45', '11:12:39', '11:42:02', 612, 6562); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:14:28', '11:15:58', '11:50:01', 612, 6563); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:15:46', '11:15:49', '11:27:12', 612, 6564); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:16:50', '11:16:59', '11:46:54', 627, 6565); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:18:30', '11:20:46', '11:30:21', 631, 6566); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:18:57', '11:19:05', '13:41:59', 631, 6567); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:23:26', '11:27:43', '12:18:59', 612, 6568); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:26:33', '11:28:34', '12:08:37', 631, 6569); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:26:58', '11:30:21', '11:33:26', 631, 6570); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:27:48', '11:33:27', '12:02:32', 631, 6571); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:27:53', '11:42:03', '12:27:42', 612, 6572); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:31:24', '11:32:10', '12:04:35', 612, 6573); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:32:21', '11:38:23', '11:48:12', 631, 6574); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:40:25', '11:40:50', '13:41:57', 627, 6575); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:40:58', '11:44:46', '12:30:06', 631, 6576); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:41:14', '11:46:19', '12:17:40', 631, 6577); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:41:49', '11:42:48', '11:49:11', 612, 6578); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:42:49', '11:49:11', '12:48:48', 612, 6579); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:43:11', '11:47:51', '12:30:52', 631, 6580); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:43:14', '11:43:16', '12:37:40', 627, 6581); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:43:41', '11:48:12', '12:14:16', 631, 6582); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:49:15', '11:50:02', '11:56:27', 612, 6583); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '11:56:17', '11:56:28', '12:14:13', 612, 6584); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:00:51', '12:02:33', '12:16:48', 631, 6585); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:02:17', '12:03:06', '15:36:36', 631, 6586); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:03:14', '12:08:38', '12:57:48', 631, 6587); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:04:57', '12:05:14', '12:32:14', 612, 6588); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:05:11', '12:14:17', '14:09:36', 631, 6589); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:10:58', '12:16:48', '13:24:31', 631, 6590); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:13:52', '12:14:14', '12:24:11', 612, 6591); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:16:25', '12:17:16', '12:31:15', 612, 6592); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:17:33', '12:17:40', '12:36:49', 631, 6593); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:17:54', '12:18:59', '12:21:23', 612, 6594); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:18:41', '12:21:24', '13:40:03', 612, 6595); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:24:01', '12:24:11', '12:40:57', 612, 6596); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:24:12', '12:30:06', '12:47:09', 631, 6597); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:25:03', '12:30:53', '12:31:57', 631, 6598); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:25:05', '12:27:42', '12:45:39', 612, 6599); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:25:21', '12:26:19', '12:40:36', 627, 6600); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:28:28', '12:29:11', '12:46:50', 627, 6601); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:29:27', '12:31:07', '12:35:27', 627, 6602); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:29:41', '12:31:15', '12:59:01', 612, 6603); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:30:43', '12:31:57', '13:24:45', 631, 6604); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:32:07', '12:32:14', '13:08:13', 612, 6605); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:33:18', '12:36:50', '13:14:47', 631, 6606); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:37:17', '12:37:24', '13:30:11', 627, 6607); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:38:45', '12:39:26', '13:09:47', 627, 6608); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:39:07', '12:40:36', '13:10:32', 627, 6609); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:40:38', '12:46:50', '13:27:53', 627, 6610); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:40:40', '12:40:58', '12:55:15', 612, 6611); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:40:41', '12:47:10', '13:15:36', 631, 6612); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:42:37', '12:47:36', '13:05:53', 627, 6613); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:45:08', '12:45:39', '14:20:03', 612, 6614); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:52:32', '12:55:15', '13:01:33', 612, 6615); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:55:28', '12:59:02', '13:12:07', 612, 6616); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:57:17', '12:57:49', '13:38:11', 631, 6617); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '12:58:22', '13:01:33', '13:57:16', 612, 6618); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:00:35', '13:05:53', '13:54:17', 627, 6619); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:06:49', '13:08:13', '13:39:51', 612, 6620); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:07:09', '13:12:07', '13:32:50', 612, 6621); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:14:33', '13:14:48', '13:38:06', 631, 6622); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:15:33', '13:15:40', '13:58:21', 627, 6623); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:15:34', '13:15:36', '14:28:39', 631, 6624); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:21:32', '13:30:12', '14:44:43', 627, 6625); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:21:46', '13:22:01', '13:33:33', 612, 6626); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:24:55', '13:24:57', '13:48:20', 631, 6627); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:28:35', '13:31:02', '13:42:54', 627, 6628); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:29:31', '13:31:39', '13:39:13', 627, 6629); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:30:30', '13:32:51', '13:42:59', 612, 6630); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:31:22', '13:33:34', '13:57:37', 612, 6631); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:33:15', '13:39:51', '13:45:06', 612, 6632); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:37:15', '13:39:13', '13:53:42', 627, 6633); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:37:31', '13:37:44', '14:19:35', 627, 6634); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:37:40', '13:40:03', '14:27:55', 612, 6635); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:37:42', '13:38:06', '14:08:18', 631, 6636); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:38:01', '13:38:12', '13:43:33', 631, 6637); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:39:10', '13:42:59', '13:47:47', 612, 6638); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:39:27', '13:41:59', '15:08:27', 627, 6639); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:40:15', '13:57:17', '14:20:16', 612, 6640); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:41:22', '13:42:00', '14:08:08', 631, 6641); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:42:08', '13:42:55', '13:50:04', 627, 6642); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:42:19', '13:43:33', '13:48:47', 631, 6643); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:42:30', '13:44:07', '13:51:59', 627, 6644); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:45:01', '13:45:06', '13:57:50', 612, 6645); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:45:01', '13:49:05', '15:09:39', 627, 6646); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:46:21', '13:47:47', '14:25:40', 612, 6647); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:47:06', '13:52:51', '13:55:23', 627, 6648); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:47:40', '13:52:00', '13:57:22', 627, 6649); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:48:43', '13:48:48', '14:28:38', 631, 6650); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:49:36', '13:57:51', '13:59:32', 612, 6651); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:50:27', '13:50:34', '13:56:06', 612, 6652); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:50:53', '13:53:43', '14:06:30', 627, 6653); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:51:39', '13:53:50', '15:52:06', 627, 6654); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:52:06', '13:54:17', '14:46:38', 627, 6655); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:53:14', '14:00:23', '14:18:01', 627, 6656); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:54:00', '13:56:07', '14:01:08', 612, 6657); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:54:28', '13:55:23', '14:08:07', 627, 6658); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:56:06', '13:59:33', '14:45:46', 612, 6659); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:57:40', '14:06:30', '14:19:59', 627, 6660); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:58:04', '14:08:11', '14:12:08', 627, 6661); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '13:59:27', '13:59:32', '14:08:52', 627, 6662); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:00:01', '14:08:09', '14:39:39', 631, 6663); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:08:07', '14:08:18', '14:15:22', 631, 6664); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:08:36', '14:09:36', '14:37:40', 631, 6665); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:08:43', '14:17:21', '14:29:50', 627, 6666); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:09:25', '14:18:01', '14:25:20', 627, 6667); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:09:51', '14:10:29', '14:36:24', 627, 6668); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:13:41', '14:15:22', '14:59:01', 631, 6669); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:14:19', '14:19:35', '15:17:38', 627, 6670); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:17:17', '14:25:23', '14:33:03', 627, 6671); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:19:16', '14:20:03', '14:43:38', 612, 6672); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:19:53', '14:20:16', '14:37:09', 612, 6673); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:20:36', '14:29:50', '14:45:23', 627, 6674); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:22:06', '14:25:41', '14:49:40', 612, 6675); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:25:02', '14:27:56', '14:40:16', 612, 6676); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:25:22', '14:31:55', '14:52:14', 627, 6677); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:25:23', '14:28:38', '14:37:40', 631, 6678); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:25:38', '14:28:39', '15:02:34', 631, 6679); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:28:32', '14:33:03', '14:43:38', 627, 6680); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:31:43', '14:37:41', '14:54:11', 631, 6681); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:31:59', '14:35:19', '15:51:05', 627, 6682); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:33:10', '14:37:41', '14:54:05', 631, 6683); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:36:23', '14:37:09', '14:42:40', 612, 6684); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:37:03', '14:42:40', '15:13:51', 612, 6685); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:37:42', '14:39:39', '15:26:24', 631, 6686); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:38:40', '14:43:38', '15:03:36', 627, 6687); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:40:06', '14:40:16', '15:06:40', 612, 6688); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:40:11', '14:44:44', '15:15:28', 627, 6689); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:40:36', '14:46:40', '14:55:12', 627, 6690); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:40:45', '14:41:54', '15:30:50', 627, 6691); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:42:00', '14:43:38', '15:00:26', 612, 6692); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:43:32', '14:45:48', '14:58:32', 612, 6693); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:44:11', '14:49:40', '14:54:17', 612, 6694); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:46:02', '14:52:14', '15:33:24', 627, 6695); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:49:05', '14:58:33', '15:06:40', 612, 6696); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:50:20', '14:54:06', '15:06:21', 631, 6697); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:50:23', '14:50:30', '14:58:33', 612, 6698); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:50:45', '14:54:11', '15:13:30', 631, 6699); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:52:49', '15:00:27', '15:34:10', 612, 6700); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:53:30', '15:05:15', '15:15:55', 612, 6701); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:53:49', '14:54:18', '15:09:25', 612, 6702); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:55:23', '14:59:01', '15:08:59', 631, 6703); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:55:54', '15:03:36', '15:11:40', 627, 6704); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:57:40', '15:02:35', '15:15:50', 631, 6705); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:57:55', '14:58:34', '15:04:34', 612, 6706); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:58:08', '15:05:12', '15:10:30', 631, 6707); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:58:18', '15:06:41', '15:17:19', 612, 6708); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '14:59:30', '15:04:35', '15:32:01', 612, 6709); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:00:25', '15:06:21', '15:12:11', 631, 6710); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:00:48', '15:06:41', '16:03:24', 612, 6711); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:01:07', '15:09:00', '15:17:25', 631, 6712); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:02:18', '15:02:19', '15:15:18', 631, 6713); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:02:54', '15:13:52', '17:15:19', 612, 6714); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:04:09', '15:04:19', '15:07:13', 627, 6715); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:04:18', '15:10:31', '15:39:03', 631, 6716); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:06:09', '15:15:58', '15:37:46', 612, 6717); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:06:36', '15:08:18', '16:04:36', 627, 6718); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:06:49', '15:12:11', '15:51:01', 631, 6719); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:07:19', '15:09:27', '15:10:49', 612, 6720); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:08:09', '15:10:50', '16:22:03', 612, 6721); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:08:14', '15:13:31', '15:17:42', 631, 6722); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:08:16', '15:08:27', '16:07:44', 627, 6723); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:08:48', '15:15:51', '15:17:17', 631, 6724); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:09:05', '15:17:17', '17:23:42', 631, 6725); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:09:15', '15:17:39', '16:02:06', 627, 6726); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:09:18', '15:17:21', '15:23:17', 612, 6727); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:09:43', '15:11:40', '15:25:22', 627, 6728); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:09:59', '15:17:11', '15:21:58', 627, 6729); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:14:24', '15:17:25', '15:27:00', 631, 6730); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:14:37', '15:15:18', '15:27:41', 631, 6731); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:15:37', '15:17:42', '15:26:14', 631, 6732); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:17:03', '15:24:44', '16:52:21', 631, 6733); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:18:54', '15:23:18', '15:34:11', 612, 6734); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:19:17', '15:26:24', '16:40:58', 631, 6735); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:21:12', '15:26:15', '15:53:32', 631, 6736); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:22:54', '15:27:08', '15:33:41', 627, 6737); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:23:10', '15:34:12', '15:41:28', 612, 6738); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:24:03', '15:32:03', '16:04:47', 612, 6739); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:25:15', '15:34:13', '16:12:46', 612, 6740); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:25:59', '15:27:01', '15:46:46', 631, 6741); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:27:18', '15:31:46', '15:40:12', 627, 6742); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:29:13', '15:36:36', '16:35:58', 631, 6743); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:30:25', '15:39:03', '16:30:11', 631, 6744); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:33:27', '15:39:27', '16:01:44', 627, 6745); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:36:28', '15:39:41', '16:08:29', 627, 6746); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:38:30', '15:46:47', '16:30:15', 631, 6747); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:49:31', '15:51:01', '16:30:14', 631, 6748); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:51:36', '15:54:43', '15:59:35', 627, 6749); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '15:53:09', '15:53:32', '17:24:03', 631, 6750); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-08', '16:00:27', '16:01:54', '16:08:23', 627, 6751); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '08:58:00', '08:58:04', '09:02:13', 612, 6752); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '09:02:05', '09:02:10', '10:12:41', 612, 6753); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '09:07:10', '09:07:14', '10:29:56', 612, 6754); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '09:30:36', '09:30:40', '09:46:11', 627, 6755); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '09:31:01', '09:31:10', '10:11:07', 627, 6756); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '09:32:03', '09:32:11', '10:00:21', 627, 6757); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '09:41:01', '09:41:59', '10:17:22', 627, 6758); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '09:41:15', '09:41:18', '10:16:16', 631, 6759); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '09:41:37', '09:41:44', '11:13:41', 631, 6760); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '09:42:17', '09:42:49', '09:59:58', 631, 6761); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '09:42:33', '09:42:34', '09:52:56', 612, 6762); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '09:45:39', '09:46:11', '09:51:01', 627, 6763); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '09:52:58', '09:53:03', '10:16:31', 612, 6764); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '09:53:11', '09:53:19', '10:19:29', 631, 6765); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '09:56:39', '09:56:49', '10:21:36', 631, 6766); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '09:58:19', '09:59:22', '10:22:14', 631, 6767); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '09:59:55', '09:59:56', '10:54:42', 612, 6768); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:02:47', '10:02:47', '11:04:55', 631, 6769); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:06:12', '10:06:13', '11:08:37', 627, 6770); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:06:27', '10:06:33', '10:13:12', 627, 6771); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:11:28', '10:11:35', '10:26:00', 612, 6772); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:12:33', '10:12:41', '10:21:33', 612, 6773); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:15:34', '10:16:16', '11:16:54', 631, 6774); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:16:04', '10:16:32', '10:30:52', 612, 6775); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:16:08', '10:16:13', '10:21:14', 627, 6776); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:16:49', '10:17:49', '10:38:44', 612, 6777); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:17:09', '10:20:17', '11:26:07', 612, 6778); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:17:37', '10:21:33', '10:54:25', 612, 6779); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:18:17', '10:29:57', '10:40:34', 612, 6780); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:18:17', '10:19:04', '10:32:29', 631, 6781); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:19:00', '10:19:30', '11:12:25', 631, 6782); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:19:32', '10:21:36', '11:00:47', 631, 6783); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:19:56', '10:19:59', '10:37:49', 627, 6784); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:20:15', '10:20:16', '10:32:40', 627, 6785); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:20:42', '10:21:59', '11:32:18', 631, 6786); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:21:41', '10:26:00', '10:33:50', 612, 6787); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:22:45', '10:22:46', '10:25:56', 627, 6788); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:25:00', '10:30:53', '10:32:03', 612, 6789); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:25:11', '10:33:51', '10:51:32', 612, 6790); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:26:13', '10:26:14', '11:24:10', 627, 6791); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:26:40', '10:32:03', '11:19:23', 612, 6792); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:26:58', '10:27:03', '11:18:31', 631, 6793); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:31:48', '10:32:29', '11:20:42', 631, 6794); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:32:09', '10:32:18', '10:42:49', 627, 6795); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:33:16', '10:38:44', '10:54:42', 612, 6796); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:37:25', '10:40:34', '10:51:31', 612, 6797); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:41:52', '10:42:01', '10:56:55', 627, 6798); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:44:01', '10:44:10', '11:41:42', 627, 6799); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:46:36', '10:56:55', '11:33:18', 627, 6800); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:46:56', '10:49:01', '10:57:10', 627, 6801); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:51:16', '10:51:31', '11:28:17', 612, 6802); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:54:37', '10:54:42', '11:36:49', 612, 6803); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:56:55', '10:57:04', '11:10:39', 612, 6804); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '10:59:33', '11:00:47', '11:32:40', 631, 6805); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:03:15', '11:03:16', '11:30:40', 612, 6806); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:03:19', '11:03:22', '11:10:31', 627, 6807); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:04:42', '11:04:56', '12:06:48', 631, 6808); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:05:48', '11:06:03', '12:37:27', 612, 6809); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:10:03', '11:10:31', '11:25:34', 627, 6810); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:10:44', '11:11:26', '11:17:22', 627, 6811); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:12:00', '11:12:25', '11:35:25', 631, 6812); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:14:24', '11:17:22', '11:51:36', 627, 6813); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:14:58', '11:15:39', '11:42:01', 627, 6814); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:15:44', '11:24:11', '11:29:01', 627, 6815); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:17:41', '11:18:31', '11:50:06', 631, 6816); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:19:04', '11:19:24', '12:15:42', 612, 6817); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:19:45', '11:20:42', '11:40:31', 631, 6818); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:20:40', '11:25:34', '11:34:09', 627, 6819); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:20:53', '11:26:07', '12:19:16', 612, 6820); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:21:36', '11:21:42', '11:28:08', 612, 6821); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:22:40', '11:28:17', '11:54:51', 612, 6822); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:23:27', '11:24:57', '12:03:28', 631, 6823); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:24:08', '11:30:41', '11:35:00', 612, 6824); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:24:48', '11:29:01', '11:48:02', 627, 6825); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:25:09', '11:34:09', '11:46:15', 627, 6826); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:26:08', '11:35:01', '12:00:57', 612, 6827); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:26:22', '11:30:41', '11:38:04', 627, 6828); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:26:55', '11:31:58', '11:58:53', 631, 6829); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:27:05', '11:33:18', '11:52:10', 627, 6830); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:30:03', '11:32:18', '12:14:13', 631, 6831); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:30:52', '11:32:41', '11:53:43', 631, 6832); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:30:58', '11:32:26', '11:37:17', 627, 6833); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:31:36', '11:35:25', '11:42:44', 631, 6834); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:31:45', '11:36:50', '13:35:57', 612, 6835); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:32:21', '11:37:17', '11:43:28', 627, 6836); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:34:14', '11:34:21', '11:47:07', 612, 6837); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:35:15', '11:38:04', '11:43:18', 627, 6838); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:36:58', '11:41:43', '12:09:27', 627, 6839); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:37:09', '11:40:31', '11:59:12', 631, 6840); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:37:44', '11:42:45', '12:01:21', 631, 6841); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:38:38', '11:59:12', '12:03:54', 631, 6842); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:39:41', '11:40:02', '11:54:49', 627, 6843); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:40:37', '11:50:07', '12:05:38', 631, 6844); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:45:04', '11:45:05', '12:01:01', 612, 6845); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:45:26', '11:52:11', '12:05:50', 627, 6846); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:48:43', '11:53:43', '12:22:01', 631, 6847); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:49:55', '11:51:28', '12:20:24', 627, 6848); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:50:24', '12:03:55', '12:30:16', 631, 6849); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:50:49', '11:58:53', '12:32:54', 631, 6850); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:51:34', '11:51:40', '12:43:42', 627, 6851); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:54:39', '11:54:51', '12:11:00', 612, 6852); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '11:58:40', '11:58:50', '12:05:53', 612, 6853); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:00:51', '12:00:58', '12:39:14', 612, 6854); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:01:07', '12:01:22', '12:38:19', 631, 6855); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:01:32', '12:04:02', '12:36:10', 631, 6856); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:01:51', '12:08:05', '12:16:19', 627, 6857); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:02:27', '12:05:54', '12:07:46', 631, 6858); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:02:50', '12:06:49', '12:29:09', 631, 6859); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:03:12', '12:07:46', '12:28:20', 631, 6860); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:03:51', '12:05:50', '12:24:06', 627, 6861); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:04:42', '12:14:13', '12:18:18', 631, 6862); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:05:36', '12:05:54', '12:24:33', 612, 6863); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:05:56', '12:08:12', '12:20:24', 627, 6864); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:06:16', '12:09:27', '12:30:00', 627, 6865); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:06:33', '12:16:19', '13:24:33', 627, 6866); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:06:35', '12:11:00', '12:24:59', 612, 6867); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:08:49', '12:09:00', '12:37:01', 627, 6868); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:09:01', '12:09:09', '12:10:09', 612, 6869); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:15:11', '12:22:01', '12:29:38', 631, 6870); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:15:34', '12:15:43', '12:50:37', 612, 6871); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:15:37', '12:18:18', '12:28:08', 631, 6872); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:19:05', '12:20:24', '12:22:38', 627, 6873); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:19:08', '12:19:16', '12:55:34', 612, 6874); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:20:00', '12:25:00', '12:52:37', 612, 6875); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:21:33', '12:21:40', '13:16:08', 627, 6876); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:22:39', '12:28:08', '12:52:06', 631, 6877); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:23:22', '12:24:06', '12:35:26', 627, 6878); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:23:26', '12:28:20', '13:21:35', 631, 6879); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:25:08', '12:29:10', '12:39:35', 631, 6880); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:27:45', '12:32:54', '12:47:56', 631, 6881); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:28:24', '12:30:16', '12:56:11', 631, 6882); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:31:00', '12:31:04', '12:32:20', 612, 6883); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:31:16', '12:32:36', '12:43:59', 612, 6884); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:31:16', '12:36:11', '13:24:09', 631, 6885); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:31:28', '12:37:01', '13:24:39', 627, 6886); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:33:02', '12:38:20', '13:09:31', 631, 6887); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:33:37', '12:39:35', '12:43:09', 631, 6888); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:34:39', '12:35:26', '13:03:06', 627, 6889); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:35:16', '12:35:23', '12:46:29', 612, 6890); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:36:01', '12:43:09', '13:16:44', 631, 6891); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:37:21', '12:37:27', '12:52:25', 612, 6892); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:39:07', '12:39:14', '14:00:49', 612, 6893); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:40:09', '12:47:56', '13:21:46', 631, 6894); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:42:59', '12:43:01', '13:08:14', 627, 6895); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:43:53', '12:51:42', '13:21:17', 631, 6896); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:45:17', '12:48:14', '12:51:22', 627, 6897); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:46:03', '12:46:29', '12:48:42', 612, 6898); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:47:36', '12:48:06', '12:53:56', 612, 6899); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:48:18', '12:52:06', '12:55:52', 631, 6900); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:49:34', '12:50:37', '13:00:57', 612, 6901); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:50:14', '12:55:52', '12:59:08', 631, 6902); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:50:32', '12:52:26', '13:34:34', 612, 6903); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:51:01', '12:59:08', '14:31:21', 631, 6904); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:51:05', '12:52:37', '13:21:45', 612, 6905); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:51:46', '12:55:34', '13:54:16', 612, 6906); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:55:16', '13:00:57', '13:02:40', 612, 6907); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:55:33', '12:56:11', '13:02:18', 631, 6908); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:56:30', '13:02:40', '13:23:19', 612, 6909); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '12:58:35', '12:58:56', '13:39:42', 627, 6910); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:01:31', '13:02:18', '13:15:25', 631, 6911); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:02:32', '13:08:14', '13:22:23', 627, 6912); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:05:45', '13:07:30', '13:14:06', 612, 6913); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:07:56', '13:16:09', '13:48:15', 627, 6914); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:10:53', '13:22:23', '13:52:39', 627, 6915); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:11:55', '13:24:33', '13:30:55', 627, 6916); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:14:40', '13:14:41', '13:16:11', 612, 6917); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:14:47', '13:15:25', '13:37:43', 631, 6918); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:15:07', '13:15:13', '13:44:32', 631, 6919); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:15:10', '13:18:35', '13:58:46', 627, 6920); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:15:50', '13:21:17', '13:28:29', 631, 6921); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:17:37', '13:21:35', '13:23:18', 631, 6922); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:18:09', '13:24:39', '13:29:58', 627, 6923); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:19:56', '13:21:47', '13:36:25', 631, 6924); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:20:20', '13:23:19', '13:25:22', 631, 6925); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:20:55', '13:21:02', '13:43:46', 612, 6926); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:20:57', '13:24:09', '13:48:59', 631, 6927); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:21:31', '13:21:45', '13:41:39', 612, 6928); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:21:54', '13:25:23', '14:31:50', 631, 6929); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:22:05', '13:27:21', '13:31:10', 627, 6930); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:22:06', '13:23:19', '13:28:12', 612, 6931); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:22:12', '13:26:39', '13:33:41', 631, 6932); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:25:26', '13:28:12', '13:54:18', 612, 6933); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:27:34', '13:29:58', '13:53:41', 627, 6934); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:27:39', '13:28:29', '14:21:01', 631, 6935); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:30:23', '13:33:41', '13:44:12', 631, 6936); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:33:44', '13:35:57', '13:49:03', 612, 6937); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:34:26', '13:34:34', '14:00:57', 612, 6938); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:34:41', '13:41:39', '13:48:50', 612, 6939); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:35:59', '13:36:25', '13:42:43', 631, 6940); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:37:12', '13:37:43', '14:12:04', 631, 6941); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:37:34', '13:42:44', '13:50:21', 631, 6942); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:40:07', '13:44:13', '14:11:17', 631, 6943); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:41:15', '13:41:22', '13:44:21', 627, 6944); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:41:17', '13:44:33', '14:02:20', 631, 6945); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:44:34', '13:48:51', '14:21:58', 612, 6946); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:46:21', '13:49:03', '14:35:24', 612, 6947); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:46:56', '13:48:48', '13:59:02', 627, 6948); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:47:13', '13:54:16', '14:23:54', 612, 6949); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:48:11', '13:49:00', '14:11:45', 631, 6950); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:48:27', '13:52:39', '14:23:07', 627, 6951); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:48:53', '13:57:56', '14:12:36', 627, 6952); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:50:00', '13:54:19', '14:14:16', 612, 6953); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:50:13', '13:50:22', '14:05:58', 631, 6954); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:53:24', '14:02:21', '15:37:08', 631, 6955); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:53:41', '14:00:57', '14:31:40', 612, 6956); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:54:53', '13:59:02', '14:12:17', 627, 6957); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:57:33', '14:04:17', '14:06:15', 627, 6958); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:58:38', '13:58:46', '14:00:56', 627, 6959); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:59:17', '14:00:57', '14:26:04', 627, 6960); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:59:31', '14:00:49', '14:45:17', 612, 6961); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '13:59:39', '14:06:16', '14:32:56', 627, 6962); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:00:44', '14:06:25', '15:05:33', 627, 6963); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:01:05', '14:05:59', '14:21:02', 631, 6964); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:07:58', '14:12:34', '14:46:41', 627, 6965); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:08:10', '14:08:16', '14:16:59', 627, 6966); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:10:45', '14:12:36', '14:15:23', 627, 6967); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:10:51', '14:11:18', '15:26:47', 631, 6968); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:11:04', '14:11:46', '14:43:54', 631, 6969); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:11:16', '14:12:04', '14:25:25', 631, 6970); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:11:20', '14:12:17', '14:34:29', 627, 6971); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:12:03', '14:14:17', '14:21:36', 612, 6972); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:15:54', '14:23:07', '14:32:03', 627, 6973); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:16:14', '14:17:00', '14:26:13', 627, 6974); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:17:30', '14:21:37', '14:47:49', 612, 6975); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:18:52', '14:21:58', '14:51:16', 612, 6976); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:19:30', '14:21:01', '14:57:05', 631, 6977); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:23:02', '14:25:25', '14:38:49', 631, 6978); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:23:47', '14:23:54', '14:36:57', 612, 6979); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:24:36', '14:32:57', '14:57:14', 627, 6980); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:25:44', '14:26:13', '14:37:07', 627, 6981); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:26:17', '14:26:23', '14:39:22', 631, 6982); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:27:34', '14:31:40', '15:00:10', 612, 6983); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:28:10', '14:35:24', '15:46:37', 612, 6984); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:29:19', '14:31:21', '15:09:26', 631, 6985); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:30:53', '14:31:50', '14:55:42', 631, 6986); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:31:29', '14:39:22', '15:03:33', 631, 6987); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:33:06', '14:34:29', '14:59:12', 627, 6988); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:33:18', '14:36:57', '14:40:28', 612, 6989); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:33:39', '14:33:47', '14:36:24', 612, 6990); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:35:40', '14:37:08', '14:54:20', 627, 6991); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:37:27', '14:38:50', '15:02:19', 631, 6992); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:37:51', '14:37:58', '14:42:00', 627, 6993); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:38:37', '14:38:47', '14:51:25', 612, 6994); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:39:00', '14:42:00', '15:49:43', 627, 6995); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:39:20', '14:39:28', '14:44:01', 612, 6996); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:40:20', '14:40:28', '15:02:15', 612, 6997); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:42:18', '14:46:41', '14:58:46', 627, 6998); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:42:54', '14:43:54', '14:51:12', 631, 6999); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:43:46', '14:51:12', '15:07:29', 631, 7000); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:44:20', '14:49:33', '15:03:33', 627, 7001); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:45:06', '14:45:17', '15:06:27', 612, 7002); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:45:08', '14:46:41', '15:21:17', 627, 7003); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:46:36', '14:47:49', '15:22:01', 612, 7004); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:47:20', '14:55:48', '15:19:10', 627, 7005); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:50:20', '14:55:43', '15:10:36', 631, 7006); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:51:00', '14:51:16', '15:11:44', 612, 7007); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:52:04', '14:52:05', '14:58:13', 612, 7008); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:53:08', '14:54:20', '15:32:57', 627, 7009); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:53:10', '14:57:05', '15:20:35', 631, 7010); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:53:33', '14:57:14', '15:11:32', 627, 7011); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:55:53', '15:03:33', '15:22:06', 631, 7012); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:56:45', '15:06:27', '16:18:37', 612, 7013); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:57:12', '15:11:45', '15:16:14', 612, 7014); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:58:18', '14:59:12', '15:06:26', 627, 7015); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:58:33', '14:58:37', '15:04:40', 612, 7016); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '14:59:37', '15:03:33', '15:15:39', 627, 7017); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:00:04', '15:00:10', '15:23:20', 612, 7018); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:00:35', '15:16:14', '15:32:46', 612, 7019); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:00:38', '15:07:29', '15:13:42', 631, 7020); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:00:55', '15:02:15', '15:26:05', 612, 7021); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:01:10', '15:02:20', '15:27:23', 631, 7022); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:01:19', '15:06:52', '15:15:46', 627, 7023); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:04:07', '15:09:26', '15:15:17', 631, 7024); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:04:41', '15:10:36', '15:27:57', 631, 7025); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:04:52', '15:05:34', '15:31:29', 627, 7026); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:06:04', '15:13:42', '15:21:30', 631, 7027); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:08:48', '15:15:17', '15:27:34', 631, 7028); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:10:10', '15:21:23', '15:57:54', 631, 7029); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:10:37', '15:21:30', '15:32:35', 631, 7030); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:11:09', '15:22:02', '15:37:20', 612, 7031); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:11:44', '15:23:04', '15:40:55', 631, 7032); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:12:20', '15:26:48', '15:38:07', 631, 7033); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:12:52', '15:27:35', '16:16:06', 631, 7034); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:13:50', '15:27:57', '15:46:15', 631, 7035); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:14:46', '15:32:35', '15:44:07', 631, 7036); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:15:59', '15:37:08', '15:42:25', 631, 7037); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:16:57', '15:31:29', '15:54:25', 612, 7038); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:17:42', '15:17:50', '15:27:47', 627, 7039); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:19:17', '15:19:48', '15:24:47', 627, 7040); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:20:18', '15:20:29', '15:45:03', 612, 7041); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:20:54', '15:32:46', '15:35:38', 612, 7042); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:21:45', '15:23:55', '15:31:29', 612, 7043); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:22:41', '15:35:38', '15:47:19', 612, 7044); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:24:19', '15:24:23', '15:30:42', 627, 7045); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:24:54', '15:26:05', '15:36:11', 612, 7046); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:25:49', '15:27:47', '15:43:03', 627, 7047); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:25:55', '15:38:08', '16:23:22', 631, 7048); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:26:52', '15:27:24', '15:33:29', 631, 7049); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:27:16', '15:37:20', '16:41:31', 612, 7050); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:27:37', '15:36:12', '15:47:45', 612, 7051); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:29:04', '15:30:26', '15:41:41', 612, 7052); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:29:05', '15:30:39', '16:02:12', 627, 7053); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:31:52', '15:40:55', '16:32:29', 631, 7054); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:32:15', '15:33:29', '15:39:01', 631, 7055); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:32:47', '15:32:57', '16:00:31', 627, 7056); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:32:53', '15:46:38', '16:06:27', 612, 7057); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:33:16', '15:33:49', '15:41:21', 627, 7058); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:33:43', '15:47:45', '16:36:50', 612, 7059); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:34:35', '15:39:02', '15:43:28', 631, 7060); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:37:18', '15:38:36', '15:39:40', 627, 7061); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:38:01', '15:42:25', '16:38:54', 631, 7062); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:39:45', '15:43:29', '16:05:12', 631, 7063); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:43:37', '15:43:37', '15:51:56', 627, 7064); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:43:46', '15:44:25', '17:01:21', 631, 7065); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:44:58', '15:45:02', '16:41:34', 612, 7066); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:45:35', '15:46:15', '16:00:06', 631, 7067); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:45:52', '15:47:19', '16:41:35', 612, 7068); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:46:23', '15:46:24', '15:55:33', 627, 7069); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:46:49', '15:47:40', '16:00:28', 627, 7070); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:48:31', '15:48:34', '16:26:31', 612, 7071); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:51:06', '15:51:56', '16:04:47', 627, 7072); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:54:01', '15:54:25', '16:41:32', 612, 7073); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:54:35', '15:54:49', '16:03:51', 627, 7074); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-12', '15:56:58', '15:57:55', '16:14:36', 631, 7075); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '08:57:43', '08:59:47', '09:43:40', 612, 7076); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '08:59:29', '09:00:08', '09:28:02', 612, 7077); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:00:36', '09:10:05', '09:21:20', 612, 7078); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:01:25', '09:01:28', '09:08:51', 627, 7079); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:01:34', '09:02:18', '10:05:56', 612, 7080); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:02:14', '09:07:36', '09:25:47', 627, 7081); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:02:37', '09:04:35', '09:15:00', 631, 7082); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:02:54', '09:03:01', '10:36:56', 627, 7083); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:03:17', '09:03:24', '09:15:35', 627, 7084); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:03:27', '09:06:22', '09:37:28', 627, 7085); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:03:58', '09:04:06', '09:29:17', 627, 7086); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:07:19', '09:08:07', '10:15:15', 612, 7087); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:07:41', '09:09:14', '10:04:02', 612, 7088); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:15:16', '09:15:33', '09:55:07', 612, 7089); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:15:27', '09:15:31', '09:57:00', 631, 7090); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:17:16', '09:21:20', '09:51:33', 612, 7091); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:18:42', '09:18:46', '09:24:11', 627, 7092); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:26:07', '09:26:39', '10:57:19', 631, 7093); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:27:40', '09:27:48', '09:50:46', 627, 7094); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:28:47', '09:28:54', '10:05:51', 627, 7095); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:30:11', '09:51:34', '09:54:05', 612, 7096); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:35:38', '09:35:41', '09:52:31', 631, 7097); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:36:55', '09:37:28', '11:13:25', 627, 7098); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:41:11', '09:54:05', '10:07:51', 612, 7099); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:41:56', '09:42:03', '10:07:03', 627, 7100); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:42:25', '09:42:33', '10:07:43', 612, 7101); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:43:09', '09:43:40', '11:11:22', 612, 7102); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:50:36', '09:51:01', '10:17:06', 631, 7103); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:51:28', '09:52:31', '10:25:08', 631, 7104); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:55:02', '09:55:07', '11:05:13', 612, 7105); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:55:42', '10:04:03', '10:49:15', 612, 7106); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:59:36', '09:59:40', '10:26:16', 627, 7107); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '09:59:55', '10:07:03', '10:22:19', 627, 7108); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:02:45', '10:03:10', '10:07:25', 627, 7109); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:03:23', '10:05:57', '10:31:41', 612, 7110); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:04:56', '10:05:51', '10:21:11', 627, 7111); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:08:09', '10:08:22', '10:24:35', 627, 7112); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:09:20', '10:09:20', '10:29:48', 612, 7113); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:10:15', '10:15:15', '10:51:12', 612, 7114); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:14:42', '10:14:52', '10:42:54', 631, 7115); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:16:54', '10:17:06', '10:30:54', 631, 7116); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:20:51', '10:21:12', '14:01:50', 627, 7117); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:24:20', '10:24:35', '11:16:23', 627, 7118); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:24:58', '10:25:08', '10:32:42', 631, 7119); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:25:51', '10:29:06', '10:43:01', 631, 7120); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:27:21', '10:30:54', '10:53:42', 631, 7121); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:29:29', '10:29:49', '11:31:33', 612, 7122); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:30:44', '10:31:41', '11:17:38', 612, 7123); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:30:51', '10:32:42', '11:46:41', 631, 7124); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:32:06', '10:32:07', '10:40:20', 627, 7125); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:35:05', '10:44:57', '11:05:53', 631, 7126); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:38:10', '10:42:54', '11:10:58', 631, 7127); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:40:55', '10:40:58', '10:50:06', 627, 7128); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:41:16', '10:41:21', '10:47:53', 627, 7129); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:42:04', '10:43:02', '10:44:53', 631, 7130); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:42:09', '10:42:54', '10:45:39', 627, 7131); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:43:05', '10:44:49', '10:50:01', 627, 7132); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:46:16', '10:49:15', '12:27:29', 612, 7133); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:51:23', '10:51:34', '11:08:39', 612, 7134); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:53:18', '10:53:42', '12:14:09', 631, 7135); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:56:14', '10:57:20', '11:53:48', 631, 7136); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '10:57:09', '11:05:53', '11:21:03', 631, 7137); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:03:48', '11:05:13', '11:25:55', 612, 7138); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:05:06', '11:05:53', '11:47:58', 631, 7139); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:05:36', '11:10:58', '11:21:49', 631, 7140); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:07:38', '11:08:39', '11:29:42', 612, 7141); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:08:43', '11:11:22', '11:20:48', 612, 7142); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:10:37', '11:13:25', '12:18:12', 627, 7143); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:12:17', '11:17:39', '12:00:06', 612, 7144); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:14:46', '11:14:51', '11:37:43', 612, 7145); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:15:18', '11:17:13', '11:50:34', 627, 7146); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:15:35', '11:21:04', '11:30:54', 631, 7147); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:16:34', '11:16:34', '11:26:58', 627, 7148); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:17:22', '11:20:49', '11:53:53', 612, 7149); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:20:13', '11:21:50', '11:54:26', 631, 7150); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:23:42', '11:23:42', '11:34:49', 627, 7151); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:25:47', '11:25:55', '11:38:17', 612, 7152); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:26:18', '11:26:21', '12:27:15', 627, 7153); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:28:18', '11:29:25', '11:45:25', 627, 7154); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:29:34', '11:29:42', '11:47:22', 612, 7155); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:30:18', '11:31:34', '12:00:53', 612, 7156); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:30:39', '11:30:40', '11:36:40', 627, 7157); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:31:21', '11:35:56', '11:44:20', 631, 7158); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:33:57', '11:43:22', '12:23:56', 631, 7159); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:35:17', '11:35:19', '11:48:08', 627, 7160); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:35:36', '11:35:43', '11:49:31', 612, 7161); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:38:11', '11:38:18', '12:29:27', 612, 7162); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:40:58', '11:44:20', '11:49:15', 631, 7163); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:41:35', '11:47:22', '12:22:58', 612, 7164); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:41:35', '11:46:42', '12:35:44', 631, 7165); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:42:45', '11:47:58', '12:24:16', 631, 7166); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:43:25', '11:49:15', '11:53:09', 631, 7167); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:44:03', '11:53:09', '13:55:23', 631, 7168); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:44:37', '11:54:40', '11:59:18', 631, 7169); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:47:36', '11:47:40', '11:53:26', 627, 7170); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:49:34', '11:50:34', '11:58:25', 627, 7171); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:50:20', '11:50:24', '12:16:41', 612, 7172); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:51:27', '11:54:26', '12:06:49', 631, 7173); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:52:29', '11:53:53', '12:16:02', 612, 7174); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:56:35', '11:59:18', '12:25:39', 631, 7175); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:57:59', '11:58:02', '12:09:56', 627, 7176); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '11:59:05', '12:00:06', '12:39:41', 612, 7177); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:01:12', '12:25:39', '12:30:59', 631, 7178); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:05:49', '12:06:49', '12:22:50', 631, 7179); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:06:19', '12:30:59', '12:49:45', 631, 7180); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:10:11', '12:10:17', '12:14:50', 627, 7181); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:12:00', '12:14:09', '12:31:39', 631, 7182); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:15:14', '12:22:50', '12:51:50', 631, 7183); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:16:07', '12:16:14', '12:26:04', 612, 7184); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:17:53', '12:18:12', '13:25:46', 627, 7185); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:19:17', '12:23:57', '13:23:10', 631, 7186); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:19:52', '12:19:57', '12:43:07', 627, 7187); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:20:23', '12:20:31', '12:31:08', 627, 7188); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:21:33', '12:22:58', '12:29:06', 612, 7189); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:21:45', '12:24:16', '12:37:32', 631, 7190); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:24:13', '12:25:50', '12:32:21', 627, 7191); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:25:03', '12:26:04', '12:33:58', 612, 7192); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:26:33', '12:29:06', '13:14:44', 612, 7193); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:27:22', '12:27:29', '12:34:38', 612, 7194); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:27:45', '12:29:27', '12:35:21', 612, 7195); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:28:20', '12:28:27', '12:40:56', 627, 7196); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:28:40', '12:31:39', '12:48:56', 631, 7197); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:33:01', '12:33:58', '13:06:16', 612, 7198); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:34:01', '12:35:44', '12:46:01', 631, 7199); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:34:31', '12:34:39', '12:36:09', 612, 7200); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:35:12', '12:35:21', '12:58:20', 612, 7201); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:36:02', '12:36:09', '13:14:44', 612, 7202); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:37:13', '12:37:32', '13:10:05', 631, 7203); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:37:47', '12:46:01', '12:58:16', 631, 7204); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:38:12', '12:39:42', '13:11:31', 612, 7205); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:39:39', '12:40:56', '12:49:07', 627, 7206); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:39:57', '12:42:25', '12:49:40', 627, 7207); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:40:36', '12:42:34', '12:50:28', 627, 7208); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:45:12', '12:45:22', '12:52:23', 627, 7209); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:47:41', '12:47:52', '12:58:50', 627, 7210); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:48:20', '12:48:57', '13:29:44', 631, 7211); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:48:58', '12:49:45', '12:57:41', 631, 7212); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:49:14', '12:49:26', '12:52:47', 627, 7213); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:50:27', '12:50:37', '13:04:48', 627, 7214); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:50:56', '12:52:23', '13:11:39', 627, 7215); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:51:49', '12:51:50', '13:09:36', 631, 7216); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:54:09', '12:54:19', '12:58:58', 627, 7217); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:54:30', '12:58:16', '13:02:51', 631, 7218); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:56:32', '12:57:42', '13:29:49', 631, 7219); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '12:58:30', '12:58:31', '13:14:41', 612, 7220); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:00:45', '13:02:51', '14:02:18', 631, 7221); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:02:31', '13:09:36', '13:22:51', 631, 7222); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:03:22', '13:03:27', '13:11:12', 627, 7223); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:03:47', '13:04:48', '13:10:17', 627, 7224); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:05:08', '13:10:05', '13:17:41', 631, 7225); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:05:23', '13:05:32', '13:09:35', 612, 7226); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:06:06', '13:06:16', '15:11:20', 612, 7227); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:06:21', '13:07:48', '13:17:58', 627, 7228); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:07:44', '13:17:42', '13:22:07', 631, 7229); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:13:09', '13:22:08', '14:46:18', 631, 7230); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:13:42', '13:22:51', '14:47:48', 631, 7231); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:15:07', '13:15:08', '13:37:39', 612, 7232); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:15:11', '13:24:31', '13:36:45', 631, 7233); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:18:41', '13:18:56', '13:32:06', 612, 7234); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:19:51', '13:29:49', '16:15:06', 631, 7235); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:20:06', '13:20:13', '13:52:17', 612, 7236); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:20:16', '13:29:44', '13:34:32', 631, 7237); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:20:37', '13:20:42', '13:27:08', 612, 7238); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:20:53', '13:21:02', '13:37:24', 612, 7239); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:21:14', '13:23:51', '13:38:52', 612, 7240); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:21:45', '13:23:11', '13:24:30', 631, 7241); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:22:35', '13:22:48', '13:56:32', 612, 7242); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:24:56', '13:25:46', '13:38:06', 627, 7243); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:25:56', '13:27:08', '14:01:43', 612, 7244); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:26:15', '13:26:18', '13:48:09', 627, 7245); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:27:12', '13:34:33', '13:51:27', 631, 7246); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:27:14', '13:37:40', '13:46:35', 612, 7247); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:27:25', '13:27:32', '13:38:06', 627, 7248); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:27:41', '13:36:45', '14:12:46', 631, 7249); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:28:12', '13:38:53', '13:46:03', 612, 7250); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:31:27', '13:46:03', '14:21:09', 612, 7251); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:33:20', '13:46:35', '13:55:22', 612, 7252); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:34:18', '13:52:18', '14:11:53', 612, 7253); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:34:33', '13:34:34', '13:42:53', 627, 7254); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:34:48', '13:38:06', '14:02:45', 627, 7255); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:35:01', '13:55:22', '14:05:58', 612, 7256); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:35:56', '13:56:33', '14:30:54', 612, 7257); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:42:35', '13:42:46', '14:05:58', 627, 7258); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:45:06', '13:53:15', '14:06:56', 627, 7259); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:47:03', '14:01:43', '14:08:25', 612, 7260); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:47:27', '13:51:27', '14:11:30', 631, 7261); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:50:10', '13:55:23', '14:22:56', 631, 7262); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:50:23', '14:05:58', '14:08:08', 612, 7263); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:52:36', '14:08:08', '15:11:25', 612, 7264); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:52:47', '13:52:50', '14:13:31', 627, 7265); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:52:52', '14:02:18', '14:09:51', 631, 7266); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:53:10', '13:53:29', '13:59:05', 627, 7267); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:56:15', '13:56:24', '14:02:29', 612, 7268); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '13:58:51', '13:59:05', '14:03:30', 627, 7269); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:00:31', '14:01:54', '14:16:45', 627, 7270); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:00:49', '14:09:51', '14:21:04', 631, 7271); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:01:33', '14:08:25', '14:49:12', 612, 7272); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:02:02', '14:02:45', '14:14:34', 627, 7273); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:02:51', '14:09:32', '14:12:30', 612, 7274); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:02:51', '14:14:07', '14:24:48', 631, 7275); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:05:56', '14:06:01', '14:41:43', 627, 7276); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:07:47', '14:16:45', '15:08:16', 627, 7277); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:10:05', '14:11:25', '14:14:07', 627, 7278); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:10:41', '14:11:30', '14:26:30', 631, 7279); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:10:57', '14:12:30', '14:17:07', 612, 7280); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:11:15', '14:12:51', '14:14:07', 631, 7281); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:13:53', '14:29:41', '15:07:28', 627, 7282); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:14:04', '14:14:34', '14:29:41', 627, 7283); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:14:29', '14:21:04', '14:33:31', 631, 7284); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:16:20', '14:17:07', '14:33:37', 612, 7285); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:16:59', '14:18:08', '14:36:32', 612, 7286); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:16:59', '14:17:08', '14:39:12', 627, 7287); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:19:16', '14:25:13', '15:13:11', 631, 7288); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:20:57', '14:21:09', '14:30:02', 612, 7289); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:21:07', '14:22:56', '14:26:50', 631, 7290); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:22:22', '14:33:37', '14:42:41', 612, 7291); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:22:39', '14:24:15', '15:16:22', 627, 7292); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:24:02', '14:30:02', '14:50:32', 612, 7293); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:25:39', '14:26:30', '14:53:24', 631, 7294); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:26:17', '14:26:50', '14:35:55', 631, 7295); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:27:29', '14:33:31', '14:59:31', 631, 7296); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:28:26', '14:35:55', '14:51:38', 631, 7297); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:29:54', '14:30:54', '14:44:03', 612, 7298); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:33:36', '14:38:11', '14:58:51', 627, 7299); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:34:45', '14:39:14', '14:46:32', 627, 7300); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:35:52', '14:41:43', '14:54:24', 627, 7301); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:35:57', '14:36:32', '15:04:41', 612, 7302); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:37:29', '14:44:03', '15:02:38', 627, 7303); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:37:48', '14:42:41', '15:03:49', 612, 7304); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:38:00', '14:46:19', '15:14:43', 631, 7305); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:39:18', '14:47:48', '15:19:42', 631, 7306); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:43:19', '14:44:03', '14:45:54', 612, 7307); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:44:48', '14:45:54', '15:09:30', 612, 7308); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:45:05', '14:49:13', '15:08:29', 612, 7309); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:45:44', '14:51:39', '14:55:13', 631, 7310); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:45:46', '14:45:52', '15:00:25', 627, 7311); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:46:30', '14:53:25', '15:08:02', 631, 7312); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:47:00', '14:55:13', '15:23:38', 631, 7313); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:47:49', '14:59:31', '15:20:08', 631, 7314); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:48:19', '14:50:32', '15:08:46', 612, 7315); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:48:37', '14:48:40', '15:08:09', 612, 7316); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:50:07', '14:50:43', '15:09:39', 627, 7317); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:50:59', '15:08:03', '15:27:07', 631, 7318); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:53:22', '14:54:25', '15:25:04', 627, 7319); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:53:44', '15:13:11', '15:21:32', 631, 7320); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:55:02', '14:58:11', '15:23:51', 627, 7321); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '14:58:58', '15:00:25', '15:09:29', 627, 7322); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:03:56', '15:19:42', '17:00:20', 631, 7323); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:04:28', '15:04:41', '15:35:23', 612, 7324); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:05:23', '15:20:09', '15:26:42', 631, 7325); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:05:28', '15:09:29', '15:26:58', 627, 7326); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:05:47', '15:10:30', '15:46:11', 627, 7327); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:06:21', '15:15:30', '15:28:17', 627, 7328); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:06:38', '15:07:28', '15:12:59', 627, 7329); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:06:52', '15:08:29', '15:27:29', 612, 7330); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:07:05', '15:08:18', '16:08:41', 627, 7331); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:07:37', '15:08:47', '15:10:15', 612, 7332); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:07:49', '15:07:55', '15:26:12', 612, 7333); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:07:56', '15:21:32', '15:42:19', 631, 7334); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:08:24', '15:23:38', '15:37:04', 631, 7335); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:10:06', '15:10:15', '15:55:22', 612, 7336); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:10:35', '15:11:20', '15:17:28', 612, 7337); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:10:59', '15:11:01', '15:44:33', 627, 7338); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:11:00', '15:26:42', '16:00:06', 631, 7339); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:11:20', '15:11:23', '15:21:44', 612, 7340); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:12:39', '15:13:00', '15:40:47', 627, 7341); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:13:04', '15:13:18', '15:29:11', 612, 7342); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:14:16', '15:17:28', '15:21:05', 612, 7343); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:20:50', '15:27:07', '15:47:15', 631, 7344); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:20:51', '15:21:05', '15:31:23', 612, 7345); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:21:21', '15:27:30', '15:37:53', 612, 7346); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:21:41', '15:21:45', '15:45:19', 612, 7347); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:26:56', '15:29:11', '15:56:27', 612, 7348); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:28:05', '15:28:10', '15:38:33', 627, 7349); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:28:29', '15:30:32', '16:06:50', 627, 7350); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:28:58', '15:31:24', '15:37:56', 612, 7351); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:31:20', '15:35:23', '15:45:38', 612, 7352); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:31:31', '15:34:55', '15:58:19', 627, 7353); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:32:41', '15:37:04', '16:04:14', 631, 7354); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:32:55', '15:42:19', '16:02:37', 631, 7355); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:34:18', '15:38:33', '16:01:03', 627, 7356); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:34:21', '15:47:15', '16:06:51', 631, 7357); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:34:46', '16:00:07', '17:11:44', 631, 7358); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:36:28', '15:45:12', '15:57:33', 627, 7359); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:36:41', '15:37:53', '15:54:41', 612, 7360); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:37:12', '15:37:57', '15:55:45', 612, 7361); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:38:10', '16:02:37', '17:00:17', 631, 7362); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:39:23', '15:45:20', '15:55:23', 612, 7363); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:39:37', '15:40:51', '15:48:09', 627, 7364); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:41:47', '15:46:11', '15:59:24', 627, 7365); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:45:50', '15:47:15', '15:57:43', 627, 7366); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:46:16', '15:48:27', '16:01:27', 627, 7367); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:46:23', '16:04:14', '17:00:17', 631, 7368); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:47:41', '15:48:09', '16:01:50', 627, 7369); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:48:57', '15:57:33', '16:05:45', 627, 7370); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:52:52', '16:06:52', '17:01:51', 631, 7371); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:55:03', '15:55:22', '16:08:27', 612, 7372); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:58:29', '15:59:25', '16:05:37', 627, 7373); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-13', '15:59:07', '16:01:05', '16:05:34', 627, 7374); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '08:56:54', '08:57:04', '10:44:53', 612, 7375); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:00:31', '09:00:41', '09:02:56', 627, 7376); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:01:35', '09:01:51', '09:10:17', 627, 7377); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:02:17', '09:02:21', '09:48:59', 627, 7378); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:02:24', '09:03:37', '09:11:25', 631, 7379); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:02:48', '09:11:25', '09:51:57', 631, 7380); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:08:56', '09:22:40', '09:27:39', 631, 7381); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:12:28', '09:12:42', '09:16:14', 612, 7382); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:17:48', '09:17:58', '09:48:38', 627, 7383); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:18:13', '09:27:39', '09:33:59', 631, 7384); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:18:32', '09:18:33', '10:45:17', 612, 7385); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:23:24', '09:23:28', '09:29:09', 612, 7386); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:24:25', '09:24:30', '09:34:28', 627, 7387); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:26:11', '09:33:59', '09:45:17', 631, 7388); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:27:57', '09:31:16', '10:44:45', 631, 7389); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:40:05', '09:45:17', '12:54:47', 631, 7390); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:41:44', '09:42:16', '10:00:05', 627, 7391); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:45:57', '09:51:57', '11:04:17', 631, 7392); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:46:14', '09:54:54', '10:17:33', 631, 7393); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:48:52', '09:49:00', '10:03:53', 627, 7394); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:51:45', '09:51:49', '10:24:10', 627, 7395); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:59:01', '09:59:03', '10:19:11', 612, 7396); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:59:15', '09:59:21', '10:12:03', 612, 7397); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:59:20', '09:59:22', '10:53:55', 627, 7398); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '09:59:55', '10:00:00', '10:36:07', 627, 7399); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:03:17', '10:03:19', '10:59:43', 631, 7400); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:17:03', '10:17:33', '10:38:33', 631, 7401); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:19:18', '10:24:26', '10:36:55', 631, 7402); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:25:19', '10:25:27', '10:36:16', 627, 7403); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:26:10', '10:29:26', '10:48:06', 627, 7404); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:28:14', '10:36:55', '12:09:47', 631, 7405); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:28:38', '10:28:43', '10:39:44', 612, 7406); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:30:26', '10:36:25', '11:49:57', 631, 7407); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:34:30', '10:36:08', '11:24:10', 627, 7408); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:36:53', '10:37:03', '10:49:50', 627, 7409); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:38:24', '10:38:27', '10:58:42', 627, 7410); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:42:06', '10:42:24', '12:30:03', 631, 7411); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:42:31', '10:44:53', '11:52:59', 612, 7412); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:42:40', '10:44:46', '10:51:09', 631, 7413); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:45:41', '10:45:58', '11:44:49', 612, 7414); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:49:15', '10:49:43', '11:10:23', 627, 7415); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:50:07', '10:50:08', '15:57:01', 627, 7416); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:50:22', '10:51:09', '10:59:08', 631, 7417); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:51:15', '10:51:24', '11:02:44', 627, 7418); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:54:02', '10:54:11', '11:08:18', 631, 7419); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:54:30', '10:59:44', '11:14:35', 631, 7420); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:55:48', '10:55:54', '11:00:21', 612, 7421); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '10:58:28', '10:59:08', '11:05:11', 631, 7422); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:04:54', '11:05:11', '11:10:12', 631, 7423); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:06:50', '11:10:24', '11:26:25', 627, 7424); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:08:30', '11:08:31', '11:27:35', 627, 7425); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:10:01', '11:10:12', '11:25:50', 631, 7426); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:11:54', '11:11:55', '11:32:28', 627, 7427); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:14:27', '11:14:36', '11:32:28', 631, 7428); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:15:11', '11:19:05', '11:34:28', 631, 7429); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:15:31', '11:15:43', '11:19:53', 612, 7430); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:21:57', '11:24:06', '11:30:18', 627, 7431); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:23:26', '11:26:04', '12:51:01', 631, 7432); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:23:33', '11:24:11', '11:37:51', 627, 7433); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:24:59', '11:27:35', '14:28:23', 627, 7434); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:25:37', '11:25:50', '12:51:15', 631, 7435); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:27:53', '11:27:55', '11:49:36', 627, 7436); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:28:19', '11:28:29', '11:32:11', 627, 7437); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:31:16', '11:31:26', '11:44:56', 612, 7438); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:32:51', '11:32:59', '12:18:22', 631, 7439); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:34:47', '11:37:51', '11:56:31', 627, 7440); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:38:52', '11:56:31', '12:37:23', 627, 7441); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:42:55', '11:43:02', '11:48:20', 612, 7442); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:44:07', '11:44:39', '11:50:53', 612, 7443); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:44:37', '11:44:49', '12:11:53', 612, 7444); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:45:02', '11:45:08', '12:00:40', 612, 7445); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:49:59', '11:49:59', '12:53:11', 631, 7446); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:50:37', '11:50:50', '12:26:50', 631, 7447); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:51:02', '11:51:10', '12:00:36', 612, 7448); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:52:30', '11:52:59', '11:55:08', 612, 7449); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:53:04', '11:55:09', '12:36:40', 612, 7450); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:55:02', '11:55:07', '12:25:41', 627, 7451); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:59:25', '11:59:30', '13:02:48', 612, 7452); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '11:59:53', '12:09:47', '12:27:25', 631, 7453); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:00:30', '12:00:36', '12:09:36', 612, 7454); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:08:52', '12:08:53', '12:18:16', 627, 7455); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:09:29', '12:09:36', '12:30:17', 612, 7456); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:09:53', '12:11:54', '13:07:53', 612, 7457); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:16:57', '12:17:31', '12:37:52', 612, 7458); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:18:20', '12:18:22', '13:07:57', 631, 7459); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:19:09', '12:26:50', '12:35:36', 631, 7460); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:19:54', '12:19:57', '13:16:28', 627, 7461); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:21:47', '12:21:49', '12:45:51', 612, 7462); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:22:37', '12:27:25', '12:41:33', 631, 7463); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:26:08', '12:35:36', '12:51:23', 631, 7464); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:29:53', '12:30:03', '14:50:34', 631, 7465); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:30:26', '12:30:28', '14:10:31', 612, 7466); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:32:29', '12:36:41', '13:16:48', 612, 7467); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:33:13', '12:41:33', '14:11:51', 631, 7468); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:35:34', '12:35:37', '12:43:12', 627, 7469); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:35:49', '12:37:23', '13:10:11', 627, 7470); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:37:39', '12:37:52', '13:09:12', 612, 7471); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:40:19', '12:40:23', '13:06:53', 627, 7472); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:40:56', '12:41:08', '12:50:04', 627, 7473); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:41:40', '12:44:00', '12:55:31', 627, 7474); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:42:14', '12:50:04', '12:58:08', 627, 7475); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:43:01', '13:10:11', '13:21:16', 627, 7476); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:43:14', '12:43:22', '13:37:24', 627, 7477); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:44:01', '12:53:11', '13:40:34', 631, 7478); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:44:04', '12:52:02', '13:05:36', 627, 7479); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:45:12', '12:54:35', '13:02:26', 627, 7480); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:45:56', '12:45:59', '13:09:03', 612, 7481); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:48:30', '12:48:44', '13:41:10', 612, 7482); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:50:42', '12:51:16', '13:09:22', 631, 7483); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:50:43', '12:55:32', '13:09:57', 627, 7484); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:51:42', '12:58:08', '13:27:48', 627, 7485); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:53:21', '12:54:47', '13:03:56', 631, 7486); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:55:21', '12:57:56', '13:06:35', 631, 7487); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:56:00', '13:03:57', '13:15:22', 631, 7488); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '12:56:27', '13:04:04', '13:17:16', 627, 7489); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:00:48', '13:06:53', '13:09:04', 627, 7490); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:01:42', '13:06:35', '13:16:58', 631, 7491); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:02:56', '13:03:21', '13:17:51', 612, 7492); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:05:07', '13:09:05', '13:55:48', 627, 7493); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:05:31', '13:08:34', '13:56:05', 631, 7494); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:05:32', '13:09:58', '13:41:44', 627, 7495); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:05:34', '13:07:53', '13:24:00', 612, 7496); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:05:59', '13:15:23', '13:21:22', 631, 7497); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:07:24', '13:16:58', '13:32:25', 631, 7498); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:08:38', '13:17:16', '13:28:33', 627, 7499); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:09:00', '13:09:22', '13:15:34', 631, 7500); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:09:28', '13:21:22', '13:51:24', 631, 7501); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:09:32', '13:09:32', '13:11:44', 612, 7502); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:10:24', '13:11:45', '13:53:43', 612, 7503); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:10:30', '13:15:34', '14:17:37', 631, 7504); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:13:09', '13:21:16', '13:50:35', 627, 7505); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:15:01', '13:17:51', '13:29:27', 612, 7506); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:15:51', '13:24:27', '13:38:09', 627, 7507); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:16:19', '13:32:25', '13:49:27', 631, 7508); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:16:40', '13:16:49', '13:30:56', 612, 7509); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:21:05', '13:28:47', '13:41:01', 627, 7510); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:22:31', '13:32:16', '13:57:04', 627, 7511); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:23:25', '13:37:25', '14:17:11', 627, 7512); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:23:42', '13:24:01', '13:27:25', 612, 7513); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:26:04', '13:45:50', '13:51:52', 631, 7514); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:26:27', '13:29:27', '14:18:49', 612, 7515); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:26:48', '13:38:13', '13:57:13', 627, 7516); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:28:19', '13:41:32', '13:44:52', 631, 7517); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:28:24', '13:30:56', '13:48:50', 612, 7518); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:29:35', '13:44:52', '13:46:14', 631, 7519); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:33:22', '13:49:27', '14:07:09', 631, 7520); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:35:41', '13:41:02', '13:51:56', 627, 7521); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:37:08', '13:41:44', '13:57:42', 627, 7522); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:38:19', '13:46:15', '15:13:54', 631, 7523); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:38:43', '13:51:25', '14:05:50', 631, 7524); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:38:52', '13:41:11', '13:43:55', 612, 7525); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:39:50', '13:40:15', '13:47:52', 612, 7526); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:40:09', '13:50:36', '14:32:22', 627, 7527); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:41:17', '13:43:55', '14:08:18', 612, 7528); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:44:09', '13:49:58', '13:59:12', 627, 7529); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:45:55', '13:51:52', '14:16:46', 631, 7530); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:46:25', '13:46:39', '14:39:20', 612, 7531); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:46:55', '13:47:00', '13:56:00', 627, 7532); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:47:39', '13:48:50', '13:55:16', 612, 7533); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:49:14', '13:53:44', '14:39:20', 612, 7534); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:49:21', '13:55:48', '14:34:07', 627, 7535); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:51:44', '13:55:16', '14:15:04', 612, 7536); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:52:20', '13:55:30', '14:01:02', 612, 7537); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:54:02', '13:57:04', '14:03:52', 627, 7538); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:54:40', '13:56:05', '14:15:12', 631, 7539); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:57:01', '13:57:44', '14:48:52', 627, 7540); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '13:57:05', '14:05:50', '14:42:42', 631, 7541); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:00:17', '14:01:03', '14:04:45', 612, 7542); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:01:08', '14:07:10', '14:15:31', 631, 7543); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:01:31', '14:11:51', '14:57:15', 631, 7544); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:02:15', '14:15:12', '14:23:18', 631, 7545); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:02:49', '14:15:32', '14:46:06', 631, 7546); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:04:01', '14:16:46', '14:31:08', 631, 7547); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:04:11', '14:04:17', '14:14:16', 627, 7548); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:04:35', '14:05:26', '14:21:21', 612, 7549); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:05:20', '14:10:32', '14:13:18', 612, 7550); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:07:38', '14:13:18', '14:18:23', 612, 7551); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:07:46', '14:17:38', '14:44:28', 631, 7552); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:08:30', '14:08:35', '14:39:08', 627, 7553); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:10:17', '14:12:02', '14:25:48', 627, 7554); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:11:41', '14:25:48', '14:40:25', 627, 7555); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:13:58', '14:17:11', '15:14:07', 627, 7556); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:14:41', '14:15:05', '14:39:20', 612, 7557); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:17:57', '14:18:23', '14:24:38', 612, 7558); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:18:45', '14:31:36', '14:58:39', 627, 7559); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:20:44', '14:24:39', '14:39:20', 612, 7560); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:21:15', '14:21:22', '14:32:18', 612, 7561); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:23:04', '14:23:18', '14:38:51', 631, 7562); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:26:43', '14:27:42', '14:39:20', 612, 7563); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:27:43', '14:28:24', '15:01:44', 627, 7564); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:27:49', '14:32:19', '14:39:20', 612, 7565); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:29:04', '14:31:09', '15:01:39', 631, 7566); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:29:59', '14:31:54', '14:36:01', 627, 7567); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:30:36', '14:34:07', '14:48:25', 627, 7568); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:31:06', '14:39:08', '14:45:42', 627, 7569); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:31:56', '14:40:25', '15:16:49', 627, 7570); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:32:08', '14:32:22', '15:36:53', 627, 7571); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:33:58', '14:38:52', '14:43:57', 631, 7572); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:35:48', '14:50:02', '14:52:09', 612, 7573); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:39:41', '14:45:43', '14:55:12', 627, 7574); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:42:00', '14:42:42', '14:49:19', 631, 7575); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:42:44', '14:43:58', '15:14:40', 631, 7576); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:42:54', '14:44:28', '15:30:20', 631, 7577); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:45:57', '14:46:06', '15:11:46', 631, 7578); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:46:01', '14:48:22', '15:14:55', 612, 7579); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:47:31', '14:49:19', '15:21:57', 631, 7580); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:48:02', '14:55:13', '16:05:17', 627, 7581); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:48:42', '14:48:51', '15:21:54', 627, 7582); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:48:55', '15:13:53', '16:19:02', 627, 7583); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:49:12', '14:50:34', '16:41:54', 631, 7584); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:49:27', '14:49:50', '15:09:26', 612, 7585); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:50:23', '14:52:10', '14:59:51', 612, 7586); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:50:42', '14:54:53', '15:25:30', 612, 7587); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:51:05', '14:57:16', '15:18:56', 631, 7588); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:52:12', '15:01:39', '15:32:24', 631, 7589); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:55:14', '14:59:51', '15:05:16', 612, 7590); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:55:23', '15:00:08', '15:05:21', 627, 7591); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:56:00', '14:58:40', '15:17:58', 627, 7592); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:56:23', '15:12:05', '15:30:17', 627, 7593); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:56:55', '15:03:02', '15:12:05', 627, 7594); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '14:57:33', '14:57:36', '15:26:56', 612, 7595); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:00:57', '15:01:45', '15:13:52', 627, 7596); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:03:57', '15:05:21', '15:16:59', 627, 7597); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:06:19', '15:14:44', '16:01:15', 631, 7598); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:06:44', '15:15:03', '15:23:28', 631, 7599); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:08:06', '15:14:03', '15:28:08', 612, 7600); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:08:12', '15:14:07', '16:11:04', 627, 7601); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:09:01', '15:16:11', '15:46:35', 627, 7602); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:10:17', '15:16:49', '15:21:04', 627, 7603); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:10:22', '15:21:39', '15:43:01', 631, 7604); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:11:29', '15:18:56', '15:28:42', 631, 7605); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:11:37', '15:11:48', '15:19:51', 612, 7606); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:14:47', '15:14:56', '15:40:24', 612, 7607); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:15:07', '15:19:52', '15:44:35', 612, 7608); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:16:09', '15:17:58', '15:31:32', 627, 7609); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:16:42', '15:16:46', '15:46:41', 612, 7610); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:17:02', '15:21:57', '15:34:22', 631, 7611); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:17:12', '15:17:27', '15:58:06', 612, 7612); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:21:38', '15:32:24', '15:35:49', 631, 7613); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:21:42', '15:21:50', '16:19:03', 627, 7614); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:22:08', '15:26:56', '15:41:10', 612, 7615); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:23:18', '15:23:29', '17:03:03', 631, 7616); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:23:48', '15:28:42', '17:10:16', 631, 7617); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:25:45', '15:25:58', '16:09:56', 627, 7618); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:27:56', '15:28:01', '16:02:39', 612, 7619); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:28:20', '15:31:33', '15:58:07', 627, 7620); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:29:51', '15:34:22', '15:46:32', 631, 7621); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:30:03', '15:30:21', '15:36:41', 631, 7622); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:31:47', '15:34:11', '15:57:51', 612, 7623); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:31:53', '15:40:59', '16:13:05', 627, 7624); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:33:00', '15:36:41', '16:03:25', 631, 7625); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:34:16', '15:35:49', '15:52:23', 631, 7626); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:36:00', '15:40:24', '15:53:21', 612, 7627); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:36:16', '15:36:53', '16:17:17', 627, 7628); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:37:02', '15:41:11', '15:46:04', 612, 7629); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:37:20', '15:46:04', '15:53:44', 612, 7630); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:38:36', '15:43:02', '16:00:54', 631, 7631); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:40:35', '15:46:35', '16:00:03', 627, 7632); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:42:01', '15:46:32', '16:06:23', 631, 7633); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:43:41', '15:46:43', '15:52:15', 612, 7634); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:46:49', '15:52:23', '17:02:09', 631, 7635); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:52:26', '15:58:08', '16:00:13', 627, 7636); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:52:56', '16:00:54', '16:42:34', 631, 7637); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:53:42', '15:53:44', '15:56:51', 612, 7638); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:54:06', '15:56:51', '16:57:01', 612, 7639); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-14', '15:58:11', '16:01:16', '17:02:10', 631, 7640); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:00:51', '09:03:57', '09:14:19', 627, 7641); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:01:16', '09:04:53', '09:19:44', 627, 7642); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:06:13', '09:06:23', '09:11:14', 612, 7643); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:07:06', '09:07:07', '09:25:06', 627, 7644); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:08:48', '09:08:52', '09:22:38', 627, 7645); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:09:12', '09:09:14', '09:34:06', 631, 7646); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:13:17', '09:13:17', '09:22:14', 612, 7647); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:15:44', '09:15:46', '09:55:34', 612, 7648); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:21:32', '09:21:38', '09:59:44', 631, 7649); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:22:08', '09:22:13', '09:59:34', 612, 7650); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:22:22', '09:22:31', '10:04:36', 612, 7651); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:22:41', '09:22:43', '09:32:22', 627, 7652); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:22:41', '09:22:46', '09:39:40', 631, 7653); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:24:05', '09:24:06', '10:01:04', 612, 7654); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:24:13', '09:24:27', '10:28:31', 612, 7655); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:24:55', '09:24:59', '09:32:29', 627, 7656); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:25:51', '09:26:25', '11:03:40', 631, 7657); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:26:25', '09:26:27', '09:43:50', 627, 7658); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:32:16', '09:32:18', '09:58:24', 631, 7659); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:33:08', '09:33:09', '10:08:07', 631, 7660); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:33:48', '09:34:06', '09:35:08', 631, 7661); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:34:17', '09:34:21', '09:38:22', 627, 7662); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:38:30', '09:39:40', '10:19:23', 631, 7663); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:46:08', '09:46:11', '10:30:25', 627, 7664); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:50:34', '09:50:40', '10:03:27', 627, 7665); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:53:50', '09:53:55', '10:16:51', 631, 7666); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:54:16', '09:56:46', '10:08:35', 631, 7667); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:55:22', '09:58:25', '10:33:43', 631, 7668); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:55:23', '09:55:34', '10:45:57', 612, 7669); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:57:04', '09:59:34', '10:07:34', 612, 7670); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '09:57:20', '09:59:45', '10:54:24', 631, 7671); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:00:53', '10:01:04', '10:19:46', 612, 7672); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:01:24', '10:08:07', '10:12:31', 631, 7673); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:04:27', '10:04:30', '10:15:13', 612, 7674); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:07:16', '10:07:34', '10:45:57', 612, 7675); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:10:23', '10:12:00', '10:33:44', 631, 7676); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:11:57', '10:12:03', '10:22:59', 627, 7677); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:12:14', '10:12:31', '11:06:10', 631, 7678); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:14:25', '10:16:51', '10:26:08', 631, 7679); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:18:56', '10:19:46', '10:45:57', 612, 7680); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:19:10', '10:19:23', '10:44:05', 631, 7681); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:21:14', '10:21:22', '10:26:00', 627, 7682); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:21:59', '10:22:38', '10:36:38', 627, 7683); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:22:19', '10:23:20', '10:34:56', 627, 7684); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:25:03', '10:26:00', '11:03:05', 627, 7685); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:25:08', '10:26:09', '13:31:29', 631, 7686); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:27:22', '10:29:27', '10:45:20', 627, 7687); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:28:25', '10:28:31', '10:45:57', 612, 7688); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:29:20', '10:30:25', '10:36:22', 627, 7689); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:31:55', '10:34:57', '10:58:22', 627, 7690); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:32:41', '10:33:43', '11:03:39', 631, 7691); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:36:58', '10:37:11', '11:10:16', 627, 7692); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:40:20', '10:40:29', '10:50:07', 627, 7693); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:42:35', '10:48:23', '10:56:10', 627, 7694); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:43:43', '10:50:08', '10:57:55', 627, 7695); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:44:00', '10:44:06', '11:46:32', 631, 7696); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:46:06', '10:46:15', '11:02:57', 627, 7697); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:46:53', '10:47:03', '12:01:16', 631, 7698); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:50:17', '10:56:10', '11:00:04', 627, 7699); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:54:22', '10:57:55', '11:03:29', 627, 7700); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:54:59', '10:56:02', '11:01:04', 612, 7701); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:55:35', '10:58:22', '11:26:00', 627, 7702); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:57:59', '10:58:00', '12:11:48', 612, 7703); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '10:59:52', '11:01:05', '11:06:24', 612, 7704); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:02:30', '11:02:57', '12:18:43', 627, 7705); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:03:09', '11:03:40', '11:49:32', 631, 7706); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:03:36', '11:03:39', '11:18:35', 631, 7707); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:05:33', '11:05:54', '11:31:20', 627, 7708); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:06:04', '11:06:43', '11:10:15', 627, 7709); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:07:54', '11:10:17', '11:39:31', 627, 7710); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:08:08', '11:08:11', '11:54:20', 631, 7711); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:08:15', '11:08:53', '12:12:03', 612, 7712); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:08:32', '11:08:35', '12:25:45', 612, 7713); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:11:18', '11:11:27', '11:35:05', 627, 7714); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:11:30', '11:11:35', '11:51:13', 631, 7715); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:17:18', '11:18:35', '11:28:03', 631, 7716); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:21:18', '11:23:41', '11:33:25', 612, 7717); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:24:00', '11:35:05', '11:40:35', 627, 7718); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:25:08', '11:25:10', '14:03:42', 612, 7719); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:25:38', '11:28:03', '11:51:23', 631, 7720); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:34:04', '11:34:22', '11:59:33', 612, 7721); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:39:18', '11:39:21', '11:41:55', 627, 7722); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:40:17', '11:40:25', '11:48:10', 627, 7723); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:40:27', '11:40:30', '12:25:30', 631, 7724); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:41:54', '11:41:56', '12:18:56', 627, 7725); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:46:20', '11:46:32', '13:43:24', 631, 7726); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:49:06', '11:51:14', '13:17:44', 631, 7727); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:49:16', '11:50:06', '11:57:22', 631, 7728); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:50:51', '11:51:01', '12:51:48', 612, 7729); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:50:59', '11:51:23', '12:08:15', 631, 7730); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:53:58', '11:54:21', '12:12:47', 631, 7731); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:55:28', '11:57:22', '12:46:39', 631, 7732); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '11:57:03', '12:06:13', '12:35:37', 631, 7733); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:01:06', '12:01:17', '12:33:45', 631, 7734); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:03:59', '12:04:06', '12:11:47', 612, 7735); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:05:36', '12:05:38', '12:18:36', 627, 7736); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:07:02', '12:07:14', '12:12:16', 612, 7737); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:07:49', '12:08:02', '12:47:57', 627, 7738); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:08:17', '12:08:27', '12:37:00', 631, 7739); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:08:40', '12:12:47', '12:17:54', 631, 7740); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:10:14', '12:17:54', '12:45:25', 631, 7741); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:11:42', '12:11:48', '13:09:31', 612, 7742); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:12:14', '12:12:16', '14:00:51', 612, 7743); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:13:16', '12:13:23', '13:06:45', 612, 7744); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:14:17', '12:17:29', '12:33:50', 627, 7745); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:14:41', '12:18:36', '12:36:54', 627, 7746); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:18:20', '12:18:47', '13:07:47', 627, 7747); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:20:20', '12:24:39', '12:42:14', 612, 7748); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:27:57', '12:35:37', '15:19:18', 631, 7749); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:28:49', '12:33:46', '12:52:28', 631, 7750); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:32:10', '12:46:39', '13:17:19', 631, 7751); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:36:16', '12:37:00', '12:46:35', 631, 7752); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:36:43', '12:36:46', '13:25:48', 612, 7753); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:37:25', '12:37:32', '15:57:39', 627, 7754); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:42:25', '12:45:25', '13:30:13', 631, 7755); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:42:48', '12:45:39', '12:46:57', 627, 7756); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:45:44', '12:46:35', '13:33:41', 631, 7757); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:47:38', '12:47:41', '13:04:01', 627, 7758); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:51:35', '12:51:37', '12:59:57', 627, 7759); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:51:44', '12:51:49', '13:11:13', 612, 7760); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:52:06', '12:52:28', '13:03:53', 631, 7761); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:53:41', '13:01:16', '13:30:13', 631, 7762); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:54:14', '12:54:39', '13:06:42', 627, 7763); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '12:58:24', '12:59:57', '13:33:21', 627, 7764); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:03:16', '13:06:45', '13:08:03', 612, 7765); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:03:20', '13:04:02', '13:19:28', 627, 7766); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:05:31', '13:08:04', '13:21:34', 612, 7767); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:05:59', '13:07:01', '13:26:32', 631, 7768); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:06:07', '13:06:44', '13:12:11', 627, 7769); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:06:45', '13:09:31', '13:17:27', 612, 7770); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:06:51', '13:07:48', '15:56:08', 627, 7771); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:08:55', '13:11:13', '13:21:57', 612, 7772); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:09:42', '13:17:28', '13:21:00', 612, 7773); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:09:55', '13:12:11', '13:24:28', 627, 7774); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:12:26', '13:21:00', '13:47:21', 612, 7775); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:14:08', '13:14:51', '13:37:14', 627, 7776); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:15:52', '13:17:20', '13:44:00', 631, 7777); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:16:39', '13:24:04', '13:34:01', 627, 7778); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:18:01', '13:21:34', '13:37:48', 612, 7779); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:19:14', '13:21:57', '13:37:14', 612, 7780); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:20:58', '13:27:47', '13:34:36', 627, 7781); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:21:00', '13:21:05', '13:30:23', 631, 7782); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:22:03', '13:27:55', '13:40:13', 627, 7783); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:24:03', '13:25:49', '13:29:09', 612, 7784); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:24:34', '13:29:10', '13:46:41', 612, 7785); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:25:01', '13:28:30', '13:38:40', 627, 7786); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:25:36', '13:26:32', '13:44:55', 631, 7787); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:27:25', '13:34:01', '14:05:32', 627, 7788); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:27:42', '13:33:21', '13:59:21', 627, 7789); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:30:06', '13:30:08', '13:36:14', 612, 7790); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:30:06', '13:30:13', '13:36:44', 631, 7791); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:30:23', '13:37:14', '13:44:26', 612, 7792); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:30:43', '13:44:26', '15:13:43', 612, 7793); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:30:46', '13:34:37', '13:39:51', 627, 7794); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:30:53', '13:30:54', '13:46:51', 631, 7795); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:31:23', '13:31:29', '13:44:18', 631, 7796); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:31:37', '13:44:06', '13:55:27', 631, 7797); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:32:31', '13:32:34', '13:51:14', 631, 7798); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:33:23', '13:33:42', '14:16:58', 631, 7799); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:36:23', '13:36:45', '14:02:12', 631, 7800); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:36:44', '13:37:48', '13:48:33', 612, 7801); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:38:02', '13:46:41', '14:06:50', 612, 7802); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:39:18', '13:43:24', '14:19:35', 631, 7803); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:39:41', '13:44:19', '14:04:18', 631, 7804); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:41:01', '13:41:15', '14:16:34', 627, 7805); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:41:33', '13:48:34', '13:54:23', 612, 7806); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:41:45', '13:43:03', '14:29:06', 627, 7807); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:43:30', '13:44:55', '13:52:52', 631, 7808); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:45:43', '13:47:21', '15:03:14', 612, 7809); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:48:03', '13:48:13', '13:58:28', 631, 7810); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:49:06', '13:54:23', '15:11:52', 612, 7811); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:49:29', '13:51:14', '14:32:04', 631, 7812); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:51:49', '13:52:53', '14:08:23', 631, 7813); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:51:53', '13:52:30', '14:20:47', 627, 7814); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:52:12', '13:52:35', '14:26:13', 627, 7815); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:52:52', '13:53:03', '13:57:47', 612, 7816); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:52:58', '13:59:21', '14:28:13', 627, 7817); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:53:42', '14:00:52', '14:12:46', 612, 7818); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:56:44', '14:03:42', '14:26:43', 612, 7819); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:57:55', '13:58:28', '14:27:19', 631, 7820); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:58:04', '14:00:57', '14:13:41', 612, 7821); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:58:39', '14:06:51', '14:13:21', 612, 7822); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '13:59:55', '14:02:12', '14:06:00', 631, 7823); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:00:06', '14:01:07', '14:07:33', 612, 7824); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:00:24', '14:07:34', '14:43:04', 612, 7825); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:02:08', '14:02:12', '14:39:27', 631, 7826); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:02:21', '14:08:24', '14:18:47', 631, 7827); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:03:45', '14:04:19', '14:38:22', 631, 7828); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:04:37', '14:06:00', '14:25:46', 631, 7829); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:06:27', '14:06:33', '14:43:05', 627, 7830); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:09:10', '14:12:46', '14:21:13', 612, 7831); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:09:49', '14:09:50', '16:05:58', 627, 7832); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:10:11', '14:15:33', '14:42:29', 627, 7833); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:11:34', '14:20:47', '14:55:09', 627, 7834); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:12:15', '14:13:41', '14:28:24', 612, 7835); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:12:37', '14:16:59', '14:31:26', 631, 7836); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:14:07', '14:21:14', '14:37:08', 612, 7837); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:15:39', '14:18:47', '15:00:29', 631, 7838); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:18:10', '14:27:07', '14:29:12', 627, 7839); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:19:52', '14:29:06', '14:31:47', 627, 7840); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:20:14', '14:28:57', '14:34:21', 612, 7841); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:22:14', '14:26:43', '14:33:53', 612, 7842); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:23:16', '14:33:53', '14:41:03', 612, 7843); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:25:19', '14:25:27', '14:34:37', 612, 7844); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:25:33', '14:25:46', '14:35:39', 631, 7845); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:26:34', '14:27:19', '15:57:41', 631, 7846); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:27:37', '14:28:13', '15:55:59', 627, 7847); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:30:12', '14:31:48', '14:38:02', 627, 7848); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:30:38', '14:31:26', '14:52:51', 631, 7849); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:30:51', '14:32:05', '14:44:18', 631, 7850); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:31:33', '14:38:23', '15:12:59', 631, 7851); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:31:49', '14:41:35', '15:27:28', 627, 7852); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:32:30', '14:38:04', '14:48:05', 627, 7853); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:33:03', '14:42:30', '15:28:49', 627, 7854); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:33:14', '14:34:22', '14:52:09', 612, 7855); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:33:49', '14:37:08', '15:10:40', 612, 7856); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:34:50', '14:35:39', '14:53:21', 631, 7857); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:35:41', '14:43:05', '14:47:29', 627, 7858); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:36:30', '14:46:54', '15:16:21', 627, 7859); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:36:45', '14:41:28', '15:07:06', 612, 7860); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:37:17', '14:43:05', '14:47:37', 612, 7861); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:38:44', '14:47:37', '14:50:53', 612, 7862); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:38:52', '14:47:30', '14:53:50', 627, 7863); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:39:30', '14:39:36', '15:39:32', 631, 7864); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:40:27', '14:50:54', '15:08:38', 612, 7865); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:40:56', '14:48:05', '14:54:09', 627, 7866); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:44:59', '14:49:57', '14:55:14', 627, 7867); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:47:42', '14:53:51', '15:04:56', 627, 7868); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:48:25', '14:48:33', '15:15:33', 631, 7869); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:49:54', '14:52:09', '15:36:19', 612, 7870); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:51:46', '14:54:54', '15:13:57', 627, 7871); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:51:46', '14:52:52', '15:19:49', 631, 7872); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:53:19', '14:55:14', '15:02:41', 627, 7873); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:58:16', '15:00:29', '15:26:30', 631, 7874); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '14:59:33', '15:05:30', '16:22:36', 631, 7875); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:01:10', '15:11:31', '15:51:56', 631, 7876); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:01:52', '15:12:59', '15:26:07', 631, 7877); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:02:58', '15:09:03', '15:24:34', 627, 7878); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:03:06', '15:07:07', '15:31:07', 612, 7879); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:04:33', '15:15:33', '15:47:21', 631, 7880); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:05:58', '15:08:38', '15:17:16', 612, 7881); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:06:42', '15:19:49', '15:26:38', 631, 7882); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:07:09', '15:13:57', '15:30:59', 627, 7883); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:07:46', '15:16:21', '16:01:14', 627, 7884); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:07:58', '15:26:07', '15:36:25', 631, 7885); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:08:00', '15:10:26', '15:44:47', 612, 7886); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:08:18', '15:10:40', '15:38:23', 612, 7887); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:08:36', '15:09:48', '15:19:00', 627, 7888); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:09:27', '15:19:01', '15:27:28', 627, 7889); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:09:32', '15:14:37', '16:00:40', 631, 7890); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:10:16', '15:11:53', '15:46:37', 612, 7891); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:10:49', '15:13:44', '15:27:43', 612, 7892); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:11:59', '15:17:16', '15:19:36', 612, 7893); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:13:29', '15:13:39', '15:55:54', 612, 7894); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:14:10', '15:19:36', '15:27:37', 612, 7895); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:14:14', '15:26:31', '15:49:02', 631, 7896); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:15:01', '15:26:38', '15:36:16', 631, 7897); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:15:29', '15:36:16', '15:49:42', 631, 7898); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:18:37', '15:19:18', '15:38:42', 631, 7899); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:18:57', '15:24:34', '15:32:47', 627, 7900); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:21:06', '15:36:26', '15:49:30', 631, 7901); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:21:43', '15:22:02', '15:34:10', 612, 7902); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:25:45', '15:27:38', '15:58:48', 612, 7903); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:27:03', '15:27:43', '15:31:13', 612, 7904); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:27:21', '15:28:49', '15:54:17', 627, 7905); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:27:26', '15:39:32', '16:18:02', 631, 7906); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:27:45', '15:31:13', '15:45:48', 612, 7907); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:30:22', '15:30:25', '15:31:44', 612, 7908); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:30:57', '15:31:07', '15:58:36', 612, 7909); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:31:11', '15:31:24', '15:58:54', 612, 7910); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:31:40', '15:34:10', '15:49:00', 612, 7911); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:35:24', '15:38:23', '15:58:37', 612, 7912); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:35:39', '15:47:57', '16:17:42', 631, 7913); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:36:16', '15:36:19', '15:43:45', 612, 7914); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:38:25', '15:38:43', '16:00:36', 631, 7915); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:39:32', '15:39:35', '15:43:17', 612, 7916); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:39:42', '15:49:30', '16:27:37', 631, 7917); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:39:48', '15:40:10', '16:05:53', 627, 7918); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:40:04', '15:49:42', '16:06:14', 631, 7919); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:40:32', '15:44:47', '15:58:55', 612, 7920); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:42:55', '15:51:56', '16:01:14', 631, 7921); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:43:21', '15:45:18', '15:56:56', 627, 7922); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:45:06', '15:45:48', '15:58:52', 612, 7923); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:47:25', '15:48:26', '15:58:53', 612, 7924); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:48:11', '15:54:17', '16:05:45', 627, 7925); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:48:31', '15:51:27', '15:58:38', 612, 7926); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:48:56', '15:56:57', '16:06:11', 627, 7927); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:50:34', '15:52:21', '16:17:27', 631, 7928); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:53:45', '15:57:41', '16:18:07', 631, 7929); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-15', '15:56:56', '16:01:15', '16:12:45', 631, 7930); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:00:55', '10:01:07', '10:29:54', 612, 7931); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:01:24', '10:01:28', '10:20:49', 631, 7932); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:01:42', '10:01:50', '10:21:32', 631, 7933); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:02:00', '10:03:50', '11:10:31', 631, 7934); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:05:13', '10:05:21', '10:35:51', 612, 7935); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:07:47', '10:07:54', '11:01:29', 631, 7936); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:10:15', '10:10:15', '10:46:36', 612, 7937); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:14:32', '10:20:42', '10:29:30', 627, 7938); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:19:54', '10:20:49', '14:33:49', 631, 7939); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:21:16', '10:21:33', '11:03:44', 631, 7940); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:26:35', '10:26:41', '10:57:27', 627, 7941); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:29:20', '10:29:30', '10:44:49', 627, 7942); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:29:45', '10:29:47', '11:09:18', 612, 7943); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:31:05', '10:31:12', '10:35:37', 612, 7944); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:34:27', '10:35:51', '11:05:11', 612, 7945); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:35:10', '10:35:37', '11:23:44', 612, 7946); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:37:19', '10:46:36', '11:20:23', 612, 7947); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:40:59', '10:44:49', '10:53:41', 627, 7948); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:41:24', '10:41:34', '10:53:49', 627, 7949); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:42:37', '10:49:49', '11:53:13', 627, 7950); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:43:24', '10:51:59', '11:12:09', 627, 7951); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:47:04', '10:52:53', '11:33:51', 627, 7952); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:52:19', '10:53:42', '11:05:16', 627, 7953); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:55:16', '10:55:20', '12:30:28', 627, 7954); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:57:27', '10:57:28', '11:10:56', 627, 7955); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '10:57:45', '10:57:47', '11:39:55', 631, 7956); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:00:21', '11:01:36', '11:16:59', 627, 7957); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:00:35', '11:01:29', '11:11:38', 631, 7958); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:02:55', '11:03:44', '11:16:55', 631, 7959); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:03:36', '11:05:16', '11:06:37', 627, 7960); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:05:04', '11:05:11', '11:16:24', 612, 7961); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:09:13', '11:09:19', '11:12:07', 612, 7962); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:10:21', '11:10:31', '11:27:42', 631, 7963); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:10:26', '11:16:59', '11:31:32', 627, 7964); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:12:00', '11:12:07', '11:25:29', 612, 7965); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:13:55', '11:14:00', '12:14:22', 631, 7966); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:16:03', '11:16:56', '11:46:40', 631, 7967); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:16:13', '11:16:25', '11:57:11', 612, 7968); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:16:33', '11:16:48', '12:44:31', 612, 7969); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:20:32', '11:20:34', '11:43:11', 612, 7970); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:23:23', '11:23:45', '11:37:44', 612, 7971); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:24:21', '11:27:42', '11:41:05', 631, 7972); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:25:22', '11:25:30', '12:04:04', 612, 7973); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:33:49', '11:34:15', '11:40:19', 627, 7974); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:37:39', '11:37:45', '12:34:26', 612, 7975); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:37:48', '11:39:55', '11:46:03', 631, 7976); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:40:35', '11:40:36', '13:01:26', 627, 7977); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:41:00', '11:41:05', '11:57:02', 631, 7978); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:41:52', '11:42:00', '11:53:03', 627, 7979); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:42:57', '11:43:11', '11:55:34', 612, 7980); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:44:44', '11:49:12', '12:06:52', 627, 7981); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:46:00', '11:46:03', '12:09:32', 631, 7982); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:48:12', '11:52:55', '12:08:59', 627, 7983); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:53:42', '11:53:51', '12:04:21', 631, 7984); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:53:47', '11:53:50', '12:07:55', 627, 7985); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:55:49', '11:55:57', '12:22:48', 612, 7986); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:56:42', '11:57:11', '12:03:57', 612, 7987); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '11:57:08', '11:57:13', '12:26:43', 631, 7988); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:02:42', '12:04:21', '12:13:55', 631, 7989); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:03:41', '12:06:54', '12:26:57', 627, 7990); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:03:56', '12:04:05', '12:24:39', 612, 7991); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:04:53', '12:09:33', '12:44:57', 631, 7992); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:09:47', '12:17:17', '12:24:06', 627, 7993); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:09:58', '12:13:55', '12:37:37', 631, 7994); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:12:16', '12:14:23', '12:37:29', 631, 7995); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:12:20', '12:20:32', '12:57:57', 627, 7996); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:17:28', '12:25:45', '12:43:37', 627, 7997); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:18:34', '12:22:48', '12:34:29', 612, 7998); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:24:03', '12:24:11', '12:44:11', 612, 7999); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:24:28', '12:24:39', '13:09:46', 612, 8000); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:25:45', '12:26:44', '12:35:24', 631, 8001); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:28:50', '12:28:54', '13:31:23', 627, 8002); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:31:47', '12:33:13', '12:43:03', 627, 8003); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:31:58', '12:35:24', '12:54:36', 631, 8004); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:32:47', '12:40:40', '12:52:39', 627, 8005); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:34:16', '12:34:26', '14:03:19', 612, 8006); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:34:16', '12:43:03', '12:45:27', 627, 8007); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:36:16', '12:37:29', '13:13:44', 631, 8008); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:36:41', '12:36:50', '13:30:34', 612, 8009); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:37:05', '12:37:37', '12:59:56', 631, 8010); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:38:53', '12:45:27', '13:08:32', 627, 8011); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:40:58', '12:44:57', '12:51:00', 631, 8012); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:42:09', '12:43:37', '13:04:55', 627, 8013); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:44:01', '12:52:39', '13:08:40', 627, 8014); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:44:10', '12:44:31', '13:01:45', 612, 8015); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:44:22', '12:50:00', '13:05:57', 631, 8016); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:45:54', '12:51:01', '13:23:08', 631, 8017); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:50:47', '12:54:36', '13:03:35', 631, 8018); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:51:45', '12:57:57', '13:16:45', 627, 8019); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:53:06', '13:01:26', '13:21:24', 627, 8020); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:55:45', '13:01:45', '14:00:15', 612, 8021); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:56:40', '12:59:56', '13:29:54', 631, 8022); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:57:44', '13:05:57', '13:57:40', 631, 8023); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:57:51', '12:57:56', '13:56:19', 627, 8024); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '12:58:20', '13:03:35', '13:09:36', 631, 8025); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:06:07', '13:07:49', '13:11:41', 627, 8026); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:06:46', '13:08:32', '13:21:52', 627, 8027); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:07:08', '13:16:45', '13:52:17', 627, 8028); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:08:24', '13:09:36', '13:50:44', 631, 8029); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:09:05', '13:09:47', '13:39:53', 612, 8030); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:10:58', '13:11:41', '15:07:23', 627, 8031); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:14:40', '13:21:24', '13:27:49', 627, 8032); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:16:27', '13:16:33', '13:40:15', 612, 8033); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:18:41', '13:18:45', '13:28:45', 631, 8034); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:19:07', '13:23:09', '14:06:23', 631, 8035); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:19:25', '13:21:53', '13:32:08', 627, 8036); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:19:42', '13:27:50', '13:52:07', 627, 8037); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:24:28', '13:32:08', '13:41:21', 627, 8038); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:27:23', '13:35:45', '13:44:41', 627, 8039); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:28:09', '13:28:46', '13:49:12', 631, 8040); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:28:47', '13:30:35', '13:40:56', 612, 8041); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:29:45', '13:29:54', '13:39:01', 631, 8042); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:30:24', '13:31:23', '15:11:13', 627, 8043); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:33:02', '13:34:50', '14:12:26', 631, 8044); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:36:13', '13:41:21', '13:48:26', 627, 8045); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:38:04', '13:38:46', '14:13:09', 627, 8046); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:38:19', '13:39:02', '15:28:51', 631, 8047); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:39:13', '13:39:54', '14:19:01', 612, 8048); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:39:28', '13:48:26', '13:55:06', 627, 8049); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:40:09', '13:40:15', '13:54:21', 612, 8050); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:40:45', '13:40:56', '14:18:43', 612, 8051); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:41:29', '13:49:13', '13:53:01', 631, 8052); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:43:05', '13:44:42', '14:01:31', 627, 8053); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:45:40', '13:52:08', '13:55:30', 627, 8054); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:48:26', '13:50:44', '14:49:51', 631, 8055); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:48:44', '13:53:01', '13:56:32', 631, 8056); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:49:11', '13:56:32', '14:03:52', 631, 8057); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:49:42', '13:57:40', '13:59:32', 631, 8058); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:52:03', '13:52:17', '14:26:06', 627, 8059); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:53:29', '13:55:06', '14:05:47', 627, 8060); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:53:57', '13:54:21', '14:07:55', 612, 8061); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:54:00', '13:55:30', '14:22:22', 627, 8062); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:54:23', '14:00:16', '14:50:02', 612, 8063); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:54:32', '14:01:31', '14:03:59', 627, 8064); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:55:43', '13:59:33', '14:15:58', 631, 8065); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:58:00', '13:59:02', '14:38:31', 631, 8066); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:58:24', '14:04:00', '14:11:30', 627, 8067); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:58:45', '14:05:48', '14:09:08', 627, 8068); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '13:59:22', '14:03:52', '14:23:06', 631, 8069); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:00:14', '14:06:23', '14:16:01', 631, 8070); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:00:39', '14:09:09', '14:21:02', 627, 8071); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:02:37', '14:03:20', '14:18:28', 612, 8072); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:06:58', '14:17:28', '14:23:56', 627, 8073); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:07:33', '14:07:56', '14:35:58', 612, 8074); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:07:41', '14:11:30', '15:46:19', 627, 8075); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:07:58', '14:15:58', '14:24:08', 631, 8076); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:10:36', '14:16:02', '14:17:23', 631, 8077); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:12:30', '14:21:03', '14:29:47', 627, 8078); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:13:47', '14:17:23', '15:01:28', 631, 8079); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:15:41', '14:23:07', '14:38:29', 631, 8080); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:16:19', '14:22:22', '14:25:31', 627, 8081); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:17:11', '14:25:33', '14:38:57', 627, 8082); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:17:47', '14:19:01', '15:05:26', 612, 8083); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:18:05', '14:18:28', '15:29:32', 612, 8084); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:18:24', '14:18:44', '14:27:54', 612, 8085); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:19:12', '14:27:54', '14:49:28', 612, 8086); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:21:32', '14:23:57', '14:52:41', 627, 8087); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:22:01', '14:24:09', '14:52:31', 631, 8088); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:24:23', '14:31:39', '14:47:05', 627, 8089); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:24:39', '14:26:06', '15:56:59', 627, 8090); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:25:45', '14:33:50', '15:11:11', 631, 8091); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:28:35', '14:38:30', '15:13:37', 631, 8092); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:30:57', '14:39:40', '15:00:44', 627, 8093); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:34:01', '14:35:59', '15:39:38', 612, 8094); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:37:39', '14:38:32', '16:06:20', 631, 8095); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:38:36', '14:47:06', '14:48:44', 627, 8096); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:39:19', '14:49:51', '14:56:26', 631, 8097); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:40:50', '14:41:51', '14:56:12', 627, 8098); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:41:10', '14:52:32', '14:59:31', 631, 8099); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:42:52', '14:56:27', '15:14:28', 631, 8100); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:43:13', '14:59:32', '15:03:54', 631, 8101); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:43:52', '15:01:28', '16:18:09', 631, 8102); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:49:16', '15:03:54', '15:11:46', 631, 8103); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:49:45', '14:50:02', '15:44:59', 612, 8104); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:51:11', '14:59:37', '15:12:33', 627, 8105); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:51:30', '14:52:42', '14:59:37', 627, 8106); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:51:30', '15:11:11', '15:24:13', 631, 8107); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:52:14', '15:00:45', '15:09:06', 627, 8108); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '14:56:58', '14:56:59', '15:13:52', 612, 8109); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:01:01', '15:11:47', '15:54:09', 631, 8110); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:03:39', '15:13:38', '15:24:03', 631, 8111); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:04:31', '15:14:29', '15:43:52', 631, 8112); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:05:11', '15:07:23', '15:47:26', 627, 8113); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:05:17', '15:05:26', '15:59:22', 612, 8114); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:05:59', '15:11:14', '15:59:05', 627, 8115); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:07:04', '15:24:03', '15:55:31', 631, 8116); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:09:03', '15:12:33', '16:01:45', 627, 8117); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:13:27', '15:13:53', '15:24:11', 612, 8118); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:15:55', '15:15:58', '15:29:27', 627, 8119); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:21:07', '15:25:51', '16:00:39', 627, 8120); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:22:32', '15:24:13', '15:37:26', 631, 8121); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:23:21', '15:29:27', '15:32:58', 627, 8122); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:23:43', '15:24:12', '15:43:10', 612, 8123); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:24:40', '15:33:59', '15:41:54', 627, 8124); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:26:31', '15:28:51', '16:08:10', 631, 8125); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:28:39', '15:37:26', '16:17:51', 631, 8126); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:32:43', '15:41:55', '15:53:03', 627, 8127); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:34:35', '15:38:36', '16:01:00', 631, 8128); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:36:29', '15:36:34', '16:03:22', 612, 8129); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:38:53', '15:46:20', '15:55:44', 627, 8130); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:39:49', '15:39:50', '15:52:40', 612, 8131); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:39:49', '15:48:12', '15:57:28', 627, 8132); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:40:41', '15:40:48', '16:01:00', 612, 8133); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:41:25', '15:43:52', '16:10:32', 631, 8134); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:42:42', '15:43:10', '16:03:37', 612, 8135); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-16', '15:44:53', '15:53:04', '16:00:55', 627, 8136); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '11:57:30', '11:57:40', '12:22:52', 612, 8137); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '11:59:20', '12:00:15', '12:19:08', 612, 8138); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '12:07:54', '12:08:13', '12:49:04', 612, 8139); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '12:16:41', '12:19:08', '12:33:35', 612, 8140); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '12:16:57', '12:18:51', '15:40:00', 612, 8141); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '12:18:55', '12:22:52', '12:37:53', 612, 8142); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '12:24:23', '12:26:17', '13:42:38', 612, 8143); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '12:25:31', '12:26:26', '15:40:00', 612, 8144); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '12:32:13', '12:33:35', '13:05:05', 612, 8145); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '12:33:25', '12:37:53', '13:38:29', 612, 8146); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '12:40:15', '12:49:04', '13:40:12', 612, 8147); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '13:04:53', '13:05:06', '13:53:37', 612, 8148); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '13:38:14', '13:38:30', '13:49:36', 612, 8149); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '13:39:13', '13:40:12', '13:46:16', 612, 8150); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '13:42:33', '13:42:39', '15:24:11', 612, 8151); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '13:43:29', '13:46:17', '14:28:41', 612, 8152); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '13:49:32', '13:49:36', '14:11:01', 612, 8153); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '13:53:15', '13:53:37', '14:26:19', 612, 8154); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '14:10:52', '14:11:02', '15:40:00', 612, 8155); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '14:26:02', '14:26:19', '15:40:00', 612, 8156); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '14:28:23', '14:28:41', '15:00:41', 612, 8157); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '15:00:17', '15:00:41', '15:40:00', 612, 8158); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-17', '15:24:01', '15:24:11', '15:40:00', 612, 8159); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '08:56:06', '08:56:20', '09:58:12', 612, 8160); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '08:56:33', '08:56:38', '09:18:06', 612, 8161); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '09:10:54', '09:11:11', '09:45:17', 612, 8162); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '09:17:59', '09:18:03', '09:51:10', 612, 8163); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '09:38:37', '09:38:37', '09:50:36', 612, 8164); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '09:50:55', '09:51:10', '10:45:20', 612, 8165); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '09:54:07', '09:54:15', '10:23:20', 612, 8166); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '09:57:45', '09:58:12', '10:54:52', 612, 8167); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '09:58:33', '09:58:57', '10:27:48', 612, 8168); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:00:50', '10:02:16', '10:45:20', 612, 8169); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:04:48', '10:08:47', '11:07:57', 612, 8170); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:07:48', '10:08:12', '10:55:06', 631, 8171); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:09:06', '10:09:07', '10:13:32', 612, 8172); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:10:00', '10:19:29', '10:28:25', 627, 8173); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:17:10', '10:17:16', '10:45:27', 627, 8174); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:17:38', '10:18:10', '11:06:14', 627, 8175); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:18:04', '10:18:18', '10:37:54', 627, 8176); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:27:21', '10:28:25', '10:54:35', 627, 8177); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:28:16', '10:28:21', '10:34:47', 612, 8178); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:29:32', '10:34:48', '11:04:47', 612, 8179); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:38:24', '10:46:23', '10:55:00', 631, 8180); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:40:09', '10:40:12', '14:38:19', 612, 8181); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:40:46', '10:41:05', '10:52:41', 612, 8182); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:42:35', '10:45:21', '11:06:48', 612, 8183); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:45:09', '10:45:21', '11:38:17', 612, 8184); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:45:50', '10:54:35', '10:56:53', 627, 8185); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:46:32', '10:46:40', '10:49:04', 627, 8186); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:46:44', '10:56:54', '11:40:02', 627, 8187); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:53:59', '10:54:06', '11:35:34', 612, 8188); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:54:29', '10:55:00', '12:51:30', 631, 8189); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:54:44', '10:54:52', '11:33:03', 612, 8190); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '10:59:10', '11:02:08', '11:42:41', 612, 8191); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:03:27', '11:03:30', '12:29:51', 631, 8192); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:03:45', '11:04:47', '11:51:14', 612, 8193); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:05:54', '11:06:48', '11:37:36', 612, 8194); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:06:09', '11:17:19', '11:39:34', 627, 8195); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:06:36', '11:07:57', '11:52:00', 612, 8196); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:09:02', '11:09:04', '11:27:43', 627, 8197); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:09:23', '11:09:48', '12:29:10', 631, 8198); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:11:30', '11:11:33', '12:06:43', 627, 8199); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:14:06', '11:14:14', '12:18:15', 627, 8200); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:16:21', '11:16:23', '11:30:56', 627, 8201); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:17:14', '11:19:32', '11:35:46', 627, 8202); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:22:12', '11:22:14', '12:27:55', 631, 8203); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:23:56', '11:40:03', '11:56:42', 627, 8204); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:25:24', '11:25:43', '11:50:25', 612, 8205); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:27:24', '11:27:38', '11:34:42', 627, 8206); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:32:54', '11:33:03', '11:50:09', 612, 8207); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:33:06', '11:39:35', '12:03:44', 627, 8208); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:34:13', '11:34:17', '11:50:17', 627, 8209); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:38:10', '11:38:17', '11:49:43', 612, 8210); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:38:40', '11:42:41', '14:15:09', 612, 8211); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:40:14', '11:42:43', '11:52:07', 612, 8212); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:44:06', '11:44:13', '12:14:43', 627, 8213); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:44:29', '11:45:48', '12:09:18', 627, 8214); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:46:21', '11:56:42', '12:14:40', 627, 8215); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:49:33', '11:49:43', '11:55:14', 612, 8216); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:50:02', '11:50:09', '12:17:18', 612, 8217); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:50:11', '11:50:18', '11:59:10', 627, 8218); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:50:23', '11:51:14', '12:07:13', 612, 8219); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:52:07', '11:52:07', '12:41:01', 612, 8220); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:54:06', '11:55:00', '14:09:15', 631, 8221); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:56:53', '12:04:30', '12:11:32', 627, 8222); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:57:28', '12:06:43', '12:18:58', 627, 8223); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:58:01', '12:03:45', '12:32:25', 631, 8224); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:59:25', '11:59:37', '12:34:46', 612, 8225); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '11:59:53', '12:03:36', '12:06:55', 612, 8226); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:00:12', '12:03:45', '13:16:18', 627, 8227); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:05:06', '12:06:55', '12:53:17', 612, 8228); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:06:30', '12:07:49', '13:30:18', 631, 8229); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:06:35', '12:07:15', '12:12:26', 612, 8230); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:06:56', '12:12:26', '12:41:05', 612, 8231); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:12:59', '12:14:40', '13:23:11', 627, 8232); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:17:15', '12:17:18', '12:24:28', 612, 8233); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:21:47', '12:21:56', '13:02:18', 631, 8234); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:22:57', '12:23:04', '13:37:25', 631, 8235); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:24:43', '12:25:04', '13:54:30', 612, 8236); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:25:20', '12:28:13', '12:33:54', 612, 8237); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:25:51', '12:30:16', '12:55:07', 627, 8238); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:26:23', '12:27:55', '12:50:39', 631, 8239); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:26:42', '12:30:29', '12:53:28', 627, 8240); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:28:19', '12:33:54', '13:18:07', 612, 8241); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:28:28', '12:29:10', '15:32:49', 631, 8242); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:29:02', '12:29:51', '12:40:08', 631, 8243); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:31:22', '12:53:17', '13:08:18', 612, 8244); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:32:25', '12:34:46', '12:40:58', 612, 8245); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:34:56', '12:42:42', '13:01:23', 627, 8246); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:38:58', '12:43:00', '12:55:23', 627, 8247); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:40:33', '12:40:39', '13:02:26', 627, 8248); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:41:07', '12:41:07', '13:02:53', 612, 8249); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:41:50', '12:51:29', '13:05:24', 627, 8250); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:42:50', '12:44:45', '12:48:43', 631, 8251); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:43:07', '12:43:12', '12:55:11', 612, 8252); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:44:10', '12:48:43', '12:50:19', 631, 8253); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:44:30', '12:50:35', '15:01:08', 631, 8254); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:44:55', '12:44:56', '13:13:59', 612, 8255); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:45:00', '12:50:19', '13:44:38', 631, 8256); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:48:32', '12:53:28', '13:01:12', 627, 8257); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:49:41', '12:55:07', '12:57:21', 627, 8258); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:50:00', '12:50:40', '14:14:39', 631, 8259); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:50:25', '12:51:31', '13:40:14', 631, 8260); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:51:42', '12:53:30', '13:20:54', 631, 8261); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:52:07', '12:57:21', '13:05:23', 627, 8262); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:53:20', '13:01:13', '13:30:26', 627, 8263); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '12:54:11', '13:02:19', '13:03:54', 631, 8264); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:00:56', '13:02:27', '13:16:25', 627, 8265); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:01:24', '13:01:37', '13:35:53', 612, 8266); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:02:45', '13:02:53', '13:20:36', 612, 8267); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:04:05', '13:05:20', '13:37:15', 627, 8268); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:04:31', '13:04:36', '14:10:48', 631, 8269); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:07:50', '13:14:15', '13:19:14', 627, 8270); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:12:59', '13:16:18', '14:56:42', 627, 8271); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:13:45', '13:13:59', '13:20:47', 612, 8272); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:14:31', '13:14:32', '13:41:37', 612, 8273); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:17:22', '13:19:00', '13:53:43', 612, 8274); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:17:58', '13:18:07', '13:58:31', 612, 8275); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:18:13', '13:20:54', '13:38:54', 631, 8276); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:19:47', '13:20:37', '13:54:41', 612, 8277); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:20:10', '13:20:47', '13:29:16', 612, 8278); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:21:41', '13:26:28', '13:35:33', 612, 8279); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:22:03', '13:22:06', '13:33:51', 627, 8280); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:22:32', '13:22:36', '13:44:58', 612, 8281); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:22:43', '13:23:11', '13:52:56', 627, 8282); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:25:16', '13:30:19', '13:36:55', 631, 8283); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:27:17', '13:29:16', '13:37:47', 612, 8284); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:28:16', '13:36:56', '13:52:44', 631, 8285); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:29:52', '13:37:26', '14:36:29', 631, 8286); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:30:01', '13:33:51', '13:49:50', 627, 8287); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:32:10', '13:37:15', '13:45:00', 627, 8288); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:33:32', '13:40:14', '14:03:29', 631, 8289); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:33:43', '13:43:35', '13:57:44', 627, 8290); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:35:19', '13:38:54', '14:08:31', 631, 8291); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:35:27', '13:35:53', '13:41:06', 612, 8292); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:35:37', '13:44:38', '15:20:32', 631, 8293); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:37:10', '13:37:47', '13:47:07', 612, 8294); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:39:05', '13:44:00', '13:45:25', 627, 8295); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:40:18', '13:52:57', '13:58:37', 627, 8296); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:41:02', '13:41:37', '14:40:18', 612, 8297); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:43:12', '13:47:08', '14:31:44', 612, 8298); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:44:22', '13:45:01', '14:51:19', 627, 8299); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:46:27', '13:46:34', '14:08:03', 627, 8300); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:48:34', '13:52:44', '13:57:17', 631, 8301); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:49:36', '13:57:17', '14:20:10', 631, 8302); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:49:45', '13:53:43', '14:26:48', 612, 8303); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:50:39', '13:54:30', '14:15:24', 612, 8304); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:50:50', '14:03:29', '16:10:25', 631, 8305); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:51:22', '13:51:30', '14:42:22', 612, 8306); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:54:06', '14:00:01', '14:02:04', 612, 8307); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:54:35', '13:54:41', '13:58:43', 612, 8308); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:54:49', '13:58:37', '14:27:28', 627, 8309); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:55:29', '13:58:31', '14:05:35', 612, 8310); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:57:29', '13:58:43', '15:01:51', 612, 8311); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:58:06', '14:05:35', '14:28:51', 612, 8312); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '13:59:23', '14:00:33', '14:08:29', 627, 8313); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:02:21', '14:08:31', '17:29:39', 631, 8314); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:02:59', '14:03:06', '14:16:59', 612, 8315); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:04:15', '14:04:24', '14:13:41', 627, 8316); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:04:35', '14:09:15', '15:02:09', 631, 8317); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:06:56', '14:09:15', '14:16:36', 612, 8318); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:10:39', '14:42:22', '14:46:30', 612, 8319); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:12:30', '14:15:09', '15:16:04', 612, 8320); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:14:30', '14:46:31', '15:06:09', 612, 8321); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:14:34', '14:14:40', '14:29:02', 631, 8322); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:14:49', '14:19:55', '14:44:29', 631, 8323); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:15:01', '14:15:25', '14:18:40', 612, 8324); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:17:41', '14:20:10', '14:30:59', 631, 8325); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:17:45', '14:17:54', '14:23:39', 627, 8326); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:18:16', '14:18:40', '14:48:49', 612, 8327); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:18:21', '14:19:42', '14:37:36', 627, 8328); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:25:41', '14:26:48', '15:10:11', 612, 8329); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:27:20', '14:27:28', '14:44:55', 627, 8330); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:28:33', '14:29:37', '14:53:47', 612, 8331); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:28:55', '14:29:02', '14:42:51', 631, 8332); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:29:20', '14:31:45', '14:49:37', 612, 8333); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:29:33', '14:29:34', '15:06:52', 631, 8334); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:30:03', '14:30:59', '14:57:24', 631, 8335); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:30:46', '14:36:30', '14:37:50', 631, 8336); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:31:51', '14:32:00', '14:43:35', 627, 8337); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:32:54', '14:37:50', '14:42:14', 631, 8338); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:33:29', '14:42:14', '16:06:35', 631, 8339); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:33:48', '14:42:52', '14:57:21', 631, 8340); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:33:49', '15:06:09', '15:10:19', 612, 8341); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:34:25', '14:34:38', '14:47:56', 612, 8342); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:37:04', '14:37:32', '14:47:51', 627, 8343); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:38:02', '14:38:03', '15:58:18', 627, 8344); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:39:07', '14:39:37', '14:43:03', 627, 8345); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:40:28', '14:41:56', '14:52:45', 612, 8346); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:40:39', '14:43:36', '15:18:48', 627, 8347); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:40:51', '14:52:45', '14:59:29', 612, 8348); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:41:18', '14:44:55', '14:52:39', 627, 8349); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:44:15', '14:44:29', '14:53:35', 631, 8350); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:46:40', '14:47:56', '15:10:27', 612, 8351); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:47:08', '14:52:40', '15:10:44', 627, 8352); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:48:44', '14:48:49', '15:04:50', 612, 8353); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:48:50', '14:53:35', '15:45:23', 631, 8354); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:48:56', '14:51:12', '14:52:24', 627, 8355); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:50:06', '14:50:08', '15:16:08', 612, 8356); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:51:13', '14:51:19', '15:03:11', 627, 8357); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:53:15', '14:56:42', '15:07:03', 627, 8358); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:53:41', '14:53:48', '15:03:44', 612, 8359); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:53:53', '15:03:11', '15:11:58', 627, 8360); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:54:32', '15:03:44', '15:57:22', 612, 8361); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '14:56:33', '15:01:29', '15:08:33', 627, 8362); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:00:18', '15:07:04', '16:03:18', 627, 8363); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:00:38', '15:08:33', '15:20:40', 627, 8364); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:01:48', '15:01:51', '15:19:31', 612, 8365); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:04:34', '15:06:52', '17:39:01', 631, 8366); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:05:10', '15:05:48', '15:27:04', 612, 8367); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:07:14', '15:10:12', '15:35:19', 612, 8368); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:10:18', '15:10:44', '15:17:02', 627, 8369); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:10:44', '15:10:46', '17:29:37', 631, 8370); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:11:25', '15:11:25', '15:23:29', 627, 8371); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:11:31', '15:11:41', '15:55:24', 612, 8372); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:12:32', '15:12:52', '15:34:46', 627, 8373); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:15:01', '15:18:49', '15:26:07', 627, 8374); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:15:17', '15:15:21', '15:36:24', 631, 8375); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:15:27', '15:20:40', '15:58:28', 627, 8376); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:15:52', '15:16:04', '15:56:50', 612, 8377); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:16:18', '15:17:03', '15:44:09', 627, 8378); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:16:46', '15:24:34', '15:40:06', 627, 8379); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:19:03', '15:19:09', '15:29:08', 612, 8380); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:19:26', '15:19:32', '15:59:48', 612, 8381); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:19:53', '15:26:07', '15:32:46', 627, 8382); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:20:31', '15:20:32', '16:39:43', 631, 8383); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:22:01', '15:27:05', '15:57:05', 612, 8384); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:26:12', '15:44:09', '15:49:46', 627, 8385); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:27:55', '15:32:46', '15:42:35', 627, 8386); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:28:54', '15:28:59', '15:38:28', 612, 8387); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:30:57', '15:31:06', '15:47:53', 631, 8388); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:31:32', '15:32:50', '16:00:53', 631, 8389); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:33:15', '15:33:20', '16:16:29', 612, 8390); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:34:04', '15:35:03', '15:49:33', 627, 8391); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:34:10', '15:36:25', '16:38:48', 631, 8392); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:34:27', '15:49:46', '15:58:50', 627, 8393); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:35:47', '15:36:00', '15:57:35', 612, 8394); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:36:01', '15:45:24', '16:08:59', 631, 8395); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:36:05', '15:36:20', '15:38:21', 612, 8396); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:39:15', '15:42:35', '15:57:22', 627, 8397); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:43:33', '15:44:16', '15:57:20', 612, 8398); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:44:57', '15:49:33', '16:02:07', 627, 8399); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-18', '15:45:40', '15:47:53', '17:39:03', 631, 8400); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '08:59:33', '08:59:50', '09:03:51', 612, 8401); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:00:48', '09:00:50', '09:53:49', 631, 8402); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:01:02', '09:05:54', '10:36:48', 631, 8403); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:01:26', '09:01:36', '09:08:52', 631, 8404); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:03:08', '09:05:59', '09:19:44', 631, 8405); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:03:41', '09:07:12', '09:13:51', 631, 8406); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:03:49', '09:03:51', '10:20:31', 612, 8407); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:06:39', '09:08:52', '09:16:25', 631, 8408); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:12:47', '09:13:51', '10:40:45', 631, 8409); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:13:17', '09:16:25', '09:23:05', 631, 8410); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:17:25', '09:19:45', '09:58:59', 631, 8411); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:17:41', '09:23:05', '10:10:25', 631, 8412); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:18:22', '09:24:23', '09:34:25', 631, 8413); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:19:02', '09:26:36', '10:09:21', 631, 8414); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:19:21', '09:28:34', '12:51:16', 631, 8415); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:26:32', '09:26:32', '09:37:09', 627, 8416); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:28:06', '09:28:45', '10:19:12', 627, 8417); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:30:09', '09:31:57', '09:36:16', 627, 8418); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:32:11', '09:34:25', '12:11:26', 631, 8419); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:32:16', '09:32:24', '10:19:06', 612, 8420); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:36:28', '09:36:33', '09:38:01', 627, 8421); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:38:31', '09:38:37', '10:29:30', 627, 8422); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:48:08', '09:48:16', '10:39:12', 612, 8423); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:51:45', '09:53:50', '10:47:50', 631, 8424); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '09:53:02', '09:58:59', '10:58:24', 631, 8425); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:02:09', '10:09:21', '10:10:21', 631, 8426); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:03:35', '10:10:21', '10:51:24', 631, 8427); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:06:56', '10:10:26', '10:51:19', 631, 8428); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:16:36', '10:17:56', '10:19:19', 627, 8429); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:18:07', '10:18:17', '10:45:44', 627, 8430); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:19:21', '10:19:29', '10:34:31', 612, 8431); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:19:54', '10:20:31', '10:57:07', 612, 8432); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:23:46', '10:23:49', '11:18:06', 631, 8433); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:26:34', '10:26:38', '11:14:30', 627, 8434); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:30:14', '10:30:16', '10:50:43', 627, 8435); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:30:49', '10:30:55', '11:03:55', 612, 8436); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:34:03', '10:34:31', '10:40:41', 612, 8437); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:35:11', '10:40:46', '10:52:13', 631, 8438); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:35:25', '10:37:49', '10:54:00', 612, 8439); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:36:05', '10:36:48', '11:18:29', 631, 8440); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:37:40', '10:37:50', '11:00:46', 612, 8441); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:39:01', '10:40:13', '10:48:37', 627, 8442); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:39:07', '10:39:13', '10:43:03', 612, 8443); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:39:42', '10:40:44', '11:13:10', 612, 8444); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:41:53', '10:49:09', '10:52:51', 612, 8445); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:43:31', '10:47:51', '11:04:13', 631, 8446); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:48:15', '10:51:04', '13:06:56', 612, 8447); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:48:44', '10:52:51', '11:17:15', 612, 8448); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:48:50', '10:51:20', '11:55:21', 631, 8449); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:49:01', '10:54:00', '11:13:56', 612, 8450); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:49:19', '10:51:24', '12:14:38', 631, 8451); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:50:42', '10:52:06', '11:05:09', 627, 8452); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:50:47', '10:54:20', '11:02:31', 631, 8453); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:52:12', '11:00:43', '11:16:48', 627, 8454); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:53:20', '11:11:10', '11:36:04', 627, 8455); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:55:49', '11:05:09', '11:12:25', 627, 8456); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:57:03', '10:57:08', '11:31:17', 612, 8457); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:58:06', '10:58:24', '11:32:18', 612, 8458); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:58:49', '10:58:54', '11:50:08', 631, 8459); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '10:59:52', '11:00:47', '11:31:19', 612, 8460); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:01:46', '11:02:32', '12:16:36', 631, 8461); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:01:48', '11:02:07', '11:35:37', 612, 8462); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:02:53', '11:02:55', '11:49:56', 631, 8463); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:03:45', '11:03:56', '11:13:14', 612, 8464); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:03:59', '11:04:13', '11:25:10', 631, 8465); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:07:05', '11:07:08', '11:19:32', 627, 8466); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:09:53', '11:09:55', '11:27:42', 627, 8467); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:12:47', '11:13:15', '11:33:37', 612, 8468); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:13:25', '11:13:57', '12:16:24', 612, 8469); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:13:50', '11:18:07', '11:30:05', 631, 8470); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:14:09', '11:17:15', '12:11:35', 612, 8471); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:15:44', '11:15:52', '11:31:22', 627, 8472); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:18:16', '11:18:30', '12:12:24', 631, 8473); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:19:17', '11:19:32', '12:56:03', 627, 8474); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:22:52', '11:27:26', '11:35:16', 631, 8475); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:23:15', '11:36:04', '11:43:23', 627, 8476); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:24:36', '11:24:48', '11:38:31', 612, 8477); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:26:20', '11:30:05', '12:04:40', 631, 8478); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:26:22', '11:26:50', '11:57:25', 627, 8479); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:26:49', '11:27:42', '11:36:32', 627, 8480); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:27:12', '11:27:47', '11:32:20', 627, 8481); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:30:48', '11:31:17', '12:03:39', 612, 8482); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:33:48', '11:33:50', '11:43:16', 612, 8483); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:35:48', '11:35:57', '12:29:14', 631, 8484); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:37:21', '11:37:38', '12:30:28', 612, 8485); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:37:25', '11:43:24', '13:07:58', 627, 8486); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:37:43', '11:37:48', '11:42:54', 627, 8487); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:39:49', '11:41:04', '12:02:30', 627, 8488); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:42:16', '11:42:55', '11:52:05', 627, 8489); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:43:06', '11:43:17', '12:27:55', 612, 8490); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:43:42', '11:43:42', '11:55:08', 612, 8491); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:48:44', '11:54:54', '12:18:07', 612, 8492); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:50:08', '11:50:09', '12:16:54', 631, 8493); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:51:30', '11:51:59', '12:45:43', 627, 8494); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '11:55:00', '11:55:21', '12:17:44', 631, 8495); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:03:20', '12:03:40', '12:16:30', 612, 8496); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:03:52', '12:04:40', '13:52:03', 631, 8497); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:04:30', '12:11:26', '12:21:17', 631, 8498); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:06:02', '12:14:31', '12:16:59', 627, 8499); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:10:14', '12:17:00', '12:21:07', 627, 8500); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:11:14', '12:11:35', '12:35:57', 612, 8501); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:11:57', '12:13:04', '12:38:48', 627, 8502); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:11:59', '12:12:25', '12:54:03', 631, 8503); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:12:11', '12:12:29', '12:15:45', 612, 8504); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:12:55', '12:14:39', '13:18:53', 631, 8505); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:13:11', '12:18:07', '12:42:55', 612, 8506); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:13:22', '12:21:08', '12:33:13', 627, 8507); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:13:54', '12:16:24', '12:28:55', 627, 8508); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:14:32', '12:16:54', '12:42:07', 631, 8509); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:14:54', '12:16:36', '13:31:11', 631, 8510); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:15:31', '12:15:46', '12:21:29', 612, 8511); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:15:51', '12:24:39', '12:29:30', 627, 8512); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:16:18', '12:16:28', '12:55:40', 612, 8513); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:16:35', '12:16:41', '13:10:29', 631, 8514); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:17:14', '12:17:45', '12:20:44', 631, 8515); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:18:58', '12:20:44', '12:36:09', 631, 8516); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:19:51', '12:21:17', '12:39:35', 631, 8517); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:24:58', '12:29:31', '12:55:12', 627, 8518); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:25:51', '12:33:13', '13:06:18', 627, 8519); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:27:11', '12:29:14', '12:38:21', 631, 8520); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:28:05', '12:28:06', '12:51:33', 612, 8521); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:28:59', '12:36:09', '12:41:06', 631, 8522); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:29:54', '12:38:21', '13:02:29', 631, 8523); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:30:32', '12:30:40', '13:08:12', 612, 8524); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:30:55', '12:39:36', '13:02:08', 631, 8525); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:31:00', '12:31:01', '12:43:53', 612, 8526); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:35:51', '12:35:58', '12:52:17', 612, 8527); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:39:25', '12:41:06', '13:12:32', 631, 8528); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:40:31', '12:42:08', '13:04:02', 631, 8529); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:44:47', '12:44:57', '12:57:36', 627, 8530); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:45:55', '12:55:12', '13:09:41', 627, 8531); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:46:25', '12:53:16', '13:07:53', 627, 8532); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:49:44', '12:49:54', '13:07:52', 612, 8533); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:50:28', '12:51:16', '13:13:11', 631, 8534); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:50:54', '12:57:36', '13:05:58', 627, 8535); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:51:26', '12:51:34', '12:59:20', 612, 8536); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:52:12', '12:52:17', '14:22:58', 612, 8537); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:52:57', '12:53:10', '13:02:05', 612, 8538); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:53:36', '12:54:03', '13:48:50', 631, 8539); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:54:29', '12:54:35', '12:59:26', 627, 8540); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:54:39', '13:07:58', '16:04:18', 627, 8541); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:54:57', '12:55:04', '13:10:29', 612, 8542); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:55:09', '13:02:08', '14:03:36', 631, 8543); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:55:18', '12:56:03', '13:04:12', 627, 8544); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:55:30', '12:55:41', '13:29:45', 612, 8545); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '12:58:04', '12:59:21', '13:21:45', 612, 8546); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:00:15', '13:02:06', '13:42:35', 612, 8547); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:00:35', '13:02:30', '14:00:03', 631, 8548); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:01:53', '13:04:13', '15:16:34', 627, 8549); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:02:16', '13:07:52', '13:28:19', 612, 8550); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:02:56', '13:06:18', '13:15:18', 627, 8551); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:04:41', '13:10:30', '13:18:39', 631, 8552); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:05:53', '13:06:03', '13:22:37', 631, 8553); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:06:32', '13:06:57', '13:22:39', 612, 8554); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:07:13', '13:13:11', '16:19:25', 631, 8555); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:07:36', '13:17:58', '13:29:04', 612, 8556); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:08:11', '13:12:32', '13:28:50', 631, 8557); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:09:07', '13:18:53', '14:30:50', 631, 8558); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:11:24', '13:12:18', '13:13:49', 612, 8559); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:13:42', '13:13:43', '13:19:54', 627, 8560); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:14:20', '13:22:40', '14:26:34', 612, 8561); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:14:38', '13:21:47', '13:34:08', 612, 8562); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:17:10', '13:17:11', '13:24:17', 627, 8563); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:17:43', '13:19:05', '14:29:32', 612, 8564); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:18:00', '13:21:45', '14:27:56', 612, 8565); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:20:27', '13:24:17', '13:26:19', 627, 8566); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:21:01', '13:22:37', '14:13:38', 631, 8567); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:21:37', '13:28:20', '14:29:12', 612, 8568); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:21:40', '13:28:50', '13:51:44', 631, 8569); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:22:22', '13:26:20', '13:36:45', 627, 8570); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:22:52', '13:28:03', '13:52:20', 627, 8571); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:24:00', '13:29:04', '13:42:33', 612, 8572); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:25:05', '13:29:45', '13:43:42', 612, 8573); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:26:14', '13:35:42', '13:52:11', 612, 8574); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:27:20', '13:31:12', '13:48:35', 631, 8575); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:28:45', '13:30:33', '13:52:46', 627, 8576); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:29:06', '13:34:39', '13:52:24', 627, 8577); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:30:24', '13:40:06', '13:42:43', 627, 8578); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:30:54', '13:31:02', '13:33:59', 627, 8579); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:33:04', '13:34:00', '13:47:28', 627, 8580); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:39:26', '13:42:43', '13:47:53', 627, 8581); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:39:56', '13:47:53', '13:59:32', 627, 8582); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:41:33', '13:42:34', '14:23:16', 612, 8583); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:41:37', '13:47:29', '14:20:57', 627, 8584); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:43:32', '13:43:42', '14:24:58', 612, 8585); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:43:41', '13:51:44', '14:19:58', 631, 8586); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:43:59', '13:52:03', '14:27:41', 631, 8587); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:45:15', '13:48:50', '14:09:38', 627, 8588); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:48:09', '13:48:35', '16:08:40', 631, 8589); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:48:18', '13:48:51', '14:55:02', 631, 8590); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:53:45', '13:53:54', '13:59:37', 627, 8591); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:58:46', '13:59:32', '14:11:14', 627, 8592); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '13:59:47', '14:00:03', '14:21:21', 631, 8593); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:01:22', '14:03:09', '14:47:41', 631, 8594); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:03:14', '14:09:27', '14:36:37', 627, 8595); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:10:32', '14:13:38', '14:29:58', 631, 8596); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:11:08', '14:11:14', '14:25:22', 627, 8597); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:11:32', '14:19:23', '14:37:28', 627, 8598); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:11:56', '14:19:45', '14:50:40', 627, 8599); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:19:48', '14:25:23', '15:04:02', 627, 8600); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:20:03', '14:20:09', '15:37:22', 631, 8601); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:20:41', '14:21:21', '14:40:26', 631, 8602); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:21:00', '14:29:52', '14:38:26', 627, 8603); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:21:21', '14:27:41', '14:45:23', 631, 8604); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:22:51', '14:22:58', '14:38:46', 612, 8605); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:24:06', '14:24:17', '14:49:04', 612, 8606); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:24:15', '14:24:18', '14:38:59', 612, 8607); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:24:27', '14:29:58', '14:31:37', 631, 8608); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:24:41', '14:24:58', '14:38:48', 612, 8609); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:24:56', '14:26:35', '14:47:18', 612, 8610); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:25:38', '14:27:56', '14:45:51', 612, 8611); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:26:07', '14:29:12', '14:54:15', 612, 8612); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:26:47', '14:29:32', '14:49:22', 612, 8613); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:26:50', '14:30:50', '14:55:00', 631, 8614); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:27:11', '14:27:23', '14:30:57', 612, 8615); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:29:26', '14:31:38', '14:56:01', 631, 8616); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:29:50', '14:31:45', '14:53:50', 627, 8617); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:30:20', '14:36:37', '14:42:14', 627, 8618); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:34:24', '14:42:15', '15:07:42', 627, 8619); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:45:02', '14:45:52', '15:20:14', 612, 8620); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:35:56', '14:37:28', '15:02:20', 627, 8621); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:38:14', '14:38:27', '14:48:54', 627, 8622); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:38:17', '14:38:46', '15:12:02', 612, 8623); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:40:03', '14:46:18', '15:04:26', 627, 8624); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:40:13', '14:43:00', '15:03:23', 631, 8625); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:41:10', '14:47:23', '16:32:44', 631, 8626); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:41:32', '14:45:24', '14:54:48', 631, 8627); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:41:57', '14:47:42', '16:35:17', 631, 8628); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:47:00', '14:47:19', '14:55:47', 612, 8629); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:48:42', '14:54:49', '15:04:25', 631, 8630); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:48:55', '14:49:13', '15:02:35', 612, 8631); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:52:47', '14:52:53', '15:10:37', 612, 8632); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:53:24', '14:54:15', '15:08:04', 612, 8633); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:53:33', '14:55:00', '15:54:20', 631, 8634); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:54:09', '14:55:48', '15:08:00', 612, 8635); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:54:16', '14:55:02', '16:00:41', 631, 8636); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:56:08', '14:56:19', '15:08:01', 612, 8637); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:56:48', '14:56:52', '15:18:37', 631, 8638); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:57:33', '15:02:36', '15:38:31', 612, 8639); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '14:59:46', '15:03:23', '15:28:04', 631, 8640); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:00:38', '15:04:25', '15:25:42', 631, 8641); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:01:08', '15:01:11', '15:20:18', 612, 8642); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:07:26', '15:07:45', '15:19:25', 627, 8643); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:10:30', '15:10:37', '15:15:14', 612, 8644); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:11:55', '15:12:05', '15:24:20', 612, 8645); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:12:03', '15:12:09', '15:28:25', 627, 8646); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:14:23', '15:18:37', '15:32:26', 631, 8647); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:14:42', '15:14:46', '15:49:45', 627, 8648); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:16:03', '15:16:35', '16:04:23', 627, 8649); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:18:18', '15:25:42', '16:35:15', 631, 8650); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:18:53', '15:19:14', '15:25:15', 627, 8651); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:19:34', '15:20:14', '15:26:35', 612, 8652); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:20:36', '15:20:37', '15:27:55', 627, 8653); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:22:14', '15:28:05', '15:47:56', 631, 8654); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:23:38', '15:24:21', '15:33:55', 612, 8655); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:25:05', '15:25:15', '15:44:32', 627, 8656); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:25:39', '15:27:43', '15:41:44', 612, 8657); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:26:30', '15:27:00', '15:41:50', 627, 8658); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:26:38', '15:32:27', '15:54:16', 631, 8659); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:29:18', '15:29:21', '16:45:08', 631, 8660); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:31:08', '15:33:37', '15:47:08', 627, 8661); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:33:47', '15:37:22', '16:48:15', 631, 8662); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:37:19', '15:44:32', '15:55:54', 627, 8663); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:38:16', '15:47:09', '15:51:50', 627, 8664); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:44:40', '15:47:56', '16:45:42', 631, 8665); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:45:35', '15:54:16', '16:45:00', 631, 8666); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:50:39', '15:51:51', '15:58:16', 627, 8667); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-19', '15:50:58', '15:54:20', '16:44:57', 631, 8668); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '08:56:56', '08:59:10', '09:42:46', 612, 8669); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:00:54', '09:03:02', '12:56:01', 627, 8670); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:01:21', '09:05:11', '09:38:59', 631, 8671); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:01:25', '09:06:49', '09:19:50', 627, 8672); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:01:56', '09:02:03', '09:03:21', 612, 8673); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:02:00', '09:07:20', '09:42:14', 627, 8674); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:02:07', '09:02:16', '09:21:59', 612, 8675); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:02:16', '09:08:18', '10:03:00', 627, 8676); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:03:13', '09:03:21', '09:15:47', 612, 8677); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:04:55', '09:04:55', '10:30:08', 612, 8678); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:09:14', '09:09:17', '10:57:33', 612, 8679); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:15:03', '09:15:46', '10:10:01', 612, 8680); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:16:12', '09:16:19', '09:20:37', 627, 8681); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:16:46', '09:16:51', '09:42:05', 612, 8682); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:21:11', '09:22:00', '10:08:24', 612, 8683); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:26:26', '09:26:38', '09:51:05', 627, 8684); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:38:58', '09:39:01', '09:57:43', 627, 8685); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:39:07', '09:39:10', '10:20:10', 631, 8686); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:39:32', '09:39:37', '10:04:50', 631, 8687); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:39:38', '09:40:48', '11:11:35', 627, 8688); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:39:59', '09:42:15', '10:48:33', 627, 8689); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:42:17', '09:42:22', '10:21:13', 631, 8690); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:42:24', '09:42:42', '10:58:10', 612, 8691); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:43:01', '09:43:07', '10:44:29', 612, 8692); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:56:44', '09:56:55', '10:36:52', 627, 8693); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '09:58:11', '09:58:11', '10:07:54', 612, 8694); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:02:07', '10:02:11', '10:15:22', 631, 8695); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:02:35', '10:04:50', '11:00:29', 631, 8696); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:04:15', '10:04:32', '10:10:21', 612, 8697); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:04:33', '10:04:39', '12:58:47', 627, 8698); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:04:54', '10:05:01', '10:51:04', 627, 8699); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:08:17', '10:08:25', '10:33:43', 612, 8700); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:09:58', '10:10:22', '10:23:06', 612, 8701); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:14:46', '10:15:22', '10:26:16', 631, 8702); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:20:25', '10:20:32', '11:01:25', 631, 8703); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:21:41', '10:21:44', '11:16:28', 631, 8704); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:22:53', '10:23:07', '10:37:36', 612, 8705); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:25:19', '10:26:16', '11:08:29', 631, 8706); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:28:49', '10:28:52', '10:35:49', 627, 8707); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:29:46', '10:35:49', '10:38:59', 627, 8708); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:29:59', '10:30:09', '10:49:04', 612, 8709); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:33:42', '10:33:52', '10:56:12', 612, 8710); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:36:05', '10:37:37', '11:03:27', 612, 8711); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:36:35', '10:36:53', '10:44:52', 627, 8712); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:37:26', '10:37:36', '12:25:53', 627, 8713); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:37:42', '10:38:59', '11:33:21', 627, 8714); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:43:27', '10:44:10', '10:49:29', 612, 8715); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:44:01', '10:44:29', '11:07:54', 612, 8716); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:45:49', '10:57:24', '10:59:23', 612, 8717); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:46:10', '10:46:18', '10:53:16', 627, 8718); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:47:40', '10:57:33', '11:22:54', 612, 8719); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:48:03', '10:58:11', '11:13:35', 612, 8720); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:49:29', '10:49:30', '11:02:12', 612, 8721); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:49:31', '10:49:34', '11:14:47', 627, 8722); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:50:01', '10:50:41', '11:23:35', 627, 8723); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:52:21', '10:59:23', '11:04:36', 612, 8724); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:56:34', '11:07:55', '11:23:14', 612, 8725); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '10:58:14', '11:00:30', '11:47:14', 631, 8726); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:00:07', '11:04:37', '11:58:11', 612, 8727); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:00:34', '11:01:25', '11:21:01', 631, 8728); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:02:17', '11:03:35', '11:06:37', 627, 8729); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:03:13', '11:13:36', '12:03:54', 612, 8730); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:04:06', '11:04:44', '11:26:00', 631, 8731); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:04:55', '11:08:30', '11:55:18', 631, 8732); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:05:12', '11:13:28', '11:41:21', 631, 8733); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:07:02', '11:16:28', '12:03:21', 631, 8734); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:09:32', '11:10:02', '11:19:57', 627, 8735); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:12:29', '11:12:30', '11:38:24', 627, 8736); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:12:45', '11:13:47', '11:16:34', 627, 8737); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:14:02', '11:14:47', '11:28:10', 627, 8738); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:18:45', '11:21:01', '11:26:25', 631, 8739); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:22:04', '11:26:25', '11:37:23', 631, 8740); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:22:48', '11:22:55', '12:58:02', 612, 8741); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:23:08', '11:23:14', '11:32:22', 612, 8742); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:23:20', '11:24:14', '11:33:52', 627, 8743); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:24:00', '11:25:05', '11:48:33', 627, 8744); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:24:55', '11:28:11', '11:42:16', 627, 8745); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:25:50', '11:26:00', '12:17:07', 631, 8746); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:28:49', '11:33:34', '15:06:51', 627, 8747); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:29:37', '11:29:55', '11:51:55', 612, 8748); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:30:58', '11:38:25', '14:51:26', 627, 8749); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:31:57', '11:32:23', '11:41:27', 612, 8750); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:32:06', '11:32:09', '11:38:48', 627, 8751); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:34:59', '11:37:23', '11:49:38', 631, 8752); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:35:27', '11:41:21', '12:13:08', 631, 8753); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:35:32', '11:35:38', '12:07:11', 627, 8754); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:36:26', '11:36:29', '11:38:14', 627, 8755); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:37:35', '11:37:37', '12:13:19', 612, 8756); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:39:58', '11:47:15', '12:03:07', 631, 8757); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:40:31', '11:49:38', '11:55:25', 631, 8758); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:42:30', '11:42:36', '11:45:21', 627, 8759); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:45:15', '11:45:25', '12:09:09', 612, 8760); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:47:06', '11:50:35', '12:51:21', 631, 8761); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:47:41', '11:48:22', '13:04:38', 631, 8762); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:48:01', '11:48:34', '12:28:54', 627, 8763); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:48:09', '11:55:18', '12:08:51', 631, 8764); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:48:46', '11:55:26', '12:10:45', 631, 8765); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:49:41', '11:50:06', '12:38:38', 627, 8766); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:50:11', '11:51:55', '12:04:04', 612, 8767); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:51:08', '11:58:56', '12:18:13', 627, 8768); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:51:38', '11:54:00', '13:01:32', 631, 8769); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:51:46', '11:58:12', '12:05:37', 612, 8770); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:56:19', '12:00:33', '12:06:56', 627, 8771); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:59:06', '12:06:56', '12:36:36', 627, 8772); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '11:59:23', '12:03:08', '12:13:25', 631, 8773); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:00:22', '12:07:28', '12:45:59', 627, 8774); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:01:08', '12:03:21', '13:36:01', 631, 8775); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:03:12', '12:08:52', '12:17:05', 631, 8776); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:03:50', '12:13:08', '12:21:58', 631, 8777); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:05:00', '12:10:45', '12:42:06', 631, 8778); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:06:03', '12:07:11', '12:08:19', 627, 8779); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:06:38', '12:06:58', '12:13:00', 612, 8780); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:06:59', '12:10:42', '12:33:29', 612, 8781); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:08:12', '12:13:25', '12:48:57', 631, 8782); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:09:17', '12:09:59', '12:19:10', 612, 8783); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:09:57', '12:13:00', '12:37:57', 612, 8784); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:11:04', '12:21:58', '12:28:54', 631, 8785); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:13:01', '12:17:05', '12:47:35', 631, 8786); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:14:31', '12:14:41', '13:25:13', 627, 8787); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:16:55', '12:17:08', '13:05:10', 631, 8788); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:18:42', '12:19:10', '12:35:31', 612, 8789); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:19:35', '12:28:55', '13:01:56', 631, 8790); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:20:07', '12:21:43', '12:48:57', 612, 8791); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:20:29', '12:25:01', '12:34:34', 627, 8792); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:21:13', '12:25:05', '12:36:55', 627, 8793); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:21:40', '12:25:53', '12:56:03', 627, 8794); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:22:48', '12:26:54', '12:34:44', 627, 8795); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:23:46', '12:28:54', '12:38:14', 627, 8796); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:24:43', '12:33:29', '12:40:42', 612, 8797); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:26:09', '12:26:20', '12:59:39', 612, 8798); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:29:42', '12:35:31', '12:55:22', 612, 8799); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:31:36', '12:37:57', '12:58:52', 612, 8800); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:33:39', '12:34:47', '13:01:28', 627, 8801); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:34:12', '12:40:43', '13:47:51', 612, 8802); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:35:34', '12:45:59', '14:12:47', 627, 8803); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:35:51', '12:48:57', '12:58:44', 612, 8804); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:39:45', '12:39:47', '12:54:04', 627, 8805); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:40:09', '12:40:17', '12:51:30', 627, 8806); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:41:48', '12:42:06', '12:58:58', 631, 8807); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:45:17', '12:48:57', '12:56:32', 631, 8808); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:45:34', '12:50:17', '13:02:05', 627, 8809); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:45:43', '12:51:17', '12:56:36', 631, 8810); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:46:07', '12:51:31', '13:12:18', 627, 8811); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:47:29', '12:56:37', '13:02:55', 631, 8812); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:47:52', '12:54:05', '13:06:15', 627, 8813); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:48:10', '12:54:58', '13:12:12', 627, 8814); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:49:17', '12:57:07', '13:26:13', 631, 8815); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:49:24', '12:50:52', '13:17:48', 627, 8816); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:49:53', '12:56:01', '14:45:52', 627, 8817); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:53:10', '12:58:58', '13:10:27', 631, 8818); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:53:21', '12:56:04', '13:42:38', 627, 8819); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:53:47', '13:02:55', '13:20:11', 631, 8820); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:53:48', '13:01:28', '13:12:21', 627, 8821); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:54:10', '13:01:56', '13:04:02', 631, 8822); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:54:34', '12:55:23', '13:06:24', 612, 8823); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:54:40', '13:04:02', '13:26:23', 631, 8824); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:55:08', '12:58:03', '13:19:02', 612, 8825); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:55:38', '12:58:44', '13:33:21', 612, 8826); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:56:12', '13:01:32', '13:34:34', 631, 8827); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:57:38', '13:00:49', '13:12:02', 612, 8828); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:57:59', '13:02:05', '13:37:12', 627, 8829); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '12:58:16', '12:58:47', '13:59:32', 627, 8830); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:01:29', '13:14:44', '13:19:27', 612, 8831); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:03:16', '13:05:10', '13:17:19', 631, 8832); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:03:56', '13:06:16', '13:12:12', 627, 8833); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:05:07', '13:10:27', '13:20:35', 631, 8834); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:06:26', '13:12:03', '13:50:09', 612, 8835); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:06:57', '13:19:02', '13:25:40', 612, 8836); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:09:54', '13:17:20', '14:14:57', 631, 8837); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:10:10', '13:12:12', '13:22:44', 627, 8838); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:10:54', '13:25:41', '13:33:33', 612, 8839); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:11:29', '13:20:12', '13:50:32', 631, 8840); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:14:32', '13:14:40', '13:24:42', 627, 8841); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:14:45', '13:20:35', '13:29:58', 631, 8842); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:15:24', '13:19:28', '13:28:44', 612, 8843); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:17:36', '13:28:44', '13:57:04', 612, 8844); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:18:48', '13:29:37', '13:33:01', 612, 8845); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:20:54', '13:22:44', '13:27:33', 627, 8846); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:21:06', '13:22:35', '13:28:10', 627, 8847); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:21:25', '13:33:21', '13:48:44', 612, 8848); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:21:58', '13:22:01', '13:27:23', 612, 8849); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:22:12', '13:23:11', '13:28:29', 627, 8850); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:22:38', '13:24:43', '13:32:43', 627, 8851); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:22:39', '13:22:40', '13:25:22', 631, 8852); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:23:12', '13:23:26', '17:12:49', 631, 8853); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:23:26', '13:27:49', '17:11:39', 631, 8854); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:23:31', '13:26:13', '13:48:37', 631, 8855); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:23:56', '13:33:34', '13:38:56', 612, 8856); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:29:27', '13:29:58', '14:00:45', 631, 8857); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:31:07', '13:32:44', '13:41:28', 627, 8858); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:32:02', '13:33:02', '13:52:57', 612, 8859); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:32:52', '13:34:28', '13:48:47', 627, 8860); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:35:43', '13:38:56', '13:47:05', 612, 8861); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:38:34', '13:42:38', '15:01:33', 627, 8862); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:39:19', '13:40:46', '13:59:16', 627, 8863); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:39:49', '13:42:36', '14:20:09', 631, 8864); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:40:32', '13:48:21', '14:11:44', 631, 8865); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:41:04', '13:47:06', '13:58:02', 612, 8866); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:41:26', '13:44:06', '14:09:35', 627, 8867); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:42:34', '13:47:51', '14:00:41', 612, 8868); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:43:01', '13:48:45', '15:12:48', 612, 8869); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:44:49', '13:54:31', '14:03:08', 612, 8870); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:45:14', '13:57:04', '15:11:20', 612, 8871); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:46:08', '13:49:34', '15:17:59', 627, 8872); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:46:30', '13:48:24', '14:31:54', 627, 8873); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:46:45', '13:48:37', '14:18:31', 631, 8874); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:47:21', '13:50:32', '14:09:08', 631, 8875); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:48:45', '13:48:54', '14:01:52', 631, 8876); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:48:56', '13:48:59', '14:45:23', 627, 8877); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:49:15', '13:59:32', '14:18:45', 627, 8878); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:50:29', '13:50:38', '14:13:56', 627, 8879); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:51:16', '14:00:46', '14:04:47', 631, 8880); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:51:21', '13:59:36', '14:09:30', 627, 8881); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:51:51', '13:58:03', '13:59:24', 612, 8882); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:52:03', '13:52:57', '15:07:19', 612, 8883); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:52:34', '13:59:25', '14:22:58', 612, 8884); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:54:08', '13:59:55', '14:22:59', 627, 8885); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:54:47', '14:04:47', '14:09:53', 631, 8886); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:58:48', '14:06:12', '14:22:10', 627, 8887); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '13:59:10', '14:18:45', '14:47:44', 627, 8888); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:00:32', '14:00:34', '14:01:58', 612, 8889); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:01:37', '14:09:08', '14:20:59', 631, 8890); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:02:41', '14:02:51', '14:24:54', 612, 8891); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:03:00', '14:03:09', '14:10:07', 612, 8892); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:03:47', '14:09:53', '14:20:21', 631, 8893); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:04:02', '14:07:45', '14:14:37', 612, 8894); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:04:28', '14:11:44', '14:21:16', 631, 8895); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:05:53', '14:10:07', '14:29:22', 612, 8896); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:10:37', '14:18:31', '14:24:11', 631, 8897); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:11:10', '14:12:40', '14:49:02', 612, 8898); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:11:11', '14:20:09', '14:41:13', 631, 8899); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:11:32', '14:20:22', '14:49:00', 631, 8900); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:11:45', '14:13:19', '08:43:47', 612, 8901); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:12:23', '14:14:37', '14:31:03', 612, 8902); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:14:34', '14:22:59', '14:51:49', 612, 8903); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:14:39', '14:14:57', '16:02:22', 631, 8904); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:15:30', '14:24:55', '14:51:31', 612, 8905); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:17:47', '14:21:00', '14:35:24', 631, 8906); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:18:44', '14:21:16', '14:34:47', 631, 8907); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:19:38', '14:29:22', '14:34:24', 612, 8908); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:26:47', '14:27:25', '15:48:53', 631, 8909); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:27:31', '14:34:47', '14:54:30', 631, 8910); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:30:49', '14:31:03', '14:51:50', 612, 8911); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:31:27', '14:34:25', '14:48:06', 612, 8912); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:33:42', '14:35:24', '14:54:01', 631, 8913); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:35:26', '14:35:36', '14:47:09', 627, 8914); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:36:29', '14:37:35', '15:12:20', 627, 8915); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:36:52', '14:37:02', '14:44:23', 627, 8916); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:40:43', '14:41:13', '15:16:58', 631, 8917); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:43:13', '14:49:00', '14:53:15', 631, 8918); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:44:17', '14:48:07', '15:05:26', 612, 8919); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:45:02', '14:53:16', '14:57:16', 631, 8920); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:47:25', '14:47:44', '16:07:04', 627, 8921); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:47:36', '14:54:01', '15:10:41', 631, 8922); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:48:43', '14:49:03', '15:05:08', 612, 8923); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:50:04', '14:51:31', '15:01:45', 612, 8924); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:50:35', '14:54:30', '15:28:31', 631, 8925); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:50:40', '14:51:33', '14:57:49', 627, 8926); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:51:30', '14:51:49', '14:57:28', 612, 8927); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:54:17', '14:57:16', '15:30:54', 631, 8928); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:57:04', '14:57:29', '15:07:11', 612, 8929); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:57:27', '15:01:46', '15:36:38', 612, 8930); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:58:05', '15:00:20', '15:08:48', 631, 8931); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:58:56', '14:59:04', '15:46:10', 627, 8932); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '14:59:21', '15:01:34', '15:43:19', 627, 8933); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:01:18', '15:01:33', '15:18:14', 627, 8934); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:02:17', '15:05:09', '15:15:45', 612, 8935); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:02:24', '15:02:29', '15:06:34', 612, 8936); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:02:28', '15:06:29', '16:32:23', 631, 8937); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:02:34', '15:06:51', '15:09:12', 627, 8938); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:03:36', '15:09:49', '16:02:31', 627, 8939); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:06:10', '15:07:12', '15:14:56', 612, 8940); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:06:28', '15:07:19', '08:44:01', 612, 8941); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:07:17', '15:08:48', '15:36:04', 631, 8942); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:07:47', '15:09:12', '16:16:21', 627, 8943); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:07:48', '15:10:41', '15:27:10', 631, 8944); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:07:55', '15:11:20', '15:26:59', 612, 8945); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:08:15', '15:16:59', '15:20:02', 631, 8946); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:09:41', '15:12:12', '15:17:30', 627, 8947); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:09:57', '15:12:20', '15:22:53', 627, 8948); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:11:20', '15:16:05', '15:42:48', 627, 8949); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:12:16', '15:20:02', '15:27:25', 631, 8950); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:12:38', '15:12:49', '08:44:07', 612, 8951); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:13:20', '15:15:45', '08:44:03', 612, 8952); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:15:35', '15:15:38', '15:28:03', 612, 8953); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:17:08', '15:17:41', '15:33:46', 612, 8954); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:18:04', '15:28:03', '08:43:45', 612, 8955); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:18:09', '15:27:10', '15:47:57', 631, 8956); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:19:00', '15:27:26', '17:11:52', 631, 8957); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:20:46', '15:20:55', '15:40:50', 627, 8958); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:21:48', '15:28:32', '16:04:04', 631, 8959); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:22:29', '15:22:53', '15:25:11', 627, 8960); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:23:47', '15:26:51', '15:32:08', 627, 8961); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:24:25', '15:33:46', '08:43:59', 612, 8962); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:26:29', '15:27:00', '08:43:53', 612, 8963); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:30:26', '15:30:55', '15:59:06', 631, 8964); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:32:10', '15:38:01', '15:58:26', 627, 8965); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:33:56', '15:36:38', '08:44:09', 612, 8966); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:34:32', '15:36:04', '15:58:14', 631, 8967); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:34:36', '15:38:15', '15:55:00', 627, 8968); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:34:55', '15:34:55', '08:43:55', 612, 8969); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:36:32', '15:40:50', '16:10:37', 627, 8970); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:37:33', '15:43:20', '16:14:46', 627, 8971); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:39:37', '15:42:48', '16:09:24', 627, 8972); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:41:37', '15:46:11', '16:13:43', 627, 8973); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:45:27', '15:47:58', '16:02:13', 631, 8974); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:48:08', '15:48:54', '16:41:12', 631, 8975); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:48:45', '15:54:39', '15:59:30', 627, 8976); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:54:42', '15:58:15', '17:12:50', 631, 8977); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:55:08', '15:59:07', '17:12:46', 631, 8978); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-20', '15:58:06', '16:02:13', '16:40:24', 631, 8979); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:01:21', '09:02:04', '09:26:25', 631, 8980); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:01:52', '09:04:05', '09:28:36', 631, 8981); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:02:21', '09:08:27', '09:12:07', 631, 8982); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:06:23', '09:11:35', '10:06:17', 631, 8983); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:07:40', '09:12:07', '09:59:32', 631, 8984); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:21:09', '09:21:13', '09:50:40', 627, 8985); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:21:47', '09:21:59', '10:29:03', 627, 8986); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:25:04', '09:25:06', '09:38:43', 612, 8987); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:25:23', '09:25:59', '09:57:32', 627, 8988); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:26:07', '09:26:25', '10:27:54', 631, 8989); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:27:21', '09:28:36', '10:08:58', 631, 8990); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:36:48', '09:41:08', '10:24:23', 631, 8991); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:38:39', '09:38:39', '09:53:26', 612, 8992); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:46:55', '09:47:01', '09:54:38', 627, 8993); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:47:59', '09:52:18', '10:25:18', 627, 8994); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:49:17', '09:50:43', '11:05:41', 627, 8995); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:51:31', '09:53:53', '10:00:38', 627, 8996); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:51:52', '09:59:33', '10:15:30', 631, 8997); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:56:52', '09:57:32', '10:17:06', 627, 8998); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '09:58:12', '10:06:17', '10:08:20', 631, 8999); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:05:18', '10:05:20', '11:00:50', 627, 9000); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:07:13', '10:08:20', '10:24:06', 631, 9001); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:07:58', '10:08:58', '10:59:44', 631, 9002); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:08:03', '10:08:04', '12:09:09', 612, 9003); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:10:03', '10:10:15', '11:04:50', 612, 9004); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:13:29', '10:13:38', '10:35:19', 612, 9005); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:13:38', '10:15:30', '10:27:03', 631, 9006); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:14:21', '10:24:06', '12:34:53', 631, 9007); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:15:06', '10:17:14', '12:33:41', 631, 9008); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:16:25', '10:24:23', '11:30:16', 631, 9009); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:16:53', '10:17:00', '12:10:57', 612, 9010); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:16:58', '10:17:04', '10:49:37', 627, 9011); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:18:47', '10:27:03', '12:08:20', 631, 9012); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:27:07', '10:27:54', '10:45:30', 631, 9013); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:29:17', '10:29:23', '10:48:02', 627, 9014); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:34:54', '10:35:19', '10:40:09', 612, 9015); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:35:13', '10:35:17', '10:38:19', 612, 9016); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:39:37', '10:40:09', '11:07:24', 612, 9017); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:45:12', '10:45:30', '10:48:01', 631, 9018); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:46:18', '10:48:01', '11:13:07', 631, 9019); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:47:09', '10:47:19', '11:03:31', 627, 9020); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:47:56', '10:48:04', '11:20:30', 612, 9021); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:48:00', '10:49:37', '10:55:17', 627, 9022); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:54:17', '10:54:37', '13:02:18', 612, 9023); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:55:44', '10:59:44', '11:17:00', 631, 9024); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '10:56:52', '11:07:24', '11:33:21', 612, 9025); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:01:31', '11:03:33', '13:30:43', 631, 9026); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:03:49', '11:04:51', '12:37:29', 612, 9027); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:04:36', '11:05:41', '12:24:44', 627, 9028); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:06:15', '11:07:06', '11:18:46', 627, 9029); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:10:52', '11:10:53', '11:29:10', 627, 9030); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:11:04', '11:13:07', '11:27:20', 631, 9031); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:14:24', '11:17:00', '11:32:15', 631, 9032); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:16:44', '11:18:47', '12:12:34', 627, 9033); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:17:32', '11:27:21', '11:31:15', 631, 9034); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:18:51', '11:20:30', '11:33:03', 612, 9035); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:23:17', '11:23:35', '11:29:46', 612, 9036); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:23:37', '11:29:46', '11:49:02', 612, 9037); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:24:13', '11:30:16', '12:22:28', 631, 9038); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:26:15', '11:29:07', '11:41:57', 612, 9039); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:27:01', '11:31:15', '12:08:26', 631, 9040); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:27:28', '11:32:15', '11:37:11', 631, 9041); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:27:38', '11:33:03', '12:06:37', 612, 9042); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:30:10', '11:37:11', '12:15:09', 631, 9043); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:39:02', '11:39:11', '12:02:00', 612, 9044); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:40:56', '11:41:57', '11:59:15', 612, 9045); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:47:45', '11:47:48', '11:54:42', 627, 9046); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:48:45', '11:49:03', '12:11:16', 612, 9047); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:49:25', '11:49:25', '12:39:02', 627, 9048); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '11:58:43', '11:58:48', '12:10:48', 627, 9049); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:00:46', '12:00:50', '12:05:31', 627, 9050); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:01:52', '12:02:00', '12:13:48', 612, 9051); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:02:30', '12:02:44', '12:38:55', 627, 9052); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:03:22', '12:03:29', '12:42:10', 627, 9053); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:04:01', '12:08:26', '12:59:09', 631, 9054); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:04:28', '12:04:37', '12:16:00', 627, 9055); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:05:55', '12:10:49', '12:17:38', 627, 9056); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:06:08', '12:06:37', '12:25:56', 612, 9057); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:07:58', '12:09:09', '12:33:03', 612, 9058); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:10:51', '12:10:57', '12:48:34', 612, 9059); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:11:03', '12:11:16', '12:20:01', 612, 9060); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:12:22', '12:12:34', '15:43:23', 627, 9061); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:12:58', '12:15:09', '12:22:15', 631, 9062); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:13:29', '12:16:00', '13:22:58', 627, 9063); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:13:42', '12:13:51', '12:57:43', 612, 9064); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:19:07', '12:20:02', '12:33:13', 612, 9065); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:19:35', '12:22:15', '13:03:09', 631, 9066); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:21:50', '12:22:28', '12:38:13', 631, 9067); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:22:20', '12:24:44', '12:35:00', 627, 9068); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:23:16', '12:25:56', '12:51:28', 612, 9069); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:23:20', '12:24:05', '13:10:07', 627, 9070); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:26:03', '12:28:58', '12:34:51', 627, 9071); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:26:03', '12:34:54', '12:52:55', 631, 9072); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:27:58', '12:33:03', '13:08:21', 612, 9073); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:28:01', '12:35:00', '13:06:32', 627, 9074); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:28:37', '12:38:14', '12:44:36', 631, 9075); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:30:15', '12:37:29', '14:31:50', 612, 9076); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:34:42', '12:44:18', '13:25:14', 612, 9077); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:35:15', '12:44:37', '12:59:07', 631, 9078); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:35:34', '12:35:44', '12:48:23', 612, 9079); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:37:47', '12:37:52', '12:49:19', 627, 9080); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:40:03', '12:40:06', '13:41:04', 627, 9081); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:42:55', '12:42:55', '12:53:44', 612, 9082); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:43:06', '12:49:20', '13:02:43', 627, 9083); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:44:11', '12:52:56', '12:54:50', 631, 9084); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:46:51', '12:55:15', '13:05:31', 627, 9085); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:47:34', '12:54:50', '12:59:15', 631, 9086); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:47:58', '12:48:34', '13:25:18', 612, 9087); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:48:13', '12:48:23', '13:02:25', 612, 9088); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:49:09', '12:51:29', '14:06:21', 612, 9089); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:50:20', '12:55:32', '13:14:19', 631, 9090); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:50:42', '12:57:44', '13:16:07', 612, 9091); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:51:33', '12:59:07', '13:16:53', 631, 9092); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:53:48', '12:59:10', '13:38:47', 631, 9093); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:54:57', '12:55:04', '13:19:10', 631, 9094); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:56:56', '12:59:15', '13:12:53', 631, 9095); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:57:04', '13:03:09', '13:32:41', 631, 9096); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:57:15', '13:02:19', '13:25:18', 612, 9097); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:58:09', '13:02:25', '13:05:27', 612, 9098); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '12:59:27', '13:02:43', '13:23:13', 627, 9099); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:00:54', '13:13:47', '13:22:37', 631, 9100); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:01:16', '13:01:22', '13:07:09', 627, 9101); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:05:12', '13:06:34', '13:15:22', 627, 9102); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:05:43', '13:14:19', '13:31:36', 631, 9103); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:06:28', '13:06:48', '13:33:29', 627, 9104); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:07:35', '13:16:53', '13:35:55', 631, 9105); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:08:01', '13:10:36', '13:22:21', 627, 9106); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:08:07', '13:08:21', '13:23:27', 612, 9107); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:08:19', '13:08:24', '13:40:29', 627, 9108); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:10:58', '13:11:02', '13:17:53', 627, 9109); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:11:06', '13:11:15', '13:31:49', 612, 9110); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:11:07', '13:22:37', '13:43:11', 631, 9111); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:12:05', '13:31:50', '13:45:17', 612, 9112); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:12:48', '13:30:25', '18:55:29', 631, 9113); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:14:19', '13:31:36', '13:37:10', 631, 9114); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:14:33', '13:14:53', '13:30:31', 627, 9115); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:14:43', '13:15:22', '14:00:59', 627, 9116); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:15:01', '13:16:07', '13:23:28', 612, 9117); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:15:03', '13:19:10', '13:23:20', 631, 9118); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:15:14', '13:22:21', '13:32:23', 627, 9119); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:15:57', '13:22:58', '13:45:19', 627, 9120); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:19:22', '13:23:20', '17:05:21', 631, 9121); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:19:39', '13:32:42', '13:45:32', 631, 9122); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:20:10', '13:35:56', '13:37:37', 631, 9123); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:22:37', '13:23:13', '13:37:52', 627, 9124); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:23:24', '13:23:28', '13:50:21', 612, 9125); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:23:56', '13:37:11', '13:49:49', 631, 9126); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:25:10', '13:25:18', '14:29:45', 612, 9127); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:26:43', '13:37:37', '13:47:52', 631, 9128); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:27:08', '13:30:31', '13:45:29', 627, 9129); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:27:11', '13:27:29', '13:51:23', 612, 9130); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:28:41', '13:30:43', '14:26:31', 631, 9131); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:29:38', '13:39:08', '14:16:23', 631, 9132); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:29:55', '13:43:11', '13:44:16', 631, 9133); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:29:59', '13:30:00', '13:35:28', 612, 9134); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:30:15', '13:44:17', '13:54:27', 631, 9135); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:30:37', '13:31:46', '14:08:19', 631, 9136); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:31:34', '13:46:00', '14:27:59', 631, 9137); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:33:36', '13:33:37', '14:28:22', 612, 9138); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:35:15', '13:35:28', '13:51:10', 612, 9139); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:36:30', '13:45:32', '14:00:21', 631, 9140); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:37:25', '13:37:52', '13:47:44', 627, 9141); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:40:12', '13:50:22', '14:01:53', 612, 9142); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:42:36', '13:42:46', '13:51:32', 627, 9143); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:42:54', '13:47:52', '14:03:30', 631, 9144); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:46:19', '13:47:54', '14:15:26', 627, 9145); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:46:39', '13:51:11', '14:18:20', 612, 9146); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:46:49', '13:47:11', '13:55:35', 627, 9147); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:47:11', '13:49:49', '13:51:33', 631, 9148); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:47:22', '13:48:58', '13:56:25', 627, 9149); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:47:33', '13:47:39', '14:01:45', 612, 9150); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:48:37', '13:51:24', '14:21:52', 612, 9151); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:48:38', '13:51:54', '14:23:35', 631, 9152); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:49:30', '13:54:28', '14:00:45', 631, 9153); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:49:44', '13:50:45', '13:53:27', 627, 9154); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:50:10', '13:51:32', '14:01:49', 627, 9155); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:51:38', '14:00:22', '14:04:02', 631, 9156); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:56:07', '14:00:45', '14:24:03', 631, 9157); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:58:05', '14:03:31', '14:40:14', 631, 9158); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '13:59:21', '14:04:02', '14:05:09', 631, 9159); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:00:29', '14:00:59', '14:06:10', 627, 9160); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:00:43', '14:00:46', '14:11:45', 627, 9161); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:00:51', '14:06:10', '14:18:35', 627, 9162); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:01:29', '14:01:36', '14:09:17', 627, 9163); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:01:58', '14:09:17', '14:25:19', 627, 9164); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:03:09', '14:05:10', '14:11:27', 631, 9165); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:03:24', '14:11:28', '14:54:07', 631, 9166); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:05:07', '14:06:21', '14:20:20', 612, 9167); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:06:29', '14:06:36', '14:32:03', 627, 9168); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:06:50', '14:08:19', '14:19:46', 631, 9169); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:09:14', '14:11:45', '14:15:12', 627, 9170); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:11:40', '14:15:26', '14:38:43', 627, 9171); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:12:01', '14:19:47', '14:38:14', 631, 9172); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:13:46', '14:16:23', '14:25:21', 631, 9173); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:13:55', '14:15:29', '14:21:28', 627, 9174); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:14:08', '14:14:15', '14:48:39', 612, 9175); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:15:24', '14:23:36', '14:29:36', 631, 9176); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:18:08', '14:24:04', '15:32:54', 631, 9177); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:18:11', '14:18:20', '14:30:02', 612, 9178); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:18:25', '14:18:35', '15:24:26', 627, 9179); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:19:06', '14:20:20', '14:50:02', 612, 9180); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:20:03', '14:22:09', '14:49:08', 627, 9181); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:21:21', '14:21:38', '15:01:00', 612, 9182); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:21:34', '14:26:32', '14:50:12', 631, 9183); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:21:41', '14:21:52', '15:38:50', 612, 9184); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:22:32', '14:25:21', '14:47:17', 631, 9185); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:23:38', '14:28:09', '15:03:55', 627, 9186); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:24:54', '14:29:36', '14:45:02', 631, 9187); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:26:37', '14:28:23', '15:00:37', 612, 9188); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:26:49', '14:27:24', '14:46:01', 627, 9189); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:27:20', '14:27:23', '14:43:30', 612, 9190); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:28:15', '14:31:51', '14:50:10', 612, 9191); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:29:37', '14:29:46', '14:50:12', 612, 9192); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:29:44', '14:30:44', '14:36:59', 627, 9193); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:33:00', '14:33:19', '15:10:59', 627, 9194); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:34:23', '14:38:28', '14:50:03', 612, 9195); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:37:24', '14:38:15', '14:53:44', 631, 9196); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:38:48', '14:40:14', '14:45:29', 631, 9197); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:40:25', '14:47:12', '15:55:57', 627, 9198); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:40:36', '14:45:03', '14:52:01', 631, 9199); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:41:11', '14:45:30', '14:58:24', 631, 9200); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:41:14', '14:41:34', '14:58:58', 627, 9201); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:42:05', '14:47:17', '15:10:15', 631, 9202); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:44:58', '14:52:02', '15:08:26', 631, 9203); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:45:30', '14:46:02', '15:10:59', 627, 9204); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:48:27', '14:49:08', '14:54:44', 627, 9205); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:48:51', '14:48:56', '15:20:04', 612, 9206); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:49:31', '14:50:12', '15:31:36', 631, 9207); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:49:39', '14:54:07', '15:19:42', 631, 9208); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:50:51', '14:54:44', '15:15:15', 627, 9209); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:52:35', '14:58:24', '15:15:23', 631, 9210); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:52:55', '14:53:44', '15:06:48', 631, 9211); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:53:46', '14:53:51', '15:01:37', 612, 9212); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '14:57:51', '15:08:27', '15:50:29', 631, 9213); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:00:06', '15:00:37', '15:19:33', 612, 9214); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:00:21', '15:01:00', '15:02:00', 612, 9215); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:03:20', '15:03:23', '15:33:08', 612, 9216); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:03:48', '15:04:35', '15:20:06', 627, 9217); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:06:34', '15:06:48', '16:00:13', 631, 9218); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:07:40', '15:15:24', '15:48:53', 631, 9219); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:08:52', '15:08:57', '15:38:50', 612, 9220); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:09:33', '15:11:45', '15:19:53', 612, 9221); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:11:51', '15:19:43', '16:00:02', 631, 9222); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:13:36', '15:24:00', '15:26:02', 631, 9223); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:13:41', '15:15:15', '15:31:48', 627, 9224); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:15:47', '15:26:34', '15:37:21', 631, 9225); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:19:22', '15:20:59', '15:38:50', 612, 9226); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:19:53', '15:20:04', '15:47:22', 627, 9227); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:20:20', '15:20:24', '15:23:25', 612, 9228); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:21:21', '15:23:27', '15:38:50', 612, 9229); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:23:58', '15:24:06', '15:38:50', 612, 9230); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:24:09', '15:24:26', '15:49:40', 627, 9231); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:26:57', '15:31:12', '15:37:59', 627, 9232); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:27:23', '15:31:48', '15:39:52', 627, 9233); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:27:39', '15:30:21', '15:38:50', 612, 9234); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:27:48', '15:27:54', '15:43:26', 627, 9235); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:28:16', '15:31:49', '15:54:07', 627, 9236); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:30:36', '15:37:48', '16:04:25', 627, 9237); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:31:11', '15:31:37', '16:00:09', 631, 9238); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:32:09', '15:32:54', '17:17:09', 631, 9239); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:34:22', '15:49:41', '15:56:34', 627, 9240); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:34:38', '15:37:21', '15:52:45', 631, 9241); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:35:28', '15:37:59', '16:03:46', 627, 9242); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:35:46', '15:39:52', '16:00:44', 627, 9243); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:41:19', '15:43:25', '16:07:33', 627, 9244); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:43:39', '15:57:25', '16:07:27', 627, 9245); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:50:40', '15:54:07', '16:00:15', 627, 9246); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:51:49', '15:51:55', '16:03:34', 627, 9247); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-21', '15:52:23', '15:52:45', '16:52:42', 631, 9248); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '08:57:12', '08:57:22', '09:17:05', 612, 9249); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:02:18', '09:07:17', '11:41:56', 631, 9250); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:03:05', '09:04:33', '09:21:00', 631, 9251); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:04:59', '09:05:01', '09:52:17', 612, 9252); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:08:20', '09:08:25', '09:39:35', 631, 9253); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:12:07', '09:12:15', '10:09:22', 631, 9254); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:16:51', '09:21:00', '09:30:25', 631, 9255); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:17:02', '09:17:05', '09:46:26', 612, 9256); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:19:43', '09:27:43', '12:33:10', 631, 9257); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:29:57', '09:30:25', '09:41:02', 631, 9258); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:34:13', '09:34:17', '10:12:51', 612, 9259); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:36:18', '09:41:03', '10:53:58', 631, 9260); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:42:01', '09:42:11', '13:12:09', 612, 9261); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:49:16', '09:49:25', '10:04:40', 627, 9262); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:50:53', '09:50:57', '11:15:46', 612, 9263); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:54:33', '09:54:37', '09:59:08', 612, 9264); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:56:17', '09:56:18', '10:21:09', 627, 9265); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:57:39', '09:59:08', '10:46:23', 612, 9266); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '09:59:01', '09:59:08', '13:21:22', 612, 9267); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:04:13', '10:04:14', '10:24:32', 627, 9268); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:04:43', '10:04:47', '10:11:24', 627, 9269); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:05:36', '10:05:37', '12:00:46', 631, 9270); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:06:32', '10:06:50', '10:27:50', 627, 9271); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:07:46', '10:07:51', '11:18:42', 627, 9272); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:08:12', '10:21:09', '10:26:10', 627, 9273); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:09:16', '10:09:23', '11:20:50', 631, 9274); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:10:14', '10:11:24', '10:48:53', 627, 9275); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:11:31', '10:26:10', '10:47:02', 627, 9276); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:11:56', '10:12:51', '10:18:32', 612, 9277); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:12:46', '10:16:35', '10:21:20', 627, 9278); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:13:56', '10:17:02', '10:54:03', 627, 9279); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:14:48', '10:14:49', '10:41:20', 627, 9280); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:18:15', '10:18:32', '10:27:22', 612, 9281); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:19:02', '10:19:12', '10:50:38', 627, 9282); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:27:16', '10:27:22', '10:34:33', 612, 9283); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:29:42', '10:29:43', '10:38:00', 627, 9284); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:34:24', '10:34:33', '11:03:06', 612, 9285); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:36:36', '10:37:12', '11:03:04', 631, 9286); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:37:27', '10:39:50', '11:10:48', 612, 9287); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:39:57', '10:47:02', '11:19:44', 627, 9288); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:40:32', '10:40:36', '11:41:09', 631, 9289); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:40:44', '10:40:51', '10:50:55', 627, 9290); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:43:31', '10:46:23', '12:49:49', 612, 9291); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '10:53:44', '10:53:58', '11:51:57', 631, 9292); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:02:56', '11:03:05', '11:41:12', 631, 9293); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:02:59', '11:03:07', '11:20:37', 612, 9294); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:02:59', '11:04:09', '11:39:21', 627, 9295); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:03:27', '11:03:37', '11:31:12', 627, 9296); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:04:02', '11:04:14', '12:14:10', 612, 9297); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:05:49', '11:05:51', '11:10:23', 627, 9298); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:10:37', '11:10:39', '11:18:37', 612, 9299); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:12:56', '11:12:56', '11:14:09', 627, 9300); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:14:16', '11:14:20', '11:19:50', 627, 9301); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:14:36', '11:19:44', '12:11:13', 627, 9302); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:15:13', '11:15:28', '11:38:59', 627, 9303); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:15:30', '11:15:44', '12:52:15', 627, 9304); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:15:32', '11:15:46', '11:28:49', 612, 9305); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:17:22', '11:18:42', '12:17:23', 627, 9306); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:19:17', '11:20:37', '12:16:02', 612, 9307); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:19:38', '11:20:50', '11:30:46', 631, 9308); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:22:37', '11:22:41', '11:30:40', 627, 9309); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:26:47', '11:28:50', '12:24:04', 612, 9310); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:30:11', '11:30:47', '12:06:59', 631, 9311); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:36:11', '11:36:38', '11:49:26', 627, 9312); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:39:29', '11:41:12', '12:10:42', 631, 9313); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:40:50', '11:41:10', '12:02:31', 631, 9314); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:41:15', '11:41:56', '12:10:46', 631, 9315); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:44:12', '11:44:36', '12:54:35', 631, 9316); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:47:14', '11:51:57', '12:23:04', 631, 9317); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:49:37', '11:49:41', '11:56:18', 627, 9318); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:49:58', '11:50:11', '11:55:34', 627, 9319); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:56:22', '12:00:46', '15:15:22', 631, 9320); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:57:00', '12:02:31', '12:17:03', 631, 9321); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:57:53', '12:11:14', '12:52:16', 627, 9322); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:59:18', '12:06:59', '12:10:12', 631, 9323); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '11:59:58', '12:10:47', '13:39:25', 631, 9324); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:01:51', '12:01:59', '12:40:52', 627, 9325); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:01:59', '12:02:28', '12:06:44', 627, 9326); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:03:50', '12:04:02', '12:18:19', 612, 9327); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:08:27', '12:10:12', '12:21:21', 631, 9328); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:09:02', '12:10:42', '13:57:29', 631, 9329); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:09:47', '12:10:39', '12:40:41', 627, 9330); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:11:33', '12:17:03', '13:03:06', 631, 9331); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:14:04', '12:14:08', '12:49:00', 612, 9332); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:16:10', '12:16:13', '12:18:10', 612, 9333); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:16:51', '12:18:10', '13:21:26', 612, 9334); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:17:05', '12:17:23', '14:12:03', 627, 9335); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:17:54', '12:19:32', '13:06:22', 612, 9336); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:18:18', '12:21:21', '12:32:05', 631, 9337); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:18:34', '12:18:40', '12:45:41', 612, 9338); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:22:31', '12:23:05', '12:41:49', 631, 9339); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:23:00', '12:32:05', '12:39:42', 631, 9340); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:23:39', '12:23:41', '12:31:03', 627, 9341); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:23:54', '12:24:04', '12:35:25', 612, 9342); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:25:26', '12:33:10', '13:12:01', 631, 9343); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:29:54', '12:31:04', '12:41:43', 627, 9344); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:32:09', '12:37:26', '13:38:40', 627, 9345); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:32:53', '12:39:12', '12:55:19', 631, 9346); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:34:33', '12:39:43', '13:12:18', 631, 9347); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:34:57', '12:35:26', '13:33:30', 612, 9348); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:38:42', '12:40:41', '13:04:46', 627, 9349); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:40:12', '12:41:49', '13:09:35', 631, 9350); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:41:20', '12:49:01', '12:59:52', 612, 9351); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:44:35', '12:44:45', '12:56:13', 627, 9352); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:44:55', '12:45:03', '12:49:37', 627, 9353); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:48:27', '12:49:37', '13:02:34', 627, 9354); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:48:52', '12:49:50', '13:49:41', 612, 9355); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:49:34', '12:58:13', '13:01:18', 612, 9356); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:50:22', '12:52:16', '13:40:49', 627, 9357); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:53:24', '12:59:52', '14:00:18', 612, 9358); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:53:34', '12:54:36', '13:04:43', 631, 9359); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:55:51', '12:56:04', '13:00:13', 627, 9360); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:57:18', '13:02:34', '13:55:40', 627, 9361); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:57:25', '13:01:18', '13:42:55', 612, 9362); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:58:31', '12:58:39', '13:03:51', 612, 9363); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '12:59:38', '13:04:47', '13:29:53', 627, 9364); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:02:45', '13:03:06', '13:29:44', 631, 9365); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:03:59', '13:04:44', '13:30:22', 631, 9366); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:04:15', '13:04:23', '14:24:42', 627, 9367); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:05:45', '13:06:22', '13:17:20', 612, 9368); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:08:09', '13:10:15', '13:13:38', 627, 9369); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:09:17', '13:13:39', '13:18:50', 627, 9370); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:09:27', '13:09:36', '13:45:33', 631, 9371); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:10:29', '13:11:30', '13:48:03', 631, 9372); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:11:06', '13:12:10', '13:17:35', 612, 9373); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:12:07', '13:12:09', '13:42:46', 631, 9374); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:14:48', '13:18:51', '13:53:35', 627, 9375); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:15:12', '13:22:27', '13:50:41', 627, 9376); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:15:30', '13:17:20', '15:00:02', 612, 9377); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:16:06', '13:24:23', '13:42:58', 627, 9378); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:16:49', '13:16:59', '13:21:29', 631, 9379); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:17:31', '13:17:46', '13:21:38', 612, 9380); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:21:36', '13:21:38', '13:29:29', 612, 9381); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:22:47', '13:29:53', '13:41:42', 627, 9382); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:26:50', '13:29:44', '14:14:21', 631, 9383); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:27:21', '13:30:22', '13:44:36', 631, 9384); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:28:12', '13:28:16', '13:37:31', 612, 9385); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:28:27', '13:28:30', '13:59:15', 612, 9386); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:29:32', '13:29:34', '13:31:11', 612, 9387); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:30:41', '13:35:49', '13:44:28', 627, 9388); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:30:50', '13:39:25', '14:15:54', 631, 9389); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:31:14', '13:33:31', '13:56:11', 612, 9390); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:32:23', '13:34:49', '13:43:58', 631, 9391); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:32:56', '13:41:52', '14:01:07', 631, 9392); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:33:21', '13:40:49', '14:54:00', 627, 9393); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:33:41', '13:38:40', '13:56:44', 627, 9394); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:35:11', '13:42:46', '15:02:09', 631, 9395); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:35:41', '13:41:42', '14:04:37', 627, 9396); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:36:29', '13:43:22', '13:46:47', 627, 9397); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:37:02', '13:37:31', '13:44:00', 612, 9398); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:37:16', '13:37:32', '13:51:57', 612, 9399); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:38:58', '13:39:15', '13:41:46', 627, 9400); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:40:56', '13:43:59', '13:51:22', 631, 9401); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:41:02', '13:44:28', '14:15:52', 627, 9402); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:41:06', '13:42:55', '14:56:21', 612, 9403); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:41:39', '13:44:00', '14:09:15', 612, 9404); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:42:11', '13:50:41', '14:15:21', 627, 9405); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:42:35', '13:44:36', '14:33:16', 631, 9406); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:43:27', '13:45:34', '14:06:50', 631, 9407); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:45:56', '13:48:03', '16:05:40', 631, 9408); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:46:47', '13:49:41', '14:26:40', 612, 9409); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:47:11', '13:53:36', '13:59:10', 627, 9410); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:47:21', '13:56:11', '15:03:52', 612, 9411); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:49:09', '13:56:44', '14:10:49', 627, 9412); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:55:14', '13:59:15', '15:46:22', 612, 9413); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:57:07', '13:57:30', '14:11:12', 631, 9414); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:58:40', '14:05:46', '14:54:05', 627, 9415); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '13:58:58', '14:01:07', '14:07:02', 631, 9416); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:04:18', '14:05:22', '16:47:20', 631, 9417); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:05:57', '14:10:50', '15:03:55', 627, 9418); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:07:06', '14:07:11', '14:38:41', 631, 9419); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:07:13', '14:07:15', '14:13:34', 612, 9420); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:07:37', '14:14:22', '14:33:29', 631, 9421); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:08:26', '14:15:21', '14:29:22', 627, 9422); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:09:05', '14:09:15', '14:43:04', 612, 9423); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:10:20', '14:12:03', '15:56:48', 627, 9424); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:11:20', '14:11:38', '15:05:26', 631, 9425); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:11:22', '14:15:53', '14:30:08', 627, 9426); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:13:45', '14:15:54', '14:29:38', 631, 9427); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:14:13', '14:14:17', '14:23:17', 627, 9428); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:15:24', '14:15:26', '14:20:30', 612, 9429); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:17:09', '14:24:42', '14:36:11', 627, 9430); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:17:57', '14:18:00', '14:24:55', 612, 9431); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:22:35', '14:29:22', '14:53:09', 627, 9432); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:22:45', '14:24:55', '14:33:12', 612, 9433); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:23:27', '14:30:08', '14:49:42', 627, 9434); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:24:16', '14:24:28', '14:40:40', 627, 9435); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:25:15', '14:33:01', '14:34:11', 627, 9436); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:25:30', '14:26:31', '14:56:19', 612, 9437); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:25:35', '14:29:38', '15:20:56', 631, 9438); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:26:10', '14:26:40', '14:58:28', 612, 9439); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:26:20', '14:33:21', '14:35:08', 627, 9440); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:26:48', '14:26:52', '15:40:39', 612, 9441); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:27:25', '14:27:34', '15:08:56', 612, 9442); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:30:05', '14:33:12', '15:33:48', 612, 9443); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:30:53', '14:35:09', '14:54:25', 627, 9444); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:32:08', '14:33:29', '14:44:00', 631, 9445); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:32:33', '14:38:42', '14:55:45', 631, 9446); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:33:30', '14:34:12', '15:12:07', 627, 9447); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:36:17', '14:43:05', '14:53:29', 631, 9448); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:37:04', '14:44:00', '15:20:29', 631, 9449); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:41:24', '14:41:32', '14:59:32', 612, 9450); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:42:04', '14:46:21', '15:46:14', 627, 9451); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:42:57', '14:43:05', '14:46:50', 612, 9452); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:43:39', '14:49:42', '14:55:23', 627, 9453); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:44:43', '14:46:51', '15:37:55', 612, 9454); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:45:44', '14:52:50', '15:00:18', 627, 9455); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:46:14', '14:53:10', '15:30:46', 627, 9456); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:47:00', '14:54:05', '15:02:11', 627, 9457); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:48:15', '14:54:25', '15:03:44', 627, 9458); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:48:27', '14:53:29', '15:07:52', 631, 9459); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:50:05', '14:55:45', '15:03:23', 631, 9460); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:50:39', '15:05:27', '16:11:42', 631, 9461); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:51:03', '14:55:24', '15:30:43', 627, 9462); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:53:54', '14:54:00', '15:49:45', 627, 9463); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:54:17', '14:56:25', '15:45:51', 627, 9464); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:56:15', '14:56:20', '15:54:02', 612, 9465); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:56:33', '15:03:24', '15:11:41', 631, 9466); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:56:35', '14:56:42', '16:15:25', 612, 9467); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:57:00', '15:02:09', '15:25:46', 631, 9468); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:58:07', '14:58:29', '16:39:48', 612, 9469); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:59:30', '15:00:18', '15:23:11', 627, 9470); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:59:44', '15:00:03', '15:28:37', 612, 9471); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '14:59:59', '15:02:11', '15:37:27', 627, 9472); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:00:22', '15:03:44', '15:09:56', 627, 9473); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:01:01', '15:03:55', '15:26:53', 627, 9474); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:01:24', '15:07:52', '15:53:01', 631, 9475); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:02:00', '15:03:52', '15:14:15', 612, 9476); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:04:28', '15:11:41', '15:47:18', 631, 9477); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:07:10', '15:15:22', '16:04:17', 631, 9478); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:11:07', '15:11:13', '15:17:55', 612, 9479); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:13:00', '15:14:40', '15:49:27', 627, 9480); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:13:59', '15:14:15', '15:15:46', 612, 9481); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:15:36', '15:15:46', '15:28:44', 612, 9482); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:16:10', '15:17:55', '15:25:16', 612, 9483); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:17:38', '15:20:56', '16:23:36', 631, 9484); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:18:16', '15:18:25', '15:34:19', 627, 9485); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:20:10', '15:20:29', '15:38:56', 631, 9486); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:25:03', '15:26:03', '15:34:21', 627, 9487); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:26:03', '15:26:07', '15:50:06', 631, 9488); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:26:05', '15:26:54', '15:36:24', 627, 9489); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:27:41', '15:28:38', '15:37:22', 612, 9490); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:28:08', '15:28:44', '15:46:19', 612, 9491); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:28:48', '15:30:44', '15:48:15', 627, 9492); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:29:26', '15:34:19', '15:59:19', 627, 9493); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:31:18', '15:37:22', '15:53:35', 612, 9494); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:31:31', '15:33:49', '15:36:56', 612, 9495); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:34:45', '15:38:57', '15:53:41', 631, 9496); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:36:28', '15:37:55', '16:40:01', 612, 9497); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:38:39', '15:38:48', '15:48:58', 627, 9498); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:38:43', '15:44:01', '15:55:48', 612, 9499); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:40:14', '15:40:25', '16:38:18', 612, 9500); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:42:55', '15:47:18', '15:55:33', 631, 9501); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:44:07', '15:44:07', '15:45:14', 612, 9502); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:44:21', '15:50:07', '17:10:59', 631, 9503); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:45:12', '15:53:02', '16:02:43', 631, 9504); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:48:45', '15:53:41', '16:06:37', 631, 9505); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:50:32', '15:50:58', '15:57:46', 627, 9506); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:51:22', '15:52:51', '15:57:06', 627, 9507); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:52:40', '15:53:21', '15:56:45', 627, 9508); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:53:27', '15:53:35', '15:56:58', 612, 9509); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:53:47', '16:04:29', '16:14:23', 631, 9510); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:54:26', '16:04:17', '17:13:34', 631, 9511); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:56:21', '16:02:43', '16:15:24', 631, 9512); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '15:57:40', '16:06:38', '16:12:36', 631, 9513); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '16:00:47', '16:12:37', '16:44:20', 631, 9514); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-22', '16:04:29', '16:05:54', '17:13:40', 631, 9515); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '09:57:19', '09:57:28', '10:05:31', 612, 9516); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '09:59:16', '09:59:26', '10:15:00', 612, 9517); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:01:37', '10:01:56', '10:20:52', 612, 9518); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:02:47', '10:03:02', '11:56:57', 612, 9519); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:03:40', '10:05:32', '10:53:30', 612, 9520); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:03:57', '10:11:19', '11:48:58', 612, 9521); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:14:47', '10:15:02', '10:26:51', 612, 9522); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:15:09', '10:17:25', '10:28:26', 631, 9523); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:15:24', '10:16:59', '12:29:03', 631, 9524); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:15:35', '10:15:38', '11:46:41', 612, 9525); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:17:18', '10:18:47', '10:38:25', 631, 9526); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:17:43', '10:25:11', '10:32:34', 631, 9527); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:20:56', '10:21:10', '10:46:06', 612, 9528); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:22:52', '10:25:43', '10:47:26', 631, 9529); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:27:02', '10:34:55', '11:45:29', 631, 9530); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:27:21', '10:32:34', '10:34:02', 631, 9531); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:27:45', '10:28:26', '10:52:03', 631, 9532); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:33:34', '10:38:25', '11:02:03', 631, 9533); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:35:00', '10:42:00', '10:56:49', 631, 9534); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:38:50', '10:41:46', '10:48:34', 627, 9535); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:42:12', '10:48:34', '11:00:18', 627, 9536); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:44:32', '10:47:26', '11:02:53', 631, 9537); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:44:48', '10:44:57', '11:15:21', 612, 9538); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:46:03', '10:46:07', '12:27:06', 612, 9539); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:47:03', '10:52:03', '11:39:11', 631, 9540); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:47:42', '10:56:11', '11:11:47', 627, 9541); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:51:55', '10:56:50', '11:07:57', 627, 9542); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:52:34', '11:00:19', '11:10:29', 627, 9543); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:52:47', '10:53:31', '12:21:38', 612, 9544); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:53:14', '10:56:49', '11:40:06', 631, 9545); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:53:19', '11:00:41', '11:27:48', 627, 9546); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:53:58', '10:56:37', '11:15:32', 627, 9547); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:53:58', '10:59:51', '11:21:58', 631, 9548); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:54:53', '11:01:56', '12:04:52', 631, 9549); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:55:48', '11:02:04', '11:24:53', 631, 9550); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:57:46', '11:02:54', '11:14:09', 631, 9551); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '10:58:30', '11:07:57', '11:37:19', 627, 9552); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:00:21', '11:08:12', '11:50:36', 627, 9553); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:04:12', '11:10:29', '11:12:24', 627, 9554); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:05:31', '11:14:10', '12:00:57', 631, 9555); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:09:05', '11:11:48', '11:17:54', 627, 9556); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:12:17', '11:21:58', '12:00:06', 631, 9557); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:14:57', '11:15:21', '12:17:26', 612, 9558); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:16:22', '11:24:54', '11:45:49', 631, 9559); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:16:31', '11:17:54', '11:26:33', 627, 9560); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:18:50', '11:26:33', '11:38:09', 627, 9561); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:19:30', '11:27:48', '11:30:02', 627, 9562); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:20:58', '11:30:02', '11:46:11', 627, 9563); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:22:18', '11:23:40', '15:03:47', 627, 9564); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:22:50', '11:24:01', '12:39:01', 627, 9565); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:24:47', '11:33:24', '12:29:13', 627, 9566); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:28:05', '11:37:20', '11:55:53', 627, 9567); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:32:34', '11:38:10', '11:43:58', 627, 9568); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:32:42', '11:39:11', '12:08:03', 631, 9569); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:32:49', '11:43:59', '11:50:26', 627, 9570); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:32:54', '11:33:03', '11:47:18', 612, 9571); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:34:42', '11:40:07', '11:51:04', 631, 9572); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:37:47', '11:45:29', '11:55:22', 631, 9573); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:39:24', '11:46:12', '11:52:17', 627, 9574); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:39:32', '11:45:49', '12:06:22', 631, 9575); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:39:42', '11:51:04', '12:19:23', 631, 9576); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:46:13', '11:46:31', '11:55:08', 627, 9577); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:47:11', '11:47:12', '12:20:44', 612, 9578); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:49:04', '11:49:04', '11:56:59', 612, 9579); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:49:48', '11:55:22', '12:19:12', 631, 9580); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:51:25', '12:00:06', '12:10:02', 631, 9581); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:54:30', '11:58:45', '12:55:55', 627, 9582); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:56:50', '12:00:58', '12:40:00', 631, 9583); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:56:51', '11:56:58', '12:31:21', 612, 9584); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:59:12', '12:04:52', '12:29:13', 631, 9585); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:59:36', '11:59:39', '12:35:05', 627, 9586); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '11:59:40', '12:06:23', '12:23:47', 631, 9587); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:03:23', '12:06:14', '12:15:36', 627, 9588); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:08:13', '12:15:36', '12:32:04', 627, 9589); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:08:58', '12:09:32', '12:43:48', 631, 9590); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:09:27', '12:10:03', '12:51:46', 631, 9591); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:11:25', '12:18:54', '12:24:39', 627, 9592); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:12:10', '12:18:55', '12:29:09', 627, 9593); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:12:12', '12:19:12', '12:29:27', 631, 9594); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:14:06', '12:19:23', '12:30:53', 631, 9595); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:14:33', '12:23:48', '12:35:26', 631, 9596); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:15:01', '12:19:40', '13:35:31', 612, 9597); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:15:25', '12:24:40', '12:30:36', 627, 9598); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:15:57', '12:29:09', '16:36:17', 627, 9599); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:16:07', '12:16:09', '12:27:17', 612, 9600); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:17:16', '12:17:26', '13:53:35', 612, 9601); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:18:55', '12:29:04', '13:01:47', 631, 9602); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:20:29', '12:29:12', '13:00:52', 627, 9603); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:20:31', '12:22:41', '12:34:53', 612, 9604); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:20:53', '12:20:54', '13:07:31', 612, 9605); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:21:31', '12:27:06', '12:47:03', 612, 9606); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:23:42', '12:29:14', '13:06:38', 631, 9607); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:24:43', '12:29:27', '12:38:27', 631, 9608); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:26:56', '12:29:14', '12:38:43', 627, 9609); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:27:04', '12:27:10', '13:26:32', 612, 9610); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:28:39', '12:30:36', '13:31:23', 627, 9611); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:28:49', '12:31:01', '12:45:54', 612, 9612); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:29:19', '12:31:21', '12:39:29', 612, 9613); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:29:53', '12:30:54', '13:05:30', 631, 9614); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:32:13', '12:34:53', '12:41:04', 612, 9615); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:32:13', '12:35:26', '12:36:47', 631, 9616); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:32:36', '12:36:48', '12:58:23', 631, 9617); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:33:07', '12:38:27', '12:46:34', 631, 9618); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:35:06', '12:40:00', '13:34:07', 631, 9619); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:35:36', '12:39:29', '13:31:39', 612, 9620); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:36:40', '12:41:04', '14:00:07', 612, 9621); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:38:25', '12:45:17', '13:03:21', 631, 9622); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:38:31', '12:41:22', '13:23:29', 627, 9623); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:40:09', '12:45:54', '12:58:05', 612, 9624); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:41:41', '12:47:03', '13:25:05', 612, 9625); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:42:49', '12:46:34', '13:13:31', 631, 9626); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:43:21', '12:51:46', '14:29:06', 631, 9627); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:45:08', '12:52:18', '13:06:05', 627, 9628); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:45:31', '12:55:55', '13:07:10', 627, 9629); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:51:36', '12:58:23', '13:18:58', 631, 9630); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:54:46', '13:00:52', '13:39:28', 627, 9631); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:55:40', '13:03:21', '13:22:38', 631, 9632); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:58:03', '13:06:05', '13:40:14', 627, 9633); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:58:29', '13:07:10', '13:10:27', 627, 9634); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '12:59:01', '13:05:30', '15:05:20', 631, 9635); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:03:05', '13:06:38', '13:33:08', 631, 9636); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:05:29', '13:13:31', '13:24:22', 631, 9637); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:05:36', '13:10:27', '13:27:01', 627, 9638); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:05:51', '13:05:56', '13:19:29', 612, 9639); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:09:28', '13:18:58', '13:25:19', 631, 9640); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:15:32', '13:22:38', '13:31:20', 631, 9641); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:19:18', '13:19:29', '13:36:50', 612, 9642); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:19:50', '13:24:23', '13:38:59', 631, 9643); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:21:36', '13:25:19', '13:38:41', 631, 9644); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:22:11', '13:25:05', '15:05:38', 612, 9645); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:26:17', '13:26:32', '14:03:36', 612, 9646); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:27:52', '13:33:08', '14:04:48', 631, 9647); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:31:27', '13:31:40', '13:37:46', 612, 9648); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:33:04', '13:34:07', '13:44:03', 631, 9649); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:33:29', '13:38:41', '14:11:15', 631, 9650); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:33:58', '13:38:59', '14:32:08', 631, 9651); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:35:24', '13:35:31', '13:59:57', 612, 9652); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:37:10', '13:37:46', '13:55:02', 612, 9653); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:38:51', '13:40:14', '13:42:06', 627, 9654); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:38:55', '13:40:25', '13:52:48', 612, 9655); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:40:26', '13:41:32', '14:01:30', 627, 9656); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:41:28', '13:41:49', '13:53:43', 627, 9657); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:41:48', '13:42:07', '13:53:13', 627, 9658); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:42:32', '13:53:16', '14:17:24', 627, 9659); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:42:37', '13:44:04', '13:57:24', 631, 9660); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:51:49', '13:53:19', '14:00:47', 627, 9661); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:52:13', '13:53:25', '14:59:59', 627, 9662); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:53:33', '13:53:35', '14:03:32', 612, 9663); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:54:02', '13:55:02', '14:12:52', 612, 9664); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:54:32', '13:59:58', '14:38:44', 612, 9665); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:55:23', '13:57:24', '14:12:05', 631, 9666); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:55:44', '13:57:39', '14:05:26', 631, 9667); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:56:01', '14:00:08', '15:42:50', 612, 9668); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:56:23', '13:56:38', '15:40:55', 627, 9669); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '13:56:38', '14:05:26', '14:14:04', 631, 9670); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:03:26', '14:03:32', '14:07:08', 612, 9671); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:05:22', '14:11:15', '14:31:40', 631, 9672); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:07:45', '14:07:50', '14:22:47', 612, 9673); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:10:59', '14:12:06', '14:33:24', 631, 9674); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:12:00', '14:14:04', '14:49:06', 631, 9675); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:12:38', '14:12:52', '15:28:54', 612, 9676); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:12:49', '14:13:06', '14:22:53', 612, 9677); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:17:20', '14:29:07', '17:25:19', 631, 9678); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:22:43', '14:22:47', '14:27:44', 612, 9679); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:23:18', '14:31:40', '14:45:08', 631, 9680); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:25:40', '14:27:51', '14:35:44', 627, 9681); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:26:00', '14:26:08', '14:48:19', 612, 9682); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:27:43', '14:27:53', '14:33:32', 612, 9683); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:30:01', '14:32:08', '15:12:59', 631, 9684); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:30:38', '14:33:25', '14:40:16', 631, 9685); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:31:22', '14:40:16', '15:29:00', 631, 9686); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:31:42', '14:32:17', '14:48:01', 627, 9687); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:33:00', '14:33:33', '15:47:57', 612, 9688); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:37:42', '14:38:44', '15:05:27', 612, 9689); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:40:34', '14:45:08', '17:26:20', 631, 9690); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:46:21', '14:47:59', '15:24:35', 627, 9691); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:48:15', '14:48:19', '14:53:01', 612, 9692); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:48:15', '14:49:06', '15:04:22', 631, 9693); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:52:41', '14:53:01', '15:21:49', 612, 9694); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '14:56:22', '14:56:24', '15:16:18', 627, 9695); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:00:53', '15:04:22', '15:27:55', 631, 9696); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:01:03', '15:02:13', '15:35:28', 627, 9697); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:01:28', '15:06:52', '15:43:13', 627, 9698); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:02:08', '15:03:47', '16:04:48', 627, 9699); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:03:33', '15:03:49', '15:15:03', 612, 9700); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:04:15', '15:05:27', '15:25:26', 612, 9701); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:04:40', '15:09:22', '15:38:25', 627, 9702); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:05:19', '15:05:38', '15:27:22', 612, 9703); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:05:19', '15:05:20', '15:30:08', 631, 9704); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:09:18', '15:12:59', '15:29:16', 631, 9705); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:11:20', '15:16:18', '15:26:25', 627, 9706); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:14:33', '15:15:03', '15:54:01', 612, 9707); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:14:55', '15:20:56', '17:12:35', 612, 9708); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:19:04', '15:21:49', '15:40:55', 612, 9709); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:26:40', '15:28:54', '15:32:00', 612, 9710); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:27:06', '15:27:55', '15:45:11', 631, 9711); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:27:15', '15:27:22', '15:34:23', 612, 9712); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:27:35', '15:29:00', '15:41:31', 631, 9713); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:27:58', '15:29:16', '15:38:28', 631, 9714); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:28:17', '15:30:09', '15:39:26', 631, 9715); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:29:19', '15:38:29', '16:46:28', 631, 9716); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:30:00', '15:39:26', '17:32:50', 631, 9717); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:31:49', '15:32:01', '15:43:04', 612, 9718); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:32:38', '15:34:23', '15:45:20', 612, 9719); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:35:10', '15:36:51', '15:42:58', 627, 9720); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:37:04', '15:38:18', '15:42:03', 627, 9721); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:38:17', '15:41:32', '16:14:33', 631, 9722); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:40:44', '15:40:56', '15:45:03', 612, 9723); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:42:36', '15:45:11', '17:25:30', 631, 9724); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:47:20', '15:47:21', '16:09:57', 612, 9725); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:51:00', '15:51:19', '16:55:47', 627, 9726); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-23', '15:52:53', '15:54:36', '16:24:19', 612, 9727); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '11:57:11', '11:57:44', '13:15:58', 612, 9728); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '11:57:56', '11:58:00', '12:13:42', 612, 9729); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '11:59:10', '11:59:11', '12:13:45', 612, 9730); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '12:13:40', '12:13:43', '13:21:50', 612, 9731); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '12:39:54', '12:39:56', '13:02:41', 612, 9732); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '12:43:29', '12:43:41', '15:51:50', 612, 9733); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '13:02:49', '13:02:52', '13:12:49', 612, 9734); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '13:12:35', '13:12:49', '13:28:58', 612, 9735); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '13:14:04', '13:15:58', '13:44:35', 612, 9736); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '13:16:46', '13:16:55', '13:37:44', 612, 9737); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '13:21:56', '13:22:03', '14:44:37', 612, 9738); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '13:35:35', '13:35:40', '13:45:48', 612, 9739); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '13:36:19', '13:36:31', '14:32:28', 612, 9740); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '13:36:41', '13:37:44', '14:48:47', 612, 9741); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '13:43:20', '13:44:35', '14:21:39', 612, 9742); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '13:43:44', '13:45:48', '14:15:05', 612, 9743); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '13:59:27', '13:59:36', '14:15:03', 612, 9744); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '14:13:24', '14:15:03', '14:38:58', 612, 9745); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '14:14:02', '14:15:06', '14:40:30', 612, 9746); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '14:21:05', '14:21:39', '16:05:39', 612, 9747); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '14:32:14', '14:32:28', '14:41:08', 612, 9748); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '14:38:49', '14:38:58', '14:46:04', 612, 9749); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '14:41:02', '14:41:10', '14:50:36', 612, 9750); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '14:43:45', '14:44:37', '15:48:51', 612, 9751); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '14:45:53', '14:46:04', '15:08:13', 612, 9752); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '14:50:03', '14:50:37', '15:01:03', 612, 9753); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '14:55:10', '15:01:04', '15:23:30', 612, 9754); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '15:08:02', '15:08:14', '15:48:26', 612, 9755); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-24', '15:23:11', '15:23:30', '15:48:49', 612, 9756); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '08:56:18', '08:57:06', '10:05:25', 612, 9757); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '08:57:15', '08:57:34', '10:41:20', 612, 9758); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '08:57:37', '08:58:15', '09:09:44', 612, 9759); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '09:01:35', '09:01:42', '09:14:00', 627, 9760); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '09:09:29', '09:09:45', '10:03:39', 612, 9761); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '09:11:08', '09:11:16', '09:39:24', 612, 9762); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '09:11:10', '09:11:13', '09:33:58', 627, 9763); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '09:16:12', '09:16:14', '09:20:13', 627, 9764); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '09:22:40', '09:22:42', '09:34:40', 627, 9765); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '09:29:27', '09:29:34', '09:38:31', 627, 9766); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '09:30:46', '09:30:48', '10:19:51', 631, 9767); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '09:39:14', '09:39:24', '10:10:31', 612, 9768); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '09:39:27', '09:39:32', '10:09:42', 627, 9769); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '09:40:49', '09:40:50', '10:09:34', 631, 9770); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '09:42:51', '09:43:47', '09:56:12', 631, 9771); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '09:48:04', '09:48:09', '10:47:04', 631, 9772); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '09:49:15', '09:55:47', '11:05:14', 631, 9773); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '09:51:38', '09:54:38', '12:33:56', 631, 9774); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '09:55:20', '09:56:12', '10:07:54', 631, 9775); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:01:47', '10:07:54', '10:18:01', 631, 9776); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:03:36', '10:03:39', '10:17:16', 612, 9777); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:04:38', '10:04:38', '10:13:48', 627, 9778); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:04:54', '10:09:28', '10:33:50', 631, 9779); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:05:09', '10:05:12', '10:15:26', 627, 9780); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:05:10', '10:05:25', '10:38:08', 612, 9781); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:05:41', '10:09:23', '10:26:07', 627, 9782); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:08:05', '10:09:57', '12:41:31', 627, 9783); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:09:01', '10:09:35', '10:26:08', 631, 9784); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:10:56', '10:11:00', '10:25:58', 612, 9785); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:16:28', '10:18:02', '10:21:46', 631, 9786); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:16:48', '10:16:55', '11:03:54', 627, 9787); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:17:10', '10:17:16', '10:49:24', 612, 9788); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:18:47', '10:19:51', '10:43:45', 631, 9789); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:19:02', '10:21:46', '10:36:13', 631, 9790); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:19:15', '10:19:19', '10:24:51', 627, 9791); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:25:57', '10:26:08', '10:48:53', 631, 9792); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:26:04', '10:26:10', '10:56:10', 612, 9793); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:26:23', '10:33:50', '14:45:10', 631, 9794); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:34:12', '10:36:13', '10:54:24', 631, 9795); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:34:48', '10:43:46', '10:59:36', 631, 9796); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:38:00', '10:38:08', '12:06:43', 612, 9797); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:41:21', '10:41:21', '10:51:53', 612, 9798); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:44:04', '10:44:21', '12:09:30', 612, 9799); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:44:13', '10:44:29', '10:50:50', 612, 9800); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:44:46', '10:50:50', '11:40:01', 612, 9801); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:45:34', '10:47:04', '11:31:52', 631, 9802); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:45:48', '10:49:24', '11:38:39', 612, 9803); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:46:00', '10:46:08', '10:58:29', 627, 9804); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:46:26', '10:49:30', '11:15:01', 631, 9805); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:46:56', '10:51:53', '11:48:54', 612, 9806); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:48:38', '10:48:54', '11:14:49', 631, 9807); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:53:07', '10:53:27', '11:01:28', 627, 9808); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:54:12', '10:54:41', '11:06:54', 627, 9809); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:55:41', '10:59:36', '11:29:26', 631, 9810); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '10:56:10', '11:05:15', '11:32:39', 631, 9811); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:02:13', '11:03:54', '12:08:19', 627, 9812); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:07:26', '11:07:28', '11:23:13', 627, 9813); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:09:49', '11:09:59', '11:57:54', 612, 9814); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:11:20', '11:14:49', '11:50:07', 631, 9815); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:19:12', '11:40:02', '11:43:52', 612, 9816); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:24:26', '11:24:33', '11:37:38', 627, 9817); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:28:18', '11:28:18', '12:52:53', 612, 9818); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:30:04', '11:31:52', '11:53:45', 631, 9819); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:31:04', '11:43:52', '11:45:10', 612, 9820); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:32:47', '11:32:48', '11:50:04', 631, 9821); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:38:04', '11:39:28', '11:55:42', 631, 9822); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:38:05', '11:38:39', '11:51:16', 612, 9823); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:39:24', '11:47:33', '12:09:33', 631, 9824); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:41:46', '11:41:50', '11:57:40', 627, 9825); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:43:26', '11:43:37', '11:56:17', 627, 9826); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:44:35', '11:47:24', '12:10:25', 631, 9827); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:47:39', '11:47:53', '12:02:15', 627, 9828); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:48:48', '11:48:54', '12:05:33', 612, 9829); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:50:15', '11:50:15', '13:13:32', 631, 9830); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:50:49', '11:50:58', '12:36:56', 631, 9831); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:51:09', '11:51:17', '12:57:27', 612, 9832); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:53:31', '12:08:20', '13:12:11', 627, 9833); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:57:37', '11:57:39', '12:06:34', 627, 9834); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:58:07', '11:58:09', '12:09:50', 631, 9835); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '11:58:34', '11:58:41', '12:41:36', 627, 9836); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:00:29', '12:00:32', '12:07:43', 627, 9837); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:02:37', '12:02:37', '12:09:26', 627, 9838); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:03:31', '12:06:43', '12:16:21', 612, 9839); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:04:48', '12:05:41', '12:10:00', 612, 9840); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:06:51', '12:07:54', '12:11:01', 631, 9841); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:07:10', '12:09:50', '13:47:48', 631, 9842); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:08:01', '12:09:30', '13:33:24', 612, 9843); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:09:14', '12:10:06', '13:45:36', 631, 9844); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:09:45', '12:10:25', '13:36:15', 631, 9845); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:09:53', '12:10:00', '12:20:38', 612, 9846); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:13:55', '12:16:21', '12:39:47', 612, 9847); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:15:02', '12:15:06', '12:19:36', 627, 9848); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:18:42', '12:19:33', '12:30:25', 631, 9849); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:19:35', '12:20:39', '13:37:42', 612, 9850); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:20:58', '12:21:07', '12:24:58', 627, 9851); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:26:48', '12:26:53', '12:58:53', 631, 9852); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:28:44', '12:28:47', '12:35:52', 627, 9853); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:30:12', '12:30:25', '14:02:59', 631, 9854); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:32:41', '12:40:56', '12:47:06', 627, 9855); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:33:25', '12:33:56', '12:47:47', 631, 9856); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:33:29', '12:40:07', '13:52:28', 612, 9857); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:36:31', '12:41:37', '12:46:18', 627, 9858); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:36:46', '12:36:56', '12:51:38', 631, 9859); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:41:12', '12:52:54', '12:59:21', 612, 9860); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:41:14', '12:41:31', '13:36:41', 627, 9861); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:46:29', '12:47:47', '14:05:27', 631, 9862); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:50:46', '12:50:49', '13:01:38', 627, 9863); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:50:50', '12:51:38', '13:20:31', 631, 9864); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:51:33', '12:51:39', '13:19:40', 627, 9865); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:52:05', '12:57:31', '13:03:22', 627, 9866); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:55:59', '12:56:00', '13:37:03', 612, 9867); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:56:53', '13:12:12', '14:12:31', 627, 9868); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:57:17', '12:57:27', '13:12:58', 612, 9869); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:58:40', '12:59:22', '13:06:33', 612, 9870); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:58:47', '12:58:53', '13:51:06', 631, 9871); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '12:59:07', '13:06:34', '13:18:30', 612, 9872); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:01:05', '13:12:58', '13:16:23', 612, 9873); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:03:12', '13:10:11', '13:25:05', 631, 9874); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:07:05', '13:13:32', '13:43:11', 631, 9875); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:09:06', '13:09:31', '13:35:00', 627, 9876); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:09:36', '13:09:39', '13:14:30', 627, 9877); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:12:50', '13:16:23', '13:17:42', 612, 9878); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:14:35', '13:17:43', '13:30:32', 612, 9879); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:16:22', '13:18:30', '13:48:37', 612, 9880); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:17:30', '13:20:31', '13:39:52', 631, 9881); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:19:27', '13:19:31', '13:25:07', 627, 9882); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:19:47', '13:20:45', '13:33:13', 627, 9883); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:20:36', '13:25:07', '13:31:15', 627, 9884); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:21:23', '13:30:32', '13:34:55', 612, 9885); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:22:03', '13:33:18', '13:47:41', 612, 9886); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:22:03', '13:25:05', '13:31:50', 631, 9887); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:23:12', '13:25:54', '14:02:49', 627, 9888); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:24:11', '13:31:51', '13:44:06', 631, 9889); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:30:03', '13:43:11', '14:00:11', 631, 9890); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:31:00', '13:33:24', '13:51:33', 612, 9891); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:31:21', '13:39:52', '14:02:37', 631, 9892); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:31:50', '13:34:55', '13:45:28', 612, 9893); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:32:54', '13:37:03', '14:16:48', 612, 9894); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:33:00', '13:33:02', '13:41:48', 627, 9895); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:33:34', '13:41:35', '14:41:51', 627, 9896); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:33:38', '13:45:28', '13:49:33', 612, 9897); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:35:30', '13:44:55', '14:09:21', 631, 9898); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:36:17', '13:36:41', '14:50:54', 627, 9899); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:37:18', '13:45:36', '14:21:59', 631, 9900); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:37:32', '13:37:43', '13:47:53', 612, 9901); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:41:38', '13:47:41', '13:48:44', 612, 9902); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:44:15', '13:47:48', '13:51:39', 631, 9903); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:44:33', '13:44:35', '13:53:02', 627, 9904); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:44:55', '13:50:34', '13:59:38', 627, 9905); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:46:49', '13:47:53', '14:10:03', 612, 9906); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:47:09', '13:48:37', '14:16:58', 612, 9907); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:47:37', '13:48:44', '14:12:05', 612, 9908); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:47:52', '13:49:33', '14:16:37', 612, 9909); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:48:08', '13:51:34', '14:19:26', 612, 9910); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:49:04', '13:52:30', '14:25:11', 612, 9911); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:50:30', '13:51:06', '14:41:25', 631, 9912); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:50:54', '13:51:39', '14:10:30', 631, 9913); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:52:36', '14:00:11', '14:40:03', 631, 9914); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:53:18', '13:53:23', '13:57:21', 627, 9915); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:53:43', '13:57:22', '14:09:10', 627, 9916); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:55:20', '14:10:03', '14:11:15', 612, 9917); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:55:30', '13:59:09', '14:04:19', 627, 9918); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '13:59:19', '14:02:49', '14:17:40', 627, 9919); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:02:12', '14:02:38', '14:35:15', 631, 9920); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:02:21', '14:11:15', '14:48:20', 612, 9921); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:02:31', '14:02:59', '15:44:59', 631, 9922); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:03:28', '14:03:38', '14:45:08', 627, 9923); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:04:58', '14:05:28', '14:35:16', 631, 9924); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:07:53', '14:09:21', '14:38:27', 631, 9925); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:08:32', '14:12:06', '15:19:19', 612, 9926); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:09:14', '14:09:20', '14:17:59', 627, 9927); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:09:36', '14:16:37', '14:21:35', 612, 9928); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:11:22', '14:12:32', '14:45:32', 627, 9929); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:13:59', '14:16:48', '15:11:08', 612, 9930); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:14:28', '14:15:27', '14:23:45', 627, 9931); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:15:08', '14:16:58', '14:55:09', 612, 9932); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:15:31', '14:17:41', '14:46:18', 627, 9933); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:15:43', '14:19:26', '14:48:00', 612, 9934); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:17:53', '14:21:35', '14:55:34', 612, 9935); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:18:35', '14:22:28', '14:33:08', 631, 9936); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:23:08', '14:23:46', '14:29:30', 627, 9937); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:23:44', '14:27:28', '15:03:33', 627, 9938); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:25:02', '14:25:12', '14:49:56', 612, 9939); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:26:14', '14:29:30', '14:52:23', 627, 9940); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:27:47', '14:30:33', '14:55:29', 612, 9941); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:29:41', '14:35:52', '14:43:55', 627, 9942); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:32:06', '14:32:10', '15:48:04', 631, 9943); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:32:33', '14:32:34', '14:47:08', 631, 9944); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:32:38', '14:41:35', '14:45:13', 627, 9945); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:33:00', '14:41:51', '14:47:27', 627, 9946); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:34:35', '14:35:15', '14:47:07', 631, 9947); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:34:59', '14:35:16', '14:52:35', 631, 9948); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:35:18', '14:38:27', '14:51:10', 631, 9949); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:35:58', '14:43:55', '15:07:51', 627, 9950); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:36:14', '14:40:03', '15:18:12', 631, 9951); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:37:03', '14:41:25', '15:00:11', 631, 9952); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:37:37', '14:45:11', '15:17:58', 631, 9953); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:40:55', '14:48:20', '14:55:09', 612, 9954); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:41:51', '14:48:00', '16:20:19', 612, 9955); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:42:01', '14:47:07', '15:01:55', 631, 9956); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:42:43', '14:46:18', '14:57:39', 627, 9957); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:42:45', '14:47:08', '15:00:35', 631, 9958); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:43:03', '14:51:10', '15:11:35', 631, 9959); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:43:17', '14:50:43', '14:55:17', 627, 9960); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:43:56', '14:52:23', '15:00:47', 627, 9961); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:44:27', '14:45:32', '15:12:55', 627, 9962); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:45:06', '14:45:14', '15:36:36', 627, 9963); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:46:20', '14:49:56', '15:09:43', 612, 9964); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:49:32', '14:55:09', '15:38:36', 612, 9965); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:49:59', '14:52:33', '15:12:59', 627, 9966); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:50:23', '14:50:54', '15:34:51', 627, 9967); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:51:22', '14:57:39', '14:59:47', 627, 9968); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:52:03', '14:52:35', '15:13:49', 631, 9969); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:52:53', '14:59:47', '15:05:15', 627, 9970); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:55:02', '14:55:09', '15:00:25', 612, 9971); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:55:19', '14:55:34', '15:00:14', 612, 9972); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:58:30', '15:00:11', '15:57:58', 631, 9973); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:59:42', '15:00:14', '15:20:44', 612, 9974); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '14:59:44', '15:00:35', '15:12:38', 631, 9975); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:00:09', '15:01:56', '15:14:54', 631, 9976); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:00:19', '15:00:25', '15:21:24', 612, 9977); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:00:46', '15:00:49', '15:20:16', 627, 9978); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:02:06', '15:03:34', '15:16:09', 627, 9979); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:02:47', '15:11:36', '15:21:42', 631, 9980); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:05:51', '15:12:44', '15:23:53', 627, 9981); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:06:09', '15:06:15', '15:26:49', 627, 9982); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:07:21', '15:07:37', '15:29:33', 627, 9983); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:08:09', '15:09:43', '15:21:38', 612, 9984); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:09:00', '15:11:08', '15:13:54', 612, 9985); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:09:04', '15:12:38', '15:52:22', 631, 9986); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:09:17', '15:11:54', '15:45:23', 627, 9987); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:10:20', '15:14:54', '15:28:22', 631, 9988); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:10:39', '15:18:12', '15:56:58', 631, 9989); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:11:10', '15:17:58', '15:24:26', 631, 9990); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:11:11', '15:12:55', '15:44:43', 627, 9991); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:11:22', '15:13:54', '15:48:02', 612, 9992); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:11:43', '15:21:42', '15:59:19', 631, 9993); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:12:24', '15:19:19', '15:53:09', 612, 9994); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:13:17', '15:13:49', '16:19:37', 631, 9995); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:14:47', '15:24:26', '15:29:19', 631, 9996); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:16:13', '15:16:20', '15:33:15', 627, 9997); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:18:12', '15:20:17', '15:27:45', 627, 9998); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:18:26', '15:20:44', '15:24:12', 612, 9999); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:18:44', '15:21:25', '15:53:10', 612, 10000); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:19:20', '15:19:30', '15:24:48', 612, 10001); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:19:49', '15:21:38', '15:31:58', 612, 10002); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:19:58', '15:24:48', '15:29:50', 612, 10003); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:22:19', '15:24:12', '15:35:20', 612, 10004); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:24:33', '15:24:42', '16:05:14', 627, 10005); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:26:36', '15:31:58', '15:53:09', 612, 10006); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:26:52', '15:27:45', '15:42:30', 627, 10007); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:27:32', '15:28:22', '16:01:06', 631, 10008); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:27:35', '15:29:51', '15:41:20', 612, 10009); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:28:57', '15:29:19', '15:31:57', 631, 10010); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:33:58', '15:34:51', '16:05:56', 627, 10011); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:34:23', '15:35:20', '15:53:10', 612, 10012); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:34:29', '15:34:36', '15:42:00', 627, 10013); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:35:20', '15:37:16', '15:44:48', 627, 10014); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:36:04', '15:41:20', '16:05:18', 612, 10015); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:36:26', '15:36:36', '15:42:28', 627, 10016); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:38:28', '15:38:36', '15:53:13', 612, 10017); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:43:36', '15:43:42', '15:47:20', 627, 10018); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:44:35', '15:44:59', '16:04:17', 631, 10019); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:44:37', '15:44:44', '15:47:42', 627, 10020); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:45:11', '15:45:17', '15:48:58', 627, 10021); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:48:28', '15:48:35', '16:32:16', 631, 10022); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:49:20', '15:52:22', '16:14:39', 631, 10023); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:51:06', '15:52:08', '15:55:12', 627, 10024); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:54:05', '15:54:24', '16:39:43', 612, 10025); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:56:49', '15:56:58', '16:18:08', 631, 10026); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:56:59', '15:57:58', '16:24:09', 631, 10027); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:57:24', '15:59:19', '16:32:30', 631, 10028); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:58:27', '16:01:06', '16:32:07', 631, 10029); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-25', '15:59:58', '16:01:17', '16:07:26', 627, 10030); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '08:56:49', '08:57:36', '10:12:31', 612, 10031); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '08:57:09', '08:57:14', '10:53:42', 612, 10032); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '09:09:25', '09:09:26', '09:50:57', 612, 10033); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '09:09:55', '09:14:38', '09:28:17', 631, 10034); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '09:13:35', '09:17:42', '09:25:54', 631, 10035); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '09:16:21', '09:25:54', '09:30:07', 631, 10036); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '09:19:12', '09:19:17', '10:42:06', 612, 10037); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '09:20:46', '09:28:17', '10:23:00', 631, 10038); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '09:21:17', '09:30:08', '10:23:07', 631, 10039); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '09:31:00', '09:31:14', '09:45:02', 612, 10040); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '09:36:36', '09:45:01', '10:07:43', 631, 10041); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '09:46:45', '09:46:50', '09:52:03', 627, 10042); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '09:52:01', '09:52:06', '10:07:40', 612, 10043); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '09:52:21', '09:52:30', '10:49:58', 627, 10044); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '09:53:18', '09:54:07', '10:15:01', 631, 10045); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '09:53:20', '09:53:22', '10:05:00', 627, 10046); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '09:54:05', '09:54:08', '10:00:44', 627, 10047); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '09:58:08', '09:58:21', '12:06:58', 612, 10048); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:01:39', '10:02:11', '10:14:45', 627, 10049); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:02:33', '10:03:00', '12:25:47', 612, 10050); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:02:52', '10:07:40', '10:32:27', 612, 10051); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:07:03', '10:07:43', '10:29:55', 631, 10052); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:10:36', '10:10:43', '10:23:22', 631, 10053); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:12:12', '10:12:31', '10:27:12', 612, 10054); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:12:52', '10:13:02', '10:24:06', 627, 10055); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:13:12', '10:17:17', '10:26:40', 612, 10056); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:14:52', '10:15:01', '10:39:27', 631, 10057); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:21:45', '10:22:01', '10:25:27', 627, 10058); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:21:52', '10:23:00', '10:51:33', 631, 10059); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:22:22', '10:23:07', '10:32:13', 631, 10060); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:22:42', '10:23:22', '10:38:29', 631, 10061); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:23:54', '10:24:04', '10:33:40', 627, 10062); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:26:27', '10:26:40', '12:01:01', 612, 10063); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:26:49', '10:27:12', '11:58:48', 612, 10064); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:26:52', '10:29:55', '10:46:56', 631, 10065); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:28:11', '10:28:23', '10:34:42', 612, 10066); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:29:24', '10:34:43', '10:39:09', 612, 10067); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:32:13', '10:32:14', '12:30:16', 631, 10068); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:36:20', '10:38:29', '11:04:04', 631, 10069); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:38:30', '10:39:27', '10:45:33', 631, 10070); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:38:46', '10:45:34', '11:15:25', 631, 10071); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:39:12', '10:39:15', '10:53:41', 627, 10072); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:42:17', '10:42:21', '11:12:06', 612, 10073); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:42:21', '10:46:56', '10:54:12', 631, 10074); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:42:40', '10:51:33', '14:02:07', 631, 10075); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:44:34', '10:52:57', '11:55:45', 631, 10076); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:45:27', '10:45:36', '11:15:14', 612, 10077); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:46:28', '10:47:26', '11:33:14', 631, 10078); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:46:53', '10:54:12', '11:18:10', 631, 10079); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:49:01', '10:49:59', '11:36:46', 627, 10080); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:51:43', '10:51:45', '10:58:05', 627, 10081); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:52:14', '10:52:23', '10:58:04', 627, 10082); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:53:31', '10:53:42', '11:28:26', 612, 10083); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '10:59:16', '10:59:20', '11:59:04', 627, 10084); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:01:26', '11:01:27', '11:39:46', 627, 10085); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:01:41', '11:02:31', '11:09:51', 612, 10086); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:01:53', '11:01:55', '11:29:00', 627, 10087); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:01:54', '11:02:01', '11:14:09', 612, 10088); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:02:25', '11:04:04', '11:10:04', 631, 10089); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:03:42', '11:10:05', '11:11:29', 631, 10090); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:05:40', '11:14:09', '11:25:00', 612, 10091); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:09:44', '11:09:52', '12:30:20', 612, 10092); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:10:44', '11:11:29', '11:26:38', 631, 10093); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:11:37', '11:12:06', '11:24:52', 612, 10094); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:11:40', '11:15:25', '11:34:56', 631, 10095); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:12:55', '11:15:14', '11:33:42', 612, 10096); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:17:28', '11:18:11', '11:36:07', 631, 10097); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:21:23', '11:24:53', '11:28:45', 612, 10098); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:23:03', '11:28:46', '11:48:50', 612, 10099); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:25:10', '11:25:12', '11:37:07', 627, 10100); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:25:56', '11:26:38', '13:07:33', 631, 10101); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:27:34', '11:36:46', '12:52:38', 627, 10102); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:28:20', '11:28:26', '12:29:35', 612, 10103); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:28:22', '11:33:14', '11:38:36', 631, 10104); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:29:29', '11:29:31', '11:50:47', 627, 10105); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:29:51', '11:31:36', '12:00:28', 631, 10106); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:32:01', '11:33:42', '11:39:46', 612, 10107); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:35:08', '11:36:08', '12:24:35', 631, 10108); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:35:50', '11:36:01', '11:52:14', 612, 10109); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:38:14', '11:38:37', '12:17:11', 631, 10110); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:38:39', '11:38:48', '11:47:51', 627, 10111); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:39:39', '11:39:46', '11:43:38', 612, 10112); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:39:57', '11:40:01', '12:05:13', 631, 10113); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:43:45', '11:43:49', '11:55:29', 612, 10114); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:46:08', '11:55:45', '13:40:22', 631, 10115); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:48:45', '11:48:51', '12:37:07', 612, 10116); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:51:55', '11:51:58', '11:57:20', 627, 10117); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:54:00', '11:54:02', '11:59:42', 627, 10118); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:54:46', '11:55:02', '11:58:38', 627, 10119); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:55:08', '11:57:20', '12:13:43', 627, 10120); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:57:47', '12:00:28', '12:59:01', 631, 10121); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:58:24', '11:59:04', '13:45:50', 627, 10122); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:58:25', '12:05:13', '12:17:12', 631, 10123); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '11:58:52', '11:58:57', '12:22:52', 612, 10124); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:02:23', '12:02:28', '12:11:29', 627, 10125); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:03:27', '12:04:31', '12:06:20', 631, 10126); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:03:35', '12:03:49', '12:41:17', 627, 10127); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:06:52', '12:06:58', '12:48:48', 612, 10128); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:07:13', '12:07:20', '12:14:47', 612, 10129); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:07:25', '12:11:29', '12:17:16', 627, 10130); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:07:56', '12:08:28', '12:18:59', 627, 10131); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:10:46', '12:17:11', '13:02:12', 631, 10132); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:12:22', '12:13:43', '12:21:40', 627, 10133); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:14:13', '12:17:13', '12:37:21', 631, 10134); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:14:21', '12:14:47', '12:29:04', 612, 10135); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:17:33', '12:24:36', '12:29:04', 631, 10136); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:20:07', '12:29:05', '12:52:38', 631, 10137); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:20:42', '12:22:53', '12:45:51', 612, 10138); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:22:04', '12:25:47', '13:06:25', 612, 10139); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:22:14', '12:22:18', '12:40:46', 627, 10140); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:22:53', '12:30:52', '13:06:13', 631, 10141); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:23:03', '12:23:12', '13:02:54', 627, 10142); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:23:04', '12:29:05', '12:52:05', 612, 10143); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:24:58', '12:26:45', '14:08:51', 631, 10144); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:25:20', '12:29:53', '13:20:55', 627, 10145); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:26:38', '12:30:03', '12:41:09', 612, 10146); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:27:42', '12:29:35', '13:43:13', 612, 10147); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:28:30', '12:29:57', '12:38:21', 627, 10148); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:29:02', '12:30:44', '12:39:31', 612, 10149); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:29:20', '12:37:07', '12:50:29', 612, 10150); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:29:49', '12:37:21', '12:43:39', 631, 10151); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:29:54', '12:41:10', '12:50:29', 612, 10152); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:30:09', '12:37:41', '13:00:49', 627, 10153); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:32:07', '12:38:21', '12:52:09', 627, 10154); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:34:14', '12:43:39', '12:52:25', 631, 10155); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:34:33', '12:39:32', '12:45:15', 612, 10156); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:36:46', '12:36:50', '13:25:10', 627, 10157); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:39:20', '12:39:53', '13:21:13', 627, 10158); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:39:32', '12:45:38', '13:43:29', 612, 10159); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:41:42', '12:41:46', '13:06:20', 612, 10160); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:42:51', '12:43:07', '12:49:06', 631, 10161); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:43:39', '12:52:25', '13:09:51', 631, 10162); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:44:25', '12:44:28', '12:53:52', 627, 10163); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:45:03', '12:45:51', '14:00:10', 612, 10164); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:45:48', '12:48:49', '12:52:00', 612, 10165); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:46:08', '12:50:29', '13:15:37', 612, 10166); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:46:10', '12:52:38', '12:59:08', 631, 10167); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:46:51', '12:50:29', '13:07:26', 612, 10168); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:50:59', '12:52:38', '13:17:46', 627, 10169); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:53:41', '12:59:09', '13:03:48', 631, 10170); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '12:58:51', '12:58:53', '13:26:01', 627, 10171); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:00:13', '13:03:48', '13:17:38', 631, 10172); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:00:37', '13:06:14', '13:41:11', 631, 10173); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:00:47', '13:02:12', '13:58:03', 631, 10174); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:02:35', '13:07:34', '13:38:28', 631, 10175); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:03:14', '13:05:03', '13:10:03', 627, 10176); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:06:04', '13:06:25', '13:56:44', 612, 10177); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:06:24', '13:06:26', '13:14:42', 627, 10178); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:07:18', '13:07:26', '13:17:49', 612, 10179); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:07:44', '13:09:51', '13:47:09', 631, 10180); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:09:18', '13:10:08', '13:25:51', 627, 10181); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:11:03', '13:15:37', '13:20:40', 612, 10182); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:12:57', '13:14:43', '13:34:35', 627, 10183); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:13:33', '13:13:51', '13:24:57', 612, 10184); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:14:28', '13:20:55', '13:36:57', 627, 10185); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:14:51', '13:21:14', '13:55:47', 627, 10186); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:16:16', '13:17:47', '13:20:45', 627, 10187); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:16:30', '13:17:39', '14:11:10', 631, 10188); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:17:42', '13:17:49', '13:41:26', 612, 10189); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:18:10', '13:20:45', '14:11:56', 627, 10190); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:19:31', '13:20:40', '13:21:56', 612, 10191); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:20:47', '13:25:52', '13:40:28', 627, 10192); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:21:55', '13:21:57', '13:35:16', 612, 10193); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:22:14', '13:26:09', '13:48:23', 612, 10194); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:24:34', '13:24:57', '13:26:09', 612, 10195); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:30:32', '13:34:35', '13:51:29', 627, 10196); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:31:04', '13:40:23', '14:15:36', 631, 10197); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:31:55', '13:38:28', '13:45:56', 631, 10198); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:32:27', '13:41:12', '14:01:01', 631, 10199); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:33:17', '13:38:02', '13:47:19', 627, 10200); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:35:10', '13:35:16', '14:30:17', 612, 10201); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:37:50', '13:40:29', '13:52:18', 627, 10202); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:38:03', '13:47:20', '14:20:14', 627, 10203); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:40:23', '13:41:27', '14:20:28', 612, 10204); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:40:44', '13:40:48', '16:15:12', 612, 10205); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:40:53', '13:46:07', '14:08:50', 631, 10206); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:41:05', '13:43:13', '13:53:53', 612, 10207); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:42:41', '13:43:30', '14:07:43', 612, 10208); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:43:17', '13:53:30', '14:08:46', 612, 10209); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:43:21', '13:47:09', '14:04:59', 631, 10210); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:44:48', '13:45:50', '15:10:35', 627, 10211); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:46:45', '13:51:29', '14:06:47', 627, 10212); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:48:13', '13:48:23', '14:09:59', 612, 10213); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:48:37', '13:52:18', '13:55:37', 627, 10214); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:49:57', '13:54:08', '14:03:05', 627, 10215); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:51:11', '13:52:14', '15:08:13', 612, 10216); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:51:28', '13:51:31', '14:14:11', 627, 10217); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:51:44', '13:55:38', '14:05:40', 627, 10218); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:53:27', '14:01:02', '14:15:38', 631, 10219); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:53:47', '13:53:53', '14:06:09', 612, 10220); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:55:14', '14:02:07', '14:18:05', 631, 10221); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:55:44', '14:04:59', '14:14:38', 631, 10222); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:56:00', '13:58:03', '16:08:05', 631, 10223); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:56:30', '13:56:44', '14:26:59', 612, 10224); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:57:17', '14:08:50', '14:28:56', 631, 10225); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:59:19', '14:03:05', '14:10:08', 627, 10226); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '13:59:44', '14:11:11', '14:20:12', 631, 10227); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:00:02', '14:00:10', '14:33:18', 612, 10228); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:02:08', '14:02:13', '14:06:23', 627, 10229); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:02:22', '14:14:38', '14:38:50', 631, 10230); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:03:20', '14:11:57', '14:53:03', 627, 10231); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:04:38', '14:08:47', '14:24:36', 612, 10232); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:05:02', '14:20:29', '16:15:12', 612, 10233); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:05:45', '14:06:10', '14:23:03', 612, 10234); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:06:20', '14:07:43', '14:20:59', 612, 10235); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:06:27', '14:15:38', '14:54:34', 631, 10236); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:07:14', '14:15:37', '16:46:01', 631, 10237); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:08:34', '14:10:08', '14:19:26', 627, 10238); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:08:54', '14:18:06', '15:01:49', 631, 10239); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:09:49', '14:09:59', '14:25:54', 612, 10240); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:09:58', '14:13:28', '14:22:09', 627, 10241); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:10:29', '14:21:00', '14:25:58', 612, 10242); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:11:09', '14:19:26', '14:31:25', 627, 10243); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:14:04', '14:14:11', '15:14:46', 627, 10244); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:14:35', '14:24:37', '15:13:08', 612, 10245); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:17:39', '14:26:36', '14:44:38', 612, 10246); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:18:24', '14:20:12', '14:31:11', 631, 10247); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:19:34', '14:20:07', '15:02:11', 627, 10248); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:20:41', '14:23:03', '14:56:41', 612, 10249); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:21:53', '14:27:00', '15:01:31', 612, 10250); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:22:18', '14:22:20', '14:28:38', 627, 10251); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:22:56', '14:23:53', '14:29:44', 627, 10252); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:23:46', '14:28:38', '14:30:18', 627, 10253); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:24:57', '14:28:56', '15:01:57', 631, 10254); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:25:24', '14:30:18', '14:42:38', 612, 10255); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:25:32', '14:29:44', '14:37:19', 627, 10256); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:25:33', '14:25:54', '14:48:53', 612, 10257); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:27:52', '14:30:18', '15:11:08', 627, 10258); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:28:38', '14:31:11', '14:43:35', 631, 10259); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:29:19', '14:38:50', '14:47:48', 631, 10260); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:31:22', '14:32:06', '14:55:33', 631, 10261); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:31:39', '14:33:18', '15:41:18', 612, 10262); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:32:26', '14:32:36', '14:41:55', 627, 10263); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:33:19', '14:37:19', '14:59:53', 627, 10264); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:33:52', '14:44:38', '15:20:56', 612, 10265); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:34:24', '14:42:38', '15:13:18', 612, 10266); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:38:07', '14:43:36', '15:00:41', 631, 10267); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:38:08', '14:41:56', '15:29:30', 627, 10268); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:40:16', '14:47:48', '15:25:08', 631, 10269); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:40:48', '14:41:05', '15:30:55', 627, 10270); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:43:22', '14:53:03', '15:24:40', 627, 10271); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:48:11', '14:56:42', '15:18:24', 612, 10272); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:48:40', '14:54:55', '14:59:16', 631, 10273); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:51:45', '15:01:31', '15:08:13', 612, 10274); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:51:59', '14:52:16', '15:38:31', 627, 10275); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:52:25', '14:54:34', '15:12:19', 631, 10276); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:54:30', '15:00:41', '15:08:31', 631, 10277); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:54:53', '15:01:49', '15:11:51', 631, 10278); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:55:19', '14:55:33', '16:02:37', 631, 10279); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '14:59:00', '15:01:57', '15:23:32', 631, 10280); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:00:19', '15:00:30', '15:13:13', 612, 10281); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:02:22', '15:04:39', '15:07:09', 631, 10282); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:02:30', '15:04:34', '15:13:49', 627, 10283); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:05:14', '15:08:14', '15:22:33', 612, 10284); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:06:15', '15:08:31', '15:16:41', 631, 10285); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:06:23', '15:11:08', '15:21:02', 627, 10286); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:06:38', '15:07:11', '15:33:27', 627, 10287); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:07:53', '15:13:50', '15:33:20', 627, 10288); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:08:07', '15:08:14', '15:13:18', 612, 10289); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:08:23', '15:11:51', '15:18:43', 631, 10290); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:08:35', '15:13:09', '15:27:03', 612, 10291); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:09:01', '15:12:19', '15:28:34', 631, 10292); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:09:20', '15:10:35', '16:13:33', 627, 10293); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:09:38', '15:16:31', '15:23:26', 631, 10294); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:11:24', '15:13:18', '16:15:12', 612, 10295); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:11:40', '15:20:57', '15:46:35', 612, 10296); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:12:11', '15:16:41', '15:51:20', 631, 10297); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:13:08', '15:13:18', '15:30:06', 612, 10298); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:14:27', '15:18:43', '15:52:06', 631, 10299); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:17:45', '15:18:24', '15:51:43', 612, 10300); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:18:00', '15:21:02', '15:34:48', 627, 10301); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:18:46', '15:18:57', '15:26:50', 627, 10302); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:19:05', '15:20:30', '15:44:13', 627, 10303); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:19:23', '15:29:30', '15:35:27', 627, 10304); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:19:54', '15:23:32', '15:48:45', 631, 10305); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:20:11', '15:22:33', '15:33:29', 612, 10306); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:20:50', '15:27:04', '15:34:52', 612, 10307); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:21:09', '15:30:07', '15:59:18', 612, 10308); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:22:03', '15:25:08', '15:42:32', 631, 10309); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:23:37', '15:24:40', '16:09:27', 627, 10310); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:23:48', '15:28:35', '15:42:21', 631, 10311); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:26:41', '15:26:50', '15:37:03', 627, 10312); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:29:21', '15:33:29', '15:42:49', 612, 10313); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:29:22', '15:33:20', '15:38:08', 627, 10314); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:35:41', '15:35:55', '15:49:50', 612, 10315); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:37:33', '15:41:18', '15:59:14', 612, 10316); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:39:02', '15:42:51', '16:15:12', 612, 10317); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:40:14', '15:42:21', '16:36:58', 631, 10318); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:41:06', '15:42:33', '15:56:10', 631, 10319); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:42:17', '15:43:06', '16:00:07', 627, 10320); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:45:17', '15:46:36', '15:59:28', 612, 10321); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:45:21', '15:45:28', '16:12:58', 627, 10322); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:45:45', '15:50:31', '16:02:41', 627, 10323); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:48:27', '15:49:50', '15:59:18', 612, 10324); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:48:27', '15:48:45', '16:35:50', 631, 10325); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:48:47', '16:00:07', '16:09:35', 627, 10326); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:49:18', '15:51:20', '16:02:15', 631, 10327); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:51:21', '15:51:43', '15:54:01', 612, 10328); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:52:16', '15:52:25', '16:15:12', 612, 10329); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:53:09', '15:56:11', '16:33:16', 631, 10330); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:55:01', '16:02:42', '16:13:07', 627, 10331); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:55:36', '15:55:56', '16:15:12', 612, 10332); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-26', '15:55:43', '16:02:16', '16:33:29', 631, 10333); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '09:09:13', '09:09:17', '12:11:38', 631, 10334); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '09:13:44', '09:20:35', '09:44:39', 631, 10335); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '09:20:41', '09:24:17', '10:19:43', 631, 10336); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '09:22:46', '09:23:32', '11:36:51', 631, 10337); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '09:40:15', '09:40:37', '09:48:31', 627, 10338); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '09:44:31', '09:44:39', '10:07:12', 631, 10339); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '09:53:39', '09:56:00', '10:25:03', 631, 10340); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '09:55:27', '09:55:28', '10:05:18', 627, 10341); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '09:56:29', '10:00:47', '10:35:39', 627, 10342); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '10:03:56', '10:04:25', '10:05:50', 631, 10343); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '10:04:43', '10:05:50', '11:54:19', 631, 10344); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '10:05:06', '10:07:12', '10:16:48', 631, 10345); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '10:06:30', '10:06:40', '10:11:29', 627, 10346); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '10:07:44', '10:16:48', '10:40:38', 631, 10347); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '10:17:21', '10:19:44', '11:36:18', 631, 10348); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '10:21:35', '10:21:44', '10:44:37', 627, 10349); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '10:23:13', '10:23:22', '11:13:02', 627, 10350); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '10:30:02', '10:30:12', '10:40:43', 631, 10351); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '10:39:43', '10:39:48', '11:15:38', 627, 10352); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '10:40:38', '10:40:39', '11:37:33', 631, 10353); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '10:43:04', '10:43:11', '10:46:59', 627, 10354); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '10:51:11', '10:51:15', '12:14:36', 627, 10355); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '10:52:27', '10:52:35', '11:21:31', 631, 10356); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:17:31', '11:21:32', '11:42:32', 631, 10357); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:20:01', '11:24:57', '12:08:18', 631, 10358); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:26:20', '11:26:29', '11:28:36', 627, 10359); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:26:36', '11:26:39', '11:37:23', 631, 10360); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:33:24', '12:08:17', '12:43:24', 627, 10361); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:34:40', '11:36:19', '12:07:57', 631, 10362); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:35:05', '11:35:14', '11:46:45', 612, 10363); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:35:46', '11:37:23', '11:50:56', 631, 10364); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:36:27', '11:36:51', '11:47:07', 631, 10365); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:37:18', '11:37:33', '12:21:10', 631, 10366); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:40:12', '11:42:33', '11:57:14', 631, 10367); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:44:54', '12:14:37', '13:31:10', 627, 10368); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:46:38', '11:47:07', '12:21:25', 631, 10369); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:48:24', '11:50:56', '12:05:28', 631, 10370); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:48:54', '11:54:20', '12:05:02', 631, 10371); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:51:07', '11:51:12', '12:24:51', 612, 10372); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:55:34', '11:55:37', '12:17:27', 612, 10373); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:57:37', '11:57:45', '12:08:33', 631, 10374); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:58:03', '12:05:02', '12:09:15', 631, 10375); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '11:59:33', '12:05:28', '12:30:20', 631, 10376); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:00:49', '12:01:03', '12:37:11', 627, 10377); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:03:13', '12:07:57', '13:56:11', 631, 10378); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:03:41', '12:08:18', '13:02:02', 631, 10379); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:04:11', '12:08:33', '12:26:08', 631, 10380); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:06:46', '12:06:49', '13:04:24', 612, 10381); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:08:55', '12:09:15', '12:40:30', 631, 10382); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:09:13', '12:09:32', '12:31:08', 627, 10383); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:09:52', '12:12:10', '12:39:23', 627, 10384); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:09:52', '12:11:39', '14:29:32', 631, 10385); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:12:55', '12:21:11', '12:27:13', 631, 10386); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:16:13', '12:21:25', '13:35:42', 631, 10387); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:17:05', '12:26:09', '12:42:08', 631, 10388); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:18:22', '12:27:13', '13:03:48', 631, 10389); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:21:02', '12:21:08', '12:39:21', 627, 10390); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:21:50', '12:22:12', '12:44:30', 627, 10391); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:23:05', '12:24:51', '12:41:46', 612, 10392); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:23:19', '12:31:59', '12:47:35', 612, 10393); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:24:54', '12:43:25', '12:48:00', 627, 10394); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:24:55', '12:41:47', '13:38:34', 612, 10395); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:25:30', '12:48:01', '12:54:49', 627, 10396); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:25:30', '12:30:20', '12:52:27', 631, 10397); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:29:04', '12:43:39', '12:49:27', 612, 10398); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:29:43', '12:34:27', '12:56:38', 627, 10399); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:35:24', '12:40:30', '12:50:27', 631, 10400); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:35:35', '12:39:21', '12:52:19', 627, 10401); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:35:57', '12:49:27', '12:50:56', 612, 10402); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:36:08', '12:47:35', '12:56:42', 612, 10403); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:40:14', '12:42:08', '13:07:36', 631, 10404); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:40:32', '12:41:45', '12:47:05', 627, 10405); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:41:20', '12:44:30', '13:22:59', 627, 10406); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:42:07', '12:50:57', '13:01:08', 612, 10407); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:42:27', '13:01:08', '13:32:36', 612, 10408); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:42:45', '12:50:27', '13:20:24', 631, 10409); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:47:02', '13:02:11', '13:10:07', 612, 10410); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:47:08', '12:54:50', '13:40:22', 627, 10411); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:49:01', '12:52:19', '12:59:31', 627, 10412); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:52:11', '12:52:27', '14:55:46', 631, 10413); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:52:21', '13:02:02', '13:03:23', 631, 10414); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:55:09', '13:04:25', '13:17:49', 612, 10415); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:55:53', '13:10:08', '18:32:50', 612, 10416); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:56:46', '13:03:24', '13:43:50', 631, 10417); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '12:58:10', '13:03:48', '13:14:33', 631, 10418); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:03:55', '13:17:50', '14:11:30', 612, 10419); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:06:02', '13:07:37', '13:14:08', 631, 10420); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:06:04', '13:07:28', '13:31:54', 627, 10421); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:07:55', '13:14:08', '13:24:14', 631, 10422); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:08:03', '13:08:22', '13:34:13', 627, 10423); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:09:50', '13:14:33', '13:37:40', 631, 10424); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:13:00', '13:20:24', '13:48:16', 631, 10425); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:13:22', '13:26:37', '13:29:10', 612, 10426); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:13:59', '13:18:47', '13:32:48', 627, 10427); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:16:29', '13:32:36', '14:00:45', 612, 10428); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:19:03', '13:38:34', '13:45:08', 612, 10429); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:20:39', '13:22:59', '13:30:17', 627, 10430); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:20:45', '13:21:06', '13:31:33', 612, 10431); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:20:56', '13:40:32', '13:52:33', 627, 10432); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:21:57', '13:45:08', '13:49:54', 612, 10433); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:23:25', '13:31:34', '13:37:56', 612, 10434); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:25:06', '13:27:52', '13:38:05', 627, 10435); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:28:48', '13:30:18', '14:28:31', 627, 10436); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:29:03', '13:31:11', '14:48:05', 627, 10437); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:30:29', '13:31:55', '13:39:07', 627, 10438); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:33:31', '13:38:05', '14:18:12', 627, 10439); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:33:56', '13:34:00', '13:55:13', 627, 10440); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:34:12', '13:34:15', '13:55:45', 631, 10441); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:35:23', '13:35:43', '13:51:51', 631, 10442); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:36:42', '13:37:41', '13:58:09', 631, 10443); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:40:59', '13:43:22', '13:52:13', 627, 10444); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:42:54', '13:49:55', '14:25:21', 612, 10445); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:43:35', '13:48:13', '13:52:15', 627, 10446); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:43:43', '13:43:51', '15:10:36', 631, 10447); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:44:14', '13:48:17', '13:56:11', 631, 10448); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:47:50', '13:52:13', '14:02:29', 627, 10449); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:51:14', '13:53:11', '14:24:07', 627, 10450); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:51:31', '13:55:45', '14:02:18', 631, 10451); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:51:58', '13:56:11', '13:57:50', 631, 10452); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:57:22', '13:57:51', '14:28:29', 631, 10453); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:57:57', '14:02:00', '14:47:51', 627, 10454); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '13:59:18', '14:00:51', '14:41:34', 631, 10455); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:00:04', '14:02:19', '14:18:44', 631, 10456); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:00:15', '14:02:10', '14:39:51', 627, 10457); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:02:16', '14:02:30', '14:06:09', 627, 10458); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:08:50', '14:14:24', '14:25:43', 627, 10459); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:13:25', '14:18:44', '15:19:22', 631, 10460); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:14:57', '14:18:11', '14:26:27', 627, 10461); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:17:26', '14:18:13', '14:33:43', 627, 10462); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:20:08', '14:24:07', '15:02:15', 627, 10463); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:22:28', '14:26:27', '14:30:40', 627, 10464); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:26:16', '14:28:29', '14:37:28', 631, 10465); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:26:21', '14:26:35', '14:57:32', 627, 10466); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:26:28', '14:29:33', '15:35:25', 631, 10467); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:31:37', '14:37:29', '14:52:39', 631, 10468); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:35:40', '14:35:46', '14:41:18', 627, 10469); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:37:00', '14:39:52', '14:44:23', 627, 10470); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:37:28', '14:41:18', '15:00:42', 627, 10471); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:37:59', '14:48:05', '16:02:35', 627, 10472); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:38:40', '14:48:55', '15:01:28', 631, 10473); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:39:12', '14:52:39', '15:07:01', 631, 10474); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:41:34', '14:45:40', '16:11:43', 627, 10475); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:43:20', '14:47:21', '14:49:08', 627, 10476); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:43:34', '14:47:51', '14:58:18', 627, 10477); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:44:19', '14:49:09', '14:54:13', 627, 10478); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:44:34', '14:55:46', '15:08:17', 631, 10479); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:44:44', '14:54:13', '15:10:53', 627, 10480); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:46:29', '15:01:29', '17:21:11', 631, 10481); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:47:20', '15:07:02', '15:20:49', 631, 10482); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:48:13', '15:02:15', '15:19:50', 627, 10483); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:53:40', '14:57:35', '14:59:11', 627, 10484); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:55:39', '14:58:18', '15:14:43', 627, 10485); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:56:03', '14:57:53', '15:49:44', 627, 10486); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:56:32', '14:58:42', '15:02:53', 627, 10487); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:57:14', '14:57:21', '15:03:36', 612, 10488); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:57:30', '14:57:32', '15:00:49', 612, 10489); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:58:00', '14:58:06', '15:30:21', 612, 10490); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:58:28', '14:58:36', '15:36:22', 612, 10491); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:58:47', '15:08:17', '15:15:58', 631, 10492); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:58:52', '14:59:11', '15:38:11', 627, 10493); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:59:06', '14:59:06', '15:24:47', 612, 10494); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:59:21', '15:09:34', '15:36:33', 631, 10495); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '14:59:32', '14:59:40', '15:05:53', 612, 10496); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:00:04', '15:00:49', '15:07:09', 612, 10497); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:01:19', '15:01:23', '15:09:05', 627, 10498); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:01:24', '15:05:53', '15:09:26', 612, 10499); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:01:39', '15:10:37', '17:15:55', 631, 10500); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:02:01', '15:07:09', '16:09:58', 612, 10501); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:02:14', '15:09:05', '15:27:27', 627, 10502); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:02:58', '15:03:36', '15:17:23', 612, 10503); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:03:59', '15:09:27', '15:31:48', 612, 10504); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:09:02', '15:17:24', '15:26:23', 612, 10505); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:09:50', '15:10:53', '15:40:20', 627, 10506); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:11:46', '15:15:59', '15:23:32', 631, 10507); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:14:19', '15:19:22', '16:53:45', 631, 10508); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:16:44', '15:17:53', '15:38:51', 627, 10509); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:17:01', '15:19:51', '15:42:22', 627, 10510); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:18:17', '15:20:50', '15:44:47', 631, 10511); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:18:43', '15:23:32', '15:46:41', 631, 10512); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:20:16', '15:25:52', '16:25:57', 631, 10513); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:21:43', '15:22:29', '15:35:16', 631, 10514); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:21:58', '15:26:24', '16:09:46', 612, 10515); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:23:02', '15:27:27', '15:37:42', 627, 10516); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:25:21', '15:35:17', '15:54:51', 631, 10517); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:30:56', '15:37:42', '16:02:32', 627, 10518); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:31:07', '15:42:22', '16:00:05', 627, 10519); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:32:15', '15:35:05', '16:01:12', 627, 10520); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:32:30', '15:38:11', '15:43:02', 627, 10521); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:33:26', '15:40:20', '15:53:03', 627, 10522); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:34:57', '15:36:34', '15:48:35', 631, 10523); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:35:06', '15:35:25', '16:03:22', 631, 10524); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:35:08', '15:40:36', '16:02:07', 627, 10525); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:37:48', '15:45:09', '15:47:53', 627, 10526); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:38:40', '15:38:52', '16:01:34', 627, 10527); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:41:25', '15:44:47', '16:48:59', 631, 10528); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:41:47', '15:46:42', '16:43:22', 631, 10529); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:45:01', '15:47:53', '16:00:09', 627, 10530); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:47:40', '15:48:35', '16:10:41', 631, 10531); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:51:05', '15:53:03', '16:01:48', 627, 10532); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-27', '15:53:14', '16:00:10', '16:01:57', 627, 10533); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:12:24', '09:13:27', '09:24:49', 631, 10534); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:15:32', '09:24:50', '09:41:49', 631, 10535); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:15:49', '09:16:12', '09:56:45', 612, 10536); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:15:52', '09:16:41', '09:53:56', 627, 10537); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:17:35', '09:18:12', '09:27:19', 627, 10538); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:18:24', '09:39:53', '10:07:47', 612, 10539); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:30:00', '09:30:10', '09:49:03', 627, 10540); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:33:32', '09:38:15', '10:18:03', 627, 10541); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:40:37', '09:56:45', '09:58:13', 612, 10542); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:41:08', '09:57:52', '10:02:47', 612, 10543); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:41:19', '09:41:49', '09:49:32', 631, 10544); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:43:38', '09:43:45', '10:11:07', 612, 10545); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:46:56', '09:58:13', '10:34:13', 612, 10546); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:49:09', '09:49:32', '09:59:16', 631, 10547); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:53:26', '09:53:56', '10:02:55', 627, 10548); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:54:55', '09:57:54', '10:02:01', 627, 10549); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:55:45', '09:55:55', '10:23:33', 631, 10550); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:57:48', '09:59:45', '10:09:18', 612, 10551); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:58:28', '09:59:17', '10:30:12', 631, 10552); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:59:06', '10:01:00', '10:15:28', 627, 10553); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '09:59:58', '10:00:07', '10:57:32', 631, 10554); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:00:27', '10:07:13', '10:23:39', 631, 10555); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:02:35', '10:02:55', '10:15:57', 627, 10556); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:03:37', '10:03:38', '10:16:11', 612, 10557); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:04:04', '10:07:47', '10:43:32', 612, 10558); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:10:05', '10:10:14', '10:57:29', 612, 10559); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:10:59', '10:11:08', '10:21:25', 612, 10560); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:11:52', '10:11:57', '10:19:01', 627, 10561); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:13:22', '10:15:29', '10:36:01', 627, 10562); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:14:56', '10:18:04', '10:25:59', 627, 10563); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:17:41', '10:19:01', '10:27:32', 612, 10564); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:17:55', '10:21:25', '11:50:25', 612, 10565); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:22:38', '10:23:34', '10:28:36', 631, 10566); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:23:27', '10:23:40', '11:57:21', 631, 10567); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:24:35', '10:24:35', '10:44:20', 627, 10568); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:24:42', '10:25:59', '10:33:04', 627, 10569); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:24:59', '10:33:05', '11:16:43', 627, 10570); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:25:00', '10:28:23', '10:33:19', 612, 10571); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:26:06', '10:28:36', '10:32:27', 631, 10572); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:26:34', '10:29:24', '11:02:11', 627, 10573); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:27:06', '10:27:15', '11:20:27', 627, 10574); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:27:17', '10:30:13', '11:05:12', 631, 10575); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:27:57', '10:33:19', '10:38:21', 612, 10576); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:28:36', '10:30:02', '11:01:06', 631, 10577); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:29:37', '10:36:03', '10:48:45', 627, 10578); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:31:11', '10:34:13', '10:49:53', 612, 10579); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:31:30', '10:32:16', '11:21:44', 627, 10580); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:35:06', '10:35:07', '10:50:43', 627, 10581); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:39:21', '10:39:22', '10:42:35', 612, 10582); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:45:24', '10:49:51', '11:02:21', 612, 10583); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:47:56', '10:48:01', '10:51:22', 627, 10584); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:53:09', '10:53:13', '11:10:42', 627, 10585); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:55:08', '10:57:33', '14:55:42', 631, 10586); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:57:44', '11:01:05', '11:11:16', 627, 10587); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '10:59:54', '10:59:58', '11:33:57', 612, 10588); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:00:34', '11:01:07', '11:40:49', 631, 10589); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:00:42', '11:00:56', '11:09:03', 612, 10590); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:02:42', '11:02:52', '11:11:42', 612, 10591); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:02:46', '11:03:35', '11:15:23', 631, 10592); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:03:48', '11:05:13', '11:31:41', 631, 10593); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:07:31', '11:09:58', '11:17:45', 627, 10594); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:11:50', '11:11:53', '11:25:54', 627, 10595); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:11:51', '11:11:53', '11:32:26', 612, 10596); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:15:02', '11:15:06', '11:29:09', 627, 10597); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:15:09', '11:15:23', '11:24:26', 631, 10598); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:15:17', '11:16:47', '11:31:26', 627, 10599); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:16:53', '11:24:26', '11:28:27', 631, 10600); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:20:19', '11:20:25', '11:24:25', 627, 10601); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:20:32', '11:31:26', '12:46:57', 627, 10602); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:21:00', '11:21:44', '12:42:33', 627, 10603); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:24:06', '11:40:49', '11:48:48', 631, 10604); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:24:58', '11:28:27', '11:42:07', 631, 10605); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:25:16', '11:25:16', '11:44:31', 612, 10606); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:25:45', '11:25:46', '11:33:54', 627, 10607); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:27:10', '11:27:19', '12:22:20', 627, 10608); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:29:33', '11:29:35', '11:56:03', 627, 10609); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:30:16', '11:31:41', '12:15:16', 631, 10610); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:30:22', '11:30:30', '12:51:49', 627, 10611); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:30:25', '11:30:28', '12:16:16', 612, 10612); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:32:24', '11:33:54', '11:39:59', 627, 10613); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:32:24', '11:42:07', '12:05:21', 631, 10614); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:36:46', '11:36:47', '11:43:40', 612, 10615); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:37:31', '11:43:40', '11:51:32', 612, 10616); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:38:55', '11:57:21', '11:59:30', 631, 10617); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:39:54', '11:44:31', '11:52:28', 612, 10618); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:42:10', '11:50:26', '12:00:52', 612, 10619); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:44:07', '11:51:32', '12:52:25', 612, 10620); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:45:51', '11:52:29', '12:06:53', 612, 10621); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:47:35', '11:50:26', '12:21:37', 612, 10622); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:48:26', '12:00:52', '12:05:13', 612, 10623); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:51:42', '12:01:19', '12:15:15', 631, 10624); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:52:22', '11:52:28', '12:01:07', 627, 10625); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:54:11', '11:54:34', '12:12:20', 627, 10626); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:55:18', '11:56:03', '12:11:40', 627, 10627); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:57:01', '12:05:22', '12:31:03', 631, 10628); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:57:57', '12:07:20', '12:18:50', 631, 10629); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '11:59:37', '12:00:39', '12:10:26', 627, 10630); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:00:36', '12:05:14', '12:32:29', 612, 10631); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:05:20', '12:21:37', '12:26:42', 612, 10632); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:07:17', '12:07:30', '12:22:14', 627, 10633); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:08:38', '12:08:49', '12:46:41', 627, 10634); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:10:05', '12:10:26', '12:29:11', 627, 10635); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:10:13', '12:11:37', '12:32:21', 631, 10636); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:10:18', '12:26:42', '12:37:02', 612, 10637); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:10:36', '12:19:17', '12:24:13', 627, 10638); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:11:23', '12:15:15', '12:32:39', 631, 10639); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:12:31', '12:16:16', '12:55:18', 612, 10640); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:12:57', '12:22:14', '12:30:06', 627, 10641); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:13:01', '12:15:16', '12:26:16', 631, 10642); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:15:03', '12:18:50', '12:54:15', 631, 10643); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:16:00', '12:23:55', '12:58:59', 631, 10644); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:16:32', '12:26:17', '12:27:27', 631, 10645); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:16:33', '12:32:29', '13:16:17', 612, 10646); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:19:50', '12:27:27', '12:59:07', 631, 10647); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:19:55', '12:37:01', '12:54:04', 612, 10648); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:22:55', '12:30:07', '12:34:28', 627, 10649); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:25:42', '12:34:29', '12:42:13', 627, 10650); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:25:46', '12:31:03', '12:49:20', 631, 10651); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:28:14', '12:32:40', '12:55:20', 631, 10652); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:31:09', '12:31:21', '12:48:09', 627, 10653); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:31:19', '12:39:47', '13:13:22', 631, 10654); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:31:34', '12:37:03', '13:51:01', 627, 10655); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:31:54', '12:47:38', '15:39:53', 631, 10656); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:32:25', '12:41:40', '13:14:28', 627, 10657); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:34:23', '12:42:14', '12:46:17', 627, 10658); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:34:50', '12:52:41', '13:01:01', 612, 10659); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:35:04', '12:35:35', '12:41:38', 627, 10660); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:35:10', '12:37:03', '13:43:38', 612, 10661); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:37:10', '12:46:17', '13:07:36', 627, 10662); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:42:05', '12:42:33', '13:11:02', 627, 10663); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:44:28', '12:52:09', '13:00:42', 627, 10664); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:44:47', '12:49:21', '12:53:15', 631, 10665); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:45:27', '12:47:00', '14:40:50', 627, 10666); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:46:02', '12:53:15', '13:47:20', 631, 10667); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:50:03', '12:54:04', '12:57:30', 612, 10668); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:50:03', '12:54:15', '13:10:31', 631, 10669); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:54:20', '12:55:18', '13:16:31', 612, 10670); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:54:24', '12:55:20', '13:07:22', 631, 10671); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:54:56', '12:58:59', '13:53:56', 631, 10672); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:55:41', '12:59:07', '13:05:40', 631, 10673); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:55:46', '12:57:30', '12:59:45', 612, 10674); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:57:34', '13:05:40', '13:19:09', 631, 10675); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:57:48', '12:59:39', '13:13:10', 627, 10676); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:58:14', '12:58:31', '13:17:57', 627, 10677); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:58:30', '13:00:42', '13:02:53', 627, 10678); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '12:59:31', '13:07:22', '13:38:14', 631, 10679); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:01:42', '13:06:42', '13:15:09', 627, 10680); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:03:43', '13:03:44', '13:09:56', 627, 10681); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:04:15', '13:06:41', '13:23:36', 612, 10682); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:05:42', '13:10:31', '13:20:59', 631, 10683); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:07:36', '13:07:37', '13:11:11', 627, 10684); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:08:58', '13:16:17', '13:27:04', 612, 10685); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:09:17', '13:13:23', '13:27:25', 631, 10686); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:09:43', '13:09:56', '13:23:26', 627, 10687); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:09:54', '13:11:03', '14:11:11', 627, 10688); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:10:31', '13:19:09', '13:23:18', 631, 10689); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:10:44', '13:11:12', '13:19:04', 627, 10690); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:11:37', '13:21:00', '13:29:20', 631, 10691); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:14:17', '13:23:36', '13:28:53', 612, 10692); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:15:41', '13:15:48', '13:21:18', 627, 10693); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:19:42', '13:20:06', '13:22:17', 627, 10694); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:19:49', '13:23:18', '13:26:57', 631, 10695); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:20:09', '13:22:18', '13:47:07', 627, 10696); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:21:42', '13:23:26', '13:38:52', 627, 10697); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:22:29', '13:26:57', '14:08:02', 631, 10698); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:23:20', '13:25:55', '13:44:02', 612, 10699); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:25:06', '13:29:20', '13:47:19', 631, 10700); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:26:28', '13:27:04', '13:35:06', 612, 10701); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:27:45', '13:28:53', '13:40:56', 612, 10702); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:28:42', '13:35:06', '13:46:56', 612, 10703); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:30:07', '13:38:15', '14:03:08', 631, 10704); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:33:27', '13:40:56', '14:00:21', 612, 10705); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:39:19', '13:43:05', '14:08:03', 612, 10706); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:39:21', '13:47:19', '13:54:15', 631, 10707); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:40:18', '13:44:02', '14:03:01', 612, 10708); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:41:25', '13:43:38', '13:59:45', 612, 10709); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:42:03', '13:47:20', '14:06:08', 631, 10710); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:42:58', '13:43:48', '13:48:17', 627, 10711); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:43:16', '13:47:07', '13:51:53', 627, 10712); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:43:21', '13:46:56', '13:56:17', 612, 10713); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:44:11', '13:48:17', '14:06:47', 627, 10714); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:47:43', '13:56:18', '14:27:33', 612, 10715); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:47:45', '13:47:48', '13:57:18', 627, 10716); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:48:08', '13:54:16', '14:15:30', 631, 10717); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:48:45', '14:00:21', '14:16:25', 612, 10718); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:50:27', '14:03:01', '14:15:20', 612, 10719); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:50:27', '13:51:01', '13:57:28', 627, 10720); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:50:50', '14:08:04', '14:20:05', 612, 10721); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:51:06', '14:03:08', '14:21:19', 631, 10722); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:51:24', '14:11:12', '15:59:07', 627, 10723); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '13:58:03', '13:59:45', '14:32:13', 612, 10724); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:01:34', '14:15:21', '14:28:13', 612, 10725); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:03:44', '14:06:08', '14:23:39', 631, 10726); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:05:47', '14:08:02', '14:34:32', 631, 10727); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:08:04', '14:16:25', '14:33:59', 612, 10728); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:08:25', '14:15:31', '15:08:15', 631, 10729); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:10:05', '14:10:07', '14:24:09', 627, 10730); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:13:06', '14:13:10', '14:45:43', 627, 10731); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:14:01', '14:20:05', '14:31:31', 612, 10732); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:15:07', '14:27:34', '14:50:53', 612, 10733); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:15:41', '14:28:13', '15:05:06', 612, 10734); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:15:58', '14:21:19', '15:13:14', 631, 10735); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:16:15', '14:41:43', '15:13:45', 627, 10736); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:16:16', '14:23:39', '14:46:44', 631, 10737); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:20:50', '14:31:31', '14:32:49', 612, 10738); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:22:00', '14:22:03', '14:56:00', 627, 10739); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:22:09', '14:22:38', '14:36:28', 631, 10740); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:24:38', '14:32:49', '14:55:46', 612, 10741); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:26:20', '14:34:32', '14:51:13', 631, 10742); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:26:43', '14:26:50', '14:44:49', 627, 10743); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:28:10', '14:32:14', '14:51:44', 612, 10744); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:29:13', '14:33:59', '15:04:38', 612, 10745); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:30:06', '14:51:44', '14:56:33', 612, 10746); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:32:50', '14:50:53', '14:52:51', 612, 10747); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:33:16', '14:52:51', '14:59:54', 612, 10748); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:36:21', '14:36:29', '16:30:44', 631, 10749); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:37:55', '14:46:44', '15:02:45', 631, 10750); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:41:47', '14:41:59', '15:06:00', 627, 10751); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:42:14', '14:44:49', '14:49:25', 627, 10752); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:42:33', '14:49:25', '14:58:55', 627, 10753); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:42:50', '14:55:46', '16:06:52', 612, 10754); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:43:16', '14:50:19', '15:00:06', 627, 10755); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:44:22', '14:44:30', '15:12:03', 627, 10756); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:44:47', '14:59:55', '15:23:27', 612, 10757); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:45:19', '14:45:27', '15:15:51', 627, 10758); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:47:07', '14:51:13', '17:32:28', 631, 10759); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:47:23', '14:56:01', '15:49:24', 627, 10760); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:47:35', '15:04:53', '15:48:47', 612, 10761); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:48:07', '15:05:06', '15:15:56', 612, 10762); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:48:14', '15:13:46', '15:43:30', 627, 10763); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:50:22', '14:58:55', '15:29:19', 627, 10764); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:50:45', '15:00:06', '15:04:19', 627, 10765); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:51:40', '14:56:33', '15:11:13', 612, 10766); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:52:06', '14:55:42', '16:04:57', 631, 10767); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:55:32', '15:17:35', '16:05:48', 612, 10768); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:57:40', '15:23:28', '15:26:50', 612, 10769); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:58:40', '15:11:14', '15:14:19', 612, 10770); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:59:26', '15:14:19', '15:25:53', 612, 10771); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '14:59:46', '15:05:38', '15:13:54', 627, 10772); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:00:52', '15:05:52', '15:27:16', 627, 10773); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:01:55', '15:13:55', '15:19:29', 627, 10774); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:02:06', '15:02:46', '15:19:55', 631, 10775); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:03:02', '15:04:19', '15:43:28', 627, 10776); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:03:35', '15:26:50', '15:29:30', 612, 10777); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:04:29', '15:29:31', '15:42:13', 612, 10778); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:05:00', '15:08:15', '15:43:17', 631, 10779); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:05:58', '15:42:15', '16:02:17', 612, 10780); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:06:49', '15:15:52', '15:28:58', 627, 10781); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:07:07', '15:48:47', '16:04:03', 612, 10782); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:08:32', '15:15:10', '15:23:15', 612, 10783); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:09:32', '15:19:29', '15:31:51', 627, 10784); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:09:53', '15:27:16', '15:33:23', 627, 10785); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:10:20', '15:28:59', '15:46:57', 627, 10786); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:11:22', '16:02:17', '16:20:02', 612, 10787); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:11:37', '15:29:20', '15:38:00', 627, 10788); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:12:17', '15:31:52', '15:53:55', 627, 10789); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:12:51', '15:13:14', '15:22:31', 631, 10790); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:13:08', '16:04:03', '16:08:57', 612, 10791); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:13:12', '15:18:21', '15:31:35', 631, 10792); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:16:27', '15:33:24', '15:35:16', 627, 10793); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:16:57', '15:17:01', '16:01:31', 627, 10794); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:17:26', '15:35:17', '15:58:12', 627, 10795); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:18:04', '16:06:53', '16:23:13', 612, 10796); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:18:30', '16:08:57', '16:28:52', 612, 10797); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:19:18', '15:38:00', '15:42:41', 627, 10798); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:19:27', '15:26:26', '15:32:11', 612, 10799); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:19:43', '15:19:55', '15:38:58', 631, 10800); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:20:09', '16:21:02', '16:23:42', 612, 10801); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:20:32', '15:22:31', '15:30:16', 631, 10802); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:21:50', '15:30:17', '15:40:04', 631, 10803); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:23:22', '16:21:17', '16:31:56', 612, 10804); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:24:28', '15:38:59', '15:53:27', 631, 10805); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:24:50', '15:24:58', '16:17:58', 612, 10806); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:27:15', '16:23:13', '16:32:22', 612, 10807); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:27:37', '15:32:12', '15:43:21', 612, 10808); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:31:08', '15:31:35', '15:58:39', 631, 10809); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:33:58', '16:23:42', '16:30:56', 612, 10810); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:39:32', '15:40:05', '17:35:51', 631, 10811); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:40:59', '15:43:17', '17:35:36', 631, 10812); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:41:29', '15:43:30', '15:59:06', 627, 10813); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:42:29', '15:43:21', '15:53:28', 612, 10814); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:43:21', '15:46:41', '15:49:13', 627, 10815); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:44:10', '15:49:13', '15:53:48', 627, 10816); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:44:18', '15:46:57', '15:59:02', 627, 10817); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:44:48', '15:49:25', '15:51:07', 627, 10818); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:49:41', '15:57:00', '17:24:40', 631, 10819); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:53:05', '15:53:28', '15:54:33', 612, 10820); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:54:21', '16:17:58', '16:19:51', 612, 10821); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-28', '15:54:51', '16:19:51', '16:23:26', 612, 10822); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '08:56:37', '08:56:38', '09:03:19', 612, 10823); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '08:59:31', '09:21:57', '09:28:42', 612, 10824); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:05:02', '09:05:03', '09:10:33', 612, 10825); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:08:50', '09:08:51', '09:14:06', 612, 10826); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:09:58', '09:10:00', '09:53:39', 612, 10827); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:16:20', '09:16:24', '09:39:31', 612, 10828); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:18:22', '09:18:27', '09:42:26', 612, 10829); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:21:44', '09:21:46', '09:52:04', 631, 10830); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:27:28', '09:27:33', '10:02:51', 627, 10831); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:29:43', '09:29:48', '09:35:33', 627, 10832); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:29:54', '09:30:33', '09:46:58', 627, 10833); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:34:07', '09:34:09', '09:58:55', 631, 10834); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:37:18', '09:37:34', '10:05:45', 612, 10835); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:49:31', '09:49:34', '09:59:14', 627, 10836); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:51:00', '09:51:07', '10:20:02', 612, 10837); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:51:44', '09:52:04', '10:20:42', 631, 10838); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:59:09', '09:59:16', '10:36:18', 631, 10839); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:59:30', '10:01:52', '10:49:13', 631, 10840); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:59:42', '09:59:50', '10:08:40', 612, 10841); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '09:59:43', '09:59:49', '10:42:28', 627, 10842); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:04:03', '10:04:31', '10:25:44', 612, 10843); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:05:29', '10:05:46', '12:08:54', 612, 10844); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:06:46', '10:08:40', '10:26:21', 612, 10845); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:08:00', '10:08:09', '10:27:41', 631, 10846); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:09:05', '10:09:06', '10:32:17', 627, 10847); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:11:59', '10:13:31', '12:09:06', 631, 10848); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:17:05', '10:17:15', '10:24:55', 627, 10849); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:20:04', '10:20:43', '10:27:41', 631, 10850); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:20:27', '10:27:42', '11:23:23', 631, 10851); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:21:25', '10:21:26', '10:51:15', 627, 10852); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:22:33', '10:22:41', '10:42:37', 627, 10853); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:23:59', '10:24:03', '10:26:35', 612, 10854); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:25:44', '10:25:44', '10:41:08', 612, 10855); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:28:47', '10:28:49', '10:41:55', 627, 10856); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:28:51', '10:28:56', '10:41:39', 612, 10857); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:29:46', '10:30:00', '11:26:51', 627, 10858); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:33:13', '10:33:23', '11:20:15', 631, 10859); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:33:43', '10:36:19', '11:12:09', 631, 10860); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:37:38', '10:39:43', '11:20:19', 631, 10861); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:41:27', '10:41:55', '11:09:53', 627, 10862); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:41:41', '10:42:29', '12:13:23', 627, 10863); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:41:54', '10:42:00', '10:58:48', 612, 10864); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:43:56', '10:49:22', '11:05:00', 631, 10865); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:48:17', '10:50:49', '10:52:42', 627, 10866); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:48:44', '10:48:47', '10:51:03', 627, 10867); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:49:16', '10:49:22', '11:13:25', 627, 10868); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:50:09', '10:52:42', '10:56:34', 627, 10869); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:51:14', '10:56:35', '11:17:09', 627, 10870); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '10:58:30', '10:58:31', '11:29:38', 612, 10871); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:03:16', '11:05:00', '11:35:59', 631, 10872); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:04:44', '11:08:29', '11:41:30', 631, 10873); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:05:19', '11:12:09', '11:44:36', 631, 10874); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:10:03', '11:10:10', '11:33:13', 627, 10875); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:17:04', '11:17:09', '11:42:25', 627, 10876); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:18:22', '11:20:19', '12:12:11', 631, 10877); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:19:10', '11:20:16', '11:33:22', 631, 10878); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:20:50', '11:23:23', '11:59:57', 631, 10879); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:26:41', '11:26:52', '11:35:01', 627, 10880); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:27:43', '11:27:44', '12:13:41', 627, 10881); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:28:33', '11:33:22', '11:45:15', 631, 10882); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:31:59', '11:31:59', '12:20:38', 612, 10883); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:32:21', '11:33:14', '11:40:29', 627, 10884); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:32:42', '11:32:43', '12:13:24', 627, 10885); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:34:43', '11:35:01', '11:43:16', 627, 10886); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:34:53', '11:35:59', '11:51:34', 631, 10887); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:37:52', '11:41:30', '12:24:32', 631, 10888); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:42:37', '11:43:16', '11:49:01', 627, 10889); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:44:03', '11:44:10', '11:53:15', 627, 10890); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:44:40', '11:44:47', '12:03:04', 631, 10891); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:44:51', '11:51:34', '12:18:55', 631, 10892); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:45:11', '11:45:15', '11:50:05', 631, 10893); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:45:49', '11:45:52', '11:57:45', 612, 10894); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:49:16', '11:50:05', '12:34:36', 631, 10895); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:50:26', '11:52:43', '11:56:48', 627, 10896); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:50:57', '11:50:59', '11:56:49', 612, 10897); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:51:54', '11:53:35', '12:21:10', 627, 10898); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '11:55:22', '12:00:29', '12:10:33', 627, 10899); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:02:42', '12:03:05', '12:15:56', 631, 10900); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:03:50', '12:06:15', '12:24:18', 612, 10901); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:05:20', '12:09:07', '12:11:50', 631, 10902); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:06:51', '12:13:18', '12:17:46', 631, 10903); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:08:14', '12:11:50', '12:24:05', 631, 10904); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:08:24', '12:15:56', '12:48:11', 631, 10905); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:09:12', '12:17:47', '12:28:21', 631, 10906); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:10:54', '12:13:24', '12:34:53', 627, 10907); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:11:25', '12:13:25', '12:19:57', 627, 10908); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:17:24', '12:19:57', '13:13:09', 627, 10909); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:18:09', '12:18:56', '13:32:23', 631, 10910); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:18:59', '12:24:06', '12:30:13', 631, 10911); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:19:40', '12:34:53', '12:56:56', 627, 10912); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:21:56', '12:24:32', '12:45:21', 631, 10913); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:23:21', '12:28:22', '12:35:30', 631, 10914); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:23:34', '12:26:27', '12:33:45', 627, 10915); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:23:42', '12:30:13', '12:45:38', 631, 10916); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:28:50', '12:34:36', '12:50:34', 631, 10917); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:30:53', '12:35:30', '12:36:36', 631, 10918); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:33:20', '12:33:45', '13:04:19', 627, 10919); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:33:31', '12:56:57', '14:11:51', 627, 10920); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:36:06', '12:36:36', '12:48:32', 631, 10921); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:36:28', '12:45:38', '12:48:27', 631, 10922); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:42:59', '12:42:59', '13:02:07', 612, 10923); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:43:30', '12:45:22', '14:29:52', 631, 10924); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:44:12', '12:48:12', '12:55:35', 631, 10925); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:45:22', '12:48:28', '15:31:32', 631, 10926); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:48:44', '12:48:53', '12:50:21', 631, 10927); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:50:28', '12:50:33', '13:43:37', 631, 10928); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:50:56', '12:51:25', '14:04:05', 631, 10929); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:52:17', '12:52:25', '13:12:31', 631, 10930); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:52:22', '12:52:35', '12:58:59', 627, 10931); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:53:21', '12:53:33', '13:24:00', 627, 10932); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:55:43', '12:55:46', '13:14:47', 631, 10933); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:56:05', '13:00:01', '13:18:41', 627, 10934); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:57:00', '12:57:06', '13:18:47', 612, 10935); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:57:25', '12:57:26', '13:03:25', 612, 10936); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '12:58:25', '13:02:07', '13:15:41', 612, 10937); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:01:07', '13:03:51', '13:19:00', 627, 10938); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:01:21', '13:08:18', '13:18:51', 612, 10939); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:03:43', '13:03:50', '13:24:15', 627, 10940); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:04:08', '13:04:21', '13:12:34', 627, 10941); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:06:59', '13:12:32', '13:27:07', 631, 10942); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:09:01', '13:12:34', '13:18:39', 627, 10943); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:09:40', '13:15:41', '13:17:06', 612, 10944); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:10:55', '13:17:06', '13:19:23', 612, 10945); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:11:47', '13:14:47', '13:30:24', 631, 10946); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:12:07', '13:13:10', '13:26:51', 627, 10947); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:12:12', '13:18:47', '14:02:14', 612, 10948); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:12:51', '13:26:51', '14:12:01', 627, 10949); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:14:10', '13:18:51', '13:33:39', 612, 10950); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:14:47', '13:18:39', '13:31:47', 627, 10951); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:17:02', '13:18:41', '13:31:51', 627, 10952); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:17:22', '13:26:08', '13:43:41', 627, 10953); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:20:39', '13:20:41', '13:37:38', 612, 10954); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:20:59', '13:33:58', '13:44:23', 612, 10955); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:24:18', '13:25:42', '13:34:42', 612, 10956); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:25:35', '13:27:08', '14:50:43', 631, 10957); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:25:44', '13:25:54', '13:39:35', 627, 10958); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:25:55', '13:25:56', '13:48:18', 612, 10959); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:27:20', '13:31:48', '13:49:15', 627, 10960); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:29:27', '13:34:30', '14:45:24', 612, 10961); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:30:38', '13:30:45', '13:41:49', 631, 10962); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:31:57', '13:32:24', '13:38:41', 631, 10963); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:33:16', '13:34:43', '14:22:55', 612, 10964); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:34:28', '13:34:32', '14:28:41', 627, 10965); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:35:14', '13:36:11', '14:24:17', 612, 10966); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:35:44', '13:35:56', '13:49:09', 627, 10967); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:36:17', '13:36:26', '14:03:39', 627, 10968); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:36:21', '13:37:38', '13:51:52', 612, 10969); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:37:22', '13:43:44', '14:07:22', 627, 10970); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:37:33', '13:38:41', '16:04:08', 631, 10971); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:38:53', '13:39:35', '14:34:16', 627, 10972); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:39:23', '13:48:19', '14:06:29', 612, 10973); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:40:10', '13:43:37', '14:01:24', 631, 10974); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:40:32', '13:47:18', '13:55:55', 627, 10975); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:44:18', '13:44:24', '15:25:49', 612, 10976); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:51:28', '13:51:53', '14:13:23', 612, 10977); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:55:39', '13:55:55', '14:04:29', 627, 10978); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:55:53', '14:02:15', '14:16:57', 612, 10979); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:57:49', '13:58:07', '14:16:05', 627, 10980); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '13:58:49', '14:04:26', '14:09:18', 627, 10981); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:00:43', '14:01:24', '14:29:48', 631, 10982); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:03:01', '14:04:29', '14:08:45', 627, 10983); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:08:40', '14:08:45', '14:55:12', 627, 10984); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:08:54', '14:12:01', '14:55:02', 627, 10985); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:09:21', '14:14:17', '14:36:42', 612, 10986); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:09:24', '14:09:27', '14:27:59', 627, 10987); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:10:12', '14:11:51', '14:42:38', 627, 10988); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:10:29', '14:16:57', '14:24:46', 612, 10989); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:13:03', '14:20:22', '14:53:49', 612, 10990); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:19:03', '14:19:20', '14:24:13', 627, 10991); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:20:13', '14:29:53', '14:49:18', 631, 10992); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:21:16', '14:22:55', '14:35:54', 612, 10993); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:22:01', '14:24:17', '15:31:44', 612, 10994); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:23:24', '14:23:28', '14:45:27', 631, 10995); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:24:56', '14:25:38', '14:41:21', 612, 10996); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:25:31', '14:29:49', '14:35:46', 631, 10997); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:29:56', '14:42:39', '14:45:40', 627, 10998); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:30:05', '14:30:06', '15:33:31', 631, 10999); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:31:41', '14:35:46', '14:42:59', 631, 11000); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:31:54', '14:35:55', '14:57:59', 612, 11001); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:32:12', '14:36:42', '14:39:42', 612, 11002); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:33:07', '14:36:21', '14:55:02', 627, 11003); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:34:25', '14:39:43', '15:03:24', 612, 11004); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:34:43', '14:34:54', '14:44:10', 627, 11005); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:35:12', '14:42:59', '15:01:27', 631, 11006); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:35:14', '14:43:30', '14:48:25', 612, 11007); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:36:06', '14:45:24', '14:48:59', 612, 11008); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:39:22', '14:48:26', '15:00:54', 612, 11009); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:40:48', '14:44:15', '14:48:20', 627, 11010); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:41:02', '14:48:20', '14:49:22', 627, 11011); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:42:04', '14:49:00', '15:02:24', 612, 11012); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:44:39', '14:45:27', '14:54:58', 631, 11013); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:44:46', '14:49:18', '14:57:26', 631, 11014); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:45:12', '14:45:40', '16:02:11', 627, 11015); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:45:42', '14:49:01', '14:53:17', 627, 11016); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:46:55', '15:00:49', '15:31:56', 627, 11017); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:49:24', '14:55:02', '15:00:49', 627, 11018); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:49:49', '14:53:17', '15:23:39', 627, 11019); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:50:31', '14:50:43', '15:18:26', 631, 11020); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:51:50', '14:55:02', '15:03:16', 627, 11021); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:52:20', '14:57:26', '15:01:40', 631, 11022); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:53:11', '14:54:58', '15:23:12', 631, 11023); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:53:29', '15:01:40', '15:08:25', 631, 11024); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:55:09', '14:56:02', '15:14:59', 627, 11025); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:57:46', '15:08:25', '15:35:50', 631, 11026); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:59:21', '15:01:27', '15:28:39', 631, 11027); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '14:59:45', '15:03:16', '15:06:49', 627, 11028); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:01:07', '15:06:49', '15:13:29', 627, 11029); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:08:40', '15:13:29', '15:17:32', 627, 11030); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:11:29', '15:11:54', '15:37:46', 612, 11031); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:17:22', '15:17:53', '15:24:41', 612, 11032); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:19:40', '15:23:12', '15:45:02', 631, 11033); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:20:43', '15:21:02', '15:27:52', 627, 11034); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:22:14', '15:35:50', '15:44:22', 631, 11035); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:22:25', '15:24:42', '16:01:38', 612, 11036); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:23:53', '15:27:34', '15:36:14', 627, 11037); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:24:14', '15:28:39', '16:07:01', 631, 11038); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:25:23', '15:31:32', '15:41:45', 631, 11039); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:25:30', '15:25:50', '15:36:58', 612, 11040); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:26:04', '15:31:57', '15:50:45', 627, 11041); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:29:09', '15:36:39', '15:47:54', 631, 11042); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:29:14', '15:31:44', '16:30:22', 612, 11043); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:29:39', '15:31:52', '15:35:20', 612, 11044); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:31:00', '15:39:36', '17:40:22', 631, 11045); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:33:37', '15:35:21', '15:49:13', 612, 11046); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:34:27', '15:37:22', '15:57:33', 612, 11047); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:35:20', '15:35:33', '16:07:37', 627, 11048); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:35:40', '15:36:58', '16:04:44', 612, 11049); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:36:02', '15:41:45', '16:02:14', 631, 11050); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:36:15', '15:37:46', '15:45:31', 612, 11051); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:39:27', '15:44:23', '15:51:35', 631, 11052); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:40:23', '15:45:03', '17:39:26', 631, 11053); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:41:04', '15:47:55', '17:40:37', 631, 11054); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:42:11', '15:45:31', '15:47:02', 612, 11055); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:46:05', '15:47:02', '15:48:21', 612, 11056); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:46:42', '15:48:23', '16:29:02', 612, 11057); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:47:40', '15:50:06', '16:06:54', 627, 11058); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:48:17', '15:51:36', '17:06:10', 631, 11059); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '15:55:46', '16:02:14', '17:38:03', 631, 11060); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-29', '16:00:40', '16:07:01', '16:20:58', 631, 11061); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:00:40', '10:00:47', '10:36:25', 627, 11062); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:00:47', '10:00:54', '10:22:37', 631, 11063); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:01:01', '10:01:09', '10:07:10', 627, 11064); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:01:29', '10:01:50', '10:12:30', 631, 11065); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:01:39', '10:01:51', '10:25:33', 627, 11066); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:03:04', '10:05:41', '10:34:46', 631, 11067); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:05:50', '10:06:39', '10:15:34', 612, 11068); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:06:16', '10:07:31', '10:22:37', 631, 11069); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:06:32', '10:12:30', '10:16:45', 631, 11070); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:06:53', '10:07:10', '10:18:02', 627, 11071); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:06:59', '10:15:51', '10:21:34', 631, 11072); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:08:33', '10:16:45', '10:36:55', 631, 11073); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:11:17', '10:16:52', '10:39:26', 631, 11074); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:14:04', '10:21:35', '12:21:01', 631, 11075); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:18:18', '10:18:25', '10:26:10', 612, 11076); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:19:18', '10:22:37', '11:57:17', 631, 11077); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:22:04', '10:26:10', '10:44:19', 612, 11078); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:22:56', '10:23:10', '10:39:23', 627, 11079); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:28:37', '10:36:25', '10:48:59', 627, 11080); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:29:01', '10:38:41', '10:51:21', 612, 11081); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:30:00', '10:30:09', '10:52:10', 631, 11082); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:30:19', '10:41:56', '11:36:50', 612, 11083); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:33:20', '10:34:46', '11:07:17', 631, 11084); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:36:14', '10:36:34', '10:57:00', 627, 11085); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:36:20', '10:36:55', '12:00:13', 631, 11086); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:37:28', '10:44:19', '10:46:14', 612, 11087); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:37:53', '10:46:14', '11:01:08', 612, 11088); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:38:45', '10:39:26', '11:52:29', 631, 11089); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:46:54', '10:51:21', '10:53:42', 612, 11090); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:47:34', '10:47:38', '10:51:52', 631, 11091); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:47:36', '10:53:42', '11:05:34', 612, 11092); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:49:11', '11:01:08', '11:08:41', 612, 11093); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:50:21', '10:51:52', '11:11:07', 631, 11094); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:50:57', '10:52:11', '12:00:20', 631, 11095); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:54:44', '11:03:57', '11:08:45', 612, 11096); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '10:56:21', '11:05:35', '11:08:36', 612, 11097); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:03:40', '11:08:36', '11:23:52', 612, 11098); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:04:16', '11:07:18', '11:24:47', 631, 11099); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:05:02', '11:13:03', '11:55:51', 627, 11100); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:05:57', '11:08:41', '11:30:00', 612, 11101); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:06:27', '11:08:45', '11:17:42', 612, 11102); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:10:47', '11:11:08', '11:22:34', 631, 11103); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:12:05', '11:12:51', '11:35:52', 631, 11104); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:21:50', '11:22:34', '11:45:55', 631, 11105); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:22:55', '11:24:47', '11:31:31', 631, 11106); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:24:20', '11:31:32', '11:55:38', 631, 11107); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:26:15', '11:26:20', '11:28:02', 612, 11108); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:26:38', '11:26:43', '11:33:07', 612, 11109); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:27:44', '11:28:02', '11:30:09', 612, 11110); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:27:53', '11:35:53', '12:34:58', 631, 11111); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:28:07', '11:30:01', '11:49:36', 612, 11112); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:30:40', '11:31:01', '11:34:15', 627, 11113); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:31:10', '11:31:20', '11:40:19', 612, 11114); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:31:35', '11:34:16', '11:40:47', 627, 11115); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:33:06', '11:33:07', '11:37:39', 612, 11116); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:36:02', '11:40:47', '12:05:36', 627, 11117); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:42:48', '11:42:50', '12:01:53', 612, 11118); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:44:01', '11:45:55', '12:17:28', 631, 11119); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:49:17', '11:49:36', '11:57:32', 612, 11120); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:50:26', '11:51:14', '12:08:11', 627, 11121); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:51:29', '11:51:29', '12:18:12', 612, 11122); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:52:24', '11:52:30', '13:47:43', 631, 11123); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:55:01', '11:55:39', '13:19:11', 631, 11124); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:56:29', '12:03:12', '12:21:17', 627, 11125); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:57:02', '12:05:36', '12:11:11', 627, 11126); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '11:59:58', '12:00:13', '12:18:48', 631, 11127); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:00:20', '12:00:21', '12:12:44', 631, 11128); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:03:23', '12:03:25', '12:06:21', 612, 11129); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:04:53', '12:04:56', '12:16:10', 612, 11130); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:05:05', '12:08:11', '12:15:55', 627, 11131); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:07:24', '12:11:12', '13:08:28', 627, 11132); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:11:05', '12:12:06', '12:28:48', 612, 11133); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:11:28', '12:15:55', '12:23:13', 627, 11134); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:12:19', '12:12:44', '12:49:32', 631, 11135); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:14:09', '12:22:00', '13:06:54', 627, 11136); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:15:36', '12:15:48', '12:19:19', 627, 11137); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:16:29', '12:23:14', '12:34:00', 627, 11138); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:17:12', '12:17:28', '12:26:05', 631, 11139); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:17:41', '12:18:49', '12:50:06', 631, 11140); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:17:55', '12:18:12', '12:22:41', 612, 11141); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:18:09', '12:21:02', '12:31:39', 631, 11142); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:22:23', '12:22:42', '12:41:09', 612, 11143); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:25:11', '12:25:13', '12:37:05', 612, 11144); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:25:11', '12:26:05', '12:33:48', 631, 11145); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:28:07', '12:28:48', '12:35:39', 612, 11146); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:29:06', '12:34:00', '12:43:49', 627, 11147); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:29:46', '12:31:39', '12:50:00', 631, 11148); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:31:09', '12:35:39', '12:47:27', 612, 11149); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:33:01', '12:33:48', '12:52:19', 631, 11150); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:33:46', '12:34:58', '12:51:43', 631, 11151); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:34:29', '12:35:46', '13:00:07', 612, 11152); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:36:19', '12:37:16', '14:14:42', 627, 11153); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:38:24', '12:43:49', '13:27:55', 627, 11154); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:39:35', '12:39:36', '12:51:42', 612, 11155); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:39:38', '12:39:51', '13:16:51', 627, 11156); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:40:15', '12:49:32', '12:59:17', 631, 11157); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:41:01', '12:50:06', '13:08:12', 631, 11158); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:45:42', '12:52:19', '12:56:06', 631, 11159); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:46:14', '12:47:28', '13:05:25', 612, 11160); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:47:07', '12:51:42', '12:57:47', 612, 11161); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:48:57', '12:54:29', '14:01:04', 631, 11162); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:49:59', '12:54:02', '12:56:46', 612, 11163); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:50:29', '12:51:43', '16:06:25', 631, 11164); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:50:58', '12:56:46', '12:58:33', 612, 11165); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:52:02', '12:57:47', '13:00:16', 612, 11166); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:54:20', '12:58:33', '13:02:17', 612, 11167); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:54:43', '12:56:06', '13:25:33', 631, 11168); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:56:50', '13:00:07', '13:01:29', 612, 11169); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:57:56', '13:00:16', '13:07:42', 612, 11170); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '12:59:14', '12:59:31', '13:15:13', 627, 11171); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:00:13', '13:01:30', '13:16:59', 612, 11172); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:00:40', '13:02:18', '13:43:49', 612, 11173); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:01:10', '13:05:58', '13:15:50', 627, 11174); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:04:12', '13:06:39', '13:17:18', 627, 11175); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:05:53', '13:08:19', '13:26:19', 627, 11176); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:06:18', '13:08:28', '13:29:39', 627, 11177); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:06:49', '13:15:50', '13:28:13', 627, 11178); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:07:34', '13:08:13', '14:11:01', 631, 11179); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:14:12', '13:18:53', '13:30:29', 627, 11180); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:16:45', '13:16:53', '13:26:22', 612, 11181); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:18:46', '13:19:11', '13:52:04', 631, 11182); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:20:11', '13:27:24', '13:32:19', 627, 11183); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:20:28', '13:27:58', '13:47:43', 627, 11184); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:21:06', '13:28:14', '13:45:31', 627, 11185); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:21:42', '13:29:39', '13:33:19', 627, 11186); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:23:10', '13:23:22', '13:51:20', 627, 11187); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:25:28', '13:25:34', '13:30:00', 631, 11188); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:28:55', '13:30:00', '13:39:46', 631, 11189); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:31:35', '13:33:20', '13:41:40', 627, 11190); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:32:12', '13:41:40', '13:52:49', 627, 11191); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:32:43', '13:34:57', '14:01:28', 631, 11192); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:37:38', '13:39:47', '14:33:17', 631, 11193); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:38:52', '13:38:53', '13:47:19', 612, 11194); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:39:28', '13:47:43', '13:56:21', 627, 11195); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:39:47', '13:40:04', '13:55:26', 627, 11196); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:41:50', '13:42:00', '14:08:09', 612, 11197); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:42:58', '13:52:49', '14:06:24', 627, 11198); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:43:15', '13:43:49', '14:02:23', 612, 11199); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:43:31', '13:43:39', '14:11:04', 631, 11200); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:44:26', '13:45:31', '14:36:10', 627, 11201); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:45:30', '15:12:41', '15:14:06', 612, 11202); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:47:06', '13:47:43', '14:22:26', 631, 11203); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:49:45', '13:52:04', '13:57:02', 631, 11204); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:50:05', '13:57:03', '14:10:26', 631, 11205); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:52:28', '13:52:30', '13:56:18', 612, 11206); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:53:21', '13:56:21', '14:02:23', 627, 11207); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:54:32', '14:02:23', '14:12:41', 627, 11208); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:54:59', '13:55:26', '14:15:44', 627, 11209); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:55:55', '13:55:56', '14:09:11', 612, 11210); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:56:14', '14:01:47', '14:37:52', 627, 11211); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:57:56', '14:06:25', '14:14:17', 627, 11212); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '13:58:24', '14:01:04', '14:21:07', 631, 11213); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:00:36', '14:01:37', '16:04:42', 631, 11214); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:00:48', '14:12:41', '14:18:51', 627, 11215); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:03:19', '14:03:29', '14:31:15', 612, 11216); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:04:37', '14:14:18', '14:15:31', 627, 11217); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:05:10', '14:06:45', '14:25:12', 612, 11218); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:05:54', '14:06:56', '15:12:41', 612, 11219); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:08:27', '14:10:26', '14:14:15', 631, 11220); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:09:12', '14:09:21', '14:35:58', 612, 11221); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:09:22', '14:11:01', '14:36:21', 631, 11222); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:09:59', '14:11:04', '14:18:15', 631, 11223); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:11:16', '14:15:31', '14:29:43', 627, 11224); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:11:24', '14:14:42', '15:20:08', 627, 11225); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:14:02', '14:14:16', '15:11:19', 631, 11226); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:16:43', '14:18:16', '14:56:13', 631, 11227); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:17:16', '14:18:51', '14:24:16', 627, 11228); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:18:54', '14:23:59', '14:41:42', 627, 11229); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:20:13', '14:21:07', '14:25:50', 631, 11230); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:21:18', '14:21:23', '14:25:45', 612, 11231); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:21:36', '14:22:26', '15:37:36', 631, 11232); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:22:27', '14:24:16', '14:28:51', 627, 11233); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:22:44', '14:28:51', '14:40:43', 627, 11234); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:24:04', '14:25:50', '14:40:55', 631, 11235); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:24:16', '14:25:12', '14:33:45', 612, 11236); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:28:28', '14:28:36', '14:40:50', 612, 11237); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:29:32', '14:31:16', '14:39:45', 612, 11238); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:30:58', '14:34:08', '14:46:54', 627, 11239); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:31:57', '14:33:17', '14:59:28', 631, 11240); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:32:37', '14:36:21', '14:54:50', 631, 11241); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:32:55', '14:33:05', '14:59:56', 627, 11242); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:33:17', '14:33:45', '14:41:23', 612, 11243); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:33:29', '14:33:42', '14:48:47', 627, 11244); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:34:55', '14:36:10', '14:54:01', 627, 11245); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:35:13', '14:41:56', '14:50:23', 627, 11246); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:35:34', '14:35:59', '14:46:19', 612, 11247); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:37:14', '14:41:28', '14:55:32', 627, 11248); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:38:24', '14:46:43', '14:56:39', 627, 11249); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:39:20', '14:46:55', '14:53:10', 627, 11250); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:39:58', '14:40:56', '14:46:08', 631, 11251); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:40:13', '14:46:08', '14:59:06', 631, 11252); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:40:18', '14:40:19', '14:59:48', 612, 11253); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:41:00', '14:50:23', '15:32:52', 627, 11254); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:43:23', '15:14:06', '15:21:21', 612, 11255); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:45:59', '14:46:20', '14:54:19', 612, 11256); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:46:16', '14:53:10', '14:59:14', 627, 11257); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:46:31', '14:53:19', '15:17:32', 612, 11258); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:47:03', '14:54:20', '15:19:32', 612, 11259); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:51:14', '14:54:50', '15:37:51', 631, 11260); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:51:16', '14:54:01', '15:15:24', 627, 11261); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:51:51', '14:59:49', '15:01:53', 612, 11262); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:52:10', '14:55:32', '15:19:26', 627, 11263); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:52:14', '15:01:53', '15:14:33', 612, 11264); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:53:37', '14:56:14', '15:18:34', 631, 11265); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:53:38', '14:59:14', '15:25:05', 627, 11266); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:55:10', '14:59:07', '15:00:43', 631, 11267); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:56:05', '14:59:29', '15:10:41', 631, 11268); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:57:55', '15:00:43', '16:04:25', 631, 11269); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:58:17', '15:04:08', '15:11:07', 627, 11270); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '14:59:38', '15:14:33', '15:29:28', 612, 11271); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:03:34', '15:11:55', '15:24:16', 627, 11272); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:04:18', '15:17:32', '15:41:05', 612, 11273); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:04:52', '15:10:42', '15:14:01', 631, 11274); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:07:01', '15:07:07', '15:21:11', 627, 11275); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:07:08', '15:17:57', '15:25:21', 612, 11276); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:09:47', '15:15:24', '15:35:50', 627, 11277); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:09:54', '15:11:19', '15:47:17', 631, 11278); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:09:56', '15:19:33', '15:37:24', 612, 11279); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:11:08', '15:19:26', '15:40:11', 627, 11280); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:11:22', '15:21:21', '15:27:29', 612, 11281); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:12:03', '15:14:01', '15:40:40', 631, 11282); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:18:04', '15:18:35', '15:29:31', 631, 11283); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:18:30', '15:20:08', '15:38:26', 627, 11284); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:19:40', '15:26:19', '16:01:40', 612, 11285); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:22:05', '15:27:29', '15:32:36', 612, 11286); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:23:38', '15:38:26', '15:54:38', 627, 11287); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:24:05', '15:29:28', '15:34:28', 612, 11288); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:24:58', '15:25:13', '15:36:19', 627, 11289); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:28:30', '15:29:31', '16:04:10', 631, 11290); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:29:55', '15:32:53', '15:47:16', 627, 11291); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:30:17', '15:32:36', '16:05:21', 612, 11292); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:32:15', '15:34:28', '15:48:00', 612, 11293); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:33:11', '15:36:19', '15:47:08', 627, 11294); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:35:20', '15:37:52', '16:04:12', 631, 11295); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:35:42', '15:35:51', '15:43:12', 627, 11296); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:36:07', '15:40:11', '15:46:39', 627, 11297); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:36:53', '15:43:12', '15:51:47', 627, 11298); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:37:16', '15:37:36', '16:08:07', 631, 11299); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:37:20', '15:37:24', '15:41:11', 612, 11300); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:37:34', '15:40:40', '16:13:38', 631, 11301); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:39:00', '15:47:18', '16:04:34', 631, 11302); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:39:46', '15:41:05', '16:40:44', 612, 11303); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:40:13', '15:41:12', '16:03:13', 612, 11304); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:40:35', '15:48:00', '16:01:47', 612, 11305); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-30', '15:41:14', '15:46:39', '15:50:57', 627, 11306); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '11:56:17', '11:56:22', '13:19:58', 612, 11307); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '11:56:30', '11:57:22', '12:33:54', 612, 11308); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '11:57:14', '11:57:43', '12:51:38', 612, 11309); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '11:59:17', '12:04:25', '12:29:46', 612, 11310); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '12:01:23', '12:29:47', '12:48:12', 612, 11311); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '12:03:44', '12:33:55', '12:39:34', 612, 11312); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '12:12:35', '12:39:34', '13:04:04', 612, 11313); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '12:29:21', '12:51:38', '12:57:52', 612, 11314); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '12:32:09', '12:51:48', '12:55:00', 612, 11315); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '12:48:56', '12:55:00', '13:09:27', 612, 11316); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '13:04:53', '13:04:55', '13:06:26', 612, 11317); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '13:17:17', '13:19:58', '13:29:18', 612, 11318); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '13:17:54', '13:25:26', '13:59:40', 612, 11319); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '13:27:58', '13:29:18', '13:32:35', 612, 11320); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '13:55:33', '13:55:43', '14:13:47', 612, 11321); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '14:16:04', '14:16:07', '14:52:25', 612, 11322); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '15:26:51', '15:26:56', '15:29:56', 612, 11323); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-05-31', '15:34:48', '15:34:48', '15:37:19', 612, 11324); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:03:05', '09:07:46', '09:50:56', 627, 11325); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:12:29', '09:13:50', '09:53:38', 612, 11326); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:19:51', '09:19:57', '10:01:48', 631, 11327); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:20:49', '09:20:50', '10:14:46', 627, 11328); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:21:00', '09:22:05', '09:31:50', 631, 11329); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:24:28', '09:27:40', '09:59:51', 631, 11330); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:24:34', '09:24:35', '09:29:10', 627, 11331); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:29:36', '09:31:50', '09:53:27', 631, 11332); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:31:47', '09:39:20', '09:50:53', 631, 11333); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:35:06', '09:35:16', '09:52:10', 627, 11334); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:36:09', '09:38:41', '09:55:18', 627, 11335); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:45:36', '09:50:53', '10:11:18', 631, 11336); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:49:47', '09:50:56', '10:50:25', 627, 11337); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:50:07', '09:53:27', '09:55:42', 631, 11338); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:50:38', '09:55:43', '10:14:59', 631, 11339); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:53:07', '09:53:38', '10:36:21', 612, 11340); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '09:57:02', '09:59:51', '12:43:01', 631, 11341); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:01:25', '10:01:48', '10:36:28', 631, 11342); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:01:50', '10:07:40', '10:40:27', 631, 11343); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:02:06', '10:02:08', '10:06:55', 612, 11344); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:06:39', '10:11:18', '10:14:45', 631, 11345); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:07:08', '10:14:46', '10:34:05', 631, 11346); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:09:04', '10:09:06', '10:18:27', 612, 11347); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:09:17', '10:09:21', '10:52:09', 627, 11348); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:11:00', '10:15:00', '10:33:35', 631, 11349); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:11:09', '10:14:47', '10:57:27', 627, 11350); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:17:52', '10:50:05', '11:20:00', 612, 11351); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:18:21', '10:18:22', '10:24:30', 612, 11352); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:25:08', '10:25:09', '10:36:21', 612, 11353); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:25:27', '10:25:30', '10:57:27', 627, 11354); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:25:48', '10:25:55', '10:36:21', 612, 11355); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:26:23', '10:33:35', '10:50:51', 631, 11356); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:29:15', '10:34:05', '11:18:37', 631, 11357); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:29:49', '10:36:29', '10:37:52', 631, 11358); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:32:33', '10:37:52', '11:13:53', 631, 11359); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:43:16', '10:44:02', '10:48:10', 627, 11360); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:48:21', '10:48:39', '10:57:27', 627, 11361); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:48:39', '10:50:51', '10:55:16', 631, 11362); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:50:14', '10:50:28', '10:57:27', 627, 11363); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:52:35', '10:52:40', '10:57:27', 627, 11364); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:53:38', '10:55:17', '11:18:12', 631, 11365); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:54:02', '11:05:27', '11:08:04', 627, 11366); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '10:56:53', '10:56:56', '11:16:37', 612, 11367); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:01:11', '11:01:16', '11:17:18', 631, 11368); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:01:45', '11:01:51', '11:08:46', 612, 11369); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:06:02', '11:13:53', '11:52:51', 631, 11370); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:07:43', '11:17:18', '11:21:43', 631, 11371); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:09:05', '11:18:12', '11:38:44', 631, 11372); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:09:21', '11:18:37', '11:30:49', 631, 11373); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:12:31', '11:17:36', '11:50:38', 627, 11374); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:14:35', '11:15:36', '11:25:37', 627, 11375); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:15:33', '11:16:51', '11:28:57', 627, 11376); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:17:41', '11:21:43', '11:31:24', 631, 11377); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:17:48', '11:20:00', '12:37:08', 612, 11378); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:20:26', '11:20:27', '11:25:38', 627, 11379); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:20:51', '11:30:50', '11:38:09', 631, 11380); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:23:34', '11:23:44', '11:40:41', 612, 11381); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:23:55', '11:31:24', '12:35:14', 631, 11382); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:24:47', '11:24:49', '11:42:16', 612, 11383); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:24:59', '11:25:38', '12:27:59', 627, 11384); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:26:20', '11:26:29', '11:27:31', 631, 11385); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:27:30', '11:27:51', '11:45:49', 612, 11386); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:29:07', '11:38:09', '11:41:15', 631, 11387); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:32:58', '11:33:07', '12:36:19', 612, 11388); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:33:38', '11:38:45', '11:59:52', 631, 11389); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:35:12', '11:41:15', '11:49:26', 631, 11390); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:36:27', '11:49:27', '12:03:19', 631, 11391); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:37:16', '11:37:37', '11:39:51', 627, 11392); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:38:04', '11:39:10', '11:46:42', 631, 11393); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:39:01', '11:39:54', '12:22:10', 627, 11394); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:39:46', '11:43:56', '12:01:09', 627, 11395); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:41:17', '11:41:23', '12:01:48', 612, 11396); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:41:55', '11:42:16', '12:49:00', 612, 11397); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:43:44', '11:43:53', '11:52:59', 627, 11398); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:44:31', '11:52:52', '12:00:06', 631, 11399); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:45:30', '11:46:42', '12:00:42', 631, 11400); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:45:40', '11:45:49', '11:56:59', 612, 11401); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:45:51', '11:52:59', '11:56:59', 627, 11402); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:45:55', '11:59:53', '12:02:16', 631, 11403); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:48:44', '11:57:00', '12:11:46', 627, 11404); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:49:05', '11:50:38', '12:53:36', 627, 11405); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:50:01', '11:57:00', '12:04:51', 612, 11406); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:50:26', '12:04:04', '12:20:01', 612, 11407); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:51:50', '12:00:06', '12:05:01', 631, 11408); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:54:12', '12:02:16', '12:45:46', 631, 11409); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:54:53', '12:04:51', '12:23:28', 612, 11410); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:55:00', '12:00:42', '12:58:55', 631, 11411); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:55:26', '12:03:19', '12:43:46', 631, 11412); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '11:59:04', '12:05:01', '12:12:52', 631, 11413); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:02:28', '12:08:53', '13:02:18', 631, 11414); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:07:43', '12:12:52', '13:08:16', 631, 11415); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:14:04', '12:14:19', '12:18:03', 627, 11416); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:28:49', '12:28:50', '12:31:14', 627, 11417); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:28:55', '12:32:15', '12:43:25', 631, 11418); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:34:05', '12:43:47', '13:00:48', 631, 11419); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:34:06', '12:37:18', '12:44:08', 627, 11420); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:35:35', '12:37:33', '12:54:02', 627, 11421); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:35:45', '12:37:40', '12:51:28', 631, 11422); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:36:20', '12:45:47', '13:08:57', 631, 11423); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:37:01', '12:37:08', '13:04:57', 612, 11424); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:39:53', '12:45:33', '12:51:28', 627, 11425); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:42:19', '12:42:20', '12:52:14', 612, 11426); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:42:28', '12:43:01', '13:01:34', 631, 11427); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:42:53', '12:53:36', '13:28:41', 627, 11428); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:45:06', '12:51:29', '13:53:25', 627, 11429); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:46:29', '12:48:07', '13:00:11', 612, 11430); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:48:50', '12:49:00', '12:54:09', 612, 11431); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:49:15', '12:54:09', '13:19:04', 612, 11432); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:49:41', '12:52:14', '12:58:34', 612, 11433); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:50:12', '12:50:40', '13:09:03', 631, 11434); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:50:51', '12:53:48', '13:12:16', 631, 11435); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:51:20', '12:58:35', '13:14:50', 612, 11436); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:51:21', '12:54:03', '13:10:26', 627, 11437); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:53:36', '13:00:49', '13:12:09', 631, 11438); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:54:13', '13:02:19', '13:49:36', 631, 11439); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:58:05', '12:58:55', '13:08:20', 631, 11440); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:58:39', '12:59:28', '13:31:51', 612, 11441); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:59:20', '13:03:42', '13:11:04', 627, 11442); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '12:59:47', '13:00:11', '13:31:48', 612, 11443); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:00:00', '13:08:17', '13:16:24', 631, 11444); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:00:26', '13:01:35', '13:20:25', 631, 11445); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:01:04', '13:04:19', '13:14:06', 627, 11446); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:02:43', '13:08:57', '13:45:34', 631, 11447); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:03:36', '13:10:26', '13:15:42', 627, 11448); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:03:59', '13:04:58', '13:16:37', 612, 11449); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:05:17', '13:07:06', '13:18:57', 627, 11450); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:05:24', '13:12:10', '13:51:40', 631, 11451); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:06:45', '13:08:20', '14:22:32', 631, 11452); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:06:53', '13:11:04', '13:26:18', 627, 11453); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:07:05', '13:32:49', '13:35:36', 612, 11454); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:07:35', '13:14:50', '13:34:55', 612, 11455); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:08:56', '13:14:06', '13:21:33', 627, 11456); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:09:56', '13:15:42', '13:40:06', 627, 11457); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:12:05', '13:19:05', '13:38:03', 612, 11458); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:12:41', '13:21:33', '13:23:50', 627, 11459); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:13:41', '13:23:51', '13:38:50', 627, 11460); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:14:47', '13:18:58', '13:34:10', 627, 11461); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:15:28', '13:31:48', '13:45:20', 612, 11462); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:16:08', '13:16:25', '13:33:56', 631, 11463); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:16:28', '13:16:37', '13:23:18', 612, 11464); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:19:08', '13:20:26', '14:10:16', 631, 11465); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:20:46', '13:31:51', '13:43:21', 612, 11466); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:22:49', '13:45:21', '13:46:23', 612, 11467); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:25:48', '13:29:21', '13:53:45', 631, 11468); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:26:25', '13:28:41', '14:18:29', 627, 11469); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:27:06', '13:33:57', '13:51:15', 631, 11470); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:27:24', '13:32:33', '13:41:42', 627, 11471); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:28:58', '13:34:10', '13:55:07', 627, 11472); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:29:25', '13:38:04', '13:55:47', 612, 11473); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:29:47', '13:35:37', '15:12:20', 612, 11474); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:32:18', '13:34:02', '13:57:43', 627, 11475); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:33:27', '13:43:21', '13:49:46', 612, 11476); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:34:29', '13:38:50', '15:01:06', 627, 11477); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:35:12', '13:40:06', '13:48:09', 627, 11478); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:35:39', '13:41:42', '14:00:05', 627, 11479); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:37:16', '13:39:20', '14:03:10', 627, 11480); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:37:54', '13:46:23', '13:55:02', 612, 11481); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:37:57', '13:44:54', '14:05:14', 627, 11482); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:38:31', '13:38:33', '14:03:17', 612, 11483); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:41:18', '13:45:34', '13:55:56', 631, 11484); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:44:37', '13:49:36', '14:10:02', 631, 11485); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:45:03', '13:51:15', '14:11:08', 631, 11486); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:45:33', '13:55:47', '14:01:28', 612, 11487); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:45:53', '13:51:40', '14:09:16', 631, 11488); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:46:08', '13:48:09', '13:58:25', 627, 11489); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:46:24', '13:55:48', '14:18:07', 612, 11490); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:47:03', '13:53:25', '14:02:09', 627, 11491); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:47:28', '13:55:08', '14:12:17', 627, 11492); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:49:08', '13:55:57', '14:05:19', 631, 11493); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:49:24', '13:53:45', '14:09:36', 631, 11494); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:49:32', '13:58:25', '14:03:40', 627, 11495); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:49:44', '13:58:55', '14:27:14', 631, 11496); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:50:19', '14:02:09', '14:09:19', 627, 11497); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:51:13', '14:01:28', '14:12:31', 612, 11498); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '13:54:15', '14:02:58', '14:23:08', 612, 11499); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:00:23', '14:05:20', '15:48:27', 631, 11500); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:01:10', '14:09:16', '14:43:30', 631, 11501); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:01:42', '14:09:36', '14:32:33', 631, 11502); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:03:34', '14:03:41', '14:05:10', 627, 11503); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:04:24', '14:05:10', '14:13:26', 627, 11504); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:05:29', '14:11:57', '14:30:20', 612, 11505); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:07:26', '14:10:13', '14:27:51', 631, 11506); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:07:51', '14:09:20', '14:36:30', 627, 11507); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:08:24', '14:13:18', '14:18:46', 612, 11508); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:09:26', '14:13:26', '14:20:19', 627, 11509); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:09:40', '14:10:16', '14:13:59', 631, 11510); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:10:46', '14:17:16', '14:27:18', 627, 11511); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:11:24', '14:12:18', '14:20:22', 627, 11512); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:12:18', '14:13:59', '14:21:54', 631, 11513); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:15:03', '14:18:07', '14:24:21', 612, 11514); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:15:19', '14:19:38', '14:27:02', 612, 11515); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:16:17', '14:20:19', '14:33:17', 627, 11516); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:16:26', '14:21:55', '14:56:01', 631, 11517); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:17:16', '14:23:09', '15:15:37', 612, 11518); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:18:16', '14:18:29', '15:15:45', 627, 11519); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:18:42', '14:24:22', '14:47:24', 612, 11520); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:20:37', '14:27:19', '14:35:21', 627, 11521); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:23:17', '14:25:52', '14:32:06', 631, 11522); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:25:10', '14:27:51', '17:49:57', 631, 11523); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:26:39', '14:30:32', '14:55:21', 631, 11524); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:29:15', '14:32:06', '14:46:40', 631, 11525); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:29:16', '14:30:22', '14:31:28', 612, 11526); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:29:28', '14:30:50', '14:53:07', 612, 11527); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:30:15', '14:31:28', '15:30:08', 612, 11528); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:32:42', '14:33:17', '15:03:41', 627, 11529); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:33:57', '14:39:59', '14:56:05', 631, 11530); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:36:33', '14:43:30', '17:36:04', 631, 11531); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:36:49', '14:40:29', '14:56:55', 627, 11532); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:37:29', '14:37:32', '14:42:50', 627, 11533); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:37:42', '14:46:41', '14:49:44', 631, 11534); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:40:28', '14:42:50', '14:57:27', 627, 11535); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:40:37', '14:49:45', '15:26:10', 631, 11536); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:44:24', '14:47:38', '15:06:35', 631, 11537); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:45:02', '14:47:24', '15:02:22', 612, 11538); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:49:09', '14:51:37', '14:53:58', 627, 11539); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:49:50', '14:55:22', '15:07:11', 631, 11540); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:51:21', '14:53:08', '15:05:49', 612, 11541); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:54:42', '14:56:01', '15:19:30', 631, 11542); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:55:50', '14:57:27', '15:32:07', 627, 11543); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:56:50', '15:04:55', '15:08:48', 631, 11544); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '14:59:15', '15:02:23', '15:15:08', 612, 11545); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:00:39', '15:01:07', '15:25:37', 627, 11546); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:01:17', '15:03:42', '15:20:52', 627, 11547); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:02:56', '15:05:49', '15:19:21', 612, 11548); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:03:33', '15:05:49', '16:03:35', 612, 11549); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:04:23', '15:14:45', '15:25:41', 627, 11550); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:04:38', '15:07:11', '15:17:08', 631, 11551); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:05:03', '15:05:35', '16:52:22', 627, 11552); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:05:04', '15:06:35', '15:48:57', 631, 11553); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:05:20', '15:15:08', '15:22:31', 612, 11554); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:05:53', '15:10:37', '15:14:45', 627, 11555); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:07:02', '15:15:45', '16:52:17', 627, 11556); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:09:16', '15:19:30', '16:52:19', 631, 11557); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:10:41', '15:12:20', '15:25:03', 612, 11558); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:13:52', '15:18:05', '15:33:13', 612, 11559); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:14:03', '15:20:52', '15:49:07', 627, 11560); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:16:34', '15:25:37', '15:37:51', 627, 11561); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:16:34', '15:17:08', '15:23:01', 631, 11562); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:19:12', '15:19:22', '15:36:45', 612, 11563); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:19:41', '15:25:04', '15:31:42', 612, 11564); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:22:10', '15:22:31', '15:47:21', 612, 11565); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:22:20', '15:31:43', '15:36:32', 612, 11566); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:23:14', '15:25:42', '15:43:30', 627, 11567); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:24:02', '15:30:08', '15:45:31', 612, 11568); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:24:27', '15:25:56', '15:44:20', 627, 11569); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:24:37', '15:26:10', '15:56:33', 631, 11570); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:27:12', '15:32:07', '15:43:23', 627, 11571); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:27:57', '15:33:13', '15:41:56', 612, 11572); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:28:21', '15:32:18', '15:45:25', 631, 11573); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:28:40', '15:29:20', '15:42:58', 627, 11574); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:29:53', '15:34:26', '15:39:47', 631, 11575); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:31:44', '15:41:57', '15:43:52', 612, 11576); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:32:48', '15:43:52', '16:02:17', 612, 11577); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:35:51', '15:36:32', '16:18:04', 612, 11578); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:36:25', '15:45:31', '16:23:02', 612, 11579); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:37:00', '15:37:51', '15:39:10', 627, 11580); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:37:42', '15:39:10', '16:01:35', 627, 11581); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:39:16', '15:42:58', '16:51:05', 627, 11582); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:41:00', '15:43:24', '15:58:20', 627, 11583); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:41:57', '15:48:28', '15:57:14', 631, 11584); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:42:34', '15:47:21', '16:04:25', 612, 11585); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:43:42', '15:52:49', '15:59:09', 631, 11586); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:46:32', '15:46:50', '15:58:33', 627, 11587); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:47:19', '15:49:07', '15:59:03', 627, 11588); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:47:47', '15:55:20', '16:04:54', 612, 11589); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:50:17', '16:02:18', '16:43:50', 612, 11590); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:52:29', '15:56:34', '16:04:16', 631, 11591); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:52:48', '15:52:56', '16:01:02', 612, 11592); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:53:11', '16:03:36', '17:43:45', 612, 11593); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:53:57', '15:57:15', '16:32:09', 631, 11594); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:54:04', '15:57:20', '17:42:44', 631, 11595); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:54:55', '16:04:25', '16:12:26', 612, 11596); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '15:59:20', '16:01:40', '16:17:37', 631, 11597); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:03:22', '16:03:41', '16:07:55', 631, 11598); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:04:31', '16:04:54', '16:14:42', 612, 11599); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:09:02', '16:12:27', '16:20:32', 612, 11600); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:13:24', '16:14:43', '17:07:28', 612, 11601); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:14:39', '16:18:04', '17:26:17', 612, 11602); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:17:16', '16:17:37', '16:42:30', 631, 11603); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:18:06', '16:18:35', '16:33:33', 631, 11604); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:18:24', '16:20:33', '16:52:02', 612, 11605); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:23:57', '16:32:09', '16:39:25', 631, 11606); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:24:48', '16:33:33', '16:37:49', 631, 11607); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:25:20', '16:25:23', '16:41:17', 612, 11608); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:35:54', '16:41:17', '16:47:35', 612, 11609); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:37:32', '16:37:49', '16:50:23', 631, 11610); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:38:25', '16:43:51', '17:08:35', 612, 11611); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:39:07', '16:47:36', '16:50:31', 612, 11612); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:39:37', '16:39:46', '17:58:01', 631, 11613); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:42:21', '16:43:40', '17:06:19', 631, 11614); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:42:52', '16:44:34', '17:00:05', 631, 11615); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:48:05', '16:50:24', '16:59:45', 631, 11616); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:48:59', '16:50:31', '17:47:43', 612, 11617); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:49:18', '16:52:02', '16:58:32', 612, 11618); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:50:13', '16:52:19', '17:26:50', 631, 11619); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:51:28', '16:59:46', '17:09:50', 631, 11620); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:55:18', '16:58:32', '17:02:12', 612, 11621); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:56:48', '16:56:55', '17:08:53', 612, 11622); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '16:57:20', '17:02:12', '17:17:59', 612, 11623); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:02:42', '17:02:53', '17:16:28', 631, 11624); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:07:00', '17:09:50', '17:15:22', 631, 11625); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:09:59', '17:15:22', '17:23:16', 631, 11626); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:14:23', '17:14:29', '17:16:39', 612, 11627); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:16:44', '17:16:50', '17:29:51', 612, 11628); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:17:13', '17:17:18', '17:40:40', 612, 11629); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:21:03', '17:21:38', '17:39:33', 631, 11630); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:22:11', '17:23:16', '17:39:31', 631, 11631); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:23:26', '17:23:30', '17:35:50', 612, 11632); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:26:40', '17:26:50', '17:42:46', 631, 11633); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:28:28', '17:37:03', '17:45:16', 631, 11634); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:28:52', '17:29:52', '17:38:18', 612, 11635); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:29:35', '17:39:32', '18:00:42', 631, 11636); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:31:50', '17:35:51', '17:45:14', 612, 11637); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:35:16', '17:38:10', '17:59:29', 612, 11638); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:37:39', '17:37:44', '17:55:28', 612, 11639); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:38:12', '17:38:18', '17:55:44', 612, 11640); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:38:57', '17:40:40', '18:09:43', 612, 11641); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:39:40', '17:43:45', '17:49:25', 612, 11642); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:39:59', '17:45:14', '17:51:02', 612, 11643); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:40:29', '17:47:44', '17:52:52', 612, 11644); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:40:59', '17:49:26', '18:02:05', 612, 11645); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:41:46', '17:51:03', '18:00:12', 612, 11646); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:42:37', '17:52:52', '18:08:59', 612, 11647); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:42:56', '17:55:44', '18:06:38', 612, 11648); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:42:58', '18:00:43', '18:45:42', 631, 11649); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:49:47', '17:49:58', '18:22:28', 631, 11650); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:50:32', '18:00:12', '18:10:40', 612, 11651); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:50:52', '17:53:55', '17:55:55', 631, 11652); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:53:40', '17:55:29', '18:04:45', 612, 11653); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:55:47', '18:02:06', '19:01:09', 612, 11654); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:56:24', '18:06:39', '18:34:13', 612, 11655); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:57:40', '17:58:01', '18:19:50', 631, 11656); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '17:59:10', '17:59:29', '18:14:11', 612, 11657); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '18:20:06', '18:22:28', '18:57:55', 631, 11658); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '18:24:07', '18:24:10', '19:04:51', 612, 11659); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '18:25:15', '18:26:32', '18:32:03', 631, 11660); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '18:29:55', '18:32:03', '18:55:19', 631, 11661); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '18:35:30', '18:35:35', '18:44:30', 612, 11662); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '18:37:52', '18:45:42', '19:01:17', 631, 11663); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '18:47:35', '18:47:41', '19:02:34', 612, 11664); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '18:50:39', '18:53:49', '19:18:14', 631, 11665); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '18:51:01', '18:51:04', '19:10:19', 612, 11666); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '18:52:24', '18:57:55', '20:13:46', 631, 11667); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '18:52:48', '18:55:20', '19:19:02', 631, 11668); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '18:57:11', '19:01:17', '19:20:55', 631, 11669); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '18:59:43', '19:01:09', '19:13:49', 612, 11670); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '19:03:27', '19:04:51', '19:31:49', 612, 11671); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '19:05:07', '19:10:19', '19:22:09', 612, 11672); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '19:05:37', '19:13:50', '19:28:52', 612, 11673); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '19:06:28', '19:19:02', '19:26:34', 631, 11674); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '19:09:44', '19:19:59', '19:40:16', 631, 11675); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '19:10:52', '19:22:09', '19:34:50', 612, 11676); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '19:12:11', '19:20:55', '19:43:01', 631, 11677); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '19:16:31', '19:26:35', '19:33:43', 631, 11678); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '19:22:04', '19:33:44', '19:45:27', 631, 11679); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '19:24:03', '19:40:16', '19:46:49', 631, 11680); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '19:25:24', '19:43:01', '20:42:01', 631, 11681); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '19:27:52', '19:28:52', '20:51:22', 612, 11682); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '19:41:20', '19:45:27', '21:07:02', 631, 11683); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '19:47:56', '19:53:35', '20:45:21', 631, 11684); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-01', '20:06:06', '20:13:46', '20:18:21', 631, 11685); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '08:56:06', '08:56:17', '09:02:03', 627, 11686); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '08:57:03', '08:57:14', '09:08:51', 627, 11687); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '08:57:30', '08:57:33', '09:39:35', 627, 11688); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '08:57:45', '08:57:54', '09:31:25', 627, 11689); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '08:59:50', '09:03:50', '09:31:24', 627, 11690); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:05:27', '09:05:33', '09:30:52', 631, 11691); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:07:17', '09:09:37', '09:37:25', 631, 11692); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:16:10', '09:16:13', '09:21:08', 612, 11693); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:19:10', '09:19:23', '09:24:18', 627, 11694); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:24:38', '09:24:41', '09:45:09', 631, 11695); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:25:04', '09:25:19', '09:30:30', 627, 11696); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:25:36', '09:30:53', '10:03:49', 631, 11697); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:25:46', '09:30:31', '09:57:58', 627, 11698); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:30:31', '09:31:24', '11:12:14', 627, 11699); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:33:08', '09:39:35', '09:53:44', 627, 11700); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:44:53', '09:45:10', '09:54:17', 631, 11701); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:52:42', '09:52:46', '10:20:53', 627, 11702); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:53:46', '09:54:17', '10:04:33', 631, 11703); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:54:40', '09:54:49', '10:09:15', 612, 11704); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:54:51', '10:03:07', '10:28:35', 631, 11705); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:56:18', '10:03:49', '10:41:19', 631, 11706); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:58:20', '09:58:25', '10:26:06', 627, 11707); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '09:58:38', '10:04:34', '10:30:22', 631, 11708); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:00:31', '10:00:49', '10:04:15', 627, 11709); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:02:31', '10:03:08', '11:04:40', 627, 11710); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:02:59', '10:07:12', '10:27:23', 631, 11711); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:04:45', '10:04:48', '10:38:04', 612, 11712); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:04:51', '10:05:05', '10:16:57', 627, 11713); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:07:58', '10:08:06', '10:20:52', 627, 11714); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:08:47', '10:09:21', '10:22:10', 627, 11715); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:13:51', '10:13:54', '10:28:14', 612, 11716); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:20:41', '10:20:53', '10:59:13', 627, 11717); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:25:52', '10:26:01', '10:45:54', 627, 11718); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:27:53', '10:27:57', '10:51:58', 612, 11719); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:27:56', '10:28:09', '11:09:31', 627, 11720); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:28:22', '10:29:52', '10:33:32', 631, 11721); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:28:56', '10:30:23', '10:47:28', 631, 11722); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:30:54', '10:35:42', '10:44:55', 631, 11723); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:36:41', '10:36:45', '12:12:20', 612, 11724); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:38:34', '10:45:44', '10:59:30', 631, 11725); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:41:06', '10:41:24', '10:45:36', 627, 11726); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:42:43', '10:45:23', '10:51:11', 631, 11727); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:46:43', '10:46:45', '11:22:14', 612, 11728); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:47:29', '10:47:29', '11:03:35', 631, 11729); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:48:35', '10:48:42', '11:04:49', 627, 11730); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:51:07', '10:51:18', '10:52:26', 627, 11731); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:51:23', '10:51:46', '11:19:46', 631, 11732); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:52:53', '10:52:55', '11:02:33', 612, 11733); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:56:39', '11:02:33', '11:22:02', 612, 11734); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:57:24', '10:59:13', '11:38:53', 627, 11735); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '10:58:30', '10:58:33', '12:35:47', 631, 11736); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:00:59', '11:04:11', '11:11:58', 627, 11737); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:01:05', '11:03:35', '11:10:08', 631, 11738); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:01:50', '11:02:22', '11:09:59', 631, 11739); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:02:16', '11:04:41', '11:11:32', 627, 11740); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:02:26', '11:09:59', '11:17:22', 631, 11741); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:04:58', '11:12:14', '11:35:23', 627, 11742); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:07:19', '11:09:31', '11:11:52', 627, 11743); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:07:20', '11:10:09', '11:23:40', 631, 11744); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:07:46', '11:07:56', '11:29:34', 612, 11745); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:11:17', '11:16:35', '11:33:32', 627, 11746); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:12:42', '11:35:24', '14:20:02', 627, 11747); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:12:55', '11:16:38', '11:55:38', 631, 11748); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:13:03', '11:13:10', '11:20:54', 627, 11749); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:14:02', '11:15:06', '12:07:39', 631, 11750); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:16:51', '11:33:24', '12:13:40', 631, 11751); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:17:12', '11:19:46', '17:37:21', 631, 11752); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:18:46', '11:22:03', '11:50:20', 612, 11753); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:20:08', '11:38:53', '11:55:20', 627, 11754); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:23:12', '11:23:40', '11:33:23', 631, 11755); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:23:39', '11:23:45', '12:25:54', 612, 11756); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:24:17', '11:27:36', '11:28:54', 631, 11757); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:25:10', '11:25:14', '11:45:00', 627, 11758); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:25:20', '11:31:27', '12:23:59', 627, 11759); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:27:29', '11:27:35', '11:58:50', 627, 11760); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:28:08', '11:28:09', '11:40:34', 612, 11761); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:30:44', '11:33:32', '11:34:50', 627, 11762); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:35:59', '11:37:13', '11:44:49', 627, 11763); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:40:27', '11:40:34', '11:48:27', 612, 11764); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:42:05', '11:45:00', '11:52:26', 627, 11765); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:43:52', '11:45:52', '11:56:00', 631, 11766); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:44:22', '11:44:49', '12:39:48', 627, 11767); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:46:45', '11:46:45', '11:50:09', 612, 11768); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:48:16', '11:48:28', '12:12:23', 612, 11769); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:49:09', '11:55:38', '12:36:06', 631, 11770); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:50:15', '11:50:21', '12:13:04', 612, 11771); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:51:14', '11:55:20', '12:32:05', 627, 11772); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:52:51', '12:13:04', '12:20:08', 612, 11773); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:54:46', '11:54:50', '12:00:14', 612, 11774); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '11:58:56', '12:01:13', '12:39:19', 627, 11775); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:00:37', '12:00:44', '12:13:30', 612, 11776); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:00:56', '12:01:52', '12:18:24', 631, 11777); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:01:17', '12:07:06', '12:13:10', 627, 11778); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:05:50', '12:13:10', '12:14:40', 627, 11779); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:06:40', '12:07:39', '14:48:20', 631, 11780); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:07:32', '12:14:41', '12:16:15', 627, 11781); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:09:06', '12:09:15', '12:37:29', 612, 11782); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:12:09', '12:12:20', '13:22:33', 612, 11783); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:13:07', '12:13:14', '13:12:30', 612, 11784); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:13:28', '12:13:41', '13:00:52', 631, 11785); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:13:40', '12:16:15', '12:39:37', 627, 11786); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:18:19', '12:18:25', '13:40:57', 631, 11787); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:18:27', '12:27:42', '12:35:41', 627, 11788); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:19:12', '12:20:08', '12:26:00', 612, 11789); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:22:28', '12:28:43', '12:45:13', 631, 11790); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:22:34', '12:22:42', '12:32:13', 627, 11791); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:23:52', '12:26:00', '12:51:09', 612, 11792); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:24:02', '12:24:11', '13:22:41', 612, 11793); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:24:43', '12:32:05', '12:57:38', 627, 11794); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:25:44', '12:25:54', '12:56:34', 612, 11795); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:31:46', '12:35:42', '12:45:32', 627, 11796); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:32:33', '12:39:19', '12:44:31', 627, 11797); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:35:00', '12:39:37', '12:44:41', 627, 11798); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:35:16', '12:35:47', '13:05:12', 631, 11799); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:35:38', '12:36:06', '14:07:28', 631, 11800); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:39:41', '12:39:48', '12:44:04', 627, 11801); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:44:12', '12:57:39', '13:17:58', 627, 11802); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:45:58', '12:46:15', '12:47:51', 631, 11803); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:46:09', '12:46:10', '12:47:25', 612, 11804); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:46:20', '12:48:46', '13:13:31', 631, 11805); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:47:23', '12:47:51', '13:06:45', 631, 11806); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:47:51', '12:48:00', '13:02:30', 627, 11807); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:50:26', '12:51:09', '13:21:22', 612, 11808); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:55:08', '13:00:53', '14:16:54', 631, 11809); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:55:33', '12:55:36', '13:01:04', 612, 11810); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:55:44', '12:55:47', '13:00:45', 627, 11811); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:56:28', '12:56:32', '13:18:21', 627, 11812); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:57:01', '13:00:45', '13:32:53', 627, 11813); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '12:57:25', '13:02:31', '13:09:17', 627, 11814); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:00:29', '13:05:12', '13:09:34', 631, 11815); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:01:37', '13:01:44', '13:10:48', 627, 11816); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:05:37', '13:05:45', '13:09:34', 612, 11817); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:08:48', '13:13:32', '15:01:20', 631, 11818); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:09:44', '13:09:45', '13:27:33', 612, 11819); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:10:01', '13:21:22', '13:48:29', 612, 11820); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:13:41', '13:17:58', '13:55:42', 627, 11821); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:22:12', '13:22:33', '13:38:31', 612, 11822); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:22:36', '13:22:42', '13:37:43', 612, 11823); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:27:27', '13:27:33', '13:42:52', 612, 11824); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:33:49', '13:34:06', '14:20:13', 627, 11825); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:34:06', '13:34:26', '13:46:08', 627, 11826); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:36:24', '13:38:31', '14:03:47', 612, 11827); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:39:11', '13:40:57', '14:36:05', 631, 11828); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:39:16', '13:40:12', '13:43:41', 627, 11829); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:41:49', '13:43:21', '13:48:14', 627, 11830); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:42:42', '13:43:42', '13:54:32', 627, 11831); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:42:45', '13:42:53', '14:22:01', 612, 11832); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:43:10', '13:46:08', '13:55:37', 627, 11833); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:45:37', '13:48:14', '13:57:14', 627, 11834); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:46:16', '13:46:25', '14:05:42', 612, 11835); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:48:15', '13:48:29', '13:55:45', 612, 11836); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:49:11', '13:53:18', '14:46:08', 631, 11837); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:51:15', '13:55:45', '14:06:03', 612, 11838); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:52:26', '13:54:32', '14:11:37', 627, 11839); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:53:34', '13:53:35', '14:11:52', 612, 11840); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:55:13', '13:55:42', '14:07:10', 627, 11841); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:56:23', '13:57:14', '13:59:58', 627, 11842); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:58:08', '14:03:47', '14:29:10', 612, 11843); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '13:58:14', '13:59:58', '14:11:42', 627, 11844); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:00:27', '14:04:44', '14:31:45', 612, 11845); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:02:14', '14:05:42', '14:17:00', 612, 11846); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:02:50', '14:11:52', '14:17:45', 612, 11847); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:03:10', '14:06:03', '14:20:47', 612, 11848); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:04:02', '14:13:03', '14:25:20', 612, 11849); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:04:43', '14:17:00', '14:25:11', 612, 11850); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:04:47', '14:04:48', '14:15:41', 627, 11851); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:05:25', '14:11:37', '14:13:30', 627, 11852); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:05:36', '14:07:11', '14:22:34', 627, 11853); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:05:52', '14:17:45', '14:54:10', 612, 11854); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:06:23', '14:22:01', '14:30:03', 612, 11855); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:07:54', '14:07:59', '14:23:34', 631, 11856); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:11:50', '14:11:54', '16:57:37', 612, 11857); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:13:00', '14:13:04', '14:23:34', 627, 11858); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:15:19', '14:25:11', '15:12:50', 612, 11859); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:15:37', '14:16:55', '15:03:53', 631, 11860); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:15:59', '14:25:21', '14:56:02', 612, 11861); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:19:17', '14:20:02', '14:40:08', 627, 11862); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:19:43', '14:20:48', '14:31:25', 612, 11863); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:21:26', '14:21:28', '14:42:51', 631, 11864); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:21:35', '14:22:35', '16:17:13', 627, 11865); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:21:47', '14:23:35', '14:30:54', 631, 11866); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:22:56', '14:29:55', '15:20:13', 612, 11867); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:23:19', '14:30:03', '15:12:46', 612, 11868); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:23:40', '14:23:47', '14:32:10', 627, 11869); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:27:25', '14:28:53', '14:41:48', 627, 11870); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:27:43', '14:27:53', '15:27:46', 631, 11871); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:28:45', '14:30:54', '14:53:10', 631, 11872); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:28:50', '14:29:36', '15:50:28', 627, 11873); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:28:56', '14:31:25', '15:23:00', 612, 11874); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:30:42', '14:31:33', '14:40:43', 627, 11875); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:30:49', '14:36:20', '15:04:15', 627, 11876); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:31:07', '14:36:05', '14:41:32', 631, 11877); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:31:16', '14:31:45', '15:22:00', 612, 11878); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:31:57', '14:40:44', '14:52:59', 627, 11879); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:35:46', '14:41:32', '15:11:48', 631, 11880); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:39:11', '14:42:51', '14:58:39', 631, 11881); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:39:37', '14:46:44', '14:54:34', 631, 11882); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:42:17', '14:42:24', '14:48:34', 627, 11883); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:43:35', '14:48:34', '14:59:11', 627, 11884); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:43:58', '14:48:21', '17:41:44', 631, 11885); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:44:53', '14:52:59', '15:00:31', 627, 11886); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:45:05', '14:46:37', '15:46:27', 627, 11887); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:51:39', '14:53:10', '15:52:25', 631, 11888); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:52:22', '14:54:10', '14:58:35', 612, 11889); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:56:38', '14:59:11', '15:59:30', 627, 11890); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:56:53', '15:00:31', '15:04:15', 627, 11891); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:58:26', '15:01:01', '15:03:48', 627, 11892); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:59:08', '15:01:20', '15:23:16', 631, 11893); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '14:59:48', '15:03:49', '15:11:57', 627, 11894); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:00:30', '15:04:15', '15:11:58', 627, 11895); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:03:25', '15:03:53', '15:59:23', 631, 11896); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:04:19', '15:06:26', '15:12:55', 631, 11897); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:05:41', '15:05:49', '19:06:33', 627, 11898); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:07:01', '15:07:51', '15:15:24', 631, 11899); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:07:27', '15:11:48', '15:23:33', 631, 11900); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:07:42', '15:07:47', '15:14:00', 612, 11901); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:11:47', '15:11:50', '15:28:10', 627, 11902); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:12:03', '15:15:25', '15:26:33', 631, 11903); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:12:40', '15:12:46', '16:32:15', 612, 11904); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:14:59', '15:16:57', '15:31:16', 627, 11905); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:15:39', '15:15:41', '15:17:28', 612, 11906); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:19:46', '15:27:04', '15:34:39', 627, 11907); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:20:24', '15:20:25', '15:43:20', 612, 11908); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:22:13', '15:23:16', '15:33:28', 631, 11909); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:22:54', '15:23:01', '15:33:41', 612, 11910); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:22:54', '15:23:33', '15:48:27', 631, 11911); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:23:17', '15:26:33', '15:56:41', 631, 11912); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:23:58', '15:33:41', '15:37:20', 612, 11913); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:25:42', '15:25:50', '15:41:39', 612, 11914); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:27:55', '15:28:02', '15:33:23', 612, 11915); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:28:39', '15:28:42', '16:00:57', 612, 11916); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:29:52', '15:33:23', '15:37:42', 612, 11917); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:33:03', '15:33:29', '16:34:23', 631, 11918); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:33:47', '15:37:21', '15:47:05', 612, 11919); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:34:07', '15:34:11', '15:45:59', 627, 11920); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:41:29', '15:41:33', '16:14:04', 612, 11921); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:42:08', '15:45:59', '15:51:17', 627, 11922); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:42:27', '15:48:27', '16:40:33', 631, 11923); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:43:10', '15:43:20', '15:48:12', 612, 11924); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:43:50', '15:50:28', '16:24:03', 627, 11925); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:44:17', '15:47:05', '15:53:11', 612, 11926); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:44:34', '15:51:18', '16:08:41', 627, 11927); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:44:56', '15:46:01', '15:53:03', 631, 11928); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:45:07', '15:46:27', '16:05:27', 627, 11929); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:45:13', '15:53:11', '16:11:45', 612, 11930); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:50:46', '15:55:13', '16:05:07', 627, 11931); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:51:35', '15:51:40', '17:30:29', 612, 11932); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:52:38', '15:52:47', '16:11:14', 631, 11933); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:53:34', '15:59:30', '16:02:06', 627, 11934); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:53:53', '15:53:57', '16:24:13', 631, 11935); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:55:17', '15:56:41', '16:29:50', 631, 11936); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:56:00', '15:56:03', '15:59:10', 612, 11937); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:56:06', '16:02:06', '16:07:55', 627, 11938); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:57:05', '15:59:23', '16:10:51', 631, 11939); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:57:14', '15:59:10', '16:42:44', 612, 11940); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:57:53', '16:05:28', '16:11:08', 627, 11941); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:58:32', '16:07:56', '16:21:16', 627, 11942); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:58:53', '16:00:24', '16:27:40', 627, 11943); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:59:23', '16:08:41', '16:16:46', 627, 11944); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '15:59:32', '15:59:39', '17:29:27', 627, 11945); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:01:47', '16:11:09', '16:20:00', 627, 11946); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:07:09', '16:11:45', '16:22:39', 612, 11947); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:08:20', '16:13:23', '17:37:57', 627, 11948); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:09:56', '16:10:51', '16:40:11', 631, 11949); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:10:59', '16:11:14', '16:24:59', 631, 11950); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:11:45', '16:22:40', '17:55:57', 612, 11951); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:12:10', '16:17:14', '18:28:47', 627, 11952); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:13:13', '16:14:05', '16:42:26', 612, 11953); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:13:33', '16:22:37', '16:28:17', 612, 11954); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:18:14', '16:28:17', '16:35:25', 612, 11955); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:19:23', '16:19:37', '16:39:46', 627, 11956); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:20:03', '16:20:04', '16:22:31', 627, 11957); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:20:48', '16:21:16', '16:26:24', 627, 11958); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:20:58', '16:23:18', '16:46:25', 631, 11959); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:21:22', '16:24:03', '16:28:39', 627, 11960); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:21:51', '16:30:33', '17:04:07', 612, 11961); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:24:28', '16:26:24', '16:31:44', 627, 11962); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:24:48', '16:24:59', '16:41:45', 631, 11963); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:26:09', '16:31:45', '16:43:14', 627, 11964); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:26:28', '16:32:16', '16:33:58', 612, 11965); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:27:49', '16:27:53', '16:46:25', 627, 11966); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:29:29', '16:29:50', '17:21:13', 631, 11967); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:30:14', '16:33:58', '16:44:45', 612, 11968); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:31:03', '16:35:26', '17:14:01', 612, 11969); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:32:57', '16:42:44', '17:08:02', 612, 11970); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:33:45', '16:33:53', '16:50:38', 627, 11971); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:34:09', '16:34:23', '17:33:32', 631, 11972); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:34:21', '16:43:14', '17:43:01', 612, 11973); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:35:05', '16:40:11', '17:38:42', 631, 11974); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:35:42', '16:36:57', '16:51:56', 627, 11975); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:37:33', '16:40:34', '16:46:11', 631, 11976); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:37:49', '16:42:45', '16:54:21', 627, 11977); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:41:03', '16:43:14', '16:45:22', 627, 11978); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:41:23', '16:41:45', '17:12:19', 631, 11979); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:43:00', '16:46:11', '17:12:53', 631, 11980); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:43:29', '16:45:22', '16:58:13', 627, 11981); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:43:55', '16:44:45', '17:17:19', 612, 11982); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:55:52', '16:56:08', '17:03:01', 627, 11983); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '16:57:43', '16:58:13', '17:28:10', 627, 11984); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:02:08', '17:02:15', '17:39:50', 631, 11985); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:02:59', '17:03:04', '17:07:09', 627, 11986); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:04:01', '17:04:08', '17:32:28', 612, 11987); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:04:14', '17:04:33', '17:18:56', 627, 11988); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:05:06', '17:14:01', '20:40:35', 612, 11989); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:05:18', '17:07:09', '17:17:06', 627, 11990); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:07:53', '17:17:19', '17:28:10', 612, 11991); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:11:56', '17:28:11', '17:30:11', 612, 11992); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:12:38', '17:12:40', '17:29:14', 631, 11993); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:13:30', '17:13:34', '18:32:47', 631, 11994); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:17:20', '17:21:14', '17:41:46', 631, 11995); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:25:44', '17:30:40', '18:40:44', 612, 11996); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:27:12', '17:31:09', '17:42:43', 612, 11997); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:28:47', '17:29:15', '17:42:19', 631, 11998); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:31:32', '17:32:29', '17:36:47', 612, 11999); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:35:15', '17:38:42', '18:34:51', 631, 12000); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:36:03', '17:36:47', '17:43:41', 612, 12001); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:39:45', '17:40:28', '18:35:45', 612, 12002); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:40:07', '17:41:46', '17:53:26', 631, 12003); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:40:09', '17:42:43', '18:17:32', 612, 12004); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:41:16', '17:42:20', '17:55:34', 631, 12005); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:42:04', '17:43:01', '17:58:42', 612, 12006); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:48:55', '17:55:34', '18:00:09', 631, 12007); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:53:06', '17:53:12', '18:24:20', 612, 12008); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:53:11', '17:56:40', '18:27:43', 627, 12009); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:57:31', '17:58:00', '18:14:15', 631, 12010); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:57:47', '18:00:09', '18:30:40', 631, 12011); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:58:33', '18:04:26', '18:19:22', 631, 12012); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '17:58:45', '17:59:51', '18:08:11', 627, 12013); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:00:50', '18:04:19', '18:16:47', 627, 12014); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:04:23', '18:08:11', '18:23:42', 627, 12015); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:04:46', '18:16:48', '18:21:15', 627, 12016); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:07:55', '18:17:33', '18:35:35', 612, 12017); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:18:41', '18:19:23', '18:37:52', 631, 12018); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:18:45', '18:21:16', '18:31:57', 627, 12019); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:21:13', '18:33:22', '19:00:14', 627, 12020); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:22:07', '18:22:13', '18:45:54', 612, 12021); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:23:12', '18:23:42', '18:27:00', 627, 12022); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:23:41', '18:27:00', '18:35:08', 627, 12023); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:28:23', '18:28:49', '19:55:49', 627, 12024); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:30:53', '18:32:47', '18:58:18', 631, 12025); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:31:46', '18:35:36', '19:22:44', 612, 12026); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:32:53', '18:34:51', '19:19:20', 631, 12027); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:33:44', '18:38:09', '18:45:17', 627, 12028); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:34:30', '18:35:08', '18:53:50', 627, 12029); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:36:27', '18:37:52', '18:51:52', 631, 12030); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:40:52', '18:40:57', '18:50:33', 612, 12031); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:43:30', '18:51:52', '19:21:28', 631, 12032); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:44:44', '18:45:17', '19:18:50', 627, 12033); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:45:19', '18:45:29', '19:07:58', 612, 12034); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '18:54:13', '18:58:18', '21:00:39', 631, 12035); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:03:43', '19:06:28', '19:24:30', 627, 12036); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:07:48', '19:07:54', '19:13:07', 612, 12037); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:12:31', '19:17:26', '19:27:30', 627, 12038); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:14:00', '19:14:05', '19:29:53', 627, 12039); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:15:31', '19:15:52', '19:49:29', 612, 12040); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:17:25', '19:19:20', '19:26:53', 631, 12041); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:20:42', '19:21:28', '20:39:58', 631, 12042); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:22:20', '19:22:41', '20:23:18', 612, 12043); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:22:34', '19:26:53', '20:19:06', 631, 12044); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:22:36', '19:24:51', '19:44:14', 627, 12045); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:23:43', '19:27:11', '19:32:54', 627, 12046); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:25:52', '19:27:30', '19:47:45', 627, 12047); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:28:20', '19:28:25', '20:03:09', 612, 12048); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:28:59', '19:29:54', '19:39:25', 627, 12049); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:36:17', '19:39:25', '19:49:43', 627, 12050); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:47:35', '19:47:45', '21:09:16', 627, 12051); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '19:56:28', '20:03:09', '20:04:09', 612, 12052); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '20:01:29', '20:01:53', '20:26:49', 627, 12053); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '20:01:47', '20:04:10', '20:40:08', 612, 12054); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '20:18:26', '20:19:06', '20:27:00', 631, 12055); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '20:26:33', '20:27:00', '20:42:09', 631, 12056); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '20:36:54', '20:38:58', '20:44:53', 627, 12057); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-02', '20:42:40', '20:42:44', '21:07:39', 631, 12058); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:01:49', '09:01:50', '10:31:19', 631, 12059); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:18:16', '09:18:22', '09:31:31', 612, 12060); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:22:01', '09:23:22', '09:40:15', 631, 12061); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:23:40', '09:28:14', '11:45:14', 631, 12062); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:27:37', '09:27:44', '09:36:07', 627, 12063); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:28:04', '09:28:05', '09:59:58', 627, 12064); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:28:32', '09:28:33', '10:28:12', 612, 12065); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:28:41', '09:40:15', '11:06:31', 631, 12066); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:30:01', '09:30:02', '10:00:36', 612, 12067); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:33:47', '09:33:52', '10:00:31', 612, 12068); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:40:12', '09:40:19', '10:24:25', 627, 12069); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:42:13', '09:42:23', '10:05:46', 612, 12070); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:42:42', '09:42:47', '09:56:36', 627, 12071); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:42:43', '09:42:44', '10:14:27', 631, 12072); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:47:12', '09:47:57', '10:02:21', 612, 12073); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:49:40', '09:51:42', '10:13:32', 627, 12074); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:58:38', '10:02:36', '12:14:22', 627, 12075); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '09:59:50', '09:59:58', '10:12:31', 627, 12076); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:00:09', '10:00:37', '10:18:10', 612, 12077); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:01:02', '10:02:21', '10:20:15', 612, 12078); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:05:33', '10:05:47', '11:15:26', 612, 12079); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:07:20', '10:18:10', '10:32:49', 612, 12080); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:08:15', '10:27:47', '11:52:26', 612, 12081); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:14:03', '10:14:27', '11:07:30', 631, 12082); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:14:52', '10:17:41', '10:27:22', 631, 12083); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:17:56', '10:28:13', '10:48:57', 612, 12084); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:19:28', '10:20:15', '11:28:26', 612, 12085); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:23:53', '10:23:54', '10:39:01', 612, 12086); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:25:23', '10:33:27', '10:34:29', 612, 12087); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:29:36', '10:34:29', '10:42:47', 612, 12088); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:29:43', '10:31:20', '10:57:52', 631, 12089); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:30:11', '10:34:35', '10:36:51', 631, 12090); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:30:49', '10:43:44', '10:55:53', 612, 12091); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:48:57', '10:48:57', '11:25:18', 612, 12092); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:52:37', '10:55:54', '11:12:45', 612, 12093); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '10:57:28', '10:57:52', '11:17:53', 631, 12094); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:00:16', '11:00:23', '11:17:42', 627, 12095); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:01:38', '11:03:57', '11:22:06', 631, 12096); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:05:15', '11:06:32', '12:08:25', 631, 12097); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:05:31', '11:05:39', '11:39:08', 627, 12098); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:05:33', '11:07:30', '11:39:02', 631, 12099); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:06:41', '11:17:53', '11:44:54', 631, 12100); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:06:49', '11:06:51', '11:59:16', 612, 12101); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:10:23', '11:19:07', '11:56:10', 631, 12102); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:16:08', '11:16:17', '11:37:19', 612, 12103); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:18:37', '11:18:38', '11:21:07', 627, 12104); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:20:50', '11:25:19', '12:22:38', 612, 12105); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:25:03', '11:28:26', '13:50:26', 612, 12106); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:36:45', '11:37:20', '12:27:11', 612, 12107); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:37:45', '11:39:02', '12:12:45', 631, 12108); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:38:33', '11:39:39', '11:49:25', 612, 12109); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:39:05', '11:39:09', '12:47:02', 627, 12110); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:41:12', '11:44:55', '12:21:25', 631, 12111); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:42:03', '11:42:04', '12:48:31', 627, 12112); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:44:27', '11:45:14', '11:53:35', 631, 12113); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:44:43', '11:45:02', '12:09:57', 627, 12114); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:50:38', '11:53:35', '11:58:17', 631, 12115); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:51:01', '11:58:18', '12:54:33', 631, 12116); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:52:04', '11:52:06', '12:27:20', 612, 12117); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:52:09', '12:14:23', '12:23:28', 627, 12118); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:52:56', '12:22:38', '12:35:10', 612, 12119); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:54:03', '11:59:17', '12:52:34', 612, 12120); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:55:00', '11:55:10', '13:11:37', 631, 12121); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '11:57:12', '11:57:50', '12:33:29', 627, 12122); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:02:49', '12:05:24', '12:26:24', 627, 12123); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:03:15', '12:27:12', '12:36:11', 612, 12124); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:04:49', '12:08:11', '12:50:50', 627, 12125); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:05:41', '12:27:20', '12:42:28', 612, 12126); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:07:12', '12:09:44', '12:21:31', 627, 12127); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:08:44', '12:08:55', '12:35:09', 631, 12128); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:10:54', '12:11:51', '12:19:52', 627, 12129); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:12:34', '12:12:35', '12:21:13', 631, 12130); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:15:16', '12:15:26', '12:29:43', 631, 12131); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:16:41', '12:21:31', '12:34:40', 627, 12132); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:19:06', '12:21:14', '12:35:59', 631, 12133); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:19:52', '12:21:25', '12:44:04', 631, 12134); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:20:09', '12:21:00', '12:57:58', 631, 12135); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:21:18', '12:21:22', '12:57:33', 627, 12136); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:22:17', '12:25:56', '12:34:30', 631, 12137); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:22:57', '12:23:54', '13:45:44', 627, 12138); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:22:59', '12:29:44', '12:50:52', 631, 12139); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:23:49', '12:34:41', '13:05:58', 627, 12140); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:25:48', '12:26:24', '13:00:18', 627, 12141); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:28:13', '12:34:30', '12:41:12', 631, 12142); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:29:41', '12:36:00', '12:55:13', 631, 12143); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:32:52', '12:33:30', '13:14:43', 627, 12144); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:34:04', '12:34:08', '13:02:17', 612, 12145); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:35:08', '12:35:11', '12:48:06', 612, 12146); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:38:41', '12:41:21', '12:58:58', 612, 12147); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:40:19', '12:43:16', '13:10:00', 612, 12148); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:40:40', '12:41:34', '13:17:14', 631, 12149); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:40:54', '12:40:59', '12:47:11', 627, 12150); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:41:47', '12:44:05', '13:03:15', 631, 12151); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:43:44', '12:47:03', '12:49:05', 627, 12152); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:43:54', '12:48:06', '13:11:34', 612, 12153); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:44:13', '12:48:31', '13:10:50', 627, 12154); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:44:32', '12:49:05', '12:59:54', 627, 12155); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:47:33', '12:50:16', '13:05:46', 627, 12156); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:47:38', '12:52:34', '13:11:43', 612, 12157); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:48:23', '12:56:45', '13:05:11', 627, 12158); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:50:07', '12:57:33', '13:34:51', 627, 12159); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:50:23', '12:50:52', '13:08:13', 631, 12160); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:53:56', '12:54:34', '13:36:27', 631, 12161); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '12:54:47', '12:55:13', '13:26:20', 631, 12162); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:00:10', '13:03:15', '13:12:13', 631, 12163); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:00:22', '13:00:23', '13:23:49', 612, 12164); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:06:33', '13:08:13', '14:03:18', 631, 12165); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:07:29', '13:07:54', '13:22:21', 627, 12166); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:08:02', '13:09:13', '13:15:42', 627, 12167); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:09:55', '13:10:00', '13:26:53', 612, 12168); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:10:44', '13:10:51', '15:18:21', 627, 12169); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:11:02', '13:13:34', '13:33:43', 627, 12170); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:11:11', '13:11:34', '14:34:34', 612, 12171); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:11:49', '13:11:51', '14:28:08', 627, 12172); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:14:33', '13:16:03', '13:37:28', 612, 12173); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:20:45', '13:23:46', '13:27:59', 631, 12174); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:22:01', '13:22:04', '13:36:46', 631, 12175); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:25:24', '13:25:31', '13:55:15', 612, 12176); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:26:01', '13:26:20', '13:33:24', 631, 12177); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:26:19', '13:26:54', '13:36:27', 612, 12178); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:26:50', '13:36:27', '13:55:24', 612, 12179); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:27:12', '13:27:22', '14:26:38', 631, 12180); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:27:31', '13:37:28', '13:55:54', 612, 12181); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:31:48', '13:39:17', '13:54:06', 612, 12182); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:32:26', '13:33:24', '14:44:35', 631, 12183); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:35:02', '13:35:12', '13:48:18', 627, 12184); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:35:15', '13:36:16', '13:50:34', 631, 12185); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:35:36', '13:36:27', '16:39:14', 631, 12186); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:35:57', '13:36:15', '14:35:26', 627, 12187); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:36:14', '13:43:44', '14:18:35', 631, 12188); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:38:30', '13:44:55', '14:57:45', 612, 12189); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:40:02', '13:40:12', '13:55:13', 627, 12190); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:41:19', '13:41:25', '14:27:02', 627, 12191); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:45:30', '13:45:44', '14:19:47', 627, 12192); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:45:49', '13:45:58', '13:53:12', 631, 12193); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:47:17', '13:54:06', '14:03:03', 612, 12194); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:47:25', '13:53:12', '15:19:33', 631, 12195); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:48:49', '13:48:59', '14:27:38', 627, 12196); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:49:14', '13:50:27', '14:11:01', 612, 12197); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:49:52', '13:55:16', '14:23:59', 612, 12198); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:50:52', '13:55:25', '14:02:43', 612, 12199); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:51:55', '13:55:55', '14:09:54', 612, 12200); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:53:11', '14:02:43', '14:14:11', 612, 12201); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:53:37', '14:03:03', '14:14:22', 612, 12202); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:54:43', '14:14:12', '14:16:07', 612, 12203); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:55:11', '14:14:23', '14:17:43', 612, 12204); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:56:04', '13:57:21', '14:33:01', 631, 12205); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '13:57:05', '13:57:08', '15:05:23', 627, 12206); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:02:52', '14:04:14', '14:21:40', 627, 12207); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:03:10', '14:03:19', '14:25:20', 631, 12208); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:03:51', '14:04:15', '14:29:40', 627, 12209); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:09:31', '14:11:02', '14:29:48', 612, 12210); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:10:23', '14:16:43', '14:30:56', 612, 12211); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:10:45', '14:17:31', '14:30:42', 631, 12212); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:11:01', '14:17:43', '14:24:09', 612, 12213); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:11:06', '14:18:36', '15:10:12', 631, 12214); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:14:23', '14:21:40', '14:39:15', 627, 12215); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:14:48', '14:19:47', '14:30:01', 627, 12216); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:15:37', '14:25:20', '14:27:49', 631, 12217); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:19:54', '14:26:38', '16:08:48', 631, 12218); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:20:13', '14:21:09', '16:17:44', 631, 12219); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:20:43', '14:24:00', '15:30:00', 612, 12220); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:21:00', '14:27:02', '15:15:47', 627, 12221); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:21:02', '14:27:49', '14:34:43', 631, 12222); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:22:22', '14:30:42', '14:39:54', 631, 12223); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:23:18', '14:24:10', '14:54:44', 612, 12224); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:23:52', '14:33:13', '18:41:41', 631, 12225); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:27:09', '14:33:02', '14:58:58', 631, 12226); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:27:52', '14:30:57', '14:37:30', 612, 12227); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:27:56', '14:30:01', '14:58:32', 627, 12228); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:29:09', '14:29:48', '14:39:33', 612, 12229); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:29:55', '14:34:34', '14:35:59', 612, 12230); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:30:17', '14:37:31', '14:49:27', 612, 12231); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:30:19', '14:34:00', '14:36:37', 627, 12232); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:30:47', '14:36:37', '14:44:00', 627, 12233); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:31:22', '14:34:44', '14:40:21', 631, 12234); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:35:09', '14:36:00', '14:49:53', 612, 12235); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:36:23', '14:39:34', '15:15:29', 612, 12236); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:39:46', '14:44:00', '14:51:46', 627, 12237); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:41:03', '14:41:08', '15:47:15', 612, 12238); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:42:26', '14:42:33', '14:59:05', 631, 12239); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:42:41', '14:44:36', '15:12:17', 631, 12240); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:43:54', '14:48:28', '14:57:36', 631, 12241); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:46:09', '14:49:54', '15:16:02', 612, 12242); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:47:02', '14:49:28', '15:08:53', 612, 12243); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:48:03', '14:48:51', '14:59:18', 627, 12244); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:48:13', '14:58:34', '15:06:14', 627, 12245); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:48:43', '14:51:46', '14:53:44', 627, 12246); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:49:56', '14:53:45', '14:58:33', 627, 12247); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:53:47', '14:59:18', '15:17:15', 627, 12248); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:55:51', '15:03:18', '15:15:17', 627, 12249); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:58:44', '14:58:45', '15:08:39', 612, 12250); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '14:59:54', '14:59:57', '15:19:38', 631, 12251); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:04:18', '15:10:13', '15:47:45', 631, 12252); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:04:28', '15:04:47', '15:45:51', 627, 12253); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:05:50', '15:06:14', '15:40:59', 627, 12254); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:05:58', '15:06:06', '15:12:20', 612, 12255); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:08:28', '15:08:40', '15:18:12', 612, 12256); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:10:28', '15:10:34', '15:35:27', 612, 12257); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:11:12', '15:12:17', '15:21:26', 631, 12258); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:13:40', '15:15:29', '15:21:34', 612, 12259); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:15:39', '15:21:34', '15:41:44', 612, 12260); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:16:48', '15:19:25', '15:36:02', 631, 12261); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:17:53', '15:18:02', '16:38:08', 612, 12262); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:18:57', '15:19:39', '15:41:21', 631, 12263); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:20:20', '15:21:26', '15:58:39', 631, 12264); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:20:34', '15:21:15', '15:44:11', 627, 12265); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:21:16', '15:21:32', '15:33:56', 627, 12266); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:22:53', '15:23:40', '15:46:05', 627, 12267); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:23:04', '15:23:47', '15:46:50', 612, 12268); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:23:34', '15:23:53', '15:34:05', 612, 12269); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:23:53', '15:28:35', '16:50:16', 631, 12270); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:25:53', '15:30:00', '16:21:48', 612, 12271); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:26:20', '15:41:45', '16:10:35', 612, 12272); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:33:41', '15:35:49', '16:54:30', 631, 12273); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:35:25', '15:35:27', '15:49:23', 612, 12274); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:36:19', '15:36:36', '15:49:51', 612, 12275); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:37:20', '15:40:59', '15:53:06', 627, 12276); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:38:25', '15:38:34', '16:17:00', 631, 12277); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:39:02', '15:39:23', '15:53:31', 627, 12278); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:40:14', '15:41:21', '16:01:10', 631, 12279); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:47:05', '15:47:09', '16:06:13', 612, 12280); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:47:55', '15:47:56', '16:20:31', 631, 12281); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:48:22', '15:49:23', '16:05:11', 612, 12282); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:50:00', '15:53:40', '15:56:09', 631, 12283); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:51:56', '15:58:39', '16:55:14', 631, 12284); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:51:59', '15:53:08', '16:15:56', 627, 12285); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:52:43', '15:53:07', '17:01:22', 627, 12286); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:55:20', '16:01:10', '16:16:05', 631, 12287); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '15:59:36', '16:05:47', '16:14:51', 631, 12288); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:01:29', '16:01:48', '16:22:13', 627, 12289); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:02:55', '16:05:12', '16:13:33', 612, 12290); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:02:58', '16:05:27', '16:08:50', 627, 12291); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:05:16', '16:05:17', '16:41:59', 627, 12292); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:06:17', '16:06:37', '16:08:05', 627, 12293); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:06:33', '16:08:06', '16:28:06', 627, 12294); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:08:22', '16:08:49', '16:32:03', 631, 12295); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:08:42', '16:08:50', '16:35:33', 627, 12296); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:08:47', '16:08:56', '16:38:08', 612, 12297); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:09:48', '16:10:35', '16:38:08', 612, 12298); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:09:58', '16:13:43', '16:35:26', 627, 12299); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:13:55', '16:13:57', '16:27:47', 612, 12300); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:14:46', '16:16:05', '16:45:19', 631, 12301); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:15:22', '16:15:57', '16:19:17', 627, 12302); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:15:39', '16:17:00', '16:25:15', 631, 12303); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:15:47', '16:18:33', '16:22:05', 627, 12304); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:16:38', '16:20:32', '16:41:31', 631, 12305); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:16:58', '16:19:17', '16:25:49', 627, 12306); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:18:07', '16:18:14', '16:37:23', 612, 12307); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:21:19', '16:22:05', '16:34:53', 627, 12308); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:24:05', '16:26:06', '16:58:09', 631, 12309); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:25:09', '16:25:15', '16:34:12', 631, 12310); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:25:45', '16:32:03', '17:28:32', 631, 12311); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:33:56', '16:34:13', '16:53:59', 631, 12312); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:35:02', '16:35:17', '16:37:21', 627, 12313); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:37:13', '16:39:14', '17:39:57', 631, 12314); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:38:11', '16:41:32', '16:53:34', 631, 12315); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:39:37', '16:45:19', '17:00:29', 631, 12316); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:41:25', '16:41:35', '17:15:25', 627, 12317); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:41:38', '16:50:16', '17:05:25', 631, 12318); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:45:10', '16:45:12', '17:00:58', 627, 12319); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:50:00', '16:54:30', '17:25:22', 631, 12320); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:50:19', '16:50:21', '17:21:28', 612, 12321); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:51:20', '16:53:06', '17:36:42', 627, 12322); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:52:52', '16:53:34', '17:11:06', 631, 12323); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:53:01', '16:54:57', '17:19:08', 627, 12324); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:54:11', '16:54:12', '17:22:58', 631, 12325); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:54:58', '16:54:58', '17:12:03', 612, 12326); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:55:41', '16:55:46', '17:22:04', 612, 12327); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '16:57:12', '17:00:29', '17:35:51', 631, 12328); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:00:32', '17:00:41', '17:27:10', 612, 12329); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:00:42', '17:01:22', '17:47:45', 627, 12330); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:01:42', '17:05:26', '18:36:55', 631, 12331); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:02:18', '17:11:06', '17:20:39', 631, 12332); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:09:07', '17:09:10', '17:25:26', 627, 12333); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:09:46', '17:10:26', '17:11:38', 627, 12334); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:10:20', '17:20:39', '17:22:40', 631, 12335); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:14:24', '17:22:41', '18:00:52', 631, 12336); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:17:51', '17:21:29', '17:58:03', 612, 12337); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:19:19', '17:22:58', '17:34:16', 631, 12338); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:25:07', '17:25:13', '17:51:47', 612, 12339); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:25:33', '17:25:36', '17:42:25', 612, 12340); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:25:46', '17:29:35', '17:44:31', 631, 12341); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:26:25', '17:32:06', '17:39:57', 631, 12342); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:26:43', '17:26:47', '17:33:53', 612, 12343); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:26:43', '17:34:16', '18:40:42', 631, 12344); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:28:56', '17:35:52', '18:06:00', 631, 12345); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:29:14', '17:29:27', '17:59:58', 627, 12346); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:30:45', '17:33:53', '17:59:29', 627, 12347); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:31:20', '17:36:42', '17:52:45', 627, 12348); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:34:32', '17:39:58', '18:11:15', 631, 12349); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:38:53', '17:39:01', '17:59:40', 612, 12350); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:38:53', '17:44:31', '18:44:57', 631, 12351); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:42:18', '17:42:21', '17:56:48', 612, 12352); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:42:55', '17:42:56', '17:50:31', 627, 12353); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:45:13', '17:45:16', '18:13:56', 612, 12354); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:45:32', '17:47:45', '21:09:18', 627, 12355); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:46:18', '17:46:45', '17:57:45', 612, 12356); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:51:53', '17:51:59', '17:54:32', 627, 12357); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:52:22', '17:55:42', '17:57:49', 631, 12358); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:52:36', '17:52:42', '18:01:21', 627, 12359); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:54:07', '17:54:09', '18:50:43', 612, 12360); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:55:08', '18:00:53', '18:29:00', 631, 12361); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '17:57:43', '17:58:04', '18:11:39', 612, 12362); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:01:30', '18:10:38', '18:20:02', 612, 12363); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:05:35', '18:11:39', '19:06:26', 612, 12364); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:10:09', '18:11:15', '18:19:04', 631, 12365); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:13:00', '18:13:14', '18:22:08', 612, 12366); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:17:08', '18:19:04', '18:46:47', 631, 12367); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:17:15', '18:17:28', '18:31:43', 627, 12368); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:17:52', '18:19:15', '19:06:27', 627, 12369); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:28:05', '18:29:01', '20:49:10', 631, 12370); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:29:35', '18:29:43', '18:34:48', 612, 12371); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:31:48', '18:32:03', '18:57:37', 612, 12372); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:32:59', '18:36:55', '19:09:11', 631, 12373); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:33:32', '18:33:42', '18:41:15', 627, 12374); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:36:27', '18:36:35', '18:50:51', 612, 12375); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:36:46', '18:37:15', '18:40:30', 627, 12376); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:38:31', '18:39:58', '19:22:28', 627, 12377); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:40:03', '18:40:42', '19:06:15', 631, 12378); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:40:44', '18:41:58', '18:44:26', 631, 12379); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:42:10', '18:45:47', '18:49:56', 631, 12380); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:43:00', '18:50:43', '19:54:01', 612, 12381); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:43:03', '18:43:06', '18:51:05', 627, 12382); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:45:18', '18:46:47', '19:14:33', 631, 12383); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:48:40', '18:49:56', '19:03:00', 631, 12384); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:54:39', '19:03:01', '19:54:39', 631, 12385); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:55:28', '18:55:47', '18:58:39', 612, 12386); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:56:11', '18:56:15', '20:12:40', 627, 12387); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:57:45', '18:57:54', '19:40:20', 612, 12388); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '18:58:02', '19:06:16', '19:25:32', 631, 12389); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '19:00:19', '19:01:53', '20:04:25', 612, 12390); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '19:01:24', '19:06:26', '19:08:56', 612, 12391); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '19:04:00', '19:08:56', '19:53:01', 612, 12392); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '19:04:53', '19:09:12', '19:14:38', 631, 12393); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '19:09:46', '19:14:34', '20:52:54', 631, 12394); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '19:12:22', '19:14:39', '20:55:22', 631, 12395); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '19:18:33', '19:25:33', '20:28:56', 631, 12396); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '19:36:46', '19:38:08', '20:01:25', 627, 12397); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '19:36:51', '19:36:58', '19:45:31', 612, 12398); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '19:52:13', '19:53:01', '20:38:32', 612, 12399); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '19:53:39', '19:54:39', '20:55:34', 631, 12400); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '20:24:55', '20:25:10', '20:42:35', 627, 12401); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-03', '20:28:37', '20:28:56', '20:53:00', 631, 12402); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '09:04:10', '09:04:15', '09:25:01', 627, 12403); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '09:06:28', '09:07:57', '09:11:08', 627, 12404); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '09:06:44', '09:06:54', '10:22:27', 631, 12405); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '09:11:03', '09:11:09', '09:16:42', 627, 12406); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '09:15:25', '09:15:40', '10:00:49', 627, 12407); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '09:17:10', '09:17:10', '11:21:32', 612, 12408); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '09:24:06', '09:24:11', '10:06:31', 631, 12409); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '09:27:43', '09:27:48', '10:21:16', 612, 12410); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '09:33:09', '09:33:18', '11:32:27', 627, 12411); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '09:40:04', '09:40:09', '10:52:29', 612, 12412); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '09:50:19', '09:50:22', '10:18:20', 627, 12413); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '09:51:45', '09:52:03', '09:56:36', 627, 12414); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '09:56:46', '09:56:51', '09:59:23', 627, 12415); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '09:58:22', '09:59:24', '10:20:24', 627, 12416); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:03:33', '10:06:32', '10:40:48', 631, 12417); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:04:04', '10:05:29', '10:17:51', 631, 12418); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:10:56', '10:14:25', '11:00:22', 631, 12419); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:16:15', '10:17:51', '11:02:27', 631, 12420); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:18:56', '10:22:27', '10:29:54', 631, 12421); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:21:10', '10:21:16', '10:34:20', 612, 12422); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:28:08', '10:29:55', '10:44:55', 631, 12423); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:28:56', '10:29:11', '11:00:43', 627, 12424); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:31:51', '10:37:51', '10:53:34', 627, 12425); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:34:05', '10:34:19', '11:31:37', 612, 12426); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:34:12', '10:40:49', '11:00:59', 631, 12427); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:34:53', '10:35:00', '11:08:38', 627, 12428); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:43:55', '10:44:56', '11:02:34', 631, 12429); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:52:07', '10:52:23', '10:59:27', 612, 12430); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:54:38', '11:00:23', '13:44:32', 631, 12431); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:55:55', '10:56:06', '11:11:22', 612, 12432); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '10:58:38', '11:02:34', '11:14:37', 631, 12433); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:00:25', '11:00:44', '11:13:18', 627, 12434); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:01:28', '11:01:31', '11:09:28', 631, 12435); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:01:47', '11:02:28', '11:31:37', 631, 12436); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:04:11', '11:11:58', '11:26:25', 612, 12437); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:04:58', '11:07:00', '11:10:54', 627, 12438); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:06:48', '11:14:38', '11:32:22', 631, 12439); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:08:20', '11:08:39', '11:56:40', 627, 12440); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:08:48', '11:09:28', '11:30:40', 631, 12441); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:12:21', '11:12:31', '11:29:42', 612, 12442); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:15:16', '11:15:18', '11:23:08', 627, 12443); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:18:23', '11:18:30', '11:24:40', 612, 12444); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:18:42', '11:21:01', '11:35:44', 631, 12445); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:19:49', '11:20:09', '11:37:08', 612, 12446); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:20:06', '11:21:32', '12:22:20', 612, 12447); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:20:28', '11:21:45', '11:54:43', 612, 12448); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:20:49', '11:24:41', '11:43:24', 612, 12449); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:22:09', '11:22:33', '11:50:13', 627, 12450); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:24:55', '11:56:40', '12:00:02', 627, 12451); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:25:48', '11:29:42', '11:54:10', 612, 12452); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:26:20', '11:31:37', '11:46:10', 612, 12453); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:28:35', '11:30:22', '12:50:30', 627, 12454); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:29:23', '11:32:22', '12:41:50', 631, 12455); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:29:44', '11:30:40', '11:59:40', 631, 12456); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:30:02', '11:32:28', '12:04:15', 627, 12457); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:30:12', '11:37:08', '11:52:44', 612, 12458); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:30:56', '11:31:37', '16:16:12', 631, 12459); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:31:29', '11:39:21', '14:48:56', 631, 12460); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:34:30', '11:34:39', '11:47:49', 627, 12461); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:38:16', '11:38:43', '11:43:57', 627, 12462); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:39:47', '11:43:24', '12:12:02', 612, 12463); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:43:15', '11:46:11', '14:41:46', 612, 12464); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:48:34', '11:49:02', '12:05:37', 612, 12465); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:48:59', '11:50:34', '11:53:55', 631, 12466); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:54:38', '11:54:44', '12:50:39', 612, 12467); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:55:55', '11:59:40', '12:18:22', 631, 12468); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:56:00', '12:04:38', '12:13:47', 627, 12469); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '11:58:23', '12:00:02', '12:04:37', 627, 12470); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:00:19', '12:00:22', '12:38:38', 631, 12471); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:00:39', '12:00:43', '12:17:16', 612, 12472); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:00:58', '12:04:15', '12:05:58', 627, 12473); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:02:20', '12:05:37', '12:20:22', 612, 12474); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:03:55', '12:05:58', '12:34:25', 627, 12475); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:05:18', '12:05:20', '13:31:08', 627, 12476); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:07:34', '12:13:47', '12:26:50', 627, 12477); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:08:39', '12:10:11', '12:25:54', 631, 12478); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:08:54', '12:08:55', '12:19:26', 612, 12479); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:11:21', '12:11:28', '12:22:28', 627, 12480); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:11:44', '12:12:02', '12:30:31', 612, 12481); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:12:15', '12:18:23', '12:52:24', 631, 12482); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:15:08', '12:19:27', '12:28:35', 612, 12483); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:15:31', '12:17:17', '13:05:12', 612, 12484); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:16:01', '12:16:30', '12:36:14', 627, 12485); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:16:20', '12:26:50', '12:34:56', 627, 12486); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:18:27', '12:34:25', '13:33:30', 627, 12487); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:19:40', '12:22:20', '12:47:14', 612, 12488); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:20:17', '12:20:22', '12:28:25', 612, 12489); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:22:33', '12:28:26', '12:57:59', 612, 12490); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:22:57', '12:23:01', '12:35:32', 612, 12491); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:26:01', '12:26:07', '12:51:02', 627, 12492); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:29:53', '12:29:58', '12:42:45', 612, 12493); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:30:08', '12:34:57', '13:04:55', 627, 12494); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:30:24', '12:30:32', '12:46:39', 612, 12495); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:32:57', '12:34:44', '13:51:54', 627, 12496); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:34:11', '12:35:54', '13:05:32', 631, 12497); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:34:13', '12:36:14', '12:43:03', 627, 12498); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:35:00', '12:38:38', '12:45:48', 631, 12499); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:40:22', '12:42:46', '12:46:40', 612, 12500); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:40:36', '12:50:30', '14:59:27', 627, 12501); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:41:08', '12:46:40', '13:20:41', 612, 12502); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:45:03', '12:46:34', '12:54:21', 627, 12503); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:45:17', '12:45:49', '14:00:44', 631, 12504); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:45:53', '12:52:24', '14:27:32', 631, 12505); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:47:09', '12:47:15', '12:50:43', 612, 12506); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:47:45', '12:51:03', '13:12:20', 627, 12507); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:47:52', '12:48:01', '12:57:28', 612, 12508); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:50:13', '12:50:43', '13:14:29', 612, 12509); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:50:33', '12:50:40', '13:12:13', 612, 12510); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:51:10', '12:52:04', '13:38:34', 627, 12511); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:54:21', '12:57:05', '12:59:51', 631, 12512); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:55:31', '13:03:26', '13:24:08', 627, 12513); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:55:50', '12:57:59', '14:00:57', 612, 12514); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:57:28', '12:57:29', '13:12:58', 612, 12515); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:58:54', '13:05:33', '14:07:33', 631, 12516); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '12:59:10', '13:04:55', '13:28:37', 627, 12517); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:03:37', '13:05:13', '14:03:02', 612, 12518); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:11:03', '13:12:13', '13:31:05', 612, 12519); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:12:51', '13:12:58', '13:14:31', 612, 12520); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:14:16', '13:14:29', '13:31:05', 612, 12521); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:15:12', '13:15:13', '13:52:02', 612, 12522); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:15:13', '13:18:13', '13:36:20', 631, 12523); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:18:15', '13:18:25', '13:23:32', 627, 12524); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:18:52', '13:20:48', '13:26:27', 631, 12525); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:19:47', '13:19:52', '13:24:49', 612, 12526); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:20:07', '13:20:19', '13:24:38', 627, 12527); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:20:41', '13:20:51', '13:29:50', 612, 12528); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:20:57', '13:29:47', '13:36:55', 631, 12529); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:22:42', '13:22:48', '13:26:41', 627, 12530); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:23:30', '13:24:39', '13:41:07', 627, 12531); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:24:09', '13:31:08', '13:38:44', 627, 12532); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:24:36', '13:24:49', '13:32:24', 612, 12533); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:25:28', '13:28:38', '16:02:27', 627, 12534); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:27:34', '13:35:18', '13:44:44', 631, 12535); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:27:52', '13:36:21', '13:43:38', 631, 12536); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:29:37', '13:29:50', '13:40:19', 612, 12537); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:30:58', '13:31:05', '14:52:42', 612, 12538); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:32:05', '13:33:30', '15:28:40', 627, 12539); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:34:03', '13:34:13', '13:37:35', 627, 12540); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:36:52', '13:37:54', '13:50:29', 631, 12541); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:37:51', '13:37:55', '13:56:54', 612, 12542); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:38:41', '13:40:01', '13:45:07', 627, 12543); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:39:04', '13:43:38', '14:03:07', 631, 12544); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:40:12', '13:40:18', '15:01:45', 612, 12545); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:40:29', '13:44:32', '14:09:09', 631, 12546); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:40:46', '13:41:08', '14:04:31', 627, 12547); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:41:39', '13:43:08', '14:01:08', 627, 12548); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:42:35', '13:44:44', '13:53:26', 631, 12549); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:43:55', '13:53:26', '14:23:31', 631, 12550); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:44:27', '13:50:29', '13:55:25', 631, 12551); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:45:55', '13:50:58', '14:30:39', 627, 12552); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:48:25', '13:51:55', '14:20:27', 627, 12553); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:51:46', '13:58:50', '14:05:07', 627, 12554); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:53:52', '14:00:57', '14:20:54', 612, 12555); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:54:21', '13:56:01', '14:04:04', 631, 12556); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:57:52', '14:00:45', '15:36:53', 631, 12557); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:58:24', '14:03:07', '14:23:09', 631, 12558); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '13:59:20', '14:03:03', '14:06:33', 612, 12559); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:00:17', '14:01:08', '14:12:45', 627, 12560); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:01:04', '14:09:09', '15:11:33', 631, 12561); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:01:12', '14:06:33', '14:12:44', 612, 12562); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:01:16', '14:05:07', '14:09:30', 627, 12563); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:01:23', '14:07:34', '15:30:16', 631, 12564); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:03:26', '14:04:32', '14:38:26', 627, 12565); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:12:05', '14:12:45', '14:18:48', 627, 12566); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:14:29', '14:15:32', '14:55:35', 631, 12567); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:17:50', '14:18:49', '14:23:06', 627, 12568); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:17:52', '14:18:58', '14:55:21', 627, 12569); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:18:09', '14:23:31', '15:09:42', 631, 12570); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:18:26', '14:18:32', '14:37:08', 612, 12571); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:19:54', '14:23:10', '15:28:05', 631, 12572); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:20:34', '14:20:55', '14:37:06', 612, 12573); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:22:25', '14:27:32', '14:34:14', 631, 12574); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:24:28', '14:24:32', '14:25:47', 627, 12575); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:25:20', '14:25:33', '14:55:41', 627, 12576); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:28:58', '14:30:40', '14:56:29', 627, 12577); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:30:03', '14:34:14', '15:35:11', 631, 12578); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:35:57', '14:38:27', '15:02:57', 627, 12579); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:36:57', '14:37:06', '14:59:23', 612, 12580); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:37:10', '14:42:28', '15:12:07', 627, 12581); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:37:29', '14:43:54', '15:04:25', 627, 12582); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:37:56', '14:37:58', '14:41:46', 627, 12583); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:42:04', '14:42:15', '15:32:03', 612, 12584); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:43:17', '14:45:58', '14:55:53', 612, 12585); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:43:56', '14:52:43', '14:59:14', 612, 12586); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:44:11', '14:55:34', '15:32:03', 612, 12587); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:46:11', '14:55:35', '15:09:50', 631, 12588); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:51:08', '14:55:21', '14:58:11', 627, 12589); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:52:11', '14:55:53', '15:06:17', 612, 12590); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:53:30', '14:55:41', '15:08:43', 627, 12591); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:54:42', '14:56:29', '15:05:40', 627, 12592); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:55:37', '14:56:44', '15:42:26', 631, 12593); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:55:39', '14:59:28', '15:29:36', 627, 12594); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:56:04', '14:58:11', '15:01:20', 627, 12595); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:57:03', '15:01:45', '15:32:03', 612, 12596); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:57:35', '14:59:22', '15:11:13', 627, 12597); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:57:45', '15:04:25', '15:21:47', 627, 12598); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:59:08', '14:59:14', '15:32:03', 612, 12599); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '14:59:14', '14:59:23', '15:05:48', 612, 12600); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:00:20', '15:05:49', '15:10:33', 612, 12601); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:00:46', '15:10:34', '15:32:03', 612, 12602); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:04:58', '15:09:42', '15:23:48', 631, 12603); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:05:21', '15:11:33', '15:14:15', 631, 12604); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:06:00', '15:06:17', '15:32:03', 612, 12605); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:09:37', '15:22:32', '15:32:03', 612, 12606); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:09:56', '15:14:15', '15:51:15', 631, 12607); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:11:46', '15:18:06', '15:24:52', 631, 12608); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:12:44', '15:36:40', '17:07:25', 612, 12609); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:14:59', '15:36:39', '15:46:43', 612, 12610); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:17:37', '15:23:48', '15:51:35', 631, 12611); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:19:31', '15:28:05', '16:03:14', 631, 12612); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:19:33', '15:39:02', '16:01:26', 612, 12613); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:19:42', '15:24:53', '15:30:38', 631, 12614); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:20:07', '15:20:13', '15:29:07', 627, 12615); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:22:21', '15:30:16', '16:13:03', 631, 12616); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:23:04', '15:41:49', '15:50:31', 612, 12617); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:23:44', '15:24:03', '15:33:56', 627, 12618); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:28:15', '15:28:40', '17:12:51', 627, 12619); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:30:26', '15:34:17', '15:35:46', 631, 12620); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:31:12', '15:36:53', '15:40:33', 631, 12621); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:33:47', '15:33:57', '15:52:36', 627, 12622); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:33:56', '15:35:11', '16:12:18', 631, 12623); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:34:18', '15:46:44', '16:07:12', 612, 12624); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:34:40', '15:50:32', '17:09:04', 612, 12625); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:38:20', '15:38:28', '15:42:40', 627, 12626); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:38:45', '16:02:28', '17:11:12', 627, 12627); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:39:22', '15:39:28', '15:50:36', 627, 12628); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:39:23', '15:40:34', '15:52:59', 631, 12629); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:39:42', '15:49:30', '16:01:02', 627, 12630); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:39:52', '15:44:43', '15:58:27', 631, 12631); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:40:17', '15:42:26', '17:41:15', 631, 12632); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:41:38', '15:50:36', '15:57:18', 627, 12633); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:41:54', '15:51:15', '18:03:31', 631, 12634); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:42:56', '15:50:34', '15:57:57', 612, 12635); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:49:11', '15:57:57', '16:01:37', 612, 12636); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:49:34', '16:01:26', '16:17:59', 612, 12637); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:49:57', '15:51:28', '16:05:44', 627, 12638); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:50:36', '15:50:46', '16:09:03', 612, 12639); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:51:17', '15:52:36', '16:16:19', 627, 12640); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:51:31', '15:51:35', '16:48:50', 631, 12641); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:52:17', '15:52:59', '16:25:19', 631, 12642); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:53:45', '16:00:34', '16:11:42', 627, 12643); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:56:54', '15:59:15', '16:04:55', 631, 12644); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '15:57:11', '15:57:23', '18:16:18', 612, 12645); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:01:55', '16:04:41', '16:09:25', 627, 12646); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:02:20', '16:03:14', '16:24:05', 631, 12647); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:06:29', '16:12:18', '16:34:41', 631, 12648); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:06:54', '16:13:03', '16:59:51', 631, 12649); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:14:14', '16:24:05', '16:41:56', 631, 12650); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:15:11', '16:15:28', '16:27:13', 612, 12651); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:15:12', '16:16:12', '17:42:37', 631, 12652); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:17:45', '16:17:59', '16:29:25', 612, 12653); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:18:03', '16:20:22', '17:00:45', 612, 12654); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:19:02', '16:22:28', '16:39:27', 612, 12655); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:22:13', '16:22:14', '16:49:01', 612, 12656); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:23:52', '16:25:20', '16:46:35', 631, 12657); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:25:52', '16:27:30', '16:40:38', 612, 12658); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:28:29', '16:29:26', '16:55:48', 612, 12659); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:28:35', '16:28:57', '16:42:40', 631, 12660); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:30:29', '16:34:41', '17:20:41', 631, 12661); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:34:26', '16:41:57', '17:00:42', 631, 12662); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:35:26', '16:35:29', '16:57:17', 627, 12663); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:39:11', '16:39:28', '16:53:23', 612, 12664); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:39:21', '16:40:10', '16:47:14', 627, 12665); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:40:32', '16:42:41', '16:48:36', 631, 12666); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:41:54', '16:46:35', '17:16:19', 631, 12667); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:46:30', '16:48:50', '17:05:27', 631, 12668); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:49:11', '16:51:36', '17:04:01', 627, 12669); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:49:53', '16:56:28', '17:00:50', 631, 12670); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:53:08', '16:54:40', '17:21:02', 627, 12671); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:53:10', '16:53:20', '17:08:08', 612, 12672); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:54:14', '16:57:18', '17:01:11', 627, 12673); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:55:39', '16:55:45', '17:10:59', 612, 12674); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:56:35', '16:56:43', '17:21:20', 612, 12675); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:56:52', '16:59:52', '17:49:21', 631, 12676); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '16:57:31', '17:00:42', '17:12:40', 631, 12677); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:00:35', '17:00:45', '17:31:03', 612, 12678); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:02:41', '17:05:28', '18:29:11', 631, 12679); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:03:10', '17:12:40', '17:26:44', 631, 12680); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:06:10', '17:06:14', '17:54:17', 612, 12681); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:07:19', '17:07:26', '17:20:10', 612, 12682); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:08:00', '17:08:09', '17:41:13', 612, 12683); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:08:36', '17:10:59', '17:31:14', 612, 12684); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:08:56', '17:09:04', '18:56:06', 612, 12685); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:10:38', '17:11:13', '17:40:47', 627, 12686); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:12:43', '17:12:51', '17:57:47', 627, 12687); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:15:46', '17:16:20', '18:44:25', 631, 12688); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:16:41', '17:20:41', '17:35:19', 631, 12689); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:19:59', '17:20:10', '18:01:51', 612, 12690); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:21:16', '17:23:44', '17:40:48', 627, 12691); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:22:36', '17:22:44', '17:26:34', 627, 12692); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:22:49', '17:26:45', '18:06:42', 631, 12693); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:26:07', '17:26:11', '17:36:19', 612, 12694); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:26:24', '17:26:34', '17:49:15', 627, 12695); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:26:44', '17:31:04', '17:41:17', 612, 12696); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:34:43', '17:35:20', '17:45:43', 631, 12697); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:36:08', '17:41:17', '18:14:10', 612, 12698); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:38:04', '17:45:43', '18:02:59', 631, 12699); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:40:29', '17:40:47', '18:46:35', 627, 12700); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:41:25', '17:41:34', '18:20:55', 612, 12701); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:44:36', '17:44:39', '17:56:55', 627, 12702); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:45:43', '17:45:58', '17:56:54', 627, 12703); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:46:46', '17:48:41', '18:28:11', 627, 12704); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:47:05', '17:47:10', '18:07:00', 612, 12705); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:50:55', '17:50:56', '18:24:55', 627, 12706); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:53:55', '17:56:46', '18:09:28', 627, 12707); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:54:14', '17:54:17', '18:14:39', 612, 12708); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:55:42', '18:01:51', '18:49:23', 612, 12709); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '17:57:36', '17:57:39', '19:34:52', 627, 12710); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:02:00', '18:03:00', '18:59:12', 631, 12711); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:03:24', '18:03:31', '20:52:26', 631, 12712); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:05:09', '18:05:46', '18:10:24', 631, 12713); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:05:42', '18:06:42', '18:49:40', 631, 12714); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:07:32', '18:07:58', '18:26:40', 627, 12715); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:09:12', '18:09:17', '18:30:54', 612, 12716); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:13:50', '18:14:40', '18:41:28', 612, 12717); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:14:04', '18:18:54', '19:06:11', 627, 12718); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:14:47', '18:16:19', '19:09:37', 612, 12719); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:16:39', '18:17:08', '18:20:15', 631, 12720); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:25:24', '18:25:26', '18:41:13', 612, 12721); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:26:29', '18:26:29', '18:31:24', 627, 12722); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:36:48', '18:38:07', '18:42:57', 627, 12723); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:41:03', '18:41:05', '19:01:36', 612, 12724); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:41:42', '18:41:53', '19:32:19', 612, 12725); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:43:30', '18:44:38', '18:54:40', 631, 12726); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:43:40', '18:43:45', '18:57:46', 612, 12727); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:46:15', '18:46:36', '18:57:43', 627, 12728); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:48:13', '18:48:18', '19:01:03', 627, 12729); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:48:14', '18:49:41', '19:54:03', 631, 12730); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:48:57', '18:54:40', '19:49:37', 631, 12731); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:49:29', '18:49:49', '19:15:15', 612, 12732); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:50:25', '18:56:06', '19:00:36', 612, 12733); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:56:42', '18:57:43', '19:31:46', 627, 12734); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:57:41', '18:57:46', '19:03:16', 612, 12735); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:57:48', '18:57:51', '18:59:10', 627, 12736); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:58:02', '19:31:46', '19:34:55', 627, 12737); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:58:38', '18:59:13', '19:37:41', 631, 12738); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '18:58:44', '19:00:36', '19:19:01', 612, 12739); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:01:17', '19:01:37', '19:13:00', 612, 12740); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:01:49', '19:01:49', '19:08:26', 627, 12741); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:02:29', '19:03:16', '19:37:10', 612, 12742); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:05:07', '19:08:26', '20:38:20', 627, 12743); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:12:33', '19:13:01', '19:27:59', 612, 12744); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:13:20', '19:16:11', '19:22:05', 627, 12745); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:14:58', '19:15:16', '19:37:06', 612, 12746); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:18:53', '19:19:01', '20:50:24', 612, 12747); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:27:35', '19:27:52', '20:51:04', 612, 12748); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:30:34', '19:30:41', '19:44:08', 612, 12749); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:31:43', '19:32:19', '19:56:15', 612, 12750); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:33:46', '19:34:55', '19:58:31', 627, 12751); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:36:57', '19:37:07', '20:50:26', 612, 12752); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:37:24', '19:37:41', '20:52:48', 631, 12753); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:49:02', '19:49:38', '20:52:22', 631, 12754); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:50:55', '19:54:03', '20:52:25', 631, 12755); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '19:56:25', '19:56:26', '20:07:31', 612, 12756); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '20:01:15', '20:01:21', '20:50:17', 612, 12757); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '20:06:39', '20:07:31', '20:26:52', 612, 12758); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '20:09:49', '20:10:12', '20:14:33', 627, 12759); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-04', '20:26:29', '20:26:53', '20:50:23', 612, 12760); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '08:57:52', '08:58:11', '09:29:12', 612, 12761); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:02:30', '09:03:21', '09:12:50', 612, 12762); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:05:56', '09:07:32', '09:36:19', 631, 12763); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:12:25', '09:12:51', '09:35:12', 612, 12764); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:15:40', '09:17:30', '09:55:52', 612, 12765); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:16:53', '09:17:02', '10:10:36', 612, 12766); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:16:56', '09:24:26', '09:34:43', 631, 12767); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:20:38', '09:26:35', '09:55:43', 627, 12768); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:21:06', '09:25:23', '10:24:37', 627, 12769); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:22:21', '09:26:37', '09:41:18', 631, 12770); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:22:36', '09:25:14', '10:18:42', 631, 12771); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:23:18', '09:36:20', '09:50:30', 631, 12772); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:25:40', '09:34:43', '09:40:50', 631, 12773); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:28:59', '09:29:12', '09:42:29', 612, 12774); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:32:38', '09:41:33', '10:18:42', 631, 12775); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:34:30', '09:38:12', '09:57:20', 627, 12776); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:35:06', '09:35:12', '10:04:49', 612, 12777); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:37:31', '09:37:53', '11:05:00', 612, 12778); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:38:17', '09:42:23', '12:30:27', 612, 12779); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:39:37', '09:41:18', '10:18:42', 631, 12780); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:43:42', '09:43:50', '10:33:38', 612, 12781); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '09:54:58', '09:55:52', '10:15:07', 612, 12782); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:04:34', '10:04:49', '10:22:21', 612, 12783); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:10:28', '10:10:37', '10:30:01', 612, 12784); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:14:00', '10:15:07', '10:23:11', 612, 12785); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:16:22', '10:16:31', '11:58:24', 627, 12786); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:18:22', '10:23:12', '10:30:39', 612, 12787); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:21:46', '10:30:39', '12:00:36', 612, 12788); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:22:17', '10:22:21', '10:46:52', 612, 12789); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:28:16', '10:29:35', '10:55:48', 627, 12790); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:29:50', '10:30:01', '10:58:57', 612, 12791); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:33:29', '10:33:38', '11:20:12', 612, 12792); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:33:45', '10:33:48', '15:45:59', 627, 12793); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:35:21', '10:35:26', '10:42:18', 627, 12794); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:40:27', '10:40:30', '12:26:21', 627, 12795); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:46:44', '10:46:53', '11:13:35', 612, 12796); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:49:19', '10:49:20', '10:55:57', 627, 12797); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:50:26', '10:50:28', '11:36:43', 627, 12798); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:50:35', '10:51:03', '13:12:23', 612, 12799); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:50:58', '10:54:01', '11:09:28', 627, 12800); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:52:27', '10:55:57', '11:04:30', 627, 12801); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:55:27', '10:55:48', '11:05:10', 627, 12802); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:56:00', '10:56:03', '11:03:26', 631, 12803); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:58:09', '11:04:30', '11:09:10', 627, 12804); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '10:58:48', '10:58:57', '11:28:52', 612, 12805); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:04:10', '11:09:10', '11:27:16', 627, 12806); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:04:51', '11:05:10', '11:10:14', 627, 12807); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:05:01', '11:05:01', '12:30:10', 612, 12808); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:05:19', '11:07:20', '11:26:05', 627, 12809); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:09:54', '11:10:14', '11:29:39', 627, 12810); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:11:04', '11:11:04', '11:47:37', 612, 12811); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:13:22', '11:13:35', '11:20:07', 612, 12812); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:19:28', '11:20:08', '11:35:58', 612, 12813); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:28:44', '11:28:53', '11:53:47', 612, 12814); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:28:59', '11:30:15', '11:40:13', 627, 12815); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:29:03', '11:31:24', '11:34:22', 631, 12816); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:29:10', '11:29:13', '11:36:03', 612, 12817); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:29:17', '11:29:39', '11:48:57', 627, 12818); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:33:54', '11:48:58', '12:49:09', 627, 12819); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:35:48', '11:35:58', '12:03:15', 612, 12820); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:46:09', '11:46:18', '12:09:52', 627, 12821); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:47:31', '11:47:34', '12:16:27', 612, 12822); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:51:13', '12:00:39', '12:08:24', 627, 12823); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:52:08', '12:04:06', '12:15:46', 631, 12824); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:53:39', '11:53:48', '13:20:05', 612, 12825); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:56:46', '11:58:45', '12:48:33', 627, 12826); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:58:11', '11:58:17', '12:36:08', 612, 12827); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '11:59:38', '12:00:36', '12:08:12', 612, 12828); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:00:13', '12:03:14', '12:12:14', 631, 12829); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:00:15', '12:03:15', '12:21:39', 612, 12830); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:01:51', '12:03:58', '13:22:28', 627, 12831); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:02:15', '12:04:32', '12:14:35', 627, 12832); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:04:53', '12:07:56', '12:32:06', 631, 12833); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:05:19', '12:08:12', '13:05:57', 612, 12834); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:06:27', '12:08:57', '12:11:50', 631, 12835); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:06:28', '12:07:30', '12:30:10', 627, 12836); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:07:47', '12:11:50', '12:17:07', 631, 12837); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:08:00', '12:16:27', '12:53:15', 612, 12838); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:08:00', '12:09:52', '12:55:25', 627, 12839); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:09:57', '12:13:15', '12:28:41', 631, 12840); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:10:44', '12:13:51', '12:41:57', 631, 12841); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:15:16', '12:15:46', '12:36:30', 631, 12842); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:15:41', '12:17:07', '12:25:54', 631, 12843); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:17:07', '12:53:09', '13:30:17', 612, 12844); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:18:32', '12:24:38', '13:22:59', 631, 12845); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:21:34', '12:21:40', '12:28:13', 612, 12846); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:21:44', '12:28:41', '12:37:52', 631, 12847); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:22:41', '12:25:54', '13:41:54', 631, 12848); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:23:11', '12:32:07', '13:15:56', 631, 12849); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:24:14', '12:26:21', '13:23:50', 627, 12850); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:26:02', '12:26:08', '12:33:03', 612, 12851); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:28:04', '12:37:52', '13:07:43', 631, 12852); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:28:06', '12:28:14', '12:44:18', 612, 12853); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:29:27', '12:30:11', '12:53:09', 612, 12854); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:30:03', '12:30:27', '12:46:03', 612, 12855); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:36:02', '12:36:30', '14:38:20', 631, 12856); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:37:27', '13:07:15', '13:49:54', 612, 12857); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:43:11', '12:43:31', '13:04:21', 627, 12858); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:43:39', '12:43:44', '12:53:00', 612, 12859); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:45:30', '12:46:06', '13:12:22', 612, 12860); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:48:21', '12:49:10', '14:13:57', 627, 12861); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:50:05', '12:50:08', '13:08:08', 631, 12862); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:51:22', '12:51:29', '13:42:40', 627, 12863); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:52:18', '12:53:13', '13:01:46', 627, 12864); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:54:27', '12:54:28', '13:28:36', 612, 12865); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '12:58:00', '12:58:01', '13:05:01', 612, 12866); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:02:54', '13:05:01', '13:20:10', 612, 12867); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:06:44', '13:08:08', '13:42:16', 631, 12868); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:08:58', '13:09:04', '13:56:13', 627, 12869); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:11:08', '13:11:15', '15:05:41', 627, 12870); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:12:16', '13:12:23', '14:12:27', 612, 12871); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:15:33', '13:15:56', '13:29:22', 631, 12872); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:15:53', '13:16:01', '13:37:29', 627, 12873); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:19:47', '13:20:05', '13:30:53', 612, 12874); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:22:28', '13:25:13', '13:29:27', 631, 12875); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:24:14', '13:27:57', '13:59:33', 612, 12876); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:24:49', '13:24:51', '14:46:39', 612, 12877); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:25:50', '13:36:30', '14:45:19', 631, 12878); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:27:01', '13:29:23', '14:07:47', 631, 12879); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:28:26', '13:28:36', '13:43:31', 612, 12880); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:29:17', '13:30:17', '13:47:05', 612, 12881); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:29:36', '13:30:45', '13:43:07', 612, 12882); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:30:09', '13:30:23', '13:54:46', 627, 12883); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:30:28', '13:30:53', '13:44:29', 612, 12884); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:36:54', '13:38:23', '14:26:57', 627, 12885); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:37:49', '13:38:06', '13:53:34', 627, 12886); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:38:11', '13:38:14', '15:26:41', 627, 12887); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:38:41', '13:42:16', '13:59:22', 612, 12888); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:41:06', '13:43:31', '14:21:03', 612, 12889); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:41:36', '13:42:16', '13:51:36', 631, 12890); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:41:43', '13:44:29', '13:52:25', 612, 12891); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:42:44', '13:44:27', '13:47:55', 627, 12892); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:42:58', '13:43:07', '14:12:26', 612, 12893); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:43:40', '13:49:54', '15:19:01', 612, 12894); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:46:49', '13:47:06', '14:12:26', 612, 12895); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:47:04', '13:47:55', '14:01:34', 627, 12896); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:48:28', '13:48:35', '13:58:34', 631, 12897); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:49:12', '13:54:47', '14:28:37', 627, 12898); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:49:21', '13:51:36', '14:43:11', 631, 12899); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:52:10', '13:52:26', '14:31:45', 612, 12900); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:52:29', '13:59:35', '14:00:47', 627, 12901); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:53:48', '13:56:14', '14:04:29', 627, 12902); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:54:40', '14:03:16', '14:15:00', 627, 12903); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:54:41', '13:54:46', '15:25:43', 631, 12904); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:56:46', '13:58:34', '14:07:43', 631, 12905); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:58:50', '14:01:16', '14:12:45', 631, 12906); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '13:59:05', '13:59:23', '14:04:39', 612, 12907); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:04:39', '14:04:40', '14:15:59', 612, 12908); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:06:02', '14:06:10', '14:36:36', 627, 12909); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:07:04', '14:07:47', '14:36:26', 631, 12910); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:07:27', '14:08:23', '14:30:53', 631, 12911); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:09:38', '14:12:26', '14:35:06', 612, 12912); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:12:20', '14:12:26', '15:19:01', 612, 12913); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:13:26', '14:13:50', '15:19:01', 612, 12914); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:15:49', '14:16:00', '14:23:38', 612, 12915); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:18:58', '14:23:38', '14:40:11', 612, 12916); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:21:01', '14:21:03', '14:31:52', 612, 12917); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:24:43', '14:24:50', '14:39:26', 627, 12918); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:26:29', '14:26:57', '14:39:26', 627, 12919); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:29:08', '14:30:53', '17:03:44', 631, 12920); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:29:33', '14:36:27', '14:44:18', 631, 12921); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:31:45', '14:31:46', '14:43:18', 612, 12922); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:34:26', '14:34:34', '14:54:14', 612, 12923); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:35:02', '14:35:07', '14:46:24', 612, 12924); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:37:31', '14:38:20', '14:48:59', 631, 12925); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:39:01', '14:43:12', '14:53:43', 631, 12926); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:39:15', '14:45:19', '15:41:01', 631, 12927); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:40:04', '14:40:12', '15:02:38', 612, 12928); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:41:21', '14:44:18', '15:10:17', 631, 12929); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:46:10', '14:46:24', '15:19:01', 612, 12930); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:48:15', '14:48:59', '15:01:58', 631, 12931); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:49:34', '14:49:37', '15:44:59', 627, 12932); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:50:04', '14:50:31', '14:59:27', 627, 12933); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:52:06', '14:52:08', '15:19:01', 612, 12934); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:52:45', '14:52:54', '15:06:01', 627, 12935); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:53:04', '14:55:49', '15:00:08', 627, 12936); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:54:54', '14:55:03', '14:56:15', 631, 12937); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:55:43', '14:55:45', '15:16:03', 612, 12938); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '14:57:22', '14:59:28', '15:15:39', 627, 12939); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:01:44', '15:01:58', '15:30:03', 631, 12940); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:03:26', '15:05:41', '15:16:00', 627, 12941); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:03:32', '15:03:44', '15:19:01', 612, 12942); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:07:39', '15:07:44', '15:39:51', 631, 12943); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:09:51', '15:10:17', '15:29:32', 631, 12944); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:12:47', '15:13:07', '15:16:44', 627, 12945); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:12:53', '15:21:54', '15:26:13', 631, 12946); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:13:09', '15:13:25', '15:47:25', 627, 12947); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:14:00', '15:15:42', '15:18:55', 627, 12948); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:14:43', '15:16:04', '15:19:19', 627, 12949); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:16:53', '15:25:44', '15:55:14', 631, 12950); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:17:34', '15:17:54', '15:19:01', 612, 12951); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:20:52', '15:20:56', '16:00:48', 627, 12952); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:21:27', '15:21:38', '16:50:50', 627, 12953); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:21:52', '15:21:56', '15:47:10', 627, 12954); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:23:42', '15:29:32', '15:42:29', 631, 12955); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:26:25', '15:26:28', '15:37:58', 627, 12956); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:28:45', '15:28:53', '15:46:40', 612, 12957); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:29:24', '15:30:04', '15:59:32', 631, 12958); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:34:01', '15:41:01', '16:33:13', 631, 12959); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:37:20', '15:37:59', '17:19:42', 627, 12960); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:38:48', '15:44:26', '17:14:03', 612, 12961); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:39:19', '15:39:52', '15:54:52', 631, 12962); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:42:01', '15:44:59', '16:18:46', 627, 12963); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:42:18', '15:42:30', '15:52:46', 631, 12964); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:43:47', '15:43:49', '15:54:33', 612, 12965); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:45:00', '15:45:05', '16:52:09', 612, 12966); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:46:32', '15:46:41', '16:10:01', 612, 12967); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:47:44', '15:52:20', '17:20:02', 612, 12968); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:48:49', '15:52:46', '16:12:16', 631, 12969); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:49:20', '15:54:53', '16:06:20', 631, 12970); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:53:25', '15:55:14', '16:12:43', 631, 12971); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:54:45', '16:04:12', '16:21:49', 631, 12972); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '15:59:17', '15:59:33', '16:50:46', 631, 12973); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:01:30', '16:06:20', '16:17:20', 631, 12974); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:04:41', '16:12:17', '16:30:24', 631, 12975); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:09:30', '16:10:01', '16:47:13', 612, 12976); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:10:01', '16:10:14', '16:34:29', 612, 12977); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:10:57', '16:12:44', '16:59:45', 631, 12978); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:11:08', '16:17:20', '17:34:43', 631, 12979); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:23:14', '16:24:43', '16:40:53', 631, 12980); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:24:16', '16:26:58', '16:57:27', 627, 12981); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:25:13', '16:30:25', '16:35:21', 631, 12982); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:26:18', '16:26:26', '16:37:25', 612, 12983); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:31:48', '16:33:13', '17:45:54', 631, 12984); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:33:01', '16:35:21', '17:20:53', 631, 12985); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:33:27', '16:38:35', '16:42:47', 631, 12986); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:33:41', '16:34:29', '17:44:57', 612, 12987); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:34:18', '16:34:38', '17:20:18', 612, 12988); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:35:46', '16:37:25', '16:47:39', 612, 12989); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:47:29', '16:47:30', '17:20:03', 612, 12990); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:49:40', '16:50:46', '21:02:00', 631, 12991); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:50:39', '16:50:50', '18:49:33', 627, 12992); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:52:05', '16:52:10', '17:47:42', 612, 12993); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:58:02', '16:59:45', '17:12:35', 631, 12994); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:58:58', '16:59:05', '17:15:49', 627, 12995); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '16:59:17', '16:59:30', '18:04:44', 627, 12996); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:02:29', '17:03:45', '17:26:56', 631, 12997); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:03:35', '17:12:36', '17:45:17', 631, 12998); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:08:45', '17:09:23', '17:30:51', 627, 12999); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:10:30', '17:10:33', '17:38:51', 612, 13000); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:10:47', '17:14:03', '17:30:18', 612, 13001); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:15:54', '17:20:53', '17:43:53', 631, 13002); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:19:11', '17:19:42', '19:53:41', 627, 13003); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:20:12', '17:20:19', '17:44:57', 612, 13004); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:21:16', '17:26:57', '17:33:21', 631, 13005); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:23:37', '17:23:40', '17:30:45', 627, 13006); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:27:10', '17:36:26', '17:38:14', 631, 13007); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:28:52', '17:33:21', '18:13:27', 631, 13008); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:29:37', '17:29:53', '17:53:34', 627, 13009); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:29:53', '17:30:18', '17:53:10', 612, 13010); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:30:07', '17:30:32', '17:41:35', 627, 13011); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:30:11', '17:34:43', '18:18:45', 631, 13012); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:30:34', '17:43:54', '18:09:50', 631, 13013); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:32:32', '17:32:34', '17:34:04', 627, 13014); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:32:32', '17:45:18', '18:05:56', 631, 13015); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:33:31', '17:33:40', '17:50:31', 627, 13016); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:34:42', '17:34:44', '18:00:36', 612, 13017); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:38:32', '17:39:02', '17:52:48', 612, 13018); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:39:12', '17:39:15', '17:49:25', 627, 13019); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:40:41', '17:40:46', '18:07:10', 612, 13020); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:44:25', '17:44:26', '18:05:25', 627, 13021); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:44:48', '17:44:57', '17:54:17', 612, 13022); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:47:46', '17:47:48', '17:51:57', 612, 13023); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:47:47', '17:49:25', '18:11:33', 627, 13024); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:50:25', '17:50:25', '18:07:51', 627, 13025); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:51:57', '17:51:57', '18:58:46', 612, 13026); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:52:49', '17:53:11', '03:53:48', 612, 13027); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:53:59', '17:54:17', '19:16:15', 612, 13028); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:55:42', '17:56:39', '18:01:32', 627, 13029); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '17:58:59', '18:05:56', '18:12:55', 631, 13030); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:00:30', '18:00:36', '18:09:42', 612, 13031); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:02:19', '18:09:50', '19:06:58', 631, 13032); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:07:26', '18:07:27', '18:42:17', 612, 13033); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:09:55', '18:10:03', '19:10:26', 612, 13034); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:10:49', '18:11:08', '19:17:11', 612, 13035); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:11:41', '18:12:55', '18:23:16', 631, 13036); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:12:27', '18:13:28', '18:40:38', 631, 13037); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:12:58', '18:18:56', '19:16:54', 631, 13038); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:13:19', '18:23:16', '18:34:55', 631, 13039); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:23:53', '18:34:55', '18:41:10', 631, 13040); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:30:32', '18:30:41', '18:51:05', 612, 13041); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:33:07', '18:40:39', '18:52:26', 631, 13042); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:47:51', '18:49:02', '19:58:49', 627, 13043); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:50:17', '18:50:18', '19:06:11', 627, 13044); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:50:30', '18:52:26', '19:28:39', 631, 13045); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:50:43', '18:52:27', '19:00:07', 627, 13046); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:58:18', '18:58:47', '19:12:24', 612, 13047); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:58:45', '19:05:49', '19:36:30', 627, 13048); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '18:59:43', '19:00:07', '19:06:59', 627, 13049); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:07:55', '19:09:36', '19:17:42', 627, 13050); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:10:06', '19:10:26', '19:33:30', 612, 13051); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:12:18', '19:12:27', '19:16:52', 627, 13052); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:12:20', '19:12:25', '19:17:59', 612, 13053); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:13:10', '19:13:17', '20:56:48', 631, 13054); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:14:01', '19:17:22', '20:43:25', 612, 13055); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:14:25', '19:16:02', '19:31:08', 627, 13056); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:15:41', '19:16:54', '20:13:57', 631, 13057); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:16:08', '19:16:16', '20:57:44', 612, 13058); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:17:20', '19:17:59', '19:22:08', 612, 13059); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:19:41', '19:21:18', '19:42:06', 631, 13060); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:27:21', '19:28:40', '20:15:36', 631, 13061); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:27:29', '19:30:50', '19:51:43', 627, 13062); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:30:42', '19:31:09', '19:50:51', 627, 13063); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:32:03', '19:36:30', '19:39:45', 627, 13064); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:33:16', '19:33:30', '20:29:26', 612, 13065); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:39:06', '19:42:06', '21:00:01', 631, 13066); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '19:57:21', '19:57:24', '20:18:47', 627, 13067); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-05', '20:07:40', '20:07:53', '20:13:42', 627, 13068); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '09:57:26', '09:59:26', '10:05:05', 612, 13069); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '09:58:09', '10:05:06', '10:45:16', 612, 13070); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '09:58:33', '10:08:28', '10:21:15', 612, 13071); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '10:06:47', '10:10:03', '12:11:07', 627, 13072); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '10:17:19', '10:17:24', '10:18:38', 627, 13073); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '10:19:07', '10:21:17', '10:26:07', 612, 13074); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '10:20:50', '10:21:29', '10:44:26', 627, 13075); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '10:22:30', '10:26:07', '10:56:13', 612, 13076); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '10:26:09', '10:26:10', '10:42:55', 627, 13077); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '10:29:27', '10:29:42', '11:12:34', 627, 13078); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '10:44:52', '10:45:16', '10:54:06', 612, 13079); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '10:44:52', '10:45:53', '10:56:02', 627, 13080); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '10:48:02', '10:49:14', '11:08:19', 631, 13081); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '10:48:38', '10:48:42', '12:24:27', 612, 13082); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '10:49:07', '10:54:06', '11:02:12', 612, 13083); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '10:50:08', '10:56:16', '11:02:56', 612, 13084); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '10:55:36', '10:56:29', '11:12:24', 612, 13085); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:00:02', '11:00:36', '12:20:23', 631, 13086); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:00:08', '11:02:12', '11:18:54', 612, 13087); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:02:41', '11:02:56', '11:07:49', 612, 13088); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:04:26', '11:07:50', '11:14:50', 612, 13089); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:06:23', '11:12:25', '11:18:08', 612, 13090); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:08:46', '11:14:51', '12:22:13', 612, 13091); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:10:20', '11:18:08', '11:38:41', 612, 13092); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:11:40', '11:18:55', '11:20:35', 612, 13093); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:16:13', '11:16:17', '12:05:58', 631, 13094); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:16:46', '11:20:35', '11:55:00', 612, 13095); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:22:21', '11:22:24', '11:41:49', 627, 13096); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:23:38', '11:28:05', '12:49:30', 627, 13097); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:36:10', '11:36:13', '11:50:38', 627, 13098); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:38:08', '11:40:17', '11:57:24', 627, 13099); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:38:33', '11:38:42', '12:03:14', 612, 13100); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:42:06', '11:42:20', '12:36:15', 627, 13101); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:45:02', '11:45:10', '11:59:29', 627, 13102); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:48:17', '11:48:20', '12:01:30', 631, 13103); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:48:59', '11:50:38', '12:21:11', 627, 13104); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:53:01', '11:53:32', '12:10:56', 631, 13105); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:53:51', '11:55:01', '12:17:11', 612, 13106); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '11:56:33', '11:56:43', '12:00:16', 627, 13107); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:00:08', '12:00:10', '12:21:35', 627, 13108); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:01:31', '12:01:40', '12:14:26', 631, 13109); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:02:00', '12:10:56', '13:24:20', 631, 13110); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:02:25', '12:11:57', '12:42:48', 631, 13111); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:03:30', '12:03:35', '12:26:38', 612, 13112); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:03:33', '12:11:07', '12:17:53', 627, 13113); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:03:37', '12:05:58', '12:21:10', 631, 13114); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:08:32', '12:11:24', '12:37:17', 612, 13115); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:11:40', '12:14:26', '13:22:06', 631, 13116); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:12:11', '12:20:23', '12:38:40', 631, 13117); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:12:40', '12:21:10', '13:09:37', 631, 13118); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:16:53', '12:17:11', '12:44:24', 612, 13119); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:17:07', '12:17:53', '14:19:38', 627, 13120); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:19:41', '12:21:12', '12:43:27', 627, 13121); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:20:11', '12:22:13', '12:36:44', 612, 13122); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:22:29', '12:24:28', '13:09:41', 612, 13123); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:25:50', '12:26:38', '12:29:24', 612, 13124); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:26:49', '12:29:24', '12:33:29', 612, 13125); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:31:33', '12:34:22', '13:07:23', 612, 13126); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:33:07', '12:38:41', '13:12:47', 631, 13127); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:34:39', '12:36:45', '13:19:18', 612, 13128); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:34:47', '12:35:20', '12:39:35', 627, 13129); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:35:17', '12:37:18', '13:06:50', 612, 13130); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:40:39', '12:42:40', '13:06:45', 627, 13131); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:42:02', '12:42:48', '12:49:45', 631, 13132); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:42:21', '12:43:27', '13:09:26', 627, 13133); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:42:39', '12:49:46', '12:54:34', 631, 13134); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:43:32', '12:44:24', '13:17:42', 612, 13135); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:45:09', '12:54:35', '13:00:00', 631, 13136); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:50:22', '13:07:15', '13:31:22', 612, 13137); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:51:18', '12:58:42', '13:07:20', 631, 13138); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:52:24', '13:00:01', '13:10:04', 631, 13139); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:53:33', '12:57:32', '13:28:28', 627, 13140); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:54:19', '13:09:42', '13:12:48', 631, 13141); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:54:28', '13:07:24', '13:27:00', 612, 13142); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:57:18', '13:09:41', '13:13:12', 612, 13143); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '12:59:25', '13:09:38', '14:03:55', 631, 13144); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:01:29', '13:13:12', '13:16:24', 612, 13145); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:02:47', '13:16:25', '13:29:42', 612, 13146); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:03:16', '13:10:05', '13:19:33', 631, 13147); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:04:08', '13:12:47', '13:19:54', 631, 13148); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:05:56', '13:09:26', '13:32:30', 627, 13149); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:06:51', '13:09:56', '13:12:49', 627, 13150); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:08:35', '13:12:49', '13:26:55', 627, 13151); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:10:05', '13:17:42', '14:46:15', 612, 13152); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:12:22', '13:19:33', '13:49:04', 631, 13153); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:13:31', '13:19:54', '14:13:24', 631, 13154); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:18:22', '13:22:06', '13:51:05', 631, 13155); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:18:52', '13:24:21', '13:51:28', 631, 13156); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:19:09', '13:19:19', '13:26:43', 612, 13157); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:23:14', '13:26:43', '13:33:06', 612, 13158); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:23:35', '13:27:00', '13:35:56', 612, 13159); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:24:44', '13:29:42', '13:53:09', 612, 13160); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:25:13', '13:31:22', '13:45:58', 612, 13161); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:27:39', '13:33:06', '14:02:52', 612, 13162); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:31:19', '13:35:56', '13:46:02', 612, 13163); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:32:08', '13:32:31', '13:43:18', 627, 13164); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:32:52', '13:49:05', '13:57:49', 631, 13165); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:34:33', '13:37:34', '13:48:50', 627, 13166); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:35:29', '13:35:32', '13:44:16', 627, 13167); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:37:32', '13:37:35', '14:07:24', 627, 13168); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:39:00', '13:43:18', '14:22:21', 627, 13169); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:39:51', '13:43:23', '13:46:54', 627, 13170); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:41:57', '13:44:16', '14:12:04', 627, 13171); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:42:12', '13:45:58', '13:49:33', 612, 13172); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:42:34', '13:46:03', '14:04:52', 612, 13173); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:42:56', '13:53:09', '14:02:03', 612, 13174); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:43:33', '13:46:05', '14:16:55', 627, 13175); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:43:34', '13:49:34', '13:57:29', 612, 13176); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:43:39', '13:51:05', '14:04:01', 631, 13177); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:44:15', '13:51:28', '13:57:58', 631, 13178); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:50:07', '13:57:49', '14:36:34', 631, 13179); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:52:59', '13:57:58', '14:48:12', 631, 13180); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:53:24', '13:57:30', '14:27:37', 612, 13181); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:56:32', '14:02:04', '14:28:51', 612, 13182); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:57:15', '14:02:52', '14:23:43', 612, 13183); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:57:23', '14:03:55', '14:28:35', 631, 13184); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:58:17', '14:04:01', '14:16:52', 631, 13185); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '13:59:13', '14:04:52', '14:28:28', 612, 13186); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:10:58', '14:12:05', '14:24:31', 627, 13187); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:11:20', '14:12:21', '14:32:48', 627, 13188); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:11:33', '14:13:24', '14:30:50', 631, 13189); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:12:52', '14:22:22', '14:34:49', 627, 13190); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:15:17', '14:16:52', '15:06:15', 631, 13191); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:18:16', '14:19:38', '14:44:59', 627, 13192); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:18:29', '14:22:32', '14:25:15', 627, 13193); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:18:53', '14:19:21', '14:28:47', 627, 13194); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:19:25', '14:24:31', '14:46:22', 627, 13195); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:21:45', '14:25:15', '14:40:49', 627, 13196); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:22:31', '14:28:35', '14:48:12', 631, 13197); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:23:02', '14:23:44', '14:38:02', 612, 13198); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:23:33', '14:27:37', '14:33:13', 612, 13199); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:24:38', '14:32:48', '14:51:09', 627, 13200); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:24:53', '14:30:50', '15:03:03', 631, 13201); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:25:14', '14:34:49', '14:40:06', 627, 13202); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:26:36', '14:28:29', '14:56:30', 612, 13203); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:26:37', '14:44:59', '15:45:26', 627, 13204); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:26:59', '14:35:13', '15:01:43', 627, 13205); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:27:09', '14:28:51', '15:00:42', 612, 13206); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:28:15', '14:33:13', '15:20:09', 612, 13207); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:32:50', '14:36:34', '16:15:08', 631, 13208); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:34:18', '14:40:06', '14:42:54', 627, 13209); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:34:21', '14:38:02', '14:50:17', 612, 13210); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:41:05', '14:46:22', '14:47:29', 627, 13211); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:42:23', '14:48:12', '15:02:14', 631, 13212); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:43:05', '14:46:38', '15:10:51', 627, 13213); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:44:06', '14:48:12', '15:00:59', 631, 13214); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:44:38', '14:46:16', '14:58:12', 612, 13215); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:46:34', '14:47:29', '14:52:58', 627, 13216); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:49:18', '15:06:05', '15:25:04', 627, 13217); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:50:25', '14:52:58', '15:00:00', 627, 13218); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:51:05', '14:51:09', '15:04:53', 627, 13219); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:51:37', '14:56:31', '15:04:05', 612, 13220); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:55:19', '15:00:00', '15:07:18', 627, 13221); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:55:42', '15:05:16', '15:09:23', 627, 13222); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:56:55', '15:04:10', '15:13:03', 612, 13223); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '14:59:20', '15:01:00', '15:22:13', 631, 13224); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:00:09', '15:02:14', '15:11:51', 631, 13225); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:00:29', '15:03:03', '15:18:13', 631, 13226); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:01:36', '15:06:15', '15:38:43', 631, 13227); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:02:21', '15:11:51', '15:25:13', 631, 13228); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:05:40', '15:13:12', '15:20:09', 612, 13229); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:08:03', '15:10:51', '15:15:49', 627, 13230); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:09:30', '15:18:13', '15:28:33', 631, 13231); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:13:26', '15:22:13', '15:28:54', 631, 13232); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:18:46', '15:21:31', '15:36:48', 627, 13233); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:19:38', '15:23:30', '15:26:24', 627, 13234); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:20:22', '15:25:13', '15:38:39', 631, 13235); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:22:23', '15:28:33', '15:52:55', 631, 13236); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:24:12', '15:27:29', '15:45:24', 612, 13237); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:26:09', '15:31:45', '15:50:57', 612, 13238); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:26:47', '15:28:55', '17:37:31', 631, 13239); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:28:23', '15:28:39', '15:32:33', 627, 13240); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:30:05', '15:32:33', '15:48:21', 627, 13241); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:31:55', '15:34:28', '15:52:07', 612, 13242); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:33:43', '15:33:55', '16:24:14', 627, 13243); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:35:57', '15:38:39', '16:13:29', 631, 13244); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:36:25', '15:38:43', '16:23:42', 631, 13245); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:43:08', '15:52:55', '16:01:07', 631, 13246); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:44:55', '15:45:25', '15:47:09', 612, 13247); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:45:11', '15:45:26', '17:13:27', 627, 13248); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:45:16', '15:47:10', '16:03:38', 612, 13249); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:45:41', '15:45:51', '16:05:20', 627, 13250); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:48:57', '15:50:57', '15:58:37', 612, 13251); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:50:37', '15:52:07', '16:23:33', 612, 13252); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:50:39', '15:50:43', '15:56:19', 627, 13253); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:51:02', '15:58:37', '16:52:24', 612, 13254); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:51:48', '15:52:52', '16:44:17', 627, 13255); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:55:26', '15:56:19', '16:08:38', 627, 13256); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '15:56:47', '16:01:07', '16:54:20', 631, 13257); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:01:12', '16:03:39', '16:49:29', 612, 13258); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:07:25', '16:14:48', '18:28:51', 631, 13259); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:07:30', '16:07:37', '16:22:02', 612, 13260); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:12:24', '16:13:29', '16:24:19', 631, 13261); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:12:52', '16:15:08', '17:57:26', 631, 13262); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:19:31', '16:22:03', '16:31:54', 612, 13263); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:20:32', '16:23:43', '16:37:06', 631, 13264); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:20:58', '16:24:19', '18:03:49', 631, 13265); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:22:09', '16:22:44', '18:53:15', 612, 13266); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:23:19', '16:23:33', '16:55:01', 612, 13267); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:25:32', '16:26:00', '16:33:00', 627, 13268); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:29:56', '16:31:55', '16:46:55', 612, 13269); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:33:35', '16:33:36', '16:52:17', 627, 13270); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:43:15', '16:44:18', '17:03:24', 627, 13271); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:47:08', '16:47:17', '18:25:12', 612, 13272); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:48:32', '16:48:46', '17:15:36', 627, 13273); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:52:01', '16:52:24', '17:32:51', 612, 13274); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:52:56', '16:55:02', '17:00:31', 612, 13275); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:54:15', '16:54:20', '17:41:39', 631, 13276); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:57:14', '17:00:31', '17:24:37', 612, 13277); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '16:58:11', '17:03:24', '18:16:16', 627, 13278); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '17:10:45', '17:13:27', '18:15:47', 627, 13279); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '17:18:39', '17:20:09', '17:30:21', 627, 13280); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '17:21:52', '17:24:38', '17:52:33', 612, 13281); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '17:25:30', '17:33:27', '17:37:05', 612, 13282); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '17:32:39', '17:33:41', '18:56:39', 612, 13283); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '17:33:00', '17:37:05', '17:59:22', 612, 13284); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '17:35:56', '17:37:31', '18:58:45', 631, 13285); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '17:36:39', '17:40:05', '18:15:51', 627, 13286); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '17:45:00', '17:52:33', '18:50:04', 612, 13287); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '17:53:55', '17:57:27', '19:05:52', 631, 13288); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '17:59:18', '17:59:23', '18:53:26', 612, 13289); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '18:01:37', '18:03:49', '18:28:49', 631, 13290); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '18:20:11', '18:20:52', '18:38:04', 627, 13291); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '18:28:15', '18:28:50', '18:54:16', 631, 13292); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '18:29:33', '18:29:34', '18:55:06', 612, 13293); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-06', '18:33:41', '18:34:22', '18:39:54', 627, 13294); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '11:56:24', '11:56:28', '12:07:18', 612, 13295); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '11:57:18', '11:57:22', '12:05:17', 612, 13296); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '12:02:14', '12:05:17', '12:58:13', 612, 13297); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '12:03:14', '12:07:19', '12:42:21', 612, 13298); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '12:11:10', '12:11:16', '13:36:52', 612, 13299); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '12:41:50', '12:42:21', '13:22:26', 612, 13300); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '12:58:00', '12:58:14', '14:11:46', 612, 13301); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '13:22:21', '13:22:27', '13:35:39', 612, 13302); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '13:35:30', '13:35:39', '14:58:23', 612, 13303); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '13:36:24', '13:36:52', '13:46:38', 612, 13304); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '13:46:02', '13:46:38', '14:38:14', 612, 13305); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '14:11:28', '14:11:46', '14:18:20', 612, 13306); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '14:18:15', '14:18:21', '14:37:14', 612, 13307); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '14:37:02', '14:37:14', '15:13:42', 612, 13308); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '14:37:47', '14:38:14', '15:42:24', 612, 13309); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '14:58:15', '14:58:23', '15:22:30', 612, 13310); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '15:05:54', '15:13:57', '15:22:01', 612, 13311); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '15:18:04', '15:22:01', '15:23:38', 612, 13312); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '15:22:11', '15:23:38', '15:31:22', 612, 13313); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '15:24:13', '15:31:22', '16:06:27', 612, 13314); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '15:42:12', '15:42:24', '16:16:42', 612, 13315); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '16:05:36', '16:06:28', '16:17:31', 612, 13316); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '16:10:14', '16:16:42', '16:36:50', 612, 13317); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '16:17:22', '16:17:31', '16:29:23', 612, 13318); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-07', '16:28:58', '16:29:23', '16:48:20', 612, 13319); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '08:56:24', '08:58:17', '10:15:50', 612, 13320); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '08:56:55', '08:58:52', '10:31:10', 612, 13321); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '09:04:56', '09:10:24', '10:05:48', 612, 13322); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '09:10:31', '09:10:34', '10:02:45', 627, 13323); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '09:11:59', '09:12:15', '09:15:12', 612, 13324); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '09:15:26', '09:15:29', '11:29:47', 612, 13325); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '09:21:36', '09:21:46', '09:38:50', 627, 13326); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '09:22:53', '09:22:55', '09:54:44', 627, 13327); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '09:54:23', '09:54:44', '10:06:07', 627, 13328); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:01:52', '10:02:45', '10:28:21', 627, 13329); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:03:29', '10:05:49', '10:52:47', 612, 13330); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:05:25', '10:06:07', '10:21:33', 627, 13331); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:11:03', '10:11:30', '11:01:13', 612, 13332); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:12:13', '10:14:51', '10:20:48', 631, 13333); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:12:38', '10:18:57', '11:06:24', 631, 13334); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:14:46', '10:14:49', '10:42:02', 627, 13335); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:15:40', '10:15:50', '10:34:16', 612, 13336); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:16:00', '10:20:37', '11:01:03', 631, 13337); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:19:24', '10:21:34', '10:31:06', 627, 13338); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:21:20', '10:21:51', '10:47:07', 627, 13339); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:25:50', '10:27:52', '10:41:44', 631, 13340); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:27:33', '10:28:21', '10:46:44', 627, 13341); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:31:02', '10:31:11', '10:57:01', 612, 13342); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:31:45', '10:31:51', '11:16:47', 627, 13343); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:32:08', '10:34:16', '12:53:53', 612, 13344); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:33:01', '10:34:59', '13:30:24', 612, 13345); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:34:48', '10:38:32', '11:13:01', 631, 13346); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:35:48', '10:41:44', '10:49:37', 631, 13347); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:41:07', '10:45:58', '10:52:38', 612, 13348); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:41:17', '10:46:45', '11:32:07', 627, 13349); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:41:53', '10:42:02', '11:24:37', 627, 13350); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:43:06', '10:52:38', '12:01:45', 612, 13351); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:45:05', '10:45:25', '10:53:41', 631, 13352); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:47:05', '10:49:37', '10:55:07', 631, 13353); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:48:26', '10:57:01', '11:05:11', 612, 13354); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:48:43', '10:48:48', '11:22:51', 612, 13355); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:48:56', '10:52:48', '11:22:36', 612, 13356); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:51:45', '11:01:03', '11:18:55', 631, 13357); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:53:17', '10:53:42', '11:12:36', 631, 13358); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:58:42', '11:01:13', '11:15:28', 612, 13359); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:59:00', '11:05:11', '11:26:40', 612, 13360); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '10:59:15', '11:15:28', '12:19:03', 612, 13361); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:03:08', '11:26:40', '11:51:33', 612, 13362); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:05:18', '11:06:24', '11:36:41', 631, 13363); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:06:10', '11:06:14', '12:05:54', 627, 13364); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:07:45', '11:29:47', '11:35:25', 612, 13365); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:12:05', '11:12:36', '11:43:30', 631, 13366); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:12:09', '11:12:19', '11:27:06', 627, 13367); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:12:18', '11:35:25', '11:50:10', 612, 13368); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:17:25', '11:18:55', '12:03:57', 631, 13369); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:17:43', '11:17:48', '11:37:43', 627, 13370); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:19:32', '11:22:36', '11:50:51', 612, 13371); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:20:54', '11:20:57', '11:41:43', 627, 13372); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:22:58', '11:27:26', '11:30:30', 631, 13373); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:24:31', '11:24:37', '11:34:37', 627, 13374); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:29:11', '11:36:41', '11:39:16', 631, 13375); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:31:50', '11:32:07', '12:39:35', 627, 13376); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:36:29', '11:39:16', '12:30:28', 631, 13377); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:37:16', '11:37:18', '12:31:27', 627, 13378); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:40:26', '11:40:28', '11:46:00', 627, 13379); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:40:38', '11:41:14', '11:50:02', 627, 13380); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:40:59', '11:44:21', '11:47:30', 631, 13381); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:44:03', '11:50:02', '12:01:56', 627, 13382); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:44:14', '11:50:49', '12:10:15', 627, 13383); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:46:15', '11:47:30', '11:52:07', 631, 13384); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:46:19', '11:46:21', '14:06:20', 627, 13385); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:46:31', '11:50:10', '12:15:27', 612, 13386); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:46:42', '11:51:33', '11:57:29', 612, 13387); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:50:33', '11:50:52', '12:06:53', 612, 13388); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:50:51', '11:57:29', '12:40:42', 612, 13389); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:56:18', '12:01:56', '14:27:37', 627, 13390); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '11:56:39', '11:56:43', '12:00:42', 631, 13391); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:00:09', '12:02:42', '12:04:58', 631, 13392); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:00:11', '12:05:45', '12:10:47', 627, 13393); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:01:18', '12:10:15', '12:26:32', 627, 13394); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:01:36', '12:01:45', '14:35:39', 612, 13395); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:02:39', '12:03:58', '12:26:36', 631, 13396); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:06:41', '12:06:54', '12:40:25', 612, 13397); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:12:13', '12:15:46', '14:24:12', 627, 13398); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:15:17', '12:15:27', '12:40:41', 612, 13399); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:17:13', '12:21:55', '12:27:02', 627, 13400); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:17:52', '12:18:19', '13:02:09', 631, 13401); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:18:55', '12:19:04', '13:03:16', 612, 13402); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:19:43', '12:19:47', '12:28:18', 612, 13403); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:22:24', '12:24:39', '13:49:57', 627, 13404); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:26:48', '12:26:48', '12:51:24', 631, 13405); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:30:40', '12:31:37', '12:55:20', 627, 13406); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:30:48', '12:30:49', '12:50:45', 631, 13407); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:31:02', '12:31:27', '12:43:17', 627, 13408); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:36:00', '12:42:51', '14:20:05', 631, 13409); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:37:43', '12:39:35', '13:16:13', 627, 13410); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:39:07', '12:40:08', '16:01:16', 627, 13411); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:40:02', '12:40:25', '13:41:11', 612, 13412); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:40:29', '12:40:38', '12:49:32', 627, 13413); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:40:34', '12:40:41', '12:48:15', 612, 13414); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:41:24', '12:50:45', '13:03:53', 631, 13415); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:41:49', '12:51:24', '13:32:30', 631, 13416); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:43:07', '12:43:17', '13:11:04', 627, 13417); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:44:10', '12:44:13', '14:39:51', 612, 13418); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:44:31', '12:49:21', '12:55:50', 627, 13419); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:47:10', '12:48:15', '12:57:54', 612, 13420); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:48:25', '12:57:54', '13:31:35', 612, 13421); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:49:24', '12:49:32', '12:58:17', 627, 13422); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:51:55', '12:55:20', '13:06:28', 627, 13423); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:53:33', '12:53:53', '14:14:04', 612, 13424); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:54:26', '12:54:58', '13:04:59', 631, 13425); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:58:55', '13:02:10', '13:23:22', 631, 13426); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:59:29', '13:06:29', '13:13:20', 627, 13427); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:59:34', '13:00:58', '13:21:32', 631, 13428); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '12:59:42', '13:13:14', '17:42:23', 631, 13429); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:00:11', '13:04:59', '13:13:14', 631, 13430); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:01:05', '13:01:13', '13:18:08', 627, 13431); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:01:24', '13:03:16', '13:13:09', 612, 13432); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:01:27', '13:11:04', '13:23:31', 627, 13433); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:02:29', '13:03:53', '14:15:18', 631, 13434); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:06:27', '13:21:32', '13:37:38', 631, 13435); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:08:59', '13:09:09', '13:20:45', 612, 13436); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:09:59', '13:13:09', '14:28:54', 612, 13437); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:15:49', '13:16:13', '13:41:52', 627, 13438); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:21:09', '13:23:22', '13:35:54', 631, 13439); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:22:58', '13:23:32', '13:37:47', 627, 13440); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:25:12', '13:26:39', '13:35:55', 631, 13441); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:25:33', '13:32:30', '14:01:21', 631, 13442); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:28:31', '13:30:24', '13:41:09', 612, 13443); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:28:43', '13:28:45', '13:31:31', 627, 13444); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:31:05', '13:31:35', '13:32:44', 612, 13445); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:32:48', '13:32:50', '13:49:49', 612, 13446); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:35:48', '13:35:55', '14:34:51', 631, 13447); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:39:08', '13:39:14', '14:07:58', 627, 13448); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:40:45', '13:41:11', '13:49:28', 612, 13449); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:40:49', '13:40:52', '13:43:40', 627, 13450); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:41:01', '13:49:29', '14:03:04', 612, 13451); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:41:18', '13:41:52', '13:54:06', 627, 13452); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:42:45', '13:43:41', '13:57:05', 627, 13453); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:48:02', '13:49:49', '13:50:59', 612, 13454); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:49:10', '13:51:01', '14:02:05', 612, 13455); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:51:12', '14:03:04', '14:10:13', 612, 13456); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:51:53', '13:54:06', '14:23:05', 627, 13457); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:52:05', '13:55:43', '14:01:58', 631, 13458); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:53:17', '13:55:29', '14:01:05', 627, 13459); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:55:22', '14:01:21', '15:15:44', 631, 13460); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:56:44', '13:57:06', '14:15:01', 627, 13461); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '13:56:47', '14:04:53', '14:16:31', 631, 13462); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:02:01', '14:06:20', '14:29:48', 627, 13463); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:02:57', '14:03:03', '14:42:01', 612, 13464); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:05:49', '14:07:59', '14:52:12', 627, 13465); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:07:10', '14:11:56', '14:30:24', 627, 13466); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:08:22', '14:08:25', '14:17:26', 627, 13467); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:09:06', '14:10:13', '14:18:04', 612, 13468); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:12:07', '14:15:18', '14:35:49', 631, 13469); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:12:35', '14:17:27', '14:20:59', 627, 13470); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:13:55', '14:14:05', '14:27:30', 612, 13471); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:16:00', '14:18:04', '14:28:04', 612, 13472); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:19:50', '14:22:17', '15:55:02', 627, 13473); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:20:51', '14:23:32', '14:39:02', 627, 13474); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:21:14', '14:24:12', '14:36:19', 627, 13475); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:21:51', '14:27:37', '14:36:44', 627, 13476); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:22:36', '14:29:49', '14:59:53', 627, 13477); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:22:47', '14:23:06', '14:33:43', 627, 13478); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:26:15', '14:26:20', '15:11:44', 627, 13479); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:26:28', '14:28:04', '14:40:21', 612, 13480); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:27:20', '14:27:30', '15:03:16', 612, 13481); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:28:36', '14:32:00', '15:00:49', 631, 13482); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:29:05', '14:29:27', '14:50:22', 612, 13483); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:31:19', '14:36:19', '14:52:36', 627, 13484); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:32:51', '14:33:45', '14:52:07', 627, 13485); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:35:01', '14:39:51', '15:03:16', 612, 13486); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:35:23', '14:35:49', '14:44:38', 631, 13487); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:35:28', '14:35:39', '14:48:26', 612, 13488); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:38:54', '14:42:01', '14:43:13', 612, 13489); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:39:11', '14:44:38', '16:13:28', 631, 13490); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:39:32', '14:40:22', '14:56:11', 612, 13491); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:40:16', '14:43:13', '14:47:22', 612, 13492); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:42:47', '14:42:57', '15:04:55', 627, 13493); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:45:49', '14:47:22', '15:03:16', 612, 13494); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:47:14', '14:48:26', '15:03:16', 612, 13495); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:47:54', '14:50:23', '15:02:38', 612, 13496); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:48:58', '14:52:13', '15:12:17', 627, 13497); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:50:07', '14:52:36', '15:09:18', 627, 13498); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:51:43', '14:52:07', '15:19:34', 627, 13499); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:54:06', '14:59:53', '15:09:50', 627, 13500); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:54:13', '14:57:27', '16:44:21', 631, 13501); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:54:33', '15:04:17', '15:21:20', 627, 13502); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:54:49', '14:56:12', '15:03:16', 612, 13503); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:56:09', '15:00:50', '15:20:55', 631, 13504); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:58:44', '15:04:55', '15:48:48', 627, 13505); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '14:59:20', '15:03:46', '15:14:11', 631, 13506); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:02:04', '15:09:18', '15:31:53', 627, 13507); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:03:02', '15:04:13', '15:30:44', 627, 13508); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:05:31', '15:09:51', '15:12:11', 627, 13509); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:05:38', '15:11:48', '15:20:48', 631, 13510); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:09:35', '15:14:12', '15:30:35', 631, 13511); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:11:37', '15:12:12', '15:23:04', 627, 13512); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:12:24', '15:12:28', '15:24:15', 612, 13513); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:13:35', '15:13:39', '16:06:37', 612, 13514); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:14:54', '15:15:44', '15:24:50', 631, 13515); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:15:05', '15:19:34', '16:19:21', 627, 13516); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:15:18', '15:19:31', '15:25:59', 612, 13517); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:16:10', '15:24:15', '15:48:33', 612, 13518); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:18:30', '15:19:53', '15:39:48', 612, 13519); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:19:18', '15:20:55', '15:29:05', 631, 13520); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:22:46', '15:22:58', '15:55:50', 627, 13521); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:23:41', '15:25:59', '15:29:09', 612, 13522); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:24:22', '15:29:09', '17:58:24', 612, 13523); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:24:36', '15:24:51', '16:39:03', 631, 13524); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:29:07', '15:30:36', '15:51:05', 631, 13525); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:31:21', '15:31:25', '15:39:38', 627, 13526); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:37:27', '15:39:38', '15:54:12', 627, 13527); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:38:13', '15:39:48', '15:55:57', 612, 13528); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:41:51', '15:48:48', '16:14:13', 627, 13529); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:44:06', '15:52:27', '15:57:23', 627, 13530); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:48:25', '15:48:34', '16:24:24', 612, 13531); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:50:55', '15:51:05', '16:03:45', 631, 13532); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:51:27', '15:54:12', '16:01:45', 627, 13533); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:53:25', '15:54:00', '16:00:47', 612, 13534); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:53:28', '15:55:50', '16:05:53', 627, 13535); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:54:38', '16:01:46', '16:08:39', 627, 13536); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:55:28', '15:55:58', '16:05:45', 612, 13537); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:56:07', '15:57:16', '16:12:40', 631, 13538); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:57:41', '16:00:48', '16:05:01', 612, 13539); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '15:58:04', '16:01:19', '16:32:43', 627, 13540); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:00:00', '16:05:01', '16:07:20', 612, 13541); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:00:21', '16:05:54', '16:28:35', 627, 13542); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:00:38', '16:03:44', '16:30:48', 631, 13543); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:03:34', '16:03:43', '16:09:30', 627, 13544); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:05:04', '16:05:46', '16:11:12', 612, 13545); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:06:14', '16:09:33', '16:48:50', 627, 13546); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:06:32', '16:06:38', '16:27:52', 612, 13547); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:07:29', '16:07:31', '16:08:48', 612, 13548); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:07:42', '16:11:13', '16:19:27', 612, 13549); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:08:36', '16:08:48', '16:34:33', 612, 13550); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:10:38', '16:10:45', '16:27:08', 627, 13551); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:11:15', '16:11:16', '16:13:31', 631, 13552); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:12:09', '16:14:13', '16:25:23', 627, 13553); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:12:12', '16:12:40', '16:27:33', 631, 13554); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:12:30', '16:13:28', '16:43:26', 631, 13555); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:12:49', '16:13:32', '16:24:50', 631, 13556); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:14:39', '16:25:24', '16:46:03', 627, 13557); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:17:41', '16:19:27', '17:33:21', 612, 13558); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:19:06', '16:19:22', '17:29:23', 627, 13559); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:19:50', '16:24:50', '16:46:10', 631, 13560); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:21:13', '16:27:33', '16:47:01', 631, 13561); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:22:28', '16:25:40', '16:33:00', 627, 13562); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:22:49', '16:30:49', '16:50:35', 631, 13563); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:24:17', '16:24:24', '16:32:26', 612, 13564); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:24:41', '16:33:00', '16:42:39', 627, 13565); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:26:36', '16:27:09', '16:37:20', 627, 13566); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:27:10', '16:27:52', '16:41:25', 612, 13567); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:27:12', '16:36:24', '16:47:23', 627, 13568); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:28:45', '16:37:03', '17:54:00', 627, 13569); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:31:54', '16:32:44', '18:01:36', 627, 13570); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:32:42', '16:32:47', '17:03:22', 612, 13571); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:32:49', '16:39:04', '17:04:49', 631, 13572); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:32:58', '16:37:20', '16:54:59', 627, 13573); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:34:05', '16:34:33', '16:47:28', 612, 13574); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:34:14', '16:43:27', '16:48:51', 631, 13575); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:34:16', '16:42:42', '16:51:55', 627, 13576); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:34:31', '16:47:28', '16:49:21', 612, 13577); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:36:53', '16:46:10', '17:26:33', 631, 13578); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:37:27', '16:49:21', '17:05:43', 612, 13579); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:37:55', '16:46:03', '17:08:43', 627, 13580); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:38:42', '16:47:23', '17:22:24', 627, 13581); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:40:22', '16:54:59', '17:02:01', 627, 13582); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:41:11', '16:41:26', '17:00:23', 612, 13583); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:42:26', '16:48:52', '16:57:53', 631, 13584); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:44:08', '16:44:22', '16:48:56', 631, 13585); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:45:44', '16:47:01', '17:07:31', 631, 13586); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:46:16', '16:51:29', '17:19:51', 631, 13587); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:46:19', '17:01:06', '18:03:19', 612, 13588); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:46:43', '17:01:50', '17:08:32', 627, 13589); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:50:57', '16:57:54', '17:07:37', 631, 13590); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '16:51:17', '17:03:22', '17:33:52', 612, 13591); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:00:44', '17:02:01', '17:15:41', 627, 13592); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:01:10', '17:08:43', '17:22:26', 627, 13593); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:01:40', '17:05:01', '17:50:01', 612, 13594); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:03:34', '17:04:49', '17:27:23', 631, 13595); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:04:00', '17:07:31', '18:27:21', 631, 13596); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:04:28', '17:07:37', '17:25:03', 631, 13597); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:05:36', '17:05:43', '17:30:04', 612, 13598); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:08:04', '17:08:11', '17:29:33', 627, 13599); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:23:29', '17:25:03', '17:36:52', 631, 13600); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:24:05', '17:26:33', '18:27:21', 631, 13601); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:24:22', '17:26:56', '17:28:33', 627, 13602); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:24:28', '17:27:23', '17:33:35', 631, 13603); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:24:50', '17:25:15', '18:12:26', 627, 13604); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:26:56', '17:33:36', '18:43:57', 631, 13605); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:27:10', '17:31:12', '17:38:22', 627, 13606); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:27:27', '17:36:52', '17:50:48', 631, 13607); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:27:53', '17:29:24', '18:05:05', 627, 13608); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:29:55', '17:30:04', '17:33:15', 612, 13609); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:32:49', '17:33:21', '17:56:51', 612, 13610); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:33:47', '17:33:51', '17:40:38', 612, 13611); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:36:54', '17:37:05', '17:49:39', 612, 13612); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:38:05', '17:38:22', '18:00:20', 627, 13613); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:39:36', '17:40:38', '18:07:10', 612, 13614); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:44:07', '17:46:03', '17:50:36', 631, 13615); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:44:56', '17:50:36', '17:59:02', 631, 13616); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:46:53', '17:50:48', '18:10:18', 631, 13617); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:48:59', '17:50:50', '18:05:43', 627, 13618); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:49:03', '17:58:07', '19:39:01', 631, 13619); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:49:38', '17:54:00', '18:15:44', 627, 13620); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:49:51', '17:50:02', '20:34:52', 612, 13621); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:50:07', '17:59:03', '18:08:56', 631, 13622); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:50:11', '17:50:15', '18:12:27', 612, 13623); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:53:43', '17:58:25', '18:15:16', 612, 13624); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:59:56', '18:07:10', '18:16:27', 612, 13625); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '17:59:57', '18:00:22', '18:18:53', 627, 13626); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:01:01', '18:03:19', '18:35:30', 612, 13627); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:04:39', '18:08:56', '18:14:13', 631, 13628); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:04:51', '18:05:05', '19:59:12', 627, 13629); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:05:41', '18:12:27', '18:30:23', 627, 13630); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:06:35', '18:10:19', '18:30:56', 631, 13631); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:10:03', '18:10:39', '18:20:13', 627, 13632); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:12:22', '18:12:28', '19:16:49', 612, 13633); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:12:56', '18:15:44', '18:31:43', 627, 13634); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:14:41', '18:15:17', '18:32:41', 612, 13635); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:15:15', '18:16:27', '18:31:10', 612, 13636); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:16:15', '18:18:15', '18:32:42', 627, 13637); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:17:14', '18:18:53', '18:55:16', 627, 13638); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:20:32', '18:22:27', '18:37:24', 627, 13639); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:20:53', '18:28:21', '18:29:22', 627, 13640); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:21:55', '18:29:22', '18:32:10', 627, 13641); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:23:01', '18:30:24', '18:36:18', 627, 13642); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:24:29', '18:26:24', '18:28:21', 627, 13643); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:26:38', '18:27:21', '18:47:32', 631, 13644); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:29:04', '18:30:56', '20:35:46', 631, 13645); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:31:04', '18:31:10', '18:55:39', 612, 13646); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:32:22', '18:36:19', '18:50:22', 627, 13647); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:32:50', '18:32:50', '18:51:15', 612, 13648); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:34:03', '18:50:22', '19:14:46', 627, 13649); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:34:41', '18:37:25', '18:42:26', 627, 13650); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:35:01', '18:51:21', '18:56:15', 627, 13651); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:35:37', '18:35:38', '18:55:49', 612, 13652); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:37:08', '18:55:41', '19:04:47', 627, 13653); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:37:29', '18:56:16', '19:30:19', 627, 13654); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:37:57', '18:42:27', '18:51:21', 627, 13655); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:38:13', '19:04:47', '19:27:05', 627, 13656); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:39:12', '18:43:57', '20:33:48', 631, 13657); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:41:15', '19:10:03', '19:33:39', 627, 13658); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:43:51', '19:14:46', '19:19:39', 627, 13659); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:46:45', '18:47:32', '19:02:15', 631, 13660); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:50:49', '18:51:15', '19:19:00', 612, 13661); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:51:53', '19:25:48', '19:28:32', 627, 13662); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:52:37', '18:55:40', '19:00:08', 612, 13663); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:54:38', '19:28:32', '19:48:24', 627, 13664); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:54:45', '18:55:49', '20:14:37', 612, 13665); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:55:20', '18:59:49', '19:09:54', 631, 13666); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:55:21', '19:19:39', '19:28:46', 627, 13667); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:55:29', '19:00:09', '19:16:45', 612, 13668); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '18:59:39', '19:30:19', '19:31:21', 627, 13669); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:02:31', '19:03:09', '19:27:45', 631, 13670); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:09:46', '19:09:54', '19:46:46', 631, 13671); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:10:45', '19:27:51', '19:33:27', 627, 13672); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:16:57', '19:17:00', '19:20:58', 612, 13673); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:19:08', '19:19:11', '19:50:03', 612, 13674); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:19:52', '19:19:55', '19:27:05', 612, 13675); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:20:06', '19:31:21', '19:38:44', 627, 13676); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:21:23', '19:28:47', '19:31:45', 627, 13677); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:21:27', '19:21:30', '20:17:45', 612, 13678); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:22:55', '19:31:45', '19:47:04', 627, 13679); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:26:48', '19:27:05', '19:50:04', 612, 13680); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:27:31', '19:27:45', '19:37:45', 631, 13681); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:30:36', '19:37:45', '21:03:04', 631, 13682); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:33:02', '19:33:27', '19:45:02', 627, 13683); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:34:39', '19:45:03', '20:06:00', 627, 13684); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:38:02', '19:38:44', '19:51:36', 627, 13685); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:38:42', '19:47:05', '19:51:28', 627, 13686); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:46:35', '19:46:46', '21:01:24', 631, 13687); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:49:53', '19:50:03', '20:40:37', 612, 13688); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '19:56:13', '19:56:15', '20:14:36', 612, 13689); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '20:13:52', '20:14:37', '20:46:40', 612, 13690); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '20:14:32', '20:14:36', '20:30:23', 612, 13691); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '20:17:00', '20:17:46', '20:54:31', 612, 13692); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '20:23:55', '20:24:00', '20:25:02', 627, 13693); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '20:24:13', '20:25:03', '20:36:00', 627, 13694); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '20:30:23', '20:30:24', '20:57:47', 612, 13695); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '20:34:04', '20:35:06', '20:50:43', 627, 13696); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '20:34:23', '20:36:01', '20:51:52', 627, 13697); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-08', '20:46:27', '20:46:40', '20:56:22', 612, 13698); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:01:07', '09:01:58', '09:11:44', 631, 13699); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:02:25', '09:04:10', '09:31:14', 612, 13700); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:02:57', '09:03:43', '09:20:48', 631, 13701); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:03:47', '09:11:44', '09:22:38', 631, 13702); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:09:21', '09:15:41', '09:43:05', 631, 13703); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:14:02', '09:14:04', '09:59:25', 612, 13704); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:14:47', '09:20:48', '10:29:17', 631, 13705); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:19:23', '09:22:06', '09:42:04', 627, 13706); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:19:40', '09:22:19', '10:04:04', 612, 13707); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:21:38', '09:28:53', '09:31:47', 627, 13708); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:21:48', '09:22:39', '09:45:31', 631, 13709); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:30:26', '09:32:14', '09:43:21', 631, 13710); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:30:55', '09:31:14', '10:04:07', 612, 13711); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:34:41', '09:34:55', '10:16:31', 612, 13712); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:36:07', '09:36:15', '09:43:26', 627, 13713); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:41:58', '09:43:05', '10:30:02', 631, 13714); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:42:58', '09:45:32', '10:04:49', 631, 13715); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:43:45', '09:52:30', '18:24:09', 631, 13716); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:46:48', '09:46:57', '09:55:30', 627, 13717); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:51:00', '09:55:31', '10:15:19', 627, 13718); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:55:04', '09:58:19', '10:44:04', 631, 13719); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:57:33', '09:59:26', '10:47:11', 612, 13720); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '09:59:46', '09:59:56', '10:38:23', 627, 13721); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:00:02', '10:03:44', '10:34:51', 627, 13722); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:02:44', '10:04:50', '11:12:47', 631, 13723); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:02:45', '10:02:53', '11:10:15', 627, 13724); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:04:17', '10:04:17', '10:50:01', 612, 13725); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:11:03', '10:11:04', '10:47:04', 612, 13726); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:16:07', '10:16:10', '10:19:53', 627, 13727); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:22:23', '10:22:50', '10:35:17', 627, 13728); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:25:30', '10:29:17', '11:03:10', 631, 13729); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:28:52', '10:28:57', '10:35:13', 627, 13730); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:29:06', '10:30:02', '10:41:50', 631, 13731); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:32:38', '10:34:51', '11:51:52', 627, 13732); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:41:26', '10:41:51', '11:03:42', 631, 13733); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:41:48', '10:44:04', '11:02:52', 631, 13734); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:42:16', '10:42:18', '11:37:48', 612, 13735); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:43:26', '10:44:57', '10:50:54', 627, 13736); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:46:17', '10:46:35', '12:47:08', 631, 13737); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:46:20', '10:50:54', '11:39:14', 627, 13738); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:47:15', '10:47:16', '11:24:21', 612, 13739); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:51:38', '10:51:42', '11:48:59', 612, 13740); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:52:12', '10:52:46', '11:06:10', 627, 13741); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:52:24', '11:10:15', '11:19:49', 627, 13742); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:56:03', '10:56:05', '11:14:09', 627, 13743); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:56:31', '10:56:33', '11:27:49', 612, 13744); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:56:49', '10:56:56', '11:15:01', 612, 13745); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '10:59:28', '10:59:28', '12:09:00', 612, 13746); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:01:32', '11:02:53', '11:17:17', 631, 13747); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:02:05', '11:02:23', '11:22:46', 627, 13748); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:02:13', '11:06:11', '11:40:42', 627, 13749); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:02:36', '11:03:00', '11:18:15', 612, 13750); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:02:38', '11:03:11', '11:24:43', 631, 13751); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:03:05', '11:03:42', '11:07:36', 631, 13752); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:03:36', '11:07:37', '11:09:05', 631, 13753); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:06:13', '11:09:05', '11:23:14', 631, 13754); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:07:28', '11:18:16', '11:25:51', 612, 13755); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:09:45', '11:12:37', '11:22:22', 631, 13756); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:11:01', '11:12:48', '12:26:26', 631, 13757); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:11:23', '11:14:10', '11:31:16', 627, 13758); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:13:50', '11:17:17', '11:51:40', 631, 13759); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:15:07', '11:15:11', '11:35:33', 612, 13760); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:18:12', '11:19:49', '13:49:22', 627, 13761); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:19:13', '11:23:14', '11:31:33', 631, 13762); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:20:09', '11:25:51', '12:30:44', 612, 13763); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:20:14', '11:20:23', '11:24:07', 627, 13764); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:24:05', '11:24:21', '11:26:46', 612, 13765); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:25:52', '11:25:58', '11:30:51', 627, 13766); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:26:32', '11:31:33', '12:00:18', 631, 13767); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:26:43', '11:26:47', '12:32:12', 612, 13768); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:27:38', '11:27:50', '11:43:41', 612, 13769); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:28:58', '11:29:22', '11:36:27', 627, 13770); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:29:18', '11:31:16', '12:07:27', 627, 13771); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:33:14', '11:35:46', '11:39:04', 631, 13772); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:34:52', '11:39:05', '12:15:32', 631, 13773); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:34:57', '11:34:58', '11:46:48', 627, 13774); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:35:11', '11:35:33', '12:33:40', 612, 13775); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:37:30', '11:37:48', '11:53:19', 612, 13776); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:42:35', '11:43:41', '12:04:09', 612, 13777); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:42:52', '11:43:12', '11:52:45', 627, 13778); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:44:48', '11:48:59', '12:43:56', 612, 13779); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:46:28', '11:53:20', '12:21:55', 612, 13780); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:50:53', '11:51:40', '11:58:36', 631, 13781); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:51:23', '11:51:40', '12:01:44', 627, 13782); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:54:56', '11:55:03', '12:02:45', 627, 13783); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:56:35', '12:01:45', '12:12:26', 627, 13784); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '11:57:25', '11:58:36', '12:12:28', 631, 13785); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:00:39', '12:02:46', '12:08:27', 627, 13786); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:02:11', '12:04:09', '12:15:20', 612, 13787); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:03:14', '12:03:19', '12:51:34', 631, 13788); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:05:00', '12:05:10', '12:35:24', 631, 13789); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:06:36', '12:07:28', '12:43:33', 627, 13790); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:07:05', '12:09:01', '14:05:00', 612, 13791); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:11:41', '12:12:28', '12:43:15', 631, 13792); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:14:26', '12:15:32', '12:36:53', 631, 13793); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:14:34', '12:15:20', '13:24:47', 612, 13794); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:15:14', '12:21:56', '12:28:50', 612, 13795); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:15:43', '12:15:48', '12:22:31', 627, 13796); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:22:36', '12:22:38', '12:40:02', 627, 13797); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:26:06', '12:26:26', '12:55:05', 631, 13798); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:27:32', '12:28:50', '12:50:04', 612, 13799); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:28:56', '12:29:31', '13:15:12', 627, 13800); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:29:20', '12:34:27', '13:04:15', 627, 13801); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:29:44', '12:30:44', '13:01:44', 612, 13802); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:30:47', '12:31:25', '12:35:38', 631, 13803); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:31:44', '12:34:50', '12:52:13', 627, 13804); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:32:08', '12:32:12', '12:41:50', 612, 13805); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:32:29', '12:33:40', '13:01:25', 612, 13806); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:34:17', '12:36:53', '13:33:45', 631, 13807); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:37:00', '12:37:02', '12:52:13', 627, 13808); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:38:00', '12:40:02', '13:24:42', 627, 13809); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:39:27', '12:41:50', '12:54:40', 612, 13810); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:42:12', '12:43:15', '12:49:32', 631, 13811); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:43:50', '12:43:56', '14:34:57', 612, 13812); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:45:11', '12:52:13', '13:08:05', 627, 13813); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:45:56', '12:53:29', '13:13:58', 627, 13814); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:46:18', '12:49:32', '13:06:52', 631, 13815); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:47:32', '12:50:04', '12:56:56', 612, 13816); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:49:06', '12:51:34', '14:53:34', 631, 13817); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:54:27', '12:54:41', '13:16:39', 612, 13818); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:54:35', '12:55:05', '13:04:36', 631, 13819); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:55:09', '12:55:31', '13:03:26', 612, 13820); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:56:14', '12:56:56', '13:26:59', 612, 13821); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:56:40', '13:00:04', '13:28:40', 631, 13822); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:58:42', '13:04:15', '13:10:44', 627, 13823); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '12:59:04', '13:08:08', '13:31:01', 627, 13824); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:00:32', '13:01:22', '14:45:34', 631, 13825); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:00:54', '13:04:37', '13:26:35', 631, 13826); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:01:37', '13:01:44', '13:31:06', 612, 13827); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:02:47', '13:03:06', '13:13:14', 612, 13828); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:03:15', '13:03:27', '13:21:33', 612, 13829); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:06:10', '13:06:53', '13:20:11', 631, 13830); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:13:19', '13:13:25', '14:07:37', 612, 13831); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:13:19', '13:13:31', '13:38:53', 627, 13832); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:16:03', '13:16:40', '13:28:48', 612, 13833); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:17:24', '13:17:41', '13:33:00', 627, 13834); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:18:17', '13:18:25', '13:31:40', 627, 13835); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:19:35', '13:20:11', '13:47:59', 631, 13836); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:20:36', '13:31:06', '14:29:42', 612, 13837); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:20:58', '13:21:55', '14:07:56', 631, 13838); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:21:21', '13:21:34', '13:31:52', 612, 13839); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:22:05', '13:31:40', '13:56:52', 627, 13840); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:22:41', '13:23:02', '13:31:05', 631, 13841); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:23:09', '13:28:40', '13:41:51', 631, 13842); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:24:32', '13:24:48', '13:50:39', 612, 13843); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:26:18', '13:26:35', '14:09:15', 631, 13844); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:26:48', '13:26:59', '13:54:35', 612, 13845); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:28:52', '13:28:59', '13:42:52', 612, 13846); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:31:41', '13:31:52', '14:00:00', 612, 13847); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:32:06', '13:32:10', '13:38:20', 612, 13848); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:32:41', '13:32:50', '13:43:51', 627, 13849); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:35:24', '13:35:32', '13:53:58', 627, 13850); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:37:18', '13:41:51', '13:53:17', 631, 13851); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:40:45', '13:40:52', '14:00:41', 612, 13852); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:42:45', '13:42:53', '13:47:58', 612, 13853); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:46:40', '13:48:00', '14:23:56', 631, 13854); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:47:35', '13:49:23', '14:16:39', 627, 13855); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:48:03', '13:48:24', '14:02:03', 612, 13856); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:49:36', '13:53:17', '14:53:22', 631, 13857); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:50:19', '13:50:39', '13:57:30', 612, 13858); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:50:53', '13:54:36', '14:29:36', 612, 13859); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:51:07', '13:51:11', '13:54:02', 627, 13860); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:53:49', '13:53:52', '14:00:52', 627, 13861); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:55:24', '13:56:53', '17:00:57', 627, 13862); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:56:08', '13:56:10', '13:57:32', 627, 13863); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:56:09', '13:57:05', '14:47:50', 631, 13864); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:56:41', '13:57:30', '14:21:20', 612, 13865); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '13:57:19', '13:57:23', '14:02:48', 627, 13866); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:00:11', '14:00:12', '14:36:26', 612, 13867); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:01:58', '14:02:04', '14:06:35', 612, 13868); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:02:23', '14:07:56', '14:53:05', 631, 13869); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:03:08', '14:03:09', '14:08:48', 627, 13870); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:04:48', '14:04:55', '14:08:30', 627, 13871); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:04:53', '14:05:00', '15:05:41', 612, 13872); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:06:43', '14:06:46', '14:26:25', 612, 13873); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:07:10', '14:07:38', '14:38:36', 612, 13874); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:08:29', '14:09:15', '14:43:08', 631, 13875); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:09:00', '14:09:09', '14:19:25', 627, 13876); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:11:03', '14:11:22', '14:44:30', 627, 13877); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:14:56', '14:15:04', '14:51:40', 627, 13878); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:16:09', '14:16:39', '14:32:13', 627, 13879); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:16:38', '14:16:47', '15:09:38', 627, 13880); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:17:20', '14:21:20', '14:27:17', 612, 13881); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:21:10', '14:26:25', '14:38:39', 612, 13882); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:21:36', '14:27:17', '15:05:41', 612, 13883); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:22:23', '14:29:37', '14:44:19', 612, 13884); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:22:39', '14:23:57', '15:14:58', 631, 13885); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:27:25', '14:29:42', '15:05:41', 612, 13886); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:28:23', '14:28:27', '14:47:26', 627, 13887); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:28:46', '14:38:36', '15:03:39', 612, 13888); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:31:46', '14:32:13', '15:26:21', 627, 13889); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:36:15', '14:36:26', '15:05:41', 612, 13890); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:40:28', '14:40:36', '14:47:34', 627, 13891); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:40:45', '14:44:19', '15:05:41', 612, 13892); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:41:10', '14:41:15', '14:43:50', 612, 13893); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:41:16', '14:44:30', '14:58:17', 627, 13894); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:41:57', '14:43:08', '15:34:13', 631, 13895); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:42:46', '14:45:35', '15:15:33', 631, 13896); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:43:38', '14:43:51', '14:51:20', 612, 13897); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:46:57', '14:47:27', '15:06:42', 627, 13898); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:48:04', '14:48:05', '15:07:28', 627, 13899); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:48:24', '14:48:32', '14:56:07', 627, 13900); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:48:40', '14:48:44', '14:57:33', 627, 13901); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:50:52', '14:51:21', '14:57:45', 612, 13902); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:52:04', '14:53:06', '15:25:16', 631, 13903); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:52:41', '14:54:35', '21:03:21', 631, 13904); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:52:50', '14:53:22', '15:30:05', 631, 13905); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:53:16', '14:57:46', '15:05:41', 612, 13906); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:53:55', '15:03:45', '15:05:41', 612, 13907); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:56:49', '14:58:17', '15:03:01', 627, 13908); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:57:20', '14:57:28', '15:10:36', 627, 13909); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '14:57:59', '14:58:25', '15:43:44', 627, 13910); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:01:12', '15:01:16', '15:44:15', 627, 13911); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:01:13', '15:11:05', '16:19:04', 612, 13912); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:05:15', '15:12:18', '15:13:46', 612, 13913); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:07:10', '15:07:28', '15:31:39', 627, 13914); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:09:39', '15:10:06', '16:19:50', 627, 13915); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:11:24', '15:11:29', '15:26:53', 627, 13916); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:11:29', '15:12:40', '15:20:48', 612, 13917); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:11:37', '15:13:46', '15:33:53', 612, 13918); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:11:43', '15:20:48', '15:36:32', 612, 13919); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:11:46', '15:11:51', '16:06:15', 631, 13920); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:12:09', '15:13:22', '15:43:07', 627, 13921); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:13:52', '15:14:58', '15:19:54', 631, 13922); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:14:23', '15:14:36', '15:21:02', 612, 13923); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:14:25', '15:15:33', '15:26:29', 631, 13924); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:16:32', '15:19:54', '16:15:01', 631, 13925); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:19:40', '15:21:02', '15:30:24', 612, 13926); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:21:46', '15:25:17', '16:58:23', 631, 13927); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:24:00', '15:26:43', '16:28:57', 612, 13928); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:25:04', '15:26:21', '15:46:39', 627, 13929); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:28:37', '15:30:05', '16:31:18', 631, 13930); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:28:45', '15:32:51', '15:49:18', 612, 13931); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:30:06', '15:30:24', '16:04:45', 612, 13932); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:32:36', '15:33:53', '15:46:22', 612, 13933); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:34:09', '15:34:13', '15:40:46', 631, 13934); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:34:37', '15:46:40', '16:12:22', 627, 13935); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:35:06', '15:39:58', '15:43:17', 627, 13936); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:35:47', '15:36:32', '16:04:16', 612, 13937); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:36:16', '15:43:17', '15:45:48', 627, 13938); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:39:35', '15:40:46', '16:08:35', 631, 13939); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:39:41', '15:43:07', '16:17:07', 627, 13940); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:43:43', '15:43:53', '17:10:20', 627, 13941); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:46:10', '15:46:22', '16:24:00', 612, 13942); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:47:39', '15:47:46', '15:54:22', 627, 13943); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:48:26', '15:49:19', '16:27:15', 612, 13944); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:48:59', '16:04:45', '16:25:13', 612, 13945); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:52:53', '15:52:56', '15:57:04', 631, 13946); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:53:44', '15:53:49', '15:59:19', 627, 13947); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '15:56:23', '15:56:32', '16:10:05', 627, 13948); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:03:54', '16:04:00', '16:06:20', 627, 13949); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:04:21', '16:04:27', '16:24:30', 612, 13950); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:05:01', '16:05:07', '16:08:16', 627, 13951); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:05:23', '16:06:15', '16:31:50', 631, 13952); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:08:09', '16:08:36', '16:55:08', 631, 13953); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:09:45', '16:09:57', '16:14:58', 627, 13954); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:10:09', '16:13:39', '16:27:12', 627, 13955); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:10:37', '16:10:38', '16:50:16', 631, 13956); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:11:35', '16:12:23', '17:21:43', 627, 13957); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:13:11', '16:14:58', '16:29:50', 627, 13958); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:14:52', '16:15:01', '16:21:00', 631, 13959); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:16:24', '16:16:25', '16:42:22', 627, 13960); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:16:41', '16:17:08', '16:27:43', 627, 13961); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:17:03', '16:17:48', '16:20:39', 627, 13962); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:17:32', '16:25:13', '16:54:29', 612, 13963); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:17:40', '16:18:12', '16:38:35', 612, 13964); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:17:49', '16:19:57', '16:39:13', 631, 13965); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:17:58', '16:19:05', '16:56:07', 612, 13966); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:19:39', '16:21:01', '16:33:20', 631, 13967); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:22:00', '16:25:05', '17:02:12', 631, 13968); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:23:43', '16:24:00', '16:30:20', 612, 13969); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:24:22', '16:24:30', '16:54:01', 612, 13970); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:24:37', '16:27:12', '18:41:41', 627, 13971); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:27:05', '16:27:15', '16:45:17', 612, 13972); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:28:19', '16:30:21', '17:17:34', 612, 13973); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:28:39', '16:29:55', '16:37:39', 612, 13974); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:28:45', '16:31:50', '16:37:47', 631, 13975); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:30:40', '16:33:21', '17:09:46', 631, 13976); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:30:49', '16:31:18', '16:41:25', 631, 13977); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:31:58', '16:32:01', '16:49:25', 627, 13978); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:33:02', '16:37:39', '17:05:42', 612, 13979); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:35:34', '16:35:36', '16:49:32', 627, 13980); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:35:52', '16:45:56', '17:28:18', 612, 13981); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:36:18', '16:38:36', '16:53:39', 612, 13982); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:37:35', '16:37:47', '17:01:58', 631, 13983); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:38:15', '16:38:17', '16:45:22', 627, 13984); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:40:21', '16:53:40', '17:09:24', 612, 13985); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:40:31', '16:41:25', '17:41:14', 631, 13986); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:45:18', '16:49:25', '17:24:08', 627, 13987); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:46:30', '16:54:01', '17:08:38', 612, 13988); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:47:36', '16:56:08', '17:09:11', 612, 13989); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:49:35', '16:50:16', '17:05:46', 631, 13990); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:52:04', '16:52:14', '17:02:37', 627, 13991); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:53:04', '16:53:14', '17:06:11', 627, 13992); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:53:38', '16:54:30', '17:47:43', 612, 13993); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:54:03', '16:55:03', '17:23:51', 631, 13994); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:54:15', '17:05:43', '17:51:35', 612, 13995); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:54:46', '16:55:08', '17:01:07', 631, 13996); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:56:33', '17:08:38', '17:21:52', 612, 13997); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:57:45', '17:01:07', '17:20:44', 631, 13998); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:58:01', '17:01:58', '17:13:00', 631, 13999); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:58:54', '17:02:12', '17:33:16', 631, 14000); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:59:08', '17:09:11', '20:49:44', 612, 14001); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '16:59:48', '17:09:24', '17:26:52', 612, 14002); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:02:44', '17:09:46', '17:47:25', 631, 14003); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:05:57', '17:05:59', '17:40:07', 627, 14004); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:06:29', '17:06:31', '21:00:15', 627, 14005); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:08:35', '17:08:36', '17:24:36', 627, 14006); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:11:09', '17:11:12', '17:17:05', 627, 14007); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:11:47', '17:13:00', '17:32:09', 631, 14008); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:14:23', '17:17:35', '17:42:56', 612, 14009); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:15:08', '17:17:06', '17:27:11', 627, 14010); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:16:11', '17:20:44', '17:31:17', 631, 14011); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:19:54', '17:21:43', '18:51:10', 627, 14012); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:20:34', '17:21:52', '17:26:09', 612, 14013); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:23:54', '17:24:36', '17:41:44', 627, 14014); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:25:24', '17:31:18', '17:57:11', 631, 14015); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:26:00', '17:26:10', '17:54:39', 612, 14016); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:26:30', '17:26:53', '17:54:15', 612, 14017); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:27:58', '17:28:18', '18:28:14', 612, 14018); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:29:10', '17:32:09', '19:14:54', 631, 14019); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:33:18', '17:33:23', '18:32:36', 631, 14020); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:33:46', '17:33:55', '18:11:51', 631, 14021); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:34:30', '17:34:32', '17:39:01', 627, 14022); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:38:01', '17:38:05', '18:00:41', 627, 14023); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:42:40', '17:43:00', '18:05:49', 612, 14024); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:45:09', '17:47:26', '18:12:07', 631, 14025); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:46:42', '17:51:35', '18:07:28', 612, 14026); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:50:23', '17:57:12', '18:33:38', 631, 14027); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:51:29', '17:54:40', '18:13:24', 612, 14028); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:51:42', '17:54:16', '18:14:21', 612, 14029); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:54:26', '17:54:32', '18:09:12', 627, 14030); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '17:56:36', '17:56:39', '18:06:52', 627, 14031); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:05:05', '18:05:50', '18:21:31', 612, 14032); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:06:37', '18:06:52', '18:12:29', 627, 14033); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:07:23', '18:07:29', '18:23:41', 612, 14034); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:08:45', '18:08:49', '18:18:57', 627, 14035); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:08:53', '18:12:08', '18:31:42', 631, 14036); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:09:54', '18:24:10', '21:04:28', 631, 14037); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:13:16', '18:13:24', '18:20:31', 612, 14038); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:14:16', '18:14:21', '18:17:07', 612, 14039); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:15:24', '18:19:50', '18:24:34', 631, 14040); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:16:33', '18:17:07', '18:52:57', 612, 14041); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:18:06', '18:18:48', '19:32:57', 627, 14042); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:19:19', '18:19:20', '18:23:44', 627, 14043); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:20:25', '18:20:34', '18:33:32', 612, 14044); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:21:08', '18:21:32', '18:50:23', 612, 14045); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:22:51', '18:25:00', '18:38:53', 631, 14046); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:23:28', '18:23:41', '19:09:38', 612, 14047); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:25:34', '18:27:02', '18:47:05', 631, 14048); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:27:35', '18:28:14', '19:00:16', 612, 14049); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:27:56', '18:33:32', '18:55:51', 612, 14050); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:29:56', '18:31:42', '19:10:16', 631, 14051); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:31:51', '18:39:04', '18:43:47', 631, 14052); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:34:36', '18:50:23', '19:06:50', 612, 14053); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:35:55', '18:43:47', '18:53:39', 631, 14054); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:40:29', '18:41:41', '18:48:18', 627, 14055); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:41:37', '18:41:43', '18:59:30', 627, 14056); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:42:00', '18:42:06', '19:03:25', 627, 14057); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:42:48', '18:42:55', '18:50:27', 627, 14058); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:43:18', '18:52:57', '19:17:09', 612, 14059); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:45:39', '18:47:05', '19:03:18', 631, 14060); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:48:09', '18:48:38', '18:56:18', 627, 14061); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:48:37', '18:50:27', '19:24:25', 627, 14062); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:50:42', '18:51:11', '19:57:28', 627, 14063); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:51:31', '18:56:47', '19:11:03', 612, 14064); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:51:47', '18:52:17', '19:14:37', 627, 14065); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:53:01', '18:56:18', '19:22:31', 627, 14066); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:53:07', '18:53:39', '19:47:16', 631, 14067); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:59:39', '19:04:49', '19:14:58', 631, 14068); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '18:59:56', '19:00:17', '20:04:23', 612, 14069); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:03:08', '19:03:25', '19:15:53', 627, 14070); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:03:33', '19:10:17', '19:14:13', 631, 14071); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:04:55', '19:14:38', '19:23:17', 627, 14072); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:06:04', '19:09:38', '19:46:35', 612, 14073); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:07:08', '19:15:53', '19:49:58', 627, 14074); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:10:09', '19:14:14', '19:25:58', 631, 14075); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:10:53', '19:11:03', '19:22:21', 612, 14076); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:15:34', '19:20:28', '19:37:25', 631, 14077); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:16:17', '19:17:09', '21:00:44', 612, 14078); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:22:07', '19:22:21', '19:48:50', 612, 14079); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:22:19', '19:23:17', '19:49:32', 627, 14080); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:22:54', '19:24:25', '19:56:26', 627, 14081); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:23:12', '19:29:53', '19:51:34', 627, 14082); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:23:35', '19:32:58', '20:55:55', 627, 14083); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:24:06', '19:49:32', '20:00:15', 627, 14084); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:24:44', '19:25:58', '19:30:50', 631, 14085); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:25:00', '19:28:54', '19:44:13', 631, 14086); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:25:41', '19:30:50', '19:39:15', 631, 14087); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:29:46', '19:37:26', '19:41:17', 631, 14088); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:31:38', '19:39:15', '20:27:09', 631, 14089); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:31:58', '19:44:13', '20:01:34', 631, 14090); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:39:26', '19:47:17', '19:57:17', 631, 14091); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:46:30', '19:46:35', '20:57:37', 612, 14092); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:48:36', '19:48:50', '20:58:52', 612, 14093); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '19:50:16', '19:51:34', '20:43:47', 627, 14094); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '20:00:58', '20:01:34', '21:09:09', 631, 14095); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '20:02:21', '20:04:23', '20:55:54', 612, 14096); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '20:06:53', '20:11:36', '20:31:35', 631, 14097); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '20:24:33', '20:27:10', '21:02:28', 631, 14098); INSERT INTO queue_log (data, start_time_of_wait, end_time_of_wait, end_time_of_service, branches_id, id) VALUES ('2020-06-09', '20:25:36', '20:31:35', '21:00:40', 631, 14099); commit;