This repository was archived by the owner on Dec 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtype_AdventureExPhase_generated.go
1986 lines (1984 loc) · 121 KB
/
type_AdventureExPhase_generated.go
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
// Code generated by generate_structs - DO NOT EDIT.
package xivapi
type AdventureExPhase struct {
ID interface{} `json:"ID,omitempty"`
Quest struct {
QuestLevelOffset interface{} `json:"QuestLevelOffset,omitempty"`
ScriptInstruction11_ja interface{} `json:"ScriptInstruction11_ja,omitempty"`
ScriptInstruction22 interface{} `json:"ScriptInstruction22,omitempty"`
ScriptInstruction22_de interface{} `json:"ScriptInstruction22_de,omitempty"`
ScriptInstruction27_en interface{} `json:"ScriptInstruction27_en,omitempty"`
ExpFactor interface{} `json:"ExpFactor,omitempty"`
JournalGenre interface{} `json:"JournalGenre,omitempty"`
ScriptInstruction15_en interface{} `json:"ScriptInstruction15_en,omitempty"`
ScriptInstruction36 interface{} `json:"ScriptInstruction36,omitempty"`
ScriptInstruction48_en interface{} `json:"ScriptInstruction48_en,omitempty"`
ItemCountReward12 interface{} `json:"ItemCountReward12,omitempty"`
ScriptInstruction13_en interface{} `json:"ScriptInstruction13_en,omitempty"`
ScriptInstruction15_de interface{} `json:"ScriptInstruction15_de,omitempty"`
Level148 interface{} `json:"Level148,omitempty"`
ScriptInstruction10_en interface{} `json:"ScriptInstruction10_en,omitempty"`
ScriptInstruction45_ja interface{} `json:"ScriptInstruction45_ja,omitempty"`
ActionReward interface{} `json:"ActionReward,omitempty"`
Level151 interface{} `json:"Level151,omitempty"`
ScriptInstruction21 interface{} `json:"ScriptInstruction21,omitempty"`
ScriptInstruction31 interface{} `json:"ScriptInstruction31,omitempty"`
ScriptInstruction49_de interface{} `json:"ScriptInstruction49_de,omitempty"`
Level42 interface{} `json:"Level42,omitempty"`
Level70 interface{} `json:"Level70,omitempty"`
ScriptArg2 interface{} `json:"ScriptArg2,omitempty"`
ScriptArg21 interface{} `json:"ScriptArg21,omitempty"`
ScriptArg37 interface{} `json:"ScriptArg37,omitempty"`
ItemCountCatalyst0 interface{} `json:"ItemCountCatalyst0,omitempty"`
Level31 interface{} `json:"Level31,omitempty"`
Name_ja interface{} `json:"Name_ja,omitempty"`
ScriptArg29 interface{} `json:"ScriptArg29,omitempty"`
ScriptInstruction25_ja interface{} `json:"ScriptInstruction25_ja,omitempty"`
Level149 interface{} `json:"Level149,omitempty"`
ScriptInstruction23_ja interface{} `json:"ScriptInstruction23_ja,omitempty"`
ScriptInstruction29_de interface{} `json:"ScriptInstruction29_de,omitempty"`
ScriptInstruction34_ja interface{} `json:"ScriptInstruction34_ja,omitempty"`
InstanceContentUnlock interface{} `json:"InstanceContentUnlock,omitempty"`
ItemCountReward02 interface{} `json:"ItemCountReward02,omitempty"`
ScriptInstruction14_en interface{} `json:"ScriptInstruction14_en,omitempty"`
ScriptInstruction3 interface{} `json:"ScriptInstruction3,omitempty"`
ScriptInstruction19 interface{} `json:"ScriptInstruction19,omitempty"`
StainReward03 interface{} `json:"StainReward03,omitempty"`
Level125 interface{} `json:"Level125,omitempty"`
Level63 interface{} `json:"Level63,omitempty"`
OtherReward interface{} `json:"OtherReward,omitempty"`
ScriptInstruction28_en interface{} `json:"ScriptInstruction28_en,omitempty"`
ScriptInstruction35_fr interface{} `json:"ScriptInstruction35_fr,omitempty"`
ScriptInstruction43_fr interface{} `json:"ScriptInstruction43_fr,omitempty"`
StainReward02 interface{} `json:"StainReward02,omitempty"`
Level165 interface{} `json:"Level165,omitempty"`
Level73 interface{} `json:"Level73,omitempty"`
ScriptInstruction30 interface{} `json:"ScriptInstruction30,omitempty"`
ScriptInstruction47_en interface{} `json:"ScriptInstruction47_en,omitempty"`
ScriptInstruction8_en interface{} `json:"ScriptInstruction8_en,omitempty"`
BellEnd interface{} `json:"BellEnd,omitempty"`
ItemReward13 interface{} `json:"ItemReward13,omitempty"`
Level164 interface{} `json:"Level164,omitempty"`
ScriptInstruction14_de interface{} `json:"ScriptInstruction14_de,omitempty"`
ScriptInstruction31_fr interface{} `json:"ScriptInstruction31_fr,omitempty"`
ScriptInstruction43_en interface{} `json:"ScriptInstruction43_en,omitempty"`
ScriptInstruction48_de interface{} `json:"ScriptInstruction48_de,omitempty"`
ScriptInstruction9_en interface{} `json:"ScriptInstruction9_en,omitempty"`
Icon interface{} `json:"Icon,omitempty"`
Level30 interface{} `json:"Level30,omitempty"`
Level5 interface{} `json:"Level5,omitempty"`
Name_fr interface{} `json:"Name_fr,omitempty"`
PreviousQuest0 struct {
EmoteReward interface{} `json:"EmoteReward,omitempty"`
Level98 interface{} `json:"Level98,omitempty"`
TomestoneCountReward interface{} `json:"TomestoneCountReward,omitempty"`
GilReward interface{} `json:"GilReward,omitempty"`
ScriptInstruction23 interface{} `json:"ScriptInstruction23,omitempty"`
GeneralActionReward0 interface{} `json:"GeneralActionReward0,omitempty"`
IsRepeatable interface{} `json:"IsRepeatable,omitempty"`
Level24 interface{} `json:"Level24,omitempty"`
Level36 interface{} `json:"Level36,omitempty"`
Level95 interface{} `json:"Level95,omitempty"`
ScriptInstruction26_fr interface{} `json:"ScriptInstruction26_fr,omitempty"`
Level64 interface{} `json:"Level64,omitempty"`
ScriptInstruction23_ja interface{} `json:"ScriptInstruction23_ja,omitempty"`
ID interface{} `json:"ID,omitempty"`
Level15 interface{} `json:"Level15,omitempty"`
Level31 interface{} `json:"Level31,omitempty"`
ScriptArg10 interface{} `json:"ScriptArg10,omitempty"`
ScriptInstruction16 interface{} `json:"ScriptInstruction16,omitempty"`
ScriptInstruction48_en interface{} `json:"ScriptInstruction48_en,omitempty"`
ItemReward04 interface{} `json:"ItemReward04,omitempty"`
Level52 interface{} `json:"Level52,omitempty"`
Level77 interface{} `json:"Level77,omitempty"`
ScriptInstruction32_de interface{} `json:"ScriptInstruction32_de,omitempty"`
Level1 interface{} `json:"Level1,omitempty"`
Level94 interface{} `json:"Level94,omitempty"`
ScriptInstruction27 interface{} `json:"ScriptInstruction27,omitempty"`
ScriptInstruction44 interface{} `json:"ScriptInstruction44,omitempty"`
ScriptInstruction22_ja interface{} `json:"ScriptInstruction22_ja,omitempty"`
ScriptInstruction14_ja interface{} `json:"ScriptInstruction14_ja,omitempty"`
ScriptInstruction33_de interface{} `json:"ScriptInstruction33_de,omitempty"`
ScriptArg43 interface{} `json:"ScriptArg43,omitempty"`
ScriptInstruction24 interface{} `json:"ScriptInstruction24,omitempty"`
ScriptInstruction25_en interface{} `json:"ScriptInstruction25_en,omitempty"`
Level44 interface{} `json:"Level44,omitempty"`
ScriptArg35 interface{} `json:"ScriptArg35,omitempty"`
ScriptInstruction16_en interface{} `json:"ScriptInstruction16_en,omitempty"`
StainReward01 interface{} `json:"StainReward01,omitempty"`
ScriptInstruction17 interface{} `json:"ScriptInstruction17,omitempty"`
ScriptInstruction24_ja interface{} `json:"ScriptInstruction24_ja,omitempty"`
ScriptInstruction46_ja interface{} `json:"ScriptInstruction46_ja,omitempty"`
ScriptInstruction7_en interface{} `json:"ScriptInstruction7_en,omitempty"`
Level100 interface{} `json:"Level100,omitempty"`
Level70 interface{} `json:"Level70,omitempty"`
ScriptInstruction39_fr interface{} `json:"ScriptInstruction39_fr,omitempty"`
ScriptInstruction7 interface{} `json:"ScriptInstruction7,omitempty"`
IsHQReward14 interface{} `json:"IsHQReward14,omitempty"`
ScriptArg29 interface{} `json:"ScriptArg29,omitempty"`
Level167 interface{} `json:"Level167,omitempty"`
Level60 interface{} `json:"Level60,omitempty"`
ScriptInstruction18_ja interface{} `json:"ScriptInstruction18_ja,omitempty"`
ScriptInstruction30_fr interface{} `json:"ScriptInstruction30_fr,omitempty"`
ScriptInstruction37_de interface{} `json:"ScriptInstruction37_de,omitempty"`
ScriptInstruction8_fr interface{} `json:"ScriptInstruction8_fr,omitempty"`
ScriptInstruction42_de interface{} `json:"ScriptInstruction42_de,omitempty"`
ScriptArg32 interface{} `json:"ScriptArg32,omitempty"`
ScriptInstruction14_fr interface{} `json:"ScriptInstruction14_fr,omitempty"`
ScriptInstruction36_ja interface{} `json:"ScriptInstruction36_ja,omitempty"`
Level140 interface{} `json:"Level140,omitempty"`
Level73 interface{} `json:"Level73,omitempty"`
Name_fr interface{} `json:"Name_fr,omitempty"`
ScriptInstruction43 interface{} `json:"ScriptInstruction43,omitempty"`
Level107 interface{} `json:"Level107,omitempty"`
Level16 interface{} `json:"Level16,omitempty"`
Level46 interface{} `json:"Level46,omitempty"`
ScriptInstruction31_ja interface{} `json:"ScriptInstruction31_ja,omitempty"`
ScriptInstruction33 interface{} `json:"ScriptInstruction33,omitempty"`
ScriptInstruction39_ja interface{} `json:"ScriptInstruction39_ja,omitempty"`
PreviousQuest0 interface{} `json:"PreviousQuest0,omitempty"`
ScriptInstruction16_ja interface{} `json:"ScriptInstruction16_ja,omitempty"`
ScriptInstruction41_fr interface{} `json:"ScriptInstruction41_fr,omitempty"`
ScriptInstruction45_fr interface{} `json:"ScriptInstruction45_fr,omitempty"`
ScriptInstruction49 interface{} `json:"ScriptInstruction49,omitempty"`
ScriptInstruction49_fr interface{} `json:"ScriptInstruction49_fr,omitempty"`
ScriptInstruction9_ja interface{} `json:"ScriptInstruction9_ja,omitempty"`
Level40 interface{} `json:"Level40,omitempty"`
ScriptArg5 interface{} `json:"ScriptArg5,omitempty"`
ScriptInstruction1_ja interface{} `json:"ScriptInstruction1_ja,omitempty"`
ScriptInstruction41_ja interface{} `json:"ScriptInstruction41_ja,omitempty"`
ScriptInstruction5_de interface{} `json:"ScriptInstruction5_de,omitempty"`
ClassJobLevel0 interface{} `json:"ClassJobLevel0,omitempty"`
Level165 interface{} `json:"Level165,omitempty"`
Level32 interface{} `json:"Level32,omitempty"`
QuestLevelOffset interface{} `json:"QuestLevelOffset,omitempty"`
ScriptInstruction18_en interface{} `json:"ScriptInstruction18_en,omitempty"`
ScriptInstruction2_ja interface{} `json:"ScriptInstruction2_ja,omitempty"`
Level110 interface{} `json:"Level110,omitempty"`
Level116 interface{} `json:"Level116,omitempty"`
Level132 interface{} `json:"Level132,omitempty"`
ScriptInstruction12_en interface{} `json:"ScriptInstruction12_en,omitempty"`
ScriptInstruction49_de interface{} `json:"ScriptInstruction49_de,omitempty"`
Level168 interface{} `json:"Level168,omitempty"`
Level122 interface{} `json:"Level122,omitempty"`
Level58 interface{} `json:"Level58,omitempty"`
ReputationReward interface{} `json:"ReputationReward,omitempty"`
ScriptArg4 interface{} `json:"ScriptArg4,omitempty"`
ScriptInstruction15 interface{} `json:"ScriptInstruction15,omitempty"`
ClassJobUnlock interface{} `json:"ClassJobUnlock,omitempty"`
InstanceContent0 interface{} `json:"InstanceContent0,omitempty"`
ScriptArg39 interface{} `json:"ScriptArg39,omitempty"`
ScriptInstruction25_ja interface{} `json:"ScriptInstruction25_ja,omitempty"`
Name_ja interface{} `json:"Name_ja,omitempty"`
TextFile_ja interface{} `json:"TextFile_ja,omitempty"`
IsHQReward10 interface{} `json:"IsHQReward10,omitempty"`
Level76 interface{} `json:"Level76,omitempty"`
ScriptInstruction36_fr interface{} `json:"ScriptInstruction36_fr,omitempty"`
ScriptInstruction40_ja interface{} `json:"ScriptInstruction40_ja,omitempty"`
ScriptInstruction47_de interface{} `json:"ScriptInstruction47_de,omitempty"`
ENpcResidentStart interface{} `json:"ENpcResidentStart,omitempty"`
Icon interface{} `json:"Icon,omitempty"`
ItemReward02 interface{} `json:"ItemReward02,omitempty"`
Level83 interface{} `json:"Level83,omitempty"`
ScriptArg3 interface{} `json:"ScriptArg3,omitempty"`
ScriptInstruction19_en interface{} `json:"ScriptInstruction19_en,omitempty"`
ScriptInstruction33_fr interface{} `json:"ScriptInstruction33_fr,omitempty"`
ItemReward01 interface{} `json:"ItemReward01,omitempty"`
ScriptInstruction34_en interface{} `json:"ScriptInstruction34_en,omitempty"`
ScriptInstruction36_en interface{} `json:"ScriptInstruction36_en,omitempty"`
Level21 interface{} `json:"Level21,omitempty"`
Level45 interface{} `json:"Level45,omitempty"`
ScriptArg46 interface{} `json:"ScriptArg46,omitempty"`
ScriptArg48 interface{} `json:"ScriptArg48,omitempty"`
ScriptInstruction22_de interface{} `json:"ScriptInstruction22_de,omitempty"`
ScriptInstruction30_ja interface{} `json:"ScriptInstruction30_ja,omitempty"`
ItemCatalyst0 interface{} `json:"ItemCatalyst0,omitempty"`
ScriptArg25 interface{} `json:"ScriptArg25,omitempty"`
ScriptInstruction13_fr interface{} `json:"ScriptInstruction13_fr,omitempty"`
ScriptInstruction23_en interface{} `json:"ScriptInstruction23_en,omitempty"`
ScriptInstruction30_de interface{} `json:"ScriptInstruction30_de,omitempty"`
Level154 interface{} `json:"Level154,omitempty"`
ScriptArg33 interface{} `json:"ScriptArg33,omitempty"`
ScriptInstruction14 interface{} `json:"ScriptInstruction14,omitempty"`
ClassJobCategory0 interface{} `json:"ClassJobCategory0,omitempty"`
ItemCountReward13 interface{} `json:"ItemCountReward13,omitempty"`
ScriptInstruction14_de interface{} `json:"ScriptInstruction14_de,omitempty"`
ScriptInstruction34_fr interface{} `json:"ScriptInstruction34_fr,omitempty"`
ScriptInstruction46_en interface{} `json:"ScriptInstruction46_en,omitempty"`
Level13 interface{} `json:"Level13,omitempty"`
Level27 interface{} `json:"Level27,omitempty"`
ScriptInstruction4_de interface{} `json:"ScriptInstruction4_de,omitempty"`
Level134 interface{} `json:"Level134,omitempty"`
ScriptInstruction10_ja interface{} `json:"ScriptInstruction10_ja,omitempty"`
ItemCountReward10 interface{} `json:"ItemCountReward10,omitempty"`
Level137 interface{} `json:"Level137,omitempty"`
ScriptInstruction41 interface{} `json:"ScriptInstruction41,omitempty"`
Level151 interface{} `json:"Level151,omitempty"`
Level51 interface{} `json:"Level51,omitempty"`
ScriptInstruction20_fr interface{} `json:"ScriptInstruction20_fr,omitempty"`
ScriptInstruction26_en interface{} `json:"ScriptInstruction26_en,omitempty"`
ScriptInstruction43_fr interface{} `json:"ScriptInstruction43_fr,omitempty"`
ScriptInstruction49_en interface{} `json:"ScriptInstruction49_en,omitempty"`
ClassJobLevel1 interface{} `json:"ClassJobLevel1,omitempty"`
GCSeals interface{} `json:"GCSeals,omitempty"`
Level164 interface{} `json:"Level164,omitempty"`
ScriptArg2 interface{} `json:"ScriptArg2,omitempty"`
ScriptInstruction26_de interface{} `json:"ScriptInstruction26_de,omitempty"`
ItemReward11 interface{} `json:"ItemReward11,omitempty"`
Level161 interface{} `json:"Level161,omitempty"`
ScriptInstruction17_ja interface{} `json:"ScriptInstruction17_ja,omitempty"`
ScriptInstruction20_ja interface{} `json:"ScriptInstruction20_ja,omitempty"`
ScriptInstruction43_de interface{} `json:"ScriptInstruction43_de,omitempty"`
ScriptInstruction49_ja interface{} `json:"ScriptInstruction49_ja,omitempty"`
TextFile_de interface{} `json:"TextFile_de,omitempty"`
ScriptInstruction37_fr interface{} `json:"ScriptInstruction37_fr,omitempty"`
ItemCountReward03 interface{} `json:"ItemCountReward03,omitempty"`
Level102 interface{} `json:"Level102,omitempty"`
Level48 interface{} `json:"Level48,omitempty"`
Level91 interface{} `json:"Level91,omitempty"`
Level147 interface{} `json:"Level147,omitempty"`
Level26 interface{} `json:"Level26,omitempty"`
Level42 interface{} `json:"Level42,omitempty"`
Level105 interface{} `json:"Level105,omitempty"`
Level145 interface{} `json:"Level145,omitempty"`
Level86 interface{} `json:"Level86,omitempty"`
PreviousQuestJoin interface{} `json:"PreviousQuestJoin,omitempty"`
ScriptInstruction0_ja interface{} `json:"ScriptInstruction0_ja,omitempty"`
ScriptInstruction10_de interface{} `json:"ScriptInstruction10_de,omitempty"`
ScriptInstruction46_fr interface{} `json:"ScriptInstruction46_fr,omitempty"`
ScriptInstruction48_ja interface{} `json:"ScriptInstruction48_ja,omitempty"`
ScriptInstruction6_ja interface{} `json:"ScriptInstruction6_ja,omitempty"`
BeastReputationRank interface{} `json:"BeastReputationRank,omitempty"`
ClassJobCategory1 interface{} `json:"ClassJobCategory1,omitempty"`
ItemCatalyst1 interface{} `json:"ItemCatalyst1,omitempty"`
ScriptArg22 interface{} `json:"ScriptArg22,omitempty"`
ScriptInstruction11_fr interface{} `json:"ScriptInstruction11_fr,omitempty"`
ScriptInstruction19_ja interface{} `json:"ScriptInstruction19_ja,omitempty"`
ScriptInstruction1_fr interface{} `json:"ScriptInstruction1_fr,omitempty"`
ItemReward10 interface{} `json:"ItemReward10,omitempty"`
Level103 interface{} `json:"Level103,omitempty"`
Level130 interface{} `json:"Level130,omitempty"`
ScriptInstruction36_de interface{} `json:"ScriptInstruction36_de,omitempty"`
Expansion interface{} `json:"Expansion,omitempty"`
ScriptArg11 interface{} `json:"ScriptArg11,omitempty"`
ScriptInstruction34 interface{} `json:"ScriptInstruction34,omitempty"`
ScriptInstruction3_en interface{} `json:"ScriptInstruction3_en,omitempty"`
Level2 interface{} `json:"Level2,omitempty"`
ScriptArg0 interface{} `json:"ScriptArg0,omitempty"`
Level133 interface{} `json:"Level133,omitempty"`
PreviousQuest2 interface{} `json:"PreviousQuest2,omitempty"`
QuestLock1 interface{} `json:"QuestLock1,omitempty"`
ScriptArg36 interface{} `json:"ScriptArg36,omitempty"`
ScriptInstruction23_fr interface{} `json:"ScriptInstruction23_fr,omitempty"`
Level113 interface{} `json:"Level113,omitempty"`
ScriptArg6 interface{} `json:"ScriptArg6,omitempty"`
ItemCountReward05 interface{} `json:"ItemCountReward05,omitempty"`
ItemReward13 interface{} `json:"ItemReward13,omitempty"`
Level150 interface{} `json:"Level150,omitempty"`
Level152 interface{} `json:"Level152,omitempty"`
ScriptArg26 interface{} `json:"ScriptArg26,omitempty"`
ScriptInstruction0 interface{} `json:"ScriptInstruction0,omitempty"`
ScriptInstruction25_de interface{} `json:"ScriptInstruction25_de,omitempty"`
ScriptInstruction9 interface{} `json:"ScriptInstruction9,omitempty"`
Level119 interface{} `json:"Level119,omitempty"`
Level66 interface{} `json:"Level66,omitempty"`
ScriptInstruction38_en interface{} `json:"ScriptInstruction38_en,omitempty"`
Level3 interface{} `json:"Level3,omitempty"`
Level39 interface{} `json:"Level39,omitempty"`
Level81 interface{} `json:"Level81,omitempty"`
MountRequired interface{} `json:"MountRequired,omitempty"`
PlaceName interface{} `json:"PlaceName,omitempty"`
QuestLock0 interface{} `json:"QuestLock0,omitempty"`
ScriptArg17 interface{} `json:"ScriptArg17,omitempty"`
ScriptArg23 interface{} `json:"ScriptArg23,omitempty"`
ScriptInstruction3_fr interface{} `json:"ScriptInstruction3_fr,omitempty"`
ScriptInstruction44_ja interface{} `json:"ScriptInstruction44_ja,omitempty"`
ExpFactor interface{} `json:"ExpFactor,omitempty"`
Level69 interface{} `json:"Level69,omitempty"`
Level8 interface{} `json:"Level8,omitempty"`
Level82 interface{} `json:"Level82,omitempty"`
ScriptArg9 interface{} `json:"ScriptArg9,omitempty"`
ScriptInstruction17_en interface{} `json:"ScriptInstruction17_en,omitempty"`
StainReward13 interface{} `json:"StainReward13,omitempty"`
Level166 interface{} `json:"Level166,omitempty"`
ScriptArg42 interface{} `json:"ScriptArg42,omitempty"`
ScriptInstruction11_de interface{} `json:"ScriptInstruction11_de,omitempty"`
ScriptInstruction34_ja interface{} `json:"ScriptInstruction34_ja,omitempty"`
ScriptInstruction0_fr interface{} `json:"ScriptInstruction0_fr,omitempty"`
ScriptInstruction15_en interface{} `json:"ScriptInstruction15_en,omitempty"`
ScriptInstruction6 interface{} `json:"ScriptInstruction6,omitempty"`
Level124 interface{} `json:"Level124,omitempty"`
ScriptInstruction35_fr interface{} `json:"ScriptInstruction35_fr,omitempty"`
ScriptInstruction42_en interface{} `json:"ScriptInstruction42_en,omitempty"`
ScriptInstruction7_ja interface{} `json:"ScriptInstruction7_ja,omitempty"`
StainReward10 interface{} `json:"StainReward10,omitempty"`
Level169 interface{} `json:"Level169,omitempty"`
ScriptInstruction24_de interface{} `json:"ScriptInstruction24_de,omitempty"`
ScriptInstruction8_ja interface{} `json:"ScriptInstruction8_ja,omitempty"`
ActionReward interface{} `json:"ActionReward,omitempty"`
ClassJobRequired interface{} `json:"ClassJobRequired,omitempty"`
InstanceContent1 interface{} `json:"InstanceContent1,omitempty"`
Level56 interface{} `json:"Level56,omitempty"`
ScriptArg1 interface{} `json:"ScriptArg1,omitempty"`
ScriptInstruction44_fr interface{} `json:"ScriptInstruction44_fr,omitempty"`
Level108 interface{} `json:"Level108,omitempty"`
Level109 interface{} `json:"Level109,omitempty"`
Level19 interface{} `json:"Level19,omitempty"`
Level23 interface{} `json:"Level23,omitempty"`
ScriptInstruction29_en interface{} `json:"ScriptInstruction29_en,omitempty"`
ENpcResidentEnd interface{} `json:"ENpcResidentEnd,omitempty"`
Level17 interface{} `json:"Level17,omitempty"`
ScriptArg16 interface{} `json:"ScriptArg16,omitempty"`
ScriptArg24 interface{} `json:"ScriptArg24,omitempty"`
Level170 interface{} `json:"Level170,omitempty"`
Level99 interface{} `json:"Level99,omitempty"`
ScriptInstruction19_fr interface{} `json:"ScriptInstruction19_fr,omitempty"`
InstanceContentUnlock interface{} `json:"InstanceContentUnlock,omitempty"`
Level59 interface{} `json:"Level59,omitempty"`
Level63 interface{} `json:"Level63,omitempty"`
ScriptArg7 interface{} `json:"ScriptArg7,omitempty"`
ScriptInstruction11 interface{} `json:"ScriptInstruction11,omitempty"`
ScriptInstruction8 interface{} `json:"ScriptInstruction8,omitempty"`
Level138 interface{} `json:"Level138,omitempty"`
Level34 interface{} `json:"Level34,omitempty"`
ScriptInstruction42_ja interface{} `json:"ScriptInstruction42_ja,omitempty"`
ItemCountReward14 interface{} `json:"ItemCountReward14,omitempty"`
ScriptInstruction20_en interface{} `json:"ScriptInstruction20_en,omitempty"`
ItemCatalyst2 interface{} `json:"ItemCatalyst2,omitempty"`
ScriptInstruction1_en interface{} `json:"ScriptInstruction1_en,omitempty"`
ScriptInstruction39 interface{} `json:"ScriptInstruction39,omitempty"`
ScriptInstruction9_fr interface{} `json:"ScriptInstruction9_fr,omitempty"`
StainReward11 interface{} `json:"StainReward11,omitempty"`
ScriptInstruction20_de interface{} `json:"ScriptInstruction20_de,omitempty"`
ScriptInstruction29_fr interface{} `json:"ScriptInstruction29_fr,omitempty"`
ScriptInstruction2_fr interface{} `json:"ScriptInstruction2_fr,omitempty"`
ScriptInstruction30 interface{} `json:"ScriptInstruction30,omitempty"`
IsHQReward12 interface{} `json:"IsHQReward12,omitempty"`
ScriptInstruction35_ja interface{} `json:"ScriptInstruction35_ja,omitempty"`
ScriptInstruction41_de interface{} `json:"ScriptInstruction41_de,omitempty"`
ItemReward12 interface{} `json:"ItemReward12,omitempty"`
Level146 interface{} `json:"Level146,omitempty"`
ScriptInstruction25_fr interface{} `json:"ScriptInstruction25_fr,omitempty"`
Level117 interface{} `json:"Level117,omitempty"`
ScriptInstruction28_en interface{} `json:"ScriptInstruction28_en,omitempty"`
ScriptInstruction8_en interface{} `json:"ScriptInstruction8_en,omitempty"`
TextFile_fr interface{} `json:"TextFile_fr,omitempty"`
Level30 interface{} `json:"Level30,omitempty"`
Level43 interface{} `json:"Level43,omitempty"`
Level85 interface{} `json:"Level85,omitempty"`
ScriptArg49 interface{} `json:"ScriptArg49,omitempty"`
ScriptInstruction31_fr interface{} `json:"ScriptInstruction31_fr,omitempty"`
ScriptInstruction34_de interface{} `json:"ScriptInstruction34_de,omitempty"`
ScriptArg18 interface{} `json:"ScriptArg18,omitempty"`
ScriptInstruction37_ja interface{} `json:"ScriptInstruction37_ja,omitempty"`
ScriptInstruction38_ja interface{} `json:"ScriptInstruction38_ja,omitempty"`
ScriptInstruction41_en interface{} `json:"ScriptInstruction41_en,omitempty"`
Level144 interface{} `json:"Level144,omitempty"`
Level41 interface{} `json:"Level41,omitempty"`
ScriptInstruction22_en interface{} `json:"ScriptInstruction22_en,omitempty"`
ScriptInstruction39_en interface{} `json:"ScriptInstruction39_en,omitempty"`
EventIconType interface{} `json:"EventIconType,omitempty"`
Level9 interface{} `json:"Level9,omitempty"`
ScriptInstruction24_en interface{} `json:"ScriptInstruction24_en,omitempty"`
ScriptInstruction36 interface{} `json:"ScriptInstruction36,omitempty"`
ScriptInstruction5_en interface{} `json:"ScriptInstruction5_en,omitempty"`
IconSpecialID interface{} `json:"IconSpecialID,omitempty"`
Level11 interface{} `json:"Level11,omitempty"`
Level53 interface{} `json:"Level53,omitempty"`
Level54 interface{} `json:"Level54,omitempty"`
Level65 interface{} `json:"Level65,omitempty"`
Level80 interface{} `json:"Level80,omitempty"`
Level112 interface{} `json:"Level112,omitempty"`
Level159 interface{} `json:"Level159,omitempty"`
Level74 interface{} `json:"Level74,omitempty"`
ScriptInstruction0_en interface{} `json:"ScriptInstruction0_en,omitempty"`
ScriptInstruction11_ja interface{} `json:"ScriptInstruction11_ja,omitempty"`
ScriptInstruction26 interface{} `json:"ScriptInstruction26,omitempty"`
ScriptInstruction30_en interface{} `json:"ScriptInstruction30_en,omitempty"`
ScriptInstruction38_fr interface{} `json:"ScriptInstruction38_fr,omitempty"`
ScriptInstruction46 interface{} `json:"ScriptInstruction46,omitempty"`
ItemReward00 interface{} `json:"ItemReward00,omitempty"`
Level118 interface{} `json:"Level118,omitempty"`
ScriptArg27 interface{} `json:"ScriptArg27,omitempty"`
ScriptArg44 interface{} `json:"ScriptArg44,omitempty"`
ScriptInstruction18 interface{} `json:"ScriptInstruction18,omitempty"`
ScriptInstruction3 interface{} `json:"ScriptInstruction3,omitempty"`
ScriptInstruction31 interface{} `json:"ScriptInstruction31,omitempty"`
Level104 interface{} `json:"Level104,omitempty"`
Level115 interface{} `json:"Level115,omitempty"`
Level18 interface{} `json:"Level18,omitempty"`
Level35 interface{} `json:"Level35,omitempty"`
Level67 interface{} `json:"Level67,omitempty"`
ScriptArg47 interface{} `json:"ScriptArg47,omitempty"`
ScriptInstruction19 interface{} `json:"ScriptInstruction19,omitempty"`
IsHQReward11 interface{} `json:"IsHQReward11,omitempty"`
Level12 interface{} `json:"Level12,omitempty"`
Level143 interface{} `json:"Level143,omitempty"`
Level38 interface{} `json:"Level38,omitempty"`
Level88 interface{} `json:"Level88,omitempty"`
ScriptInstruction2_de interface{} `json:"ScriptInstruction2_de,omitempty"`
ScriptInstruction33_en interface{} `json:"ScriptInstruction33_en,omitempty"`
StainReward14 interface{} `json:"StainReward14,omitempty"`
Level128 interface{} `json:"Level128,omitempty"`
ScriptInstruction13 interface{} `json:"ScriptInstruction13,omitempty"`
ScriptInstruction13_en interface{} `json:"ScriptInstruction13_en,omitempty"`
ScriptInstruction22 interface{} `json:"ScriptInstruction22,omitempty"`
ScriptInstruction29_ja interface{} `json:"ScriptInstruction29_ja,omitempty"`
ScriptInstruction47_fr interface{} `json:"ScriptInstruction47_fr,omitempty"`
ScriptInstruction47_ja interface{} `json:"ScriptInstruction47_ja,omitempty"`
ScriptInstruction48_fr interface{} `json:"ScriptInstruction48_fr,omitempty"`
JournalGenre interface{} `json:"JournalGenre,omitempty"`
Level153 interface{} `json:"Level153,omitempty"`
Level72 interface{} `json:"Level72,omitempty"`
ScriptArg13 interface{} `json:"ScriptArg13,omitempty"`
ItemCountReward00 interface{} `json:"ItemCountReward00,omitempty"`
ScriptArg14 interface{} `json:"ScriptArg14,omitempty"`
ItemReward14 interface{} `json:"ItemReward14,omitempty"`
ScriptArg28 interface{} `json:"ScriptArg28,omitempty"`
ScriptArg40 interface{} `json:"ScriptArg40,omitempty"`
IconID interface{} `json:"IconID,omitempty"`
Level84 interface{} `json:"Level84,omitempty"`
ScriptArg19 interface{} `json:"ScriptArg19,omitempty"`
ScriptInstruction19_de interface{} `json:"ScriptInstruction19_de,omitempty"`
SortKey interface{} `json:"SortKey,omitempty"`
Level142 interface{} `json:"Level142,omitempty"`
ScriptInstruction37_en interface{} `json:"ScriptInstruction37_en,omitempty"`
ScriptInstruction3_ja interface{} `json:"ScriptInstruction3_ja,omitempty"`
ScriptInstruction45_en interface{} `json:"ScriptInstruction45_en,omitempty"`
BellEnd interface{} `json:"BellEnd,omitempty"`
Level4 interface{} `json:"Level4,omitempty"`
ScriptInstruction21 interface{} `json:"ScriptInstruction21,omitempty"`
ScriptInstruction27_fr interface{} `json:"ScriptInstruction27_fr,omitempty"`
ScriptInstruction2_en interface{} `json:"ScriptInstruction2_en,omitempty"`
ScriptInstruction3_de interface{} `json:"ScriptInstruction3_de,omitempty"`
ScriptInstruction4_en interface{} `json:"ScriptInstruction4_en,omitempty"`
ScriptInstruction4_fr interface{} `json:"ScriptInstruction4_fr,omitempty"`
ScriptInstruction7_fr interface{} `json:"ScriptInstruction7_fr,omitempty"`
ScriptArg45 interface{} `json:"ScriptArg45,omitempty"`
ScriptInstruction44_de interface{} `json:"ScriptInstruction44_de,omitempty"`
ScriptInstruction45_de interface{} `json:"ScriptInstruction45_de,omitempty"`
ScriptInstruction5_ja interface{} `json:"ScriptInstruction5_ja,omitempty"`
TomestoneReward interface{} `json:"TomestoneReward,omitempty"`
Level111 interface{} `json:"Level111,omitempty"`
Level68 interface{} `json:"Level68,omitempty"`
Level78 interface{} `json:"Level78,omitempty"`
QuestLockJoin interface{} `json:"QuestLockJoin,omitempty"`
ScriptArg34 interface{} `json:"ScriptArg34,omitempty"`
ScriptInstruction12 interface{} `json:"ScriptInstruction12,omitempty"`
ScriptInstruction9_de interface{} `json:"ScriptInstruction9_de,omitempty"`
Level47 interface{} `json:"Level47,omitempty"`
ScriptArg31 interface{} `json:"ScriptArg31,omitempty"`
ScriptInstruction16_fr interface{} `json:"ScriptInstruction16_fr,omitempty"`
ScriptInstruction4_ja interface{} `json:"ScriptInstruction4_ja,omitempty"`
GeneralActionReward1 interface{} `json:"GeneralActionReward1,omitempty"`
ScriptInstruction32_fr interface{} `json:"ScriptInstruction32_fr,omitempty"`
ScriptInstruction40_fr interface{} `json:"ScriptInstruction40_fr,omitempty"`
IsHouseRequired interface{} `json:"IsHouseRequired,omitempty"`
ScriptInstruction1 interface{} `json:"ScriptInstruction1,omitempty"`
ScriptInstruction29_de interface{} `json:"ScriptInstruction29_de,omitempty"`
ScriptInstruction32_ja interface{} `json:"ScriptInstruction32_ja,omitempty"`
StainReward05 interface{} `json:"StainReward05,omitempty"`
Level127 interface{} `json:"Level127,omitempty"`
ScriptInstruction39_de interface{} `json:"ScriptInstruction39_de,omitempty"`
Level148 interface{} `json:"Level148,omitempty"`
Level79 interface{} `json:"Level79,omitempty"`
ScriptArg21 interface{} `json:"ScriptArg21,omitempty"`
ScriptInstruction42_fr interface{} `json:"ScriptInstruction42_fr,omitempty"`
Level6 interface{} `json:"Level6,omitempty"`
ScriptInstruction18_de interface{} `json:"ScriptInstruction18_de,omitempty"`
ScriptInstruction31_de interface{} `json:"ScriptInstruction31_de,omitempty"`
Level129 interface{} `json:"Level129,omitempty"`
Level50 interface{} `json:"Level50,omitempty"`
ScriptInstruction40_en interface{} `json:"ScriptInstruction40_en,omitempty"`
ItemCountCatalyst0 interface{} `json:"ItemCountCatalyst0,omitempty"`
Level0 interface{} `json:"Level0,omitempty"`
Level162 interface{} `json:"Level162,omitempty"`
ScriptInstruction40_de interface{} `json:"ScriptInstruction40_de,omitempty"`
StainReward02 interface{} `json:"StainReward02,omitempty"`
TextFile interface{} `json:"TextFile,omitempty"`
Level5 interface{} `json:"Level5,omitempty"`
ScriptInstruction10_en interface{} `json:"ScriptInstruction10_en,omitempty"`
IsHQReward13 interface{} `json:"IsHQReward13,omitempty"`
ItemReward03 interface{} `json:"ItemReward03,omitempty"`
Level29 interface{} `json:"Level29,omitempty"`
ScriptInstruction12_ja interface{} `json:"ScriptInstruction12_ja,omitempty"`
StainReward04 interface{} `json:"StainReward04,omitempty"`
ScriptInstruction11_en interface{} `json:"ScriptInstruction11_en,omitempty"`
ScriptInstruction35_de interface{} `json:"ScriptInstruction35_de,omitempty"`
ScriptInstruction47_en interface{} `json:"ScriptInstruction47_en,omitempty"`
StainReward12 interface{} `json:"StainReward12,omitempty"`
Level37 interface{} `json:"Level37,omitempty"`
ScriptInstruction10 interface{} `json:"ScriptInstruction10,omitempty"`
ScriptInstruction28_de interface{} `json:"ScriptInstruction28_de,omitempty"`
ScriptInstruction28_ja interface{} `json:"ScriptInstruction28_ja,omitempty"`
ScriptInstruction6_de interface{} `json:"ScriptInstruction6_de,omitempty"`
Level93 interface{} `json:"Level93,omitempty"`
PreviousQuest1 interface{} `json:"PreviousQuest1,omitempty"`
Level125 interface{} `json:"Level125,omitempty"`
Level139 interface{} `json:"Level139,omitempty"`
Level96 interface{} `json:"Level96,omitempty"`
ScriptArg8 interface{} `json:"ScriptArg8,omitempty"`
ScriptInstruction27_ja interface{} `json:"ScriptInstruction27_ja,omitempty"`
ScriptInstruction7_de interface{} `json:"ScriptInstruction7_de,omitempty"`
StainReward03 interface{} `json:"StainReward03,omitempty"`
ScriptInstruction26_ja interface{} `json:"ScriptInstruction26_ja,omitempty"`
ScriptInstruction32_en interface{} `json:"ScriptInstruction32_en,omitempty"`
ScriptInstruction40 interface{} `json:"ScriptInstruction40,omitempty"`
Level49 interface{} `json:"Level49,omitempty"`
ScriptInstruction12_fr interface{} `json:"ScriptInstruction12_fr,omitempty"`
ScriptInstruction13_de interface{} `json:"ScriptInstruction13_de,omitempty"`
ScriptInstruction21_ja interface{} `json:"ScriptInstruction21_ja,omitempty"`
ScriptInstruction44_en interface{} `json:"ScriptInstruction44_en,omitempty"`
BellStart interface{} `json:"BellStart,omitempty"`
Level131 interface{} `json:"Level131,omitempty"`
ScriptArg15 interface{} `json:"ScriptArg15,omitempty"`
ScriptInstruction13_ja interface{} `json:"ScriptInstruction13_ja,omitempty"`
ScriptInstruction15_de interface{} `json:"ScriptInstruction15_de,omitempty"`
ScriptInstruction25 interface{} `json:"ScriptInstruction25,omitempty"`
ScriptInstruction38_de interface{} `json:"ScriptInstruction38_de,omitempty"`
ScriptInstruction47 interface{} `json:"ScriptInstruction47,omitempty"`
StainReward00 interface{} `json:"StainReward00,omitempty"`
Level160 interface{} `json:"Level160,omitempty"`
Level61 interface{} `json:"Level61,omitempty"`
ScriptInstruction15_ja interface{} `json:"ScriptInstruction15_ja,omitempty"`
Name_de interface{} `json:"Name_de,omitempty"`
ScriptInstruction21_en interface{} `json:"ScriptInstruction21_en,omitempty"`
Level156 interface{} `json:"Level156,omitempty"`
Level87 interface{} `json:"Level87,omitempty"`
ScriptInstruction22_fr interface{} `json:"ScriptInstruction22_fr,omitempty"`
ScriptInstruction24_fr interface{} `json:"ScriptInstruction24_fr,omitempty"`
ScriptInstruction45 interface{} `json:"ScriptInstruction45,omitempty"`
ScriptInstruction6_fr interface{} `json:"ScriptInstruction6_fr,omitempty"`
ScriptInstruction42 interface{} `json:"ScriptInstruction42,omitempty"`
InstanceContent2 interface{} `json:"InstanceContent2,omitempty"`
Level123 interface{} `json:"Level123,omitempty"`
Level136 interface{} `json:"Level136,omitempty"`
Level71 interface{} `json:"Level71,omitempty"`
ScriptArg38 interface{} `json:"ScriptArg38,omitempty"`
ScriptInstruction17_fr interface{} `json:"ScriptInstruction17_fr,omitempty"`
ScriptInstruction1_de interface{} `json:"ScriptInstruction1_de,omitempty"`
ScriptInstruction20 interface{} `json:"ScriptInstruction20,omitempty"`
ScriptInstruction9_en interface{} `json:"ScriptInstruction9_en,omitempty"`
GrandCompanyRank interface{} `json:"GrandCompanyRank,omitempty"`
Level14 interface{} `json:"Level14,omitempty"`
Level97 interface{} `json:"Level97,omitempty"`
ScriptInstruction10_fr interface{} `json:"ScriptInstruction10_fr,omitempty"`
ScriptInstruction12_de interface{} `json:"ScriptInstruction12_de,omitempty"`
ScriptInstruction29 interface{} `json:"ScriptInstruction29,omitempty"`
InstanceContentJoin interface{} `json:"InstanceContentJoin,omitempty"`
Level114 interface{} `json:"Level114,omitempty"`
Level89 interface{} `json:"Level89,omitempty"`
Level92 interface{} `json:"Level92,omitempty"`
ScriptInstruction33_ja interface{} `json:"ScriptInstruction33_ja,omitempty"`
ScriptInstruction45_ja interface{} `json:"ScriptInstruction45_ja,omitempty"`
Level155 interface{} `json:"Level155,omitempty"`
ScriptInstruction18_fr interface{} `json:"ScriptInstruction18_fr,omitempty"`
ScriptInstruction5 interface{} `json:"ScriptInstruction5,omitempty"`
Level141 interface{} `json:"Level141,omitempty"`
Level22 interface{} `json:"Level22,omitempty"`
Level55 interface{} `json:"Level55,omitempty"`
Level90 interface{} `json:"Level90,omitempty"`
ScriptInstruction32 interface{} `json:"ScriptInstruction32,omitempty"`
ScriptInstruction48 interface{} `json:"ScriptInstruction48,omitempty"`
ScriptInstruction6_en interface{} `json:"ScriptInstruction6_en,omitempty"`
ItemCountCatalyst1 interface{} `json:"ItemCountCatalyst1,omitempty"`
ScriptInstruction0_de interface{} `json:"ScriptInstruction0_de,omitempty"`
ScriptInstruction2 interface{} `json:"ScriptInstruction2,omitempty"`
ScriptInstruction27_en interface{} `json:"ScriptInstruction27_en,omitempty"`
IconSpecial interface{} `json:"IconSpecial,omitempty"`
ItemCountReward01 interface{} `json:"ItemCountReward01,omitempty"`
ItemCountReward11 interface{} `json:"ItemCountReward11,omitempty"`
Level33 interface{} `json:"Level33,omitempty"`
Level57 interface{} `json:"Level57,omitempty"`
Level7 interface{} `json:"Level7,omitempty"`
ScriptArg30 interface{} `json:"ScriptArg30,omitempty"`
ScriptInstruction14_en interface{} `json:"ScriptInstruction14_en,omitempty"`
ScriptInstruction23_de interface{} `json:"ScriptInstruction23_de,omitempty"`
ScriptInstruction28_fr interface{} `json:"ScriptInstruction28_fr,omitempty"`
ScriptInstruction37 interface{} `json:"ScriptInstruction37,omitempty"`
ScriptInstruction4 interface{} `json:"ScriptInstruction4,omitempty"`
ScriptInstruction43_ja interface{} `json:"ScriptInstruction43_ja,omitempty"`
GrandCompany interface{} `json:"GrandCompany,omitempty"`
Level20 interface{} `json:"Level20,omitempty"`
ScriptInstruction17_de interface{} `json:"ScriptInstruction17_de,omitempty"`
ScriptInstruction8_de interface{} `json:"ScriptInstruction8_de,omitempty"`
ScriptInstruction16_de interface{} `json:"ScriptInstruction16_de,omitempty"`
ScriptInstruction21_fr interface{} `json:"ScriptInstruction21_fr,omitempty"`
ScriptInstruction46_de interface{} `json:"ScriptInstruction46_de,omitempty"`
ScriptInstruction48_de interface{} `json:"ScriptInstruction48_de,omitempty"`
TextFile_en interface{} `json:"TextFile_en,omitempty"`
ItemRewardType interface{} `json:"ItemRewardType,omitempty"`
Level10 interface{} `json:"Level10,omitempty"`
Level149 interface{} `json:"Level149,omitempty"`
RepeatIntervalType interface{} `json:"RepeatIntervalType,omitempty"`
ScriptInstruction31_en interface{} `json:"ScriptInstruction31_en,omitempty"`
BeastTribe interface{} `json:"BeastTribe,omitempty"`
ItemCountReward04 interface{} `json:"ItemCountReward04,omitempty"`
Level106 interface{} `json:"Level106,omitempty"`
Level120 interface{} `json:"Level120,omitempty"`
Level75 interface{} `json:"Level75,omitempty"`
Name interface{} `json:"Name,omitempty"`
ScriptArg41 interface{} `json:"ScriptArg41,omitempty"`
ScriptInstruction21_de interface{} `json:"ScriptInstruction21_de,omitempty"`
ScriptInstruction27_de interface{} `json:"ScriptInstruction27_de,omitempty"`
ItemCountReward02 interface{} `json:"ItemCountReward02,omitempty"`
ItemCountReward12 interface{} `json:"ItemCountReward12,omitempty"`
ItemReward05 interface{} `json:"ItemReward05,omitempty"`
Level101 interface{} `json:"Level101,omitempty"`
Level126 interface{} `json:"Level126,omitempty"`
Level157 interface{} `json:"Level157,omitempty"`
Level163 interface{} `json:"Level163,omitempty"`
Level28 interface{} `json:"Level28,omitempty"`
ScriptArg12 interface{} `json:"ScriptArg12,omitempty"`
ScriptArg37 interface{} `json:"ScriptArg37,omitempty"`
ScriptInstruction35 interface{} `json:"ScriptInstruction35,omitempty"`
ScriptInstruction43_en interface{} `json:"ScriptInstruction43_en,omitempty"`
Level135 interface{} `json:"Level135,omitempty"`
ScriptArg20 interface{} `json:"ScriptArg20,omitempty"`
ScriptInstruction38 interface{} `json:"ScriptInstruction38,omitempty"`
ScriptInstruction5_fr interface{} `json:"ScriptInstruction5_fr,omitempty"`
ItemCountCatalyst2 interface{} `json:"ItemCountCatalyst2,omitempty"`
Level121 interface{} `json:"Level121,omitempty"`
Level158 interface{} `json:"Level158,omitempty"`
Level62 interface{} `json:"Level62,omitempty"`
ScriptInstruction15_fr interface{} `json:"ScriptInstruction15_fr,omitempty"`
Level25 interface{} `json:"Level25,omitempty"`
Name_en interface{} `json:"Name_en,omitempty"`
OtherReward interface{} `json:"OtherReward,omitempty"`
ScriptInstruction28 interface{} `json:"ScriptInstruction28,omitempty"`
ScriptInstruction35_en interface{} `json:"ScriptInstruction35_en,omitempty"`
}
ScriptArg39 interface{} `json:"ScriptArg39,omitempty"`
ScriptInstruction8_ja interface{} `json:"ScriptInstruction8_ja,omitempty"`
InstanceContentJoin interface{} `json:"InstanceContentJoin,omitempty"`
ScriptInstruction11_en interface{} `json:"ScriptInstruction11_en,omitempty"`
ScriptInstruction7 interface{} `json:"ScriptInstruction7,omitempty"`
ItemCountReward13 interface{} `json:"ItemCountReward13,omitempty"`
Level123 interface{} `json:"Level123,omitempty"`
Level33 interface{} `json:"Level33,omitempty"`
Level69 interface{} `json:"Level69,omitempty"`
ScriptInstruction18_en interface{} `json:"ScriptInstruction18_en,omitempty"`
ScriptInstruction3_en interface{} `json:"ScriptInstruction3_en,omitempty"`
Level135 interface{} `json:"Level135,omitempty"`
Level20 interface{} `json:"Level20,omitempty"`
QuestLock1 interface{} `json:"QuestLock1,omitempty"`
ScriptInstruction34_fr interface{} `json:"ScriptInstruction34_fr,omitempty"`
ScriptInstruction41 interface{} `json:"ScriptInstruction41,omitempty"`
Level156 interface{} `json:"Level156,omitempty"`
ScriptInstruction4 interface{} `json:"ScriptInstruction4,omitempty"`
ScriptInstruction4_ja interface{} `json:"ScriptInstruction4_ja,omitempty"`
TextFile_en interface{} `json:"TextFile_en,omitempty"`
Level13 interface{} `json:"Level13,omitempty"`
Level154 interface{} `json:"Level154,omitempty"`
Level29 interface{} `json:"Level29,omitempty"`
ScriptInstruction13_de interface{} `json:"ScriptInstruction13_de,omitempty"`
StainReward05 interface{} `json:"StainReward05,omitempty"`
Level1 interface{} `json:"Level1,omitempty"`
Level157 interface{} `json:"Level157,omitempty"`
Level40 interface{} `json:"Level40,omitempty"`
Level88 interface{} `json:"Level88,omitempty"`
ScriptArg3 interface{} `json:"ScriptArg3,omitempty"`
ScriptInstruction30_de interface{} `json:"ScriptInstruction30_de,omitempty"`
ScriptInstruction46_fr interface{} `json:"ScriptInstruction46_fr,omitempty"`
ClassJobCategory1 interface{} `json:"ClassJobCategory1,omitempty"`
ItemReward11 interface{} `json:"ItemReward11,omitempty"`
Level27 interface{} `json:"Level27,omitempty"`
ClassJobLevel1 interface{} `json:"ClassJobLevel1,omitempty"`
ItemCatalyst1 interface{} `json:"ItemCatalyst1,omitempty"`
Level105 interface{} `json:"Level105,omitempty"`
ScriptArg0 interface{} `json:"ScriptArg0,omitempty"`
ScriptInstruction10_ja interface{} `json:"ScriptInstruction10_ja,omitempty"`
ScriptInstruction28_ja interface{} `json:"ScriptInstruction28_ja,omitempty"`
ScriptInstruction33_en interface{} `json:"ScriptInstruction33_en,omitempty"`
IconID interface{} `json:"IconID,omitempty"`
Level170 interface{} `json:"Level170,omitempty"`
Level38 interface{} `json:"Level38,omitempty"`
ScriptInstruction46_ja interface{} `json:"ScriptInstruction46_ja,omitempty"`
ClassJobLevel0 interface{} `json:"ClassJobLevel0,omitempty"`
Level59 interface{} `json:"Level59,omitempty"`
Level6 interface{} `json:"Level6,omitempty"`
ScriptInstruction23_en interface{} `json:"ScriptInstruction23_en,omitempty"`
ItemCountReward00 interface{} `json:"ItemCountReward00,omitempty"`
ScriptArg12 interface{} `json:"ScriptArg12,omitempty"`
ScriptArg40 interface{} `json:"ScriptArg40,omitempty"`
ScriptInstruction33_fr interface{} `json:"ScriptInstruction33_fr,omitempty"`
ScriptInstruction42_en interface{} `json:"ScriptInstruction42_en,omitempty"`
ItemReward03 interface{} `json:"ItemReward03,omitempty"`
Level109 interface{} `json:"Level109,omitempty"`
PreviousQuest2 interface{} `json:"PreviousQuest2,omitempty"`
ScriptInstruction13_ja interface{} `json:"ScriptInstruction13_ja,omitempty"`
Level45 interface{} `json:"Level45,omitempty"`
ScriptInstruction48 interface{} `json:"ScriptInstruction48,omitempty"`
ClassJobRequired interface{} `json:"ClassJobRequired,omitempty"`
GeneralActionReward1 interface{} `json:"GeneralActionReward1,omitempty"`
ScriptInstruction13_fr interface{} `json:"ScriptInstruction13_fr,omitempty"`
ScriptInstruction22_en interface{} `json:"ScriptInstruction22_en,omitempty"`
ScriptInstruction2_fr interface{} `json:"ScriptInstruction2_fr,omitempty"`
ScriptInstruction32_de interface{} `json:"ScriptInstruction32_de,omitempty"`
ScriptInstruction41_de interface{} `json:"ScriptInstruction41_de,omitempty"`
Level145 interface{} `json:"Level145,omitempty"`
Level18 interface{} `json:"Level18,omitempty"`
Level52 interface{} `json:"Level52,omitempty"`
ScriptInstruction26 interface{} `json:"ScriptInstruction26,omitempty"`
ScriptInstruction30_fr interface{} `json:"ScriptInstruction30_fr,omitempty"`
ScriptInstruction44 interface{} `json:"ScriptInstruction44,omitempty"`
TextFile_ja interface{} `json:"TextFile_ja,omitempty"`
Level76 interface{} `json:"Level76,omitempty"`
ScriptInstruction20_de interface{} `json:"ScriptInstruction20_de,omitempty"`
ScriptInstruction49_ja interface{} `json:"ScriptInstruction49_ja,omitempty"`
ScriptInstruction34_de interface{} `json:"ScriptInstruction34_de,omitempty"`
ScriptInstruction49_fr interface{} `json:"ScriptInstruction49_fr,omitempty"`
IsHQReward13 interface{} `json:"IsHQReward13,omitempty"`
Level136 interface{} `json:"Level136,omitempty"`
Level44 interface{} `json:"Level44,omitempty"`
ScriptInstruction41_ja interface{} `json:"ScriptInstruction41_ja,omitempty"`
ScriptInstruction4_de interface{} `json:"ScriptInstruction4_de,omitempty"`
ScriptInstruction5_en interface{} `json:"ScriptInstruction5_en,omitempty"`
ItemCatalyst0 interface{} `json:"ItemCatalyst0,omitempty"`
Level113 interface{} `json:"Level113,omitempty"`
Level153 interface{} `json:"Level153,omitempty"`
Name_en interface{} `json:"Name_en,omitempty"`
ScriptInstruction12 interface{} `json:"ScriptInstruction12,omitempty"`
ScriptInstruction47_de interface{} `json:"ScriptInstruction47_de,omitempty"`
ScriptInstruction47_fr interface{} `json:"ScriptInstruction47_fr,omitempty"`
ItemReward00 interface{} `json:"ItemReward00,omitempty"`
Level118 interface{} `json:"Level118,omitempty"`
ScriptArg5 interface{} `json:"ScriptArg5,omitempty"`
ScriptInstruction44_en interface{} `json:"ScriptInstruction44_en,omitempty"`
ItemCountReward14 interface{} `json:"ItemCountReward14,omitempty"`
Level58 interface{} `json:"Level58,omitempty"`
Level61 interface{} `json:"Level61,omitempty"`
ScriptInstruction6_fr interface{} `json:"ScriptInstruction6_fr,omitempty"`
IsHQReward11 interface{} `json:"IsHQReward11,omitempty"`
Level144 interface{} `json:"Level144,omitempty"`
ScriptArg30 interface{} `json:"ScriptArg30,omitempty"`
ScriptInstruction6_ja interface{} `json:"ScriptInstruction6_ja,omitempty"`
Level155 interface{} `json:"Level155,omitempty"`
ScriptInstruction37_de interface{} `json:"ScriptInstruction37_de,omitempty"`
ScriptInstruction38_en interface{} `json:"ScriptInstruction38_en,omitempty"`
BellStart interface{} `json:"BellStart,omitempty"`
ScriptInstruction36_en interface{} `json:"ScriptInstruction36_en,omitempty"`
ScriptInstruction42_ja interface{} `json:"ScriptInstruction42_ja,omitempty"`
Level122 interface{} `json:"Level122,omitempty"`
Level133 interface{} `json:"Level133,omitempty"`
StainReward00 interface{} `json:"StainReward00,omitempty"`
Level161 interface{} `json:"Level161,omitempty"`
Level39 interface{} `json:"Level39,omitempty"`
Level67 interface{} `json:"Level67,omitempty"`
Level81 interface{} `json:"Level81,omitempty"`
ScriptInstruction37_ja interface{} `json:"ScriptInstruction37_ja,omitempty"`
StainReward01 interface{} `json:"StainReward01,omitempty"`
Level147 interface{} `json:"Level147,omitempty"`
Level16 interface{} `json:"Level16,omitempty"`
Level162 interface{} `json:"Level162,omitempty"`
Level71 interface{} `json:"Level71,omitempty"`
ScriptInstruction12_ja interface{} `json:"ScriptInstruction12_ja,omitempty"`
ScriptInstruction20 interface{} `json:"ScriptInstruction20,omitempty"`
ScriptInstruction4_en interface{} `json:"ScriptInstruction4_en,omitempty"`
ScriptInstruction45_en interface{} `json:"ScriptInstruction45_en,omitempty"`
Level127 interface{} `json:"Level127,omitempty"`
ScriptArg1 interface{} `json:"ScriptArg1,omitempty"`
ScriptArg43 interface{} `json:"ScriptArg43,omitempty"`
ScriptArg8 interface{} `json:"ScriptArg8,omitempty"`
ScriptInstruction16_de interface{} `json:"ScriptInstruction16_de,omitempty"`
ScriptInstruction25_en interface{} `json:"ScriptInstruction25_en,omitempty"`
ScriptInstruction27_de interface{} `json:"ScriptInstruction27_de,omitempty"`
Level112 interface{} `json:"Level112,omitempty"`
ScriptInstruction24_fr interface{} `json:"ScriptInstruction24_fr,omitempty"`
ScriptInstruction31_de interface{} `json:"ScriptInstruction31_de,omitempty"`
ScriptInstruction45_fr interface{} `json:"ScriptInstruction45_fr,omitempty"`
ItemRewardType interface{} `json:"ItemRewardType,omitempty"`
Level66 interface{} `json:"Level66,omitempty"`
Level97 interface{} `json:"Level97,omitempty"`
ScriptArg27 interface{} `json:"ScriptArg27,omitempty"`
ScriptInstruction19_en interface{} `json:"ScriptInstruction19_en,omitempty"`
ScriptInstruction25 interface{} `json:"ScriptInstruction25,omitempty"`
ScriptInstruction43 interface{} `json:"ScriptInstruction43,omitempty"`
ItemCountCatalyst2 interface{} `json:"ItemCountCatalyst2,omitempty"`
Level115 interface{} `json:"Level115,omitempty"`
ScriptInstruction30_ja interface{} `json:"ScriptInstruction30_ja,omitempty"`
Level163 interface{} `json:"Level163,omitempty"`
ScriptInstruction26_fr interface{} `json:"ScriptInstruction26_fr,omitempty"`
Level168 interface{} `json:"Level168,omitempty"`
Level3 interface{} `json:"Level3,omitempty"`
ScriptInstruction37_fr interface{} `json:"ScriptInstruction37_fr,omitempty"`
ScriptInstruction46 interface{} `json:"ScriptInstruction46,omitempty"`
SortKey interface{} `json:"SortKey,omitempty"`
ItemCountReward04 interface{} `json:"ItemCountReward04,omitempty"`
Level142 interface{} `json:"Level142,omitempty"`
Level24 interface{} `json:"Level24,omitempty"`
ScriptInstruction21_en interface{} `json:"ScriptInstruction21_en,omitempty"`
Level84 interface{} `json:"Level84,omitempty"`
Level89 interface{} `json:"Level89,omitempty"`
ScriptArg11 interface{} `json:"ScriptArg11,omitempty"`
ScriptInstruction29_fr interface{} `json:"ScriptInstruction29_fr,omitempty"`
Level50 interface{} `json:"Level50,omitempty"`
Level60 interface{} `json:"Level60,omitempty"`
Level77 interface{} `json:"Level77,omitempty"`
Level92 interface{} `json:"Level92,omitempty"`
ScriptInstruction16 interface{} `json:"ScriptInstruction16,omitempty"`
ScriptInstruction35_de interface{} `json:"ScriptInstruction35_de,omitempty"`
ScriptInstruction8_fr interface{} `json:"ScriptInstruction8_fr,omitempty"`
ItemCountReward01 interface{} `json:"ItemCountReward01,omitempty"`
ItemReward10 interface{} `json:"ItemReward10,omitempty"`
ScriptInstruction2 interface{} `json:"ScriptInstruction2,omitempty"`
ScriptInstruction21_de interface{} `json:"ScriptInstruction21_de,omitempty"`
ScriptInstruction26_ja interface{} `json:"ScriptInstruction26_ja,omitempty"`
ScriptInstruction44_de interface{} `json:"ScriptInstruction44_de,omitempty"`
Level7 interface{} `json:"Level7,omitempty"`
ScriptInstruction25_fr interface{} `json:"ScriptInstruction25_fr,omitempty"`
ScriptInstruction27_fr interface{} `json:"ScriptInstruction27_fr,omitempty"`
Level101 interface{} `json:"Level101,omitempty"`
Level104 interface{} `json:"Level104,omitempty"`
Level126 interface{} `json:"Level126,omitempty"`
ScriptInstruction10_de interface{} `json:"ScriptInstruction10_de,omitempty"`
ScriptInstruction14_ja interface{} `json:"ScriptInstruction14_ja,omitempty"`
ScriptInstruction1_fr interface{} `json:"ScriptInstruction1_fr,omitempty"`
ScriptInstruction47_ja interface{} `json:"ScriptInstruction47_ja,omitempty"`
EventIconType struct {
ID interface{} `json:"ID,omitempty"`
MapIconAvailable interface{} `json:"MapIconAvailable,omitempty"`
MapIconInvalid interface{} `json:"MapIconInvalid,omitempty"`
NpcIconAvailable interface{} `json:"NpcIconAvailable,omitempty"`
IconRange interface{} `json:"IconRange,omitempty"`
MapIconAvailableID interface{} `json:"MapIconAvailableID,omitempty"`
MapIconInvalidID interface{} `json:"MapIconInvalidID,omitempty"`
NpcIconAvailableID interface{} `json:"NpcIconAvailableID,omitempty"`
NpcIconInvalid interface{} `json:"NpcIconInvalid,omitempty"`
NpcIconInvalidID interface{} `json:"NpcIconInvalidID,omitempty"`
}
GrandCompany interface{} `json:"GrandCompany,omitempty"`
Level108 interface{} `json:"Level108,omitempty"`
ScriptInstruction23_de interface{} `json:"ScriptInstruction23_de,omitempty"`
ScriptInstruction3_de interface{} `json:"ScriptInstruction3_de,omitempty"`
Level129 interface{} `json:"Level129,omitempty"`
PreviousQuest1 struct {
Level165 interface{} `json:"Level165,omitempty"`
Level19 interface{} `json:"Level19,omitempty"`
ScriptInstruction22_de interface{} `json:"ScriptInstruction22_de,omitempty"`
Level63 interface{} `json:"Level63,omitempty"`
ScriptArg42 interface{} `json:"ScriptArg42,omitempty"`
ScriptInstruction13_ja interface{} `json:"ScriptInstruction13_ja,omitempty"`
ScriptInstruction33_ja interface{} `json:"ScriptInstruction33_ja,omitempty"`
ScriptInstruction44_ja interface{} `json:"ScriptInstruction44_ja,omitempty"`
ItemCatalyst2 interface{} `json:"ItemCatalyst2,omitempty"`
Level24 interface{} `json:"Level24,omitempty"`
Level67 interface{} `json:"Level67,omitempty"`
ScriptArg3 interface{} `json:"ScriptArg3,omitempty"`
ScriptInstruction31_de interface{} `json:"ScriptInstruction31_de,omitempty"`
ScriptInstruction37_fr interface{} `json:"ScriptInstruction37_fr,omitempty"`
ItemCountReward10 interface{} `json:"ItemCountReward10,omitempty"`
ItemCountReward13 interface{} `json:"ItemCountReward13,omitempty"`
Level149 interface{} `json:"Level149,omitempty"`
ScriptArg16 interface{} `json:"ScriptArg16,omitempty"`
ScriptArg45 interface{} `json:"ScriptArg45,omitempty"`
ClassJobLevel1 interface{} `json:"ClassJobLevel1,omitempty"`
ScriptInstruction41_fr interface{} `json:"ScriptInstruction41_fr,omitempty"`
ScriptInstruction47_fr interface{} `json:"ScriptInstruction47_fr,omitempty"`
Level121 interface{} `json:"Level121,omitempty"`
Level128 interface{} `json:"Level128,omitempty"`
Level69 interface{} `json:"Level69,omitempty"`
ScriptArg13 interface{} `json:"ScriptArg13,omitempty"`
ScriptInstruction10_fr interface{} `json:"ScriptInstruction10_fr,omitempty"`
ScriptInstruction14_fr interface{} `json:"ScriptInstruction14_fr,omitempty"`
ScriptInstruction45 interface{} `json:"ScriptInstruction45,omitempty"`
BeastReputationRank interface{} `json:"BeastReputationRank,omitempty"`
ItemCountReward05 interface{} `json:"ItemCountReward05,omitempty"`
Level122 interface{} `json:"Level122,omitempty"`
Level152 interface{} `json:"Level152,omitempty"`
PreviousQuest0 interface{} `json:"PreviousQuest0,omitempty"`
ScriptInstruction26_de interface{} `json:"ScriptInstruction26_de,omitempty"`
ScriptInstruction30_fr interface{} `json:"ScriptInstruction30_fr,omitempty"`
ScriptInstruction32 interface{} `json:"ScriptInstruction32,omitempty"`
ItemReward02 interface{} `json:"ItemReward02,omitempty"`
Level81 interface{} `json:"Level81,omitempty"`
Level91 interface{} `json:"Level91,omitempty"`
ScriptArg14 interface{} `json:"ScriptArg14,omitempty"`
ScriptInstruction20_fr interface{} `json:"ScriptInstruction20_fr,omitempty"`
StainReward04 interface{} `json:"StainReward04,omitempty"`
ScriptInstruction14_de interface{} `json:"ScriptInstruction14_de,omitempty"`
ScriptInstruction1_en interface{} `json:"ScriptInstruction1_en,omitempty"`
ScriptInstruction1_fr interface{} `json:"ScriptInstruction1_fr,omitempty"`
ScriptInstruction5_de interface{} `json:"ScriptInstruction5_de,omitempty"`
Level167 interface{} `json:"Level167,omitempty"`
Level94 interface{} `json:"Level94,omitempty"`
ScriptArg37 interface{} `json:"ScriptArg37,omitempty"`
ScriptInstruction35_fr interface{} `json:"ScriptInstruction35_fr,omitempty"`
StainReward01 interface{} `json:"StainReward01,omitempty"`
Level33 interface{} `json:"Level33,omitempty"`
Level53 interface{} `json:"Level53,omitempty"`
Level71 interface{} `json:"Level71,omitempty"`
Name_fr interface{} `json:"Name_fr,omitempty"`
ScriptInstruction12_de interface{} `json:"ScriptInstruction12_de,omitempty"`
Level102 interface{} `json:"Level102,omitempty"`
TextFile interface{} `json:"TextFile,omitempty"`
ItemCountReward12 interface{} `json:"ItemCountReward12,omitempty"`
Level134 interface{} `json:"Level134,omitempty"`
Level99 interface{} `json:"Level99,omitempty"`
ScriptInstruction38_en interface{} `json:"ScriptInstruction38_en,omitempty"`
ScriptInstruction9 interface{} `json:"ScriptInstruction9,omitempty"`
ScriptInstruction25_en interface{} `json:"ScriptInstruction25_en,omitempty"`
ScriptInstruction43 interface{} `json:"ScriptInstruction43,omitempty"`
ScriptInstruction49_en interface{} `json:"ScriptInstruction49_en,omitempty"`
EventIconType interface{} `json:"EventIconType,omitempty"`
ItemCountReward00 interface{} `json:"ItemCountReward00,omitempty"`
Name_de interface{} `json:"Name_de,omitempty"`
ScriptArg49 interface{} `json:"ScriptArg49,omitempty"`
ScriptInstruction0_fr interface{} `json:"ScriptInstruction0_fr,omitempty"`
ItemCountReward11 interface{} `json:"ItemCountReward11,omitempty"`
Level108 interface{} `json:"Level108,omitempty"`
Level129 interface{} `json:"Level129,omitempty"`
Level82 interface{} `json:"Level82,omitempty"`
ScriptInstruction45_en interface{} `json:"ScriptInstruction45_en,omitempty"`
Level142 interface{} `json:"Level142,omitempty"`
ScriptInstruction36 interface{} `json:"ScriptInstruction36,omitempty"`
ScriptInstruction8_ja interface{} `json:"ScriptInstruction8_ja,omitempty"`
Level115 interface{} `json:"Level115,omitempty"`
Level154 interface{} `json:"Level154,omitempty"`
Level86 interface{} `json:"Level86,omitempty"`
ScriptInstruction14_ja interface{} `json:"ScriptInstruction14_ja,omitempty"`
ScriptInstruction23_en interface{} `json:"ScriptInstruction23_en,omitempty"`
ScriptInstruction32_en interface{} `json:"ScriptInstruction32_en,omitempty"`
IsHQReward11 interface{} `json:"IsHQReward11,omitempty"`
Level162 interface{} `json:"Level162,omitempty"`
Level35 interface{} `json:"Level35,omitempty"`
ScriptArg15 interface{} `json:"ScriptArg15,omitempty"`
ScriptInstruction24 interface{} `json:"ScriptInstruction24,omitempty"`
ExpFactor interface{} `json:"ExpFactor,omitempty"`
ScriptArg8 interface{} `json:"ScriptArg8,omitempty"`
ScriptInstruction32_de interface{} `json:"ScriptInstruction32_de,omitempty"`
ScriptInstruction49_ja interface{} `json:"ScriptInstruction49_ja,omitempty"`
ScriptInstruction38_ja interface{} `json:"ScriptInstruction38_ja,omitempty"`
ScriptInstruction43_de interface{} `json:"ScriptInstruction43_de,omitempty"`
ClassJobUnlock interface{} `json:"ClassJobUnlock,omitempty"`
Level6 interface{} `json:"Level6,omitempty"`
ScriptArg0 interface{} `json:"ScriptArg0,omitempty"`
ScriptArg21 interface{} `json:"ScriptArg21,omitempty"`
ScriptInstruction20_de interface{} `json:"ScriptInstruction20_de,omitempty"`
Icon interface{} `json:"Icon,omitempty"`
ItemCountCatalyst2 interface{} `json:"ItemCountCatalyst2,omitempty"`
ScriptInstruction42_de interface{} `json:"ScriptInstruction42_de,omitempty"`
ScriptInstruction48_fr interface{} `json:"ScriptInstruction48_fr,omitempty"`
StainReward12 interface{} `json:"StainReward12,omitempty"`
ScriptInstruction34_de interface{} `json:"ScriptInstruction34_de,omitempty"`
TextFile_de interface{} `json:"TextFile_de,omitempty"`
ClassJobCategory0 interface{} `json:"ClassJobCategory0,omitempty"`
IconSpecial interface{} `json:"IconSpecial,omitempty"`
ScriptInstruction40 interface{} `json:"ScriptInstruction40,omitempty"`
ScriptInstruction7_de interface{} `json:"ScriptInstruction7_de,omitempty"`
StainReward10 interface{} `json:"StainReward10,omitempty"`
Level89 interface{} `json:"Level89,omitempty"`
ScriptArg6 interface{} `json:"ScriptArg6,omitempty"`
ScriptInstruction45_de interface{} `json:"ScriptInstruction45_de,omitempty"`
ScriptInstruction10_de interface{} `json:"ScriptInstruction10_de,omitempty"`
ScriptInstruction19 interface{} `json:"ScriptInstruction19,omitempty"`
ScriptInstruction36_fr interface{} `json:"ScriptInstruction36_fr,omitempty"`
Level1 interface{} `json:"Level1,omitempty"`
Level47 interface{} `json:"Level47,omitempty"`
QuestLock1 interface{} `json:"QuestLock1,omitempty"`
ScriptArg24 interface{} `json:"ScriptArg24,omitempty"`
ScriptArg40 interface{} `json:"ScriptArg40,omitempty"`
Level26 interface{} `json:"Level26,omitempty"`
Level41 interface{} `json:"Level41,omitempty"`
ScriptArg48 interface{} `json:"ScriptArg48,omitempty"`
ScriptInstruction20_ja interface{} `json:"ScriptInstruction20_ja,omitempty"`
ScriptInstruction2 interface{} `json:"ScriptInstruction2,omitempty"`
ScriptInstruction45_fr interface{} `json:"ScriptInstruction45_fr,omitempty"`
InstanceContent0 interface{} `json:"InstanceContent0,omitempty"`
Level12 interface{} `json:"Level12,omitempty"`
ScriptArg29 interface{} `json:"ScriptArg29,omitempty"`
ScriptArg44 interface{} `json:"ScriptArg44,omitempty"`
ScriptInstruction16_ja interface{} `json:"ScriptInstruction16_ja,omitempty"`
Level114 interface{} `json:"Level114,omitempty"`
Level29 interface{} `json:"Level29,omitempty"`
ScriptArg18 interface{} `json:"ScriptArg18,omitempty"`
ScriptInstruction29_de interface{} `json:"ScriptInstruction29_de,omitempty"`
ScriptArg19 interface{} `json:"ScriptArg19,omitempty"`
ScriptInstruction23_ja interface{} `json:"ScriptInstruction23_ja,omitempty"`
ScriptInstruction42_ja interface{} `json:"ScriptInstruction42_ja,omitempty"`