forked from cedrickjames/helpdesk-production
-
Notifications
You must be signed in to change notification settings - Fork 1
/
helpdesk_db.sql
5009 lines (4885 loc) · 737 KB
/
helpdesk_db.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.7.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: May 03, 2024 at 03:58 AM
-- Server version: 10.1.26-MariaDB
-- PHP Version: 7.1.9
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `helpdesk_db`
--
-- --------------------------------------------------------
--
-- Table structure for table `categories`
--
CREATE TABLE `categories` (
`id` int(10) NOT NULL,
`c_name` varchar(60) NOT NULL,
`level` varchar(30) DEFAULT NULL,
`hours` float(5,2) NOT NULL,
`days` decimal(11,0) NOT NULL,
`req_type` varchar(20) DEFAULT NULL COMMENT 'TS- technical support; JO - Jobs Order; SR - System Request'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `categories`
--
INSERT INTO `categories` (`id`, `c_name`, `level`, `hours`, `days`, `req_type`) VALUES
(1, 'Security Issue', 'Critical', 0.17, '2', 'TS'),
(2, 'NDR / EDR Detection', 'Critical', 0.33, '2', 'TS'),
(9, 'Network Connectivity', 'High Priority', 4.00, '5', 'TS'),
(10, 'Server Issues', 'High Priority', 4.00, '5', 'TS'),
(11, 'System Issues', 'High Priority', 4.00, '5', 'TS'),
(12, 'Data Issues (Loss, Corrupted)', 'High Priority', 4.00, '5', 'TS'),
(13, 'Account Issues', 'High Priority', 4.00, '5', 'TS'),
(14, 'Hardware Issues', 'Medium Priority', 8.00, '5', 'TS'),
(15, 'Software Issues', 'Medium Priority', 8.00, '5', 'TS'),
(16, 'Email Support', 'Medium Priority', 8.00, '5', 'TS'),
(17, 'Downloading Video', 'Low Priority', 48.00, '5', 'TS'),
(18, 'Setup Audio / Video', 'Low Priority', 48.00, '5', 'TS'),
(19, 'Computer Specs Recommendation', 'Low Priority', 48.00, '5', 'TS'),
(20, 'Purchase of Computer', NULL, 40.00, '10', 'JO'),
(21, 'Add/Delete Email Account', NULL, 40.00, '10', 'JO'),
(22, 'Add/Delete System Account', NULL, 40.00, '10', 'JO'),
(23, 'Transfer of Computer', NULL, 40.00, '10', 'JO'),
(24, 'Additional and Network Relayout', NULL, 40.00, '10', 'JO'),
(25, 'Computer Disposal', NULL, 40.00, '10', 'JO'),
(26, 'Additional Printer/ Telephone', NULL, 40.00, '10', 'JO'),
(27, 'Others', NULL, 40.00, '10', 'JO'),
(28, 'System Modification', NULL, 40.00, '10', 'JO');
-- --------------------------------------------------------
--
-- Table structure for table `cctv`
--
CREATE TABLE `cctv` (
`id` int(100) NOT NULL,
`dvrNo` varchar(100) DEFAULT NULL,
`cameraNo` varchar(100) DEFAULT NULL,
`location` varchar(100) DEFAULT NULL,
`type` varchar(100) DEFAULT NULL,
`bldgAssigned` varchar(100) DEFAULT NULL,
`ipAddress` varchar(100) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `cctv`
--
INSERT INTO `cctv` (`id`, `dvrNo`, `cameraNo`, `location`, `type`, `bldgAssigned`, `ipAddress`) VALUES
(1, 'DVR1', 'CAM02', 'Canteen', 'IP CAM', 'GPI-5', '192.168.60.236'),
(2, 'DVR2', 'CAM03', 'Canteen', 'IP CAM', 'GPI-1', '192.168.60.234'),
(3, 'DVR2', 'CAM01', 'Loading / Unloading rea', 'BULLET CAMERA', 'GPI-1', 'None'),
(4, 'DVR2', 'CAM02', 'Packaging area', 'BULLET CAMERA', 'GPI-1', 'None'),
(5, 'DVR2', 'CAM03', 'ADMIN OFFICE', 'BULLET CAMERA', 'GPI-1', 'None'),
(6, 'DVR2', 'CAM04', 'Production Office', 'BULLET CAMERA', 'GPI-1', 'None'),
(7, 'DVR2', 'CAM05', 'Clinic Hallway', 'BULLET CAMERA', 'GPI-1', 'None'),
(8, 'DVR2', 'CAM06', 'CR Hallway', 'BULLET CAMERA', 'GPI-1', 'None'),
(9, 'DVR2', 'CAM07', 'Vault', 'BULLET CAMERA', 'GPI-1', 'None'),
(10, 'DVR3', 'CAM01', 'GLR assembly', 'PTZ CAM', 'GPI-1', '192.168.60.31'),
(11, 'DVR3', 'CAM02', 'GLR', 'PTZ CAM', 'GPI-1', '192.168.60.32'),
(12, 'DVR3', 'CAM03', 'GLR', 'PTZ CAM', 'GPI-1', '192.168.60.33'),
(13, 'DVR3', 'CAM04', 'SDRB ', 'PTZ CAM', 'GPI-1', '192.168.60.34'),
(14, 'DVR3', 'CAM05', 'Guard house back', 'IP CAM', 'GPI-1', '192.168.60.35'),
(15, 'DVR3', 'CAM06', 'Loading area', 'IP CAM', 'GPI-1', '192.168.60.36'),
(16, 'DVR3', 'CAM07', 'CR Hallway Packaging area', 'IP CAM', 'GPI-1', '192.168.60.37'),
(17, 'DVR4', 'CAM03', 'Guard house', 'BULLET CAMERA', 'GPI- 1', '192.168.38.102'),
(18, 'DVR5', 'CAM02', 'Production area', 'BULLET CAMERA', 'GPI-7', ''),
(19, 'DVR5', 'CAM03', 'Guard house', 'BULLET CAMERA', 'GPI-3', ''),
(20, 'DVR5', 'CAM04', 'Warehouse', 'BULLET CAMERA', 'GPI-3', ''),
(21, 'DVR6', 'CAM01', 'Guard House', 'BULLET CAMERA', 'GPI-5', ''),
(22, 'DVR6', 'CAM02', 'Packaging area', 'BULLET CAMERA', 'GPI-5', ''),
(23, 'DVR6', 'CAM03', 'Prod 1 SDRB', 'BULLET CAMERA', 'GPI-5', ''),
(24, 'DVR6', 'CAM04', 'Lobby', 'BULLET CAMERA', 'GPI-5', ''),
(25, 'DVR8', 'CAM01', 'Production 1 area', 'BULLET CAMERA', 'GPI-5', ''),
(26, 'DVR8', 'CAM02', 'Production 2', 'BULLET CAMERA', 'GPI-5', ''),
(27, 'DVR8', 'CAM03', 'SDRB production 1', 'BULLET CAMERA', 'GPI-5', ''),
(28, 'DVR9', 'CAM01', 'Loading area', 'BULLET CAMERA', 'GPI-5', ''),
(29, 'DVR9', 'CAM02', 'Parts Inspection Segregation Entrance', 'BULLET CAMERA', 'GPI-5', ''),
(30, 'DVR9', 'CAM03', 'Parts Inspection Office', 'BULLET CAMERA', 'GPI-5', ''),
(31, 'PC NVR', 'CAM01', 'Canteen', 'IP CAM', 'GPI-1', '172.22.38.101'),
(32, 'DVR11', 'CAM02', 'Guardhouse', 'IP CAM', 'GPI-1', '172.22.38.104'),
(33, 'PC NVR', 'CAM03', 'Lobby', 'IP CAM', 'GPI-1', '172.22.38.102'),
(34, 'DVR11', 'CAM04', 'Canteen hallway', 'IP CAM', 'GPI-1', '172.22.38.106'),
(35, 'DVR11', 'CAM05', 'Guardhouse', 'IP CAM', 'GPI-5', '172.22.38.105'),
(36, 'PC NVR', 'CAM06', 'Guardhouse', 'IP CAM', 'GPI-8', '172.22.38.107'),
(39, 'DVR11', 'CAM09', 'Production office', 'IP CAM', 'GPI-1', '172.22.38.100'),
(40, 'PC NVR', 'CAM10', 'Canteen back', 'IP CAM', 'GPI-5', '172.22.38.110'),
(41, 'PC NVR', 'CAM11', 'Parts Inspection back', 'IP CAM', 'GPI-5', '172.22.38.111'),
(42, 'PC NVR', 'CAM12', 'Loading & Unloading area', 'IP CAM', 'GPI-5', '172.22.38.103'),
(43, 'PC NVR', 'CAM13', 'Loading & Unloading area', 'IP CAM', 'GPI-1', '172.22.38.112'),
(44, 'DVR11', 'CAM14', 'SAITAMA LINE', 'IP CAM', 'GPI-5', '172.22.38.113'),
(45, 'DVR11', 'CAM15', 'RBG line', 'IP CAM', 'GPI-7', '172.22.38.114'),
(46, 'DVR11', 'CAM16', 'Guard house', 'IP CAM', 'GPI-7', '172.22.38.115'),
(47, 'DVR11', 'CAM01', '', 'IP CAM', 'GPI-9', '172.22.38.120'),
(48, 'DVR11', 'CAM02', '', 'IP CAM', 'GPI-9', '172.22.38.121'),
(49, 'DVR11', 'CAM03', '', 'IP CAM', 'GPI-9', '172.22.38.122'),
(50, 'DVR11', 'CAM04', '', 'IP CAM', 'GPI-9', '172.22.38.123'),
(51, 'DVR11', 'CAM05', '', 'IP CAM', 'GPI-9', '172.22.38.124'),
(52, 'DVR11', 'CAM06', '', 'IP CAM', 'GPI-9', '172.22.38.125'),
(53, 'DVR11', 'CAM07', 'ADMIN OFFICE', 'IP CAM', 'GPI-1', '172.22.38.126'),
(54, 'DVR11', 'CAM08', '', 'IP CAM', 'GPI-9', '172.22.38.127'),
(55, 'DVR11', 'CAM09', '', 'IP CAM', 'GPI-9', '172.22.38.128'),
(56, 'DVR11', 'CAM10', '', 'IP CAM', 'GPI-9', '172.22.38.129'),
(57, 'DVR11', 'CAM11', '', 'IP CAM', '', '172.22.38.130'),
(58, 'DVR11', 'CAM12', '', 'IP CAM', '', '172.22.38.131'),
(59, 'DVR11', 'CAM13', '', 'IP CAM', '', '172.22.38.132'),
(60, 'DVR11', 'CAM14', '', 'IP CAM', '', '172.22.38.133'),
(61, 'DVR11', 'CAM15', '', 'IP CAM', '', '172.22.38.134'),
(62, 'DVR11', 'CAM16', '', 'IP CAM', '', '172.22.38.135'),
(63, '', 'DVR1', 'GPI1', '', '', '192.168.5.34'),
(64, '', 'DVR2', 'GPI1', '', '', '192.168.5.44'),
(65, '', 'DVR3', 'GPI1', '', '', '192.168.60.31'),
(66, '', 'DVR4', 'GPI1', '', '', '192.168.60.69'),
(67, '', 'DVR5', 'GPI3', '', '', '192.168.5.43'),
(68, '', 'DVR6', 'GPI5', '', '', '169.254.39.122'),
(69, '', 'DVR8', 'GPI5', '', '', '192.168.60.88'),
(70, '', 'DVR9', 'GPI5', '', '', '172.22.38.10'),
(71, '', 'PC NVR', 'GPI1', '', '', '172.22.38.119'),
(72, '', 'DVR11', 'GPI1', '', '', '172.22.41.1'),
(101, 'NVR3', 'CAM01', 'Guard house', 'IP CAMERA', 'GPI-8', '172.24.33.109'),
(102, 'NVR3', 'CAM02', 'Locker Male', 'IP CAMERA', 'GPI-8', '172.24.33.114'),
(103, 'NVR3', 'CAM03', 'Locker Female', 'IP CAMERA', 'GPI-8', '172.24.33.166'),
(104, 'NVR3', 'CAM04', 'Server room', 'IP CAMERA', 'GPI-8', '172.24.33.159');
-- --------------------------------------------------------
--
-- Table structure for table `devicehistory`
--
CREATE TABLE `devicehistory` (
`id` int(10) NOT NULL,
`deviceId` varchar(20) DEFAULT NULL,
`field` varchar(30) DEFAULT NULL,
`fromThis` varchar(50) DEFAULT NULL,
`toThis` varchar(50) DEFAULT NULL,
`modifier` varchar(50) DEFAULT NULL,
`date` varchar(20) DEFAULT NULL,
`type` varchar(30) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Dumping data for table `devicehistory`
--
INSERT INTO `devicehistory` (`id`, `deviceId`, `field`, `fromThis`, `toThis`, `modifier`, `date`, `type`) VALUES
(22, '9', 'ipAddress', '192.168.5.108', 'Dynamic', 'SANDIGAN, JOHN SPENCER', 'May 16, 2023', 'computer'),
(23, '9', 'ipAddress', 'Dynamic', '192.168.5.108', 'SANDIGAN, JOHN SPENCER', 'May 16, 2023', 'computer'),
(24, '27', 'computerName', 'C2209-037', 'C2202-039', 'SANDIGAN, JOHN SPENCER', 'May 16, 2023', 'computer'),
(25, '27', 'pctag', 'C2209-037', 'C2202-039', 'SANDIGAN, JOHN SPENCER', 'May 16, 2023', 'computer'),
(26, '4', 'ipAddress', 'None', 'Dynamic', 'Cedrick James M. Orozo', 'May 17, 2023', 'cctv'),
(27, '3', 'ipAddress', 'None', 'Dynamic', 'Cedrick James M. Orozo', 'May 17, 2023', 'cctv'),
(28, '3', 'ipAddress', 'Dynamic', 'None', 'Cedrick James M. Orozo', 'May 17, 2023', 'cctv'),
(29, '4', 'ipAddress', 'Dynamic', 'None', 'Cedrick James M. Orozo', 'May 17, 2023', 'cctv'),
(30, '129', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(31, '129', 'assetTag', '', 'OQE-0245', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(32, '130', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(33, '131', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(34, '133', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(35, '132', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(36, '134', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(37, '136', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(38, '135', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(39, '137', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(40, '138', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(41, '139', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(42, '140', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(43, '141', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(44, '142', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(45, '143', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(46, '144', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(47, '146', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(48, '147', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(49, '148', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(50, '149', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(51, '135', 'assetTag', 'FFFE-0605', 'FFFE-00957', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(52, '144', 'ipAddress', '192.168.5.44', '192.168.5.186', 'Cedrick James M. Orozo', 'May 20, 2023', 'computer'),
(53, '50', 'department', 'Direct Kaizen Operation', 'Direct Operation Kaizen ', 'Cedrick James M. Orozo', 'May 22, 2023', 'computer'),
(54, '51', 'department', 'Direct Kaizen Operation', 'Direct Operation Kaizen ', 'Cedrick James M. Orozo', 'May 22, 2023', 'computer'),
(55, '52', 'department', 'Direct Kaizen Operation', 'Direct Operation Kaizen', 'Cedrick James M. Orozo', 'May 22, 2023', 'computer'),
(56, '53', 'department', 'Direct Kaizen Operation', 'Direct Operation Kaizen ', 'Cedrick James M. Orozo', 'May 22, 2023', 'computer'),
(57, '50', 'pctag', '', 'C2110-217', 'Aileen D. Domo', 'May 25, 2023', 'computer'),
(58, '50', 'assetTag', '', 'NA-376', 'Aileen D. Domo', 'May 25, 2023', 'computer'),
(59, '51', 'pctag', '', 'C2112-309', 'Aileen D. Domo', 'May 25, 2023', 'computer'),
(60, '51', 'assetTag', '', 'FFFE-0604', 'Aileen D. Domo', 'May 25, 2023', 'computer'),
(61, '53', 'pctag', '', 'C2110-216', 'Aileen D. Domo', 'May 25, 2023', 'computer'),
(62, '53', 'assetTag', '', 'MET-0506', 'Aileen D. Domo', 'May 25, 2023', 'computer'),
(63, '420', 'ipAddress', 'Dynamic', '192.168.5.190', 'Cedrick James M. Orozo', 'May 25, 2023', 'computer'),
(64, '417', 'ipAddress', 'Dynamic', '192.168.5.206', 'Cedrick James M. Orozo', 'May 25, 2023', 'computer'),
(65, '170', 'computerName', 'GPI-PROD 2', 'C2110-253', 'SANDIGAN, JOHN SPENCER', 'May 25, 2023', 'computer'),
(66, '170', 'pctag', '', 'C2110-253', 'SANDIGAN, JOHN SPENCER', 'May 25, 2023', 'computer'),
(67, '170', 'assetTag', '', 'FFFE-01086', 'SANDIGAN, JOHN SPENCER', 'May 25, 2023', 'computer'),
(68, '53', 'location', '', 'ADMIN OFFICE', 'SANDIGAN, JOHN SPENCER', 'May 31, 2023', 'cctv'),
(69, '53', 'bldgAssigned', 'GPI-9', '', 'SANDIGAN, JOHN SPENCER', 'May 31, 2023', 'cctv'),
(70, '46', 'DVR No', 'PC NVR', '', 'SANDIGAN, JOHN SPENCER', 'May 31, 2023', 'cctv'),
(71, '45', 'DVR No', 'PC NVR', '', 'SANDIGAN, JOHN SPENCER', 'May 31, 2023', 'cctv'),
(72, '44', 'DVR No', 'PC NVR', '', 'SANDIGAN, JOHN SPENCER', 'May 31, 2023', 'cctv'),
(73, '39', 'DVR No', 'PC NVR', '', 'SANDIGAN, JOHN SPENCER', 'May 31, 2023', 'cctv'),
(74, '35', 'DVR No', 'PC NVR', '', 'SANDIGAN, JOHN SPENCER', 'May 31, 2023', 'cctv'),
(75, '34', 'DVR No', 'PC NVR', '', 'SANDIGAN, JOHN SPENCER', 'May 31, 2023', 'cctv'),
(76, '32', 'DVR No', 'PC NVR', '', 'SANDIGAN, JOHN SPENCER', 'May 31, 2023', 'cctv'),
(77, '145', 'deactivated', '0', '1', 'Cedrick James M. Orozo', 'May 31, 2023', 'computer'),
(78, '414', 'os', '', 'Win 10', 'Cedrick James M. Orozo', 'May 31, 2023', 'computer'),
(79, '414', 'macAddress', '', 'D8-50-E6-D2-60-09', 'Cedrick James M. Orozo', 'May 31, 2023', 'computer'),
(80, '37', 'bldgAssigned', 'GPI-8', '', 'Cedrick James M. Orozo', 'May 31, 2023', 'cctv'),
(81, '53', 'bldgAssigned', 'GPI-1', '', 'Cedrick James M. Orozo', 'May 31, 2023', 'cctv'),
(82, '53', 'bldgAssigned', 'GPI-2', 'GPI-1', 'Cedrick James M. Orozo', 'May 31, 2023', 'cctv'),
(83, '37', 'bldgAssigned', 'GPI-9', 'GPI-8', 'Cedrick James M. Orozo', 'May 31, 2023', 'cctv'),
(84, '420', 'user', 'Staff', 'Warehouse Staff', 'SANDIGAN, JOHN SPENCER', 'May 31, 2023', 'computer'),
(85, '420', 'macAddress', '', '74-56-3C-1A-1F-84', 'SANDIGAN, JOHN SPENCER', 'May 31, 2023', 'computer'),
(86, '420', 'ipAddress', '192.168.5.190', '192.168.5.165', 'SANDIGAN, JOHN SPENCER', 'May 31, 2023', 'computer'),
(87, '425', 'department', 'Production', 'Parts Production', 'Sandigan, John Spencer', 'June 02, 2023', 'computer'),
(88, '425', 'user', '', 'PPD STAFF', 'Sandigan, John Spencer', 'June 02, 2023', 'computer'),
(89, '425', 'computerName', 'c23', 'C2306-013', 'Sandigan, John Spencer', 'June 02, 2023', 'computer'),
(90, '424', 'department', ' Parts Production', 'Production Support', 'Sandigan, John Spencer', 'June 02, 2023', 'computer'),
(91, '424', 'user', 'PPD STAFF', 'Jinelyn Sabejon', 'Sandigan, John Spencer', 'June 02, 2023', 'computer'),
(92, '424', 'ipAddress', 'Dynamic', '192.168.5.173', 'Sandigan, John Spencer', 'June 02, 2023', 'computer'),
(93, '425', 'user', 'PPD STAFF', 'Ryan Rolle', 'Sandigan, John Spencer', 'June 02, 2023', 'computer'),
(94, '425', 'macAddress', '', 'D8-5E-D3-C6-27-AE', 'Sandigan, John Spencer', 'June 02, 2023', 'computer'),
(95, '425', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'June 02, 2023', 'computer'),
(96, '119', 'deactivated', '0', '1', 'Cedrick James M. Orozo', 'June 02, 2023', 'computer'),
(97, '429', 'ipAddress', 'Dynamic', '172.24.33.108', 'Cedrick James M. Orozo', 'June 02, 2023', 'computer'),
(98, '428', 'ipAddress', 'Dynamic', '172.24.33.107', 'Cedrick James M. Orozo', 'June 02, 2023', 'computer'),
(99, '352', 'deactivated', '0', '1', 'Sandigan, John Spencer', 'June 06, 2023', 'computer'),
(100, '423', 'ipAddress', 'Dynamic', '192.168.60.17', 'Sandigan, John Spencer', 'June 06, 2023', 'computer'),
(101, '118', 'deactivated', '0', '1', 'Sandigan, John Spencer', 'June 06, 2023', 'computer'),
(102, '425', 'ipAddress', 'Dynamic', '172.24.33.117', 'Sandigan, John Spencer', 'June 06, 2023', 'computer'),
(103, '334', 'ipAddress', '192.168.5.26', '192.168.5.14', 'Kevin Roy Marero', 'June 06, 2023', 'computer'),
(104, '427', 'ipAddress', 'Dynamic', '172.24.33.106', 'Sandigan, John Spencer', 'June 07, 2023', 'computer'),
(105, '427', 'assetTag', '', 'N/A', 'Sandigan, John Spencer', 'June 07, 2023', 'computer'),
(106, '123', 'deactivated', '0', '1', 'Sandigan, John Spencer', 'June 07, 2023', 'computer'),
(107, '426', 'ipAddress', 'Dynamic', '172.24.33.135', 'Sandigan, John Spencer', 'June 07, 2023', 'computer'),
(108, '417', 'macAddress', '', '74-56-3C-1A-1F-7B', 'Sandigan, John Spencer', 'June 08, 2023', 'computer'),
(109, '417', 'ipAddress', '192.168.5.206', '192.168.5.143', 'Sandigan, John Spencer', 'June 08, 2023', 'computer'),
(110, '417', 'assetTag', '', 'N/A', 'Sandigan, John Spencer', 'June 08, 2023', 'computer'),
(111, '420', 'assetTag', '', 'N/A', 'Sandigan, John Spencer', 'June 08, 2023', 'computer'),
(112, '425', 'computerName', 'C2306-013', 'C2305-013', 'Sandigan, John Spencer', 'June 08, 2023', 'computer'),
(113, '425', 'pctag', 'C2306-013', 'C2305-013', 'Sandigan, John Spencer', 'June 08, 2023', 'computer'),
(114, '144', 'assetTag', '', 'N/A', 'Sandigan, John Spencer', 'June 08, 2023', 'computer'),
(115, '327', 'assetTag', '', 'N/A', 'Sandigan, John Spencer', 'June 08, 2023', 'computer'),
(116, '428', 'assetTag', '', 'N/A', 'Sandigan, John Spencer', 'June 09, 2023', 'computer'),
(117, '429', 'assetTag', '', 'N/A', 'Sandigan, John Spencer', 'June 09, 2023', 'computer'),
(118, '431', 'computerName', 'C2306-019', 'C2305-019', 'Sandigan, John Spencer', 'June 09, 2023', 'computer'),
(119, '431', 'pctag', 'C2306-019', 'C2305-019', 'Sandigan, John Spencer', 'June 09, 2023', 'computer'),
(120, '431', 'computerName', 'C2305-019', 'C2306-019', 'Sandigan, John Spencer', 'June 09, 2023', 'computer'),
(121, '431', 'pctag', 'C2305-019', 'C2306-019', 'Sandigan, John Spencer', 'June 09, 2023', 'computer'),
(122, '172', 'user', 'Noemi Roxas', 'Noemi Rojas OLD PC', 'Sandigan, John Spencer', 'June 10, 2023', 'computer'),
(123, '172', 'deactivated', '0', '1', 'Sandigan, John Spencer', 'June 10, 2023', 'computer'),
(124, '431', 'ipAddress', 'Dynamic', '192.168.60.59', 'Sandigan, John Spencer', 'June 10, 2023', 'computer'),
(125, '417', 'user', 'Staff', 'Warehouse Staff', 'Sandigan, John Spencer', 'June 14, 2023', 'computer'),
(126, '193', 'ipAddress', '192.168.5.166', '192.168.60.59', 'Kevin Roy Marero', 'June 14, 2023', 'computer'),
(127, '432', 'ipAddress', 'Dynamic', '192.168.5.166', 'Kevin Roy Marero', 'June 14, 2023', 'computer'),
(128, '168', 'deactivated', '0', '1', 'Sandigan, John Spencer', 'June 14, 2023', 'computer'),
(129, '432', 'macAddress', '', '74-56-3C-1A-1C-3B', 'Sandigan, John Spencer', 'June 14, 2023', 'computer'),
(130, '432', 'ipAddress', '192.168.5.166', '192.168.60.116', 'Sandigan, John Spencer', 'June 14, 2023', 'computer'),
(131, '418', 'ipAddress', '192.168.5.176', '192.168.60.167', 'Sandigan, John Spencer', 'June 15, 2023', 'computer'),
(132, '418', 'assetTag', '', 'N/A', 'Sandigan, John Spencer', 'June 15, 2023', 'computer'),
(133, '173', 'user', 'Emyria Sarte', 'GPI-7 staff', 'Sandigan, John Spencer', 'June 15, 2023', 'computer'),
(134, '175', 'user', 'Marvin Ilao', 'Sarte, Emyria', 'Sandigan, John Spencer', 'June 15, 2023', 'computer'),
(135, '181', 'macAddress', '70-8B-CD-58-21-13', 'E0-D5-5E-9D-06-71', 'Cedrick James M. Orozo', 'June 16, 2023', 'computer'),
(136, '181', 'pctag', 'C2110-215', 'C2110-188', 'Cedrick James M. Orozo', 'June 16, 2023', 'computer'),
(137, '119', 'user', 'Michelle Malubay', 'Warehouse Staff', 'Sandigan, John Spencer', 'June 16, 2023', 'computer'),
(138, '119', 'os', 'Win7', 'Win10', 'Sandigan, John Spencer', 'June 16, 2023', 'computer'),
(139, '119', 'ipAddress', '172.24.33.106', '172.24.33.122', 'Sandigan, John Spencer', 'June 16, 2023', 'computer'),
(140, '119', 'email', '', 'warehousestaff@g;ory.com.ph', 'Sandigan, John Spencer', 'June 16, 2023', 'computer'),
(141, '119', 'deactivated', '1', '0', 'Sandigan, John Spencer', 'June 16, 2023', 'computer'),
(142, '180', 'type', 'Dekstop ', 'Desktop', 'Kevin Roy Marero', 'June 19, 2023', 'computer'),
(143, '180', 'user', 'Edwin Tolentino', 'Kelvin Novero', 'Kevin Roy Marero', 'June 19, 2023', 'computer'),
(144, '179', 'user', 'Marvin Ilao New', 'GLR100-PC', 'Sandigan, John Spencer', 'June 26, 2023', 'computer'),
(145, '179', 'email', '[email protected]', '[email protected]', 'Sandigan, John Spencer', 'June 26, 2023', 'computer'),
(146, '179', 'pctag', '', 'C2210-045', 'Sandigan, John Spencer', 'June 26, 2023', 'computer'),
(147, '179', 'assetTag', '', 'N/A', 'Sandigan, John Spencer', 'June 26, 2023', 'computer'),
(148, '403', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'June 26, 2023', 'computer'),
(149, '1', 'password', '', 'gpi142', 'Cedrick James M. Orozo', 'June 27, 2023', 'computer'),
(150, '107', 'user', 'Osoyos, Shielo Joy / MARICRIS', 'Osoyos Shielo Joy / MARICRIS', 'Cedrick James M. Orozo', 'June 27, 2023', 'computer'),
(151, '175', 'user', 'Sarte, Emyria', 'Sarte Emyria', 'Cedrick James M. Orozo', 'June 27, 2023', 'computer'),
(152, '415', 'user', 'Berina, Geri', 'Berina Geri', 'Cedrick James M. Orozo', 'June 27, 2023', 'computer'),
(153, '426', 'user', 'Garcia, Ma. Jesusa', 'Garcia Ma. Jesusa', 'Cedrick James M. Orozo', 'June 27, 2023', 'computer'),
(154, '427', 'user', 'Malubay, Michelle', 'Malubay Michelle', 'Cedrick James M. Orozo', 'June 27, 2023', 'computer'),
(155, '428', 'user', 'Ticong, Angelo', 'Ticong Angelo', 'Cedrick James M. Orozo', 'June 27, 2023', 'computer'),
(156, '429', 'user', 'Mojica, Richard', 'Mojica Richard', 'Cedrick James M. Orozo', 'June 27, 2023', 'computer'),
(157, '430', 'user', 'IRENE, OLAES', 'IRENE OLAES', 'Cedrick James M. Orozo', 'June 27, 2023', 'computer'),
(158, '431', 'user', 'Rojas, Noemi', 'Rojas Noemi', 'Cedrick James M. Orozo', 'June 27, 2023', 'computer'),
(159, '432', 'user', 'Baldesimo, Deserie', 'Baldesimo Deserie', 'Cedrick James M. Orozo', 'June 27, 2023', 'computer'),
(160, '34', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(161, '34', 'assetTag', '', 'OEQ-0241', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(162, '34', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(163, '34', 'password', '', 'j.alonzo', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(164, '22', 'macAddress', 'C8-58-C0-96-21-BB', 'Lot 1 and 3 Block 19, Phase 3 CEZ', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(165, '22', 'email', '', '[email protected]', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(166, '22', 'pctag', '', 'C2110-240', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(167, '22', 'assetTag', '', 'OEQ-0225', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(168, '22', 'kaspersky', '0', '1', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(169, '22', 'password', '', 'gpi288', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(170, '33', 'pctag', '', 'C2110-176', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(171, '33', 'assetTag', '', 'NA-1164', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(172, '33', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(173, '33', 'itnavi', '0', '1', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(174, '33', 'password', '', 'gpi299', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(175, '43', 'assetTag', '', 'OEQ-0203', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(176, '43', 'kaspersky', '0', '1', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(177, '43', 'itnavi', '0', '1', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(178, '43', 'password', '', 'gpi273', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(179, '41', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(180, '41', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(181, '41', 'itnavi', '0', '1', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(182, '41', 'password', '', 'gpi13', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(183, '43', 'itnavi', '0', '1', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(184, '25', 'ipAddress', 'Dynamic ', '192.168.5.10', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(185, '25', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(186, '25', 'assetTag', '', 'OEQ-0243', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(187, '25', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(188, '25', 'itnavi', '0', '1', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(189, '25', 'password', '', 'gpi12', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(190, '44', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(191, '17', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(192, '17', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(193, '17', 'itnavi', '0', '1', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(194, '17', 'password', '', '6l0ry', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(195, '36', 'email', '', '[email protected]', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(196, '36', 'assetTag', '', 'OEQ-0244', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(197, '36', 'kaspersky', '0', '1', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(198, '36', 'itnavi', '0', '1', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(199, '36', 'password', '', 'gpi09', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(200, '1', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(201, '1', 'pctag', '', 'C2112-299', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(202, '1', 'assetTag', '', 'OEQ0217', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(203, '5', 'user', 'Nicole Cabildo', 'Caela Erika Manansala', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(204, '5', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(205, '5', 'assetTag', '', 'OEQ-0215', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(206, '5', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(208, '5', 'password', '', 'gpi02', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(209, '2', 'computerName', 'WS-GPI03', 'WS-GPI03i', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(210, '2', 'macAddress', '04:0E:3C:11:12:FB ', '04-0E-3C-11-12-FB', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(211, '2', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(212, '2', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(215, '2', 'password', '', 'gpi03', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(216, '1', 'computerName', 'WS-GPI142i', 'C2112-299', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(217, '1', 'kaspersky', '0', '1', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(220, '5', 'macAddress', '9C:7B:EF:A5:7A:80', '9C-7B-EF-A5-7A-80', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(222, '6', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(223, '6', 'password', '', 'gpi01', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(224, '6', 'email', '[email protected]', '[email protected]', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(225, '30', 'macAddress', '74-27-EA-B3-4F-80', 'EO-D5-5E-3D-B3-E6', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(226, '30', 'assetTag', '', 'OEQ-0206', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(227, '30', 'password', '', 'WS-GPI198', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(228, '409', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(229, '409', 'password', '', 'gpi119', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(230, '408', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(231, '408', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(232, '408', 'password', '', 'gpi51', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(233, '420', 'email', '', ' [email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(234, '420', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(235, '417', 'password', '', 'gpi324', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(236, '420', 'password', '', 'gpi323', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(237, '417', 'email', '', '[email protected]', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(238, '417', 'kaspersky', '0', '1', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(239, '396', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(240, '396', 'password', '', 'gpi43', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(241, '397', 'email', '', '[email protected]', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(242, '397', 'password', '', 'gpi130', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(243, '404', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(244, '404', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(245, '404', 'password', '', 'gpi168', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(246, '398', 'password', '', 'gpi140', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(247, '401', 'password', '', 'amiel_18', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(248, '398', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(249, '394', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(250, '399', 'email', '', '[email protected]', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(251, '399', 'password', '', 'gpi138', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(252, '401', 'email', '', '[email protected]', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(253, '400', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(254, '400', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(255, '400', 'password', '', 'gpi115', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(256, '402', 'email', '', '[email protected]', '', 'June 28, 2023', 'computer'),
(257, '402', 'password', '', 'gpi113', '', 'June 28, 2023', 'computer'),
(258, '392', 'email', '', '[email protected]', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(259, '392', 'password', '', 'gpi315', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(260, '390', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(261, '390', 'assetTag', '', 'FFFE-0575', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(262, '390', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(263, '390', 'password', '', 'gpi162', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(264, '395', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(265, '395', 'assetTag', '', 'FFFE-01216', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(266, '395', 'password', '', 'gpi164', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(267, '392', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(268, '391', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(269, '391', 'pctag', '', 'C2106-009', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(270, '391', 'assetTag', '', 'NA-062', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(271, '391', 'password', '', 'gpi140', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(272, '393', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(273, '393', 'pctag', '', 'gpi-gpss85', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(274, '393', 'assetTag', '', 'NA-1333', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(275, '395', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(276, '411', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(277, '411', 'edr', '0', '1', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(278, '411', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(279, '411', 'password', '', 'gpi232', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(280, '413', 'user', 'PPIC Staff', 'Myr Joy Demesa', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(281, '413', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(282, '413', 'password', '', '971985', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(283, '406', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(284, '406', 'assetTag', 'FFFE-0824', 'FFFE-0821', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(285, '406', 'password', '', 'gpi68', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(286, '405', 'email', '', '[email protected]', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(287, '405', 'password', '', 'gpi131', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(288, '410', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(289, '410', 'assetTag', '', 'FFFE-0193', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(290, '410', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(291, '410', 'password', '', 'gpi39', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(292, '413', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(293, '34', 'password', 'j.alonzo', 'jl.alonzo', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(294, '23', 'password', '', 'r.monzon', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(295, '32', 'password', '', 'gpi274', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(296, '31', 'password', '', 'gpi279', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(297, '27', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(298, '27', 'password', '', 'gpi291', 'Sandigan, John Spencer', 'June 28, 2023', 'computer'),
(299, '32', 'email', '', '[email protected]', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(300, '38', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(301, '38', 'assetTag', '', 'NA-280', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(302, '38', 'password', '', 'gpi217', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(303, '32', 'kaspersky', '0', '1', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(304, '34', 'itnavi', '0', '1', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(305, '23', 'macAddress', '', '14-13-33-41-4D-3B', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(306, '23', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(307, '23', 'assetTag', '', '0EQ-0240', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(308, '23', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(309, '23', 'itnavi', '0', '1', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(310, '40', 'email', '', '[email protected]', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(311, '40', 'password', '', 'gpi16', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(312, '31', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(313, '31', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'June 28, 2023', 'computer'),
(314, '42', 'email', '', '[email protected]', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(315, '42', 'password', '', 'gpi15', 'Aileen D. Domo', 'June 28, 2023', 'computer'),
(316, '395', 'email', '[email protected]', '[email protected]', 'Cedrick James M. Orozo', 'June 29, 2023', 'computer'),
(317, '393', 'email', '[email protected]', '[email protected]', 'Cedrick James M. Orozo', 'June 29, 2023', 'computer'),
(318, '417', 'email', '[email protected]', '[email protected]', 'Cedrick James M. Orozo', 'June 29, 2023', 'computer'),
(319, '420', 'email', ' [email protected]', '[email protected]', 'Cedrick James M. Orozo', 'June 29, 2023', 'computer'),
(320, '337', 'user', 'Carlito Magpatoc', 'Prod Tech staff', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(321, '337', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(322, '337', 'password', '', 'gpi211', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(323, '335', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(324, '335', 'password', '', 'gpi60', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(325, '330', 'department', 'Production Support', 'Production Technology', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(326, '330', 'os', 'Win8', 'Win10', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(327, '330', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(328, '330', 'password', '', 'gpi58', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(329, '336', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(330, '336', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(331, '336', 'password', '', 'gpi241', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(332, '331', 'kaspersky', '0', '1', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(333, '356', 'os', 'Win7', 'Win11', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(334, '356', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(335, '356', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(336, '356', 'password', '', 'gpi98', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(337, '351', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(338, '351', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(339, '351', 'password', '', 'gpi95', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(340, '348', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(341, '348', 'password', '', 'gpi94', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(342, '333', 'email', '', '[email protected]', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(343, '333', 'pctag', '', 'C2110-002', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(344, '333', 'assetTag', '', 'FFFE-00942', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(345, '333', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(346, '333', 'password', '', 'p@sw0rd59', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(347, '347', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(348, '347', 'password', '', 'gpi89', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(349, '357', 'os', 'Win8', 'Win10', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(350, '357', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(351, '357', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(352, '357', 'password', '', 'p@sw0rd17', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(353, '355', 'user', 'Vacant', 'Dianne Cristino', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(354, '355', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(355, '355', 'password', '', 'gpi112', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(356, '357', 'ipAddress', '192.168.60.38', '192.168.60.45', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(357, '358', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(358, '358', 'password', '', 'gpi96', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(359, '360', 'email', '', '[email protected]', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(360, '360', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(361, '360', 'password', '', 'gpi167', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(362, '362', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(363, '362', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(364, '362', 'password', '', 'gpi246', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(365, '358', 'computerName', 'C2106-127', 'C2303-004', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(366, '358', 'pctag', 'C2106-127', 'C2303-004', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(367, '350', 'computerName', 'C2016-061', 'C2106-061', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(368, '350', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(369, '350', 'pctag', '', 'C2106-061', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(370, '350', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(371, '350', 'password', '', 'gpi91', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(372, '423', 'macAddress', '', 'D8-5E-D3-C5-C2-27', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(373, '423', 'password', '', 'gpi328', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(374, '344', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(375, '344', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(376, '344', 'password', '', 'gpi100', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(377, '359', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(378, '359', 'password', '', 'gpi238', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(379, '349', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(380, '349', 'password', '', 'gpi116', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(381, '361', 'email', '', '[email protected].,ph', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(382, '361', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(383, '361', 'password', '', 'gpi243', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(384, '345', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(385, '345', 'pctag', '', 'C2106-129', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(386, '345', 'assetTag', '', 'NA-255', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(387, '345', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(388, '345', 'password', '', 'gpi97', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(389, '349', 'email', '', ' [email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(390, '354', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(391, '354', 'password', '', 'gpi92', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(392, '346', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(393, '346', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(394, '346', 'password', '', 'gpi93', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(395, '342', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(396, '342', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(397, '342', 'password', '', 'gpi240', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(398, '343', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(399, '343', 'password', '', 'gpi99', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(400, '144', 'os', 'Win7', 'Win11', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(401, '144', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(402, '144', 'password', '', 'gpi56', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(403, '343', 'email', '[email protected]', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(404, '340', 'department', 'Purchasing', 'Parts Inspection', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(405, '340', 'type', 'Laptop', 'Marry Bantugan', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(406, '416', 'deactivated', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(407, '134', 'password', '', 'gpi53', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(408, '338', 'email', '', '[email protected]', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(409, '338', 'assetTag', '', 'OEQ-0232', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(410, '338', 'edr', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(411, '338', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(412, '338', 'password', '', 'gpi243', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(413, '134', 'kaspersky', '0', '1', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(414, '136', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(415, '136', 'password', '', 'gpi320', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(416, '133', 'kaspersky', '0', '1', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(417, '129', 'pctag', '', 'C2103-021', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(418, '129', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(419, '129', 'itnavi', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(420, '129', 'password', '', 'gpi54', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(421, '147', 'password', '', 'gpi57', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(422, '440', 'computerName', 'WL-GPIL26', 'WS-GPIL26', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(423, '440', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(424, '440', 'itnavi', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(425, '133', 'password', '', 'gpi144', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(426, '414', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(427, '414', 'password', '', 'gpi52', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(428, '138', 'password', '', 'gpi45', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(429, '128', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(430, '128', 'password', '', '6l0ry', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(431, '137', 'os', 'Win7', 'Win10', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(432, '137', 'password', '', 'gpi54', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(433, '130', 'password', '', 'gpi318', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(434, '130', 'kaspersky', '0', '1', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(435, '149', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(436, '149', 'password', '', 'gpi258', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(437, '132', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(438, '132', 'password', '', 'gpi282', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(439, '139', 'password', '', 'gpi152', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(440, '131', 'user', 'Caludine Joy', 'Roger Augustin', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(441, '131', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(442, '131', 'password', '', 'gpi50', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(443, '387', 'email', '', '[email protected]', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(444, '387', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(445, '387', 'password', '', 'gpi169', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(446, '387', 'user', 'Shermaye Cosa', 'Shermaine Cosa', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(447, '141', 'kaspersky', '0', '1', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(448, '141', 'password', '', 'gpi134', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(449, '142', 'password', '', 'gpi49', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(450, '388', 'email', '', '[email protected]', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(451, '388', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(452, '388', 'password', '', 'gpi244', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(453, '140', 'user', 'Janine Barliso', 'Ace Lyola', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(454, '140', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(455, '140', 'password', '', 'gpi165', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(456, '389', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(457, '389', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(458, '389', 'password', '', 'gpi245', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(459, '381', 'edr', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(460, '381', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(461, '381', 'password', '', 'gpi108', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(462, '384', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(463, '384', 'password', '', 'gpi105', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(464, '441', 'computerName', '', 'C2106-148', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(465, '441', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(466, '441', 'password', '', 'gpi110', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(467, '376', 'email', '', 'N/A', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(468, '376', 'pctag', '', 'C2110-259', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(469, '376', 'assetTag', '', 'FFFE-01087', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(470, '376', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(471, '376', 'itnavi', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(472, '376', 'password', '', '6l0ry', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(473, '385', 'password', '', 'gpi109', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(474, '320', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(475, '320', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(476, '320', 'password', '', 'gpi37', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(477, '319', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(478, '319', 'edr', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(479, '319', 'password', '', 'gpi281', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(480, '329', 'email', '', '[email protected]', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(481, '329', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(482, '329', 'password', '', 'gpi75', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(483, '318', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(484, '318', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(485, '318', 'password', '', 'gpi280', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(486, '188', 'user', 'Hazel Ann Dela Torre', 'Edwin Tolentino', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(487, '188', 'email', '[email protected]', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(488, '189', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(489, '189', 'password', '', 'gpi256', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(490, '191', 'user', 'Haydee Custodio', 'Karen Roque', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(491, '191', 'email', '[email protected]', 'prod2sectionstaff', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(492, '191', 'password', '', 'gpi208', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(493, '180', 'password', '', 'gpi80', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(494, '319', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(495, '378', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(496, '378', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(497, '378', 'password', '', 'gpi106', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(498, '171', 'assetTag', '', 'FFFE-01136', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(499, '171', 'password', '', 'gpi292', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(500, '195', 'edr', '1', '0', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(501, '195', 'password', '', 'gpi174', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(502, '418', 'macAddress', '', 'D6-54-8B-91-72-4C', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(503, '418', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(504, '178', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(505, '178', 'password', '', 'gpiazuma', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(506, '176', 'user', 'Elma Culla', 'Luig Leivic', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(507, '176', 'email', '[email protected]', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(508, '176', 'password', '', 'C2106-031', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(509, '327', 'user', 'Checksheet PC', 'Gemmalyn Tarrega', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(510, '327', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(511, '327', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(512, '327', 'password', '', 'Staff010', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(513, '186', 'password', '', 'gpi254', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(514, '379', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(515, '379', 'password', '', 'sticker', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(516, '431', 'macAddress', '', 'D8-5E-D3-C6-40-EA', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(517, '431', 'password', '', 'C2306-019', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(518, '419', 'macAddress', '', 'D8-5E-D3-C5-CA-A7', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(519, '419', 'ipAddress', '192.168.5.185', '192.168.60.215', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(520, '419', 'password', '', 'gpi325', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(521, '193', 'password', '', 'gpi143', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(522, '184', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(523, '184', 'password', '', 'gpi249', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(524, '321', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(525, '321', 'assetTag', '', 'NA-335', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(526, '321', 'password', '', 'gpi239', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(527, '322', 'email', '', 'pssta', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(528, '322', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(529, '322', 'password', '', 'gpi123', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(530, '323', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(531, '323', 'assetTag', '', 'FFFE-0644', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(532, '323', 'password', '', 'gpi205', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(533, '190', 'email', '[email protected]', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(534, '190', 'password', '', 'gpi121', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(535, '190', 'user', 'Scanning', 'Scanning/prod 2 staff', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(536, '323', 'edr', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(537, '374', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(538, '374', 'password', '', 'gpi210', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(539, '375', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(540, '375', 'password', '', 'gpi104', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(541, '371', 'user', 'Claudine Delmo', 'Roween J. Mangalindan', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(542, '371', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(543, '371', 'password', '', 'gpi133', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(544, '366', 'email', '', '[email protected]', '', 'July 01, 2023', 'computer'),
(545, '366', 'password', '', 'p@sw0rd102', '', 'July 01, 2023', 'computer'),
(546, '370', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer');
INSERT INTO `devicehistory` (`id`, `deviceId`, `field`, `fromThis`, `toThis`, `modifier`, `date`, `type`) VALUES
(547, '370', 'password', '', 'gpi103', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(548, '372', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(549, '372', 'edr', '1', '0', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(550, '372', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(551, '372', 'password', '', 'gpi132', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(552, '368', 'email', '', '[email protected]', '', 'July 01, 2023', 'computer'),
(553, '368', 'pctag', '', 'C2111-271', '', 'July 01, 2023', 'computer'),
(554, '368', 'assetTag', '', 'OEQ0222', '', 'July 01, 2023', 'computer'),
(555, '368', 'kaspersky', '0', '1', '', 'July 01, 2023', 'computer'),
(556, '368', 'itnavi', '0', '1', '', 'July 01, 2023', 'computer'),
(557, '368', 'password', '', 'gpi101', '', 'July 01, 2023', 'computer'),
(558, '367', 'password', '', '6l0ry', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(559, '373', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(560, '373', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(561, '373', 'password', '', 'gpi155', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(562, '364', 'pctag', '', 'C2203-024', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(563, '364', 'assetTag', '', 'OEQ- 0169', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(564, '364', 'password', '', '6l0ry', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(565, '363', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(566, '363', 'password', '', 'gpi293', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(567, '325', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(568, '325', 'password', '', 'gpi75', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(569, '424', 'computerName', 'C2306-012', 'C2305-012', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(570, '424', 'macAddress', '', 'D8-5E-D3-C6-8B-71', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(571, '424', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(572, '424', 'pctag', 'C2306-012', 'C2305-012', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(573, '424', 'password', '', 'C2305-012', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(574, '154', 'email', '', '[email protected]', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(575, '154', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(576, '154', 'password', '', 'gpi216', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(577, '326', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(578, '326', 'edr', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(579, '326', 'password', '', 'gpi146', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(580, '165', 'email', '', 'd.peliñ[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(581, '165', 'pctag', '', 'C2106-097', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(582, '165', 'assetTag', '', 'NA-office FFE NA-003', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(583, '165', 'password', '', 'gpi70', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(584, '157', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(585, '157', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(586, '157', 'password', '', 'gpi253', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(587, '187', 'password', '', 'gpi22', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(588, '162', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(589, '162', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(590, '162', 'password', '', 'gpi263', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(591, '432', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(592, '432', 'password', '', 'C2306-020', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(593, '152', 'user', 'Robert Cabangunay', 'Prod 1 Parts Prep', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(594, '152', 'password', '', 'gpi67', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(595, '158', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(596, '158', 'assetTag', '', 'FFFE-0834', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(597, '158', 'password', '', 'GPI252', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(598, '164', 'email', '', '[email protected]', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(599, '164', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(600, '164', 'password', '', 'gpi145', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(601, '156', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(602, '156', 'password', '', 'gpi250', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(603, '160', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(604, '160', 'password', '', 'gpi270', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(605, '160', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(606, '386', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(607, '386', 'pctag', '', 'C20-95', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(608, '386', 'password', '', 'no password', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(609, '150', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(610, '150', 'pctag', '', 'C2110-252', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(611, '150', 'assetTag', '', 'FFFE- 01090', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(612, '150', 'password', '', '6l0ry', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(613, '150', 'kaspersky', '0', '1', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(614, '166', 'os', 'Win7', 'Win10', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(615, '166', 'email', '', '[email protected]', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(616, '166', 'assetTag', '', 'FFFE-01001', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(617, '166', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(618, '166', 'password', '', 'gpi286', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(619, '163', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(620, '163', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(621, '163', 'password', '', 'gpi69', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(622, '167', 'macAddress', '', 'E0-D5-5E-35-E6-AC', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(623, '167', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(624, '167', 'pctag', '', 'WS-GPI260', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(625, '167', 'edr', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(626, '167', 'password', '', 'gpi260', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(627, '153', 'user', 'Eva Evangelista', 'Eva Lanquino', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(628, '153', 'email', '', '[email protected]', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(629, '153', 'password', '', 'gpi62', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(630, '155', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(631, '181', 'email', '[email protected]', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(632, '181', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(633, '181', 'password', '', 'gpi27', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(634, '39', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(635, '39', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(636, '39', 'password', '', 'gpi05', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(637, '383', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(638, '383', 'edr', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(639, '383', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(640, '383', 'password', '', 'gpi265', 'Sandigan, John Spencer', 'July 01, 2023', 'computer'),
(641, '161', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 01, 2023', 'computer'),
(642, '353', 'os', 'Win7', 'Win10', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(643, '353', 'email', '', '[email protected]', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(644, '353', 'kaspersky', '0', '1', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(645, '353', 'password', '', 'C2106-069', 'Vivo, Felmhar', 'July 01, 2023', 'computer'),
(646, '159', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(647, '159', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(648, '159', 'password', '', 'gpi197', 'Cedrick James M. Orozo', 'July 01, 2023', 'computer'),
(649, '444', 'user', '', 'Guard house', 'Sandigan, John Spencer', 'July 03, 2023', 'computer'),
(650, '443', 'ipAddress', 'Dynamic', '172.22.38.164', 'Sandigan, John Spencer', 'July 03, 2023', 'computer'),
(651, '26', 'kaspersky', '0', '1', 'Nemedez, Nathan', 'July 05, 2023', 'computer'),
(652, '26', 'itnavi', '0', '1', 'Nemedez, Nathan', 'July 05, 2023', 'computer'),
(653, '22', 'macAddress', 'Lot 1 and 3 Block 19, Phase 3 ', '', 'Nemedez, Nathan', 'July 05, 2023', 'computer'),
(654, '446', 'edr', '1', '0', 'Nemedez, Nathan', 'July 05, 2023', 'computer'),
(655, '446', 'kaspersky', '0', '1', 'Nemedez, Nathan', 'July 05, 2023', 'computer'),
(656, '446', 'itnavi', '0', '1', 'Nemedez, Nathan', 'July 05, 2023', 'computer'),
(657, '27', 'ipAddress', '192.168.60.140', '192.168.5.140', 'Sandigan, John Spencer', 'July 05, 2023', 'computer'),
(658, '407', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 06, 2023', 'computer'),
(659, '407', 'assetTag', '', 'N/A', 'Sandigan, John Spencer', 'July 06, 2023', 'computer'),
(660, '407', 'password', '', 'p@sw0rd41', 'Sandigan, John Spencer', 'July 06, 2023', 'computer'),
(661, '79', 'ipAddress', '192.168.60.114', '192.168.60.144', 'Cedrick James M. Orozo', 'July 06, 2023', 'computer'),
(662, '414', 'ipAddress', '192.168.60.138', '192.168.60.89', 'Sandigan, John Spencer', 'July 06, 2023', 'computer'),
(663, '447', 'kaspersky', '0', '1', 'Aileen D. Domo', 'July 07, 2023', 'computer'),
(664, '104', 'ipAddress', 'Dynamic', '172.24.33.159', 'Sandigan, John Spencer', 'July 07, 2023', 'cctv'),
(665, '172', 'user', 'Noemi Rojas OLD PC', 'Haydee Custodio PC', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(666, '172', 'computerName', 'WS-GPI276', 'WS-GPI27', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(667, '172', 'password', '', 'gpi27', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(668, '172', 'ipAddress', '192.168.60.59', 'Dynamic', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(669, '181', 'ipAddress', '192.168.60.71', 'Dynamic', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(670, '181', 'deactivated', '0', '1', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(671, '172', 'ipAddress', 'Dynamic', '192.168.60.71', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(672, '181', 'user', 'Haydee Custodio', 'Haydee Custodio OLD PC', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(673, '172', 'user', 'Haydee Custodio PC', 'Haydee Custodio', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(674, '172', 'email', '[email protected]', '[email protected]', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(675, '172', 'deactivated', '1', '0', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(676, '181', 'user', 'Haydee Custodio OLD PC', 'GPI-7 Packaging staff', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(677, '181', 'os', 'Win7', 'Win10', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(678, '181', 'computerName', 'WS-GPI27', 'C2110-215', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(679, '181', 'macAddress', 'E0-D5-5E-9D-06-71', '', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(680, '181', 'email', '[email protected]', '', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(681, '181', 'pctag', 'C2110-188', 'C2110-215', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(682, '181', 'assetTag', '', 'N/A', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(683, '181', 'deactivated', '1', '0', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(684, '181', 'password', 'gpi27', 'c2110-215', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(685, '181', 'ipAddress', 'Dynamic', '192.168.60.117', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(686, '181', 'edr', '1', '0', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(687, '181', 'kaspersky', '1', '0', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(688, '181', 'password', 'c2110-215', 'C2110-215', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(689, '71', 'user', 'Jasper Odasco', 'Jesper Odasco', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(690, '71', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(691, '71', 'password', '', 'j@sp3r', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(692, '60', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 08, 2023', 'computer'),
(693, '60', 'password', '', 'gpi316', 'Aileen D. Domo', 'July 08, 2023', 'computer'),
(694, '60', 'kaspersky', '0', '1', 'Aileen D. Domo', 'July 08, 2023', 'computer'),
(695, '68', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(696, '68', 'password', '', 'gpi267', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(697, '69', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(698, '69', 'password', '', 'gpi269', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(699, '89', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 08, 2023', 'computer'),
(700, '89', 'pctag', '', 'C2106-028', 'Aileen D. Domo', 'July 08, 2023', 'computer'),
(701, '89', 'assetTag', '', 'FFFE-0670', 'Aileen D. Domo', 'July 08, 2023', 'computer'),
(702, '89', 'password', '', 'gpi231', 'Aileen D. Domo', 'July 08, 2023', 'computer'),
(703, '66', 'user', 'Liza Ordonez', 'Jane Mojica', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(704, '66', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(705, '66', 'password', '', 'gpi30', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(706, '62', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 08, 2023', 'computer'),
(707, '62', 'password', '', 'gpil36', 'Aileen D. Domo', 'July 08, 2023', 'computer'),
(708, '70', 'user', 'Melody Odviar', 'Melody Mine', 'Aileen D. Domo', 'July 08, 2023', 'computer'),
(709, '70', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 08, 2023', 'computer'),
(710, '70', 'password', '', '196gpi', 'Aileen D. Domo', 'July 08, 2023', 'computer'),
(711, '64', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 08, 2023', 'computer'),
(712, '64', 'password', '', 'gpi73', 'Aileen D. Domo', 'July 08, 2023', 'computer'),
(713, '67', 'os', 'Win7', 'Win10', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(714, '67', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(715, '67', 'password', '', 'gpi166', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(716, '73', 'email', '', '[email protected]', 'Aileen D. Domo', 'July 08, 2023', 'computer'),
(717, '73', 'password', '', 'gpi33', 'Aileen D. Domo', 'July 08, 2023', 'computer'),
(718, '61', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(719, '61', 'pctag', '', 'C2110-246', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(720, '61', 'assetTag', '', 'FFFE-0540', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(721, '61', 'itnavi', '0', '1', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(722, '61', 'password', '', 'gpi135', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(723, '105', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(724, '105', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(725, '105', 'password', '', 'gpi209', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(726, '82', 'email', '', '[email protected]', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(727, '82', 'kaspersky', '0', '1', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(728, '82', 'password', '', 'auditor218', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(729, '102', 'user', 'Rosemher Sugui', 'Jackie', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(730, '102', 'edr', '0', '1', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(731, '102', 'password', '', 'gpi233', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(732, '103', 'password', '', 'gpi230', 'Vivo, Felmhar', 'July 08, 2023', 'computer'),
(733, '87', 'pctag', '', 'C2106-023', 'Vivo, Felmhar', 'July 08, 2023', 'computer'),
(734, '87', 'password', '', 'gpi222', 'Vivo, Felmhar', 'July 08, 2023', 'computer'),
(735, '90', 'user', 'Abegail Pedragosa ', 'Alyssa', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(736, '90', 'computerName', 'WS-GPI228', 'gpi228', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(737, '90', 'pctag', 'C2106-054', 'C2106-112', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(738, '90', 'assetTag', 'FFFE-0834', 'FFFE-0673', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(739, '90', 'password', '', 'gpi228', 'Cedrick James M. Orozo', 'July 08, 2023', 'computer'),
(740, '434', 'ipAddress', '192.168.60.105', '192.168.60.196', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(741, '434', 'email', '', 'N/A', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(742, '434', 'password', '', 'gpi184', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(743, '78', 'pctag', '', 'C2106-040', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(744, '78', 'assetTag', '', 'N/A', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(745, '78', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(746, '78', 'password', '', 'gpi223', 'Sandigan, John Spencer', 'July 08, 2023', 'computer'),
(747, '349', 'deactivated', '0', '1', 'Sandigan, John Spencer', 'July 10, 2023', 'computer'),
(748, '349', 'user', 'Jacqueline Servida', 'Jacqueline Servida OLD PC', 'Sandigan, John Spencer', 'July 10, 2023', 'computer'),
(749, '451', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 11, 2023', 'computer'),
(750, '451', 'password', '', 'C2307-023', 'Sandigan, John Spencer', 'July 11, 2023', 'computer'),
(751, '112', 'ipAddress', '172.24.35.70', 'Dynamic', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(752, '112', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(753, '112', 'assetTag', '', 'FFFE-0530', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(754, '108', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(755, '108', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(756, '127', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(757, '127', 'assetTag', '', 'FFFE-0626', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(758, '127', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(759, '127', 'password', '', 'gpi-st133', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(760, '430', 'macAddress', '', 'D0-37-45-06-1B-4C', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(761, '430', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(762, '430', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(763, '430', 'password', '', 'C2306-018', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(764, '428', 'macAddress', '', 'D8-5E-D3-C6-8A-31', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(765, '428', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(766, '428', 'password', '', 'C2305-016', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(767, '119', 'macAddress', '40-8D-5C-D3-1F-59', '7C-C2-C6-0A-46-FB', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(768, '119', 'ipAddress', '172.24.33.122', 'Dynamic', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(769, '119', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(770, '119', 'password', '', 'C2208-035', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(771, '109', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(772, '109', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(773, '109', 'password', '', 'gpi-st110', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(774, '125', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(775, '125', 'pctag', '', 'C2111-290', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(776, '125', 'assetTag', '', 'FFFE-0600', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(777, '125', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(778, '125', 'password', '', 'gpi42', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(779, '429', 'macAddress', '', 'D8-5E-D3-C6-27-AC', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(780, '429', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(781, '429', 'password', '', 'C2306-017', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(782, '117', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(783, '117', 'assetTag', '', 'FFFE-0636', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(784, '117', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(785, '107', 'assetTag', '', 'N/A', '', 'July 13, 2023', 'computer'),
(786, '107', 'kaspersky', '0', '1', '', 'July 13, 2023', 'computer'),
(787, '18', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(788, '18', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(789, '18', 'password', '', '6l0ry', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(790, '452', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(791, '124', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(792, '124', 'assetTag', '', 'N/A', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(793, '124', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(794, '124', 'password', '', 'gpi-st113', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(795, '122', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(796, '122', 'assetTag', '', 'N/A', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(797, '122', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(798, '122', 'password', '', 'C2111-287', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(799, '115', 'ipAddress', 'Dynamic', '172.24.33.158', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(800, '115', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(801, '115', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(802, '115', 'kaspersky', '1', '0', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(803, '427', 'macAddress', '', '74-56-3C-1A-8E', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(804, '427', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(805, '427', 'password', '', 'C2305-015', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(806, '114', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(807, '114', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(808, '121', 'user', 'Jacquelyn Gabato', 'Fabrication staff', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(809, '121', 'assetTag', '', 'N/A', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(810, '121', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(811, '121', 'password', '', 'gpi-st110', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(812, '365', 'ipAddress', '192.168.60.181', '172.24.33.168', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(813, '365', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(814, '126', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(815, '126', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(816, '113', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(817, '113', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(818, '425', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(819, '425', 'password', '', 'C2305-013', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(820, '110', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(821, '111', 'email', '', '[email protected]', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(822, '111', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(823, '426', 'ipAddress', '172.24.33.135', '172.24.33.152', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(824, '426', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(825, '426', 'password', '', 'C2306-014', 'Sandigan, John Spencer', 'July 13, 2023', 'computer'),
(826, '43', 'pctag', '', 'WS-GPI273', 'Cedrick James M. Orozo', 'July 14, 2023', 'computer'),
(827, '83', 'user', 'Corazon Caso', 'Sarah Canete', 'Sandigan, John Spencer', 'July 15, 2023', 'computer'),
(828, '83', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 15, 2023', 'computer'),
(829, '83', 'password', '', 'gpi221', 'Sandigan, John Spencer', 'July 15, 2023', 'computer'),
(830, '100', 'user', 'Caselyn Tardio ', 'Jomarie evangelista', 'Sandigan, John Spencer', 'July 15, 2023', 'computer'),
(831, '100', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 15, 2023', 'computer'),
(832, '100', 'password', '', 'gpi192', 'Sandigan, John Spencer', 'July 15, 2023', 'computer'),
(833, '76', 'user', 'Roslyn Manansala', 'Myla Nuga', 'Sandigan, John Spencer', 'July 15, 2023', 'computer'),
(834, '76', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 15, 2023', 'computer'),
(835, '76', 'password', '', 'gpi235', 'Sandigan, John Spencer', 'July 15, 2023', 'computer'),
(836, '98', 'kaspersky', '0', '1', 'Sandigan, John Spencer', 'July 15, 2023', 'computer'),
(837, '98', 'password', '', 'gpi189', 'Sandigan, John Spencer', 'July 15, 2023', 'computer'),
(838, '86', 'user', 'Maricel Delos Santos', 'Marco Pulido', 'Cedrick James M. Orozo', 'July 15, 2023', 'computer'),
(839, '86', 'computerName', 'WS-GPI229', 'C2106-022', 'Cedrick James M. Orozo', 'July 15, 2023', 'computer'),
(840, '86', 'pctag', '', 'C2106-022', 'Cedrick James M. Orozo', 'July 15, 2023', 'computer'),
(841, '86', 'assetTag', '', 'FFFE-0674', 'Cedrick James M. Orozo', 'July 15, 2023', 'computer'),