forked from haarperr/QPixel-2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqpixel.sql
More file actions
4068 lines (3880 loc) · 381 KB
/
qpixel.sql
File metadata and controls
4068 lines (3880 loc) · 381 KB
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
-- --------------------------------------------------------
-- Host: 127.0.0.1
-- Server version: 10.4.24-MariaDB - mariadb.org binary distribution
-- Server OS: Win64
-- HeidiSQL Version: 12.0.0.6468
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
-- Dumping database structure for qpixel
CREATE DATABASE IF NOT EXISTS `qpixel` /*!40100 DEFAULT CHARACTER SET utf8mb4 */;
USE `qpixel`;
-- Dumping structure for table qpixel.adminlogs
CREATE TABLE IF NOT EXISTS `adminlogs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`PlayerName` varchar(50) NOT NULL,
`PlayerHex` varchar(100) NOT NULL,
`Module` varchar(100) NOT NULL,
`Title` text NOT NULL,
`MetaData` text DEFAULT NULL,
`DTInserted` datetime DEFAULT current_timestamp(),
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=880 DEFAULT CHARSET=utf8;
-- Dumping data for table qpixel.adminlogs: ~780 rows (approximately)
INSERT INTO `adminlogs` (`id`, `PlayerName`, `PlayerHex`, `Module`, `Title`, `MetaData`, `DTInserted`) VALUES
(1, '', 'steam:11000013fcd2349', 'Bennys', 'Repair', '{"amount":"176"}', '2022-07-20 16:52:08'),
(2, '', 'steam:11000013fcd2349', 'Bennys', 'Repair', '{"amount":"85"}', '2022-07-20 16:52:25'),
(3, '', 'steam:11000013fcd2349', 'Bennys', 'Repair', '{"amount":"208"}', '2022-07-20 16:53:25'),
(4, '', 'steam:11000013fcd2349', 'Bennys', 'Repair', '{"amount":"88"}', '2022-07-20 17:00:13'),
(5, '', 'steam:11000013fcd2349', 'Bennys', 'Repair', '{"amount":"1000"}', '2022-07-20 17:14:09'),
(6, '', 'steam:11000013fcd2349', 'Bennys', 'Repair', '{"amount":"21"}', '2022-07-20 17:19:45'),
(7, '', 'steam:11000013fcd2349', 'Bennys', 'Repair', '{"amount":"192"}', '2022-07-20 18:27:23'),
(8, '', 'steam:11000013fcd2349', 'Bennys', 'Repair', '{"amount":"57"}', '2022-07-20 18:31:12'),
(9, '', 'steam:11000013fcd2349', 'Bennys', 'Repair', '{"amount":"6"}', '2022-07-21 11:29:04'),
(10, '', 'steam:11000013fcd2349', 'Bennys', 'Repair', '{"amount":"52"}', '2022-07-21 11:34:13'),
(11, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-07-21 11:36:24'),
(12, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-07-21 11:36:28'),
(13, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-07-21 11:36:30'),
(14, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-07-21 11:36:38'),
(15, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-07-21 11:36:42'),
(16, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-07-21 11:36:49'),
(17, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-07-21 11:36:53'),
(18, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-07-21 11:36:57'),
(19, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-07-21 11:37:01'),
(20, '', 'steam:11000013fcd2349', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-07-21 11:37:26'),
(21, '', 'steam:11000013fcd2349', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-07-21 11:37:27'),
(22, '', 'steam:11000013fcd2349', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-07-21 11:37:28'),
(23, '', 'steam:11000013fcd2349', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-07-21 11:37:29'),
(24, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"type":"turbo","amount":"15000"}', '2022-07-21 11:37:30'),
(25, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-07-21 11:37:34'),
(26, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-07-21 11:37:35'),
(27, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-07-21 11:37:38'),
(28, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-07-21 11:37:51'),
(29, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-07-21 11:37:57'),
(30, '', 'steam:11000013fcd2349', 'Civ Jobs', 'Garbage Reward', '{"rubber":"4","plastic":"2"}', '2022-07-24 22:01:25'),
(31, '', 'steam:11000013fcd2349', 'Civ Jobs', 'Garbage Payment', '{"amount":"219"}', '2022-07-24 22:02:08'),
(32, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-07-25 16:47:55'),
(33, '', 'steam:11000013fcd2349', 'Bennys', 'Repair', '{"amount":"8"}', '2022-07-28 09:50:05'),
(34, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-07-30 12:55:48'),
(35, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-07-30 12:56:49'),
(36, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-07-30 12:57:50'),
(37, '', 'steam:11000013fcd2349', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-07-30 12:57:57'),
(38, '', 'steam:11000013fcd2349', 'Bennys', 'Repair', '{"amount":"1000"}', '2022-07-30 13:18:49'),
(39, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-03 18:13:11'),
(40, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-03 18:13:14'),
(41, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-03 18:13:15'),
(42, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-03 18:13:16'),
(43, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-03 18:13:17'),
(44, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-03 18:13:19'),
(45, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-03 18:13:25'),
(46, '', 'steam:110000136904f62', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-03 18:13:28'),
(47, '', 'steam:110000136904f62', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-03 18:13:29'),
(48, '', 'steam:110000136904f62', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-03 18:13:31'),
(49, '', 'steam:110000136904f62', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-03 18:13:33'),
(50, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-08-03 18:13:34'),
(51, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-08-03 18:13:37'),
(52, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-08-03 18:13:45'),
(53, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-03 18:18:01'),
(54, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-03 18:18:10'),
(55, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-03 18:18:11'),
(56, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-03 18:18:16'),
(57, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-03 18:18:17'),
(58, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-03 18:18:19'),
(59, '', 'steam:110000136904f62', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-03 18:18:22'),
(60, '', 'steam:110000136904f62', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-03 18:18:24'),
(61, '', 'steam:110000136904f62', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-03 18:18:25'),
(62, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-08-03 18:18:26'),
(63, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-03 20:31:25'),
(64, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-03 20:31:26'),
(65, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-03 20:31:28'),
(66, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-03 20:31:29'),
(67, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-03 20:31:33'),
(68, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-03 20:31:39'),
(69, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-03 20:31:40'),
(70, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-03 20:31:48'),
(71, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-05 00:47:03'),
(72, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-05 00:49:10'),
(73, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-05 00:49:14'),
(74, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-05 00:49:15'),
(75, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-05 00:49:19'),
(76, '', 'steam:110000136904f62', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-05 00:49:23'),
(77, '', 'steam:110000136904f62', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-05 00:49:24'),
(78, '', 'steam:110000136904f62', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-05 00:49:26'),
(79, '', 'steam:110000136904f62', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-05 00:49:28'),
(80, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-08-05 00:49:30'),
(81, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-08-05 00:49:43'),
(82, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-06 04:02:51'),
(83, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-19 21:47:02'),
(84, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-19 21:47:05'),
(85, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-19 21:47:14'),
(86, '', 'steam:110000136904f62', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-19 21:47:19'),
(87, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-08-19 21:47:24'),
(88, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-08-19 21:47:41'),
(89, '', 'steam:110000136904f62', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-08-19 21:47:49'),
(90, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:45:50'),
(91, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:45:52'),
(92, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:45:58'),
(93, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:46:00'),
(94, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:46:05'),
(95, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:46:08'),
(96, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:46:09'),
(97, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:46:11'),
(98, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:46:13'),
(99, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:46:15'),
(100, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:46:18'),
(101, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:46:23'),
(102, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:46:26'),
(103, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:46:29'),
(104, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:46:33'),
(105, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:46:36'),
(106, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:46:41'),
(107, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:47:05'),
(108, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-08-24 21:47:25'),
(109, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-08-24 21:47:35'),
(110, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-08-24 21:47:38'),
(111, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-08-24 21:48:15'),
(112, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-08-24 21:48:16'),
(113, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-08-24 21:48:21'),
(114, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:48:52'),
(115, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-08-24 21:49:16'),
(116, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-08-24 21:50:31'),
(117, '', 'steam:110000118ef8d05', 'Bennys', 'Repair', '{"amount":"1000"}', '2022-08-24 21:50:42'),
(118, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:51:37'),
(119, '', 'steam:11000014a058bb1', 'Bennys', 'Repair', '{"amount":"24"}', '2022-08-24 21:52:02'),
(120, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-24 21:52:35'),
(121, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 15:11:39'),
(122, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 15:11:42'),
(123, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 15:11:43'),
(124, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 15:11:45'),
(125, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 15:11:49'),
(126, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 15:11:50'),
(127, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 15:11:51'),
(128, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 15:11:52'),
(129, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 15:11:54'),
(130, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 15:11:56'),
(131, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 15:11:58'),
(132, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 15:11:59'),
(133, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 15:12:01'),
(134, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 15:12:03'),
(135, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 15:12:06'),
(136, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 15:12:16'),
(137, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-08-25 15:12:24'),
(138, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:38:31'),
(139, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:38:42'),
(140, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:38:51'),
(141, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:38:58'),
(142, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:39:06'),
(143, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:39:08'),
(144, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:39:12'),
(145, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:39:21'),
(146, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:39:27'),
(147, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:39:42'),
(148, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:39:50'),
(149, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:39:54'),
(150, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:40:03'),
(151, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:40:18'),
(152, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:40:30'),
(153, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:40:45'),
(154, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:40:55'),
(155, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:41:13'),
(156, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-08-25 16:41:32'),
(157, '', 'steam:110000114d6833e', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:43:28'),
(158, '', 'steam:110000114d6833e', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:43:40'),
(159, '', 'steam:110000114d6833e', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:43:45'),
(160, '', 'steam:110000114d6833e', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:44:16'),
(161, '', 'steam:110000114d6833e', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:44:21'),
(162, '', 'steam:110000114d6833e', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:44:28'),
(163, '', 'steam:110000114d6833e', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:44:45'),
(164, '', 'steam:110000114d6833e', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-08-25 16:45:22'),
(165, '', 'steam:110000114d6833e', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-08-25 16:45:47'),
(166, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"wheels","amount":"400"}', '2022-08-25 19:31:29'),
(167, '', 'steam:110000115378acb', 'Bennys', 'Repair', '{"amount":"13"}', '2022-08-25 21:09:20'),
(168, '', 'steam:110000115378acb', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 21:10:13'),
(169, '', 'steam:110000115378acb', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 21:10:14'),
(170, '', 'steam:110000115378acb', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 21:10:16'),
(171, '', 'steam:110000115378acb', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 21:10:25'),
(172, '', 'steam:110000115378acb', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 21:10:34'),
(173, '', 'steam:110000115378acb', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 21:10:46'),
(174, '', 'steam:110000115378acb', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 21:10:51'),
(175, '', 'steam:110000115378acb', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 21:10:56'),
(176, '', 'steam:110000115378acb', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 21:11:00'),
(177, '', 'steam:110000115378acb', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 21:11:19'),
(178, '', 'steam:110000115378acb', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 21:11:24'),
(179, '', 'steam:110000115378acb', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 21:11:30'),
(180, '', 'steam:110000115378acb', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 21:11:36'),
(181, '', 'steam:110000115378acb', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 21:11:46'),
(182, '', 'steam:110000118ef8d05', 'Civ Jobs', 'Garbage Reward', '{"plastic":"3","rubber":"5"}', '2022-08-25 21:31:55'),
(183, '', 'steam:110000118ef8d05', 'Civ Jobs', 'Garbage Reward', '{"plastic":"2","rubber":"3"}', '2022-08-25 21:33:15'),
(184, '', 'steam:11000014a058bb1', 'Civ Jobs', 'Garbage Reward', '{"plastic":"4","rubber":"3"}', '2022-08-25 21:33:43'),
(185, '', 'steam:110000118ef8d05', 'Civ Jobs', 'Garbage Reward', '{"plastic":"4","rubber":"2"}', '2022-08-25 21:33:46'),
(186, '', 'steam:11000014a058bb1', 'Civ Jobs', 'Garbage Payment', '{"amount":"219"}', '2022-08-25 21:35:28'),
(187, '', 'steam:110000118ef8d05', 'Civ Jobs', 'Garbage Payment', '{"amount":"216"}', '2022-08-25 21:35:37'),
(188, '', 'steam:11000013d2c1be8', 'Civ Jobs', 'Garbage Payment', '{"amount":"279"}', '2022-08-25 21:39:29'),
(189, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"160"}', '2022-08-25 22:13:18'),
(190, '', 'steam:11000013d2c1be8', 'Bennys', 'Repair', '{"amount":"456"}', '2022-08-25 22:14:44'),
(191, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-08-25 22:15:25'),
(192, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"8"}', '2022-08-25 22:19:50'),
(193, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"plateindex","amount":"1000"}', '2022-08-25 22:20:07'),
(194, '', 'steam:11000013d2c1be8', 'Bennys', 'Repair', '{"amount":"162"}', '2022-08-25 22:29:56'),
(195, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"wheels","amount":"400"}', '2022-08-25 22:31:03'),
(196, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"plateindex","amount":"1000"}', '2022-08-25 22:31:16'),
(197, '', 'steam:11000014a058bb1', 'Bennys', 'Repair', '{"amount":"9"}', '2022-08-25 22:32:05'),
(198, '', 'steam:11000013d2c1be8', 'Bennys', 'Repair', '{"amount":"115"}', '2022-08-25 22:33:58'),
(199, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"23"}', '2022-08-25 22:41:02'),
(200, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"19"}', '2022-08-25 22:43:30'),
(201, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-25 22:43:49'),
(202, '', 'steam:11000013d2c1be8', 'Bennys', 'Repair', '{"amount":"5"}', '2022-08-25 22:47:13'),
(203, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 22:47:40'),
(204, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 22:47:59'),
(205, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"31"}', '2022-08-25 22:48:24'),
(206, '', 'steam:11000013d2c1be8', 'Bennys', 'Repair', '{"amount":"27"}', '2022-08-25 22:48:50'),
(207, '', 'steam:110000107aff8a1', 'Spikes', 'Add Spikes', '{"heading":"103.45913696289063","pos":"[{\\"x\\":435.3526611328125,\\"y\\":-1019.0847778320313,\\"z\\":28.93097877502441},{\\"x\\":431.94879150390627,\\"y\\":-1019.8994140625,\\"z\\":28.93097877502441},{\\"x\\":428.5448913574219,\\"y\\":-1020.7140502929688,\\"z\\":28.93097877502441}]"}', '2022-08-25 23:28:58'),
(208, '', 'steam:110000107aff8a1', 'Spikes', 'Add Spikes', '{"heading":"170.0087127685547","pos":"[{\\"x\\":433.7926330566406,\\"y\\":-1021.7879028320313,\\"z\\":28.98338890075683},{\\"x\\":433.18536376953127,\\"y\\":-1025.23486328125,\\"z\\":28.98338890075683},{\\"x\\":432.578125,\\"y\\":-1028.6817626953126,\\"z\\":28.98338890075683}]"}', '2022-08-25 23:29:37'),
(209, '', 'steam:110000107aff8a1', 'Spikes', 'Add Spikes', '{"heading":"11.43415546417236","pos":"[{\\"x\\":429.3021240234375,\\"y\\":-1028.6593017578126,\\"z\\":29.10320854187011},{\\"x\\":428.6082763671875,\\"y\\":-1025.228759765625,\\"z\\":29.10320854187011},{\\"x\\":427.9144287109375,\\"y\\":-1021.7982788085938,\\"z\\":29.10320854187011}]"}', '2022-08-25 23:30:19'),
(210, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:45:20'),
(211, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:45:33'),
(212, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:45:41'),
(213, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:45:46'),
(214, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:45:49'),
(215, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:45:54'),
(216, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:45:57'),
(217, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:46:03'),
(218, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:46:08'),
(219, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:46:25'),
(220, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:46:47'),
(221, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-08-25 23:46:58'),
(222, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-08-25 23:47:30'),
(223, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"96"}', '2022-08-25 23:47:47'),
(224, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:48:06'),
(225, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:48:08'),
(226, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:48:11'),
(227, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:48:16'),
(228, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:48:20'),
(229, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:48:42'),
(230, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:48:43'),
(231, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:48:44'),
(232, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:48:46'),
(233, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:48:48'),
(234, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:48:58'),
(235, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:49:00'),
(236, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:49:02'),
(237, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:49:04'),
(238, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:49:06'),
(239, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-25 23:49:12'),
(240, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-08-25 23:49:20'),
(241, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 02:24:21'),
(242, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 02:24:26'),
(243, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 02:24:30'),
(244, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 02:24:33'),
(245, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 02:24:35'),
(246, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 02:24:36'),
(247, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 02:24:38'),
(248, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 02:24:40'),
(249, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 02:24:42'),
(250, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 02:24:45'),
(251, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 02:24:48'),
(252, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 02:24:49'),
(253, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 02:24:54'),
(254, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-08-30 02:25:02'),
(255, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 03:08:45'),
(256, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 03:08:52'),
(257, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 03:08:53'),
(258, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 03:08:55'),
(259, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 03:08:56'),
(260, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 03:08:57'),
(261, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 03:08:59'),
(262, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 03:09:01'),
(263, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 03:09:02'),
(264, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 03:09:03'),
(265, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 03:09:05'),
(266, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 03:09:07'),
(267, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 03:09:13'),
(268, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-08-30 03:09:20'),
(269, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"1"}', '2022-08-30 04:40:34'),
(270, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 04:45:06'),
(271, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 04:45:08'),
(272, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 04:45:10'),
(273, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 04:45:13'),
(274, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 04:45:15'),
(275, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 04:45:17'),
(276, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 04:45:19'),
(277, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 04:45:21'),
(278, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 04:45:23'),
(279, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 04:45:24'),
(280, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-08-30 04:45:36'),
(281, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"headlights","amount":"100"}', '2022-08-30 04:45:39'),
(282, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"xenoncolours","amount":"500"}', '2022-08-30 04:45:41'),
(283, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"wheels","amount":"400"}', '2022-08-30 04:45:55'),
(284, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"plateindex","amount":"1000"}', '2022-08-30 04:45:59'),
(285, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 05:15:01'),
(286, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 05:15:10'),
(287, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 05:15:14'),
(288, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 05:15:20'),
(289, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 05:15:23'),
(290, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 05:15:25'),
(291, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 05:15:28'),
(292, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 05:15:35'),
(293, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 05:15:39'),
(294, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 05:15:43'),
(295, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 05:16:19'),
(296, '', 'steam:11000014a058bb1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-30 05:16:24'),
(297, '', 'steam:11000014a058bb1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-30 05:16:26'),
(298, '', 'steam:11000014a058bb1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-30 05:16:29'),
(299, '', 'steam:11000014a058bb1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-30 05:16:34'),
(300, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"turbo","amount":"15000"}', '2022-08-30 05:16:36'),
(301, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-08-30 05:17:34'),
(302, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 05:19:22'),
(303, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-08-30 05:20:10'),
(304, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-08-30 05:20:42'),
(305, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-08-30 05:20:50'),
(306, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-08-30 05:20:51'),
(307, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 05:21:02'),
(308, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 05:21:04'),
(309, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-08-30 05:21:07'),
(310, '', 'steam:11000014a058bb1', 'Bennys', 'Repair', '{"amount":"269"}', '2022-08-30 05:30:20'),
(311, '', 'steam:11000014a058bb1', 'Bennys', 'Repair', '{"amount":"395"}', '2022-08-30 06:02:19'),
(312, '', 'steam:11000014a058bb1', 'Bennys', 'Repair', '{"amount":"3"}', '2022-08-30 06:04:17'),
(313, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"3"}', '2022-08-31 20:28:40'),
(314, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"wheels","amount":"400"}', '2022-08-31 20:31:23'),
(315, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-08-31 20:31:28'),
(316, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-08-31 22:56:56'),
(317, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-04 20:01:14'),
(318, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:18:44'),
(319, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:18:56'),
(320, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:19:02'),
(321, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:19:14'),
(322, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:19:18'),
(323, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:19:21'),
(324, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:19:28'),
(325, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:19:38'),
(326, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:19:41'),
(327, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:19:44'),
(328, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:19:52'),
(329, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:20:01'),
(330, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-09-05 00:20:25'),
(331, '', 'steam:110000118ef8d05', 'Bennys', 'Repair', '{"amount":"72"}', '2022-09-05 00:42:08'),
(332, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:42:34'),
(333, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:42:39'),
(334, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"277"}', '2022-09-05 00:53:30'),
(335, '', 'steam:11000013d2c1be8', 'Bennys', 'Repair', '{"amount":"268"}', '2022-09-05 00:53:50'),
(336, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:59:49'),
(337, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:59:51'),
(338, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:59:53'),
(339, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:59:55'),
(340, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:59:57'),
(341, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 00:59:58'),
(342, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 01:00:01'),
(343, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 01:00:02'),
(344, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 01:00:03'),
(345, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 01:00:05'),
(346, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 01:00:07'),
(347, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 01:00:08'),
(348, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 01:00:10'),
(349, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 01:00:12'),
(350, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-05 01:00:16'),
(351, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-09-05 01:00:23'),
(352, '', 'steam:11000013d2c1be8', 'Bennys', 'Repair', '{"amount":"47"}', '2022-09-06 04:19:00'),
(353, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"wheels"}', '2022-09-06 04:19:55'),
(354, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-06 04:21:01'),
(355, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"1000","type":"plateindex"}', '2022-09-06 04:21:08'),
(356, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:37:03'),
(357, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:37:06'),
(358, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:37:08'),
(359, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:37:10'),
(360, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:37:12'),
(361, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:37:13'),
(362, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:37:16'),
(363, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:37:18'),
(364, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:37:19'),
(365, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:37:21'),
(366, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:37:23'),
(367, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:37:24'),
(368, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:37:25'),
(369, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:37:27'),
(370, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:37:30'),
(371, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-06 04:37:35'),
(372, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:44:35'),
(373, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:44:42'),
(374, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:44:47'),
(375, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:44:51'),
(376, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:44:54'),
(377, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:44:58'),
(378, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:45:03'),
(379, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:45:06'),
(380, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:45:12'),
(381, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:45:14'),
(382, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:45:16'),
(383, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:45:19'),
(384, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:45:23'),
(385, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:45:37'),
(386, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-06 04:45:47'),
(387, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"4"}', '2022-09-06 04:47:23'),
(388, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:47:40'),
(389, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:47:42'),
(390, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:47:45'),
(391, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:47:49'),
(392, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:47:51'),
(393, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:47:53'),
(394, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:47:55'),
(395, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:48:04'),
(396, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-06 04:48:15'),
(397, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"5"}', '2022-09-06 08:20:53'),
(398, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:24:03'),
(399, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:24:12'),
(400, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:24:16'),
(401, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:24:22'),
(402, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:24:23'),
(403, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:24:26'),
(404, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:24:35'),
(405, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-09-07 00:24:57'),
(406, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-09-07 00:28:24'),
(407, '', 'steam:110000114d6833e', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:31:29'),
(408, '', 'steam:110000114d6833e', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:31:38'),
(409, '', 'steam:110000114d6833e', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:31:44'),
(410, '', 'steam:110000114d6833e', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:31:52'),
(411, '', 'steam:110000114d6833e', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:31:58'),
(412, '', 'steam:110000114d6833e', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:32:06'),
(413, '', 'steam:11000014a058bb1', 'Bennys', 'Repair', '{"amount":"78"}', '2022-09-07 00:34:21'),
(414, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:35:02'),
(415, '', 'steam:110000118ef8d05', 'Bennys', 'Repair', '{"amount":"13"}', '2022-09-07 00:52:13'),
(416, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:52:29'),
(417, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:52:33'),
(418, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:52:36'),
(419, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:53:03'),
(420, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-09-07 00:53:17'),
(421, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:53:25'),
(422, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:53:28'),
(423, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:53:30'),
(424, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:53:33'),
(425, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:53:42'),
(426, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:53:56'),
(427, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:54:02'),
(428, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:54:31'),
(429, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-07 00:56:22'),
(430, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-07 23:28:05'),
(431, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-07 23:28:11'),
(432, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-07 23:28:31'),
(433, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-07 23:28:33'),
(434, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-07 23:28:37'),
(435, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-07 23:28:39'),
(436, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-07 23:28:41'),
(437, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-07 23:28:43'),
(438, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-07 23:28:45'),
(439, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-07 23:28:47'),
(440, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-07 23:28:53'),
(441, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"80"}', '2022-09-12 05:28:32'),
(442, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 07:50:29'),
(443, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 07:50:34'),
(444, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 07:50:37'),
(445, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 07:50:42'),
(446, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 07:50:51'),
(447, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 07:50:54'),
(448, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-12 07:50:58'),
(449, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-12 07:51:01'),
(450, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-12 07:51:03'),
(451, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-12 07:51:05'),
(452, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"turbo","amount":"15000"}', '2022-09-12 07:51:10'),
(453, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-09-12 07:51:17'),
(454, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-09-12 07:51:19'),
(455, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"neonside","amount":"100"}', '2022-09-12 07:51:22'),
(456, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"neonside","amount":"100"}', '2022-09-12 07:51:24'),
(457, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"neonside","amount":"100"}', '2022-09-12 07:51:26'),
(458, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"neonside","amount":"100"}', '2022-09-12 07:51:27'),
(459, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"neoncolours","amount":"500"}', '2022-09-12 07:51:30'),
(460, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"xenoncolours","amount":"500"}', '2022-09-12 07:51:41'),
(461, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"wheels","amount":"400"}', '2022-09-12 07:51:58'),
(462, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"plateindex","amount":"1000"}', '2022-09-12 07:52:13'),
(463, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"wheelsmoke","amount":"400"}', '2022-09-12 07:54:07'),
(464, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"customwheels","amount":"600"}', '2022-09-12 07:54:13'),
(465, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"customwheels","amount":"600"}', '2022-09-12 07:54:15'),
(466, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 08:01:04'),
(467, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 08:01:14'),
(468, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 08:01:19'),
(469, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 08:01:27'),
(470, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 08:01:34'),
(471, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 08:01:49'),
(472, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 08:02:20'),
(473, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-12 08:02:24'),
(474, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-12 08:02:25'),
(475, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-12 08:02:31'),
(476, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-12 08:02:34'),
(477, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"turbo","amount":"15000"}', '2022-09-12 08:02:36'),
(478, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-09-12 08:02:46'),
(479, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-09-12 08:03:24'),
(480, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"wheels","amount":"400"}', '2022-09-12 08:03:48'),
(481, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"plateindex","amount":"1000"}', '2022-09-12 08:03:53'),
(482, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 08:07:54'),
(483, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 08:19:14'),
(484, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-12 08:19:26'),
(485, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-12 08:19:28'),
(486, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-12 08:19:29'),
(487, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-12 08:19:32'),
(488, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"turbo","amount":"15000"}', '2022-09-12 08:19:34'),
(489, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-09-12 08:19:58'),
(490, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"neonside","amount":"100"}', '2022-09-12 08:20:03'),
(491, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"neonside","amount":"100"}', '2022-09-12 08:20:04'),
(492, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"neonside","amount":"100"}', '2022-09-12 08:20:05'),
(493, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"neonside","amount":"100"}', '2022-09-12 08:20:07'),
(494, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"neoncolours","amount":"500"}', '2022-09-12 08:20:11'),
(495, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"headlights","amount":"100"}', '2022-09-12 08:20:17'),
(496, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"xenoncolours","amount":"500"}', '2022-09-12 08:20:23'),
(497, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"wheels","amount":"400"}', '2022-09-12 08:21:05'),
(498, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 08:31:13'),
(499, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 08:31:27'),
(500, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 08:31:32'),
(501, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 08:31:38'),
(502, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 08:31:43'),
(503, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-12 08:31:50'),
(504, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-12 08:32:02'),
(505, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-12 08:32:03'),
(506, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-12 08:32:05'),
(507, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-12 08:32:07'),
(508, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"turbo","amount":"15000"}', '2022-09-12 08:32:09'),
(509, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-09-12 08:32:30'),
(510, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-09-12 08:32:37'),
(511, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"neonside","amount":"100"}', '2022-09-12 08:32:40'),
(512, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"neonside","amount":"100"}', '2022-09-12 08:32:41'),
(513, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"neonside","amount":"100"}', '2022-09-12 08:32:43'),
(514, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"neonside","amount":"100"}', '2022-09-12 08:32:44'),
(515, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"headlights","amount":"100"}', '2022-09-12 08:32:51'),
(516, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"xenoncolours","amount":"500"}', '2022-09-12 08:32:55'),
(517, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"wheels","amount":"400"}', '2022-09-12 08:33:46'),
(518, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"wheelsmoke","amount":"400"}', '2022-09-12 08:34:04'),
(519, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"type":"plateindex","amount":"1000"}', '2022-09-12 08:34:09'),
(520, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 00:59:25'),
(521, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 00:59:28'),
(522, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 00:59:58'),
(523, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:00:00'),
(524, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:00:02'),
(525, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:00:03'),
(526, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:00:05'),
(527, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-09-13 01:00:07'),
(528, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-13 01:00:32'),
(529, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:00:35'),
(530, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:00:36'),
(531, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:00:37'),
(532, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:00:39'),
(533, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"neoncolours"}', '2022-09-13 01:00:46'),
(534, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"headlights"}', '2022-09-13 01:00:50'),
(535, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"xenoncolours"}', '2022-09-13 01:00:55'),
(536, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"wheels"}', '2022-09-13 01:01:06'),
(537, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"wheelsmoke"}', '2022-09-13 01:01:15'),
(538, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"1000","type":"plateindex"}', '2022-09-13 01:01:21'),
(539, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:02:16'),
(540, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:04:21'),
(541, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:04:23'),
(542, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:04:25'),
(543, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:04:52'),
(544, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:05:00'),
(545, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:05:01'),
(546, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:05:02'),
(547, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:05:03'),
(548, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-09-13 01:05:05'),
(549, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-13 01:05:15'),
(550, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:05:17'),
(551, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:05:18'),
(552, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:05:19'),
(553, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:05:20'),
(554, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"neoncolours"}', '2022-09-13 01:05:23'),
(555, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"headlights"}', '2022-09-13 01:05:28'),
(556, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"xenoncolours"}', '2022-09-13 01:05:32'),
(557, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"wheelsmoke"}', '2022-09-13 01:05:37'),
(558, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"wheels"}', '2022-09-13 01:05:48'),
(559, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"1000","type":"plateindex"}', '2022-09-13 01:05:54'),
(560, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:18:33'),
(561, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:18:35'),
(562, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:18:36'),
(563, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:18:37'),
(564, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:18:39'),
(565, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:18:44'),
(566, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:18:48'),
(567, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:18:49'),
(568, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:18:50'),
(569, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:18:51'),
(570, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-09-13 01:18:55'),
(571, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-13 01:19:03'),
(572, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:19:06'),
(573, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:19:07'),
(574, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:19:08'),
(575, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:19:09'),
(576, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"neoncolours"}', '2022-09-13 01:19:11'),
(577, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"headlights"}', '2022-09-13 01:19:19'),
(578, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"xenoncolours"}', '2022-09-13 01:19:22'),
(579, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"wheelsmoke"}', '2022-09-13 01:19:27'),
(580, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"wheels"}', '2022-09-13 01:19:34'),
(581, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"1000","type":"plateindex"}', '2022-09-13 01:19:38'),
(582, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:23:28'),
(583, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:23:31'),
(584, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:23:33'),
(585, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:23:35'),
(586, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:23:50'),
(587, '', 'steam:11000014a058bb1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:23:53'),
(588, '', 'steam:11000014a058bb1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:23:55'),
(589, '', 'steam:11000014a058bb1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:23:57'),
(590, '', 'steam:11000014a058bb1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:23:59'),
(591, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-09-13 01:24:01'),
(592, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-13 01:24:16'),
(593, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:24:22'),
(594, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:24:23'),
(595, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:24:25'),
(596, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:24:27'),
(597, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"500","type":"neoncolours"}', '2022-09-13 01:24:35'),
(598, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"100","type":"headlights"}', '2022-09-13 01:24:40'),
(599, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"500","type":"xenoncolours"}', '2022-09-13 01:24:54'),
(600, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:58:37'),
(601, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:58:39'),
(602, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:58:40'),
(603, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:58:41'),
(604, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:58:42'),
(605, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-13 01:58:45'),
(606, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:58:48'),
(607, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:58:49'),
(608, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:58:50'),
(609, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-13 01:58:51'),
(610, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-09-13 01:58:52'),
(611, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-13 01:59:00'),
(612, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:59:02'),
(613, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:59:04'),
(614, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:59:05'),
(615, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-13 01:59:06'),
(616, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"neoncolours"}', '2022-09-13 01:59:09'),
(617, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"headlights"}', '2022-09-13 01:59:12'),
(618, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"xenoncolours"}', '2022-09-13 01:59:16'),
(619, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"wheelsmoke"}', '2022-09-13 01:59:22'),
(620, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"wheels"}', '2022-09-13 01:59:29'),
(621, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"1000","type":"plateindex"}', '2022-09-13 01:59:33'),
(622, '', 'steam:11000014a058bb1', 'Bennys', 'Repair', '{"amount":"33"}', '2022-09-13 04:19:13'),
(623, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-13 05:58:23'),
(624, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-13 05:58:29'),
(625, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-13 05:58:34'),
(626, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-13 05:58:39'),
(627, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-13 05:58:41'),
(628, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-13 05:58:43'),
(629, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-13 05:58:45'),
(630, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-13 05:58:47'),
(631, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-13 05:58:48'),
(632, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-13 05:58:51'),
(633, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-13 05:58:55'),
(634, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"windowtint","amount":"400"}', '2022-09-13 05:59:13'),
(635, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"89"}', '2022-09-14 23:55:20'),
(636, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-14 23:55:37'),
(637, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-14 23:55:39'),
(638, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-14 23:55:42'),
(639, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-14 23:55:44'),
(640, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-14 23:57:02'),
(641, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-14 23:57:10'),
(642, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-14 23:57:10'),
(643, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 00:06:39'),
(644, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 00:06:52'),
(645, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 00:06:58'),
(646, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 00:07:00'),
(647, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 00:07:03'),
(648, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 00:07:05'),
(649, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 00:07:07'),
(650, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 00:07:10'),
(651, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 00:07:11'),
(652, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 00:07:13'),
(653, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 00:07:28'),
(654, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 00:07:31'),
(655, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 00:07:32'),
(656, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 00:07:47'),
(657, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 00:07:52'),
(658, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 00:07:52'),
(659, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 00:08:01'),
(660, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-15 00:08:05'),
(661, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"4"}', '2022-09-15 00:14:24'),
(662, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 00:29:13'),
(663, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-15 00:30:30'),
(664, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 00:30:40'),
(665, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 00:30:44'),
(666, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 00:31:26'),
(667, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 00:31:32'),
(668, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 00:34:03'),
(669, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-15 01:49:54'),
(670, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-15 01:49:58'),
(671, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-15 01:50:04'),
(672, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-15 01:50:06'),
(673, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-15 01:50:10'),
(674, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-15 01:50:11'),
(675, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-15 01:50:13'),
(676, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-15 01:50:15'),
(677, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-15 01:50:17'),
(678, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-15 01:50:19'),
(679, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-15 01:50:44'),
(680, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-15 01:55:33'),
(681, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"26"}', '2022-09-15 02:08:25'),
(682, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-09-15 02:08:51'),
(683, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-09-15 02:08:55'),
(684, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-09-15 02:08:57'),
(685, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-09-15 02:09:00'),
(686, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"respray","amount":"500"}', '2022-09-15 02:09:03'),
(687, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"type":"cosmetics","amount":"400"}', '2022-09-15 02:09:34'),
(688, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"16"}', '2022-09-15 02:17:40'),
(689, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"15"}', '2022-09-15 02:36:26'),
(690, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 02:37:21'),
(691, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 02:37:36'),
(692, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 02:37:40'),
(693, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 02:38:19'),
(694, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 02:58:31'),
(695, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"27"}', '2022-09-15 03:07:29'),
(696, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:07:43'),
(697, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:08:03'),
(698, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:08:06'),
(699, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:08:08'),
(700, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:08:11'),
(701, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:08:16'),
(702, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:08:17'),
(703, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:08:19'),
(704, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:08:20'),
(705, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:08:22'),
(706, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:08:24'),
(707, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:08:25'),
(708, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:08:27'),
(709, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 03:08:42'),
(710, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 03:08:45'),
(711, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 03:08:46'),
(712, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-15 03:08:55'),
(713, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:15:03'),
(714, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:15:08'),
(715, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:15:11'),
(716, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:15:13'),
(717, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:15:25'),
(718, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 03:15:31'),
(719, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 03:15:49'),
(720, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 03:16:00'),
(721, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-15 03:16:18'),
(722, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-15 03:32:29'),
(723, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 04:53:58'),
(724, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 04:54:07'),
(725, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 04:54:11'),
(726, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 04:54:14'),
(727, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 04:54:17'),
(728, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 04:54:23'),
(729, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 04:54:30'),
(730, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 04:54:31'),
(731, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 04:54:32'),
(732, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 04:54:34'),
(733, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-09-15 04:54:35'),
(734, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-15 04:54:43'),
(735, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-15 04:54:45'),
(736, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-15 04:54:46'),
(737, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-15 04:54:47'),
(738, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-15 04:54:49'),
(739, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"neoncolours"}', '2022-09-15 04:54:51'),
(740, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"headlights"}', '2022-09-15 04:54:55'),
(741, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"xenoncolours"}', '2022-09-15 04:54:57'),
(742, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"wheels"}', '2022-09-15 04:56:14'),
(743, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"wheelsmoke"}', '2022-09-15 04:58:04'),
(744, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"1000","type":"plateindex"}', '2022-09-15 04:58:13'),
(745, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:19:51'),
(746, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:19:53'),
(747, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:19:55'),
(748, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:19:59'),
(749, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:20:01'),
(750, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:20:02'),
(751, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:20:04'),
(752, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:20:11'),
(753, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:20:15'),
(754, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:20:17'),
(755, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:20:18'),
(756, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:20:19'),
(757, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:20:20'),
(758, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:20:23'),
(759, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:20:24'),
(760, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:20:26'),
(761, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:20:28'),
(762, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:20:34'),
(763, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-15 05:20:44'),
(764, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:24:38'),
(765, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 05:24:48'),
(766, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 05:24:53'),
(767, '', 'steam:110000118ef8d05', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-15 05:24:54'),
(768, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:24:56'),
(769, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:25:07'),
(770, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:25:09'),
(771, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:25:13'),
(772, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:25:16'),
(773, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:25:18'),
(774, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:25:21'),
(775, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:25:28'),
(776, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:25:40'),
(777, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:25:42'),
(778, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:25:44'),
(779, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:25:46'),
(780, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:26:12'),
(781, '', 'steam:11000014a058bb1', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-15 05:26:31'),
(782, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:28:05'),
(783, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:28:17'),
(784, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:28:19'),
(785, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:28:23'),
(786, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 05:28:26'),
(787, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 05:28:27'),
(788, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 05:28:29'),
(789, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 05:28:30'),
(790, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-09-15 05:28:32'),
(791, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-15 05:28:45'),
(792, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-15 05:28:47'),
(793, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-15 05:28:48'),
(794, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-15 05:28:49'),
(795, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-15 05:28:51'),
(796, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"neoncolours"}', '2022-09-15 05:28:54'),
(797, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"headlights"}', '2022-09-15 05:28:57'),
(798, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"xenoncolours"}', '2022-09-15 05:29:02'),
(799, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"wheels"}', '2022-09-15 05:29:26'),
(800, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"wheelsmoke"}', '2022-09-15 05:29:32'),
(801, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"1000","type":"plateindex"}', '2022-09-15 05:29:37'),
(802, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:43:35'),
(803, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:43:43'),
(804, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:43:48'),
(805, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:43:53'),
(806, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:43:55'),
(807, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:44:01'),
(808, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:44:23'),
(809, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 05:44:25'),
(810, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 05:44:26'),
(811, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 05:44:28'),
(812, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 05:44:29'),
(813, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-09-15 05:44:31'),
(814, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:44:38'),
(815, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-15 05:44:46'),
(816, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"100","type":"headlights"}', '2022-09-15 05:44:49'),
(817, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"xenoncolours"}', '2022-09-15 05:44:51'),
(818, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"wheels"}', '2022-09-15 05:45:07'),
(819, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"1000","type":"plateindex"}', '2022-09-15 05:45:11'),
(820, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:47:11'),
(821, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:47:15'),
(822, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:47:17'),
(823, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:47:18'),
(824, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:47:29'),
(825, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 05:47:32'),
(826, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 05:47:34'),
(827, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 05:47:35'),
(828, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 05:47:36'),
(829, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 05:47:37'),
(830, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-09-15 05:47:39'),
(831, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-15 05:47:44'),
(832, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-15 05:47:47'),
(833, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-15 05:47:48'),
(834, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-15 05:47:49'),
(835, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-15 05:47:50'),
(836, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"neoncolours"}', '2022-09-15 05:47:51'),
(837, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"neoncolours"}', '2022-09-15 05:47:57'),
(838, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"headlights"}', '2022-09-15 05:48:01'),
(839, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"xenoncolours"}', '2022-09-15 05:48:06'),
(840, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"wheels"}', '2022-09-15 05:48:27'),
(841, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"wheelsmoke"}', '2022-09-15 05:48:33'),
(842, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"1000","type":"plateindex"}', '2022-09-15 05:48:37'),
(843, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 06:07:01'),
(844, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 06:07:07'),
(845, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 06:07:42'),
(846, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-15 06:08:21'),
(847, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 06:08:24'),
(848, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 06:08:25'),
(849, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 06:08:29'),
(850, '', 'steam:11000013d2c1be8', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-15 06:08:31'),
(851, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-09-15 06:08:33'),
(852, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"windowtint"}', '2022-09-15 06:08:49'),
(853, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-15 06:08:51'),
(854, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-15 06:08:52'),
(855, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-15 06:08:54'),
(856, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"neonside"}', '2022-09-15 06:08:55'),
(857, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"100","type":"headlights"}', '2022-09-15 06:08:58'),
(858, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"500","type":"xenoncolours"}', '2022-09-15 06:09:03'),
(859, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"400","type":"wheels"}', '2022-09-15 06:09:32'),
(860, '', 'steam:11000013d2c1be8', 'Bennys', 'Other', '{"amount":"1000","type":"plateindex"}', '2022-09-15 06:09:38'),
(861, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-18 13:09:46'),
(862, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-18 13:09:47'),
(863, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-18 13:09:48'),
(864, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-18 13:09:51'),
(865, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-09-18 13:09:52'),
(866, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-20 16:53:22'),
(867, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-20 16:53:24'),
(868, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-20 16:53:25'),
(869, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-20 16:53:26'),
(870, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-20 16:53:31'),
(871, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-20 16:53:34'),
(872, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-20 16:53:35'),
(873, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-20 16:53:36'),
(874, '', 'steam:110000107aff8a1', 'Bennys', 'Performance', '{"amount":"10450"}', '2022-09-20 16:53:37'),
(875, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"15000","type":"turbo"}', '2022-09-20 16:53:39'),
(876, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"cosmetics"}', '2022-09-20 16:53:51'),
(877, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"400","type":"wheels"}', '2022-09-22 11:58:59'),
(878, '', 'steam:110000107aff8a1', 'Bennys', 'Other', '{"amount":"500","type":"respray"}', '2022-09-22 11:59:16'),
(879, '', 'steam:110000107aff8a1', 'Bennys', 'Repair', '{"amount":"4"}', '2022-10-01 09:23:40');
-- Dumping structure for table qpixel.bank_transactions
CREATE TABLE IF NOT EXISTS `bank_transactions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(40) NOT NULL,
`sender` varchar(50) NOT NULL,
`target` varchar(50) NOT NULL,
`label` varchar(255) NOT NULL DEFAULT '',
`amount` int(11) NOT NULL,
`iden` varchar(50) NOT NULL DEFAULT '',
`type` varchar(50) NOT NULL DEFAULT 'income',
`date` varchar(50) DEFAULT NULL,
`business_id` varchar(255) DEFAULT NULL,
`transaction_id` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4;
-- Dumping data for table qpixel.bank_transactions: ~8 rows (approximately)
INSERT INTO `bank_transactions` (`id`, `identifier`, `sender`, `target`, `label`, `amount`, `iden`, `type`, `date`, `business_id`, `transaction_id`) VALUES
(34, '0', 'Tuner Shop', 'Karxi Deving', 'Thanks for your order at tuner_shop', 6, 'PURCHASE', 'pos', 'Tue Sep 20 16:00:28 2022', 'tuner_shop', 'd33c3101-b059-41ec-9dba-56d48d326572'),
(35, '19', 'Karxi Deving', 'Tuner Shop', 'Thanks for your order at tuner_shop', 6, 'PURCHASE', 'neg', 'Tue Sep 20 16:00:28 2022', NULL, 'd33c3101-b059-41ec-9dba-56d48d326572'),
(36, '0', 'Tuner Shop', 'Karxi Deving', 'Thanks for your order at Tuner Shop', 75, 'PURCHASE', 'pos', 'Tue Sep 20 16:04:32 2022', 'tuner_shop', 'c7f4a230-5e01-42e2-8683-c8752dee58b5'),
(37, '19', 'Karxi Deving', 'Tuner Shop', 'Thanks for your order at Tuner Shop', 75, 'PURCHASE', 'neg', 'Tue Sep 20 16:04:32 2022', NULL, 'c7f4a230-5e01-42e2-8683-c8752dee58b5'),
(38, '0', 'Tuner Shop', 'Karxi Deving', 'Purchase made by Karxi Deving', 63, 'PURCHASE', 'pos', 'Tue Sep 20 16:05:22 2022', 'tuner_shop', '83d73a4b-0767-4568-8f44-0cc26c9ce3ee'),
(39, '19', 'Karxi Deving', 'Tuner Shop', 'Thanks for your order at Tuner Shop', 63, 'PURCHASE', 'neg', 'Tue Sep 20 16:05:22 2022', NULL, '83d73a4b-0767-4568-8f44-0cc26c9ce3ee'),
(40, '0', 'Tuner Shop', 'Karxi Deving', 'Purchase made by Karxi Deving', 575, 'PURCHASE', 'pos', 'Tue Sep 20 17:33:33 2022', 'tuner_shop', '4291d5ae-3542-4eea-af91-741aa929e222'),
(41, '19', 'Karxi Deving', 'Tuner Shop', 'Thanks for your order at Tuner Shop', 575, 'PURCHASE', 'neg', 'Tue Sep 20 17:33:33 2022', NULL, '4291d5ae-3542-4eea-af91-741aa929e222');
-- Dumping structure for table qpixel.banlisthistory
CREATE TABLE IF NOT EXISTS `banlisthistory` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`license` varchar(50) COLLATE utf8mb4_bin DEFAULT NULL,
`identifier` varchar(25) COLLATE utf8mb4_bin DEFAULT NULL,
`liveid` varchar(21) COLLATE utf8mb4_bin DEFAULT NULL,
`xblid` varchar(21) COLLATE utf8mb4_bin DEFAULT NULL,
`discord` varchar(30) COLLATE utf8mb4_bin DEFAULT NULL,
`playerip` varchar(25) COLLATE utf8mb4_bin DEFAULT NULL,
`targetplayername` varchar(32) COLLATE utf8mb4_bin DEFAULT NULL,
`sourceplayername` varchar(32) COLLATE utf8mb4_bin DEFAULT NULL,
`reason` varchar(255) COLLATE utf8mb4_bin NOT NULL,
`timeat` int(11) NOT NULL,
`added` varchar(40) COLLATE utf8mb4_bin NOT NULL,
`expiration` int(11) NOT NULL,
`permanent` int(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
-- Dumping data for table qpixel.banlisthistory: ~0 rows (approximately)
-- Dumping structure for table qpixel.bans
CREATE TABLE IF NOT EXISTS `bans` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`expire` int(11) NOT NULL DEFAULT 0,
`banid` varchar(50) NOT NULL DEFAULT '0',
`steam` varchar(50) NOT NULL DEFAULT '0',
`name` varchar(50) NOT NULL DEFAULT '0',
`license` varchar(50) NOT NULL DEFAULT '0',
`license2` varchar(50) NOT NULL DEFAULT '0',
`reason` varchar(50) NOT NULL DEFAULT '0',
`bannedby` varchar(50) NOT NULL DEFAULT '0',
`xbox` varchar(50) NOT NULL DEFAULT '0',
`live` varchar(50) NOT NULL DEFAULT '0',
`discord` varchar(50) NOT NULL DEFAULT '0',
`cfx` varchar(50) NOT NULL DEFAULT '0',
`ip` varchar(50) NOT NULL DEFAULT '0',
`token` varchar(50) NOT NULL DEFAULT '0',
`bannedon` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4;
-- Dumping data for table qpixel.bans: ~0 rows (approximately)
-- Dumping structure for table qpixel.boosting
CREATE TABLE IF NOT EXISTS `boosting` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`vehicle` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`type` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`owner` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`expires` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`units` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`ExtraVin` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
`coords` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8mb4;