-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdb.sql
2997 lines (2863 loc) · 250 KB
/
db.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# ************************************************************
# Sequel Pro SQL dump
# Version 4541
#
# http://www.sequelpro.com/
# /~https://github.com/sequelpro/sequelpro
#
# Host: 0.0.0.0 (MySQL 5.5.5-10.3.8-MariaDB-1:10.3.8+maria~jessie)
# Database: bitefight
# Generation Time: 2018-09-27 17:22:04 +0000
# ************************************************************
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
# Dump of table clan
# ------------------------------------------------------------
DROP TABLE IF EXISTS `clan`;
CREATE TABLE `clan` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`race` tinyint(3) unsigned NOT NULL DEFAULT 1,
`name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tag` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`logo_bg` tinyint(3) unsigned NOT NULL DEFAULT 1,
`logo_sym` tinyint(3) unsigned NOT NULL DEFAULT 1,
`website` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`website_set_by` int(10) unsigned NOT NULL DEFAULT 0,
`website_counter` int(10) unsigned NOT NULL DEFAULT 0,
`capital` int(10) unsigned NOT NULL DEFAULT 0,
`stufe` tinyint(3) unsigned NOT NULL DEFAULT 0,
`found_date` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
# Dump of table clan_applications
# ------------------------------------------------------------
DROP TABLE IF EXISTS `clan_applications`;
CREATE TABLE `clan_applications` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`clan_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`note` varchar(2000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`application_time` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
# Dump of table clan_description
# ------------------------------------------------------------
DROP TABLE IF EXISTS `clan_description`;
CREATE TABLE `clan_description` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`clan_id` int(10) unsigned NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`descriptionHtml` text COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
# Dump of table clan_donations
# ------------------------------------------------------------
DROP TABLE IF EXISTS `clan_donations`;
CREATE TABLE `clan_donations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`clan_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`donation_amount` int(10) unsigned NOT NULL,
`donation_time` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
# Dump of table clan_message
# ------------------------------------------------------------
DROP TABLE IF EXISTS `clan_message`;
CREATE TABLE `clan_message` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`clan_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`clan_message` varchar(2000) COLLATE utf8mb4_unicode_ci NOT NULL,
`message_time` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
# Dump of table clan_rank
# ------------------------------------------------------------
DROP TABLE IF EXISTS `clan_rank`;
CREATE TABLE `clan_rank` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`clan_id` int(10) unsigned NOT NULL,
`rank_name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`read_message` tinyint(1) NOT NULL DEFAULT 0,
`write_message` tinyint(1) NOT NULL DEFAULT 0,
`read_clan_message` tinyint(1) NOT NULL DEFAULT 0,
`add_members` tinyint(1) NOT NULL DEFAULT 0,
`delete_message` tinyint(1) NOT NULL DEFAULT 0,
`send_clan_message` tinyint(1) NOT NULL DEFAULT 0,
`spend_gold` tinyint(1) NOT NULL DEFAULT 0,
`war_minister` tinyint(1) NOT NULL DEFAULT 0,
`vocalise_ritual` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
# Dump of table items
# ------------------------------------------------------------
DROP TABLE IF EXISTS `items`;
CREATE TABLE `items` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`stern` tinyint(3) unsigned NOT NULL,
`model` tinyint(3) unsigned NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`level` mediumint(8) unsigned NOT NULL,
`gcost` int(10) unsigned NOT NULL,
`slcost` int(10) unsigned NOT NULL,
`scost` int(10) unsigned NOT NULL,
`str` mediumint(9) NOT NULL,
`def` mediumint(9) NOT NULL,
`dex` mediumint(9) NOT NULL,
`end` mediumint(9) NOT NULL,
`cha` mediumint(9) NOT NULL,
`hpbonus` int(11) NOT NULL,
`regen` mediumint(9) NOT NULL,
`sbschc` smallint(6) NOT NULL,
`sbscdmg` smallint(6) NOT NULL,
`sbsctlnt` smallint(6) NOT NULL,
`sbnshc` smallint(6) NOT NULL,
`sbnsdmg` smallint(6) NOT NULL,
`sbnstlnt` smallint(6) NOT NULL,
`ebschc` smallint(6) NOT NULL,
`ebscdmg` smallint(6) NOT NULL,
`ebsctlnt` smallint(6) NOT NULL,
`ebnshc` smallint(6) NOT NULL,
`ebnsdmg` smallint(6) NOT NULL,
`ebnstlnt` smallint(6) NOT NULL,
`apup` smallint(6) NOT NULL,
`cooldown` mediumint(8) unsigned NOT NULL,
`duration` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `items` WRITE;
/*!40000 ALTER TABLE `items` DISABLE KEYS */;
INSERT INTO `items` (`id`, `stern`, `model`, `name`, `level`, `gcost`, `slcost`, `scost`, `str`, `def`, `dex`, `end`, `cha`, `hpbonus`, `regen`, `sbschc`, `sbscdmg`, `sbsctlnt`, `sbnshc`, `sbnsdmg`, `sbnstlnt`, `ebschc`, `ebscdmg`, `ebsctlnt`, `ebnshc`, `ebnsdmg`, `ebnstlnt`, `apup`, `cooldown`, `duration`)
VALUES
(1,0,1,'Obilerema',1,62,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(2,0,1,'Hitchichu',2,164,41,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(3,0,1,'Vesmim',2,148,37,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(4,0,1,'Kalima',4,535,133,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(5,0,1,'Alegro',4,535,133,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(6,0,1,'Ikafati',5,822,205,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(7,0,1,'Amakir',5,679,169,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(8,0,1,'Arvoyeme',6,1185,296,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(9,0,1,'Traimam',7,1631,407,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(10,0,1,'Doyruma',8,2165,541,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(11,0,1,'Mathilda',9,2791,697,0,0,0,0,0,0,0,0,0,0,0,1,0,0,-1,0,0,0,0,0,0,0,0),
(12,0,1,'Dracantra',10,3515,878,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(13,0,1,'Zanmatou',12,5269,1317,0,4,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(14,0,1,'Tokugawa',12,4102,1025,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(15,0,1,'Rondra',13,6308,1577,0,6,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(16,0,1,'Golgari',15,8727,2181,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(17,0,1,'Balmung',17,11622,2905,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(18,0,1,'Ragnarok',18,13255,3313,0,7,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0),
(19,0,1,'Ivaceman',20,16910,4227,0,3,0,0,0,0,0,0,0,2,0,0,4,0,0,0,0,0,0,0,0,0,0),
(20,0,1,'Ritardando',22,21099,5274,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),
(21,0,1,'Aporari',23,23400,5850,0,10,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(22,0,1,'Okyme',25,28430,7107,0,0,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(23,0,1,'Hakama',25,21635,5408,15,0,0,0,0,0,0,0,0,0,0,4,0,0,-2,0,0,0,0,0,0,0,0),
(24,0,1,'Equubidero',27,34043,8510,0,0,0,0,0,0,0,0,0,2,0,0,11,0,0,0,0,0,0,0,0,0,0),
(25,0,1,'Amucana',29,40260,10065,0,0,0,11,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),
(26,0,1,'Etaxalo',30,43600,10900,0,8,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(27,0,1,'Friehgla',31,47096,11774,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(28,0,1,'Demagulau',33,54570,13642,0,14,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(29,0,1,'Krekona',35,62696,15674,0,15,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(30,0,1,'Marsil',37,71492,17873,0,0,0,5,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0),
(31,0,1,'Crissaegrim',40,85971,21492,0,11,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(32,0,1,'Bogumors',40,64978,16244,24,21,0,0,0,0,0,0,0,3,0,0,9,0,0,0,0,0,0,0,0,0,0),
(33,0,1,'Yasutsuna',42,96502,24125,0,0,11,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(34,0,1,'Aguena',44,107753,26938,0,18,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(35,0,1,'Scramasax',47,126007,31501,0,16,0,0,0,0,0,0,0,2,0,0,7,0,0,0,0,0,0,0,0,0,0),
(36,0,1,'Baselard',50,145953,36488,0,20,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(37,0,1,'Shamshir',53,167635,41908,0,14,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(38,0,1,'Shotel',55,183074,45768,0,18,0,0,0,0,0,0,0,2,0,0,8,0,0,0,0,0,0,0,0,0,0),
(39,0,1,'Schiavona',57,199314,49828,0,7,7,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(40,0,1,'Nodachi',59,216366,54091,0,23,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(41,0,1,'Tabarzin',61,234243,58560,0,16,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(42,0,1,'Tabar',63,252954,63238,0,0,0,8,0,0,0,0,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0),
(43,0,1,'Chamkaq',65,272511,68127,0,0,16,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(44,0,1,'Balbriggan',68,303457,75864,0,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(45,0,1,'RIPaxo',68,228443,57110,41,0,0,0,0,0,0,0,0,7,0,0,35,0,0,0,0,0,0,0,0,0,0),
(46,0,1,'Langdebeve',70,325175,81293,0,22,0,0,0,0,0,0,0,3,0,0,10,0,0,0,0,0,0,0,0,0,0),
(47,0,1,'Griever',74,371268,92817,0,0,0,9,0,0,0,0,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0),
(48,0,1,'Fyrennix',75,288452,72113,45,0,0,0,0,0,0,0,0,0,0,10,21,0,0,0,0,0,0,0,0,0,0),
(49,0,1,'Glaive',78,420970,105242,0,0,28,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(50,0,1,'Corcesca',80,447198,111799,0,29,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(51,0,1,'Fauchard',83,488288,122072,0,20,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(52,0,1,'Voulge',87,546386,136596,0,31,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(53,0,1,'Bardysh',90,592481,148120,0,32,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(54,0,1,'Vatain',92,469472,117368,56,0,0,0,0,0,0,0,3,0,0,14,0,0,0,0,0,0,0,0,0,0,0),
(55,0,1,'Brandestoc',93,640772,160193,0,28,0,0,0,0,0,0,0,4,0,0,12,0,0,0,0,0,0,0,0,0,0),
(56,0,1,'Lentik',96,691287,172821,0,34,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(57,0,1,'Astrim',98,726214,181553,0,0,0,29,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0),
(58,0,1,'Ekazim',99,744055,186013,0,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(59,0,1,'Tuxator',99,559279,139819,60,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(60,0,1,'Demayr',103,817963,204490,0,0,0,30,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0),
(61,0,1,'Enazar',108,916149,229037,0,12,0,0,0,0,0,0,0,10,0,0,20,0,0,0,0,0,0,0,0,0,0),
(62,0,1,'Chreadmar',110,719314,179828,66,0,0,47,0,0,0,0,2,0,0,7,0,0,0,0,0,0,0,0,0,0,0),
(63,0,1,'Tirborm',115,1064653,266163,0,39,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(64,0,1,'Pangrear',120,1178780,294695,0,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(65,0,1,'Achacinie',125,976373,244093,75,62,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(66,0,1,'Lyx',128,1375658,343914,0,43,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(67,0,1,'Elcrom',130,1427668,356917,0,0,29,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(68,0,1,'Gulgator',133,1132516,283129,80,55,0,0,0,0,0,0,0,8,0,0,26,0,0,0,0,0,0,0,0,0,0),
(69,0,1,'Tiuchipalli',135,1562653,390663,0,30,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(70,0,1,'Evaenu',140,1704808,426202,0,15,0,0,0,0,0,0,0,12,0,0,24,0,0,0,0,0,0,0,0,0,0),
(71,0,1,'Lysian',145,1392493,348123,87,70,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(72,0,1,'Wytar',148,1947435,486858,0,0,0,40,0,0,0,0,2,0,0,6,0,0,0,0,0,0,0,0,0,0,0),
(73,0,1,'Usikammo',150,2011051,502762,0,0,0,41,0,0,0,0,2,0,0,6,0,0,0,0,0,0,0,0,0,0,0),
(74,0,1,'Halodon',153,1583454,395863,92,0,0,0,0,49,0,0,0,0,0,6,19,6,0,0,0,0,0,0,0,0,0),
(75,0,1,'Rinorarumar',155,2175341,543835,0,0,33,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(76,0,1,'Zatan',158,2277547,569386,0,0,0,0,0,0,0,0,3,0,0,15,0,0,0,0,0,0,0,0,0,0,0),
(77,0,1,'Ajanemo',160,1762408,440602,96,63,0,0,0,0,0,0,0,10,0,0,30,0,0,0,0,0,0,0,0,0,0),
(78,0,1,'Corelisch',165,2526755,631688,0,0,53,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(79,0,1,'Amineme',170,2714070,678517,0,0,36,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(80,0,1,'Achakuremubivy',175,2184124,546031,99,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(81,0,1,'Sabomige',180,3112383,778095,0,38,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(82,0,1,'Aukeshoub',185,3323563,830890,0,0,38,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(83,0,1,'Schajoman',190,2659533,664833,99,29,29,29,29,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(84,0,1,'Sonisha',195,3770413,942603,0,50,0,0,0,0,0,0,0,8,0,0,24,0,0,0,0,0,0,0,0,0,0),
(85,0,1,'Ebelarion',200,4006256,1001564,0,61,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(86,0,1,'Avobosh',202,3079729,769932,99,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(87,0,1,'Bashahood',208,4401095,1100273,0,0,42,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(88,0,1,'Mortemius',215,4764470,1191117,0,55,0,0,0,0,0,0,0,8,0,0,26,0,0,0,0,0,0,0,0,0,0),
(89,0,1,'Baccatabis',218,3696754,924188,99,65,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(90,0,1,'Colshycum',220,5034376,1258594,0,67,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(91,0,1,'Fasnarioka',225,5313001,1328250,0,57,0,0,0,0,0,0,0,8,0,0,27,0,0,0,0,0,0,0,0,0,0),
(92,0,1,'Meralgonis',230,5600423,1400105,0,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(93,0,1,'Baysharam',233,4335760,1083940,99,0,0,86,0,0,0,0,4,0,0,12,0,0,0,0,0,0,0,0,0,0,0),
(94,0,1,'Vishaxangari',235,5896719,1474179,0,70,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(95,0,1,'Mazakrir',238,6078788,1519697,0,0,0,59,0,0,0,0,2,0,0,8,0,0,0,0,0,0,0,0,0,0,0),
(96,0,1,'Luntrekosh',240,6201966,1550491,0,0,48,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(97,0,1,'Atropus',240,4654475,1163618,99,88,0,0,0,0,0,0,0,14,0,0,41,0,0,0,0,0,0,0,0,0,0),
(98,0,1,'Lirianna',244,6452660,1613165,0,60,0,0,0,0,0,0,0,9,0,0,28,0,0,0,0,0,0,0,0,0,0),
(99,0,1,'Droskir',257,7307774,1826943,0,25,0,0,0,0,0,0,0,20,0,0,40,0,0,0,0,0,0,0,0,0,0),
(100,0,1,'Rammor',265,5902129,1475532,99,95,0,0,0,0,0,0,0,15,0,0,45,0,0,0,0,0,0,0,0,0,0),
(101,0,1,'Orrech',274,8520821,2130205,0,0,0,0,0,0,0,0,0,15,0,0,74,0,0,0,0,0,0,0,0,0,0),
(102,0,1,'Krimmir',283,9207392,2301848,0,0,0,68,0,0,0,0,3,0,0,10,0,0,0,0,0,0,0,0,0,0,0),
(103,0,1,'Vanray',289,7265441,1816360,99,122,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(104,0,1,'Su-Kenor',292,9925204,2481301,0,0,0,0,0,0,0,0,0,0,0,21,44,0,0,0,0,0,0,0,0,0,0),
(105,0,1,'Plague',296,10254362,2563590,0,28,28,28,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(106,0,1,'Grim',300,7946102,1986525,99,0,0,0,0,84,0,0,0,0,0,10,33,10,0,0,0,0,0,0,0,0,0),
(107,1,1,'Traimam I',315,11904237,2976059,0,89,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(108,1,1,'Dracantra I',330,13309426,3327311,0,0,62,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(109,1,1,'Hakama I',345,11109212,2777303,99,0,0,0,0,0,0,0,0,0,0,35,0,0,-10,0,0,0,0,0,0,0,0),
(110,1,1,'Ragnarok I',360,16397750,4099437,0,83,0,0,0,0,0,0,0,13,0,0,39,0,0,0,0,0,0,0,0,0,0),
(111,1,1,'Demagulau I',375,18084513,4521128,0,102,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(112,1,1,'Bogumors I',390,14906171,3726542,99,130,0,0,0,0,0,0,0,20,0,0,62,0,0,0,0,0,0,0,0,0,0),
(113,1,1,'Scramasax I',405,21750930,5437732,0,91,0,0,0,0,0,0,0,14,0,0,43,0,0,0,0,0,0,0,0,0,0),
(114,1,1,'Corcesca I',420,23733621,5933405,0,112,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(115,1,1,'Fyrennix I',435,19368888,4842222,99,0,0,0,0,0,0,0,0,0,0,42,90,0,0,0,0,0,0,0,0,0,0),
(116,1,1,'Brandestoc I',450,28005308,7001327,0,99,0,0,0,0,0,0,0,15,0,0,47,0,0,0,0,0,0,0,0,0,0),
(117,1,1,'Astrim I',465,30297148,7574287,0,0,0,102,0,0,0,0,5,0,0,15,0,0,0,0,0,0,0,0,0,0,0),
(118,1,1,'Gulgator I',480,24527126,6131781,99,153,0,0,0,0,0,0,0,24,0,0,73,0,0,0,0,0,0,0,0,0,0),
(119,1,1,'Tiuchipalli I',495,35199720,8799930,0,85,0,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(120,1,1,'Corelisch I',510,37813132,9453283,0,0,131,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(121,1,1,'Baccatabis I',525,30408844,7602211,99,132,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(122,1,1,'Ebelarion I',540,43370729,10842682,0,138,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(123,1,1,'Meralgonis I',555,46317455,11579363,0,47,47,47,47,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(124,1,1,'Atropus I',570,37040467,9260116,99,176,0,0,0,0,0,0,0,28,0,0,84,0,0,0,0,0,0,0,0,0,0),
(125,1,1,'Orrech I',585,52552952,13138238,0,0,0,0,0,0,0,0,0,29,0,0,136,0,0,0,0,0,0,0,0,0,0),
(126,1,1,'Su-Kenor I',600,55844142,13961035,0,0,0,0,0,0,0,0,0,0,0,37,80,0,0,0,0,0,0,0,0,0,0),
(127,1,1,'Grim I',615,44447092,11111773,99,0,0,0,0,149,0,0,0,0,0,18,59,18,0,0,0,0,0,0,0,0,0),
(128,2,1,'Trainman II',630,62779309,15694827,0,156,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(129,2,1,'Dracantra II',645,66425597,16606399,0,0,106,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(130,2,1,'Hakama II',660,52652650,13163162,99,0,0,0,0,0,0,0,0,0,0,59,0,0,-16,0,0,0,0,0,0,0,0),
(131,2,1,'Ragnarok II',675,74081234,18520308,0,137,0,0,0,0,0,0,0,22,0,0,65,0,0,0,0,0,0,0,0,0,0),
(132,2,1,'Demagulau II',690,78092796,19523199,0,162,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(133,2,1,'Bogumors II',705,61680042,15420010,99,208,0,0,0,0,0,0,0,33,0,0,100,0,0,0,0,0,0,0,0,0,0),
(134,2,1,'Scramasax II',720,86488835,21622208,0,144,0,0,0,0,0,0,0,22,0,0,68,0,0,0,0,0,0,0,0,0,0),
(135,2,1,'Corcesca II',735,90875440,22718860,0,176,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(136,2,1,'Fyrennix II',750,71551249,17887812,99,0,0,0,0,0,0,0,0,0,0,65,140,0,0,0,0,0,0,0,0,0,0),
(137,2,1,'Brandestoc II',765,100031041,25007760,0,152,0,0,0,0,0,0,0,24,0,0,72,0,0,0,0,0,0,0,0,0,0),
(138,2,1,'Astrim II',780,104802089,26200522,0,0,0,154,0,0,0,0,7,0,0,23,0,0,0,0,0,0,0,0,0,0,0),
(139,2,1,'Gulgator II',795,82287423,20571855,99,229,0,0,0,0,0,0,0,36,0,0,109,0,0,0,0,0,0,0,0,0,0),
(140,2,1,'Tiuchipalli II',810,114735713,28683928,0,127,0,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(141,2,1,'Corelisch II',825,119900271,29975067,0,0,193,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(142,2,1,'Baccatabis II',840,93908970,23477242,99,192,0,0,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(143,2,1,'Ebelarion II',855,130629743,32657435,0,199,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(144,2,1,'Meralgonis II',870,136196575,34049143,0,67,67,67,67,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(145,2,1,'Atropus II',885,106435610,26608902,99,250,0,0,0,0,0,0,0,40,0,0,120,0,0,0,0,0,0,0,0,0,0),
(146,2,1,'Orrech II',900,147739142,36934785,0,0,0,0,0,0,0,0,0,41,0,0,193,0,0,0,0,0,0,0,0,0,0),
(147,2,1,'Su-Kenor II',915,153716734,38429183,0,0,0,0,0,0,0,0,0,0,0,52,112,0,0,0,0,0,0,0,0,0,0),
(148,2,1,'Grim II',930,119886441,29971610,99,0,0,0,0,208,0,0,0,0,0,26,83,26,0,0,0,0,0,0,0,0,0),
(149,0,2,'Small Healing Potion',1,200,50,0,0,0,0,0,0,5000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3600,0),
(150,0,2,'%100 Healing Potion',1,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(151,0,2,'Strength Potion',1,1000,250,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86400),
(152,0,2,'Defence Potion',1,1000,250,4,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86400),
(153,0,2,'Dexterity Potion',1,1000,250,4,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86400),
(154,0,2,'Endurance Potion',1,1000,250,4,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86400),
(155,0,2,'Charisma Potion',1,1000,250,4,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86400),
(156,0,2,'Serendipity Potion',1,500,125,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7200),
(157,0,2,'Energy Potion',1,1000,250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,86400),
(158,0,2,'Energy Elixir',1,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,21600),
(159,0,2,'Medium Healing Potion',3,500,125,0,0,0,0,0,0,15000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3600,0),
(160,0,2,'Defence Elixir',20,1000,250,10,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86400),
(161,0,2,'Strength Elixir',20,1000,250,10,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86400),
(162,0,2,'Dexterity Elixir',20,1000,250,10,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86400),
(163,0,2,'Endurance Elixir',20,1000,250,10,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86400),
(164,0,2,'Charisma Elixir',20,1000,250,10,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86400),
(165,0,2,'Blood Potion',25,2000,500,0,0,0,0,0,0,0,0,0,0,3,0,0,7,0,0,0,0,0,0,0,0,3600),
(166,0,2,'Soup of Life',75,10000,2500,0,0,0,0,0,0,50000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3600,0),
(167,0,3,'Ingina',1,62,15,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(168,0,3,'Shytan',3,318,79,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(169,0,3,'Ormoss',5,679,169,3,0,0,0,0,0,3000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(170,0,3,'Sosul',9,2791,697,0,0,4,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(171,0,3,'Rilque',12,5269,1317,0,0,4,0,0,0,4500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(172,0,3,'Mequa',15,6733,1683,9,0,0,0,9,0,0,0,0,0,0,0,0,0,0,-1,0,0,-3,0,0,0,0),
(173,0,3,'Royer',19,15017,3754,0,0,6,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(174,0,3,'Worhin',24,25843,6460,0,0,11,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(175,0,3,'Tanond',28,28157,7039,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-6,0,0,0,0),
(176,0,3,'Envor',32,50752,12688,0,9,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(177,0,3,'Treing',36,67009,16752,0,0,10,0,0,0,11500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(178,0,3,'Orvris',40,64978,16244,24,0,0,0,0,0,12500,0,0,0,0,2,6,2,0,0,0,0,0,0,0,0,0),
(179,0,3,'Wayan',42,96502,24125,0,0,11,0,0,0,13000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(180,0,3,'Selvin',45,113652,28413,0,0,12,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(181,0,3,'Undaan',47,95093,23773,29,0,0,0,0,23,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0),
(182,0,3,'Helios',51,152986,38246,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,-2,0,0,-5,0,0,0,0),
(183,0,3,'Baan',56,191093,47773,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(184,0,3,'Ka Baan',63,190503,47625,38,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(185,0,3,'Void',66,282611,70652,0,0,16,0,0,0,18500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(186,0,3,'Vo Void',72,347775,86943,0,0,27,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(187,0,3,'Senguash',74,279376,69844,45,0,0,0,0,0,20000,0,0,0,0,3,10,3,0,0,0,0,0,0,0,0,0),
(188,0,3,'Urkopp',77,408202,102050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,0,0,-14,0,0,0,0),
(189,0,3,'Ur Void',80,447198,111799,0,0,29,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(190,0,3,'Ogra',82,356793,89198,50,0,0,0,0,37,0,0,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0),
(191,0,3,'Borros',84,502455,125613,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(192,0,3,'Zykken',87,410877,102719,53,0,0,0,39,0,0,0,0,0,0,0,0,0,0,-4,0,0,-10,0,0,0,0),
(193,0,3,'Telgore',89,576874,144218,0,32,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(194,0,3,'Drakeen',94,657362,164340,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,-3,0,0,-7,0,0,0,0),
(195,0,3,'Pallenthos',100,572862,143215,60,17,0,0,0,0,0,0,0,13,0,0,27,0,0,0,0,0,0,0,0,0,0),
(196,0,3,'Jakar',103,817963,204490,0,0,0,0,24,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(197,0,3,'Frian',107,895991,223997,0,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(198,0,3,'Thelurgos',110,719314,179828,66,0,37,0,0,0,42000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(199,0,3,'Denebol',118,1132315,283078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,-12,0,0,0,0),
(200,0,3,'Zombor',130,1427668,356917,0,0,29,0,0,0,32500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(201,0,3,'Curatol',136,1194580,298645,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,0,0,-32,0,0,0,0),
(202,0,3,'Sagamal',143,1793588,448397,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(203,0,3,'Halwar',150,2011051,502762,0,0,49,0,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(204,0,3,'Tellon',155,1633444,408361,93,0,0,0,62,0,0,0,0,0,0,0,0,0,0,-5,0,0,-16,0,0,0,0),
(205,0,3,'Zagol',158,2277547,569386,0,0,51,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(206,0,3,'Ryuloki',163,1842545,460636,98,25,25,25,25,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(207,0,3,'Pazoth',167,2600743,650185,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(208,0,3,'Golvar',171,2752473,688118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,0,0,-26,0,0,0,0),
(209,0,3,'Koronis',176,2214127,553531,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-14,-22,0,0,0,0),
(210,0,3,'Rudon',182,3195884,798971,0,0,38,0,0,0,43000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(211,0,3,'Bergor',194,3724244,931061,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,-5,0,0,-13,0,0,0,0),
(212,0,3,'Yrathon',200,3007192,751798,99,0,91,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(213,0,3,'Neton',204,4200969,1050242,0,0,0,0,42,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(214,0,3,'Kuros',213,4658931,1164732,0,21,21,21,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(215,0,3,'Skymning',220,5034376,1258594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,0,0,-14,0,0,0,0,0),
(216,0,3,'Welgor',226,4030159,1007539,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-11,0,0,-48,0,0,0,0),
(217,0,3,'Amfar',228,5484393,1371098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-12,-19,0,0,0,0),
(218,0,3,'Varaton',239,6140197,1535049,0,0,47,0,0,0,53500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(219,0,3,'Rydru',244,6452660,1613165,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(220,0,3,'Gurgal',250,5132837,1283209,99,0,0,0,91,0,0,0,0,0,0,0,0,0,0,-8,0,0,-22,0,0,0,0),
(221,0,3,'Sudrala',255,7172168,1793042,0,25,0,0,0,0,0,0,0,20,0,0,40,0,0,0,0,0,0,0,0,0,0),
(222,0,3,'Hydra',263,7723517,1930879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,0,0,-37,0,0,0,0),
(223,0,3,'Logaz',272,6282739,1570684,99,0,117,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(224,0,3,'Borojaga',276,8670713,2167678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-14,-22,0,0,0,0),
(225,0,3,'Pyton',289,9682438,2420609,0,0,55,0,0,0,62500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(226,0,3,'Enzephalor',294,7570425,1892606,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-13,0,0,-58,0,0,0,0),
(227,0,3,'Celefais',297,10337632,2584408,0,0,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(228,0,3,'Krakolon',300,7946102,1986525,99,0,126,0,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(229,1,3,'Sosul I',305,11017991,2754497,0,0,87,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(230,1,3,'Rilque I',320,12362425,3090606,0,0,60,0,0,0,67500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(231,1,3,'Mequa I',335,10352692,2588173,99,0,0,0,115,0,0,0,0,0,0,0,0,0,0,-10,0,0,-28,0,0,0,0),
(232,1,3,'Royer I',350,15326420,3831605,0,0,64,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(233,1,3,'Envor I',365,16949309,4237327,0,67,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(234,1,3,'Orvris I',380,14005954,3501488,99,0,0,0,0,0,76000,0,0,0,0,12,40,12,0,0,0,0,0,0,0,0,0),
(235,1,3,'Helios I',395,20484870,5121217,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,-8,0,0,-22,0,0,0,0),
(236,1,3,'Baan I',410,22400625,5600156,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(237,1,3,'Undaan I',425,18318084,4579521,99,0,0,0,0,139,0,0,0,0,6,0,0,20,0,0,0,0,0,0,0,0,0),
(238,1,3,'Urkopp I',440,26535538,6633884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-12,0,0,-55,0,0,0,0),
(239,1,3,'Ur Void I',455,28757578,7189394,0,0,120,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(240,1,3,'Senguash I',470,23319287,5829821,99,0,0,0,0,0,90500,0,0,0,0,15,48,15,0,0,0,0,0,0,0,0,0),
(241,1,3,'Drakeen I',485,33517819,8379454,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,-9,0,0,-26,0,0,0,0),
(242,1,3,'Zombor I',500,36058734,9014683,0,0,86,0,0,0,97000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(243,1,3,'Pallenthos I',515,29037897,7259474,99,64,0,0,0,0,0,0,0,51,0,0,103,0,0,0,0,0,0,0,0,0,0),
(244,1,3,'Halwar I',530,41468751,10367187,0,0,135,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(245,1,3,'Rudon I',545,44340424,11085106,0,0,92,0,0,0,103500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(246,1,3,'Koronis I',560,35500662,8875165,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-35,-56,0,0,0,0),
(247,1,3,'Neton I',575,50423359,12605839,0,0,0,0,96,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(248,1,3,'Pyton I',590,53637065,13409266,0,0,98,0,0,0,111000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(249,1,3,'Krakolon I',605,42732958,10683239,99,0,221,0,0,147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(250,2,3,'Sosul II',620,60414920,15103730,0,0,154,0,0,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(251,2,3,'Rilque II',635,63981403,15995350,0,0,104,0,0,0,117500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(252,2,3,'Mequa II',650,50758962,12689740,99,0,0,0,195,0,0,0,0,0,0,0,0,0,0,-16,0,0,-48,0,0,0,0),
(253,2,3,'Royer II',665,71475183,17868795,0,0,108,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(254,2,3,'Envor II',680,75404716,18851179,0,110,0,0,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(255,2,3,'Orvris II',695,59601793,14900448,99,0,0,0,0,0,123500,0,0,0,0,20,65,20,0,0,0,0,0,0,0,0,0),
(256,2,3,'Helios II',710,83634539,20908634,0,0,0,0,143,0,0,0,0,0,0,0,0,0,0,-12,0,0,-35,0,0,0,0),
(257,2,3,'Baan II',725,87936976,21984244,0,0,291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(258,2,3,'Undaan II',740,69283630,17320907,99,0,0,0,0,217,0,0,0,0,10,0,0,32,0,0,0,0,0,0,0,0,0),
(259,2,3,'Urkopp II',770,96922167,24230541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,0,0,-84,0,0,0,0),
(260,2,3,'Ur Void II',770,101606988,25401747,0,0,183,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(261,2,3,'Senguash II',785,79825800,19956450,99,0,0,0,0,0,136500,0,0,0,0,22,72,22,0,0,0,0,0,0,0,0,0),
(262,2,3,'Drakeen II',800,111366157,27841539,0,0,0,0,157,0,0,0,0,0,0,0,0,0,0,-13,0,0,-38,0,0,0,0),
(263,2,3,'Zombor II',815,116442500,29110625,0,0,127,0,0,0,143500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(264,2,3,'Pallenthos II',830,91248870,22812217,99,95,0,0,0,0,0,0,0,76,0,0,152,0,0,0,0,0,0,0,0,0,0),
(265,2,3,'Halwar II',845,126993608,31748402,0,0,197,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(266,2,3,'Rudon II',860,132470302,33117575,0,0,133,0,0,0,149500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(267,2,3,'Koronis II',875,103572707,25893176,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-50,-80,0,0,0,0),
(268,2,3,'Neton II',890,143830719,35957679,0,0,0,0,137,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(269,2,3,'Pyton II',905,149716311,37429077,0,0,138,0,0,0,156000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(270,2,3,'Krakolon II',920,116816542,29204135,99,0,309,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(271,0,4,'Bantorm',1,62,15,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(272,0,4,'Ineys',3,318,79,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(273,0,4,'Cayt',5,679,169,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(274,0,4,'Erenthight',7,1631,407,0,2,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(275,0,4,'Satul',9,2791,697,0,0,3,0,0,0,3500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(276,0,4,'Marock',11,3392,848,7,0,0,0,7,0,0,0,0,0,0,0,0,0,0,-1,0,0,-2,0,0,0,0),
(277,0,4,'Pibyl',13,6308,1577,0,4,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(278,0,4,'Snyldd',15,8727,2181,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,-1,0,0,-2,0,0,0,0),
(279,0,4,'Norodia',18,10167,2541,11,0,0,0,0,0,6500,0,0,0,0,1,3,1,0,0,0,0,0,0,0,0,0),
(280,0,4,'Blarkim',20,16910,4227,0,0,6,0,0,0,7000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(281,0,4,'Sonit',24,25843,6460,0,0,0,0,7,0,0,1833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(282,0,4,'Rhytai',27,25870,6467,17,0,0,0,15,0,0,0,0,0,0,0,0,0,0,-2,0,0,-4,0,0,0,0),
(283,0,4,'Heled',30,43600,10900,0,8,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(284,0,4,'Emlora',33,54570,13642,0,0,9,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(285,0,4,'Kurosa',36,50707,12676,22,7,7,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(286,0,4,'Ghaif',40,85971,21492,0,0,11,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(287,0,4,'Teleca',43,102037,25509,0,0,18,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(288,0,4,'Usklad',46,90377,22594,28,0,0,0,0,0,14000,0,0,0,0,2,7,2,0,0,0,0,0,0,0,0,0),
(289,0,4,'Warvor',48,132465,33116,0,0,13,0,0,0,14500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(290,0,4,'Ormdar',50,145953,36488,0,20,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(291,0,4,'Vesden',50,110090,27522,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-8,0,0,0,0),
(292,0,4,'Anzuur',55,183074,45768,0,0,14,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(293,0,4,'Javan',62,243493,60873,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,-2,0,0,-5,0,0,0,0),
(294,0,4,'Shinu',65,205196,51299,39,0,24,0,0,0,27500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(295,0,4,'Xyx',72,347775,86943,0,0,0,0,18,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(296,0,4,'Segal',75,383352,95838,0,9,9,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(297,0,4,'Suth-Drul',79,326464,81616,48,0,28,0,0,0,32000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(298,0,4,'Esi',81,460660,115165,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,-2,0,0,-6,0,0,0,0),
(299,0,4,'Flukx',83,367254,91813,50,0,0,0,30,0,0,7500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(300,0,4,'Hadoken',88,561509,140377,0,0,0,0,0,26,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0),
(301,0,4,'Tolkor',90,445486,111371,54,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(302,0,4,'Cuzo',94,657362,164340,0,0,0,0,0,28,0,0,0,0,0,0,0,0,-2,0,0,-3,0,0,0,0,0),
(303,0,4,'Zann',98,726214,181553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,0,0,-17,0,0,0,0),
(304,0,4,'Angelus',101,586636,146659,61,0,0,0,0,0,26000,0,0,0,0,4,13,4,0,0,0,0,0,0,0,0,0),
(305,0,4,'Kaimaan',109,936569,234142,0,0,0,0,25,0,0,6166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(306,0,4,'Servitor',114,1042639,260659,0,0,26,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(307,0,4,'Zenpai',121,903329,225832,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-11,-17,0,0,0,0),
(308,0,4,'Schimmer',127,1350075,337518,0,0,0,0,0,36,0,0,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0),
(309,0,4,'Vardha',131,1454096,363524,0,0,0,0,0,0,22000,0,0,0,0,3,11,3,0,0,0,0,0,0,0,0,0),
(310,0,4,'Lykos',134,1152989,288247,81,0,0,0,0,44,0,0,0,0,0,5,17,5,0,0,0,0,0,0,0,0,0),
(311,0,4,'Bankai',135,1562653,390663,0,0,0,0,0,0,22500,0,0,0,0,3,12,3,0,0,0,0,0,0,0,0,0),
(312,0,4,'Nargoth',141,1734109,433527,0,0,46,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(313,0,4,'Quitan',146,1885009,471252,0,0,32,0,0,0,36000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(314,0,4,'Goldt',149,1486183,371545,90,0,0,0,0,0,36000,0,0,0,0,6,19,6,0,0,0,0,0,0,0,0,0),
(315,0,4,'Nodon',151,2043307,510826,0,0,33,0,0,0,37000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(316,0,4,'Irian',153,1583454,395863,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-13,-20,0,0,0,0),
(317,0,4,'Bhaaz-Matain',159,2312226,578056,0,0,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(318,0,4,'Findul',162,1815601,453900,98,0,76,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(319,0,4,'Brutus',167,2600743,650185,0,0,0,0,0,45,0,0,0,0,0,0,0,0,-2,0,0,-5,0,0,0,0,0),
(320,0,4,'Zegedyr',176,2949236,737309,0,0,37,0,0,0,41500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(321,0,4,'Oltarian',181,2367742,591935,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,0,0,-40,0,0,0,0),
(322,0,4,'Bokrog',184,3280679,820169,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(323,0,4,'Urrosh',190,3542877,885719,0,0,0,0,49,0,0,0,0,0,0,0,0,0,0,-4,0,0,-12,0,0,0,0),
(324,0,4,'Anadul',196,3816914,954228,0,0,61,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(325,0,4,'Al-Gol',196,2865136,716284,99,0,0,0,75,0,0,0,0,0,0,0,0,0,0,-6,0,0,-18,0,0,0,0),
(326,0,4,'Wendul',200,3007192,751798,99,0,60,0,0,0,68000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(327,0,4,'Exomorph',208,4401095,1100273,0,0,42,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(328,0,4,'Medea',216,2817758,1204439,0,0,0,0,0,44,0,0,0,0,0,5,17,5,0,0,0,0,0,0,0,0,0),
(329,0,4,'Merghal',224,3945231,986307,99,0,99,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(330,0,4,'Rondolor',226,5369779,1342444,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,-5,0,0,-14,0,0,0,0),
(331,0,4,'Orothol',236,5957050,1489262,0,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(332,0,4,'Grugal',246,4938214,1234553,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-18,-29,0,0,0,0),
(333,0,4,'Nervik',251,6905390,1726347,0,0,49,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(334,0,4,'Oktalon',261,7583444,1895861,0,0,51,0,0,0,57500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(335,0,4,'Jaga',269,6117921,1529480,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-12,0,0,-55,0,0,0,0),
(336,0,4,'Peteor',278,8822133,2205533,0,0,81,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(337,0,4,'Arkon',286,9443172,2360793,0,0,55,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(338,1,4,'Snyldd I',300,10589803,2647450,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,-6,0,0,-18,0,0,0,0),
(339,1,4,'Blarkim I',315,11904237,2976059,0,0,59,0,0,0,67000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(340,1,4,'Rhytai I',330,9986060,2496515,99,0,0,0,113,0,0,0,0,0,0,0,0,0,0,-10,0,0,-28,0,0,0,0),
(341,1,4,'Ghaif I',345,14806532,3701633,0,0,64,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(342,1,4,'Teleca I',360,16397750,4099437,0,0,99,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(343,1,4,'Usklad I',375,13568072,3392018,99,0,0,0,0,0,75500,0,0,0,0,12,40,12,0,0,0,0,0,0,0,0,0),
(344,1,4,'Ormdar I',390,19868394,4967098,0,106,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(345,1,4,'Javan I',405,21750930,5437732,0,0,0,0,91,0,0,0,0,0,0,0,0,0,0,-8,0,0,-22,0,0,0,0),
(346,1,4,'Vesden I',420,17805466,4451366,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-28,-45,0,0,0,0),
(347,1,4,'Xyx I',435,25817934,6454483,0,0,0,0,77,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(348,1,4,'Hadoken I',450,28005308,7001327,0,0,0,0,0,99,0,0,0,0,4,0,0,14,0,0,0,0,0,0,0,0,0),
(349,1,4,'Suth-Drul I',465,22728673,5682168,99,0,119,0,0,0,134500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(350,1,4,'Zann I',65535,8173708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-13,0,0,-59,0,0,0,0),
(351,1,4,'Kaimaan I',495,35199720,8799930,0,0,0,0,85,0,0,21333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(352,1,4,'Angelus I',510,28366224,7091556,99,0,0,0,0,0,96500,0,0,0,0,16,51,16,0,0,0,0,0,0,0,0,0),
(353,1,4,'Nargoth I',525,40536375,10134093,0,0,135,0,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(354,1,4,'Zegedyr I',540,43370729,10842682,0,0,92,0,0,0,103500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(355,1,4,'Al-Gol I',555,34745029,8686257,99,0,0,0,172,0,0,0,0,0,0,0,0,0,0,-14,0,0,-42,0,0,0,0),
(356,1,4,'Anadul I',570,49377789,12344447,0,0,144,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(357,1,4,'Medea I',585,52552952,13138238,0,0,0,0,0,98,0,0,0,0,0,12,39,12,0,0,0,0,0,0,0,0,0),
(358,1,4,'Peteor I',600,55844142,13961035,0,0,150,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(359,1,4,'Jaga I',615,44447092,11111773,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-23,0,0,-105,0,0,0,0),
(360,2,4,'Snyldd II',630,62779309,15694827,0,0,0,0,130,0,0,0,0,0,0,0,0,0,0,-11,0,0,-32,0,0,0,0),
(361,2,4,'Blarkim II',645,66425597,16606399,0,0,106,0,0,0,119000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(362,2,4,'Rhytai II',660,52652650,13163162,99,0,0,0,198,0,0,0,0,0,0,0,0,0,0,-16,0,0,-48,0,0,0,0),
(363,2,4,'Ghaif II',675,74081234,18520308,0,0,110,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(364,2,4,'Teleca II',690,78092796,19523199,0,0,168,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(365,2,4,'Usklad II',705,61680042,15420010,99,0,0,0,0,0,125000,0,0,0,0,20,66,20,0,0,0,0,0,0,0,0,0),
(366,2,4,'Ormdar II',720,86488835,21622208,0,173,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(367,2,4,'Javan II',735,90875440,22718860,0,0,0,0,147,0,0,0,0,0,0,0,0,0,0,-12,0,0,-36,0,0,0,0),
(368,2,4,'Vesden II',750,71551249,17887812,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-44,-71,0,0,0,0),
(369,2,4,'Xyx II',765,100031041,25007760,0,0,0,0,121,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(370,2,4,'Hadoken II',780,104802089,26200522,0,0,0,0,0,154,0,0,0,0,7,0,0,23,0,0,0,0,0,0,0,0,0),
(371,2,4,'Suth-Drul II',795,82287423,20571855,99,0,183,0,0,0,206500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(372,2,4,'Zann II',810,114735713,28683928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-20,0,0,-90,0,0,0,0),
(373,2,4,'Kaimaan II',825,119900271,29975067,0,0,0,0,129,0,0,32166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(374,2,4,'Angelus II',840,93908970,23477242,99,0,0,0,0,0,144000,0,0,0,0,24,76,24,0,0,0,0,0,0,0,0,0),
(375,2,4,'Nargoth II',855,130629743,32657435,0,0,199,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(376,2,4,'Zegedyr II',870,136196575,34049143,0,0,134,0,0,0,151500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(377,2,4,'Al-Gol II',885,106435610,26608902,99,0,0,0,250,0,0,0,0,0,0,0,0,0,0,-21,0,0,-61,0,0,0,0),
(378,2,4,'Anadul II',900,147739142,36934785,0,0,207,0,0,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(379,2,4,'Medea II',915,153716734,38429183,0,0,0,0,0,140,0,0,0,0,0,17,56,17,0,0,0,0,0,0,0,0,0),
(380,2,4,'Jaga II',930,119886441,29971610,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-32,0,0,-146,0,0,0,0),
(381,0,5,'Ankor',6,1185,296,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(382,0,5,'Janish',11,4339,1084,0,4,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(383,0,5,'Ybor',14,7460,1865,0,0,0,0,0,4,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),
(384,0,5,'Vandolori',18,10167,2541,11,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-3,0,0,0,0,0),
(385,0,5,'Wolf ring',20,16910,4227,0,9,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(386,0,5,'Heart ruby',21,14465,3616,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,-4,0,0,0,0),
(387,0,5,'Pzy',25,28430,7107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,-6,0,0,0,0),
(388,0,5,'Trinity',29,30558,7639,18,0,0,0,0,0,9500,0,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0),
(389,0,5,'Night catcher',29,40260,10065,0,13,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(390,0,5,'Silpix',32,50752,12688,0,0,0,0,0,12,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),
(391,0,5,'Wirru',35,62696,15674,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,-1,0,0,-4,0,0,0,0),
(392,0,5,'Jadeeye',38,76145,19036,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(393,0,5,'Seven paw',38,57584,14396,23,20,0,0,0,0,0,0,0,3,0,0,9,0,0,0,0,0,0,0,0,0,0),
(394,0,5,'Band of might',47,126007,31501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,-6,0,0,0,0),
(395,0,5,'Scavatt',47,126007,31501,0,0,12,0,0,0,14000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(396,0,5,'Shugloth',55,137993,34498,33,10,10,10,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(397,0,5,'Fangh',56,191093,47773,0,0,0,0,0,18,0,0,0,0,0,0,0,0,-1,0,0,-2,0,0,0,0,0),
(398,0,5,'Yogloth',63,252954,63238,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,-2,0,0,0,0,0),
(399,0,5,'Demonium',65,205196,51299,39,0,0,0,0,0,18500,0,0,0,0,3,9,3,0,0,0,0,0,0,0,0,0),
(400,0,5,'Hexxen',74,371268,92817,0,0,18,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(401,0,5,'Mugloth',75,383352,95838,0,0,0,23,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0),
(402,0,5,'Urdamal',78,316703,79175,47,0,0,0,0,0,21000,0,0,0,0,3,11,3,0,0,0,0,0,0,0,0,0),
(403,0,5,'Nihundaar',83,488288,122072,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(404,0,5,'Trigloth',84,377892,94473,51,15,15,15,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(405,0,5,'Gaia',91,608333,152083,0,0,0,0,0,0,16500,0,0,0,0,2,8,2,0,0,0,0,0,0,0,0,0),
(406,0,5,'Tokaenokutul',92,624430,156107,0,0,0,0,0,0,0,0,0,0,0,8,0,0,-3,0,0,0,0,0,0,0,0),
(407,0,5,'Masque',99,559279,139819,60,0,0,0,0,43,0,0,0,0,0,0,0,0,-2,0,0,-5,0,0,0,0,0),
(408,0,5,'Respin',101,780498,195124,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,-3,0,0,-8,0,0,0,0),
(409,0,5,'Requiem',108,916149,229037,0,31,0,0,0,0,0,0,0,4,0,0,14,0,0,0,0,0,0,0,0,0,0),
(410,0,5,'Jovishn',110,719314,179828,66,0,0,47,0,0,0,0,2,0,0,7,0,0,0,0,0,0,0,0,0,0,0),
(411,0,5,'Night wing',119,1155411,288852,0,0,0,0,0,34,0,0,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0),
(412,0,5,'Deadalus',119,1155411,288852,0,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(413,0,5,'Death star',128,1375658,343914,0,14,14,14,14,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(414,0,5,'Sinclair',128,1375658,343914,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,-3,0,0,-9,0,0,0,0),
(415,0,5,'Tamaluk',137,1215499,303924,83,0,0,0,0,0,33500,0,0,0,0,5,17,5,0,0,0,0,0,0,0,0,0),
(416,0,5,'Gondwana',140,1704808,426202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-8,-13,0,0,0,0),
(417,0,5,'Lorius',143,1793588,448397,0,0,0,39,0,0,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0),
(418,0,5,'Morbique',146,1415582,353895,88,0,0,59,0,0,0,0,2,0,0,8,0,0,0,0,0,0,0,0,0,0,0),
(419,0,5,'Ongbang',150,2011051,502762,0,0,0,0,0,0,24500,0,0,0,0,4,12,4,0,0,0,0,0,0,0,0,0),
(420,0,5,'Retosor',154,1608335,402086,93,0,0,0,49,0,0,12166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(421,0,5,'Sytyr',157,2243174,560793,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(422,0,5,'Wilmaa',162,2418102,604525,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(423,0,5,'Beryllion',165,1897129,474282,99,0,0,0,0,52,0,0,0,0,0,6,20,6,0,0,0,0,0,0,0,0,0),
(424,0,5,'Ektulia',170,2714070,678517,0,0,0,0,0,45,0,0,0,0,0,0,0,0,-2,0,0,-5,0,0,0,0,0),
(425,0,5,'Yg',178,3030169,757542,0,0,0,0,0,37,0,0,0,0,0,4,14,4,0,0,0,0,0,0,0,0,0),
(426,0,5,'Auglor',183,2430877,607719,99,0,0,0,0,71,0,0,0,0,3,0,0,10,0,0,0,0,0,0,0,0,0),
(427,0,5,'Rig-Myr',188,3454169,863542,0,0,0,0,39,0,0,9666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(428,0,5,'Gamba',196,3816914,954228,0,0,0,0,0,0,0,0,3,0,0,17,0,0,0,0,0,0,0,0,0,0,0),
(429,0,5,'Frunkel',204,3153277,788319,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-16,-25,0,0,0,0),
(430,0,5,'Jissandra',210,4503202,1125800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,0,0,-13,0,0,0,0,0),
(431,0,5,'Skyr',216,4817758,1204439,0,0,0,0,0,44,0,0,0,0,0,5,17,5,0,0,0,0,0,0,0,0,0),
(432,0,5,'Jani-Sena',220,5034376,1258594,0,22,22,22,22,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(433,0,5,'Hzi',230,5600423,1400105,0,0,0,0,0,0,0,0,0,0,0,17,36,0,0,0,0,0,0,0,0,0,0),
(434,0,5,'Garanis',236,4470737,1117684,99,0,0,0,0,0,52000,0,0,0,0,8,27,8,0,0,0,0,0,0,0,0,0),
(435,0,5,'Auglorion',239,6140197,1535049,0,0,0,59,0,0,0,0,2,0,0,8,0,0,0,0,0,0,0,0,0,0,0),
(436,0,5,'Evendul',251,6905390,1726347,0,0,0,0,0,62,0,0,0,0,0,0,0,0,-3,0,0,-7,0,0,0,0,0),
(437,0,5,'Givenisi',261,5690846,1422711,99,0,0,0,94,0,0,0,0,0,0,0,0,0,0,-8,0,0,-23,0,0,0,0),
(438,0,5,'Hamla',266,7936438,1984109,0,0,0,0,0,65,0,0,0,0,3,0,0,9,0,0,0,0,0,0,0,0,0),
(439,0,5,'Onyx-Thalassa',278,8822133,2205533,0,0,54,0,0,0,60500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(440,0,5,'Etrifaktulon',289,7265441,1816360,99,0,0,0,0,81,0,0,0,0,0,10,32,10,0,0,0,0,0,0,0,0,0),
(441,0,5,'Zajus',292,9925204,2481301,0,0,0,0,0,0,42000,0,0,0,0,7,22,7,0,0,0,0,0,0,0,0,0),
(442,0,5,'Brenfriaz',298,10421295,2605323,0,0,0,0,0,0,0,0,0,0,0,21,45,0,0,0,0,0,0,0,0,0,0),
(443,0,5,'Sjur',300,7946102,1986525,99,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,0,0,-25,0,0,0,0,0),
(444,1,5,'Ybor I',310,11456114,2864028,0,0,0,0,0,58,0,0,0,0,0,7,23,7,0,0,0,0,0,0,0,0,0),
(445,1,5,'Wolfsring I',325,12830740,3207685,0,91,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(446,1,5,'Trinity I',340,10727061,2681765,99,0,0,0,0,0,69500,0,0,0,0,11,36,11,0,0,0,0,0,0,0,0,0),
(447,1,5,'Silpix I',355,15856806,3964201,0,0,0,0,0,82,0,0,0,0,4,0,0,12,0,0,0,0,0,0,0,0,0),
(448,1,5,'Scravatt I',370,17511544,4377886,0,0,68,0,0,0,76500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(449,1,5,'Siebenpfote I',385,14451973,3612993,99,128,0,0,0,0,0,0,0,20,0,0,61,0,0,0,0,0,0,0,0,0,0),
(450,1,5,'Yogloth I',400,21112363,5278090,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,-8,0,0,0,0,0),
(451,1,5,'Mugloth I',415,23061504,5765376,0,0,0,93,0,0,0,0,4,0,0,13,0,0,0,0,0,0,0,0,0,0,0),
(452,1,5,'Daemonium I',430,18839212,4709803,99,0,0,0,0,0,84000,0,0,0,0,14,44,14,0,0,0,0,0,0,0,0,0),
(453,1,5,'Hexxen I',445,27264645,6816161,0,0,78,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(454,1,5,'Respin I',460,29521508,7380377,0,0,0,0,101,0,0,0,0,0,0,0,0,0,0,-9,0,0,-25,0,0,0,0),
(455,1,5,'Jovishn I',475,23918758,5979689,99,0,0,152,0,0,0,0,7,0,0,22,0,0,0,0,0,0,0,0,0,0,0),
(456,1,5,'Nachtschwinge I',490,34352764,8588191,0,0,0,0,0,106,0,0,0,0,5,0,0,15,0,0,0,0,0,0,0,0,0),
(457,1,5,'Totenstern I',505,36929855,9232463,0,43,43,43,43,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(458,1,5,'Tamaluk I',520,29718758,7429689,99,0,0,0,0,0,98000,0,0,0,0,16,52,16,0,0,0,0,0,0,0,0,0),
(459,1,5,'Lorius I',535,42413520,10603380,0,0,0,114,0,0,0,0,5,0,0,17,0,0,0,0,0,0,0,0,0,0,0),
(460,1,5,'Ongbang I',550,45322650,11330662,0,0,0,0,0,0,69500,0,0,0,0,11,36,11,0,0,0,0,0,0,0,0,0),
(461,1,5,'Retosor I',565,36265797,9066449,99,0,0,0,139,0,0,34833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(462,1,5,'Yg I',580,51481731,12870432,0,0,0,0,0,97,0,0,0,0,0,12,38,12,0,0,0,0,0,0,0,0,0),
(463,1,5,'Zajus I',595,54734113,13683528,0,0,0,0,0,0,74000,0,0,0,0,12,39,12,0,0,0,0,0,0,0,0,0),
(464,1,5,'Etrifaktulon I',610,43585109,10896277,99,0,0,0,0,148,0,0,0,0,0,18,59,18,0,0,0,0,0,0,0,0,0),
(465,2,5,'Ybor II',625,61590496,15397624,0,0,0,0,0,103,0,0,0,0,0,12,40,12,0,0,0,0,0,0,0,0,0),
(466,2,5,'Wolfsring II',640,65196818,16299204,0,157,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(467,2,5,'Trinity II',655,51700748,12925187,99,0,0,0,0,0,117500,0,0,0,0,19,62,19,0,0,0,0,0,0,0,0,0),
(468,2,5,'Silpix II',670,72771403,18192850,0,0,0,0,0,136,0,0,0,0,6,0,0,20,0,0,0,0,0,0,0,0,0),
(469,2,5,'Scravatt II',685,76741890,19185472,0,0,111,0,0,0,125000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(470,2,5,'Siebenpfote II',700,60632723,15158930,99,207,0,0,0,0,0,0,0,33,0,0,99,0,0,0,0,0,0,0,0,0,0),
(471,2,5,'Yogloth II',715,85054702,21263675,0,0,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,-12,0,0,0,0,0),
(472,2,5,'Mugloth II',730,89399165,22349791,0,0,0,146,0,0,0,0,7,0,0,21,0,0,0,0,0,0,0,0,0,0,0),
(473,2,5,'Daemonium II',745,70412114,17603028,99,0,0,0,0,0,130500,0,0,0,0,21,69,21,0,0,0,0,0,0,0,0,0),
(474,2,5,'Hexxen II',760,98469447,24617361,0,0,120,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(475,2,5,'Respin II',775,103197325,25799331,0,0,0,0,153,0,0,0,0,0,0,0,0,0,0,-13,0,0,-38,0,0,0,0),
(476,2,5,'Jovishn II',790,81051160,20262790,99,0,0,228,0,0,0,0,11,0,0,34,0,0,0,0,0,0,0,0,0,0,0),
(477,2,5,'Nachtschwinge II',805,113043611,28260902,0,0,0,0,0,158,0,0,0,0,7,0,0,23,0,0,0,0,0,0,0,0,0),
(478,2,5,'Totenstern II',820,118164007,29541001,0,64,64,64,64,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(479,2,5,'Tamaluk II',835,92573346,23143336,99,0,0,0,0,0,143000,0,0,0,0,23,76,23,0,0,0,0,0,0,0,0,0),
(480,2,5,'Lorius II',850,128804190,32201047,0,0,0,165,0,0,0,0,8,0,0,24,0,0,0,0,0,0,0,0,0,0,0),
(481,2,5,'Ongbang II',865,134325901,33581475,0,0,0,0,0,0,100500,0,0,0,0,16,53,16,0,0,0,0,0,0,0,0,0),
(482,2,5,'Retosor II',880,104998466,26249616,99,0,0,0,199,0,0,49666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(483,2,5,'Yg II',895,145777289,36444322,0,0,0,0,0,137,0,0,0,0,0,17,54,17,0,0,0,0,0,0,0,0,0),
(484,2,5,'Zajus II',910,151708831,37927207,0,0,0,0,0,0,104500,0,0,0,0,17,55,17,0,0,0,0,0,0,0,0,0),
(485,2,5,'Etrifaktulon II',925,118345685,29586421,99,0,0,0,0,207,0,0,0,0,0,25,82,25,0,0,0,0,0,0,0,0,0),
(486,0,6,'Finga',2,164,41,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(487,0,6,'Rimdil',7,1631,407,0,0,0,0,0,3,0,0,0,0,0,0,0,0,-1,0,0,-1,0,0,0,0,0),
(488,0,6,'Eriall',14,7460,1865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-4,0,0,0,0),
(489,0,6,'Leith',16,7785,1946,10,0,0,0,0,8,0,0,0,0,0,1,3,1,0,0,0,0,0,0,0,0,0),
(490,0,6,'Sundu',20,16910,4227,0,0,9,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(491,0,6,'Isenhand',23,23400,5850,0,10,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(492,0,6,'Straahl',27,25870,6467,17,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(493,0,6,'Drevick',32,50752,12688,0,9,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(494,0,6,'Xanduu',38,76145,19036,0,16,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(495,0,6,'Stannly',43,77065,19266,26,0,17,0,0,0,19500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(496,0,6,'Gorgoth',49,139114,34778,0,0,13,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(497,0,6,'Kebneth',52,160212,40053,0,0,0,0,0,17,0,0,0,0,0,0,0,0,-1,0,0,-2,0,0,0,0,0),
(498,0,6,'Pradika',57,199314,49828,0,0,0,19,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),
(499,0,6,'Ojekuth',63,190503,47625,38,0,0,12,0,0,0,0,3,0,0,6,0,0,0,0,0,0,0,0,0,0,0),
(500,0,6,'Svinferin',68,303457,75864,0,17,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(501,0,6,'Nagash',75,383352,95838,0,0,0,23,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0),
(502,0,6,'Melekkesh',79,326464,81616,48,0,0,0,0,48,0,0,0,0,0,0,0,0,-2,0,0,-4,0,0,0,0,0),
(503,0,6,'Traquik',81,460660,115165,0,0,0,0,0,25,0,0,0,0,0,0,0,0,-1,0,0,-3,0,0,0,0,0),
(504,0,6,'Lorias',83,488288,122072,0,0,0,0,0,0,0,0,0,0,0,7,16,0,0,0,0,0,0,0,0,0,0),
(505,0,6,'Kursaak',86,399702,99925,52,0,0,0,0,0,23000,0,0,0,0,3,12,3,0,0,0,0,0,0,0,0,0),
(506,0,6,'Telfer',90,592481,148120,0,0,0,0,0,0,0,0,2,0,0,9,0,0,0,0,0,0,0,0,0,0,0),
(507,0,6,'Luxor',94,657362,164340,0,0,0,0,0,28,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0),
(508,0,6,'Laar',98,545885,136471,59,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,0,0,-11,0,0,0,0,0),
(509,0,6,'Garik',99,744055,186013,0,0,0,29,0,0,0,0,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0),
(510,0,6,'Gurrol',104,837082,209270,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(511,0,6,'Ferrol',107,673331,168332,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-15,0,0,0,0),
(512,0,6,'Cameo Ferrox',114,1042639,260659,0,13,13,13,13,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(513,0,6,'Nihil Ferrox',121,1202422,300605,0,13,0,0,0,0,0,0,0,10,0,0,21,0,0,0,0,0,0,0,0,0,0),
(514,0,6,'Aghast',127,1014144,253536,77,0,0,0,0,53,0,0,0,0,0,0,0,0,-3,0,0,-6,0,0,0,0,0),
(515,0,6,'Emon',130,1427668,356917,0,0,0,36,0,0,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0),
(516,0,6,'Wraithka',133,1507804,376951,0,37,0,0,0,0,0,0,0,6,0,0,17,0,0,0,0,0,0,0,0,0,0),
(518,0,6,'Ghulka',139,1675798,418949,0,0,0,0,0,0,23000,0,0,0,0,3,12,3,0,0,0,0,0,0,0,0,0),
(519,0,6,'Webxor',146,1885009,471252,0,0,0,0,0,0,0,0,0,0,0,12,0,0,-4,0,0,0,0,0,0,0,0),
(520,0,6,'Vo Webxor',153,1583454,395863,92,24,0,0,0,0,0,0,0,19,0,0,39,0,0,0,0,0,0,0,0,0,0),
(521,0,6,'Hissu',157,2243174,560793,0,0,0,0,0,42,0,0,0,0,0,0,0,0,-2,0,0,-5,0,0,0,0,0),
(522,0,6,'Ur Webxor',161,2382502,595625,0,17,17,17,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(523,0,6,'Turkur',164,1869721,467430,99,0,0,0,0,52,0,0,0,0,0,6,20,6,0,0,0,0,0,0,0,0,0),
(524,0,6,'Payne',167,2600743,650185,0,45,0,0,0,0,0,0,0,7,0,0,21,0,0,0,0,0,0,0,0,0,0),
(525,0,6,'Wo Payne',173,2830227,707556,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,-4,0,0,-12,0,0,0,0),
(526,0,6,'Ur Payne',179,2305574,576393,99,0,0,0,0,69,0,0,0,0,0,0,0,0,-3,0,0,-7,0,0,0,0,0),
(527,0,6,'Rubyhold',185,3323563,830890,0,0,0,0,0,48,0,0,0,0,0,0,0,0,-2,0,0,-5,0,0,0,0,0),
(528,0,6,'Firehold',192,3632900,908225,0,0,0,50,0,0,0,0,2,0,0,7,0,0,0,0,0,0,0,0,0,0,0),
(529,0,6,'Hellhold',200,3007192,751798,99,0,0,30,0,0,0,0,7,0,0,15,0,0,0,0,0,0,0,0,0,0,0),
(530,0,6,'Kwera',206,4300353,1075088,0,63,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(531,0,6,'Indril',216,4817758,1204439,0,0,66,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(532,0,6,'Akum',226,5369779,1342444,0,0,45,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(533,0,6,'Oril',231,4247115,1061778,99,0,68,0,0,0,76500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(534,0,6,'Jemon',236,5957050,1489262,0,23,23,23,23,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(535,0,6,'Ciril',246,6580185,1645046,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,-5,0,0,-15,0,0,0,0),
(536,0,6,'Asuk',253,5281694,1320423,99,0,0,0,73,0,0,18333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(537,0,6,'Liric',262,7653294,1913232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,0,0,-16,0,0,0,0,0),
(538,0,6,'Venlagard',267,8008163,2002040,0,0,0,0,0,65,0,0,0,0,0,0,0,0,-3,0,0,-7,0,0,0,0,0),
(539,0,6,'Trym',277,6563136,1640784,99,0,0,0,0,98,0,0,0,0,4,0,0,14,0,0,0,0,0,0,0,0,0),
(540,0,6,'Hyex',281,9052135,2263033,0,0,54,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(541,0,6,'Jorannon',291,9843892,2460973,0,0,0,70,0,0,0,0,3,0,0,10,0,0,0,0,0,0,0,0,0,0,0),
(542,0,6,'Khult',296,7694472,1923618,99,104,0,0,0,0,0,0,0,16,0,0,49,0,0,0,0,0,0,0,0,0,0),
(543,1,6,'Rimdil I',305,11017991,2754497,0,0,0,0,0,72,0,0,0,0,0,0,0,0,-3,0,0,-8,0,0,0,0,0),
(544,1,6,'Sundu I',320,12362425,3090606,0,0,90,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(545,1,6,'Leith I',335,10352692,2588173,99,0,0,0,0,92,0,0,0,0,0,11,36,11,0,0,0,0,0,0,0,0,0),
(546,1,6,'Isenhand I',350,15326420,3831605,0,97,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(547,1,6,'Gorgoth I',365,16949309,4237327,0,0,67,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(548,1,6,'Ojekuth I',380,14005954,3501488,99,0,0,50,0,0,0,0,12,0,0,25,0,0,0,0,0,0,0,0,0,0,0),
(549,1,6,'Svinferin I',395,20484870,5121217,0,71,0,0,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(550,1,6,'Lorias I',410,22400625,5600156,0,0,0,0,0,0,0,0,0,0,0,27,58,0,0,0,0,0,0,0,0,0,0),
(551,1,6,'Kursaak I',425,18318084,4579521,99,0,0,0,0,0,83000,0,0,0,0,13,44,13,0,0,0,0,0,0,0,0,0),
(552,1,6,'Luxor I',440,26535538,6633884,0,0,0,0,0,97,0,0,0,0,4,0,0,14,0,0,0,0,0,0,0,0,0),
(553,1,6,'Nihil Ferrox I',455,28757578,7189394,0,40,0,0,0,0,0,0,0,32,0,0,64,0,0,0,0,0,0,0,0,0,0),
(554,1,6,'Enfa I',470,23319287,5829821,99,0,0,0,0,151,0,0,0,0,7,0,0,22,0,0,0,0,0,0,0,0,0),
(555,1,6,'Ghulka I',485,33517819,8379454,0,0,0,0,0,0,63000,0,0,0,0,10,33,10,0,0,0,0,0,0,0,0,0),
(556,1,6,'Webxor I',500,36058734,9014683,0,0,0,0,0,0,0,0,0,0,0,32,0,0,-9,0,0,0,0,0,0,0,0),
(557,1,6,'Vo Webxor I',515,29037897,7259474,99,64,0,0,0,0,0,0,0,51,0,0,103,0,0,0,0,0,0,0,0,0,0),
(558,1,6,'Firehold I',530,41468751,10367187,0,0,0,113,0,0,0,0,5,0,0,16,0,0,0,0,0,0,0,0,0,0,0),
(559,1,6,'Akum I',545,44340424,11085106,0,0,92,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(560,1,6,'Turkur I',560,35500662,8875165,99,0,0,0,0,138,0,0,0,0,0,17,55,17,0,0,0,0,0,0,0,0,0),
(561,1,6,'Jemon I',575,50423359,12605839,0,48,48,48,48,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(562,1,6,'Jorannon I',590,53637065,13409266,0,0,0,123,0,0,0,0,6,0,0,18,0,0,0,0,0,0,0,0,0,0,0),
(563,1,6,'Khult I',605,42732958,10683239,99,184,0,0,0,0,0,0,0,29,0,0,88,0,0,0,0,0,0,0,0,0,0),
(564,2,6,'Rimdil II',620,60414920,15103730,0,0,0,0,0,128,0,0,0,0,0,0,0,0,-6,0,0,-13,0,0,0,0,0),
(565,2,6,'Sundu II',635,63981403,15995350,0,0,157,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(566,2,6,'Leith II',650,50758962,12689740,99,0,0,0,0,156,0,0,0,0,0,19,62,19,0,0,0,0,0,0,0,0,0),
(567,2,6,'Isenhand II',665,71475783,17868795,0,162,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(568,2,6,'Gorgoth II',680,75404716,18851179,0,0,110,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(569,2,6,'Ojekuth II',695,59601793,14900448,99,0,0,82,0,0,0,0,20,0,0,41,0,0,0,0,0,0,0,0,0,0,0),
(570,2,6,'Svinferin II',710,83634539,20908634,0,114,0,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(571,2,6,'Lorias II',725,87936976,21984244,0,0,0,0,0,0,0,0,0,0,0,43,92,0,0,0,0,0,0,0,0,0,0),
(572,2,6,'Kursaak II',740,69283630,17320907,99,0,0,0,0,0,130000,0,0,0,0,21,68,21,0,0,0,0,0,0,0,0,0),
(573,2,6,'Luxor II',755,96922167,24230541,0,0,0,0,0,150,0,0,0,0,7,0,0,22,0,0,0,0,0,0,0,0,0),
(574,2,6,'Nihil Ferrox II',770,101606988,25401747,0,61,0,0,0,0,0,0,0,48,0,0,97,0,0,0,0,0,0,0,0,0,0),
(575,2,6,'Enfa II',785,79825800,19956450,99,0,0,0,0,227,0,0,0,0,11,0,0,34,0,0,0,0,0,0,0,0,0),
(576,2,6,'Ghulka II',800,111366157,27841539,0,0,0,0,0,0,94500,0,0,0,0,15,50,15,0,0,0,0,0,0,0,0,0),
(577,2,6,'Webxor II',815,116442500,29110625,0,0,0,0,0,0,0,0,0,0,0,47,0,0,-13,0,0,0,0,0,0,0,0),
(578,2,6,'Vo Vebxor II',830,91248870,22812217,99,95,0,0,0,0,0,0,0,76,0,0,152,0,0,0,0,0,0,0,0,0,0),
(579,2,6,'Firehold II',845,126993608,31748402,0,0,0,164,0,0,0,0,8,0,0,24,0,0,0,0,0,0,0,0,0,0,0),
(580,2,6,'Akum II',860,132470302,33117575,0,0,133,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(581,2,6,'Turkur II',875,103572707,25893176,99,0,0,0,0,198,0,0,0,0,0,24,79,24,0,0,0,0,0,0,0,0,0),
(582,2,6,'Jemon II',890,143830719,35957679,0,68,68,68,68,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(583,2,6,'Jorannon II',905,149716311,37429077,0,0,0,173,0,0,0,0,8,0,0,26,0,0,0,0,0,0,0,0,0,0,0),
(584,2,6,'Khult II',920,116816542,29204135,99,258,0,0,0,0,0,0,0,41,0,0,123,0,0,0,0,0,0,0,0,0,0),
(585,0,7,'Lithe',4,535,133,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(586,0,7,'Hyarspex',10,3515,878,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(587,0,7,'Jagor',15,8727,2181,0,0,7,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(588,0,7,'Steltz',17,8929,2232,11,0,0,0,10,0,0,0,0,0,0,0,0,0,0,-1,0,0,-3,0,0,0,0),
(589,0,7,'Selulia',21,18936,4734,0,0,6,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(590,0,7,'Memos',24,25843,6460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-4,0,0,0,0),
(591,0,7,'Impeste',28,28157,7039,17,12,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(592,0,7,'Chronox',34,58551,14637,0,0,0,0,10,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(593,0,7,'Nofor',40,85971,21492,0,0,11,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(594,0,7,'Huian',48,99949,24987,29,0,0,0,24,0,0,0,0,0,0,0,0,0,0,-2,0,0,-6,0,0,0,0),
(595,0,7,'Kryos',52,160212,40053,0,14,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(596,0,7,'Furios',59,216366,54091,0,23,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(597,0,7,'Helvet',65,205196,51299,39,12,12,12,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(598,0,7,'Korgan',69,314206,78551,0,0,17,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(599,0,7,'Borkaan',72,347775,86943,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(600,0,7,'Asyx',77,307114,76778,47,0,0,35,0,0,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0),
(601,0,7,'Arkaan',78,420970,105242,0,0,28,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(602,0,7,'Vonodol',81,460660,115165,0,0,0,0,0,20,0,0,0,0,0,2,8,2,0,0,0,0,0,0,0,0,0),
(603,0,7,'Onzu',84,377892,94473,51,0,0,0,0,38,0,0,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0),
(604,0,7,'Shiwo',90,592481,148120,0,32,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(605,0,7,'Renning',94,657362,164340,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(606,0,7,'Hazzad',97,532681,133170,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-14,0,0,0,0),
(607,0,7,'Swerfoo',105,856458,214114,0,0,24,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(608,0,7,'Krakarot',113,1020892,255223,0,26,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(609,0,7,'Plagos',120,1178780,294695,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,-3,0,0,-9,0,0,0,0),
(610,0,7,'Ginger',127,1014144,253536,77,0,0,0,0,0,31500,0,0,0,0,5,16,5,0,0,0,0,0,0,0,0,0),
(611,0,7,'Brodak',134,1535085,383771,0,45,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(612,0,7,'Palta',136,1194580,298645,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-7,0,0,-32,0,0,0,0),
(613,0,7,'Lahemia',140,1704808,426202,0,0,0,0,31,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(614,0,7,'Mortiis',146,1415582,353895,88,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(615,0,7,'Ergubas',149,1979094,494773,0,0,32,0,0,0,36500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(616,0,7,'Karpadian',152,2075864,518966,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,-4,0,0,-10,0,0,0,0),
(617,0,7,'Run-Djur',155,1633444,408361,93,0,49,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(618,0,7,'Devastos',159,2312226,578056,0,0,51,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(619,0,7,'Quarzian',163,2454010,613502,0,0,52,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(620,0,7,'Stridaar',167,1952645,488161,99,0,52,0,0,0,59000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(621,0,7,'Umbraal',173,2830227,707556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-15,0,0,0,0),
(622,0,7,'Penumbraal',180,3112383,778095,0,0,38,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(623,0,7,'Gorefest',185,2494985,623746,99,28,28,28,28,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(624,0,7,'Watari',191,3587723,896930,0,0,0,50,0,0,0,0,2,0,0,7,0,0,0,0,0,0,0,0,0,0,0),
(625,0,7,'Devils foot',197,3863748,965937,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,-5,0,0,-13,0,0,0,0),
(626,0,7,'Angel slippers',202,2079729,769932,99,0,0,0,0,0,45500,0,0,0,0,7,24,7,0,0,0,0,0,0,0,0,0),
(627,0,7,'Beinor',208,4401095,1100273,0,0,0,53,0,0,0,0,2,0,0,8,0,0,0,0,0,0,0,0,0,0,0),
(628,0,7,'Borgo',218,4925375,1231343,0,0,0,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(629,0,7,'Olufetas',228,5484393,1371098,0,0,0,0,46,0,0,11500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(630,0,7,'Gawan',231,5658969,1414742,0,0,0,0,58,0,0,0,0,0,0,0,0,0,0,-5,0,0,-14,0,0,0,0),
(631,0,7,'Altanach',234,4380484,1095121,99,0,68,0,0,0,77000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(632,0,7,'Felborr',242,6326588,1581647,0,0,0,0,0,48,0,0,0,0,0,6,19,6,0,0,0,0,0,0,0,0,0),
(633,0,7,'Forgos',249,6774209,1693552,0,0,0,61,0,0,0,0,3,0,0,9,0,0,0,0,0,0,0,0,0,0,0),
(634,0,7,'Emenophobos',256,5433039,1358259,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-19,-30,0,0,0,0),
(635,0,7,'Relva',264,7794115,1948528,0,0,0,0,0,0,0,0,0,0,0,19,40,0,0,0,0,0,0,0,0,0,0),
(636,0,7,'Zebrolon',269,8152744,2038186,0,0,0,0,0,0,39000,0,0,0,0,6,20,6,0,0,0,0,0,0,0,0,0),
(637,0,7,'Mykdrak',276,8670713,2167678,0,0,53,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(638,0,7,'Lindir',285,7026707,1756676,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-13,0,0,-57,0,0,0,0),
(639,0,7,'Burumedul',290,9762970,2440742,0,27,27,27,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(640,0,7,'Anjalan',295,10171485,2542871,0,0,0,0,0,70,0,0,0,0,0,0,0,0,-3,0,0,-8,0,0,0,0,0),
(641,0,7,'Rauka',298,7819696,1954924,99,0,0,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(642,1,7,'Selulia I',310,11456114,2864028,0,0,58,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(643,1,7,'Chronox I',325,12830740,3207685,0,0,0,0,61,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(644,1,7,'Huian I',340,10727061,2681765,99,0,0,0,116,0,0,0,0,0,0,0,0,0,0,-10,0,0,-28,0,0,0,0),
(645,1,7,'Furios I',355,15856806,3964201,0,98,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(646,1,7,'Korgan I',370,17511544,4377886,0,0,68,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(647,1,7,'Asyx I',385,14451973,3612993,99,0,0,128,0,0,0,0,6,0,0,19,0,0,0,0,0,0,0,0,0,0,0),
(648,1,7,'Vonodol I',400,21112363,5278090,0,0,0,0,0,72,0,0,0,0,0,9,28,9,0,0,0,0,0,0,0,0,0),
(649,1,7,'Shiwo I',415,23061504,5765376,0,111,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(650,1,7,'Ginger I',430,18839212,4709803,99,0,0,0,0,0,84000,0,0,0,0,14,44,14,0,0,0,0,0,0,0,0,0),
(651,1,7,'Renning I',445,27264645,6816161,0,0,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(652,1,7,'Krakarot I',460,29521508,7380377,0,80,0,0,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(653,1,7,'Palta I',475,23918758,5979689,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-19,0,0,-86,0,0,0,0),
(654,1,7,'Ergubas I',490,34352764,8588191,0,0,84,0,0,0,95000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(655,1,7,'Karpadian I',505,36929855,9232463,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,-9,0,0,-27,0,0,0,0),
(656,1,7,'Run-Djur I',520,29718758,7429689,99,0,130,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(657,1,7,'Borgo I',535,42413520,10603380,0,0,0,228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(658,1,7,'Olufetas I',550,45322650,11330662,0,0,0,0,93,0,0,23166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(659,1,7,'Stridaar I',565,36265797,9066449,99,0,139,0,0,0,157000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(660,1,7,'Gawan I',580,51481731,12870435,0,0,0,0,121,0,0,0,0,0,0,0,0,0,0,-10,0,0,-30,0,0,0,0),
(661,1,7,'Mykdrak I',595,54731113,13683528,0,0,99,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(662,1,7,'Engelstreter I',610,43585109,10896277,99,0,0,0,0,0,111500,0,0,0,0,18,18,59,0,0,0,0,0,0,0,0,0),
(663,2,7,'Selulia II',625,61590496,15397624,0,0,103,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(664,2,7,'Chronox II',640,65196818,16299204,0,0,0,0,105,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(665,2,7,'Huian II',655,51700748,12925187,99,0,0,0,196,0,0,0,0,0,0,0,0,0,0,-16,0,0,-48,0,0,0,0),
(666,2,7,'Furios II',670,72771403,18192850,0,163,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(667,2,7,'Korgan II',685,76741890,19185472,0,0,111,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(668,2,7,'Asyx II',700,60635723,15158930,99,0,0,207,0,0,0,0,10,0,0,31,0,0,0,0,0,0,0,0,0,0,0),
(669,2,7,'Vonodol II',715,85054702,21263675,0,0,0,0,0,115,0,0,0,0,0,14,45,14,0,0,0,0,0,0,0,0,0),
(670,2,7,'Shiwo II',730,89399165,22349791,0,175,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(671,2,7,'Ginger II',745,70412114,17603028,99,0,0,0,0,0,130500,0,0,0,0,21,69,21,0,0,0,0,0,0,0,0,0),
(672,2,7,'Renning II',760,98469447,24617361,0,0,0,302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(673,2,7,'Krakarot II',775,103197325,25799331,0,122,0,0,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(674,2,7,'Palta II',790,81051160,20262790,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-28,0,0,-128,0,0,0,0),
(675,2,7,'Ergubas II',805,113043611,28260902,0,0,126,0,0,0,142000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(676,2,7,'Karpadian II',820,118164007,29541001,0,0,0,0,160,0,0,0,0,0,0,0,0,0,0,-13,0,0,-39,0,0,0,0),
(677,2,7,'Run-Djur II',835,92573346,23143336,99,0,191,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(678,2,7,'Borgo II',850,128804190,32201047,0,0,0,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(679,2,7,'Olufetas II',865,134325901,33581475,0,0,0,0,134,0,0,33500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(680,2,7,'Stridaay II',880,104998466,26249616,99,0,199,0,0,0,224000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(681,2,7,'Gawan II',895,145777289,36444322,0,0,0,0,172,0,0,0,0,0,0,0,0,0,0,-14,0,0,-42,0,0,0,0),
(682,2,7,'Mykdrak II',910,151708831,37927207,0,0,139,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(683,2,7,'Engelstreter II',925,118345685,29586421,99,0,0,0,0,0,155500,0,0,0,0,25,82,25,0,0,0,0,0,0,0,0,0),
(684,0,8,'Nifel',5,822,205,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(685,0,8,'Angfors',10,3515,878,0,0,3,0,0,0,4000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(686,0,8,'Rumpel',14,5770,1442,9,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,-3,0,0,0,0,0),
(687,0,8,'Aegis',20,16910,4227,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(688,0,8,'Seaphim',23,23400,5850,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,-4,0,0,0,0),
(689,0,8,'Cherubim',27,25870,6467,17,0,0,0,0,15,0,0,0,0,0,0,0,0,-1,0,0,-2,0,0,0,0,0),
(690,0,8,'Xorn',33,54570,13642,0,0,14,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(691,0,8,'Ghunkhar',38,76145,19036,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,-2,0,0,-4,0,0,0,0),
(692,0,8,'Thimosy',43,77065,19266,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,-8,0,0,0,0),
(693,0,8,'Salam',47,126007,31501,0,19,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(694,0,8,'Darnam',50,145953,36488,0,0,13,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(695,0,8,'Kokosi',54,132116,33029,33,0,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(696,0,8,'Lamesch',59,216366,54091,0,0,0,0,0,19,0,0,0,0,0,0,0,0,-1,0,0,-2,0,0,0,0,0),
(697,0,8,'Anyis',62,243493,60873,0,0,0,0,0,0,0,0,0,0,0,6,0,0,-2,0,0,0,0,0,0,0,0),
(698,0,8,'Nefefetu',65,205196,51299,39,0,0,0,31,0,0,0,0,0,0,0,0,0,0,-3,0,0,-8,0,0,0,0),
(699,0,8,'Crynos',68,303457,75864,0,0,25,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(700,0,8,'Diablis',73,359410,89852,0,18,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(701,0,8,'Hybrus',77,307114,76778,47,42,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(702,0,8,'Qntak',81,460660,115165,0,0,30,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(703,0,8,'Qnteer',87,546386,136596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-6,-9,0,0,0,0),
(704,0,8,'Thanos',91,457387,114346,55,0,32,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(705,0,8,'Hexor',95,674200,168550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2,0,0,-7,0,0,0,0,0),
(706,0,8,'Belial',98,726214,181553,0,0,0,0,0,29,0,0,0,0,0,0,0,0,-2,0,0,-3,0,0,0,0,0),
(707,0,8,'Om-Rak',100,572862,143215,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,-14,0,0,0,0),
(708,0,8,'Narfang',105,856458,214114,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(709,0,8,'Trollthom',111,978200,244550,0,0,25,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(710,0,8,'Curanix',118,850711,212677,71,19,19,19,19,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(711,0,8,'Demester',125,1299747,324936,0,0,0,0,28,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(712,0,8,'Reflec',128,1375658,343914,0,0,0,0,0,0,0,0,0,0,0,10,0,0,-3,0,0,0,0,0,0,0,0),
(713,0,8,'Sirguna',132,1112256,278064,80,0,0,0,0,54,0,0,0,0,2,0,0,8,0,0,0,0,0,0,0,0,0),
(714,0,8,'Outrichi',139,1675798,418949,0,0,0,0,0,38,0,0,0,0,0,0,0,0,-2,0,0,-4,0,0,0,0,0),
(715,0,8,'Jameter',145,1854240,463560,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(716,0,8,'Xyanthos',154,1608335,402083,93,0,0,0,0,61,0,0,0,0,0,0,0,0,-3,0,0,-7,0,0,0,0,0),
(717,0,8,'Bellos',157,2243174,560793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-3,0,0,-10,0,0,0,0,0),
(718,0,8,'Lotus',160,2347210,586802,0,34,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(719,0,8,'Psydrolon',164,1869721,467430,99,0,0,0,0,52,0,0,0,0,0,6,20,6,0,0,0,0,0,0,0,0,0),
(720,0,8,'Benewraith',170,2714070,678517,0,0,0,0,0,45,0,0,0,0,0,0,0,0,-2,0,0,-5,0,0,0,0,0),
(721,0,8,'Butu',174,2869579,717394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-10,-16,0,0,0,0),
(722,0,8,'Yec',179,2305574,576393,99,27,27,27,27,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(723,0,8,'Elfdan',187,3410307,852576,0,0,39,0,0,0,44000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(724,0,8,'Halgar',194,3724244,931061,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,-5,0,0,-13,0,0,0,0),
(725,0,8,'Trutz',201,3043334,760833,99,0,0,0,0,0,0,0,0,0,0,0,0,0,-5,0,0,-18,0,0,0,0,0),
(726,0,8,'Wrymman',205,4250491,1062622,0,0,63,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(727,0,8,'Bork',213,4658931,1164732,0,21,21,21,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(728,0,8,'Cha-Thul',219,3737513,934378,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-17,-27,0,0,0,0),
(729,0,8,'Rumil',224,5256575,1314143,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,-5,0,0,-14,0,0,0,0),
(730,0,8,'Elephas',229,5542231,1385557,0,0,0,0,0,46,0,0,0,0,0,5,18,5,0,0,0,0,0,0,0,0,0),
(731,0,8,'Zothul',237,6017739,1504434,0,0,0,0,0,59,0,0,0,0,0,0,0,0,-3,0,0,-6,0,0,0,0,0),
(732,0,8,'Effenil',244,4842545,1210636,99,0,0,0,0,0,0,0,0,0,0,26,56,0,0,0,0,0,0,0,0,0,0),
(733,0,8,'Grolgor',250,6839616,1709904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-4,0,0,-15,0,0,0,0,0),
(734,0,8,'Bergomil',258,7376133,1844033,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,-6,0,0,-16,0,0,0,0),
(735,0,8,'Sammara',267,6009460,1502365,99,0,0,0,0,96,0,0,0,0,0,0,0,0,-4,0,0,-10,0,0,0,0,0),
(736,0,8,'Paranor',276,8670713,2167678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-14,-22,0,0,0,0),
(737,0,8,'Ayka',288,9602294,2400573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-9,0,0,-40,0,0,0,0),
(738,0,8,'Herkuleon',298,7819696,1954924,99,0,0,0,0,104,0,0,0,0,0,0,0,0,-5,0,0,-11,0,0,0,0,0),
(739,1,8,'Angfors I',310,11456114,2864028,0,0,58,0,0,0,66000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(740,1,8,'Aegis I',325,12830740,3207685,0,0,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(741,1,8,'Cherubim I',340,10727061,2681765,99,0,0,0,0,116,0,0,0,0,0,0,0,0,-5,0,0,-12,0,0,0,0,0),
(742,1,8,'Xorn I',355,15856806,3964201,0,0,98,0,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(743,1,8,'Darnam I',370,17511544,4377886,0,0,68,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(744,1,8,'Kokosi I',385,14451973,3612993,99,0,257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(745,1,8,'Diablis I',400,21112363,5278090,0,72,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(746,1,8,'Qntak I',415,23061504,5765376,0,0,111,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(747,1,8,'Hybrus I',430,18839212,4709803,99,168,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(748,1,8,'Belial I',445,27264645,6816161,0,0,0,0,0,98,0,0,0,0,0,0,0,0,-4,0,0,-10,0,0,0,0,0),
(749,1,8,'Trollthom I',460,29521508,7380377,0,0,80,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(750,1,8,'Sirguna I',475,23918758,5979689,99,0,0,0,0,152,0,0,0,0,7,0,0,22,0,0,0,0,0,0,0,0,0),
(751,1,8,'Demester I',490,34352764,8588191,0,0,0,0,84,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(752,1,8,'Jameter I',505,36929855,9232463,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(753,1,8,'Xyanthos I',520,29718758,7429689,99,0,0,0,0,163,0,0,0,0,0,0,0,0,-7,0,0,-17,0,0,0,0,0),
(754,1,8,'Lotus I',353,42413520,10603380,0,91,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(755,1,8,'Elfdan I',550,45322650,11330662,0,0,93,0,0,0,104500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(756,1,8,'Psydrolon I',565,36265797,9066449,99,0,0,0,0,136,0,0,0,0,0,17,55,17,0,0,0,0,0,0,0,0,0),
(757,1,8,'Wrymman I',580,51481731,12870432,0,0,145,0,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(758,1,8,'Elephas I',595,54734113,13683528,0,0,0,0,0,99,0,0,0,0,0,12,39,12,0,0,0,0,0,0,0,0,0),
(759,1,8,'Herkuleon I',610,43585109,10896277,99,0,0,0,0,186,0,0,0,0,0,0,0,0,-8,0,0,-19,0,0,0,0,0),
(760,2,8,'Angfors II',625,61590496,15397624,0,0,103,0,0,0,116000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(761,2,8,'Aegis II',640,65196818,16299204,0,0,263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(762,2,8,'Cherubim II',655,51700748,12925187,99,0,0,0,0,196,0,0,0,0,0,0,0,0,-8,0,0,-20,0,0,0,0,0),
(763,2,8,'Xorn II',670,72771403,18192850,0,0,163,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(764,2,8,'Darnam II',685,76741890,19185472,0,0,111,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(765,2,8,'Kokosi II',700,60635723,15158930,99,0,415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(766,2,8,'Diablis II',715,85054702,21263675,0,115,0,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(767,2,8,'Qntak II',730,89399165,22349791,0,0,175,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(768,2,8,'Hybrus II',745,70412114,17603028,99,261,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(769,2,8,'Belial II',760,98469447,24617361,0,0,0,0,0,151,0,0,0,0,0,0,0,0,-7,0,0,-16,0,0,0,0,0),
(770,2,8,'Trollthom II',775,103197325,25799331,0,0,122,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(771,2,8,'Sirguna II',790,81051160,20262790,99,0,0,0,0,228,0,0,0,0,11,0,0,34,0,0,0,0,0,0,0,0,0),
(772,2,8,'Demester II',805,113043611,28260902,0,0,0,0,126,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(773,2,8,'Jameter II',820,118164007,29541001,0,0,321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(774,2,8,'Xyanthos II',835,92573346,23143336,99,0,0,0,0,239,0,0,0,0,0,0,0,0,-10,0,0,-24,0,0,0,0,0),
(775,2,8,'Lotus II',850,128804190,32201047,0,132,0,0,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(776,2,8,'Elfdan II',865,134325901,33581475,0,0,134,0,0,0,150500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(777,2,8,'Psydrolon II',880,104998466,26249616,99,0,0,0,0,199,0,0,0,0,0,24,79,24,0,0,0,0,0,0,0,0,0),
(778,2,8,'Wrymman II',895,145777289,36444322,0,0,206,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(779,2,8,'Elephas II',910,151708831,37927207,0,0,0,0,0,139,0,0,0,0,0,17,55,17,0,0,0,0,0,0,0,0,0),
(780,2,8,'Herkuleon II',925,118345685,29586421,99,0,0,0,0,259,0,0,0,0,0,0,0,0,-11,0,0,-26,0,0,0,0,0),
(781,0,1,'Skagerak',1030,196524344,49131086,0,0,231,0,0,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(782,0,1,'Vigor',1130,217611426,54402856,0,166,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(783,0,1,'Aiedail',1230,238886182,59721545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-14,0,0,-52,0,0,0,0,0),
(784,0,1,'Tilmarik',1330,260334792,65083698,0,94,94,94,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(785,0,1,'Viidast',1430,281945423,70486355,0,250,0,0,0,0,0,0,0,40,0,0,120,0,0,0,0,0,0,0,0,0,0),
(786,0,1,'Hvass',1530,303707825,75926956,0,0,0,0,0,0,0,0,0,63,0,0,296,0,0,0,0,0,0,0,0,0,0),
(787,0,1,'Sandel',1630,325613027,81403256,0,0,0,0,0,0,0,0,0,0,0,83,177,0,0,0,0,0,0,0,0,0,0),
(788,0,1,'Mentis',1730,347653111,86913277,0,0,0,0,0,233,0,0,0,0,0,29,92,29,0,0,0,0,0,0,0,0,0),
(789,1,1,'Skagerak I',1830,369821032,92455258,0,0,366,0,0,244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(790,1,1,'Vigor I',1930,392110477,98027619,0,254,0,0,382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(791,1,1,'Aiedail I',2030,414515762,103628940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-20,0,0,-78,0,0,0,0,0),
(792,1,1,'Tilmarik I',2130,437031731,109257932,0,137,137,137,137,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(793,1,1,'Viidast I',2230,459653696,114913424,0,357,0,0,0,0,0,0,0,57,0,0,171,0,0,0,0,0,0,0,0,0,0),
(794,1,1,'Hvass I',2330,482377364,120594341,0,0,0,0,0,0,0,0,0,88,0,0,414,0,0,0,0,0,0,0,0,0,0),
(795,1,1,'Sandel I',2430,505198797,126299699,0,0,0,0,0,0,0,0,0,0,0,114,244,0,0,0,0,0,0,0,0,0,0),
(796,1,1,'Mentis I',2535,529262553,132315638,0,0,0,0,0,317,0,0,0,0,0,39,126,39,0,0,0,0,0,0,0,0,0),
(797,2,1,'Skagerak II',2660,558039842,139509960,0,0,494,0,0,329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(798,2,1,'Vigor II',2785,586952729,146738182,0,341,0,0,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(799,2,1,'Aiedail II',2910,615995720,153998930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-27,0,0,-104,0,0,0,0,0),
(800,2,1,'Tilmarik II',3035,645163771,161290942,0,183,183,183,183,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(801,2,1,'Viidast II',3160,674452234,168613058,0,472,0,0,0,0,0,0,0,75,0,0,226,0,0,0,0,0,0,0,0,0,0),
(802,2,1,'Hvass II',3285,703856812,175964203,0,0,0,0,0,0,0,0,0,116,0,0,545,0,0,0,0,0,0,0,0,0,0),
(803,2,1,'Sandel II',3410,733373518,183343379,0,0,0,0,0,0,0,0,0,0,0,150,321,0,0,0,0,0,0,0,0,0,0),
(804,2,1,'Mentis II',3535,762998645,190749661,0,0,0,0,0,413,0,0,0,0,0,51,164,51,0,0,0,0,0,0,0,0,0),
(805,3,1,'Skagerak III',3660,792728735,198182183,0,0,637,0,0,425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(806,3,1,'Vigor III',3785,822560554,205640138,0,436,0,0,655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(807,3,1,'Aiedail III',3910,852491073,213122768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-34,0,0,-131,0,0,0,0,0),
(808,3,1,'Tilmarik III',4040,883720457,220930114,0,230,230,230,230,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(809,3,1,'Viidast III',4190,919879270,229969817,0,592,0,0,0,0,0,0,0,94,0,0,284,0,0,0,0,0,0,0,0,0,0),
(810,3,1,'Hvass III',4340,956167789,239041947,0,0,0,0,0,0,0,0,0,146,0,0,682,0,0,0,0,0,0,0,0,0,0),
(811,3,1,'Sandel III',4490,992581970,248145492,0,0,0,0,0,0,0,0,0,0,0,187,400,0,0,0,0,0,0,0,0,0,0),
(812,3,1,'Mentis III',4640,1029118026,257279506,0,0,0,0,0,514,0,0,0,0,0,64,205,64,0,0,0,0,0,0,0,0,0),
(813,0,1,'Skagerak',1030,147406171,36851542,99,0,339,0,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(814,0,1,'Vigor',1130,163222869,40805717,99,243,0,0,365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(815,0,1,'Aiedail',1230,179180334,44795083,99,0,0,0,0,0,0,0,0,0,0,0,0,0,-20,0,0,-77,0,0,0,0,0),
(816,0,1,'Tilmarik',1330,195268200,48817050,99,138,138,138,138,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(817,0,1,'Viidast',1430,211477593,52869398,99,367,0,0,0,0,0,0,0,58,0,0,176,0,0,0,0,0,0,0,0,0,0),
(818,0,1,'Hvass',1530,227800825,56950206,99,0,0,0,0,0,0,0,0,92,0,0,434,0,0,0,0,0,0,0,0,0,0),
(819,0,1,'Sandel',1630,244231166,61057791,99,0,0,0,0,0,0,0,0,0,0,122,260,0,0,0,0,0,0,0,0,0,0),
(820,0,1,'Mentis',1730,260762677,65190669,99,0,0,0,0,342,0,0,0,0,0,42,136,42,0,0,0,0,0,0,0,0,0),
(821,1,1,'Skagerak I',1830,277390074,69347518,99,0,537,0,0,358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(822,1,1,'Vigor I',1930,294108623,73527155,99,374,0,0,561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(823,1,1,'Aiedail I',2030,310914058,77728514,99,0,0,0,0,0,0,0,0,0,0,0,0,0,-30,0,0,-114,0,0,0,0,0),
(824,1,1,'Tilmarik I',2130,327802515,81950628,99,202,202,202,202,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),
(825,1,1,'Viidast I',2230,344770475,86192618,99,524,0,0,0,0,0,0,0,83,0,0,251,0,0,0,0,0,0,0,0,0,0),
(826,1,1,'Hvass I',2330,361814719,90453679,99,0,0,0,0,0,0,0,0,130,0,0,608,0,0,0,0,0,0,0,0,0,0),