-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBank Tables Dump.txt
1001 lines (984 loc) · 107 KB
/
Bank Tables Dump.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 3.2.0.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 01, 2011 at 10:39 AM
-- Server version: 5.1.37
-- PHP Version: 5.3.0
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Database: `bank`
--
-- --------------------------------------------------------
--
-- Table structure for table `bankaccounts`
--
CREATE TABLE IF NOT EXISTS `bankaccounts` (
`username` text NOT NULL,
`userpass` text NOT NULL,
`funds` decimal(10,2) NOT NULL,
`subdivision` text NOT NULL,
`country` text NOT NULL,
`type` text NOT NULL,
`owner` text NOT NULL,
`style` text NOT NULL,
`status` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `bankaccounts`
--
INSERT INTO `bankaccounts` (`username`, `userpass`, `funds`, `subdivision`, `country`, `type`, `owner`, `style`, `status`) VALUES
('Jess', 'f892b4a4ccdfe6c23935f8c0b979ddd7', '0.00', 'Yardistan', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Prodigy Almighty', '0292009a4751c893e94286dbbde3d64d', '2702.52', 'Toketi', 'Gralus', 'Private', '', 'simple.css', 'User'),
('Hypatias mom', 'b53a79b5576f19dae22e02f915312797', '2768.72', 'Kildare', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Bayen', 'e5434e02cf9c9209feefb35eeb6aa290', '284.70', 'Toketi', 'Gralus', 'Private', '', 'simple.css', 'User'),
('benkern', '58907e18e4f0aaca0aa352bd675f6947', '0.00', 'Yardistan', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('admin', '583ced4c48fbfb30909725916f5832ee', '0.00', 'Proper', 'Small Commonwealth', 'Private', '', 'terminal.css', 'Admin'),
('Household Account', 'bcb14a1b3f2e230183c26de9d196ada5', '4860.00', 'Shirekeep', 'Shireroth', 'Government', '', 'simple.css', 'User'),
('Erik Mortis Brookshire', 'ca9baf744c5b0ecc08bc246382668ebc', '18512.59', 'Brookshire', 'Shireroth', 'Government', '', 'shireroth.css', 'Admin'),
('Jonas', 'a533958e1a514c63c3a5a39a30347ac9', '2025.78', 'Kildare', 'Shireroth', 'Private', '', 'shireroth.css', 'User'),
('Andreas the Wise', '951ad227de11d4c19dd484d825bdcb38', '997.08', 'Proper', 'Nelaga', 'Private', '', 'simple.css', 'Admin'),
('Jacobus Loki', '8c9f0d8acfbb3506339afd92fd08bc99', '1050.00', 'Yardistan', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Ari Rahikkala', '267a29f976742c441393aa69d19ea019', '2138.06', 'Straylight', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Mike Fors', '3a8aa197e191e42ff07a3e17f277fef7', '3902.16', 'Brookshire', 'Shireroth', 'Private', '', 'shireroth.css', 'User'),
('Krasniy Yastreb', '9af40fa354a67c6629492d46aad3e2c4', '4216.45', 'Brookshire', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('mateo', 'a607ebadfe6cf2b574cffd2fbdf168ba', '4.75', 'Shirekeep', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Gilrean Treebane', '2860e6c6ca2016921db5e0c46b4b78a4', '0.00', 'Yardistan', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Hesam Jayatar', '7e8ae629a9cb388f1db63b7cb97f7a4a', '200.00', 'Elwynn', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Automat Inc.', '3fa870538e835d03733b321f106feec6', '0.00', 'Shirekeep', 'Shireroth', 'Company', '', 'simple.css', 'User'),
('Jeroen', '69b31b5c0c3e0372e421de66621e110d', '88.12', 'Kildare', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Harald of Froyalan', '1c58c5d906c46c4380feccc93153393a', '480.00', 'Elwynn', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('MMUFC', '673c895e6246acd72d3d3e718d12bea8', '0.00', 'Brookshire', 'Shireroth', 'Company', '', 'simple.css', 'User'),
('Allot', 'da36ab4885bad2e6d65ca035ea0a0a85', '2603.80', 'Elwynn', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Microton', 'a7f59c3f2d0d5de1f9c304df9b6a78f2', '0.00', 'Kildare', 'Shireroth', 'Company', '', 'simple.css', 'User'),
('Lamifo', 'f5ff7ff702f6416b0a9743339728fe15', '0.00', 'Yardistan', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Seanad', '257389e3708709758f36477c7ee28e44', '4000.00', 'Kildare', 'Shireroth', 'Government', '', 'simple.css', 'Regional'),
('Shyriath', '8ef158534252f8855abb73de5375a625', '600.00', 'Straylight', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('foghorn', 'c743152702d78e6da2061c76a7c86091', '2047.12', 'Kildare', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Omega Limited', '94df81f73def62a4fc18f727273b3a11', '1552.51', 'Shirekeep', 'Shireroth', 'Company', '', 'simple.css', 'User'),
('Scott', '2cd42e41d7883533f97e3797f095408b', '6233.00', 'Straylight', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Imperial Judex', 'd25a0f3165bab30b3a6ce2ccb2487991', '0.00', 'Shirekeep', 'Shireroth', 'Government', '', 'simple.css', 'User'),
('Iskander Mirkdale', '1ff22f2979a775ce8882bff6daaa154d', '1160.03', 'Elwynn', 'Shireroth', 'Private', '', 'shireroth.css', 'User'),
('Oze', '322d0941bb53572c7f9e5148dcbe20aa', '719.65', 'Brookshire', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('CheddarCorp', '4f16c7a1acf7f8b3c0d416e78c656bd5', '0.00', 'Straylight', 'Shireroth', 'Company', '', 'simple.css', 'User'),
('nick112147', 'e98dc4f44b23510387298a16aa8cb2c6', '1709.84', 'Northern Novatainia', 'Gralus', 'Private', '', 'simple.css', 'User'),
('ktzunichurch', 'f9d89ad700c9f35f911546338227ff91', '0.00', 'Brookshire', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Jacobus Fund', '58ba1910e150ff1b2ff5bef9a5871c88', '0.00', 'Shirekeep', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('BOO/\\/\\/\\/\\is Charitable Fund', '63d0e203283f439f37e25d270eaff100', '0.00', 'Shirekeep', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Maksym', 'f8b6cdbd44ffc44ab69df512c9c9ed4b', '3491.00', 'Brookshire', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Brandon', 'c5cc141d5a5c211a8b8e1bd7c32d315e', '0.00', 'Shirekeep', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Kingsbury', 'd17c6b015cab3ff1ca4962013e786d6f', '600.00', 'Brookshire', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('SirWilliamStrauss', '007b4a2f07f1d48c2935af6fa969667d', '1350.00', 'Proper', 'Natopia', 'Private', '', 'simple.css', 'User'),
('SAFL', 'e1ae4d751e2c9ca6f4b931fa770215d7', '0.00', 'Shirekeep', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Nathan', 'f974fd5532968579e84bb55ca209b340', '4732.50', 'Proper', 'Natopia', 'Private', '', 'shireroth.css', 'User'),
('Ministry of Information', 'c0a7ef4c40a87facc45e6412219b21c6', '585.00', 'Shirekeep', 'Shireroth', 'Government', '', 'simple.css', 'User'),
('John', 'f166600b6efc0fc04e098365c053c27a', '0.00', 'Proper', 'Nelaga', 'Private', '', 'novatainia.css', 'User'),
('Leo', 'c2147644a4145023ea42b10fd0e98db4', '0.00', 'Elwynn', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('The Mango Loto', '4a825c7e9a8d70f5d00e0cac7425c57c', '0.00', 'Shirekeep', 'Shireroth', 'Company', '', 'simple.css', 'User'),
('Peoples Academy of Elwynn', '0852be6e277e94b968ab1de46a9b83a6', '0.00', 'Elwynn', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Cairney', '9136bb7b7c6f29da1b2f84fbae3d43d8', '0.00', 'Shirekeep', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Mateo Mattiassen', 'f20f94f82c45b75a2e4c506304b90a83', '20.00', 'Shirekeep', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('The Khan of Vijayanagara', 'cbe26b7add39688d4e3d549ba66ba19b', '3075.09', 'Elwynn', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Bacchic Fund', '9f9865910a61137df8ad6ba31dcafc0e', '955.60', 'Yardistan', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Gman russell', 'dbace8a58e683daafc06ec3a92b6ee22', '9098.00', 'Yardistan', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Imperial Treasury', '324d48f443a53bc4f0621befa0ee362d', '78368.47', 'Shelsa', 'Gralus', 'Government', '', 'simple.css', 'National'),
('Longbow', '6388d8c4778a19f2aad3a5dee53d2f90', '1815.62', 'Toketi', 'Gralus', 'Private', '', 'simple.css', 'User'),
('Nicholas the Mad', 'fa49f132f0be9b060f161cb0fd7ce1cb', '1642.33', 'Southern Novatainia', 'Gralus', 'Private', '', 'simple.css', 'User'),
('Demon of Fides', '9ccd398eeede8c0dba10fc11b4f77750', '2496.34', 'Jokerdom', 'Gralus', 'Private', '', 'simple.css', 'User'),
('Novgov', '05e4b7b1a8b95cceab934982304efe55', '18491.00', 'Northern Novatainia', 'Gralus', 'Government', '', 'simple.css', 'National'),
('VBNC', '4193365e7f56fe0dbef78dca9e31d825', '4887.44', 'Kalla', 'Gralus', 'Company', '', 'simple.css', 'User'),
('Austi', '466383c521b102e123bccdebca9da600', '300.00', 'Kildare', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('NatopiaGov', 'f335a1d0f566aca9775fb92de45cf038', '6350.00', 'Proper', 'Natopia', 'Government', '', 'shireroth.css', 'National'),
('KvZ', 'dae9011eadb2febbc18a135a2fa08bc9', '550.00', 'Proper', 'Natopia', 'Private', '', 'shireroth.css', 'User'),
('Department of Greed', '14d2d583963febcc4daef6a054876842', '11500.00', 'Nelaga', 'Nelaga', 'Government', '', 'shireroth.css', 'National'),
('darcyj', '8a1e7c79ea605b545a4256e3ed1179bd', '0.00', 'Shirekeep', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Gerk', '779d1da43a519f8863ba507896a7ae55', '6626.00', 'Toketi', 'Gralus', 'Private', '', 'simple.css', 'User'),
('Lachieboy', '7e40185826b54ef2c54c62dc44d29bbc', '1007.56', 'Northern Novatainia', 'Gralus', 'Private', '', 'shireroth.css', 'User'),
('Nargoth', 'c7be5e7b186a2c3258ace07feaf2889a', '4030.23', 'Shelsa', 'Gralus', 'Private', '', 'shireroth.css', 'User'),
('NatSiriain', 'c46f9dcfe60ece3c678a3b2e33e78748', '0.00', 'Proper', 'Natopia', 'Private', '', 'shireroth.css', 'User'),
('Magni', 'b1d7000081667f5dcd53df77c6742198', '1007.56', 'Kalla', 'Gralus', 'Private', '', 'shireroth.css', 'User'),
('Demesos Treasury', 'e87fa7c686337d710f158501e6c62149', '0.00', 'Kildare', 'Shireroth', 'Government', '', 'simple.css', 'User'),
('MoMA Imperial Defence', 'b430aa9a2f519a22e2a532f1521c0603', '464.80', 'Shirekeep', 'Shireroth', 'Government', '', 'shireroth.css', 'User'),
('MiniEx', '3d6bff12892d227e01416208e16129b5', '2000.00', 'Shirekeep', 'Shireroth', 'Government', '', 'shireroth.css', 'User'),
('Harvey', '17c7d09ab750325eaec9d94f7f976e29', '5500.00', 'Nelaga', 'Nelaga', 'Private', '', 'shireroth.css', 'User'),
('Stormarks Bank', 'f7339abfdf1d687e09c07cb59c8440a5', '82500.00', 'Althingi Stormark', 'Stormark', 'Government', 'Harald of Froyalan', 'simple.css', 'National'),
('Gnaar Mok', '03305bd12b7aa212ca46b863b4b81620', '1007.56', 'Relaram', 'Gralus', 'Private', '', 'simple.css', 'User'),
('Hesam', '6fe1f529125bc1fd57a94801ccc24db1', '0.00', 'Elwynn', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Relaram Government', '0b4c53f3dc62d4654847279057fb0cb9', '18000.00', 'Relaram', 'Gralus', 'Government', 'Scourge', 'simple.css', 'Regional'),
('Tsunade', 'df0cdd4252801019effe07a43fdf31c5', '1047.86', 'Toketi', 'Gralus', 'Private', '', 'simple.css', 'User'),
('Hurmu Reserve Bank', 'b91c6e34205daeb0649238308ffc4161', '22500.00', 'Proper', 'Hurmu', 'Government', '', 'simple.css', 'National'),
('Uvurith', 'e2bd02258093f618b42b50350b6a662c', '1491.19', 'Relaram', 'Gralus', 'Private', '', 'simple.css', 'User'),
('rutledge15', '9abf8f86c5c5ca75fd65989245b7b52a', '0.00', 'Brookshire', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('drspangle', '40c92d5a3252919ae44892607ab4f953', '350.00', 'Straylight', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('ISI', '4d9b71cb03c043086508db66772ef5d9', '2960.00', 'Elwynn', 'Shireroth', 'Company', 'Leo', 'simple.css', 'User'),
('WPayne', '5598f3ad165c30a2b4acb462a04a72a9', '2000.00', 'Kildare', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('vasroe', 'ffe032ec58debe370113268d5584aa25', '110.00', 'Elwynn', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('Baarrnan', '3224a2de11f62a8bd08c544b1f62d7df', '2350.00', 'Proper', 'Hurmu', 'Private', '', 'terminal.css', 'User'),
('Shirithian Imperial Treasury', 'b1a55f1f27673cc641b70383c2803a15', '17438.07', 'Shirekeep', 'Shireroth', 'Government', '', 'simple.css', 'National'),
('arvidur', '895971d235ba08a2e22f6f8d7a5fee16', '9386.47', 'Brookshire', 'Shireroth', 'Private', '', 'simple.css', 'User'),
('SCX', 'b94a2259f193436983d5a376d93df66d', '33357.43', 'Novatainia', 'Gralus', 'Company', 'VBNC', 'novatainia.css', 'User'),
('K', '16e4ef534cec559430e07e05eb71c719', '1000.00', 'K', 'K', 'Private', '', 'simple.css', 'User'),
('Test', '0c74c6051287c95df4cf530675cacced', '0.00', 'Shirekeep', 'Shireroth', 'Private', '', 'simple.css', 'User');
-- --------------------------------------------------------
--
-- Table structure for table `banklog`
--
CREATE TABLE IF NOT EXISTS `banklog` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`instigator` text NOT NULL,
`source` text NOT NULL,
`destination` text NOT NULL,
`funds` decimal(10,2) NOT NULL,
`reason` text NOT NULL,
`date` datetime NOT NULL,
`userip` char(17) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=825 ;
--
-- Dumping data for table `banklog`
--
INSERT INTO `banklog` (`id`, `instigator`, `source`, `destination`, `funds`, `reason`, `date`, `userip`) VALUES
(1, 'admin', '', '', '1.00', 'Create reasons', '2008-08-11 00:53:06', ''),
(2, 'admin', 'admin', 'Erik Mortis Brookshire', '1.00', 'Create reasons', '2008-08-11 00:54:13', ''),
(3, 'admin', 'Erik Mortis Brookshire', 'admin', '5.00', 'Create reasons', '2008-08-11 00:54:44', ''),
(4, 'admin', 'admin', 'Erik Mortis Brookshire', '1.00', 'no reason at this time', '2008-08-11 00:58:25', ''),
(5, 'Household Account', 'Household Account', 'Ardashir Khan', '100.00', 'for C. Farewell', '2008-08-14 11:43:35', ''),
(6, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'admin', '5.00', 'testing', '2008-08-17 03:20:21', ''),
(7, 'admin', 'admin', 'Erik Mortis Brookshire', '5.00', 'testing, and returning', '2008-08-17 03:20:53', ''),
(8, 'Jacobus Loki', 'Jacobus Loki', 'Ardashir Khan', '2.00', 'Coffee and stale bagel.', '2008-08-17 06:14:17', ''),
(9, 'Jess', 'Jess', 'JessAlt', '25.01', '', '2008-08-17 23:13:05', ''),
(10, 'admin', 'Ardashir Khan', 'Crown Account', '100.00', 'Tax', '2008-08-19 00:04:38', ''),
(11, 'admin', 'Mike Fors B', 'Crown Account', '100.00', 'Tax', '2008-08-19 00:05:09', ''),
(12, 'admin', 'Prodigy Almighty', 'Crown Account', '70.00', 'Tax', '2008-08-19 00:05:35', ''),
(13, 'admin', 'Seanad', 'Crown Account', '100.00', 'Tax', '2008-08-19 00:05:56', ''),
(14, 'Liam conToketi', 'Liam conToketi', 'Ari Rahikkala', '20.00', 'Taxes', '2008-08-19 01:43:53', ''),
(15, 'Hesam Jayatar', 'Hesam Jayatar', 'Automat Inc.', '500.00', 'Services Rendered', '2008-08-19 02:43:49', ''),
(16, 'benkern', 'benkern', 'Prodigy Almighty', '70.00', 'Taxes!', '2008-08-20 12:09:33', ''),
(17, 'admin', 'Ardashir Khan', 'Crown Account', '182.00', 'Emmigration', '2008-08-22 01:14:37', ''),
(18, 'admin', 'Osman-Almagro Industries', 'Crown Account', '555.00', 'Emmigration', '2008-08-22 01:15:07', ''),
(19, 'admin', 'admin', 'Erik Mortis Brookshire', '1000000.00', 'test', '2008-08-22 01:27:16', ''),
(20, 'admin', 'Erik Mortis Brookshire', 'admin', '1000000.00', 'test back', '2008-08-22 01:27:58', ''),
(21, 'Automat Inc.', 'Automat Inc.', 'Hesam Jayatar', '500.00', '', '2008-08-22 19:49:47', ''),
(22, 'admin', 'Crown Account', 'Scott', '210.00', '150 back + Bounty', '2008-08-22 21:28:40', ''),
(23, 'admin', 'Crown Account', 'Krasniy Yastreb', '40.00', 'Bounty', '2008-08-22 21:29:17', ''),
(24, 'admin', 'Crown Account', 'Jonas', '20.00', 'Bounty (share)', '2008-08-22 21:29:42', ''),
(25, 'admin', 'Crown Account', 'Andreas the Wise', '30.00', 'Bount (share)', '2008-08-22 21:29:53', ''),
(26, 'admin', 'Crown Account', 'Gilrean Treebane', '10.00', 'Wedding gift', '2008-08-22 21:30:13', ''),
(27, 'admin', 'Crown Account', 'Liam conToketi', '30.00', 'Bounty', '2008-08-22 21:30:39', ''),
(28, 'admin', 'Crown Account', 'Hesam Jayatar', '20.00', 'Bounty', '2008-08-22 21:31:04', ''),
(29, 'admin', 'Crown Account', 'Erik Mortis Brookshire', '77.00', 'Bank', '2008-08-22 21:31:46', ''),
(30, 'admin', 'Crown Account', 'Erik Mortis Brookshire', '20.00', 'Judex', '2008-08-22 21:32:03', ''),
(31, 'admin', 'Crown Account', 'Mike Fors', '20.00', 'Judex', '2008-08-22 21:32:15', ''),
(32, 'admin', 'Crown Account', 'Jonas', '10.00', 'Praetor', '2008-08-22 21:32:35', ''),
(33, 'admin', 'Crown Account', 'Hypatias mom', '10.00', 'Ministry Pay', '2008-08-22 21:32:59', ''),
(34, 'admin', 'Crown Account', 'Liam conToketi', '5.00', 'Ministry Pay', '2008-08-22 21:33:16', ''),
(35, 'admin', 'Crown Account', 'Ari Rahikkala', '60.00', 'Ministry Pay', '2008-08-22 21:33:32', ''),
(36, 'admin', 'Crown Account', 'Andreas the Wise', '40.00', 'Ministry Pay', '2008-08-22 21:33:50', ''),
(37, 'admin', 'Crown Account', 'Hesam Jayatar', '30.00', 'Ministry Pay', '2008-08-22 21:34:03', ''),
(38, 'admin', 'Crown Account', 'Wil Nider', '50.00', 'Citizenship', '2008-08-22 21:35:17', ''),
(39, 'admin', 'Crown Account', 'Iskander Mirkdale', '50.00', 'Citizenship', '2008-08-23 11:16:42', ''),
(40, 'JessAlt', 'JessAlt', 'Omega Limited', '14.99', 'Grant to Omega Ltd.', '2008-08-24 03:06:08', ''),
(41, 'admin', 'Pandora', 'Crown Account', '50.00', 'revoked citizenship', '2008-08-25 05:18:23', ''),
(42, 'admin', 'admin', 'Crown Account', '95000.00', 'Inflation', '2008-08-27 10:49:45', ''),
(43, 'admin', 'Crown Account', 'Andreas the Wise', '2520.00', 'Inflation', '2008-08-27 10:50:01', ''),
(44, 'admin', 'Crown Account', 'Ari Rahikkala', '3112.00', 'Inflation', '2008-08-27 10:50:17', ''),
(45, 'admin', 'Crown Account', 'Bayen', '2200.00', 'Inflation', '2008-08-27 10:50:52', ''),
(46, 'admin', 'Crown Account', 'Erik Mortis Brookshire', '3328.00', 'Inflation', '2008-08-27 10:51:08', ''),
(47, 'admin', 'Crown Account', 'Gilrean Treebane', '2240.00', 'Inflation', '2008-08-27 10:51:23', ''),
(48, 'admin', 'Crown Account', 'Harald of Froyalan', '3680.00', 'Inflation', '2008-08-27 10:51:39', ''),
(49, 'admin', 'Crown Account', 'Hesam Jayatar', '4484.00', 'Inflation', '2008-08-27 10:51:53', ''),
(50, 'admin', 'Crown Account', 'Household Account', '1200.00', 'Inflation', '2008-08-27 10:52:22', ''),
(51, 'admin', 'Crown Account', 'Hypatias mom', '2576.00', 'Inflation', '2008-08-27 10:52:39', ''),
(52, 'admin', 'Crown Account', 'Iskander Mirkdale', '2200.00', 'Inflation', '2008-08-27 10:52:59', ''),
(53, 'admin', 'Crown Account', 'Jacobus Loki', '3264.00', 'Inflation', '2008-08-27 10:53:15', ''),
(54, 'admin', 'Crown Account', 'Jess', '2000.00', 'Inflation', '2008-08-27 10:53:40', ''),
(55, 'admin', 'Crown Account', 'JessAlt', '320.00', 'Inflation (Put it all in your first account, please, or Prodigy will get annoyed)', '2008-08-27 10:54:10', ''),
(56, 'admin', 'Crown Account', 'Jonas', '3092.00', 'Inflation', '2008-08-27 10:54:32', ''),
(57, 'admin', 'Crown Account', 'Krasniy Yastreb', '2896.00', 'Inflation', '2008-08-27 10:54:44', ''),
(58, 'admin', 'Crown Account', 'Lectriece', '2200.00', 'Inflation', '2008-08-27 10:55:13', ''),
(59, 'admin', 'Crown Account', 'Liam conToketi', '2636.00', 'Inflation', '2008-08-27 10:55:35', ''),
(60, 'admin', 'Crown Account', 'Mike Fors', '2532.00', 'Inflation', '2008-08-27 10:55:53', ''),
(61, 'admin', 'Crown Account', 'Noemi_Vassiliais', '2200.00', 'Inflation', '2008-08-27 10:56:09', ''),
(62, 'admin', 'Crown Account', 'Prodigy Almighty', '2392.00', 'Inflation', '2008-08-27 10:56:37', ''),
(63, 'admin', 'Crown Account', 'Omega Limited', '59.96', 'Inflation', '2008-08-27 10:56:55', ''),
(64, 'admin', 'Crown Account', 'Scott', '2840.00', 'Inflation', '2008-08-27 10:57:13', ''),
(65, 'admin', 'Crown Account', 'Seanad', '40.00', 'Inflation', '2008-08-27 10:57:27', ''),
(66, 'admin', 'Crown Account', 'Sebastien', '2200.00', 'Inflation', '2008-08-27 10:57:42', ''),
(67, 'admin', 'Crown Account', 'Vesennas', '2212.00', 'Inflation', '2008-08-27 10:58:02', ''),
(68, 'admin', 'Crown Account', 'Wil Nider', '2200.00', 'Inflation', '2008-08-27 10:58:15', ''),
(69, 'admin', 'Crown Account', 'andelarion', '2000.00', 'Inflation', '2008-08-27 10:58:33', ''),
(70, 'admin', 'Crown Account', 'benkern', '2600.04', 'Inflation', '2008-08-27 10:58:48', ''),
(71, 'admin', 'Crown Account', 'foghorn', '2200.00', 'Inflation', '2008-08-27 10:59:02', ''),
(72, 'admin', 'Crown Account', 'Ari Rahikkala', '2000.00', 'Ducal Bonus', '2008-08-27 11:01:15', ''),
(73, 'admin', 'Crown Account', 'Jonas', '2000.00', 'Ducal Bonus', '2008-08-27 11:01:36', ''),
(74, 'admin', 'Crown Account', 'Krasniy Yastreb', '2000.00', 'Ducal Bonus', '2008-08-27 11:01:51', ''),
(75, 'admin', 'Crown Account', 'Prodigy Almighty', '2000.00', 'Ducal Bonus', '2008-08-27 11:02:08', ''),
(76, 'admin', 'Crown Account', 'Wil Nider', '2000.00', 'Ducal Bonus', '2008-08-27 11:02:19', ''),
(77, 'benkern', 'benkern', 'Krasniy Yastreb', '200.00', 'Payment for images', '2008-08-27 16:32:02', ''),
(78, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'Crown Account', '10.00', 'Monthly Rent on SMX forum', '2008-08-27 18:11:32', ''),
(79, 'Hesam Jayatar', 'Hesam Jayatar', 'Erik Mortis Brookshire', '200.00', 'Appreciation for all the work', '2008-08-27 19:07:08', ''),
(80, 'Liam conToketi', 'Liam conToketi', 'Jonas', '5.00', 'Wiki job', '2008-08-27 19:09:42', ''),
(81, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'Jonas', '50.00', 'Imperial Smackdown Graphics', '2008-08-27 21:00:40', ''),
(82, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'Ari Rahikkala', '10.00', 'Finding a graphic', '2008-08-28 03:22:25', ''),
(83, 'admin', 'Crown Account', 'Liam conToketi', '15.00', 'Steward', '2008-08-28 06:57:57', ''),
(84, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'Ari Rahikkala', '20.00', 'Cool legislature written', '2008-08-28 19:40:58', ''),
(85, 'Mike Fors', 'Mike Fors', 'Crown Account', '10.00', 'F&B forum', '2008-08-29 04:51:06', ''),
(86, 'Jonas', 'Jonas', 'Seanad', '1000.00', 'Donation to the Dutchy of Kildare', '2008-08-29 10:57:28', ''),
(87, 'Andreas the Wise', 'Andreas the Wise', 'Erik Mortis Brookshire', '1.00', 'Exchange Fee', '2008-08-29 21:38:02', ''),
(88, 'Jonas', 'Jonas', 'Andreas the Wise', '100.00', 'Gift Day!', '2008-08-30 11:00:45', ''),
(89, 'Jonas', 'Jonas', 'Hypatias mom', '100.00', 'Gift Day!', '2008-08-30 11:01:13', ''),
(90, 'Jonas', 'Jonas', 'Krasniy Yastreb', '1.00', 'Because you said ''long live Kildare'' :p', '2008-08-30 11:02:05', ''),
(91, 'Jess', 'Jess', 'Omega Limited', '2000.00', 'mwahaha', '2008-08-31 04:38:08', ''),
(92, 'Hesam Jayatar', 'Hesam Jayatar', 'Jacobus Loki', '4905.00', '', '2008-09-07 15:22:22', ''),
(93, 'Household Account', 'Household Account', 'andelarion', '1500.00', 'kaiser''s will, the person in will is an alias of andelarion''s.', '2008-09-09 22:33:51', ''),
(94, 'Andreas the Wise', 'Andreas the Wise', 'Mike Fors', '30.00', 'Consultation', '2008-09-21 08:07:35', ''),
(95, 'Jacobus Loki', 'Jacobus Loki', 'nick112147', '100.00', 'Incense & Art ', '2008-09-30 05:47:09', ''),
(96, 'Jacobus Loki', 'Jacobus Loki', 'Jonas', '300.00', 'Larges', '2008-09-30 19:23:43', ''),
(97, 'Jacobus Loki', 'Jacobus Loki', 'Liam conToketi', '250.00', '', '2008-09-30 19:24:12', ''),
(98, 'nick112147', 'nick112147', 'ktzunichurch', '100.00', 'Church Funds', '2008-09-30 19:44:55', ''),
(99, 'Jacobus Loki', 'Jacobus Loki', 'Scott', '200.00', 'Largess', '2008-09-30 20:41:57', ''),
(100, 'Jacobus Loki', 'Jacobus Loki', 'Mike Fors', '128.00', 'Largess', '2008-09-30 21:39:14', ''),
(101, 'Jacobus Loki', 'Jacobus Loki', 'Andreas the Wise', '137.43', 'Largess', '2008-09-30 23:03:31', ''),
(102, 'Jacobus Loki', 'Jacobus Loki', 'Erik Mortis Brookshire', '168.39', 'Largess', '2008-10-01 22:57:00', ''),
(103, 'Jacobus Loki', 'Jacobus Loki', 'Jess', '199.12', 'largess', '2008-10-01 22:57:27', ''),
(104, 'Mike Fors', 'Mike Fors', 'Oze', '100.00', 'Wiki work', '2008-10-02 00:35:49', ''),
(105, 'Jacobus Loki', 'Jacobus Loki', 'Jonas', '500.00', 'advance on salary', '2008-10-03 15:32:09', ''),
(106, 'Jacobus Loki', 'Jacobus Loki', 'andelarion', '57.18', 'Largess', '2008-10-03 20:00:50', ''),
(107, 'Jacobus Loki', 'Jacobus Loki', 'Ari Rahikkala', '216.71', '', '2008-10-03 20:01:45', ''),
(108, 'Jacobus Loki', 'Jacobus Loki', 'Bayen', '56.34', '', '2008-10-03 20:02:18', ''),
(109, 'Jacobus Loki', 'Jacobus Loki', 'benkern', '88.49', '', '2008-10-03 20:02:51', ''),
(110, 'Jacobus Loki', 'Jacobus Loki', 'foghorn', '27.13', '', '2008-10-03 20:03:18', ''),
(111, 'Jacobus Loki', 'Jacobus Loki', 'Gilrean Treebane', '67.88', '', '2008-10-03 20:03:41', ''),
(112, 'Jacobus Loki', 'Jacobus Loki', 'Harald of Froyalan', '99.06', '', '2008-10-03 20:04:07', ''),
(113, 'Jacobus Loki', 'Jacobus Loki', 'Hypatias mom', '100.02', '', '2008-10-03 20:04:28', ''),
(114, 'Jacobus Loki', 'Jacobus Loki', 'Iskander Mirkdale', '9.98', '', '2008-10-03 20:04:50', ''),
(115, 'Jacobus Loki', 'Jacobus Loki', 'Jeroen', '88.12', '', '2008-10-03 20:05:10', ''),
(116, 'Jacobus Loki', 'Jacobus Loki', 'Krasniy Yastreb', '88.78', '', '2008-10-03 20:05:32', ''),
(117, 'Jacobus Loki', 'Jacobus Loki', 'ktzunichurch', '50.00', 'incense', '2008-10-03 20:05:58', ''),
(118, 'Jacobus Loki', 'Jacobus Loki', 'Lectriece', '37.01', '', '2008-10-03 20:06:54', ''),
(119, 'Jacobus Loki', 'Jacobus Loki', 'Wil Nider', '71.47', '', '2008-10-03 20:07:17', ''),
(120, 'Jacobus Loki', 'Jacobus Loki', 'Vesennas', '45.99', '', '2008-10-03 20:07:33', ''),
(121, 'Jacobus Loki', 'Jacobus Loki', 'Sebastien', '40.33', '', '2008-10-03 20:08:53', ''),
(122, 'Jacobus Loki', 'Jacobus Loki', 'Seanad', '61.05', '', '2008-10-03 20:09:17', ''),
(123, 'Jacobus Loki', 'Jacobus Loki', 'Prodigy Almighty', '213.78', '', '2008-10-03 20:09:37', ''),
(124, 'Jacobus Loki', 'Jacobus Loki', 'Oze', '83.68', '', '2008-10-03 20:10:28', ''),
(125, 'Jacobus Loki', 'Jacobus Loki', 'Noemi_Vassiliais', '55.44', '', '2008-10-03 20:10:49', ''),
(126, 'Jacobus Loki', 'Jacobus Loki', 'mateo', '24.75', '', '2008-10-03 20:11:46', ''),
(127, 'Crown Account', 'Crown Account', 'Jacobus Loki', '500.00', 'Repayment of Jonas advance', '2008-10-03 20:15:47', ''),
(128, 'Jacobus Loki', 'Jacobus Loki', 'Oze', '55.97', '', '2008-10-03 22:19:43', ''),
(129, 'admin', 'Crown Account', 'Scott', '550.00', 'Bounties', '2008-10-04 07:44:34', ''),
(130, 'admin', 'Crown Account', 'Ari Rahikkala', '900.00', 'Bounty and wage', '2008-10-04 07:45:05', ''),
(131, 'admin', 'Crown Account', 'benkern', '250.00', 'Bounty', '2008-10-04 07:45:45', ''),
(132, 'admin', 'Crown Account', 'Jonas', '300.00', 'Bounties', '2008-10-04 07:46:32', ''),
(133, 'admin', 'Crown Account', 'Andreas the Wise', '350.00', 'Bounties', '2008-10-04 07:47:07', ''),
(134, 'admin', 'Crown Account', 'Erik Mortis Brookshire', '100.00', 'Bounty', '2008-10-04 07:47:29', ''),
(135, 'admin', 'Crown Account', 'nick112147', '450.00', 'Bounty and welcome', '2008-10-04 07:47:56', ''),
(136, 'admin', 'Crown Account', 'Oze', '250.00', 'Welcome', '2008-10-04 07:48:19', ''),
(137, 'admin', 'Crown Account', 'Prodigy Almighty', '150.00', 'Bounty', '2008-10-04 07:48:40', ''),
(138, 'admin', 'Crown Account', 'Liam conToketi', '300.00', 'Bounty', '2008-10-04 07:49:02', ''),
(139, 'admin', 'Crown Account', 'Mike Fors', '200.00', 'Wage', '2008-10-04 07:49:30', ''),
(140, 'admin', 'Crown Account', 'Hypatias mom', '400.00', 'Wage', '2008-10-04 07:49:43', ''),
(141, 'Jonas', 'Jonas', 'Crown Account', '200.00', 'Paying emoticon', '2008-10-04 09:44:55', ''),
(142, 'Jonas', 'Jonas', 'Andreas the Wise', '300.00', 'Work on the wiki', '2008-10-04 09:47:14', ''),
(143, 'Jonas', 'Jonas', 'Andreas the Wise', '10.00', 'Because you said ''thanks'' :p', '2008-10-04 10:27:10', ''),
(144, 'Jonas', 'Jonas', 'Bayen', '100.00', 'Lyrics', '2008-10-04 10:42:17', ''),
(145, 'Jacobus Loki', 'Jacobus Loki', 'Jonas', '100.00', 'carp icon', '2008-10-04 19:49:34', ''),
(146, 'admin', 'Crown Account', 'Mike Fors', '200.00', 'Secret Bill :p', '2008-10-05 03:37:46', ''),
(147, 'admin', 'Crown Account', 'Andreas the Wise', '500.00', 'Wage', '2008-10-05 06:03:25', ''),
(148, 'admin', 'Crown Account', 'Liam conToketi', '400.00', 'Wage', '2008-10-05 06:03:43', ''),
(149, 'Jacobus Loki', 'Jacobus Loki', 'Jacobus Fund', '3000.00', 'endowmnet', '2008-10-06 01:40:41', ''),
(150, 'Jacobus Loki', 'Jacobus Loki', 'BOO/\\/\\/\\/\\is Charitable Fund', '1500.00', 'endowment', '2008-10-06 01:41:16', ''),
(151, 'Andreas the Wise', 'Andreas the Wise', 'Crown Account', '200.00', 'Smiley', '2008-10-12 10:48:23', ''),
(152, 'Jacobus Fund', 'Jacobus Fund', 'Ari Rahikkala', '750.00', '', '2008-10-18 17:04:33', ''),
(153, 'Jonas', 'Jonas', 'Jacobus Fund', '750.00', 'Donation', '2008-10-20 18:55:07', ''),
(154, 'admin', 'Crown Account', 'Kingsbury', '250.00', 'New Citizen', '2008-10-20 21:30:16', ''),
(155, 'Jacobus Fund', 'Jacobus Fund', 'Kingsbury', '50.00', 'New Cit', '2008-10-20 21:49:55', ''),
(156, 'admin', 'Crown Account', 'SirWilliamStrauss', '250.00', 'New Citizen', '2008-10-22 21:46:20', ''),
(157, 'BOO/\\/\\/\\/\\is Charitable Fund', 'BOO/\\/\\/\\/\\is Charitable Fund', 'Jacobus Loki', '1400.00', 'inactivity', '2008-11-11 19:21:53', ''),
(158, 'Jacobus Fund', 'Jacobus Fund', 'Jacobus Loki', '2900.00', 'politics', '2008-11-11 19:23:10', ''),
(159, 'Mike Fors', 'Mike Fors', 'Erik Mortis Brookshire', '200.00', 'Naming the Kehl', '2008-11-18 21:59:32', ''),
(160, 'Mike Fors', 'Mike Fors', 'Kingsbury', '100.00', 'Circulation', '2008-11-18 22:00:58', ''),
(161, 'Mike Fors', 'Mike Fors', 'Krasniy Yastreb', '100.00', 'Circulation', '2008-11-18 22:02:12', ''),
(162, 'Mike Fors', 'Mike Fors', 'Maksym', '100.00', 'Circulation', '2008-11-18 22:02:39', ''),
(163, 'Mike Fors', 'Mike Fors', 'Oze', '100.00', 'Circulation', '2008-11-18 22:03:10', ''),
(164, 'Mike Fors', 'Mike Fors', 'SirWilliamStrauss', '100.00', 'Circulation', '2008-11-18 22:03:38', ''),
(165, 'admin', 'Crown Account', 'Mike Fors', '3200.00', 'Brookshire Tender', '2008-11-19 09:01:30', ''),
(166, 'admin', 'Crown Account', 'Andreas the Wise', '1000.00', 'Wage + Bounty', '2008-11-19 09:04:00', ''),
(167, 'admin', 'Crown Account', 'Scott', '300.00', 'Bounty', '2008-11-19 09:04:38', ''),
(168, 'admin', 'Crown Account', 'Iskander Mirkdale', '300.00', 'Bounty', '2008-11-19 09:04:57', ''),
(169, 'admin', 'Crown Account', 'Ari Rahikkala', '900.00', 'Wage + Bounty', '2008-11-19 09:05:36', ''),
(170, 'admin', 'Crown Account', 'Jess', '100.00', 'Bounty', '2008-11-19 09:06:35', ''),
(171, 'admin', 'Crown Account', 'Jonas', '400.00', 'Wage', '2008-11-19 09:07:03', ''),
(172, 'admin', 'Crown Account', 'Mike Fors', '400.00', 'Wage', '2008-11-19 09:07:50', ''),
(173, 'admin', 'Crown Account', 'Liam conToketi', '400.00', 'Wage', '2008-11-19 09:08:49', ''),
(174, 'admin', 'Crown Account', 'Prodigy Almighty', '300.00', 'Wage', '2008-11-19 09:09:08', ''),
(175, 'Mike Fors', 'Mike Fors', 'Erik Mortis Brookshire', '200.00', 'Judex wage', '2008-11-19 10:57:15', ''),
(176, 'Mike Fors', 'Mike Fors', 'Maksym', '800.00', 'MiniTrade cash', '2008-11-19 10:58:31', ''),
(177, 'Mike Fors', 'Mike Fors', 'Oze', '600.00', 'MiniTrade cash', '2008-11-19 10:58:50', ''),
(178, 'Mike Fors', 'Mike Fors', 'Kingsbury', '300.00', 'MiniTrade cash', '2008-11-19 10:59:08', ''),
(179, 'Mike Fors', 'Mike Fors', 'SirWilliamStrauss', '300.00', 'MiniTrade cash', '2008-11-19 10:59:28', ''),
(180, 'Mike Fors', 'Mike Fors', 'Erik Mortis Brookshire', '600.00', 'MiniTrade cash', '2008-11-19 10:59:48', ''),
(181, 'admin', 'Crown Account', 'Liam conToketi', '400.00', 'Wage 2', '2008-11-19 21:51:01', ''),
(182, 'Liam conToketi', 'Liam conToketi', 'Ari Rahikkala', '250.00', 'Emissary Auction', '2008-11-21 13:38:00', ''),
(183, 'Jacobus Loki', 'Jacobus Loki', 'Ari Rahikkala', '500.05', 'Economic stimulus', '2008-11-21 23:59:22', ''),
(184, 'Jacobus Loki', 'Jacobus Loki', 'Iskander Mirkdale', '500.05', 'economic stimulus', '2008-11-21 23:59:56', ''),
(185, 'Jacobus Loki', 'Jacobus Loki', 'Prodigy Almighty', '500.05', 'Economic Stimulus', '2008-11-22 00:00:32', ''),
(186, 'Jacobus Loki', 'Jacobus Loki', 'Jonas', '500.05', 'economic stimulus', '2008-11-22 00:01:06', ''),
(187, 'Jacobus Loki', 'Jacobus Loki', 'Mike Fors', '500.05', 'economic stimulus', '2008-11-22 00:01:54', ''),
(188, 'Mike Fors', 'Mike Fors', 'Erik Mortis Brookshire', '100.00', 'Why not?', '2008-11-22 01:21:13', ''),
(189, 'Mike Fors', 'Mike Fors', 'Kingsbury', '100.00', 'Why not?', '2008-11-22 01:21:33', ''),
(190, 'Mike Fors', 'Mike Fors', 'Krasniy Yastreb', '100.00', 'Why not?', '2008-11-22 01:21:48', ''),
(191, 'Mike Fors', 'Mike Fors', 'Maksym', '100.00', 'Why not?', '2008-11-22 01:22:04', ''),
(192, 'Mike Fors', 'Mike Fors', 'Oze', '100.00', 'Why not?', '2008-11-22 01:22:20', ''),
(193, 'Mike Fors', 'Mike Fors', 'SirWilliamStrauss', '100.00', 'Why not?', '2008-11-22 01:22:36', ''),
(194, 'admin', 'Crown Account', 'Andreas the Wise', '796.00', 'Trade Credit Transfer for International Advertising (Ocia)', '2008-11-24 03:43:53', ''),
(195, 'admin', 'Ari Rahikkala', 'Crown Account', '2000.00', 'Tax', '2008-11-26 02:08:53', ''),
(196, 'admin', 'Mike Fors', 'Crown Account', '2000.00', 'Tax', '2008-11-26 02:09:21', ''),
(197, 'admin', 'Iskander Mirkdale', 'Crown Account', '2000.00', 'Tax', '2008-11-26 02:09:55', ''),
(198, 'admin', 'Jonas', 'Crown Account', '2000.00', 'Tax', '2008-11-26 02:10:22', ''),
(199, 'admin', 'Prodigy Almighty', 'Crown Account', '2000.00', 'Tax', '2008-11-26 02:10:50', ''),
(200, 'Andreas the Wise', 'Andreas the Wise', 'Jonas', '612.42', 'Tax chip in', '2008-11-26 02:13:40', ''),
(201, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'Mike Fors', '300.00', 'taxes', '2008-11-26 02:48:30', ''),
(202, 'Oze', 'Oze', 'Mike Fors', '300.00', 'Helping Lord Brookshire pay taxes', '2008-11-26 12:58:00', ''),
(203, 'SirWilliamStrauss', 'SirWilliamStrauss', 'Mike Fors', '300.00', 'He * me', '2008-11-26 18:34:07', ''),
(204, 'Oze', 'Oze', 'Kingsbury', '100.00', 'Helping Kingsbury pay his taxes to our Duke', '2008-11-27 12:57:43', ''),
(205, 'Kingsbury', 'Kingsbury', 'Mike Fors', '300.00', 'Taxes', '2008-11-27 16:48:17', ''),
(206, 'Liam conToketi', 'Liam conToketi', 'Ari Rahikkala', '750.00', 'Taxes', '2008-11-30 01:34:17', ''),
(207, 'BOO/\\/\\/\\/\\is Charitable Fund', 'BOO/\\/\\/\\/\\is Charitable Fund', 'Jacobus Loki', '100.00', 'close account', '2008-12-08 23:51:20', ''),
(208, 'Jacobus Fund', 'Jacobus Fund', 'Jacobus Loki', '50.00', '', '2008-12-08 23:52:30', ''),
(209, 'Jacobus Loki', 'Jacobus Loki', 'Liam conToketi', '1500.00', 'for Kaiserial largess', '2008-12-08 23:54:02', ''),
(210, 'Liam conToketi', 'Liam conToketi', 'Household Account', '2500.00', 'Funds of Reynardine I', '2008-12-09 21:59:44', ''),
(211, 'Jacobus Loki', 'Jacobus Loki', 'Jess', '1200.65', 'heck of it', '2008-12-21 04:58:00', ''),
(212, 'Andreas the Wise', 'Andreas the Wise', 'Crown Account', '4769.00', 'SCIRA', '2008-12-27 01:25:36', ''),
(213, 'benkern', 'benkern', 'Jacobus Loki', '75.00', 'Bar Exam', '2008-12-29 23:19:45', ''),
(214, 'Ari Rahikkala', 'Ari Rahikkala', 'Jacobus Loki', '100.00', 'Donation', '2008-12-29 23:20:55', ''),
(215, 'Jacobus Loki', 'Jacobus Loki', 'Mike Fors', '50.00', 'bar exam', '2008-12-29 23:26:16', ''),
(216, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'Mike Fors', '50.00', 'Mango Bar', '2008-12-29 23:31:54', ''),
(217, 'Andreas the Wise', 'Andreas the Wise', 'Mike Fors', '50.00', 'Test Fee', '2009-01-04 07:33:23', ''),
(218, 'benkern', 'benkern', 'Mike Fors', '50.00', 'Mango Bar test', '2009-01-04 17:08:15', ''),
(219, 'Mike Fors', 'Mike Fors', 'Crown Account', '1925.10', 'Orbat purchase 1st CAB', '2009-01-06 16:15:56', ''),
(220, 'Andreas the Wise', 'Andreas the Wise', 'Crown Account', '100.00', 'Voting Credit', '2009-01-07 22:52:38', ''),
(221, 'Household Account', 'Household Account', 'Liam conToketi', '2500.00', 'Preemptive', '2009-01-08 00:06:59', ''),
(222, 'Liam conToketi', 'Liam conToketi', 'Ari Rahikkala', '2500.00', 'Will of Reynardine', '2009-01-08 05:29:08', ''),
(223, 'Liam conToketi', 'Liam conToketi', 'Jess', '1055.00', 'Will of Reynardine', '2009-01-08 05:29:31', ''),
(224, 'Liam conToketi', 'Liam conToketi', 'Maksym', '1500.00', 'Will of Reynardine', '2009-01-08 05:29:50', ''),
(225, 'Jacobus Loki', 'Jacobus Loki', 'Ari Rahikkala', '100.00', 'repay loan', '2009-01-08 20:59:22', ''),
(226, 'Jacobus Loki', 'Jacobus Loki', 'benkern', '35.00', 'partial repayment', '2009-01-08 21:00:03', ''),
(227, 'Ari Rahikkala', 'Ari Rahikkala', 'Austi_Scot', '50.00', 'Wiki work', '2009-01-08 23:28:25', ''),
(228, 'admin', 'Crown Account', 'Maksym', '1900.00', 'Bounties to the MAX', '2009-01-09 07:22:35', ''),
(229, 'admin', 'Crown Account', 'SirWilliamStrauss', '450.00', 'Bounty and wage', '2009-01-09 07:23:32', ''),
(230, 'admin', 'Crown Account', 'Austi_Scot', '550.00', 'Bounty and wage and welcome', '2009-01-09 07:24:05', ''),
(231, 'admin', 'Crown Account', 'Mike Fors', '900.00', 'Bounty and wage', '2009-01-09 07:24:32', ''),
(232, 'admin', 'Crown Account', 'Andreas the Wise', '650.00', 'Bounty and wage', '2009-01-09 07:24:54', ''),
(233, 'admin', 'Crown Account', 'Erik Mortis Brookshire', '350.00', 'Bounty', '2009-01-09 07:25:23', ''),
(234, 'admin', 'Crown Account', 'Prodigy Almighty', '450.00', 'Bounty and wage', '2009-01-09 07:25:49', ''),
(235, 'admin', 'Crown Account', 'Jacobus Loki', '300.00', 'complaining', '2009-01-09 07:26:54', ''),
(236, 'admin', 'Crown Account', 'Scott', '350.00', 'Bounty', '2009-01-09 07:27:20', ''),
(237, 'admin', 'Crown Account', 'Nathan', '400.00', 'Wage', '2009-01-09 07:27:43', ''),
(238, 'admin', 'Crown Account', 'Jonas', '300.00', 'Wage', '2009-01-09 07:28:12', ''),
(239, 'admin', 'Crown Account', 'Ari Rahikkala', '1000.00', 'Wage', '2009-01-09 07:28:40', ''),
(240, 'admin', 'Crown Account', 'Harald of Froyalan', '300.00', 'Wage', '2009-01-09 07:29:03', ''),
(241, 'admin', 'Crown Account', 'Household Account', '1500.00', 'Kaiseral Expenses in new reign', '2009-01-09 07:30:07', ''),
(242, 'benkern', 'benkern', 'Mike Fors', '1000.00', 'Vorpmadal', '2009-01-10 16:49:23', ''),
(243, 'Ari Rahikkala', 'Ari Rahikkala', 'Crown Account', '200.00', 'Buying voting credits', '2009-01-11 06:26:35', ''),
(244, 'Jonas', 'Jonas', 'Crown Account', '100.00', '1 voting credit', '2009-01-11 10:34:54', ''),
(245, 'Oze', 'Oze', 'Crown Account', '100.00', 'Purchasing 1 Voting Credit for Brookshire', '2009-01-11 21:25:30', ''),
(246, 'Nathan', 'Nathan', 'Crown Account', '100.00', '1 VC for Elwynn', '2009-01-11 23:03:06', ''),
(247, 'Mike Fors', 'Mike Fors', 'Crown Account', '300.00', '3 voting credits', '2009-01-12 03:37:00', ''),
(248, 'Mike Fors', 'Mike Fors', 'Crown Account', '300.00', '3 Voting Credits', '2009-01-12 22:37:34', ''),
(249, 'Andreas the Wise', 'Andreas the Wise', 'Crown Account', '500.00', 'VC', '2009-01-13 05:28:59', ''),
(250, 'admin', 'Crown Account', 'Austi_Scot', '150.00', 'Wiki', '2009-01-14 00:25:24', ''),
(251, 'admin', 'admin', 'Crown Account', '13515.24', 'Recovered from deleted accounts', '2009-01-14 00:30:54', ''),
(252, 'Austi_Scot', 'Austi_Scot', 'Crown Account', '10.00', 'Payment for sub-forum: Microton Naval War Machine', '2009-01-14 07:26:52', ''),
(253, 'Jacobus Loki', 'Jacobus Loki', 'benkern', '41.00', 'Loan payment', '2009-01-15 00:14:09', ''),
(254, 'Austi_Scot', 'Austi_Scot', 'Andreas the Wise', '100.00', 'Contract: Retainer - Mike Fors', '2009-01-15 17:26:05', ''),
(255, 'Mike Fors', 'Mike Fors', 'SAFL', '100.00', 'Team Registration Fee', '2009-01-15 22:59:27', ''),
(256, 'SAFL', 'SAFL', 'Mike Fors', '50.00', 'Refund', '2009-01-17 16:21:39', ''),
(257, 'Mike Fors', 'Mike Fors', 'MMUFC', '210.00', 'For players', '2009-01-17 16:34:36', ''),
(258, 'Oze', 'Oze', 'SAFL', '50.00', 'Registration fee for Avakair Dragons', '2009-01-17 20:59:59', ''),
(259, 'admin', 'Crown Account', 'Austi_Scot', '150.00', 'wiki stuff', '2009-01-17 21:55:15', ''),
(260, 'Jonas', 'Jonas', 'SAFL', '200.00', 'Donation + registration', '2009-01-17 22:33:32', ''),
(261, 'Austi_Scot', 'Austi_Scot', 'Crown Account', '120.00', '1 yr. payment: Microton Naval Base', '2009-01-18 04:49:36', ''),
(262, 'Austi_Scot', 'Austi_Scot', 'Crown Account', '110.00', 'Payment: 11 months- Microton Naval War Machine', '2009-01-18 04:56:08', ''),
(263, 'Austi_Scot', 'Austi_Scot', 'Crown Account', '120.00', '1 yr. payment - sub-forum: Hallucigrad Library ', '2009-01-18 05:04:36', ''),
(264, 'admin', 'Crown Account', 'Prodigy Almighty', '25000.00', 'SCIRA Money', '2009-01-30 01:16:18', ''),
(265, 'Austi_Scot', 'Austi_Scot', 'Mike Fors', '90.00', 'Retainer Fee, Feb. 2009', '2009-02-03 05:06:36', ''),
(266, 'Ari Rahikkala', 'Ari Rahikkala', 'Jess', '100.00', 'Pleasing geekiness', '2009-02-13 14:12:56', ''),
(267, 'Ari Rahikkala', 'Ari Rahikkala', 'Crown Account', '200.00', 'Buying voting credits', '2009-02-15 20:50:58', ''),
(268, 'Jacobus Loki', 'Jacobus Loki', 'Austi_Scot', '261.00', 'why not?', '2009-02-23 23:57:43', ''),
(269, 'admin', 'Crown Account', 'Allot', '150.00', 'Wiki', '2009-02-27 07:50:18', ''),
(270, 'Allot', 'Allot', 'Mike Fors', '50.00', 'Mango Bar Test', '2009-02-27 23:06:22', ''),
(271, 'Prodigy Almighty', 'Prodigy Almighty', 'Lamifo', '7950.00', 'Royal Army Purchase', '2009-03-07 14:06:27', ''),
(272, 'Lamifo', 'Lamifo', 'Crown Account', '5240.00', 'Orbat raw materials', '2009-03-08 10:59:35', ''),
(273, 'Lamifo', 'Lamifo', 'Mike Fors', '2710.00', '', '2009-03-08 10:59:52', ''),
(274, 'admin', 'Iskander Mirkdale', 'Crown Account', '1060.03', 'Taxes (part)', '2009-03-11 09:59:17', ''),
(275, 'admin', 'Andreas the Wise', 'Crown Account', '331.01', 'Taxes (part)', '2009-03-11 10:01:00', ''),
(276, 'admin', 'Seanad', 'Crown Account', '1111.05', 'Taxes (part)', '2009-03-11 10:01:33', ''),
(277, 'admin', 'Mike Fors', 'Crown Account', '2000.00', 'Tax', '2009-03-11 10:02:41', ''),
(278, 'admin', 'Ari Rahikkala', 'Crown Account', '2000.00', 'Tax', '2009-03-11 10:03:01', ''),
(279, 'Crown Account', 'Crown Account', 'Austi_Scot', '1650.00', 'Wage and Bounty', '2009-03-12 22:33:51', ''),
(280, 'Crown Account', 'Crown Account', 'Jonas', '750.00', 'Wage and Bounty', '2009-03-12 22:34:09', ''),
(281, 'Crown Account', 'Crown Account', 'Andreas the Wise', '2050.00', 'Wage and Bounty', '2009-03-12 22:34:33', ''),
(282, 'Crown Account', 'Crown Account', 'Prodigy Almighty', '1250.00', 'Wage and Bounty', '2009-03-12 22:34:54', ''),
(283, 'Crown Account', 'Crown Account', 'Iskander Mirkdale', '1800.00', 'Bounty', '2009-03-12 22:35:31', ''),
(284, 'Crown Account', 'Crown Account', 'Nathan', '1700.00', 'Wage and Bounty', '2009-03-12 22:36:04', ''),
(285, 'Crown Account', 'Crown Account', 'andelarion', '500.00', 'Bounty', '2009-03-12 22:36:21', ''),
(286, 'Crown Account', 'Crown Account', 'Scott', '1800.00', 'Wage and Bounty', '2009-03-12 22:36:53', ''),
(287, 'Crown Account', 'Crown Account', 'Harald of Froyalan', '1000.00', 'Wage and Bounty', '2009-03-12 22:37:14', ''),
(288, 'admin', 'Andreas the Wise', 'Crown Account', '557.94', 'Taxes (part)', '2009-03-12 22:39:02', ''),
(289, 'admin', 'Iskander Mirkdale', 'Crown Account', '939.97', 'Taxes (part)', '2009-03-12 22:39:48', ''),
(290, 'admin', 'Jess', 'Crown Account', '1300.00', 'taxes (the joy of being assistant duke)', '2009-03-12 22:40:14', ''),
(291, 'Crown Account', 'Crown Account', 'Ari Rahikkala', '1200.00', 'Wage and Bounty', '2009-03-12 22:41:52', ''),
(292, 'Crown Account', 'Crown Account', 'Liam conToketi', '100.00', 'wage', '2009-03-12 22:42:15', ''),
(293, 'Crown Account', 'Crown Account', 'Jacobus Loki', '250.00', 'Bounty', '2009-03-12 22:42:32', ''),
(294, 'Crown Account', 'Crown Account', 'Mike Fors', '1250.00', 'Wage and Bounty', '2009-03-12 22:42:56', ''),
(295, 'Crown Account', 'Crown Account', 'Allot', '500.00', 'New Citizen + Bounty', '2009-03-12 22:43:17', ''),
(296, 'Austi_Scot', 'Austi_Scot', 'Andreas the Wise', '500.00', 'A share of the taxes', '2009-03-13 01:15:46', ''),
(297, 'Austi_Scot', 'Austi_Scot', 'Mike Fors', '90.00', 'Retainer Fee, March 2009', '2009-03-13 01:18:51', ''),
(298, 'Austi_Scot', 'Austi_Scot', 'Erik Mortis Brookshire', '600.00', 'Purchase of 60% of Shireroth Stock Market', '2009-03-13 04:46:40', ''),
(299, 'Austi_Scot', 'Austi_Scot', 'Crown Account', '250.00', 'Ownership of Shirithian Mercantile Exchange forum', '2009-03-13 04:53:45', ''),
(300, 'Austi_Scot', 'Austi_Scot', 'Crown Account', '540.00', '500 sailers, 10 Medival fighters', '2009-03-13 05:59:35', ''),
(301, 'Andreas the Wise', 'Andreas the Wise', 'Crown Account', '250.00', 'Subform ', '2009-03-13 23:18:17', ''),
(302, 'Liam conToketi', 'Liam conToketi', 'Austi_Scot', '80.00', 'Purchase of bonds', '2009-03-14 20:49:34', ''),
(303, 'Allot', 'Allot', 'Crown Account', '1.70', 'SCIRA- 1 old man 2 beefies', '2009-03-15 05:47:20', ''),
(304, 'Andreas the Wise', 'Andreas the Wise', 'Ari Rahikkala', '200.00', 'Encouragement', '2009-03-15 10:23:15', ''),
(305, 'Andreas the Wise', 'Andreas the Wise', 'Austi_Scot', '200.00', 'Encouragement', '2009-03-15 10:23:37', ''),
(306, 'admin', 'Ari Rahikkala', 'Andreas the Wise', '200.00', 'Oops, sent you money by accident ...', '2009-03-15 10:24:00', ''),
(307, 'Gilrean Treebane', 'Gilrean Treebane', 'Liam conToketi', '2367.88', '', '2009-03-20 18:41:17', ''),
(308, 'Ari Rahikkala', 'Ari Rahikkala', 'Shyriath', '9750.00', 'As agreed. For Kildare.', '2009-03-20 23:38:51', ''),
(309, 'Crown Account', 'Crown Account', 'Shyriath', '250.00', 'Ari''s gift', '2009-03-21 07:47:45', ''),
(310, 'Crown Account', 'Crown Account', 'Erik Mortis Brookshire', '600.00', 'Bounty', '2009-03-21 07:48:52', ''),
(311, 'Shyriath', 'Shyriath', 'Andreas the Wise', '10000.00', 'For the Duchy of Kildare.', '2009-03-22 00:07:29', ''),
(312, 'Austi_Scot', 'Austi_Scot', 'Allot', '20.00', 'Trial for "Breach of Contract"', '2009-03-22 04:16:59', ''),
(313, 'Austi_Scot', 'Austi_Scot', 'Andreas the Wise', '350.00', 'magic creatures, Old Hallucination', '2009-03-22 22:46:50', ''),
(314, 'Andreas the Wise', 'Andreas the Wise', 'Crown Account', '51.00', 'Raw Materials', '2009-03-24 09:01:39', ''),
(315, 'Andreas the Wise', 'Andreas the Wise', 'Crown Account', '2400.00', 'Air Transfer', '2009-03-24 09:04:27', ''),
(316, 'Andreas the Wise', 'Andreas the Wise', 'Crown Account', '143.00', 'Raw Materials Austi', '2009-03-24 10:09:30', ''),
(317, 'Allot', 'Allot', 'Andreas the Wise', '50.00', 'trading course', '2009-03-24 15:13:53', ''),
(318, 'Austi_Scot', 'Austi_Scot', 'Andreas the Wise', '90.00', 'MITO trading', '2009-03-24 16:24:01', ''),
(319, 'Andreas the Wise', 'Andreas the Wise', 'Allot', '1120.00', 'SCIRA Money', '2009-03-25 06:29:50', ''),
(320, 'Andreas the Wise', 'Andreas the Wise', 'Mike Fors', '3089.00', 'SCIRA Money', '2009-03-25 06:38:53', ''),
(321, 'Andreas the Wise', 'Andreas the Wise', 'Austi_Scot', '3290.00', 'SCIRA', '2009-03-25 11:12:35', ''),
(322, 'Allot', 'Allot', 'Crown Account', '900.00', 'SCIRA- Invoice #00001', '2009-03-25 13:25:37', ''),
(323, 'Austi_Scot', 'Austi_Scot', 'Crown Account', '1910.00', 'Orbat purchas/sale Andreas', '2009-03-25 16:46:20', ''),
(324, 'Mike Fors', 'Mike Fors', 'Crown Account', '1985.00', 'Orbat raw materials', '2009-03-26 01:39:58', ''),
(325, 'Harald of Froyalan', 'Harald of Froyalan', 'andelarion', '5499.06', 'A gift.', '2009-03-26 11:05:37', ''),
(326, 'Allot', 'Allot', 'Andreas the Wise', '15.00', 'magic fireplaces', '2009-03-26 22:07:05', ''),
(327, 'Andreas the Wise', 'Andreas the Wise', 'Austi_Scot', '961.00', 'Bonds', '2009-03-26 23:25:52', ''),
(328, 'Austi_Scot', 'Austi_Scot', 'Andreas the Wise', '1921.00', 'Bond Payment/interest', '2009-03-29 19:35:50', ''),
(329, 'Austi_Scot', 'Austi_Scot', 'Liam conToketi', '160.00', 'Bond Payment/interest', '2009-03-29 19:37:57', ''),
(330, 'Austi_Scot', 'Austi_Scot', 'Erik Mortis Brookshire', '300.00', '', '2009-03-29 19:44:39', ''),
(331, 'Austi_Scot', 'Austi_Scot', 'Crown Account', '61.00', 'ending banking', '2009-03-29 20:01:53', ''),
(332, 'admin', 'andelarion', 'Crown Account', '1991.87', 'Tax', '2009-04-01 06:45:03', ''),
(333, 'admin', 'Andreas the Wise', 'admin', '237.11', 'Tax', '2009-04-01 06:54:46', ''),
(334, 'admin', 'Bayen', 'admin', '160.94', 'Tax', '2009-04-01 06:55:04', ''),
(335, 'admin', 'benkern', 'admin', '83.95', 'Tax', '2009-04-01 06:55:24', ''),
(336, 'admin', 'foghorn', 'admin', '104.01', 'Tax', '2009-04-01 06:55:43', ''),
(337, 'admin', 'Hypatias mom', 'admin', '298.00', 'Tax', '2009-04-01 06:55:57', ''),
(338, 'admin', 'Jess', 'admin', '35.47', 'Tax', '2009-04-01 06:56:14', ''),
(339, 'admin', 'JessAlt', 'admin', '40.00', 'Tax', '2009-04-01 06:56:33', ''),
(340, 'admin', 'Jonas', 'admin', '489.29', 'Tax', '2009-04-01 06:56:50', ''),
(341, 'admin', 'Krasniy Yastreb', 'admin', '807.93', 'Tax', '2009-04-01 06:57:08', ''),
(342, 'admin', 'ktzunichurch', 'admin', '15.00', 'Tax', '2009-04-01 06:57:23', ''),
(343, 'admin', 'Liam conToketi', 'admin', '182.18', 'Tax', '2009-04-01 06:57:42', ''),
(344, 'admin', 'Maksym', 'admin', '505.00', 'Tax', '2009-04-01 06:57:58', ''),
(345, 'admin', 'Mike Fors', 'admin', '609.39', 'Tax', '2009-04-01 06:58:15', ''),
(346, 'admin', 'MMUFC', 'admin', '21.00', '', '2009-04-01 06:58:29', ''),
(347, 'admin', 'Nathan', 'admin', '100.00', 'Tax', '2009-04-01 06:58:47', ''),
(348, 'admin', 'Omega Limited', 'admin', '288.74', 'Tax', '2009-04-01 06:59:02', ''),
(349, 'admin', 'Prodigy Almighty', 'admin', '731.15', 'Tax', '2009-04-01 06:59:21', ''),
(350, 'admin', 'SAFL', 'admin', '30.00', 'Tax', '2009-04-01 06:59:37', ''),
(351, 'admin', 'Scott', 'admin', '1000.00', 'Tax', '2009-04-01 06:59:51', ''),
(352, 'admin', 'Crown Account', 'admin', '1991.87', 'Accounting', '2009-04-01 07:00:11', ''),
(353, 'admin', 'admin', 'Crown Account', '7731.03', 'Total Tax Take', '2009-04-01 07:03:40', ''),
(354, 'Crown Account', 'Crown Account', 'Andreas the Wise', '1100.00', 'Bounty', '2009-04-03 00:32:51', ''),
(355, 'Crown Account', 'Crown Account', 'Shyriath', '800.00', 'Bounty', '2009-04-03 00:34:09', ''),
(356, 'Crown Account', 'Crown Account', 'Allot', '1550.00', 'Bounty', '2009-04-03 00:34:52', ''),
(357, 'Crown Account', 'Crown Account', 'Liam conToketi', '500.00', 'Bounty', '2009-04-03 00:35:20', ''),
(358, 'Crown Account', 'Crown Account', 'Ari Rahikkala', '200.00', 'Bounty', '2009-04-03 00:35:38', ''),
(359, 'Crown Account', 'Crown Account', 'Jess', '300.00', 'Bounty', '2009-04-03 00:35:51', ''),
(360, 'Crown Account', 'Crown Account', 'Scott', '250.00', 'Bounty', '2009-04-03 00:36:11', ''),
(361, 'Crown Account', 'Crown Account', 'Käthbad jënRöijanin', '250.00', 'Bounty', '2009-04-03 00:36:24', ''),
(362, 'Crown Account', 'Crown Account', 'Erik Mortis Brookshire', '700.00', 'wage', '2009-04-03 00:37:28', ''),
(363, 'Crown Account', 'Crown Account', 'andelarion', '200.00', 'wage', '2009-04-03 00:38:09', ''),
(364, 'Crown Account', 'Crown Account', 'Ari Rahikkala', '1100.00', 'wage', '2009-04-03 00:38:23', ''),
(365, 'Crown Account', 'Crown Account', 'Allot', '400.00', 'wage', '2009-04-03 00:38:35', ''),
(366, 'Crown Account', 'Crown Account', 'Prodigy Almighty', '300.00', 'wage', '2009-04-03 00:38:51', ''),
(367, 'Crown Account', 'Crown Account', 'Andreas the Wise', '700.00', 'wage', '2009-04-03 00:39:06', ''),
(368, 'Crown Account', 'Crown Account', 'Mike Fors', '700.00', 'wage', '2009-04-03 00:39:52', ''),
(369, 'Crown Account', 'Crown Account', 'Nathan', '600.00', 'wage', '2009-04-03 00:40:07', ''),
(370, 'Käthbad jënRöijanin', 'Käthbad jënRöijanin', 'Andreas the Wise', '50.00', 'MITO course', '2009-04-04 03:26:54', ''),
(371, 'Nathan', 'Nathan', 'Andreas the Wise', '50.00', 'mito class', '2009-04-07 00:14:37', ''),
(372, 'Shyriath', 'Shyriath', 'Ari Rahikkala', '100.00', 'For his overly clever answer to my request', '2009-04-07 00:17:33', ''),
(373, 'Allot', 'Allot', 'The Mango Loto', '100.00', '10 tickets', '2009-04-09 21:37:28', ''),
(374, 'Allot', 'Allot', 'The Mango Loto', '200.00', 'extra funds', '2009-04-09 21:56:43', ''),
(375, 'Liam conToketi', 'Liam conToketi', 'The Mango Loto', '100.00', 'Lottery tickets: Oroigawa Koreyasu', '2009-04-10 00:44:57', ''),
(376, 'Scott', 'Scott', 'The Mango Loto', '10.00', 'Lotto ticket!', '2009-04-10 00:46:16', ''),
(377, 'Andreas the Wise', 'Andreas the Wise', 'Leo', '150.00', 'Lotto', '2009-04-10 01:41:42', ''),
(378, 'Scott', 'Scott', 'Leo', '50.00', '', '2009-04-10 03:22:21', ''),
(379, 'Leo', 'Leo', 'The Mango Loto', '150.00', '', '2009-04-10 03:36:10', ''),
(380, 'Crown Account', 'Crown Account', 'Ministry of Information', '2000.00', 'Wiki Bounty', '2009-04-10 22:19:42', ''),
(381, 'andelarion', 'andelarion', 'People''s Academy of Elwynn', '3000.00', 'Establishment', '2009-04-11 11:28:28', ''),
(382, 'Ministry of Information', 'Ministry of Information', 'Leo', '400.00', 'Wikification', '2009-04-11 21:41:04', ''),
(383, 'Ministry of Information', 'Ministry of Information', 'Leo', '40.00', 'WikiWork', '2009-04-12 15:52:30', ''),
(384, 'Leo', 'Leo', 'The Mango Loto', '40.00', '', '2009-04-13 00:11:30', ''),
(385, 'Jacobus Loki', 'Jacobus Loki', 'The Mango Loto', '20.00', 'Gambling is going on....', '2009-04-13 18:20:43', ''),
(386, 'Shyriath', 'Shyriath', 'The Mango Loto', '200.00', 'For 20 lottery tickets', '2009-04-14 03:28:00', ''),
(387, 'Ministry of Information', 'Ministry of Information', 'Shyriath', '200.00', 'Kaiserial Reputation', '2009-04-14 03:28:16', ''),
(388, 'Oze', 'Oze', 'The Mango Loto', '20.00', 'Buying 2 tickets', '2009-04-14 11:43:46', ''),
(389, 'Crown Account', 'Crown Account', 'Leo', '400.00', 'Competition Victory', '2009-04-17 04:54:28', ''),
(390, 'The Mango Loto', 'The Mango Loto', 'Jacobus Loki', '840.00', '', '2009-04-21 01:15:18', ''),
(391, 'admin', 'Prodigy Almighty', 'Crown Account', '17050.00', 'SCIRA Money', '2009-05-02 03:46:25', ''),
(392, 'admin', 'andelarion', 'Crown Account', '577.90', 'Tax', '2009-05-02 03:49:25', ''),
(393, 'admin', 'Ari Rahikkala', 'Crown Account', '48.70', 'Tax', '2009-05-02 03:49:43', ''),
(394, 'admin', 'Bayen', 'Crown Account', '136.80', 'Tax', '2009-05-02 03:50:01', ''),
(395, 'admin', 'Erik Mortis Brookshire', 'Crown Account', '1326.80', 'Tax', '2009-05-02 03:50:31', ''),
(396, 'admin', 'foghorn', 'Crown Account', '126.00', 'Tax', '2009-05-02 03:50:53', ''),
(397, 'admin', 'Hypatias mom', 'Crown Account', '253.30', 'Tax', '2009-05-02 03:51:12', ''),
(398, 'admin', 'Jacobus Loki', 'Crown Account', '7.00', 'Tax', '2009-05-02 03:51:32', ''),
(399, 'admin', 'Jess', 'Crown Account', '61.90', 'Taxes (part)', '2009-05-02 03:51:51', ''),
(400, 'admin', 'JessAlt', 'Crown Account', '36.00', 'Taxes (part)', '2009-05-02 03:52:17', ''),
(401, 'admin', 'Jonas', 'Crown Account', '391.40', 'Tax', '2009-05-02 03:52:36', ''),
(402, 'admin', 'Krasniy Yastreb', 'Crown Account', '585.40', 'Tax', '2009-05-02 03:52:58', ''),
(403, 'admin', 'Maksym', 'Crown Account', '404.00', 'Tax', '2009-05-02 03:53:22', ''),
(404, 'admin', 'MMUFC', 'Crown Account', '18.89', 'Tax', '2009-05-02 03:53:48', ''),
(405, 'admin', 'Nathan', 'Crown Account', '167.50', 'Tax', '2009-05-02 03:54:17', ''),
(406, 'admin', 'Omega Limited', 'Crown Account', '233.70', 'Tax', '2009-05-02 03:54:43', ''),
(407, 'admin', 'Prodigy Almighty', 'Crown Account', '609.50', 'Tax', '2009-05-02 03:55:05', ''),
(408, 'admin', 'SAFL', 'Crown Account', '27.00', 'Tax', '2009-05-02 03:55:40', ''),
(409, 'admin', 'Scott', 'Crown Account', '757.00', 'Tax', '2009-05-02 03:55:59', ''),
(410, 'admin', 'Allot', 'Crown Account', '63.50', 'Tax', '2009-05-02 03:58:23', ''),
(411, 'Jacobus Loki', 'Jacobus Loki', 'benkern', '650.00', 'mar Sara.', '2009-05-04 21:20:54', ''),
(412, 'Leo', 'Leo', 'Andreas the Wise', '734.00', 'Payment', '2009-05-05 12:20:56', ''),
(413, 'Mike Fors', 'Mike Fors', 'Crown Account', '3600.00', '', '2009-05-06 01:16:41', ''),
(414, 'Crown Account', 'Crown Account', 'Allot', '1100.00', 'Wage and Bounty', '2009-05-07 04:46:59', ''),
(415, 'Crown Account', 'Crown Account', 'Scott', '850.00', 'Bounty', '2009-05-07 04:47:51', ''),
(416, 'Crown Account', 'Crown Account', 'andelarion', '1000.00', 'Wage and Bounty', '2009-05-07 04:48:25', ''),
(417, 'Crown Account', 'Crown Account', 'Iskander Mirkdale', '300.00', 'Bounty', '2009-05-07 04:48:45', ''),
(418, 'Crown Account', 'Crown Account', 'Jacobus Loki', '500.00', 'Bounty', '2009-05-07 04:49:01', ''),
(419, 'Crown Account', 'Crown Account', 'Leo', '900.00', 'Wage and Bounty', '2009-05-07 04:51:07', ''),
(420, 'Crown Account', 'Crown Account', 'Shyriath', '550.00', 'Bounty', '2009-05-07 04:51:25', ''),
(421, 'Crown Account', 'Crown Account', 'benkern', '200.00', 'Bounty', '2009-05-07 04:51:43', ''),
(422, 'Crown Account', 'Crown Account', 'Ari Rahikkala', '900.00', 'wage', '2009-05-07 04:52:40', ''),
(423, 'Crown Account', 'Crown Account', 'Andreas the Wise', '700.00', 'wage', '2009-05-07 04:52:56', ''),
(424, 'Crown Account', 'Crown Account', 'Mike Fors', '700.00', 'wage', '2009-05-07 04:53:17', ''),
(425, 'Ministry of Information', 'Ministry of Information', 'The Khan of Vijayanagara', '100.00', 'WikiWork', '2009-05-10 20:31:31', ''),
(426, 'Ministry of Information', 'Ministry of Information', 'Jacobus Loki', '150.00', 'WikiWork', '2009-05-10 20:33:43', ''),
(427, 'Leo', 'Leo', 'Andreas the Wise', '394.00', 'SCIRA Purchase', '2009-05-13 01:05:28', ''),
(428, 'Allot', 'Allot', 'The Mango Loto', '1000.00', 'Funds', '2009-05-13 01:14:39', ''),
(429, 'benkern', 'benkern', 'Mike Fors', '2400.00', 'Mar Sara purchase', '2009-05-13 12:38:17', ''),
(430, 'Crown Account', 'Crown Account', 'The Khan of Vijayanagara', '350.00', 'Bounty', '2009-05-13 21:26:27', ''),
(431, 'Allot', 'Allot', 'The Khan of Vijayanagara', '1000.00', 'Elwynnbrigaden', '2009-05-14 01:30:38', ''),
(432, 'Mike Fors', 'Mike Fors', 'Crown Account', '2400.00', 'Lamifo resources', '2009-05-14 22:58:48', ''),
(433, 'The Khan of Vijayanagara', 'The Khan of Vijayanagara', 'Lamifo', '180.00', 'R1/LJk1 Luftjägarkompani (12 Apaches)', '2009-05-14 23:25:27', ''),
(434, 'Crown Account', 'Crown Account', 'Mike Fors', '600.00', 'Refund', '2009-05-15 04:19:11', ''),
(435, 'Mike Fors', 'Mike Fors', 'benkern', '400.00', 'Refund', '2009-05-15 20:33:07', ''),
(436, 'Lamifo', 'Lamifo', 'Crown Account', '120.00', 'Helicopter raw materials', '2009-05-15 20:34:24', ''),
(437, 'The Khan of Vijayanagara', 'The Khan of Vijayanagara', 'Lamifo', '440.00', 'R1/Pk1 Pansarkompani "Janavasper" (Less Light Guns & Cudgellers)', '2009-05-17 22:02:50', ''),
(438, 'The Khan of Vijayanagara', 'The Khan of Vijayanagara', 'Crown Account', '800.00', 'L/F1 Flygflottilj (x8 F7 OAH Taifun)', '2009-05-17 22:07:20', ''),
(439, 'The Khan of Vijayanagara', 'The Khan of Vijayanagara', 'Crown Account', '20.00', 'R1/Pk1 Pansarkompani "Janavasper" (x10 Light Guns)', '2009-05-17 22:22:29', ''),
(440, 'The Khan of Vijayanagara', 'The Khan of Vijayanagara', 'Allot', '10.00', 'Ten Armed Bastards', '2009-05-17 23:43:48', ''),
(441, 'Allot', 'Allot', 'Crown Account', '6.00', 'Khan''s Gentlemen Cudgellers', '2009-05-18 00:01:20', ''),
(442, 'Lamifo', 'Lamifo', 'Mike Fors', '500.00', '', '2009-05-18 01:37:08', ''),
(443, 'Mike Fors', 'Mike Fors', 'Crown Account', '347.00', '', '2009-05-18 01:42:14', ''),
(444, 'MMUFC', 'MMUFC', 'Mike Fors', '170.11', '', '2009-05-18 01:46:01', ''),
(445, 'SAFL', 'SAFL', 'Mike Fors', '243.00', '', '2009-05-18 01:46:51', ''),
(446, 'Mike Fors', 'Mike Fors', 'Crown Account', '0.67', 'No likey decimals', '2009-05-18 01:48:36', ''),
(447, 'Leo', 'Leo', 'The Khan of Vijayanagara', '622.00', 'ElwynnBrigade Upfunding', '2009-05-18 04:05:47', ''),
(448, 'Jacobus Loki', 'Jacobus Loki', 'The Khan of Vijayanagara', '162.88', 'Panzer Fuel', '2009-05-18 18:50:12', ''),
(449, 'Ministry of Information', 'Ministry of Information', 'Jacobus Loki', '75.00', 'Main Page Change', '2009-05-18 19:52:25', ''),
(450, 'Ministry of Information', 'Ministry of Information', 'SirWilliamStrauss', '100.00', 'WikiWork', '2009-05-18 19:52:39', ''),
(451, 'The Khan of Vijayanagara', 'The Khan of Vijayanagara', 'Mike Fors', '346.60', 'R4/B3/Fk1 Fältkompani ', '2009-05-18 22:16:31', ''),
(452, 'Mike Fors', 'Mike Fors', 'Crown Account', '322.44', 'Orbat raw material', '2009-05-18 22:27:08', ''),
(453, 'Jacobus Loki', 'Jacobus Loki', 'Leo', '40.00', 'Gambling is going on!', '2009-05-18 22:43:39', ''),
(454, 'Jacobus Loki', 'Jacobus Loki', 'The Khan of Vijayanagara', '35.11', 'panzerstuff', '2009-05-18 22:44:14', ''),
(455, 'The Khan of Vijayanagara', 'The Khan of Vijayanagara', 'Crown Account', '464.00', 'Purchase: Kopfjäger & R1/Fgk1 Flygkompani', '2009-05-20 07:10:21', ''),
(456, 'benkern', 'benkern', 'Bacchic Fund', '605.59', '', '2009-05-21 12:29:56', ''),
(457, 'Mike Fors', 'Mike Fors', 'The Mango Loto', '200.00', 'Umm... Sponsoring the Kaiseress? :)', '2009-05-21 21:46:03', ''),
(458, 'Jacobus Loki', 'Jacobus Loki', 'Liam conToketi', '100.00', 'exam fee', '2009-05-22 16:47:01', ''),
(459, 'Ministry of Information', 'Ministry of Information', 'Crown Account', '200.00', 'WikiWork', '2009-05-23 23:10:15', ''),
(460, 'Ministry of Information', 'Ministry of Information', 'Household Account', '200.00', 'WikiWork', '2009-05-24 00:03:42', ''),
(461, 'Crown Account', 'Crown Account', 'Household Account', '200.00', 'Oopsie?', '2009-05-25 10:50:13', ''),
(462, 'Liam conToketi', 'Liam conToketi', 'Crown Account', '2400.00', 'Purchase of SCIRA troops', '2009-05-26 00:32:59', ''),
(463, 'Liam conToketi', 'Liam conToketi', 'The Khan of Vijayanagara', '365.70', 'Payment for orbat job', '2009-05-26 00:33:39', ''),
(464, 'Ministry of Information', 'Ministry of Information', 'Household Account', '100.00', 'WikiWOrk', '2009-05-28 23:39:58', ''),
(465, 'Ministry of Information', 'Ministry of Information', 'Nathan', '150.00', 'WikiWork', '2009-05-28 23:40:21', ''),
(466, 'Household Account', 'Household Account', 'Mike Fors', '500.00', '', '2009-05-29 00:55:20', ''),
(467, 'SirWilliamStrauss', 'SirWilliamStrauss', 'Leo', '200.00', 'vacation home', '2009-05-29 21:35:42', ''),
(468, 'Household Account', 'Household Account', 'Jonas', '40.00', 'Apollo City villa construction', '2009-05-31 13:15:25', ''),
(469, 'The Khan of Vijayanagara', 'The Khan of Vijayanagara', 'Allot', '100.00', 'Purchase x10 Knights-Errant of the Stagg (10 erb)', '2009-06-02 22:19:58', ''),
(470, 'andelarion', 'andelarion', 'Liam conToketi', '1500.00', 'gift', '2009-06-03 00:45:51', ''),
(471, 'admin', 'admin', 'Imperial Treasury', '200000.00', 'Gralus Start', '2009-06-03 21:31:43', ''),
(472, 'Allot', 'Allot', 'Nathan', '100.00', 'Will', '2009-06-03 22:12:58', ''),
(473, 'Allot', 'Allot', 'Leo', '200.00', 'Will', '2009-06-03 22:13:11', ''),
(474, 'Allot', 'Allot', 'Crown Account', '10.00', 'Crazy Khan Horsies', '2009-06-03 22:13:51', ''),
(475, 'Imperial Treasury', 'Imperial Treasury', 'Novgov', '81191.00', 'Start', '2009-06-04 05:51:06', ''),
(476, 'Imperial Treasury', 'Imperial Treasury', 'Longbow', '9010.00', 'Start', '2009-06-04 05:51:33', ''),
(477, 'Novgov', 'Novgov', 'Demon of Fides', '10000.00', 'Start', '2009-06-04 05:51:59', ''),
(478, 'Novgov', 'Novgov', 'Nicholas the Mad', '10000.00', 'Start', '2009-06-04 05:52:15', ''),
(479, 'Novgov', 'Novgov', 'VBNC', '10000.00', 'Manuel''s Piracy Competition', '2009-06-04 23:08:31', ''),
(480, 'Novgov', 'Novgov', 'Andreas the Wise', '10000.00', 'Starting', '2009-06-04 23:10:09', ''),
(481, 'Jonas', 'Jonas', 'The Mango Loto', '400.00', 'Tickets', '2009-06-05 21:37:11', ''),
(482, 'Andreas the Wise', 'Andreas the Wise', 'Leo', '500.00', 'Flag for Myzoria', '2009-06-06 05:05:47', ''),
(483, 'SirWilliamStrauss', 'SirWilliamStrauss', 'Jonas', '250.00', 'New Flag Design', '2009-06-06 17:35:27', ''),
(484, 'Liam conToketi', 'Liam conToketi', 'Crown Account', '500.00', '2 forums in SEBD', '2009-06-08 02:33:36', ''),
(485, 'andelarion', 'andelarion', 'The Mango Loto', '200.00', 'Prince Isur-Ai''s tickets', '2009-06-08 09:43:45', ''),
(486, 'The Mango Loto', 'The Mango Loto', 'andelarion', '1800.00', 'Lotto Winnings', '2009-06-13 02:00:59', '');
INSERT INTO `banklog` (`id`, `instigator`, `source`, `destination`, `funds`, `reason`, `date`, `userip`) VALUES
(487, 'Novgov', 'Novgov', 'Crown Account', '20000.00', 'Private Donation', '2009-06-14 02:57:50', ''),
(488, 'Crown Account', 'Crown Account', 'Gman russell', '5000.00', 'Shh, don\\''t tell anyone I gave you this much.', '2009-06-14 02:58:34', ''),
(489, 'Jonas', 'Jonas', 'andelarion', '300.00', 'Flags', '2009-06-14 17:04:14', ''),
(490, 'Andreas the Wise', 'Andreas the Wise', 'Demon of Fides', '100.00', 'demzus', '2009-06-16 00:42:14', ''),
(491, 'Andreas the Wise', 'Andreas the Wise', 'Nathan', '1000.00', 'forum images', '2009-06-16 00:42:35', ''),
(492, 'Liam conToketi', 'Liam conToketi', 'Andreas the Wise', '50.00', 'Service list', '2009-06-17 02:41:50', ''),
(493, 'Ari Rahikkala', 'Ari Rahikkala', 'Andreas the Wise', '100.00', 'http://shireroth.org/forum/viewtopic.php?f=25&t=11148', '2009-06-17 07:35:55', ''),
(494, 'Demon of Fides', 'Demon of Fides', 'Andreas the Wise', '50.00', 'Goods & Services', '2009-06-17 08:38:57', ''),
(495, 'admin', 'admin', 'Department of Greed', '15000.00', 'Starting Capital', '2009-06-18 01:48:52', ''),
(496, 'Imperial Treasury', 'Imperial Treasury', 'Department of Greed', '5000.00', 'Gift Horse', '2009-06-18 01:50:03', ''),
(497, 'Crown Account', 'Crown Account', 'Erik Mortis Brookshire', '1000.00', 'Bank work', '2009-06-18 01:56:06', ''),
(498, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'Andreas the Wise', '50.00', 'some list of people', '2009-06-18 04:33:40', ''),
(499, 'Nicholas the Mad', 'Nicholas the Mad', 'Andreas the Wise', '50.00', 'Andreas\\''s List', '2009-06-18 06:37:37', ''),
(500, 'The Khan of Vijayanagara', 'The Khan of Vijayanagara', 'Andreas the Wise', '50.00', 'Amendment to the \\"pro-bono\\" service list...', '2009-06-18 06:47:12', ''),
(501, 'admin', 'admin', 'NatopiaGov', '7500.00', 'Starting Capital', '2009-06-18 08:13:32', ''),
(502, 'admin', 'Jess', 'Crown Account', '1557.40', 'revoked citizenship', '2009-06-19 00:49:04', ''),
(503, 'admin', 'admin', 'Crown Account', '324.00', 'revoked citizenship', '2009-06-19 00:49:24', ''),
(504, 'Liam conToketi', 'Liam conToketi', 'Jötunn Heavy Industries', '1000.00', 'Company funds', '2009-06-19 01:42:39', ''),
(505, 'Leo', 'Leo', 'Gman russell', '173.00', 'ISI Land Purchase', '2009-06-19 02:19:14', ''),
(506, 'Leo', 'Leo', 'Andreas the Wise', '327.00', 'IsI Land Purchase', '2009-06-19 02:28:59', ''),
(507, 'Jacobus Loki', 'Jacobus Loki', 'Liam conToketi', '780.00', '', '2009-06-19 21:43:54', ''),
(508, 'Household Account', 'Household Account', 'Andreas the Wise', '50.00', 'Cartography listing thingy', '2009-06-20 01:40:47', ''),
(509, 'Imperial Treasury', 'Imperial Treasury', 'Gerk', '5000.00', 'Starting Capital', '2009-06-20 06:35:57', ''),
(510, 'Imperial Treasury', 'Imperial Treasury', 'Lachieboy', '5000.00', 'Starting Capital', '2009-06-20 06:36:33', ''),
(511, 'NatopiaGov', 'NatopiaGov', 'KvZ', '275.00', 'Regent and Minister wage', '2009-06-20 19:38:51', ''),
(512, 'NatopiaGov', 'NatopiaGov', 'SirWilliamStrauss', '150.00', 'Bovicar and Consort june wage', '2009-06-20 19:39:39', ''),
(513, 'NatopiaGov', 'NatopiaGov', 'Nathan', '200.00', 'emperor june wage', '2009-06-20 19:40:04', ''),
(514, 'Crown Account', 'Crown Account', 'Ministry of Information', '10405.00', 'Bounties', '2009-06-21 03:37:50', ''),
(515, 'Gerk', 'Gerk', 'Andreas the Wise', '100.00', 'additions to Services List', '2009-06-21 03:39:12', ''),
(516, 'Jonas', 'Jonas', 'Andreas the Wise', '5.00', 'Secrets! yay!', '2009-06-21 08:22:13', ''),
(517, 'Imperial Treasury', 'Imperial Treasury', 'Nargoth', '20000.00', 'Starting Capital', '2009-06-21 23:02:08', ''),
(518, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'Shyriath', '50.00', 'Landsraad work', '2009-06-22 03:00:10', ''),
(519, 'Household Account', 'Household Account', 'The Khan of Vijayanagara', '50.00', 'Nifty thread assemblage', '2009-06-22 06:48:51', ''),
(520, 'Ministry of Information', 'Ministry of Information', 'andelarion', '300.00', 'June bounty', '2009-06-22 17:53:56', ''),
(521, 'Ministry of Information', 'Ministry of Information', 'Ari Rahikkala', '1000.00', 'June bounty', '2009-06-22 17:54:16', ''),
(522, 'Ministry of Information', 'Ministry of Information', 'Leo', '500.00', 'June bounty', '2009-06-22 17:55:52', ''),
(523, 'Ministry of Information', 'Ministry of Information', 'The Khan of Vijayanagara', '400.00', 'June bounty', '2009-06-22 17:56:47', ''),
(524, 'Ministry of Information', 'Ministry of Information', 'Andreas the Wise', '400.00', 'June bounty', '2009-06-22 17:57:06', ''),
(525, 'Ministry of Information', 'Ministry of Information', 'Jacobus Loki', '100.00', 'June bounty', '2009-06-22 17:57:51', ''),
(526, 'Ministry of Information', 'Ministry of Information', 'benkern', '300.00', 'June bounty', '2009-06-22 17:59:42', ''),
(527, 'Ministry of Information', 'Ministry of Information', 'Nathan', '300.00', 'June bounty', '2009-06-22 18:00:11', ''),
(528, 'Ministry of Information', 'Ministry of Information', 'Shyriath', '600.00', 'June bounty', '2009-06-22 18:00:55', ''),
(529, 'Ministry of Information', 'Ministry of Information', 'Jonas', '700.00', 'June bounty', '2009-06-22 18:01:43', ''),
(530, 'Ministry of Information', 'Ministry of Information', 'Andreas the Wise', '700.00', 'June bounty', '2009-06-22 18:01:59', ''),
(531, 'Ministry of Information', 'Ministry of Information', 'Leo', '700.00', 'June bounty', '2009-06-22 18:02:17', ''),
(532, 'Ministry of Information', 'Ministry of Information', 'SirWilliamStrauss', '400.00', 'June bounty', '2009-06-22 18:02:39', ''),
(533, 'Ministry of Information', 'Ministry of Information', 'The Khan of Vijayanagara', '500.00', 'June bounty', '2009-06-22 18:03:30', ''),
(534, 'Ministry of Information', 'Ministry of Information', 'Scott', '300.00', 'June bounty', '2009-06-22 18:04:03', ''),
(535, 'Ministry of Information', 'Ministry of Information', 'Jacobus Loki', '400.00', 'June bounty', '2009-06-22 18:04:27', ''),
(536, 'Ministry of Information', 'Ministry of Information', 'Gman russell', '500.00', 'June bounty', '2009-06-22 18:04:48', ''),
(537, 'Ministry of Information', 'Ministry of Information', 'andelarion', '400.00', 'June bounty', '2009-06-22 18:05:08', ''),
(538, 'Ministry of Information', 'Ministry of Information', 'Nathan', '200.00', 'June bounty', '2009-06-22 18:05:27', ''),
(539, 'Ministry of Information', 'Ministry of Information', 'Mike Fors', '400.00', 'June bounty', '2009-06-22 18:06:16', ''),
(540, 'Ministry of Information', 'Ministry of Information', 'Ari Rahikkala', '5.00', 'June bounty', '2009-06-22 18:06:29', ''),
(541, 'Ministry of Information', 'Ministry of Information', 'Liam conToketi', '1000.00', 'June bounty', '2009-06-22 20:38:18', ''),
(542, 'andelarion', 'andelarion', 'Jötunn Heavy Industries', '6000.00', 'as per agreeement', '2009-06-23 04:06:15', ''),
(543, 'Liam conToketi', 'Liam conToketi', 'Jötunn Heavy Industries', '1730.00', 'JHI funding', '2009-06-23 04:18:22', ''),
(544, 'Jacobus Loki', 'Jacobus Loki', 'Liam conToketi', '510.00', '', '2009-06-23 05:27:01', ''),
(545, 'benkern', 'benkern', 'Bacchic Fund', '300.00', '', '2009-06-23 19:35:44', ''),
(546, 'Liam conToketi', 'Liam conToketi', 'Jötunn Heavy Industries', '560.00', 'JHI funding', '2009-06-24 04:23:12', ''),
(547, 'Jacobus Loki', 'Jacobus Loki', 'Liam conToketi', '10.00', 'why not', '2009-06-24 04:23:30', ''),
(548, 'Imperial Treasury', 'Imperial Treasury', 'Prodigy Almighty', '9298.00', 'Starting Gralan Money', '2009-06-24 23:49:02', ''),
(549, 'admin', 'Erik Mortis Brookshire', 'admin', '1.00', 'test', '2009-06-25 21:39:43', ''),
(550, 'admin', 'admin', 'test', '1.00', 'test', '2009-06-25 21:40:06', ''),
(551, 'admin', 'admin', 'test', '1.00', 'test', '2009-06-25 21:42:36', ''),
(552, 'admin', 'test', 'admin', '1.00', 'Account Deletion', '2009-06-25 21:42:53', ''),
(553, 'VBNC', 'VBNC', 'Department of Greed', '5000.00', 'With regards, from Manuel', '2009-06-25 22:37:49', ''),
(554, 'VBNC', 'VBNC', 'Leo', '500.00', 'With regards, from Manuel', '2009-06-25 22:38:06', ''),
(555, 'Department of Greed', 'Department of Greed', 'Crown Account', '15000.00', 'JASO IS OURS!', '2009-06-25 22:38:32', ''),
(556, 'Andreas the Wise', 'Andreas the Wise', 'VBNC', '5500.00', 'You owe me ...', '2009-06-25 22:39:04', ''),
(557, 'Andreas the Wise', 'Andreas the Wise', 'Seanad', '2000.00', 'Too bloomin\\'' generous', '2009-06-25 22:39:35', ''),
(558, 'Crown Account', 'Crown Account', 'Erik Mortis Brookshire', '7500.00', 'Your claim on JASO is fulfilled.', '2009-06-25 22:41:53', ''),
(559, 'Crown Account', 'Crown Account', 'MoMA Imperial Defence', '4500.00', 'Proceeds from JASO', '2009-06-25 22:42:29', ''),
(560, 'Ari Rahikkala', 'Ari Rahikkala', 'Department of Greed', '1000.00', 'Penance.', '2009-06-25 23:15:44', ''),
(561, 'Imperial Treasury', 'Imperial Treasury', 'Magni', '5000.00', 'Starting Capital', '2009-06-25 23:30:55', ''),
(562, 'Jonas', 'Jonas', 'Seanad', '700.00', 'Donation', '2009-06-26 09:21:20', ''),
(563, 'Jonas', 'Jonas', 'Andreas the Wise', '800.00', 'Music', '2009-06-26 09:24:18', ''),
(564, 'Scott', 'Scott', 'Department of Greed', '1000.00', 'Donation', '2009-06-27 14:04:12', ''),
(565, 'Scott', 'Scott', 'Harald of Froyalan', '180.00', 'Wedding gift', '2009-06-27 15:02:08', ''),
(566, 'Nicholas the Mad', 'Nicholas the Mad', 'Department of Greed', '2000.00', 'JASO', '2009-06-28 02:14:25', ''),
(567, 'Jötunn Heavy Industries', 'Jötunn Heavy Industries', 'Jacobus Loki', '1300.00', 'Repayment', '2009-06-28 02:45:51', ''),
(568, 'Jötunn Heavy Industries', 'Jötunn Heavy Industries', 'andelarion', '6000.00', 'Repayment', '2009-06-28 02:46:18', ''),
(569, 'Shyriath', 'Shyriath', 'Seanad', '900.00', 'Seanad funding', '2009-06-28 05:09:24', ''),
(570, 'Shyriath', 'Shyriath', 'Seanad', '400.00', 'Some more, so we\\''ll be good on taxes for a while', '2009-06-28 05:12:19', ''),
(571, 'Demon of Fides', 'Demon of Fides', 'Department of Greed', '3000.00', 'Donation', '2009-06-28 10:37:35', ''),
(572, 'Jonas', 'Jonas', 'Harald of Froyalan', '300.00', 'Wedding gift', '2009-06-28 15:27:27', ''),
(573, 'Jonas', 'Jonas', 'Nicholas the Mad', '200.00', 'Present', '2009-06-29 14:35:57', ''),
(574, 'Jonas', 'Jonas', 'Harvey', '100.00', 'Diplomacy', '2009-06-29 20:34:57', ''),
(575, 'Crown Account', 'Crown Account', 'MiniEx', '2000.00', 'Funds to pay diplomats', '2009-06-29 23:51:50', ''),
(576, 'Crown Account', 'Crown Account', 'Jonas', '500.00', 'SCB Logo', '2009-06-30 00:48:27', ''),
(577, 'Department of Greed', 'Department of Greed', 'Harvey', '5000.00', 'Starting Capital (finally transferred)', '2009-06-30 00:49:01', ''),
(578, 'Novgov', 'Novgov', 'Gerk', '700.00', 'forum images', '2009-06-30 05:23:41', ''),
(579, 'admin', 'admin', 'Erik Mortis Brookshire', '1.00', 'paying back test money', '2009-07-02 07:11:28', ''),
(580, 'NatopiaGov', 'NatopiaGov', 'SirWilliamStrauss', '250.00', 'consort, minister, bovicar july ', '2009-07-03 00:03:34', ''),
(581, 'NatopiaGov', 'NatopiaGov', 'KvZ', '275.00', 'regent minister july', '2009-07-03 00:04:05', ''),
(582, 'MoMA Imperial Defence', 'MoMA Imperial Defence', 'Andreas the Wise', '828.00', 'Purchase of x2 Wraith Bonded Golems... as you do', '2009-07-04 04:00:45', ''),
(583, 'Andreas the Wise', 'Andreas the Wise', 'Crown Account', '691.00', '2x MoMA Golems', '2009-07-04 04:13:48', ''),
(584, 'Peoples Academy of Elwynn', 'Peoples Academy of Elwynn', 'andelarion', '3000.00', 'refund of donation', '2009-07-07 23:13:21', ''),
(585, 'andelarion', 'andelarion', 'The Khan of Vijayanagara', '500.00', 'For the defence of Elwynn', '2009-07-08 00:36:46', ''),
(586, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'admin', '1.00', 'test', '2009-07-10 06:28:14', ''),
(587, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', '', '1.00', 'test', '2009-07-10 06:30:57', ''),
(588, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'admin', '1.00', 'test', '2009-07-10 06:32:43', ''),
(589, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', '', '1.00', 'test back', '2009-07-10 06:32:57', ''),
(590, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'admin', '1.00', 'more test', '2009-07-10 06:41:38', ''),
(591, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'admin', '1.00', 'more test', '2009-07-10 06:42:15', ''),
(592, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'admin', '1.00', 'more test', '2009-07-10 06:42:55', ''),
(593, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'admin', '1.00', 'even more test', '2009-07-10 06:43:17', ''),
(594, 'Erik Mortis Brookshire', 'admin', 'Erik Mortis Brookshire', '4.00', 'reverse', '2009-07-10 06:44:30', ''),
(595, 'admin', 'admin', 'Stormarks Bank', '105000.00', 'Starting Capital', '2009-07-11 04:54:52', ''),
(596, 'andelarion', 'andelarion', 'isammadur', '8000.00', 'gift', '2009-07-11 18:35:12', ''),
(597, 'Jacobus Loki', 'Jacobus Loki', 'Leo', '100.00', 'contributions from cudgelers', '2009-07-12 05:56:52', ''),
(598, 'Jacobus Loki', 'Jacobus Loki', 'Crown Account', '250.00', 'Business forum', '2009-07-12 05:57:20', ''),
(599, 'Leo', 'Leo', 'benkern', '50.00', 'Legal Test and the Such', '2009-07-14 19:17:20', ''),
(600, 'benkern', 'benkern', 'Bacchic Fund', '50.00', 'relocation', '2009-07-14 23:22:46', ''),
(601, 'Imperial Treasury', 'Imperial Treasury', 'Scourge', '300.00', 'Relaramian Forum Images', '2009-07-18 02:39:03', ''),
(602, 'Imperial Treasury', 'Imperial Treasury', 'Scourge', '7000.00', 'starting capital', '2009-07-18 03:04:32', ''),
(603, 'Imperial Treasury', 'Imperial Treasury', 'Relaram Provincial Treasury', '18000.00', 'starting capital', '2009-07-18 03:04:49', ''),
(604, 'Imperial Treasury', 'Imperial Treasury', 'Gnaar Mok', '5000.00', 'starting capital', '2009-07-18 03:05:14', ''),
(605, 'Department of Greed', 'Department of Greed', 'Jonas', '500.00', 'Forum Image', '2009-07-18 03:34:00', ''),
(606, 'Crown Account', 'Crown Account', 'Erik Mortis Brookshire', '1000.00', 'Bank', '2009-07-18 07:15:58', ''),
(607, 'andelarion', 'andelarion', 'isammadur', '786.47', 'further gifts', '2009-07-18 15:47:38', ''),
(608, 'Imperial Treasury', 'Imperial Treasury', 'Demon of Fides', '250.00', 'Beer Volcano', '2009-07-19 02:44:39', ''),
(609, 'Novgov', 'Novgov', 'Nathan', '500.00', 'Satellites', '2009-07-19 03:06:09', ''),
(610, 'Jacobus Loki', 'Jacobus Loki', 'Bacchic Fund', '0.01', '', '2009-07-19 21:08:27', ''),
(611, 'Relaram Provincial Treasury', 'Relaram Provincial Treasury', 'Relaram Government', '18000.00', 'Transferring Relaram Government funds from Toketi to Relaram.', '2009-07-20 14:53:49', ''),
(612, 'Novgov', 'Novgov', 'Gerk', '1000.00', 'Forum Image', '2009-07-21 03:45:46', ''),
(613, 'MoMA Imperial Defence', 'MoMA Imperial Defence', 'Crown Account', '3.20', 'Upfunding of Imperial Volunteer Forces', '2009-07-21 19:32:55', ''),
(614, 'MoMA Imperial Defence', 'MoMA Imperial Defence', 'Crown Account', '3204.00', 'As per the preceeding transaction for the IVF', '2009-07-21 19:34:56', ''),
(615, 'Prodigy Almighty', 'Prodigy Almighty', 'Tsunade', '200.00', 'Cultural Copy-pasta', '2009-07-23 23:02:00', ''),
(616, 'Imperial Treasury', 'Imperial Treasury', 'Tsunade', '5000.00', 'starting capital', '2009-07-24 05:24:07', ''),
(617, 'Imperial Treasury', 'Imperial Treasury', 'Andreas the Wise', '500.00', 'Laws for Gralus', '2009-07-25 21:44:53', ''),
(618, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'Crown Account', '900.00', 'For SCIRA troops.', '2009-07-26 02:55:09', ''),
(619, 'Stormarks Bank', 'Stormarks Bank', 'Hurmu Reserve Bank', '22500.00', 'Payment under Article 6 of Economy Act of Year 8', '2009-07-26 19:37:49', ''),
(620, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'admin', '1.00', 'test', '2009-07-29 22:01:02', ''),
(621, 'admin', 'admin', 'Erik Mortis Brookshire', '1.00', 'test back', '2009-07-29 22:03:35', ''),
(622, 'admin', 'Erik Mortis Brookshire', 'admin', '1.00', 'test', '2009-07-29 22:07:27', ''),
(623, 'admin', 'admin', 'Erik Mortis Brookshire', '1.00', 'test back', '2009-07-29 22:07:44', ''),
(624, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'test', '100.00', 'test', '2009-07-29 23:10:04', ''),
(625, 'Erik Mortis Brookshire', 'Erik Mortis Brookshire', 'test2', '100.00', 'test', '2009-07-29 23:10:17', ''),
(626, 'Erik Mortis Brookshire', 'test', 'Erik Mortis Brookshire', '10.00', 'Taxes', '2009-07-29 23:11:32', ''),
(627, 'Erik Mortis Brookshire', 'test2', 'Erik Mortis Brookshire', '10.00', 'Taxes', '2009-07-29 23:11:32', ''),
(628, 'Erik Mortis Brookshire', 'test', 'Erik Mortis Brookshire', '9.00', 'Taxes', '2009-07-29 23:11:57', ''),
(629, 'Erik Mortis Brookshire', 'test2', 'Erik Mortis Brookshire', '9.00', 'Taxes', '2009-07-29 23:11:57', ''),
(630, 'Erik Mortis Brookshire', 'test', 'Erik Mortis Brookshire', '81.00', 'Taxes', '2009-07-29 23:12:09', ''),
(631, 'Erik Mortis Brookshire', 'test2', 'Erik Mortis Brookshire', '81.00', 'Taxes', '2009-07-29 23:12:09', ''),
(632, 'mateo', 'mateo', 'Mateo Mattiassen', '20.00', '', '2009-07-30 11:54:10', ''),
(633, 'Imperial Treasury', 'Imperial Treasury', 'nick112147', '5000.00', 'starting capital', '2009-08-01 03:15:08', ''),
(634, 'Imperial Treasury', 'Imperial Treasury', 'Scourge', '100.00', 'Apparently I owe you more.', '2009-08-01 03:30:47', ''),
(635, 'Scourge', 'Scourge', 'Uvurith', '7400.00', 'character change', '2009-08-02 05:58:11', ''),
(636, 'Jonas', 'Jonas', 'Andreas the Wise', '250.00', 'Gascony adress', '2009-08-02 22:53:26', ''),
(637, 'ktzunichurch', 'ktzunichurch', 'nick112147', '135.00', 'I CAN HAZ MONEYZ?', '2009-08-05 07:21:05', ''),
(638, 'Imperial Treasury', 'Imperial Treasury', 'nick112147', '100.00', 'Law written up', '2009-08-14 08:45:25', ''),
(639, 'Andreas the Wise', 'Andreas the Wise', 'Käthbad jënRöijanin', '4800.00', 'Starting Capital - minus Shirithian start', '2009-09-04 23:46:58', ''),
(640, 'Andreas the Wise', 'Käthbad jënRöijanin', 'Andreas the Wise', '4800.00', 'Wrong account', '2009-09-04 23:47:34', ''),
(641, 'Imperial Treasury', 'Imperial Treasury', 'Käthbad jënRöijanin', '4800.00', 'Starting Capital - minus Shirithian start', '2009-09-04 23:47:58', ''),
(642, 'Allot', 'Allot', 'Crown Account', '50.00', 'Elfinshi soldiers [Best Defense]', '2009-09-06 07:07:46', ''),
(643, 'Leo', 'Leo', 'drspangle', '300.00', 'Quality Control + KE Weaponry', '2009-09-15 23:51:38', ''),
(644, 'Leo', 'Leo', 'ISI', '1500.00', 'Upfunding', '2009-09-16 16:34:53', ''),
(645, 'ISI', 'ISI', 'drspangle', '50.00', 'Overdue Payment', '2009-09-19 14:02:17', ''),
(646, 'Jonas', 'Jonas', 'ISI', '450.00', 'Batavian space station', '2009-09-21 17:55:53', ''),
(647, 'Leo', 'Leo', 'ISI', '390.00', 'Upfunding', '2009-09-27 03:07:25', ''),
(648, 'Andreas the Wise', 'Crown Account', 'ISI', '470.00', 'Kaiser Authorised Payment', '2009-09-27 21:53:17', ''),
(649, 'ISI', 'ISI', 'Crown Account', '250.00', 'Forum Funding', '2009-09-27 21:56:40', ''),
(650, 'Andreas the Wise', 'Crown Account', 'WPayne', '2000.00', 'starting capital', '2009-09-29 23:47:35', ''),
(651, 'Scott', 'Scott', 'Gman russell', '25.00', 'Better know a county', '2009-10-01 12:55:31', ''),
(652, 'ISI', 'ISI', 'Demon of Fides', '1000.00', 'ISI Ouroboros Commission', '2009-10-03 15:50:48', ''),
(653, 'VBNC', 'VBNC', 'vasroe', '10.00', 'In exchange for 40 pec', '2009-10-06 21:16:13', ''),
(654, 'VBNC', 'VBNC', 'vasroe', '25.00', 'Currency Exchange', '2009-10-07 22:25:49', ''),
(655, 'VBNC', 'VBNC', 'vasroe', '75.00', 'Currency Exchange', '2009-10-15 22:02:27', ''),
(656, 'Jötunn Heavy Industries', 'Jötunn Heavy Industries', 'Liam conToketi', '1990.00', '', '2009-10-29 16:29:15', ''),
(657, 'Liam conToketi', 'Liam conToketi', 'Baarrnan', '2050.00', 'character change', '2009-10-29 16:33:44', ''),
(658, 'Ari Rahikkala', 'Ari Rahikkala', 'Scott', '5.00', 'For remembering an obscure historical detail, though I forget by now precisely what it was', '2009-11-01 00:18:23', ''),
(659, 'Ari Rahikkala', 'Ari Rahikkala', 'Käthbad jënRöijanin', '200.00', 'For services to the Duchy of Straylight in the Landsraad', '2009-11-01 00:33:33', ''),
(660, 'Ari Rahikkala', 'Ari Rahikkala', 'Liam conToketi', '300.00', 'For services to the Duchy of Straylight in the form of cultural work', '2009-11-01 00:34:03', ''),
(661, 'Ari Rahikkala', 'Ari Rahikkala', 'Scott', '500.00', 'For service to the Duchy of Straylight in the form of cultural work', '2009-11-01 00:34:29', ''),
(662, 'Liam conToketi', 'Liam conToketi', 'Baarrnan', '300.00', 'account confusion', '2009-11-01 01:02:18', ''),
(663, 'Andreas the Wise', 'Crown Account', 'Gman russell', '2000.00', 'For sheer awesomeness', '2009-11-03 02:46:36', ''),
(664, 'Andreas the Wise', 'Crown Account', 'Shirithian Imperial Treasury', '34588.07', 'Account name change', '2009-11-03 02:48:34', ''),
(665, 'WPayne', 'WPayne', 'Jonas', '100.00', 'Flag Creation Payment', '2009-11-04 12:08:44', ''),
(666, 'Shirithian Imperial Treasury', 'Shirithian Imperial Treasury', 'Erik Mortis Brookshire', '2000.00', 'bounties', '2009-11-05 01:20:23', ''),
(667, 'Shirithian Imperial Treasury', 'Shirithian Imperial Treasury', 'Mike Fors', '300.00', 'bounties', '2009-11-05 01:20:39', ''),
(668, 'Shirithian Imperial Treasury', 'Shirithian Imperial Treasury', 'Hesam Jayatar', '200.00', 'bounties', '2009-11-05 01:20:58', ''),
(669, 'Shirithian Imperial Treasury', 'Shirithian Imperial Treasury', 'Allot', '1300.00', 'bounties', '2009-11-05 01:21:17', ''),
(670, 'Shirithian Imperial Treasury', 'Shirithian Imperial Treasury', 'Leo', '1450.00', 'bounties', '2009-11-05 01:21:44', ''),
(671, 'Shirithian Imperial Treasury', 'Shirithian Imperial Treasury', 'The Khan of Vijayanagara', '2000.00', 'bounties', '2009-11-05 01:22:14', ''),
(672, 'Shirithian Imperial Treasury', 'Shirithian Imperial Treasury', 'Austi', '300.00', 'bounties', '2009-11-05 01:22:27', ''),
(673, 'Shirithian Imperial Treasury', 'Shirithian Imperial Treasury', 'Ari Rahikkala', '1900.00', 'bounties', '2009-11-05 01:22:40', ''),
(674, 'Shirithian Imperial Treasury', 'Shirithian Imperial Treasury', 'Scott', '1100.00', 'bounties', '2009-11-05 01:22:56', ''),
(675, 'Shirithian Imperial Treasury', 'Shirithian Imperial Treasury', 'Jacobus Loki', '100.00', 'bounties', '2009-11-05 01:23:12', ''),
(676, 'Shirithian Imperial Treasury', 'Shirithian Imperial Treasury', 'Harvey', '400.00', 'bounties', '2009-11-05 01:23:29', ''),
(677, 'Shirithian Imperial Treasury', 'Shirithian Imperial Treasury', 'Andreas the Wise', '1100.00', 'bounties', '2009-11-05 01:23:40', ''),
(678, 'Shirithian Imperial Treasury', 'Shirithian Imperial Treasury', 'WPayne', '100.00', 'bounties', '2009-11-05 01:23:52', ''),
(679, 'Shirithian Imperial Treasury', 'Shirithian Imperial Treasury', 'Gman russell', '1400.00', 'bounties', '2009-11-05 01:24:14', ''),
(680, 'Leo', 'Leo', 'ISI', '1450.00', 'Up-funding', '2009-11-05 01:39:06', ''),
(681, 'isammadur', 'isammadur', 'arvidur', '8786.46', 'new account', '2009-11-05 22:48:50', ''),
(682, 'Andreas the Wise', 'isammadur', 'admin', '0.01', 'Account Deletion', '2009-11-05 22:56:52', ''),
(683, 'Andreas the Wise', 'admin', 'arvidur', '0.01', 'You missed 0.01', '2009-11-05 22:57:21', ''),
(684, 'The Khan of Vijayanagara', 'The Khan of Vijayanagara', 'arvidur', '600.00', 'Design of Imperial Seal', '2009-11-06 00:23:04', ''),
(685, 'Andreas the Wise', 'Shirithian Imperial Treasury', 'Household Account', '3500.00', 'top up', '2009-11-06 02:21:25', ''),
(686, 'Andreas the Wise', 'Andreas the Wise', 'Erik Mortis Brookshire', '2000.00', 'Code \\''borrowed\\''', '2009-11-06 02:28:38', ''),
(687, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '50.00', 'Trading SCUE funds in for credits', '2009-11-30 04:02:32', ''),
(688, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '50.00', 'Trading SCUE funds in for credits', '2009-11-30 04:03:02', ''),
(689, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '50.00', 'Trading SCUE funds in for credits', '2009-11-30 04:03:37', ''),
(690, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '50.00', 'Trading SCUE funds in for credits', '2009-11-30 04:05:09', ''),
(691, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '50.00', 'Trading SCUE funds in for credits', '2009-11-30 04:05:26', ''),
(692, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '1.00', 'Trading SCUE funds in for credits', '2009-11-30 04:07:58', ''),
(693, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '1.00', 'Trading SCUE funds in for credits', '2009-11-30 04:35:16', ''),
(694, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '5.00', 'Trading SCUE funds in for credits', '2009-11-30 04:36:00', ''),
(695, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '5.00', 'Trading SCUE funds in for credits', '2009-11-30 04:37:36', ''),
(696, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '5.00', 'Trading SCUE funds in for credits', '2009-11-30 04:38:18', ''),
(697, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '5.00', 'Trading SCUE funds in for credits', '2009-11-30 04:38:27', ''),
(698, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '5.00', 'Trading SCUE funds in for credits', '2009-11-30 04:40:35', ''),
(699, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '7.00', 'Exchanging SCUE funds for credits', '2009-11-30 04:55:50', ''),
(700, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '7.00', 'Exchanging SCUE funds for credits', '2009-11-30 04:56:42', ''),
(701, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '7.00', 'Exchanging SCUE funds for credits', '2009-11-30 04:57:38', ''),
(702, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '7.00', 'Exchanging SCUE funds for credits', '2009-11-30 04:59:16', ''),
(703, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '9500.00', 'Exchanging SCUE funds for credits', '2009-12-02 02:41:29', ''),
(704, 'VBNC', 'VBNC', 'SCX', '1000.00', 'Exchanging SCUE funds for credits', '2009-12-03 00:15:49', ''),
(705, 'Novgov', 'Novgov', 'SCX', '500.00', 'Exchanging SCUE funds for credits', '2009-12-09 09:35:57', ''),
(706, 'VBNC', 'VBNC', 'Allot', '100.00', 'transfer', '2009-12-12 09:33:57', ''),
(707, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '5.00', 'Exchanging SCUE funds for credits', '2010-03-20 12:06:14', ''),
(708, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '5.00', 'Exchanging SCUE funds for credits', '2010-03-20 12:06:35', ''),
(709, 'Andreas the Wise', 'Imperial Treasury', 'SCX', '5000.00', 'test', '2010-03-23 11:13:14', ''),
(710, 'VBNC', 'SCX', 'Andreas the Wise', '5000.00', 'Awarding of 5000 for being the first person to gain 1 million credits on the SCX', '2010-03-23 11:17:06', ''),
(711, 'VBNC', 'SCX', 'Andreas the Wise', '5000.00', 'Awarding of 5000 Jasoni for being the first person to gain 1 million credits on the SCX', '2010-03-23 11:29:44', ''),
(712, 'VBNC', 'SCX', 'Andreas the Wise', '5000.00', 'Awarding of 5000 Jasoni for being the first person to gain 1 million credits on the SCX', '2010-03-23 11:29:54', ''),
(713, 'Andreas the Wise', 'Andreas the Wise', 'K', '1000.00', 'j', '2010-04-09 06:18:49', ''),
(714, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '1.00', 'Exchanging Jasoni for credits', '2010-04-16 05:51:57', ''),
(715, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '1.00', 'Exchanging Jasoni for credits', '2010-04-16 05:52:54', ''),
(716, 'Imperial Treasury', 'Imperial Treasury', 'SCX', '5000.00', 'Exchanging GELT for credits', '2010-04-22 10:44:47', ''),
(717, 'Andreas the Wise', 'admin', 'Test', '9000.00', 'test', '2010-04-22 10:46:18', ''),
(718, 'Test', 'Test', 'SCX', '9000.00', 'Exchanging Erb for credits', '2010-04-22 10:46:49', ''),
(719, 'Andreas the Wise', 'SCX', 'Andreas the Wise', '1021.49', 'Exchanging credits for Jasoni', '2010-04-24 22:12:54', ''),
(720, 'Andreas the Wise', 'SCX', 'Andreas the Wise', '1.00', 'Exchanging credits for Jasoni', '2010-04-24 22:13:58', ''),
(721, 'Andreas the Wise', 'SCX', 'Andreas the Wise', '0.49', 'Exchanging credits for Jasoni', '2010-04-24 22:14:16', ''),
(722, 'Andreas the Wise', 'SCX', 'Andreas the Wise', '1019.00', 'Exchanging credits for Jasoni', '2010-04-24 22:15:09', ''),
(723, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '16098.93', 'Exchanging Jasoni for credits', '2010-04-24 22:18:01', ''),
(724, 'Andreas the Wise', 'SCX', 'Andreas the Wise', '1.00', 'Exchanging credits for Jasoni', '2010-04-24 22:25:06', ''),
(725, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '1.00', 'Exchanging Jasoni for credits', '2010-04-24 22:25:15', ''),
(726, 'Andreas the Wise', 'SCX', 'Andreas the Wise', '27.84', 'Exchanging credits for Jasoni', '2010-04-24 22:25:38', ''),
(727, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '27.84', 'Exchanging Jasoni for credits', '2010-04-24 22:25:47', ''),
(728, 'Andreas the Wise', 'Ari Rahikkala', 'Andreas the Wise', '1000.00', 'test', '2010-05-23 03:26:28', ''),
(729, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '100.00', 'Exchanging Jasoni for credits', '2010-05-23 03:27:09', ''),
(730, 'Andreas the Wise', 'SCX', 'VBNC', '10.00', '10% Profit from exchanging Jasoni for credits', '2010-05-23 03:27:09', ''),
(731, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '100.00', 'Exchanging Jasoni for credits', '2010-05-23 03:30:47', ''),
(732, 'Andreas the Wise', 'SCX', 'VBNC', '10.00', '10% Profit from exchanging Jasoni for credits', '2010-05-23 03:30:47', ''),
(733, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '100.00', 'Exchanging Jasoni for credits', '2010-05-23 03:30:56', ''),
(734, 'Andreas the Wise', 'SCX', 'VBNC', '10.00', '10% Profit from exchanging Jasoni for credits', '2010-05-23 03:30:56', ''),
(735, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '100.00', 'Exchanging Jasoni for credits', '2010-05-23 03:31:11', ''),
(736, 'Andreas the Wise', 'SCX', 'VBNC', '10.00', '10% Profit from exchanging Jasoni for credits', '2010-05-23 03:31:11', ''),
(737, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '100.00', 'Exchanging Jasoni for credits', '2010-05-23 03:50:02', ''),
(738, 'Andreas the Wise', 'SCX', 'VBNC', '10.00', '10% Profit from exchanging Jasoni for credits', '2010-05-23 03:50:02', ''),
(739, 'Imperial Treasury', 'Imperial Treasury', 'Andreas the Wise', '7.00', 'Post based economy payout', '2010-11-10 10:39:42', ''),
(740, 'Imperial Treasury', 'Imperial Treasury', 'Gerk', '7.00', 'Post based economy payout', '2010-11-10 10:39:42', ''),
(741, 'Imperial Treasury', 'Imperial Treasury', 'Andreas the Wise', '59.00', 'Post based economy payout', '2010-11-10 10:46:54', 'DAILY'),
(742, 'Imperial Treasury', 'Imperial Treasury', 'Gerk', '8.00', 'Post based economy payout', '2010-11-10 10:46:54', 'DAILY'),
(743, 'Imperial Treasury', 'Imperial Treasury', 'Andreas the Wise', '5.00', 'Post based economy payout', '2010-11-11 08:29:56', '::1'),
(744, 'Imperial Treasury', 'Imperial Treasury', 'Gerk', '4.00', 'Post based economy payout', '2010-11-11 08:29:56', '::1'),
(745, 'Imperial Treasury', 'Prodigy Almighty', 'Imperial Treasury', '4425.68', 'Official Inactivity Tax, removing funds from Prodigy Almighty for being inactive for a period of at least 6 months', '2010-11-11 08:45:03', '::1'),
(746, 'Imperial Treasury', 'Bayen', 'Imperial Treasury', '695.83', 'Official Inactivity Tax, removing funds from Bayen for being inactive for a period of at least 6 months', '2010-11-11 08:45:03', '::1'),
(747, 'Imperial Treasury', 'nick112147', 'Imperial Treasury', '1876.05', 'Official Inactivity Tax, removing funds from nick112147 for being inactive for a period of at least 6 months', '2010-11-11 08:45:03', '::1'),
(748, 'Imperial Treasury', 'Longbow', 'Imperial Treasury', '2973.30', 'Official Inactivity Tax, removing funds from Longbow for being inactive for a period of at least 6 months', '2010-11-11 08:45:03', '::1'),
(749, 'Imperial Treasury', 'Nicholas the Mad', 'Imperial Treasury', '2689.50', 'Official Inactivity Tax, removing funds from Nicholas the Mad for being inactive for a period of at least 6 months', '2010-11-11 08:45:03', '::1'),
(750, 'Imperial Treasury', 'Demon of Fides', 'Imperial Treasury', '2739.00', 'Official Inactivity Tax, removing funds from Demon of Fides for being inactive for a period of at least 6 months', '2010-11-11 08:45:03', '::1'),
(751, 'Imperial Treasury', 'Lachieboy', 'Imperial Treasury', '1650.00', 'Official Inactivity Tax, removing funds from Lachieboy for being inactive for a period of at least 6 months', '2010-11-11 08:45:03', '::1'),
(752, 'Imperial Treasury', 'Nargoth', 'Imperial Treasury', '6600.00', 'Official Inactivity Tax, removing funds from Nargoth for being inactive for a period of at least 6 months', '2010-11-11 08:45:03', '::1'),
(753, 'Imperial Treasury', 'Magni', 'Imperial Treasury', '1650.00', 'Official Inactivity Tax, removing funds from Magni for being inactive for a period of at least 6 months', '2010-11-11 08:45:03', '::1'),
(754, 'Imperial Treasury', 'Gnaar Mok', 'Imperial Treasury', '1650.00', 'Official Inactivity Tax, removing funds from Gnaar Mok for being inactive for a period of at least 6 months', '2010-11-11 08:45:03', '::1'),
(755, 'Imperial Treasury', 'Tsunade', 'Imperial Treasury', '1716.00', 'Official Inactivity Tax, removing funds from Tsunade for being inactive for a period of at least 6 months', '2010-11-11 08:45:03', '::1'),
(756, 'Imperial Treasury', 'Uvurith', 'Imperial Treasury', '2442.00', 'Official Inactivity Tax, removing funds from Uvurith for being inactive for a period of at least 6 months', '2010-11-11 08:45:03', '::1'),
(757, 'Imperial Treasury', 'Prodigy Almighty', 'Imperial Treasury', '2965.21', 'Official Inactivity Tax, removing funds from Prodigy Almighty for being inactive for a period of at least 6 months', '2010-11-11 08:45:14', '::1'),
(758, 'Imperial Treasury', 'Bayen', 'Imperial Treasury', '466.21', 'Official Inactivity Tax, removing funds from Bayen for being inactive for a period of at least 6 months', '2010-11-11 08:45:14', '::1'),
(759, 'Imperial Treasury', 'nick112147', 'Imperial Treasury', '1256.95', 'Official Inactivity Tax, removing funds from nick112147 for being inactive for a period of at least 6 months', '2010-11-11 08:45:14', '::1'),
(760, 'Imperial Treasury', 'Longbow', 'Imperial Treasury', '1992.11', 'Official Inactivity Tax, removing funds from Longbow for being inactive for a period of at least 6 months', '2010-11-11 08:45:14', '::1'),
(761, 'Imperial Treasury', 'Nicholas the Mad', 'Imperial Treasury', '1801.96', 'Official Inactivity Tax, removing funds from Nicholas the Mad for being inactive for a period of at least 6 months', '2010-11-11 08:45:14', '::1'),
(762, 'Imperial Treasury', 'Demon of Fides', 'Imperial Treasury', '1835.13', 'Official Inactivity Tax, removing funds from Demon of Fides for being inactive for a period of at least 6 months', '2010-11-11 08:45:14', '::1'),
(763, 'Imperial Treasury', 'Lachieboy', 'Imperial Treasury', '1105.50', 'Official Inactivity Tax, removing funds from Lachieboy for being inactive for a period of at least 6 months', '2010-11-11 08:45:14', '::1'),
(764, 'Imperial Treasury', 'Nargoth', 'Imperial Treasury', '4422.00', 'Official Inactivity Tax, removing funds from Nargoth for being inactive for a period of at least 6 months', '2010-11-11 08:45:14', '::1'),
(765, 'Imperial Treasury', 'Magni', 'Imperial Treasury', '1105.50', 'Official Inactivity Tax, removing funds from Magni for being inactive for a period of at least 6 months', '2010-11-11 08:45:14', '::1'),
(766, 'Imperial Treasury', 'Gnaar Mok', 'Imperial Treasury', '1105.50', 'Official Inactivity Tax, removing funds from Gnaar Mok for being inactive for a period of at least 6 months', '2010-11-11 08:45:14', '::1'),
(767, 'Imperial Treasury', 'Tsunade', 'Imperial Treasury', '1149.72', 'Official Inactivity Tax, removing funds from Tsunade for being inactive for a period of at least 6 months', '2010-11-11 08:45:14', '::1'),
(768, 'Imperial Treasury', 'Uvurith', 'Imperial Treasury', '1636.14', 'Official Inactivity Tax, removing funds from Uvurith for being inactive for a period of at least 6 months', '2010-11-11 08:45:14', '::1'),
(769, 'Imperial Treasury', 'Prodigy Almighty', 'Imperial Treasury', '1986.69', 'Official Inactivity Tax, removing funds from Prodigy Almighty for being inactive for a period of at least 6 months', '2010-11-11 08:45:30', '::1'),
(770, 'Imperial Treasury', 'Bayen', 'Imperial Treasury', '312.36', 'Official Inactivity Tax, removing funds from Bayen for being inactive for a period of at least 6 months', '2010-11-11 08:45:30', '::1'),
(771, 'Imperial Treasury', 'nick112147', 'Imperial Treasury', '842.16', 'Official Inactivity Tax, removing funds from nick112147 for being inactive for a period of at least 6 months', '2010-11-11 08:45:30', '::1'),
(772, 'Imperial Treasury', 'Longbow', 'Imperial Treasury', '1334.71', 'Official Inactivity Tax, removing funds from Longbow for being inactive for a period of at least 6 months', '2010-11-11 08:45:30', '::1'),
(773, 'Imperial Treasury', 'Nicholas the Mad', 'Imperial Treasury', '1207.31', 'Official Inactivity Tax, removing funds from Nicholas the Mad for being inactive for a period of at least 6 months', '2010-11-11 08:45:30', '::1'),
(774, 'Imperial Treasury', 'Demon of Fides', 'Imperial Treasury', '1229.53', 'Official Inactivity Tax, removing funds from Demon of Fides for being inactive for a period of at least 6 months', '2010-11-11 08:45:30', '::1'),
(775, 'Imperial Treasury', 'Lachieboy', 'Imperial Treasury', '740.68', 'Official Inactivity Tax, removing funds from Lachieboy for being inactive for a period of at least 6 months', '2010-11-11 08:45:30', '::1'),
(776, 'Imperial Treasury', 'Nargoth', 'Imperial Treasury', '2962.74', 'Official Inactivity Tax, removing funds from Nargoth for being inactive for a period of at least 6 months', '2010-11-11 08:45:30', '::1'),
(777, 'Imperial Treasury', 'Magni', 'Imperial Treasury', '740.68', 'Official Inactivity Tax, removing funds from Magni for being inactive for a period of at least 6 months', '2010-11-11 08:45:30', '::1'),
(778, 'Imperial Treasury', 'Gnaar Mok', 'Imperial Treasury', '740.68', 'Official Inactivity Tax, removing funds from Gnaar Mok for being inactive for a period of at least 6 months', '2010-11-11 08:45:30', '::1'),
(779, 'Imperial Treasury', 'Tsunade', 'Imperial Treasury', '770.31', 'Official Inactivity Tax, removing funds from Tsunade for being inactive for a period of at least 6 months', '2010-11-11 08:45:30', '::1'),
(780, 'Imperial Treasury', 'Uvurith', 'Imperial Treasury', '1096.21', 'Official Inactivity Tax, removing funds from Uvurith for being inactive for a period of at least 6 months', '2010-11-11 08:45:30', '::1'),
(781, 'Imperial Treasury', 'Prodigy Almighty', 'Imperial Treasury', '1331.08', 'Official Inactivity Tax, removing funds from Prodigy Almighty for being inactive for a period of at least 6 months', '2010-11-11 08:46:13', '::1'),
(782, 'Imperial Treasury', 'Bayen', 'Imperial Treasury', '209.28', 'Official Inactivity Tax, removing funds from Bayen for being inactive for a period of at least 6 months', '2010-11-11 08:46:13', '::1'),
(783, 'Imperial Treasury', 'Longbow', 'Imperial Treasury', '894.26', 'Official Inactivity Tax, removing funds from Longbow for being inactive for a period of at least 6 months', '2010-11-11 08:46:13', '::1'),
(784, 'Imperial Treasury', 'Nicholas the Mad', 'Imperial Treasury', '808.90', 'Official Inactivity Tax, removing funds from Nicholas the Mad for being inactive for a period of at least 6 months', '2010-11-11 08:46:13', '::1'),
(785, 'Imperial Treasury', 'Lachieboy', 'Imperial Treasury', '496.26', 'Official Inactivity Tax, removing funds from Lachieboy for being inactive for a period of at least 6 months', '2010-11-11 08:46:13', '::1'),
(786, 'Imperial Treasury', 'Nargoth', 'Imperial Treasury', '1985.03', 'Official Inactivity Tax, removing funds from Nargoth for being inactive for a period of at least 6 months', '2010-11-11 08:46:13', '::1'),
(787, 'Imperial Treasury', 'Magni', 'Imperial Treasury', '496.26', 'Official Inactivity Tax, removing funds from Magni for being inactive for a period of at least 6 months', '2010-11-11 08:46:13', '::1'),
(788, 'Imperial Treasury', 'Gnaar Mok', 'Imperial Treasury', '496.26', 'Official Inactivity Tax, removing funds from Gnaar Mok for being inactive for a period of at least 6 months', '2010-11-11 08:46:13', '::1'),
(789, 'Imperial Treasury', 'Tsunade', 'Imperial Treasury', '516.11', 'Official Inactivity Tax, removing funds from Tsunade for being inactive for a period of at least 6 months', '2010-11-11 08:46:13', '::1'),
(790, 'Imperial Treasury', 'Uvurith', 'Imperial Treasury', '734.46', 'Official Inactivity Tax, removing funds from Uvurith for being inactive for a period of at least 6 months', '2010-11-11 08:46:13', '::1'),
(791, 'Imperial Treasury', 'Bayen', 'Imperial Treasury', '140.22', 'Official Inactivity Tax, removing funds from Bayen for being inactive for a period of at least 6 months', '2010-11-11 08:46:46', '::1'),
(792, 'Andreas the Wise', 'SCX', 'Andreas the Wise', '3846.15', 'Exchanging credits for Jasoni', '2011-01-29 22:38:59', '::1'),
(793, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '2000.00', 'Buying 2 shares of SCX', '2011-01-29 22:39:17', '::1'),
(794, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '1000.00', 'Buying 1 shares of SCX', '2011-01-29 22:39:26', '::1'),
(795, 'VBNC', 'VBNC', 'SCX', '3000.00', 'Buying 3 shares of SCX', '2011-01-29 22:39:47', '::1'),
(796, 'VBNC', 'VBNC', 'SCX', '1000.00', 'Buying 1 shares of SCX', '2011-01-29 22:39:57', '::1'),
(797, 'VBNC', 'VBNC', 'SCX', '1.00', 'Exchanging GELT for credits', '2011-01-29 22:40:13', '::1'),
(798, 'VBNC', 'SCX', 'VBNC', '0.10', '10% Profit from exchanging GELT for credits', '2011-01-29 22:40:13', '::1'),
(799, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '100.00', 'Exchanging Jasoni for credits', '2011-01-29 22:41:56', '::1'),
(800, 'Andreas the Wise', 'SCX', 'VBNC', '10.00', '10% Profit from exchanging Jasoni for credits', '2011-01-29 22:41:56', '::1'),
(801, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '100.00', 'Exchanging Jasoni for credits', '2011-01-29 22:42:49', '::1'),
(802, 'Andreas the Wise', 'SCX', 'VBNC', '10.00', '10% Profit from exchanging Jasoni for credits', '2011-01-29 22:42:49', '::1'),
(803, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '100.00', 'Exchanging Jasoni for credits', '2011-01-29 22:43:26', '::1'),
(804, 'Andreas the Wise', 'SCX', 'VBNC', '10.00', '10% Profit from exchanging Jasoni for credits', '2011-01-29 22:43:26', '::1'),
(805, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '100.00', 'Exchanging Jasoni for credits', '2011-01-29 22:43:49', '::1'),
(806, 'Andreas the Wise', 'SCX', 'VBNC', '10.00', '10% Profit from exchanging Jasoni for credits', '2011-01-29 22:43:49', '::1'),
(807, 'Andreas the Wise', 'SCX', 'Andreas the Wise', '3.00', '3% Profit from exchanging Jasoni for credits', '2011-01-29 22:43:49', '::1'),
(808, 'Andreas the Wise', 'SCX', 'VBNC', '4.00', '4% Profit from exchanging Jasoni for credits', '2011-01-29 22:43:49', '::1'),
(809, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '1.00', 'Exchanging Jasoni for credits', '2011-01-29 22:45:28', '::1'),
(810, 'Andreas the Wise', 'SCX', 'VBNC', '0.10', '10% Profit from exchanging Jasoni for credits', '2011-01-29 22:45:28', '::1'),
(811, 'SCX', 'SCX', 'Andreas the Wise', '0.03', '3% Profit from exchanging Jasoni for credits', '2011-01-29 22:45:28', '::1'),
(812, 'Andreas the Wise', 'SCX', 'VBNC', '0.04', '4% Profit from exchanging Jasoni for credits', '2011-01-29 22:45:28', '::1'),
(813, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '10.00', 'Exchanging Jasoni for credits', '2011-01-30 01:12:00', '::1'),
(814, 'Andreas the Wise', 'SCX', 'VBNC', '1.00', '10% Profit from exchanging Jasoni for credits', '2011-01-30 01:12:00', '::1'),
(815, 'Andreas the Wise', 'SCX', 'Andreas the Wise', '0.30', '3% Profit from exchanging Jasoni for credits', '2011-01-30 01:12:00', '::1'),
(816, 'Andreas the Wise', 'SCX', 'VBNC', '0.40', '4% Profit from exchanging Jasoni for credits', '2011-01-30 01:12:00', '::1'),
(817, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '10.00', 'Exchanging Jasoni for credits', '2011-01-30 01:12:26', '::1'),
(818, 'Andreas the Wise', 'SCX', 'VBNC', '1.00', '10% Profit from exchanging Jasoni for credits', '2011-01-30 01:12:26', '::1'),
(819, 'Andreas the Wise', 'SCX', 'Andreas the Wise', '0.30', '3% Profit from exchanging Jasoni for credits', '2011-01-30 01:12:26', '::1'),
(820, 'Andreas the Wise', 'SCX', 'VBNC', '0.40', '4% Profit from exchanging Jasoni for credits', '2011-01-30 01:12:26', '::1'),
(821, 'Andreas the Wise', 'Andreas the Wise', 'SCX', '10.00', 'Exchanging Jasoni for credits', '2011-01-30 01:22:06', '::1'),
(822, 'Andreas the Wise', 'SCX', 'VBNC', '1.00', '10% Profit from exchanging Jasoni for credits', '2011-01-30 01:22:06', '::1'),
(823, 'Andreas the Wise', 'SCX', 'Andreas the Wise', '0.30', '3% Profit from exchanging Jasoni for credits', '2011-01-30 01:22:06', '::1'),
(824, 'Andreas the Wise', 'SCX', 'VBNC', '0.40', '4% Profit from exchanging Jasoni for credits', '2011-01-30 01:22:06', '::1');
-- --------------------------------------------------------
--
-- Table structure for table `banksubdivisions`
--
CREATE TABLE IF NOT EXISTS `banksubdivisions` (
`subdivision` text NOT NULL,
`country` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `banksubdivisions`
--
INSERT INTO `banksubdivisions` (`subdivision`, `country`) VALUES
('Shirekeep', 'Shireroth'),
('Kildare', 'Shireroth'),
('Shelsa', 'Gralus'),
('Toketi', 'Gralus'),
('Proper', 'Nelaga'),