-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcharacters.sql
More file actions
2476 lines (2458 loc) · 116 KB
/
characters.sql
File metadata and controls
2476 lines (2458 loc) · 116 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Use world;
Set @NpcName = "Pick a spec",
@NpcSubname = "",
@NpcEntry = 55002,
@NpcDisplayID = 31833,
@NpcLevel = 80;
INSERT INTO `creature_template` (`entry`, `difficulty_entry_1`, `difficulty_entry_2`, `difficulty_entry_3`, `KillCredit1`, `KillCredit2`, `modelid1`, `modelid2`, `modelid3`, `modelid4`, `name`, `subname`, `IconName`, `gossip_menu_id`, `minlevel`, `maxlevel`, `exp`, `faction`, `npcflag`, `speed_walk`, `speed_run`, `scale`, `rank`, `dmgschool`, `BaseAttackTime`, `RangeAttackTime`, `BaseVariance`, `RangeVariance`, `unit_class`, `unit_flags`, `unit_flags2`, `dynamicflags`, `family`, `type`, `type_flags`, `lootid`, `pickpocketloot`, `skinloot`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `spell1`, `spell2`, `spell3`, `spell4`, `spell5`, `spell6`, `spell7`, `spell8`, `PetSpellDataId`, `VehicleId`, `mingold`, `maxgold`, `AIName`, `MovementType`, `HoverHeight`, `HealthModifier`, `ManaModifier`, `ArmorModifier`, `DamageModifier`, `ExperienceModifier`, `RacialLeader`, `movementId`, `RegenHealth`, `mechanic_immune_mask`, `spell_school_immune_mask`, `flags_extra`, `ScriptName`, `VerifiedBuild`) VALUES
(@NpcEntry, 0, 0, 0, 0, 0, @NpcDisplayID, 0, 0, 0, @NpcName, @NpcSubname, '', 0, @NpcLevel, @NpcLevel, 0, 35, 1, 1, 1.14286, 1, 1, 0, 2000, 2000, 1, 1, 2, 0, 2048, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 1, 50, 50, 1, 1, 1, 0, 0, 1, 0, 0, 0, 'TemplateNPC', 12340);
INSERT INTO `npc_text` (`ID`, `text0_0`, `text0_1`) VALUES
(55002, 'Here you can select a character template which will Gear, Gem, Spec, and finish glyphs for your toon instantly.\r\n\r\nSelect your spec:', 'Here you can select a character template which will Gear, Gem, Spec, and finish glyphs for your toon instantly.\r\n\r\nSelect your spec:');
INSERT INTO `command` (`name`, `permission`, `help`) VALUES
('templatenpc reload', 607, 'Syntax: .templatenpc reload\nType .templatenpc reload to reload TemplateNPC custom script.');
Use characters;
CREATE TABLE IF NOT EXISTS `template_npc_alliance` (
`playerClass` varchar(50) NOT NULL,
`playerSpec` varchar(50) NOT NULL,
`pos` int(10) unsigned NOT NULL DEFAULT '0',
`itemEntry` int(10) unsigned NOT NULL DEFAULT '0',
`enchant` int(10) unsigned NOT NULL DEFAULT '0',
`socket1` int(10) unsigned NOT NULL DEFAULT '0',
`socket2` int(10) unsigned NOT NULL DEFAULT '0',
`socket3` int(10) unsigned NOT NULL DEFAULT '0',
`bonusEnchant` int(10) unsigned NOT NULL DEFAULT '0',
`prismaticEnchant` int(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Templates';
/*!40000 ALTER TABLE `template_npc_alliance` DISABLE KEYS */;
INSERT INTO `template_npc_alliance` (`playerClass`, `playerSpec`, `pos`, `itemEntry`, `enchant`, `socket1`, `socket2`, `socket3`, `bonusEnchant`, `prismaticEnchant`) VALUES
('Rogue', 'Assassination', 0, 41672, 3795, 3628, 3521, 0, 3314, 0),
('Rogue', 'Assassination', 1, 42042, 0, 0, 0, 0, 0, 0),
('Rogue', 'Assassination', 2, 41683, 3793, 3521, 0, 0, 0, 0),
('Rogue', 'Assassination', 4, 41650, 3245, 3521, 3566, 0, 3600, 0),
('Rogue', 'Assassination', 5, 41833, 0, 3521, 3521, 0, 0, 3729),
('Rogue', 'Assassination', 7, 41837, 1597, 3521, 0, 0, 0, 0),
('Rogue', 'Assassination', 6, 41655, 3823, 3521, 3879, 0, 3355, 0),
('Rogue', 'Assassination', 8, 41841, 3845, 0, 0, 0, 0, 0),
('Rogue', 'Assassination', 9, 41767, 1603, 3521, 0, 0, 0, 0),
('Rogue', 'Assassination', 10, 42117, 0, 0, 0, 0, 0, 0),
('Rogue', 'Assassination', 11, 42119, 0, 0, 0, 0, 0, 0),
('Rogue', 'Assassination', 12, 42136, 0, 0, 0, 0, 0, 0),
('Rogue', 'Assassination', 13, 51377, 0, 0, 0, 0, 0, 0),
('Rogue', 'Assassination', 14, 42082, 1099, 0, 0, 0, 0, 0),
('Rogue', 'Assassination', 15, 45958, 3789, 3521, 0, 0, 0, 0),
('Rogue', 'Assassination', 16, 45962, 3731, 3521, 0, 0, 0, 0),
('Rogue', 'Assassination', 17, 42451, 0, 0, 0, 0, 0, 0),
('Rogue', 'Combat', 0, 41672, 3795, 3628, 3521, 0, 3314, 0),
('Rogue', 'Combat', 1, 42042, 0, 0, 0, 0, 0, 0),
('Rogue', 'Combat', 2, 41683, 3793, 3521, 0, 0, 0, 0),
('Rogue', 'Combat', 4, 41650, 3245, 3521, 3566, 0, 3600, 0),
('Rogue', 'Combat', 5, 41833, 0, 3521, 3521, 0, 0, 3729),
('Rogue', 'Combat', 6, 41655, 3823, 3521, 3879, 0, 3355, 0),
('Rogue', 'Combat', 7, 41837, 1597, 3521, 0, 0, 0, 0),
('Rogue', 'Combat', 8, 41841, 3845, 0, 0, 0, 0, 0),
('Rogue', 'Combat', 9, 41767, 1603, 3521, 0, 0, 0, 0),
('Rogue', 'Combat', 10, 42117, 0, 0, 0, 0, 0, 0),
('Rogue', 'Combat', 11, 42119, 0, 0, 0, 0, 0, 0),
('Rogue', 'Combat', 12, 51377, 0, 0, 0, 0, 0, 0),
('Rogue', 'Combat', 13, 42136, 0, 0, 0, 0, 0, 0),
('Rogue', 'Combat', 14, 42082, 1099, 0, 0, 0, 0, 0),
('Rogue', 'Combat', 15, 42276, 3789, 3521, 0, 0, 0, 0),
('Rogue', 'Combat', 16, 42281, 3731, 3521, 0, 0, 0, 0),
('Rogue', 'Combat', 17, 42451, 0, 0, 0, 0, 0, 0),
('Druid', 'Feral', 0, 41678, 3795, 3621, 3525, 0, 3314, 0),
('Druid', 'Feral', 1, 46374, 0, 0, 0, 0, 0, 0),
('Druid', 'Feral', 2, 41715, 3793, 3525, 0, 0, 0, 0),
('Druid', 'Feral', 4, 41661, 3832, 3525, 3525, 0, 0, 0),
('Druid', 'Feral', 5, 41833, 0, 3543, 3525, 0, 2877, 3729),
('Druid', 'Feral', 6, 41667, 3823, 3525, 3879, 0, 3355, 0),
('Druid', 'Feral', 7, 41837, 1597, 3525, 0, 0, 0, 0),
('Druid', 'Feral', 8, 41841, 3845, 0, 0, 0, 0, 0),
('Druid', 'Feral', 9, 41773, 1603, 3543, 0, 0, 2874, 0),
('Druid', 'Feral', 10, 42119, 0, 0, 0, 0, 0, 0),
('Druid', 'Feral', 11, 47934, 0, 3528, 0, 0, 2877, 0),
('Druid', 'Feral', 12, 42136, 0, 0, 0, 0, 0, 0),
('Druid', 'Feral', 13, 51377, 0, 0, 0, 0, 0, 0),
('Druid', 'Feral', 14, 42082, 1099, 0, 0, 0, 0, 0),
('Druid', 'Feral', 15, 45951, 3789, 3525, 3525, 0, 0, 0),
('Druid', 'Feral', 17, 42589, 0, 0, 0, 0, 0, 0),
('Druid', 'Restoration', 0, 41321, 3796, 3639, 3520, 0, 3352, 0),
('Druid', 'Restoration', 1, 42044, 0, 0, 0, 0, 0, 0),
('Druid', 'Restoration', 2, 41275, 3794, 3531, 0, 0, 2890, 0),
('Druid', 'Restoration', 4, 41310, 3245, 3520, 3531, 0, 3600, 0),
('Druid', 'Restoration', 5, 41618, 0, 3535, 3520, 0, 2872, 3729),
('Druid', 'Restoration', 6, 41298, 3721, 3520, 3879, 0, 3602, 0),
('Druid', 'Restoration', 7, 41622, 3232, 3531, 0, 0, 2878, 0),
('Druid', 'Restoration', 8, 41626, 2332, 0, 0, 0, 0, 0),
('Druid', 'Restoration', 9, 41287, 3246, 3548, 0, 0, 2890, 0),
('Druid', 'Restoration', 10, 42118, 0, 0, 0, 0, 0, 0),
('Druid', 'Restoration', 11, 47928, 0, 0, 0, 0, 0, 0),
('Druid', 'Restoration', 12, 42137, 0, 0, 0, 0, 0, 0),
('Druid', 'Restoration', 13, 51377, 0, 0, 0, 0, 0, 0),
('Druid', 'Restoration', 14, 42080, 3243, 0, 0, 0, 0, 0),
('Druid', 'Restoration', 15, 42385, 3854, 3520, 3548, 0, 3602, 0),
('Druid', 'Restoration', 17, 42579, 0, 0, 0, 0, 0, 0),
('Rogue', 'Subtlety', 0, 41672, 3795, 3628, 3521, 0, 3314, 0),
('Rogue', 'Subtlety', 1, 42042, 0, 0, 0, 0, 0, 0),
('Rogue', 'Subtlety', 2, 41683, 3793, 3521, 0, 0, 0, 0),
('Rogue', 'Subtlety', 4, 41650, 3245, 3521, 3566, 0, 3600, 0),
('Rogue', 'Subtlety', 5, 41833, 0, 3521, 3521, 0, 0, 3729),
('Rogue', 'Subtlety', 6, 41655, 3823, 3521, 3879, 0, 3355, 0),
('Rogue', 'Subtlety', 7, 41837, 1597, 3521, 0, 0, 0, 0),
('Rogue', 'Subtlety', 8, 41841, 3845, 0, 0, 0, 0, 0),
('Rogue', 'Subtlety', 9, 41767, 1603, 3521, 0, 0, 0, 0),
('Rogue', 'Subtlety', 10, 42117, 0, 0, 0, 0, 0, 0),
('Rogue', 'Subtlety', 11, 42119, 0, 0, 0, 0, 0, 0),
('Rogue', 'Subtlety', 12, 51377, 0, 0, 0, 0, 0, 0),
('Rogue', 'Subtlety', 13, 42136, 0, 0, 0, 0, 0, 0),
('Rogue', 'Subtlety', 14, 42082, 1099, 0, 0, 0, 0, 0),
('Rogue', 'Subtlety', 15, 45958, 3789, 3521, 0, 0, 0, 0),
('Rogue', 'Subtlety', 16, 45962, 3731, 3521, 0, 0, 0, 0),
('Rogue', 'Subtlety', 17, 42451, 0, 0, 0, 0, 0, 0),
('Druid', 'Ballance', 0, 41327, 3796, 3621, 3520, 0, 3352, 0),
('Druid', 'Ballance', 1, 42044, 0, 0, 0, 0, 0, 0),
('Druid', 'Ballance', 4, 41316, 3245, 3520, 3531, 0, 3600, 0),
('Druid', 'Ballance', 2, 41281, 3794, 3531, 0, 0, 2890, 0),
('Druid', 'Ballance', 5, 41631, 0, 3879, 3520, 0, 2872, 3729),
('Druid', 'Ballance', 6, 41304, 3721, 3520, 3548, 0, 3602, 0),
('Druid', 'Ballance', 7, 41636, 3232, 3531, 0, 0, 2878, 0),
('Druid', 'Ballance', 8, 41641, 2332, 0, 0, 0, 0, 0),
('Druid', 'Ballance', 9, 41293, 3246, 3548, 0, 0, 2890, 0),
('Druid', 'Ballance', 10, 42118, 0, 0, 0, 0, 0, 0),
('Druid', 'Ballance', 11, 47928, 0, 3520, 0, 0, 3752, 0),
('Druid', 'Ballance', 12, 42137, 0, 0, 0, 0, 0, 0),
('Druid', 'Ballance', 13, 51377, 0, 0, 0, 0, 0, 0),
('Druid', 'Ballance', 14, 42076, 3243, 0, 0, 0, 0, 0),
('Druid', 'Ballance', 15, 42364, 3854, 3520, 3535, 0, 3602, 0),
('Druid', 'Ballance', 17, 42584, 0, 0, 0, 0, 0, 0),
('Priest', 'Holy', 0, 41854, 3796, 3621, 3520, 0, 3352, 0),
('Priest', 'Holy', 1, 42044, 0, 0, 0, 0, 0, 0),
('Priest', 'Holy', 2, 41869, 3794, 3531, 0, 0, 2890, 0),
('Priest', 'Holy', 4, 41859, 3245, 3520, 3531, 0, 3600, 0),
('Priest', 'Holy', 5, 49179, 0, 3548, 3531, 0, 2872, 3729),
('Priest', 'Holy', 6, 41864, 3721, 3520, 3879, 0, 2770, 0),
('Priest', 'Holy', 7, 49183, 3232, 3531, 0, 0, 2878, 0),
('Priest', 'Holy', 8, 49181, 2332, 0, 0, 0, 0, 0),
('Priest', 'Holy', 9, 41874, 3246, 3548, 0, 0, 2890, 0),
('Priest', 'Holy', 10, 42118, 0, 0, 0, 0, 0, 0),
('Priest', 'Holy', 11, 47732, 0, 0, 0, 0, 0, 0),
('Priest', 'Holy', 12, 42135, 0, 0, 0, 0, 0, 0),
('Priest', 'Holy', 13, 51377, 0, 0, 0, 0, 0, 0),
('Priest', 'Holy', 14, 42082, 3243, 0, 0, 0, 0, 0),
('Priest', 'Holy', 15, 42347, 3834, 3531, 0, 0, 0, 0),
('Priest', 'Holy', 16, 42526, 0, 0, 0, 0, 0, 0),
('Priest', 'Holy', 17, 42520, 0, 0, 0, 0, 0, 0),
('Priest', 'Shadow', 0, 41915, 3796, 3621, 3563, 0, 3821, 0),
('Priest', 'Shadow', 1, 42045, 0, 0, 0, 0, 0, 0),
('Priest', 'Shadow', 2, 41934, 3794, 3563, 0, 0, 2868, 0),
('Priest', 'Shadow', 4, 41921, 3832, 3563, 3563, 0, 3307, 0),
('Priest', 'Shadow', 5, 49179, 0, 3590, 3590, 0, 2872, 3729),
('Priest', 'Shadow', 6, 41927, 3721, 3520, 3590, 0, 2770, 0),
('Priest', 'Shadow', 7, 49183, 3232, 3563, 0, 0, 2878, 0),
('Priest', 'Shadow', 8, 49181, 2332, 0, 0, 0, 0, 0),
('Priest', 'Shadow', 9, 41940, 3246, 3590, 0, 0, 3752, 0),
('Priest', 'Shadow', 10, 42118, 0, 0, 0, 0, 0, 0),
('Priest', 'Shadow', 11, 47732, 0, 0, 0, 0, 0, 0),
('Priest', 'Shadow', 12, 51377, 0, 0, 0, 0, 0, 0),
('Priest', 'Shadow', 13, 42137, 0, 0, 0, 0, 0, 0),
('Priest', 'Shadow', 14, 42077, 3243, 0, 0, 0, 0, 0),
('Priest', 'Shadow', 15, 42347, 3834, 3590, 0, 0, 3752, 0),
('Priest', 'Shadow', 17, 42520, 0, 0, 0, 0, 0, 0),
('Priest', 'Shadow', 16, 42526, 0, 0, 0, 0, 0, 0),
('Mage', 'Arcane', 0, 41946, 3820, 3621, 3520, 0, 3821, 0),
('Mage', 'Arcane', 1, 42044, 0, 0, 0, 0, 0, 0),
('Mage', 'Arcane', 2, 41965, 3794, 3531, 0, 0, 2868, 0),
('Mage', 'Arcane', 4, 41953, 3245, 3520, 3531, 0, 3307, 0),
('Mage', 'Arcane', 5, 49179, 0, 3548, 3520, 0, 2872, 3729),
('Mage', 'Arcane', 6, 41959, 3721, 3520, 3548, 0, 2770, 0),
('Mage', 'Arcane', 7, 49183, 3232, 3531, 0, 0, 2878, 0),
('Mage', 'Arcane', 8, 49181, 2332, 0, 0, 0, 0, 0),
('Mage', 'Arcane', 9, 41971, 3246, 3879, 0, 0, 3198, 0),
('Mage', 'Arcane', 10, 42118, 0, 0, 0, 0, 0, 0),
('Mage', 'Arcane', 11, 47928, 0, 3520, 0, 0, 3752, 0),
('Mage', 'Arcane', 12, 51377, 0, 0, 0, 0, 0, 0),
('Mage', 'Arcane', 13, 47182, 0, 0, 0, 0, 0, 0),
('Mage', 'Arcane', 14, 42077, 3243, 0, 0, 0, 0, 0),
('Mage', 'Arcane', 15, 42347, 3834, 3548, 0, 0, 3752, 0),
('Mage', 'Arcane', 16, 42526, 0, 0, 0, 0, 0, 0),
('Mage', 'Arcane', 17, 42520, 0, 0, 0, 0, 0, 0),
('Mage', 'Fire', 0, 41946, 3820, 3621, 3520, 0, 3821, 0),
('Mage', 'Fire', 1, 42044, 0, 0, 0, 0, 0, 0),
('Mage', 'Fire', 2, 41965, 3794, 3531, 0, 0, 2868, 0),
('Mage', 'Fire', 4, 41953, 3245, 3520, 3531, 0, 3307, 0),
('Mage', 'Fire', 5, 49179, 0, 3548, 3520, 0, 2872, 3729),
('Mage', 'Fire', 6, 41959, 3721, 3520, 3548, 0, 2770, 0),
('Mage', 'Fire', 7, 49183, 3232, 3531, 0, 0, 2878, 0),
('Mage', 'Fire', 8, 49181, 2332, 0, 0, 0, 0, 0),
('Mage', 'Fire', 10, 42118, 0, 0, 0, 0, 0, 0),
('Mage', 'Fire', 9, 41971, 3246, 3879, 0, 0, 3198, 0),
('Mage', 'Fire', 11, 47928, 0, 3520, 0, 0, 3752, 0),
('Mage', 'Fire', 12, 51377, 0, 0, 0, 0, 0, 0),
('Mage', 'Fire', 13, 47182, 0, 0, 0, 0, 0, 0),
('Mage', 'Fire', 14, 42077, 3243, 0, 0, 0, 0, 0),
('Mage', 'Fire', 15, 42347, 3834, 3548, 0, 0, 3752, 0),
('Mage', 'Fire', 16, 42526, 0, 0, 0, 0, 0, 0),
('Mage', 'Fire', 17, 42520, 0, 0, 0, 0, 0, 0),
('Paladin', 'Retribution', 0, 40828, 3795, 3628, 3518, 0, 2787, 0),
('Paladin', 'Retribution', 1, 42042, 0, 0, 0, 0, 0, 0),
('Paladin', 'Retribution', 2, 40869, 3793, 3552, 0, 0, 3263, 0),
('Paladin', 'Retribution', 4, 40788, 3832, 3518, 3518, 0, 0, 0),
('Paladin', 'Retribution', 6, 40849, 3823, 3518, 3536, 0, 3357, 0),
('Paladin', 'Retribution', 5, 40883, 0, 3518, 3518, 0, 0, 3729),
('Paladin', 'Retribution', 7, 40884, 1597, 3518, 0, 0, 0, 0),
('Paladin', 'Retribution', 8, 40890, 3845, 0, 0, 0, 0, 0),
('Paladin', 'Retribution', 9, 40808, 1603, 3518, 0, 0, 0, 0),
('Paladin', 'Retribution', 10, 42117, 0, 0, 0, 0, 0, 0),
('Paladin', 'Retribution', 11, 42119, 0, 0, 0, 0, 0, 0),
('Paladin', 'Retribution', 12, 42136, 0, 0, 0, 0, 0, 0),
('Paladin', 'Retribution', 13, 51377, 0, 0, 0, 0, 0, 0),
('Paladin', 'Retribution', 14, 42082, 1099, 0, 0, 0, 0, 0),
('Paladin', 'Retribution', 15, 42323, 3789, 3518, 3518, 0, 0, 0),
('Paladin', 'Retribution', 17, 42853, 0, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 0, 40828, 3795, 3628, 3518, 0, 2787, 0),
('Paladin', 'Protection', 1, 42042, 0, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 2, 40869, 3793, 3552, 0, 0, 3263, 0),
('Paladin', 'Protection', 4, 40788, 3832, 3518, 3518, 0, 0, 0),
('Paladin', 'Protection', 5, 40883, 0, 3518, 3518, 0, 0, 3729),
('Paladin', 'Protection', 6, 40849, 3823, 3518, 3536, 0, 3357, 0),
('Paladin', 'Protection', 7, 40884, 1597, 3518, 0, 0, 0, 0),
('Paladin', 'Protection', 8, 40890, 3845, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 9, 40808, 1603, 3518, 0, 0, 0, 0),
('Paladin', 'Protection', 10, 42117, 0, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 11, 42119, 0, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 12, 42136, 0, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 13, 51377, 0, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 14, 42082, 1099, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 15, 42286, 3789, 3863, 0, 0, 2936, 0),
('Paladin', 'Protection', 16, 42560, 3849, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 17, 42853, 0, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 0, 41019, 3796, 3621, 3866, 0, 2854, 0),
('Shaman', 'Elemental', 1, 42044, 0, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 2, 41044, 3794, 3531, 0, 0, 2865, 0),
('Shaman', 'Elemental', 4, 40993, 3832, 3866, 3531, 0, 3600, 0),
('Shaman', 'Elemental', 5, 41071, 0, 3535, 3535, 0, 3596, 3729),
('Shaman', 'Elemental', 6, 41033, 3721, 3866, 3535, 0, 3602, 0),
('Shaman', 'Elemental', 7, 41076, 3232, 3531, 0, 0, 2878, 0),
('Shaman', 'Elemental', 8, 41066, 2332, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 9, 41007, 3246, 3535, 0, 0, 2865, 0),
('Shaman', 'Elemental', 10, 42118, 0, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 11, 42116, 0, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 12, 42137, 0, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 13, 51377, 0, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 14, 42078, 3831, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 15, 42347, 3834, 3535, 0, 0, 3752, 0),
('Shaman', 'Elemental', 16, 42565, 1128, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 17, 42603, 0, 0, 0, 0, 0, 0),
('Shaman', 'Enhancement', 0, 41151, 3817, 3621, 3521, 0, 2843, 0),
('Shaman', 'Enhancement', 1, 42042, 0, 0, 0, 0, 0, 0),
('Shaman', 'Enhancement', 2, 41211, 3808, 3565, 0, 0, 2874, 0),
('Shaman', 'Enhancement', 4, 41081, 3832, 3521, 3521, 0, 0, 0),
('Shaman', 'Enhancement', 5, 41236, 0, 3521, 3521, 0, 0, 3729),
('Shaman', 'Enhancement', 6, 41199, 3823, 3521, 3521, 0, 0, 0),
('Shaman', 'Enhancement', 7, 41231, 1597, 3521, 0, 0, 0, 0),
('Shaman', 'Enhancement', 8, 41226, 3845, 0, 0, 0, 0, 0),
('Shaman', 'Enhancement', 9, 41137, 1603, 3577, 0, 0, 2874, 0),
('Shaman', 'Enhancement', 10, 42119, 0, 0, 0, 0, 0, 0),
('Shaman', 'Enhancement', 11, 42117, 0, 0, 0, 0, 0, 0),
('Shaman', 'Enhancement', 12, 51377, 0, 0, 0, 0, 0, 0),
('Shaman', 'Enhancement', 13, 42136, 0, 0, 0, 0, 0, 0),
('Shaman', 'Enhancement', 14, 42081, 3243, 0, 0, 0, 0, 0),
('Shaman', 'Enhancement', 15, 42276, 3789, 3577, 0, 0, 2936, 0),
('Shaman', 'Enhancement', 16, 42276, 3789, 3521, 0, 0, 0, 0),
('Shaman', 'Enhancement', 17, 42608, 0, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 0, 41013, 3796, 3627, 3866, 0, 2854, 0),
('Shaman', 'Restoration', 1, 42045, 0, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 2, 41038, 3794, 3530, 0, 0, 2865, 0),
('Shaman', 'Restoration', 4, 40992, 3245, 3866, 3866, 0, 0, 0),
('Shaman', 'Restoration', 5, 41052, 0, 3866, 3866, 0, 0, 3729),
('Shaman', 'Restoration', 6, 41027, 3721, 3866, 3863, 0, 3602, 0),
('Shaman', 'Restoration', 7, 41056, 3232, 3866, 0, 0, 0, 0),
('Shaman', 'Restoration', 8, 41061, 2332, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 9, 41001, 3246, 3866, 0, 0, 0, 0),
('Shaman', 'Restoration', 10, 42118, 0, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 11, 42116, 0, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 12, 42135, 0, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 13, 51377, 0, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 14, 42077, 3831, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 15, 42353, 3834, 3866, 0, 0, 0, 0),
('Shaman', 'Restoration', 16, 42571, 1128, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 17, 42598, 0, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 0, 41854, 3796, 3621, 3520, 0, 3352, 0),
('Priest', 'Discipline', 1, 42044, 0, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 2, 41869, 3794, 3531, 0, 0, 2890, 0),
('Priest', 'Discipline', 4, 41859, 3245, 3520, 3531, 0, 3600, 0),
('Priest', 'Discipline', 5, 49179, 0, 3548, 3531, 0, 2872, 3729),
('Priest', 'Discipline', 6, 41864, 3721, 3520, 3879, 0, 2770, 0),
('Priest', 'Discipline', 7, 49183, 3232, 3531, 0, 0, 2878, 0),
('Priest', 'Discipline', 8, 49181, 2332, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 10, 42118, 0, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 9, 41874, 3246, 3548, 0, 0, 2890, 0),
('Priest', 'Discipline', 11, 47732, 0, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 12, 51377, 0, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 13, 47041, 0, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 14, 42082, 3243, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 15, 42347, 3834, 3531, 0, 0, 0, 0),
('Priest', 'Discipline', 16, 42526, 0, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 17, 42520, 0, 0, 0, 0, 0, 0),
('Hunter', 'Beastmastery', 0, 41157, 3795, 3621, 3519, 0, 2843, 0),
('Hunter', 'Beastmastery', 1, 42041, 0, 0, 0, 0, 0, 0),
('Hunter', 'Beastmastery', 2, 41217, 3793, 3519, 0, 0, 0, 0),
('Hunter', 'Beastmastery', 4, 41087, 3245, 3519, 3519, 0, 0, 0),
('Hunter', 'Beastmastery', 5, 41236, 0, 3535, 3519, 0, 2877, 3729),
('Hunter', 'Beastmastery', 6, 41205, 3823, 3519, 3537, 0, 3355, 0),
('Hunter', 'Beastmastery', 7, 41231, 3232, 3519, 0, 0, 0, 0),
('Hunter', 'Beastmastery', 8, 41226, 3845, 0, 0, 0, 0, 0),
('Hunter', 'Beastmastery', 9, 41143, 1603, 3879, 0, 0, 2874, 0),
('Hunter', 'Beastmastery', 10, 47934, 0, 3519, 0, 0, 0, 0),
('Hunter', 'Beastmastery', 11, 42119, 0, 0, 0, 0, 0, 0),
('Hunter', 'Beastmastery', 12, 42136, 0, 0, 0, 0, 0, 0),
('Hunter', 'Beastmastery', 13, 51377, 0, 0, 0, 0, 0, 0),
('Hunter', 'Beastmastery', 14, 42082, 3243, 0, 0, 0, 0, 0),
('Hunter', 'Beastmastery', 15, 42209, 3833, 3519, 0, 0, 0, 0),
('Hunter', 'Beastmastery', 16, 42228, 3731, 3519, 0, 0, 0, 0),
('Hunter', 'Beastmastery', 17, 42486, 3608, 0, 0, 0, 0, 0),
('Hunter', 'Survival', 0, 41157, 3795, 3621, 3519, 0, 2843, 0),
('Hunter', 'Survival', 1, 42041, 0, 0, 0, 0, 0, 0),
('Hunter', 'Survival', 2, 41217, 3793, 3519, 0, 0, 0, 0),
('Hunter', 'Survival', 4, 41087, 3245, 3519, 3519, 0, 0, 0),
('Hunter', 'Survival', 5, 41236, 0, 3535, 3519, 0, 2877, 3729),
('Hunter', 'Survival', 6, 41205, 3823, 3519, 3537, 0, 3355, 0),
('Hunter', 'Survival', 7, 41231, 3232, 3519, 0, 0, 0, 0),
('Hunter', 'Survival', 8, 41226, 3845, 0, 0, 0, 0, 0),
('Hunter', 'Survival', 9, 41143, 1603, 3879, 0, 0, 2874, 0),
('Hunter', 'Survival', 10, 47934, 0, 3519, 0, 0, 0, 0),
('Hunter', 'Survival', 11, 42119, 0, 0, 0, 0, 0, 0),
('Hunter', 'Survival', 12, 42136, 0, 0, 0, 0, 0, 0),
('Hunter', 'Survival', 13, 51377, 0, 0, 0, 0, 0, 0),
('Hunter', 'Survival', 14, 42082, 3243, 0, 0, 0, 0, 0),
('Hunter', 'Survival', 15, 42209, 3833, 3519, 0, 0, 0, 0),
('Hunter', 'Survival', 16, 42228, 3731, 3519, 0, 0, 0, 0),
('Hunter', 'Survival', 17, 42486, 3608, 0, 0, 0, 0, 0),
('Paladin', 'Holy', 0, 40933, 3796, 3627, 3520, 0, 2854, 0),
('Paladin', 'Holy', 1, 42043, 0, 0, 0, 0, 0, 0),
('Paladin', 'Holy', 2, 40963, 3794, 3865, 0, 0, 2865, 0),
('Paladin', 'Holy', 4, 40907, 3832, 3520, 3865, 0, 3600, 0),
('Paladin', 'Holy', 5, 40978, 0, 3546, 3866, 0, 3596, 3729),
('Paladin', 'Holy', 6, 40939, 3721, 3520, 3546, 0, 3602, 0),
('Paladin', 'Holy', 7, 40979, 3232, 3865, 0, 0, 2878, 0),
('Paladin', 'Holy', 9, 40927, 3246, 3546, 0, 0, 2865, 0),
('Paladin', 'Holy', 8, 40984, 2332, 0, 0, 0, 0, 0),
('Paladin', 'Holy', 10, 42118, 0, 0, 0, 0, 0, 0),
('Paladin', 'Holy', 11, 42116, 0, 0, 0, 0, 0, 0),
('Paladin', 'Holy', 12, 42137, 0, 0, 0, 0, 0, 0),
('Paladin', 'Holy', 13, 51377, 0, 0, 0, 0, 0, 0),
('Paladin', 'Holy', 14, 42076, 3831, 0, 0, 0, 0, 0),
('Paladin', 'Holy', 15, 42353, 3834, 3546, 0, 0, 3752, 0),
('Paladin', 'Holy', 16, 42571, 1128, 0, 0, 0, 0, 0),
('Paladin', 'Holy', 17, 42615, 0, 0, 0, 0, 0, 0),
('Mage', 'Frost', 0, 41946, 3820, 3621, 3520, 0, 3821, 0),
('Mage', 'Frost', 1, 42044, 0, 0, 0, 0, 0, 0),
('Mage', 'Frost', 2, 41965, 3794, 3531, 0, 0, 2868, 0),
('Mage', 'Frost', 4, 41953, 3245, 3520, 3531, 0, 3307, 0),
('Mage', 'Frost', 5, 49179, 0, 3548, 3520, 0, 2872, 3729),
('Mage', 'Frost', 6, 41959, 3721, 3520, 3548, 0, 2770, 0),
('Mage', 'Frost', 7, 49183, 3232, 3531, 0, 0, 2878, 0),
('Mage', 'Frost', 8, 49181, 2332, 0, 0, 0, 0, 0),
('Mage', 'Frost', 9, 41971, 3246, 3879, 0, 0, 3198, 0),
('Mage', 'Frost', 10, 42118, 0, 0, 0, 0, 0, 0),
('Mage', 'Frost', 11, 47928, 0, 3520, 0, 0, 3752, 0),
('Mage', 'Frost', 12, 51377, 0, 0, 0, 0, 0, 0),
('Mage', 'Frost', 13, 47182, 0, 0, 0, 0, 0, 0),
('Mage', 'Frost', 14, 42077, 3243, 0, 0, 0, 0, 0),
('Mage', 'Frost', 15, 42347, 3834, 3548, 0, 0, 3752, 0),
('Mage', 'Frost', 16, 42526, 0, 0, 0, 0, 0, 0),
('Mage', 'Frost', 17, 42520, 0, 0, 0, 0, 0, 0),
('Warlock', 'Affliction', 0, 41993, 3796, 3621, 3548, 0, 3821, 0),
('Warlock', 'Affliction', 1, 42043, 0, 0, 0, 0, 0, 0),
('Warlock', 'Affliction', 2, 42011, 3794, 3528, 0, 0, 2868, 0),
('Warlock', 'Affliction', 4, 41998, 3245, 3520, 3528, 0, 3307, 0),
('Warlock', 'Affliction', 5, 41899, 0, 3535, 3528, 0, 2872, 3729),
('Warlock', 'Affliction', 6, 42005, 3721, 3520, 3528, 0, 0, 0),
('Warlock', 'Affliction', 7, 49183, 3232, 3563, 0, 0, 2878, 0),
('Warlock', 'Affliction', 8, 41910, 2332, 0, 0, 0, 0, 0),
('Warlock', 'Affliction', 9, 42017, 3246, 3535, 0, 0, 2872, 0),
('Warlock', 'Affliction', 11, 42116, 0, 0, 0, 0, 0, 0),
('Warlock', 'Affliction', 10, 42118, 0, 0, 0, 0, 0, 0),
('Warlock', 'Affliction', 12, 51377, 0, 0, 0, 0, 0, 0),
('Warlock', 'Affliction', 13, 42132, 0, 0, 0, 0, 0, 0),
('Warlock', 'Affliction', 14, 42078, 3243, 0, 0, 0, 0, 0),
('Warlock', 'Affliction', 15, 42347, 3834, 3866, 0, 0, 0, 0),
('Warlock', 'Affliction', 16, 42526, 0, 0, 0, 0, 0, 0),
('Warlock', 'Affliction', 17, 42503, 0, 0, 0, 0, 0, 0),
('Warlock', 'Demonology', 1, 42043, 0, 0, 0, 0, 0, 0),
('Warlock', 'Demonology', 2, 42011, 3794, 3528, 0, 0, 2868, 0),
('Warlock', 'Demonology', 4, 41998, 3245, 3520, 3528, 0, 3307, 0),
('Warlock', 'Demonology', 5, 41899, 0, 3535, 3528, 0, 2872, 3729),
('Warlock', 'Demonology', 6, 42005, 3721, 3520, 3528, 0, 0, 0),
('Warlock', 'Demonology', 7, 49183, 3232, 3563, 0, 0, 2878, 0),
('Warlock', 'Demonology', 8, 41910, 2332, 0, 0, 0, 0, 0),
('Warlock', 'Demonology', 9, 42017, 3246, 3535, 0, 0, 2872, 0),
('Warlock', 'Demonology', 10, 42118, 0, 0, 0, 0, 0, 0),
('Warlock', 'Demonology', 11, 42116, 0, 0, 0, 0, 0, 0),
('Warlock', 'Demonology', 12, 51377, 0, 0, 0, 0, 0, 0),
('Warlock', 'Demonology', 13, 42132, 0, 0, 0, 0, 0, 0),
('Warlock', 'Demonology', 14, 42078, 3243, 0, 0, 0, 0, 0),
('Warlock', 'Demonology', 15, 42347, 3834, 3866, 0, 0, 0, 0),
('Warlock', 'Demonology', 16, 42526, 0, 0, 0, 0, 0, 0),
('Warlock', 'Demonology', 17, 42503, 0, 0, 0, 0, 0, 0),
('Warlock', 'Destruction', 0, 41993, 3796, 3621, 3548, 0, 3821, 0),
('Warlock', 'Destruction', 1, 42043, 0, 0, 0, 0, 0, 0),
('Warlock', 'Destruction', 2, 42011, 3794, 3528, 0, 0, 2868, 0),
('Warlock', 'Destruction', 4, 41998, 3245, 3520, 3528, 0, 3307, 0),
('Warlock', 'Destruction', 5, 41899, 0, 3535, 3528, 0, 2872, 3729),
('Warlock', 'Destruction', 6, 42005, 3721, 3520, 3528, 0, 0, 0),
('Warlock', 'Destruction', 7, 49183, 3232, 3563, 0, 0, 2878, 0),
('Warlock', 'Destruction', 8, 41910, 2332, 0, 0, 0, 0, 0),
('Warlock', 'Destruction', 9, 42017, 3246, 3535, 0, 0, 2872, 0),
('Warlock', 'Destruction', 10, 42118, 0, 0, 0, 0, 0, 0),
('Warlock', 'Destruction', 11, 42116, 0, 0, 0, 0, 0, 0),
('Warlock', 'Destruction', 12, 51377, 0, 0, 0, 0, 0, 0),
('Warlock', 'Destruction', 13, 42132, 0, 0, 0, 0, 0, 0),
('Warlock', 'Destruction', 14, 42078, 3243, 0, 0, 0, 0, 0),
('Warlock', 'Destruction', 15, 42347, 3834, 3866, 0, 0, 0, 0),
('Warlock', 'Destruction', 16, 42526, 0, 0, 0, 0, 0, 0),
('Warlock', 'Destruction', 17, 42503, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Blood', 0, 40827, 3795, 3621, 3518, 0, 2787, 0),
('DeathKnight', 'Blood', 1, 42041, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Blood', 2, 40868, 3852, 3518, 0, 0, 0, 0),
('DeathKnight', 'Blood', 4, 40787, 3832, 3518, 3518, 0, 0, 0),
('DeathKnight', 'Blood', 5, 40883, 0, 3518, 3879, 0, 0, 3729),
('DeathKnight', 'Blood', 6, 40848, 3823, 3518, 3535, 0, 3357, 0),
('DeathKnight', 'Blood', 7, 40884, 1597, 3518, 0, 0, 0, 0),
('DeathKnight', 'Blood', 8, 40890, 3845, 0, 0, 0, 0, 0),
('DeathKnight', 'Blood', 9, 40809, 1603, 3518, 0, 0, 0, 0),
('DeathKnight', 'Blood', 10, 42117, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Blood', 11, 42119, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Blood', 12, 51377, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Blood', 13, 42134, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Blood', 14, 42081, 3243, 0, 0, 0, 0, 0),
('DeathKnight', 'Blood', 15, 42333, 3366, 3518, 3535, 0, 3764, 0),
('DeathKnight', 'Blood', 17, 42621, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Unholy', 0, 40827, 3795, 3621, 3518, 0, 2787, 0),
('DeathKnight', 'Unholy', 1, 42041, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Unholy', 2, 40868, 3852, 3518, 0, 0, 0, 0),
('DeathKnight', 'Unholy', 4, 40787, 3832, 3518, 3518, 0, 0, 0),
('DeathKnight', 'Unholy', 5, 40883, 0, 3518, 3879, 0, 0, 3729),
('DeathKnight', 'Unholy', 6, 40848, 3823, 3518, 3535, 0, 3357, 0),
('DeathKnight', 'Unholy', 7, 40884, 1597, 3518, 0, 0, 0, 0),
('DeathKnight', 'Unholy', 8, 40890, 3845, 0, 0, 0, 0, 0),
('DeathKnight', 'Unholy', 9, 40809, 1603, 3518, 0, 0, 0, 0),
('DeathKnight', 'Unholy', 10, 42117, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Unholy', 11, 42119, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Unholy', 12, 51377, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Unholy', 13, 42134, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Unholy', 14, 42081, 3243, 0, 0, 0, 0, 0),
('DeathKnight', 'Unholy', 15, 42333, 3367, 3518, 3535, 0, 3764, 0),
('DeathKnight', 'Unholy', 17, 42621, 0, 0, 0, 0, 0, 0),
('Warrior', 'Protection', 0, 40826, 3795, 3625, 3525, 0, 2787, 0),
('Warrior', 'Protection', 1, 42042, 0, 0, 0, 0, 0, 0),
('Warrior', 'Protection', 2, 40866, 3793, 3550, 0, 0, 3263, 0),
('Warrior', 'Protection', 4, 40789, 3832, 3525, 3550, 0, 3600, 0),
('Warrior', 'Protection', 5, 40883, 0, 3525, 3525, 0, 0, 3729),
('Warrior', 'Protection', 6, 40847, 3823, 3525, 3525, 0, 0, 0),
('Warrior', 'Protection', 7, 40884, 1597, 3525, 0, 0, 0, 0),
('Warrior', 'Protection', 8, 40890, 3845, 0, 0, 0, 0, 0),
('Warrior', 'Protection', 9, 40807, 1603, 3525, 0, 0, 0, 0),
('Warrior', 'Protection', 10, 42119, 0, 0, 0, 0, 0, 0),
('Warrior', 'Protection', 11, 42117, 0, 0, 0, 0, 0, 0),
('Warrior', 'Protection', 12, 42136, 0, 0, 0, 0, 0, 0),
('Warrior', 'Protection', 13, 51377, 0, 0, 0, 0, 0, 0),
('Warrior', 'Protection', 14, 42082, 1099, 0, 0, 0, 0, 0),
('Warrior', 'Protection', 15, 42276, 3789, 3863, 0, 0, 2936, 0),
('Warrior', 'Protection', 16, 42560, 3849, 0, 0, 0, 0, 0),
('Warrior', 'Protection', 17, 42486, 0, 0, 0, 0, 0, 0),
('Warrior', 'Arms', 0, 40826, 3795, 3625, 3525, 0, 2787, 0),
('Warrior', 'Arms', 1, 42042, 0, 0, 0, 0, 0, 0),
('Warrior', 'Arms', 2, 40866, 3793, 3550, 0, 0, 3263, 0),
('Warrior', 'Arms', 4, 40789, 3832, 3525, 3550, 0, 3600, 0),
('Warrior', 'Arms', 5, 40883, 0, 3525, 3525, 0, 0, 3729),
('Warrior', 'Arms', 6, 40847, 3823, 3525, 3525, 0, 0, 0),
('Warrior', 'Arms', 7, 40884, 1597, 3525, 0, 0, 0, 0),
('Warrior', 'Arms', 8, 40890, 3845, 0, 0, 0, 0, 0),
('Warrior', 'Arms', 9, 40807, 1603, 3525, 0, 0, 0, 0),
('Warrior', 'Arms', 10, 42119, 0, 0, 0, 0, 0, 0),
('Warrior', 'Arms', 11, 42117, 0, 0, 0, 0, 0, 0),
('Warrior', 'Arms', 12, 42136, 0, 0, 0, 0, 0, 0),
('Warrior', 'Arms', 13, 51377, 0, 0, 0, 0, 0, 0),
('Warrior', 'Arms', 14, 42082, 1099, 0, 0, 0, 0, 0),
('Warrior', 'Arms', 15, 42323, 3789, 3525, 3525, 0, 0, 0),
('Warrior', 'Arms', 17, 42486, 0, 0, 0, 0, 0, 0),
('Warrior', 'Fury', 0, 40826, 3795, 3625, 3525, 0, 2787, 0),
('Warrior', 'Fury', 1, 42042, 0, 0, 0, 0, 0, 0),
('Warrior', 'Fury', 2, 40866, 3793, 3550, 0, 0, 3263, 0),
('Warrior', 'Fury', 4, 40789, 3832, 3525, 3550, 0, 3600, 0),
('Warrior', 'Fury', 5, 40883, 0, 3525, 3525, 0, 0, 3729),
('Warrior', 'Fury', 6, 40847, 3823, 3525, 3525, 0, 0, 0),
('Warrior', 'Fury', 7, 40884, 1597, 3525, 0, 0, 0, 0),
('Warrior', 'Fury', 8, 40890, 3845, 0, 0, 0, 0, 0),
('Warrior', 'Fury', 9, 40807, 1603, 3525, 0, 0, 0, 0),
('Warrior', 'Fury', 10, 42119, 0, 0, 0, 0, 0, 0),
('Warrior', 'Fury', 11, 42117, 0, 0, 0, 0, 0, 0),
('Warrior', 'Fury', 12, 42136, 0, 0, 0, 0, 0, 0),
('Warrior', 'Fury', 13, 51377, 0, 0, 0, 0, 0, 0),
('Warrior', 'Fury', 14, 42082, 1099, 0, 0, 0, 0, 0),
('Warrior', 'Fury', 15, 42323, 3789, 3525, 3525, 0, 0, 0),
('Warrior', 'Fury', 16, 42323, 3789, 3525, 3525, 0, 0, 0),
('Warrior', 'Fury', 17, 42486, 0, 0, 0, 0, 0, 0),
('Hunter', 'Marksmanship', 0, 41157, 3795, 3621, 3519, 0, 2843, 0),
('Hunter', 'Marksmanship', 1, 42041, 0, 0, 0, 0, 0, 0),
('Hunter', 'Marksmanship', 2, 41217, 3793, 3519, 0, 0, 0, 0),
('Hunter', 'Marksmanship', 5, 41236, 0, 3535, 3519, 0, 2877, 3729),
('Hunter', 'Marksmanship', 4, 41087, 3245, 3519, 3519, 0, 0, 0),
('Hunter', 'Marksmanship', 6, 41205, 3823, 3519, 3537, 0, 3355, 0),
('Hunter', 'Marksmanship', 7, 41231, 3232, 3519, 0, 0, 0, 0),
('Hunter', 'Marksmanship', 8, 41226, 3845, 0, 0, 0, 0, 0),
('Hunter', 'Marksmanship', 9, 41143, 1603, 3879, 0, 0, 2874, 0),
('Hunter', 'Marksmanship', 10, 47934, 0, 3519, 0, 0, 0, 0),
('Hunter', 'Marksmanship', 11, 42119, 0, 0, 0, 0, 0, 0),
('Hunter', 'Marksmanship', 12, 42136, 0, 0, 0, 0, 0, 0),
('Hunter', 'Marksmanship', 13, 51377, 0, 0, 0, 0, 0, 0),
('Hunter', 'Marksmanship', 14, 42082, 3243, 0, 0, 0, 0, 0),
('Hunter', 'Marksmanship', 15, 42209, 3833, 3519, 0, 0, 0, 0),
('Hunter', 'Marksmanship', 16, 42209, 3731, 3519, 0, 0, 0, 0),
('Hunter', 'Marksmanship', 17, 42486, 3608, 0, 0, 0, 0, 0),
('DeathKnight', 'Frost', 0, 40827, 3795, 3621, 3518, 0, 2787, 0),
('DeathKnight', 'Frost', 1, 42041, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Frost', 2, 40868, 3852, 3518, 0, 0, 0, 0),
('DeathKnight', 'Frost', 4, 40787, 3832, 3518, 3518, 0, 0, 0),
('DeathKnight', 'Frost', 5, 40883, 0, 3518, 3879, 0, 0, 3729),
('DeathKnight', 'Frost', 6, 40848, 3823, 3518, 3535, 0, 3357, 0),
('DeathKnight', 'Frost', 7, 40884, 1597, 3518, 0, 0, 0, 0),
('DeathKnight', 'Frost', 8, 40890, 3845, 0, 0, 0, 0, 0),
('DeathKnight', 'Frost', 9, 40809, 1603, 3518, 0, 0, 0, 0),
('DeathKnight', 'Frost', 10, 42117, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Frost', 11, 42119, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Frost', 12, 51377, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Frost', 13, 42134, 0, 0, 0, 0, 0, 0),
('DeathKnight', 'Frost', 14, 42081, 3243, 0, 0, 0, 0, 0),
('DeathKnight', 'Frost', 15, 42209, 3370, 3518, 0, 0, 0, 0),
('DeathKnight', 'Frost', 16, 42209, 3594, 3535, 0, 0, 2936, 0),
('DeathKnight', 'Frost', 17, 42621, 0, 0, 0, 0, 0, 0);
/*!40000 ALTER TABLE `template_npc_alliance` ENABLE KEYS */;
-- Dumping structure for table characters_dev.template_npc_glyphs
CREATE TABLE IF NOT EXISTS `template_npc_glyphs` (
`playerClass` varchar(50) NOT NULL,
`playerSpec` varchar(50) NOT NULL,
`slot` tinyint(3) unsigned NOT NULL DEFAULT '0',
`glyph` smallint(5) unsigned NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- Dumping data for table characters_dev.template_npc_glyphs: ~180 rows (approximately)
/*!40000 ALTER TABLE `template_npc_glyphs` DISABLE KEYS */;
INSERT INTO `template_npc_glyphs` (`playerClass`, `playerSpec`, `slot`, `glyph`) VALUES
('Rogue', 'Assassination', 0, 733),
('Rogue', 'Assassination', 1, 464),
('Rogue', 'Assassination', 2, 467),
('Rogue', 'Assassination', 3, 405),
('Rogue', 'Assassination', 4, 469),
('Rogue', 'Assassination', 5, 408),
('Druid', 'Feral', 0, 166),
('Druid', 'Feral', 1, 0),
('Druid', 'Feral', 2, 0),
('Druid', 'Feral', 3, 165),
('Druid', 'Feral', 4, 551),
('Druid', 'Feral', 5, 671),
('Druid', 'Ballance', 0, 676),
('Druid', 'Ballance', 1, 433),
('Druid', 'Ballance', 2, 434),
('Druid', 'Ballance', 3, 178),
('Druid', 'Ballance', 4, 551),
('Druid', 'Ballance', 5, 176),
('Priest', 'Holy', 0, 251),
('Priest', 'Holy', 1, 458),
('Priest', 'Holy', 2, 459),
('Priest', 'Holy', 3, 257),
('Priest', 'Holy', 4, 463),
('Priest', 'Holy', 5, 255),
('Mage', 'Arcane', 0, 329),
('Mage', 'Arcane', 2, 447),
('Mage', 'Arcane', 1, 446),
('Mage', 'Arcane', 3, 315),
('Mage', 'Arcane', 4, 451),
('Mage', 'Arcane', 5, 312),
('Mage', 'Fire', 0, 329),
('Mage', 'Fire', 1, 446),
('Mage', 'Fire', 2, 447),
('Mage', 'Fire', 3, 315),
('Mage', 'Fire', 4, 451),
('Mage', 'Fire', 5, 324),
('Paladin', 'Retribution', 0, 183),
('Paladin', 'Retribution', 1, 453),
('Paladin', 'Retribution', 2, 455),
('Paladin', 'Retribution', 3, 193),
('Paladin', 'Retribution', 4, 456),
('Paladin', 'Retribution', 5, 707),
('Paladin', 'Protection', 0, 191),
('Paladin', 'Protection', 1, 456),
('Paladin', 'Protection', 2, 457),
('Paladin', 'Protection', 3, 705),
('Paladin', 'Protection', 4, 452),
('Paladin', 'Protection', 5, 183),
('Shaman', 'Elemental', 0, 754),
('Shaman', 'Elemental', 2, 474),
('Shaman', 'Elemental', 1, 476),
('Shaman', 'Elemental', 3, 214),
('Shaman', 'Elemental', 4, 552),
('Shaman', 'Elemental', 5, 752),
('Shaman', 'Enhancement', 0, 228),
('Shaman', 'Enhancement', 1, 552),
('Shaman', 'Enhancement', 2, 475),
('Shaman', 'Enhancement', 3, 736),
('Shaman', 'Enhancement', 4, 476),
('Shaman', 'Enhancement', 5, 754),
('Shaman', 'Restoration', 0, 223),
('Shaman', 'Restoration', 1, 476),
('Shaman', 'Restoration', 2, 552),
('Shaman', 'Restoration', 3, 751),
('Shaman', 'Restoration', 4, 475),
('Shaman', 'Restoration', 5, 754),
('Priest', 'Discipline', 0, 713),
('Priest', 'Discipline', 1, 458),
('Priest', 'Discipline', 2, 459),
('Priest', 'Discipline', 3, 257),
('Priest', 'Discipline', 4, 463),
('Priest', 'Discipline', 5, 710),
('Druid', 'Restoration', 0, 169),
('Druid', 'Restoration', 1, 433),
('Druid', 'Restoration', 2, 435),
('Druid', 'Restoration', 3, 168),
('Druid', 'Restoration', 4, 551),
('Druid', 'Restoration', 5, 676),
('Hunter', 'Beastmastery', 0, 351),
('Hunter', 'Beastmastery', 1, 439),
('Hunter', 'Beastmastery', 2, 440),
('Hunter', 'Beastmastery', 3, 358),
('Hunter', 'Beastmastery', 4, 441),
('Hunter', 'Beastmastery', 5, 356),
('Hunter', 'Survival', 0, 351),
('Hunter', 'Survival', 1, 439),
('Hunter', 'Survival', 2, 440),
('Hunter', 'Survival', 3, 358),
('Hunter', 'Survival', 4, 441),
('Hunter', 'Survival', 5, 691),
('Paladin', 'Holy', 0, 706),
('Paladin', 'Holy', 1, 455),
('Paladin', 'Holy', 2, 456),
('Paladin', 'Holy', 3, 183),
('Paladin', 'Holy', 4, 452),
('Paladin', 'Holy', 5, 195),
('Mage', 'Frost', 0, 700),
('Mage', 'Frost', 1, 446),
('Mage', 'Frost', 2, 447),
('Mage', 'Frost', 3, 315),
('Mage', 'Frost', 4, 451),
('Mage', 'Frost', 5, 329),
('Warlock', 'Destruction', 0, 759),
('Warlock', 'Destruction', 1, 479),
('Warlock', 'Destruction', 2, 480),
('Warlock', 'Destruction', 3, 273),
('Warlock', 'Destruction', 4, 478),
('Warlock', 'Destruction', 5, 283),
('Warlock', 'Affliction', 0, 759),
('Warlock', 'Affliction', 1, 482),
('Warlock', 'Affliction', 2, 477),
('Warlock', 'Affliction', 3, 911),
('Warlock', 'Affliction', 4, 478),
('Warlock', 'Affliction', 5, 283),
('Warlock', 'Demonology', 0, 759),
('Warlock', 'Demonology', 1, 479),
('Warlock', 'Demonology', 2, 480),
('Warlock', 'Demonology', 3, 281),
('Warlock', 'Demonology', 4, 477),
('Warlock', 'Demonology', 5, 274),
('DeathKnight', 'Unholy', 0, 772),
('DeathKnight', 'Unholy', 1, 522),
('DeathKnight', 'Unholy', 2, 553),
('DeathKnight', 'Unholy', 3, 771),
('DeathKnight', 'Unholy', 4, 518),
('DeathKnight', 'Unholy', 5, 527),
('Warrior', 'Arms', 0, 489),
('Warrior', 'Arms', 1, 484),
('Warrior', 'Arms', 2, 485),
('Warrior', 'Arms', 3, 499),
('Warrior', 'Arms', 4, 483),
('Warrior', 'Arms', 5, 500),
('Warrior', 'Protection', 0, 503),
('Warrior', 'Protection', 1, 484),
('Warrior', 'Protection', 2, 485),
('Warrior', 'Protection', 3, 763),
('Warrior', 'Protection', 4, 483),
('Warrior', 'Protection', 5, 502),
('Warrior', 'Fury', 0, 509),
('Warrior', 'Fury', 1, 484),
('Warrior', 'Fury', 2, 851),
('Warrior', 'Fury', 3, 490),
('Warrior', 'Fury', 4, 483),
('Warrior', 'Fury', 5, 494),
('Rogue', 'Subtlety', 0, 404),
('Rogue', 'Subtlety', 1, 464),
('Rogue', 'Subtlety', 2, 467),
('Rogue', 'Subtlety', 3, 716),
('Rogue', 'Subtlety', 4, 469),
('Rogue', 'Subtlety', 5, 408),
('Rogue', 'Combat', 0, 409),
('Rogue', 'Combat', 1, 464),
('Rogue', 'Combat', 2, 467),
('Rogue', 'Combat', 3, 404),
('Rogue', 'Combat', 4, 469),
('Rogue', 'Combat', 5, 715),
('Hunter', 'Marksmanship', 0, 351),
('Hunter', 'Marksmanship', 1, 439),
('Hunter', 'Marksmanship', 2, 440),
('Hunter', 'Marksmanship', 3, 358),
('Hunter', 'Marksmanship', 4, 441),
('Hunter', 'Marksmanship', 5, 366),
('DeathKnight', 'Blood', 0, 771),
('DeathKnight', 'Blood', 2, 555),
('DeathKnight', 'Blood', 1, 522),
('DeathKnight', 'Blood', 3, 558),
('DeathKnight', 'Blood', 4, 514),
('DeathKnight', 'Blood', 5, 528),
('DeathKnight', 'Frost', 0, 525),
('DeathKnight', 'Frost', 1, 522),
('DeathKnight', 'Frost', 2, 518),
('DeathKnight', 'Frost', 3, 773),
('DeathKnight', 'Frost', 4, 553),
('DeathKnight', 'Frost', 5, 521),
('Priest', 'Shadow', 0, 263),
('Priest', 'Shadow', 1, 463),
('Priest', 'Shadow', 2, 458),
('Priest', 'Shadow', 3, 257),
('Priest', 'Shadow', 4, 459),
('Priest', 'Shadow', 5, 708);
/*!40000 ALTER TABLE `template_npc_glyphs` ENABLE KEYS */;
-- Dumping structure for table characters_dev.template_npc_horde
CREATE TABLE IF NOT EXISTS `template_npc_horde` (
`playerClass` varchar(50) NOT NULL,
`playerSpec` varchar(50) NOT NULL,
`pos` int(10) unsigned NOT NULL DEFAULT '0',
`itemEntry` int(10) unsigned NOT NULL DEFAULT '0',
`enchant` int(10) unsigned NOT NULL DEFAULT '0',
`socket1` int(10) unsigned NOT NULL DEFAULT '0',
`socket2` int(10) unsigned NOT NULL DEFAULT '0',
`socket3` int(10) unsigned NOT NULL DEFAULT '0',
`bonusEnchant` int(10) unsigned NOT NULL DEFAULT '0',
`prismaticEnchant` int(10) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Templates';
-- Dumping data for table characters_dev.template_npc_horde: ~501 rows (approximately)
/*!40000 ALTER TABLE `template_npc_horde` DISABLE KEYS */;
INSERT INTO `template_npc_horde` (`playerClass`, `playerSpec`, `pos`, `itemEntry`, `enchant`, `socket1`, `socket2`, `socket3`, `bonusEnchant`, `prismaticEnchant`) VALUES
('Rogue', 'Assassination', 0, 41672, 3795, 3628, 3521, 0, 3314, 0),
('Rogue', 'Assassination', 1, 42042, 0, 0, 0, 0, 0, 0),
('Rogue', 'Assassination', 2, 41683, 3793, 3521, 0, 0, 0, 0),
('Rogue', 'Assassination', 4, 41650, 3245, 3521, 3566, 0, 3600, 0),
('Rogue', 'Assassination', 5, 41833, 0, 3521, 3521, 0, 0, 3729),
('Rogue', 'Assassination', 6, 41655, 3823, 3521, 3879, 0, 3355, 0),
('Rogue', 'Assassination', 7, 41837, 1597, 3521, 0, 0, 0, 0),
('Rogue', 'Assassination', 8, 41841, 3845, 0, 0, 0, 0, 0),
('Rogue', 'Assassination', 9, 41767, 1603, 3521, 0, 0, 0, 0),
('Rogue', 'Assassination', 10, 42117, 0, 0, 0, 0, 0, 0),
('Rogue', 'Assassination', 11, 42119, 0, 0, 0, 0, 0, 0),
('Rogue', 'Assassination', 12, 42136, 0, 0, 0, 0, 0, 0),
('Rogue', 'Assassination', 13, 51378, 0, 0, 0, 0, 0, 0),
('Rogue', 'Assassination', 14, 42082, 1099, 0, 0, 0, 0, 0),
('Rogue', 'Assassination', 15, 45958, 3789, 3521, 0, 0, 0, 0),
('Rogue', 'Assassination', 16, 45962, 3731, 3521, 0, 0, 0, 0),
('Rogue', 'Assassination', 17, 42451, 0, 0, 0, 0, 0, 0),
('Rogue', 'Subtlety', 0, 41672, 3795, 3628, 3521, 0, 3314, 0),
('Rogue', 'Subtlety', 1, 42042, 0, 0, 0, 0, 0, 0),
('Rogue', 'Subtlety', 2, 41683, 3793, 3521, 0, 0, 0, 0),
('Rogue', 'Subtlety', 4, 41650, 3245, 3521, 3566, 0, 3600, 0),
('Rogue', 'Subtlety', 5, 41833, 0, 3521, 3521, 0, 0, 3729),
('Rogue', 'Subtlety', 6, 41655, 3823, 3521, 3879, 0, 3355, 0),
('Rogue', 'Subtlety', 7, 41837, 1597, 3521, 0, 0, 0, 0),
('Rogue', 'Subtlety', 8, 41841, 3845, 0, 0, 0, 0, 0),
('Rogue', 'Subtlety', 9, 41767, 1603, 3521, 0, 0, 0, 0),
('Rogue', 'Subtlety', 10, 42117, 0, 0, 0, 0, 0, 0),
('Rogue', 'Subtlety', 11, 42119, 0, 0, 0, 0, 0, 0),
('Rogue', 'Subtlety', 12, 51378, 0, 0, 0, 0, 0, 0),
('Rogue', 'Subtlety', 13, 42136, 0, 0, 0, 0, 0, 0),
('Rogue', 'Subtlety', 14, 42082, 1099, 0, 0, 0, 0, 0),
('Rogue', 'Subtlety', 15, 45958, 3789, 3521, 0, 0, 0, 0),
('Rogue', 'Subtlety', 16, 45962, 3731, 3521, 0, 0, 0, 0),
('Rogue', 'Subtlety', 17, 42451, 0, 0, 0, 0, 0, 0),
('Rogue', 'Combat', 0, 41672, 3795, 3628, 3521, 0, 3314, 0),
('Rogue', 'Combat', 1, 42042, 0, 0, 0, 0, 0, 0),
('Rogue', 'Combat', 2, 41683, 3793, 3521, 0, 0, 0, 0),
('Rogue', 'Combat', 4, 41650, 3245, 3521, 3566, 0, 3600, 0),
('Rogue', 'Combat', 5, 41833, 0, 3521, 3521, 0, 0, 3729),
('Rogue', 'Combat', 6, 41655, 3823, 3521, 3879, 0, 3355, 0),
('Rogue', 'Combat', 7, 41837, 1597, 3521, 0, 0, 0, 0),
('Rogue', 'Combat', 8, 41841, 3845, 0, 0, 0, 0, 0),
('Rogue', 'Combat', 9, 41767, 1603, 3521, 0, 0, 0, 0),
('Rogue', 'Combat', 10, 42117, 0, 0, 0, 0, 0, 0),
('Rogue', 'Combat', 11, 42119, 0, 0, 0, 0, 0, 0),
('Rogue', 'Combat', 12, 51378, 0, 0, 0, 0, 0, 0),
('Rogue', 'Combat', 13, 42136, 0, 0, 0, 0, 0, 0),
('Rogue', 'Combat', 14, 42082, 1099, 0, 0, 0, 0, 0),
('Rogue', 'Combat', 15, 42276, 3789, 3521, 0, 0, 0, 0),
('Rogue', 'Combat', 16, 42281, 3731, 3521, 0, 0, 0, 0),
('Rogue', 'Combat', 17, 42451, 0, 0, 0, 0, 0, 0),
('Druid', 'Feral', 0, 41678, 3795, 3621, 3525, 0, 3314, 0),
('Druid', 'Feral', 1, 46374, 0, 0, 0, 0, 0, 0),
('Druid', 'Feral', 2, 41715, 3793, 3525, 0, 0, 0, 0),
('Druid', 'Feral', 4, 41661, 3832, 3525, 3525, 0, 0, 0),
('Druid', 'Feral', 5, 41833, 0, 3543, 3525, 0, 2877, 3729),
('Druid', 'Feral', 6, 41667, 3823, 3525, 3879, 0, 3355, 0),
('Druid', 'Feral', 7, 41837, 1597, 3525, 0, 0, 0, 0),
('Druid', 'Feral', 8, 41841, 3845, 0, 0, 0, 0, 0),
('Druid', 'Feral', 9, 41773, 1603, 3543, 0, 0, 2874, 0),
('Druid', 'Feral', 10, 42119, 0, 0, 0, 0, 0, 0),
('Druid', 'Feral', 11, 48007, 0, 3528, 0, 0, 2877, 0),
('Druid', 'Feral', 12, 42136, 0, 0, 0, 0, 0, 0),
('Druid', 'Feral', 13, 51378, 0, 0, 0, 0, 0, 0),
('Druid', 'Feral', 14, 42082, 1099, 0, 0, 0, 0, 0),
('Druid', 'Feral', 15, 45951, 3789, 3525, 3525, 0, 0, 0),
('Druid', 'Feral', 17, 42589, 0, 0, 0, 0, 0, 0),
('Druid', 'Ballance', 0, 41327, 3796, 3621, 3520, 0, 3352, 0),
('Druid', 'Ballance', 1, 42044, 0, 0, 0, 0, 0, 0),
('Druid', 'Ballance', 4, 41316, 3245, 3520, 3531, 0, 3600, 0),
('Druid', 'Ballance', 2, 41281, 3794, 3531, 0, 0, 2890, 0),
('Druid', 'Ballance', 5, 41631, 0, 3879, 3520, 0, 2872, 3729),
('Druid', 'Ballance', 6, 41304, 3721, 3520, 3548, 0, 3602, 0),
('Druid', 'Ballance', 7, 41636, 3232, 3531, 0, 0, 2878, 0),
('Druid', 'Ballance', 8, 41641, 2332, 0, 0, 0, 0, 0),
('Druid', 'Ballance', 9, 41293, 3246, 3548, 0, 0, 2890, 0),
('Druid', 'Ballance', 10, 42118, 0, 0, 0, 0, 0, 0),
('Druid', 'Ballance', 11, 48001, 0, 3520, 0, 0, 3752, 0),
('Druid', 'Ballance', 12, 42137, 0, 0, 0, 0, 0, 0),
('Druid', 'Ballance', 13, 51378, 0, 0, 0, 0, 0, 0),
('Druid', 'Ballance', 14, 42076, 3243, 0, 0, 0, 0, 0),
('Druid', 'Ballance', 15, 42364, 3854, 3520, 3535, 0, 3602, 0),
('Druid', 'Ballance', 17, 42584, 0, 0, 0, 0, 0, 0),
('Priest', 'Holy', 0, 41854, 3796, 3621, 3520, 0, 3352, 0),
('Priest', 'Holy', 1, 42044, 0, 0, 0, 0, 0, 0),
('Priest', 'Holy', 2, 41869, 3794, 3531, 0, 0, 2890, 0),
('Priest', 'Holy', 4, 41859, 3245, 3520, 3531, 0, 3600, 0),
('Priest', 'Holy', 5, 49179, 0, 3548, 3531, 0, 2872, 3729),
('Priest', 'Holy', 6, 41864, 3721, 3520, 3879, 0, 2770, 0),
('Priest', 'Holy', 7, 49183, 3232, 3531, 0, 0, 2878, 0),
('Priest', 'Holy', 8, 49181, 2332, 0, 0, 0, 0, 0),
('Priest', 'Holy', 9, 41874, 3246, 3548, 0, 0, 2890, 0),
('Priest', 'Holy', 10, 42118, 0, 0, 0, 0, 0, 0),
('Priest', 'Holy', 11, 47732, 0, 0, 0, 0, 0, 0),
('Priest', 'Holy', 12, 42135, 0, 0, 0, 0, 0, 0),
('Priest', 'Holy', 13, 51378, 0, 0, 0, 0, 0, 0),
('Priest', 'Holy', 14, 42082, 3243, 0, 0, 0, 0, 0),
('Priest', 'Holy', 15, 42347, 3834, 3531, 0, 0, 0, 0),
('Priest', 'Holy', 16, 42526, 0, 0, 0, 0, 0, 0),
('Priest', 'Holy', 17, 42520, 0, 0, 0, 0, 0, 0),
('Mage', 'Arcane', 0, 41946, 3820, 3621, 3520, 0, 3821, 0),
('Mage', 'Arcane', 1, 42044, 0, 0, 0, 0, 0, 0),
('Mage', 'Arcane', 2, 41965, 3794, 3531, 0, 0, 2868, 0),
('Mage', 'Arcane', 4, 41953, 3245, 3520, 3531, 0, 3307, 0),
('Mage', 'Arcane', 5, 49179, 0, 3548, 3520, 0, 2872, 3729),
('Mage', 'Arcane', 6, 41959, 3721, 3520, 3548, 0, 2770, 0),
('Mage', 'Arcane', 7, 49183, 3232, 3531, 0, 0, 2878, 0),
('Mage', 'Arcane', 8, 49181, 2332, 0, 0, 0, 0, 0),
('Mage', 'Arcane', 9, 41971, 3246, 3879, 0, 0, 3198, 0),
('Mage', 'Arcane', 10, 42118, 0, 0, 0, 0, 0, 0),
('Mage', 'Arcane', 11, 48001, 0, 3520, 0, 0, 3752, 0),
('Mage', 'Arcane', 12, 51378, 0, 0, 0, 0, 0, 0),
('Mage', 'Arcane', 13, 47316, 0, 0, 0, 0, 0, 0),
('Mage', 'Arcane', 14, 42077, 3243, 0, 0, 0, 0, 0),
('Mage', 'Arcane', 15, 42347, 3834, 3548, 0, 0, 3752, 0),
('Mage', 'Arcane', 16, 42526, 0, 0, 0, 0, 0, 0),
('Mage', 'Arcane', 17, 42520, 0, 0, 0, 0, 0, 0),
('Mage', 'Fire', 0, 41946, 3820, 3621, 3520, 0, 3821, 0),
('Mage', 'Fire', 1, 42044, 0, 0, 0, 0, 0, 0),
('Mage', 'Fire', 2, 41965, 3794, 3531, 0, 0, 2868, 0),
('Mage', 'Fire', 4, 41953, 3245, 3520, 3531, 0, 3307, 0),
('Mage', 'Fire', 5, 49179, 0, 3548, 3520, 0, 2872, 3729),
('Mage', 'Fire', 6, 41959, 3721, 3520, 3548, 0, 2770, 0),
('Mage', 'Fire', 7, 49183, 3232, 3531, 0, 0, 2878, 0),
('Mage', 'Fire', 8, 49181, 2332, 0, 0, 0, 0, 0),
('Mage', 'Fire', 9, 41971, 3246, 3879, 0, 0, 3198, 0),
('Mage', 'Fire', 10, 42118, 0, 0, 0, 0, 0, 0),
('Mage', 'Fire', 11, 48001, 0, 3520, 0, 0, 3752, 0),
('Mage', 'Fire', 12, 51378, 0, 0, 0, 0, 0, 0),
('Mage', 'Fire', 13, 47316, 0, 0, 0, 0, 0, 0),
('Mage', 'Fire', 14, 42077, 3243, 0, 0, 0, 0, 0),
('Mage', 'Fire', 15, 42347, 3834, 3548, 0, 0, 3752, 0),
('Mage', 'Fire', 16, 42526, 0, 0, 0, 0, 0, 0),
('Mage', 'Fire', 17, 42520, 0, 0, 0, 0, 0, 0),
('Paladin', 'Retribution', 0, 40828, 3795, 3628, 3518, 0, 2787, 0),
('Paladin', 'Retribution', 1, 42042, 0, 0, 0, 0, 0, 0),
('Paladin', 'Retribution', 2, 40869, 3793, 3552, 0, 0, 3263, 0),
('Paladin', 'Retribution', 4, 40788, 3832, 3518, 3518, 0, 0, 0),
('Paladin', 'Retribution', 5, 40883, 0, 3518, 3518, 0, 0, 3729),
('Paladin', 'Retribution', 6, 40849, 3823, 3518, 3536, 0, 3357, 0),
('Paladin', 'Retribution', 7, 40884, 1597, 3518, 0, 0, 0, 0),
('Paladin', 'Retribution', 8, 40890, 3845, 0, 0, 0, 0, 0),
('Paladin', 'Retribution', 9, 40808, 1603, 3518, 0, 0, 0, 0),
('Paladin', 'Retribution', 10, 42117, 0, 0, 0, 0, 0, 0),
('Paladin', 'Retribution', 11, 42119, 0, 0, 0, 0, 0, 0),
('Paladin', 'Retribution', 12, 42136, 0, 0, 0, 0, 0, 0),
('Paladin', 'Retribution', 13, 51378, 0, 0, 0, 0, 0, 0),
('Paladin', 'Retribution', 14, 42082, 1099, 0, 0, 0, 0, 0),
('Paladin', 'Retribution', 15, 42323, 3789, 3518, 3518, 0, 0, 0),
('Paladin', 'Retribution', 17, 42853, 0, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 0, 40828, 3795, 3628, 3518, 0, 2787, 0),
('Paladin', 'Protection', 1, 42042, 0, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 2, 40869, 3793, 3552, 0, 0, 3263, 0),
('Paladin', 'Protection', 4, 40788, 3832, 3518, 3518, 0, 0, 0),
('Paladin', 'Protection', 5, 40883, 0, 3518, 3518, 0, 0, 3729),
('Paladin', 'Protection', 6, 40849, 3823, 3518, 3536, 0, 3357, 0),
('Paladin', 'Protection', 7, 40884, 1597, 3518, 0, 0, 0, 0),
('Paladin', 'Protection', 8, 40890, 3845, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 9, 40808, 1603, 3518, 0, 0, 0, 0),
('Paladin', 'Protection', 10, 42117, 0, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 11, 42119, 0, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 12, 42136, 0, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 13, 51378, 0, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 14, 42082, 1099, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 15, 42286, 3789, 3863, 0, 0, 2936, 0),
('Paladin', 'Protection', 16, 42560, 3849, 0, 0, 0, 0, 0),
('Paladin', 'Protection', 17, 42853, 0, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 0, 41019, 3796, 3621, 3866, 0, 2854, 0),
('Shaman', 'Elemental', 1, 42044, 0, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 2, 41044, 3794, 3531, 0, 0, 2865, 0),
('Shaman', 'Elemental', 4, 40993, 3832, 3866, 3531, 0, 3600, 0),
('Shaman', 'Elemental', 5, 41071, 0, 3535, 3535, 0, 3596, 3729),
('Shaman', 'Elemental', 6, 41033, 3721, 3866, 3535, 0, 3602, 0),
('Shaman', 'Elemental', 7, 41076, 3232, 3531, 0, 0, 2878, 0),
('Shaman', 'Elemental', 8, 41066, 2332, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 9, 41007, 3246, 3535, 0, 0, 2865, 0),
('Shaman', 'Elemental', 10, 42118, 0, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 11, 42116, 0, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 12, 42137, 0, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 13, 51378, 0, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 14, 42078, 3831, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 15, 42347, 3834, 3535, 0, 0, 3752, 0),
('Shaman', 'Elemental', 16, 42565, 1128, 0, 0, 0, 0, 0),
('Shaman', 'Elemental', 17, 42603, 0, 0, 0, 0, 0, 0),
('Shaman', 'Enhancement', 0, 41151, 3817, 3621, 3521, 0, 2843, 0),
('Shaman', 'Enhancement', 1, 42042, 0, 0, 0, 0, 0, 0),
('Shaman', 'Enhancement', 2, 41211, 3808, 3565, 0, 0, 2874, 0),
('Shaman', 'Enhancement', 4, 41081, 3832, 3521, 3521, 0, 0, 0),
('Shaman', 'Enhancement', 5, 41236, 0, 3521, 3521, 0, 0, 3729),
('Shaman', 'Enhancement', 6, 41199, 3823, 3521, 3521, 0, 0, 0),
('Shaman', 'Enhancement', 7, 41231, 1597, 3521, 0, 0, 0, 0),
('Shaman', 'Enhancement', 8, 41226, 3845, 0, 0, 0, 0, 0),
('Shaman', 'Enhancement', 9, 41137, 1603, 3577, 0, 0, 2874, 0),
('Shaman', 'Enhancement', 10, 42119, 0, 0, 0, 0, 0, 0),
('Shaman', 'Enhancement', 11, 42117, 0, 0, 0, 0, 0, 0),
('Shaman', 'Enhancement', 12, 51378, 0, 0, 0, 0, 0, 0),
('Shaman', 'Enhancement', 13, 42136, 0, 0, 0, 0, 0, 0),
('Shaman', 'Enhancement', 15, 42276, 3789, 3577, 0, 0, 2936, 0),
('Shaman', 'Enhancement', 14, 42081, 3243, 0, 0, 0, 0, 0),
('Shaman', 'Enhancement', 16, 42276, 3789, 3521, 0, 0, 0, 0),
('Shaman', 'Enhancement', 17, 42608, 0, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 0, 41013, 3796, 3627, 3866, 0, 2854, 0),
('Shaman', 'Restoration', 1, 42045, 0, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 2, 41038, 3794, 3530, 0, 0, 2865, 0),
('Shaman', 'Restoration', 4, 40992, 3245, 3866, 3866, 0, 0, 0),
('Shaman', 'Restoration', 5, 41052, 0, 3866, 3866, 0, 0, 3729),
('Shaman', 'Restoration', 6, 41027, 3721, 3866, 3863, 0, 3602, 0),
('Shaman', 'Restoration', 7, 41056, 3232, 3866, 0, 0, 0, 0),
('Shaman', 'Restoration', 8, 41061, 2332, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 9, 41001, 3246, 3866, 0, 0, 0, 0),
('Shaman', 'Restoration', 10, 42118, 0, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 11, 42116, 0, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 12, 42135, 0, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 13, 51378, 0, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 14, 42077, 3831, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 15, 42353, 3834, 3866, 0, 0, 0, 0),
('Shaman', 'Restoration', 16, 42571, 1128, 0, 0, 0, 0, 0),
('Shaman', 'Restoration', 17, 42598, 0, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 0, 41854, 3796, 3639, 3520, 0, 3352, 0),
('Priest', 'Discipline', 1, 42044, 0, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 2, 41869, 3794, 3531, 0, 0, 2890, 0),
('Priest', 'Discipline', 4, 41859, 3245, 3520, 3531, 0, 3600, 0),
('Priest', 'Discipline', 5, 49179, 0, 3548, 3531, 0, 2872, 3729),
('Priest', 'Discipline', 6, 41864, 3721, 3520, 3879, 0, 2770, 0),
('Priest', 'Discipline', 7, 49183, 3232, 3531, 0, 0, 2878, 0),
('Priest', 'Discipline', 8, 49181, 2332, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 9, 41874, 3246, 3548, 0, 0, 2890, 0),
('Priest', 'Discipline', 10, 42118, 0, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 11, 47732, 0, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 12, 51378, 0, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 13, 47271, 0, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 14, 42082, 3243, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 15, 42347, 3834, 3531, 0, 0, 0, 0),
('Priest', 'Discipline', 16, 42526, 0, 0, 0, 0, 0, 0),
('Priest', 'Discipline', 17, 42520, 0, 0, 0, 0, 0, 0),
('Druid', 'Restoration', 1, 42044, 0, 0, 0, 0, 0, 0),
('Druid', 'Restoration', 2, 41275, 3794, 3531, 0, 0, 2890, 0),
('Druid', 'Restoration', 4, 41310, 3245, 3520, 3531, 0, 3600, 0),
('Druid', 'Restoration', 5, 41618, 0, 3535, 3520, 0, 2872, 3729),
('Druid', 'Restoration', 6, 41298, 3721, 3520, 3879, 0, 3602, 0),
('Druid', 'Restoration', 7, 41622, 3232, 3531, 0, 0, 2878, 0),
('Druid', 'Restoration', 8, 41626, 2332, 0, 0, 0, 0, 0),
('Druid', 'Restoration', 9, 41287, 3246, 3548, 0, 0, 2890, 0),
('Druid', 'Restoration', 10, 42118, 0, 0, 0, 0, 0, 0),
('Druid', 'Restoration', 11, 48001, 0, 0, 0, 0, 0, 0),
('Druid', 'Restoration', 12, 42137, 0, 0, 0, 0, 0, 0),
('Druid', 'Restoration', 14, 42080, 3243, 0, 0, 0, 0, 0),
('Druid', 'Restoration', 13, 51378, 0, 0, 0, 0, 0, 0),
('Druid', 'Restoration', 15, 42385, 3854, 3520, 3548, 0, 3602, 0),
('Druid', 'Restoration', 17, 42579, 0, 0, 0, 0, 0, 0),
('Hunter', 'Marksmanship', 0, 41157, 3795, 3621, 3519, 0, 2843, 0),