summaryrefslogtreecommitdiff
path: root/db/quest_db.txt
blob: c6c30607029c231560ca49f99c92d3769f6039df (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
// Quest Database
//
// Structure of Database:
// Quest ID,Time Limit,Target1,Val1,Target2,Val2,Target3,Val3,Quest Title

1000,0,0,0,0,0,0,0,"Transcend"
1001,0,0,0,0,0,0,0,"Job Change to Acolyte"
1002,0,0,0,0,0,0,0,"Job Change to Acolyte"
1003,0,0,0,0,0,0,0,"Job Change to Acolyte"
1004,0,0,0,0,0,0,0,"Job Change to Archer"
1005,0,0,0,0,0,0,0,"Job Change to Mage"
1006,0,0,0,0,0,0,0,"Job Change to Mage"
1007,0,0,0,0,0,0,0,"Job Change to Mage"
1008,0,0,0,0,0,0,0,"Job Change to Mage"
1009,0,0,0,0,0,0,0,"Job Change to Merchant"
1010,0,0,0,0,0,0,0,"Job Change to Merchant"
1011,0,0,0,0,0,0,0,"Job Change to Merchant"
1012,0,0,0,0,0,0,0,"Job Change to Merchant"
1013,0,0,0,0,0,0,0,"Job Change to Thief"
1014,0,0,0,0,0,0,0,"Job Change to Swordman"
1015,0,0,0,0,0,0,0,"Your first quest"
1016,0,0,0,0,0,0,0,"Gaining base levels"

// Ropewa & Yuridi Quest
1109,0,0,0,0,0,0,0,"Ropewa & Yuridi - Survivors of the Labyrinth"
1110,0,0,0,0,0,0,0,"Ropewa & Yuridi - Victims of the Labyrinth"
1111,0,0,0,0,0,0,0,"Ropewa & Yuridi - Maze in the Labyrinth"
1112,0,0,0,0,0,0,0,"Ropewa & Yuridi - Lost in the Labyrinth"
1113,0,0,0,0,0,0,0,"Ropewa & Yuridi - Torn Apart"
1114,0,0,0,0,0,0,0,"Ropewa & Yuridi - The Cost of Restoration"
1115,0,0,0,0,0,0,0,"Ropewa & Yuridi - Song of the Abyss"
1116,0,0,0,0,0,0,0,"Ropewa & Yuridi - Dead Man's Song"
1117,0,0,0,0,0,0,0,"Ropewa & Yuridi - Eternal Promise, Broken Ring"
1118,0,0,0,0,0,0,0,"Neighborhood Knight - I Need Clues"
1119,82800,0,0,0,0,0,0,"Neighborhood Knight - Cooldown"

1145,0,0,0,0,0,0,0,"Help the poor cat"
1146,0,0,0,0,0,0,0,"Help the poor cat"
1147,0,0,0,0,0,0,0,"Help the poor cat"
1148,0,0,0,0,0,0,0,"Help the poor cat"
1149,0,0,0,0,0,0,0,"Help the poor cat"
1150,0,0,0,0,0,0,0,"Help the poor cat"
1151,0,0,0,0,0,0,0,"Help the poor cat"
1152,82800,0,0,0,0,0,0,"Help the poor cat"
1153,0,0,0,0,0,0,0,"Help the poor cat"
1154,0,2197,20,0,0,0,0,"Help the poor cat"
1155,0,0,0,0,0,0,0,"Help the poor cat"
1174,0,0,0,0,0,0,0,"Rumor, Time and Legend"
1175,0,0,0,0,0,0,0,"Rumor, Time and Legend"
1176,0,0,0,0,0,0,0,"Rumor, Time and Legend"
1177,0,0,0,0,0,0,0,"Rumor, Time and Legend"
1178,0,0,0,0,0,0,0,"Rumor, Time and Legend"
1179,0,0,0,0,0,0,0,"Rumor, Time and Legend"
1180,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1181,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1182,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1183,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1184,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1185,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1186,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1187,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1188,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1189,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1190,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1191,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1192,0,0,0,0,0,0,0,"Get Rid of Bakonawa"
1193,0,0,0,0,0,0,0,"Get Rid of Bakonawa"

// Find Professor Worm's Memory
1214,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
1215,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
1216,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
1217,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
1218,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
1219,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
1220,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
1221,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
1222,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
1223,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
1224,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
1225,0,2367,15,0,0,0,0,"Getting back Professor Worm's memory"
1226,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
1227,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"
1228,0,0,0,0,0,0,0,"Getting back Professor Worm's memory"

2000,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2001,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2002,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2003,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2004,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2005,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2006,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2007,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2008,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2009,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2010,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2011,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2012,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2013,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2014,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2015,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2016,0,0,0,0,0,0,0,"Job Change to Blacksmith"
2017,0,0,0,0,0,0,0,"Job Change to Rogue"
2018,0,0,0,0,0,0,0,"Job Change to Rogue"
2019,0,0,0,0,0,0,0,"Job Change to Rogue"
2020,0,0,0,0,0,0,0,"Job Change to Rogue"
2021,0,0,0,0,0,0,0,"Job Change to Rogue"
2022,0,0,0,0,0,0,0,"Job Change to Rogue"
2023,0,0,0,0,0,0,0,"Job Change to Rogue"
2024,0,0,0,0,0,0,0,"Job Change to Rogue"
2025,0,0,0,0,0,0,0,"Job Change to Rogue"
2026,0,0,0,0,0,0,0,"Job Change to Rogue"
2027,0,0,0,0,0,0,0,"Job Change to Rogue"
2028,0,0,0,0,0,0,0,"Job Change to Alchemist"
2029,0,0,0,0,0,0,0,"Job Change to Alchemist"
2030,0,0,0,0,0,0,0,"Job Change to Alchemist"
2031,0,0,0,0,0,0,0,"Job Change to Alchemist"
2032,0,0,0,0,0,0,0,"Job Change to Alchemist"
2033,0,0,0,0,0,0,0,"Job Change to Alchemist"
2034,0,0,0,0,0,0,0,"Job Change to Alchemist"
2035,0,0,0,0,0,0,0,"Job Change to Alchemist"
2036,0,0,0,0,0,0,0,"Job Change to Alchemist"
2037,0,0,0,0,0,0,0,"Job Change to Alchemist"
2038,0,0,0,0,0,0,0,"Job Change to Alchemist"
2039,0,0,0,0,0,0,0,"Job Change to Alchemist"
2040,0,0,0,0,0,0,0,"Job Change to Alchemist"
2041,0,0,0,0,0,0,0,"Job Change to Sage"
2042,0,0,0,0,0,0,0,"Job Change to Sage"
2043,0,0,0,0,0,0,0,"Job Change to Sage"
2044,0,0,0,0,0,0,0,"Job Change to Sage"
2045,0,0,0,0,0,0,0,"Job Change to Sage"
2046,0,0,0,0,0,0,0,"Job Change to Sage"
2047,0,0,0,0,0,0,0,"Job Change to Sage"
2048,0,0,0,0,0,0,0,"Job Change to Sage"
2049,0,0,0,0,0,0,0,"Job Change to Sage"
2050,0,0,0,0,0,0,0,"Job Change to Sage"
2051,0,0,0,0,0,0,0,"Job Change to Sage"
2052,0,0,0,0,0,0,0,"Job Change to Sage"
2053,0,0,0,0,0,0,0,"Job Change to Sage"
2054,0,0,0,0,0,0,0,"Job Change to Sage"
2055,0,0,0,0,0,0,0,"Job Change to Sage"
2056,0,0,0,0,0,0,0,"Job Change to Sage"
2057,0,0,0,0,0,0,0,"Job Change to Sage"
2058,0,0,0,0,0,0,0,"Job Change to Sage"
2059,0,0,0,0,0,0,0,"Job Change to Sage"
2060,0,0,0,0,0,0,0,"Job Change to Sage"
2061,0,0,0,0,0,0,0,"Job Change to Sage"
2062,0,0,0,0,0,0,0,"Job Change to Sage"
2063,0,0,0,0,0,0,0,"The Crow of the Fate - 1"
2064,0,0,0,0,0,0,0,"The Crow of the Fate - 2"
2065,0,0,0,0,0,0,0,"The Crow of the Fate - 3"
2066,0,0,0,0,0,0,0,"The Crow of the Fate - 4"
2067,0,0,0,0,0,0,0,"The Crow of the Fate - 5"
2068,0,0,0,0,0,0,0,"The Crow of the Fate - 6"
2069,300,0,0,0,0,0,0,"Tierra Gorge Battle"
2070,300,0,0,0,0,0,0,"Flavius Battle"
2071,0,0,0,0,0,0,0,"Cursed Property"
2072,0,0,0,0,0,0,0,"Cursed Property"
2073,0,0,0,0,0,0,0,"Cursed Property"
2074,0,0,0,0,0,0,0,"Cursed Property"
2075,0,0,0,0,0,0,0,"Cursed Property"
2076,0,0,0,0,0,0,0,"Cursed Property"
2077,0,0,0,0,0,0,0,"Cursed Property"
2078,0,0,0,0,0,0,0,"Cursed Property"
2079,0,0,0,0,0,0,0,"The past went wrong"
2080,0,0,0,0,0,0,0,"The past went wrong"
2081,0,0,0,0,0,0,0,"The past went wrong"
2082,0,0,0,0,0,0,0,"The past went wrong"
2083,0,0,0,0,0,0,0,"The past went wrong"
2084,0,0,0,0,0,0,0,"The past went wrong"
2085,0,0,0,0,0,0,0,"The past went wrong"
2086,0,0,0,0,0,0,0,"The Enterprise"
2087,0,0,0,0,0,0,0,"The Enterprise"
2088,0,0,0,0,0,0,0,"The Enterprise"
2089,0,0,0,0,0,0,0,"The Enterprise"
2090,0,0,0,0,0,0,0,"The Enterprise"
2091,0,0,0,0,0,0,0,"The Enterprise"
2092,0,0,0,0,0,0,0,"The Enterprise"
2093,0,0,0,0,0,0,0,"The Enterprise"
2094,0,0,0,0,0,0,0,"The Enterprise"
2095,0,0,0,0,0,0,0,"The Enterprise"
2109,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon"
2110,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon"
2111,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon"
2112,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon"
2113,0,0,0,0,0,0,0,"A Mage in the Ice Dungeon"
2114,0,0,0,0,0,0,0,"Thor Volcano base camp"
2115,0,0,0,0,0,0,0,"Thor Volcano base camp"
2116,0,0,0,0,0,0,0,"Thor Volcano base camp"
2117,0,0,0,0,0,0,0,"Thor Volcano base camp"
2118,0,0,0,0,0,0,0,"Thor Volcano base camp"
2119,0,0,0,0,0,0,0,"Thor Volcano base camp"
2120,0,0,0,0,0,0,0,"Thor Volcano base camp"
2121,0,0,0,0,0,0,0,"Thor Volcano base camp"
2122,0,0,0,0,0,0,0,"Thor Volcano base camp"
2123,0,0,0,0,0,0,0,"Thor Volcano base camp"
2124,0,0,0,0,0,0,0,"Thor Volcano base camp"
2125,0,0,0,0,0,0,0,"Thor Volcano base camp"
2126,0,0,0,0,0,0,0,"Thor Volcano base camp"
2127,0,0,0,0,0,0,0,"Thor Volcano base camp"
2128,0,0,0,0,0,0,0,"Thor Volcano base camp"
2129,0,0,0,0,0,0,0,"Thor Volcano base camp"
2130,0,0,0,0,0,0,0,"Thor Volcano base camp"
2131,0,0,0,0,0,0,0,"Thor Volcano base camp"
2132,0,0,0,0,0,0,0,"For Arunafeltz"
2133,0,0,0,0,0,0,0,"For Arunafeltz"
2134,0,0,0,0,0,0,0,"For Arunafeltz"
2135,0,0,0,0,0,0,0,"For Arunafeltz"
2136,0,0,0,0,0,0,0,"For Arunafeltz"
2137,0,0,0,0,0,0,0,"For Arunafeltz"
2138,0,0,0,0,0,0,0,"For Arunafeltz"
2139,0,0,0,0,0,0,0,"For Arunafeltz"
2140,0,0,0,0,0,0,0,"For Arunafeltz"
2141,0,0,0,0,0,0,0,"For Arunafeltz"
2142,0,0,0,0,0,0,0,"For Arunafeltz"
2143,50,0,0,0,0,0,0,"Guild Dungeon Event"
2144,0,0,0,0,0,0,0,"Guild Dungeon Event"

2147,0,0,0,0,0,0,0,"Attitude to the New"
2148,0,0,0,0,0,0,0,"Attitude to the New"
2149,0,0,0,0,0,0,0,"Attitude to the New"
2150,0,1995,30,0,0,0,0,"Attitude to the New"
2151,0,1992,10,0,0,0,0,"Attitude to the New"
2152,0,0,0,0,0,0,0,"Attitude to the New"
2153,0,0,0,0,0,0,0,"Attitude to the New"
2154,0,0,0,0,0,0,0,"Attitude to the New"
2155,0,0,0,0,0,0,0,"Attitude to the New"
2156,0,0,0,0,0,0,0,"Attitude to the New"
2157,0,1986,10,0,0,0,0,"Attitude to the New"
2158,0,0,0,0,0,0,0,"Finding a Fairy"
2159,0,0,0,0,0,0,0,"Finding a Tree Giant"
2179,0,0,0,0,0,0,0,"Dr. Lifeguard's request"
2180,0,0,0,0,0,0,0,"Dr. Lifeguard's request"
2181,0,0,0,0,0,0,0,"Dr. Lifeguard's request"
2182,64800,0,0,0,0,0,0,"Rough Minerals"
2183,0,0,0,0,0,0,0,"Flower of Alfheim"
2184,0,0,0,0,0,0,0,"Flower of Alfheim"
2185,0,0,0,0,0,0,0,"Spirit of Alfheim"
2186,64800,0,0,0,0,0,0,"Helping Grenouille"

2187,0,0,0,0,0,0,0,"Arch Bishop job changing quest"
2188,0,0,0,0,0,0,0,"Arch Bishop job changing quest"
2189,0,0,0,0,0,0,0,"Arch Bishop job changing quest"
2190,0,0,0,0,0,0,0,"Arch Bishop job changing quest"
2191,0,0,0,0,0,0,0,"Arch Bishop job changing quest"

2192,0,0,0,0,0,0,0,"Guarana quest"
2193,0,0,0,0,0,0,0,"Guarana quest"
2194,0,0,0,0,0,0,0,"Guarana quest"
2195,0,0,0,0,0,0,0,"Guarana quest"
2196,0,0,0,0,0,0,0,"Guarana quest"
2197,0,0,0,0,0,0,0,"Guarana quest"
2198,0,0,0,0,0,0,0,"Guarana quest"
2199,0,0,0,0,0,0,0,"Guarana quest"
2200,0,0,0,0,0,0,0,"Guarana quest"
2201,0,0,0,0,0,0,0,"Brasilis Water Lily"
2202,0,0,0,0,0,0,0,"Brasilis Water Lily"
2203,0,0,0,0,0,0,0,"Brasilis Water Lily"
2204,0,0,0,0,0,0,0,"Brasilis Water Lily"
2205,0,0,0,0,0,0,0,"Brasilis Water Lily"
2206,0,0,0,0,0,0,0,"Brasilis Water Lily"
2207,0,0,0,0,0,0,0,"Brasilis Water Lily"
2208,0,0,0,0,0,0,0,"Bathroom Ghost"

2209,0,0,0,0,0,0,0,"Generic Job Change Quest"
2210,0,0,0,0,0,0,0,"Generic Job Change Quest"
2211,0,0,0,0,0,0,0,"Generic Job Change Quest"
2212,0,0,0,0,0,0,0,"Generic Job Change Quest"
2213,0,0,0,0,0,0,0,"Generic Job Change Quest"
2214,0,0,0,0,0,0,0,"Generic Job Change Quest"
2215,0,0,0,0,0,0,0,"Generic Job Change Quest"
2216,0,0,0,0,0,0,0,"Generic Job Change Quest"
2217,0,0,0,0,0,0,0,"Generic Job Change Quest"
2218,0,0,0,0,0,0,0,"Wanderer Job Change Quest"
2219,0,0,0,0,0,0,0,"Wanderer Job Change Quest"
2220,0,0,0,0,0,0,0,"Wanderer Job Change Quest"
2221,600,1718,50,0,0,0,0,"Wanderer Job Change Quest"
2222,0,0,0,0,0,0,0,"Wanderer Job Change Quest"
2223,0,1428,100,0,0,0,0,"Generic Job Change Quest"

// Secret in the Woods
2271,0,0,0,0,0,0,0,"Secret in the Woods"
2272,0,0,0,0,0,0,0,"Secret in the Woods"
2273,0,0,0,0,0,0,0,"Secret in the Woods"
2274,0,0,0,0,0,0,0,"Secret in the Woods"
2275,0,0,0,0,0,0,0,"Secret in the Woods"
2276,0,0,0,0,0,0,0,"Secret in the Woods"
2277,0,0,0,0,0,0,0,"Secret in the Woods"
2278,0,0,0,0,0,0,0,"Secret in the Woods"
2279,0,0,0,0,0,0,0,"Secret in the Woods"
2280,0,0,0,0,0,0,0,"Secret in the Woods"
2281,0,2319,1,0,0,0,0,"Get Rid of Buwaya"

// Pyramid (Nightmare)
2289,0,2355,20,0,0,0,0,"Verit Hunting (Nightmare)"
2290,82800,0,0,0,0,0,0,"Verit Hunting - Cooldown"
2291,82800,0,0,0,0,0,0,"Mummy Hunting - Cooldown"
2292,0,2354,20,0,0,0,0,"Mummy Hunting (Nightmare)"

// New Novice Ground
2299,0,0,0,0,0,0,0,"Training Center: Talk to Lisa"
2300,0,0,0,0,0,0,0,"Training Center: Talk to General Reindeer"
2301,0,0,0,0,0,0,0,"Training Center: Leave the boat"
2302,0,0,0,0,0,0,0,"Training Center: Formation"

3000,0,0,0,0,0,0,0,"Job Change to Bard"
3001,0,0,0,0,0,0,0,"Job Change to Bard"
3002,0,0,0,0,0,0,0,"Job Change to Bard"
3003,0,0,0,0,0,0,0,"Job Change to Bard"
3004,0,0,0,0,0,0,0,"Job Change to Bard"
3006,0,0,0,0,0,0,0,"Job Change to Crusader"
3007,0,0,0,0,0,0,0,"Job Change to Crusader"
3008,0,0,0,0,0,0,0,"Job Change to Crusader"
3009,0,0,0,0,0,0,0,"Job Change to Crusader"
3010,0,0,0,0,0,0,0,"Job Change to Crusader"
3011,0,0,0,0,0,0,0,"Job Change to Crusader"
3012,0,0,0,0,0,0,0,"Job Change to Crusader"
3013,0,0,0,0,0,0,0,"Job Change to Crusader"
3014,0,0,0,0,0,0,0,"Job Change to Crusader"
3015,0,0,0,0,0,0,0,"Job Change to Crusader"
3016,0,0,0,0,0,0,0,"Job Change to Monk"
3017,0,0,0,0,0,0,0,"Job Change to Monk"
3018,0,0,0,0,0,0,0,"Job Change to Monk"
3019,0,0,0,0,0,0,0,"Job Change to Monk"
3020,0,0,0,0,0,0,0,"Job Change to Monk"
3021,0,0,0,0,0,0,0,"Job Change to Monk"
3022,0,0,0,0,0,0,0,"Job Change to Monk"
3023,0,0,0,0,0,0,0,"Job Change to Monk"
3024,0,0,0,0,0,0,0,"Job Change to Monk"
3025,0,0,0,0,0,0,0,"Job Change to Monk"
3026,0,0,0,0,0,0,0,"Job Change to Monk"
3027,0,0,0,0,0,0,0,"Job Change to Monk"
3028,0,0,0,0,0,0,0,"Job Change to Monk - Marathon"
3029,0,0,0,0,0,0,0,"Job Change to Monk - Final test"
//3030,0,0,0,0,0,0,0,"Job Change to Monk"
3031,0,0,0,0,0,0,0,"Job Change to Monk - Spiritual Training"
3032,0,0,0,0,0,0,0,"Job Change to Monk - Become a Monk"
3040,43200,0,0,0,0,0,0,"The Curse of Baphomet"
3041,180,0,0,0,0,0,0,"The Curse of Baphomet"
3042,0,0,0,0,0,0,0,"The Cursed Baphomet Doll"
3043,0,0,0,0,0,0,0,"The Gigantic Magestic Goat"
3044,0,0,0,0,0,0,0,"The Gigantic Magestic Goat"
3045,7200,0,0,0,0,0,0,"Sealed Shrine"
3046,0,0,0,0,0,0,0,"Sealed Shrine After-effect"

3050,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 1"
3051,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 2"
3052,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 3"
3053,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 4"
3054,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 5"
3055,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 6"
3056,0,0,0,0,0,0,0,"Resurrection of Satan Morocc - 7"
3060,0,0,0,0,0,0,0,"Kids in Veins - Where's the Little Sis?"
3061,0,0,0,0,0,0,0,"Kids in Veins - Find a way to unlock the shackles!"
3062,0,0,0,0,0,0,0,"Kids in Veins - Find the Locksmith!"
3063,0,0,0,0,0,0,0,"Kids in Veins - Mr. Lockenlock?"
3064,0,0,0,0,0,0,0,"Kids in Veins - Organic Chamelepu Soap"
3065,0,0,0,0,0,0,0,"Kids in Veins - Soap Ingredients"
3066,0,0,0,0,0,0,0,"Kids in Veins - To make a Chamelepu Soap..."
3067,0,0,0,0,0,0,0,"Kids in Veins - Camel Appetite Stimulants"
3068,0,0,0,0,0,0,0,"Kids in Veins - Getting the Camel Dung"
3069,0,0,0,0,0,0,0,"Kids in Veins - Where's the Silk Sand Camel?"
3070,0,0,0,0,0,0,0,"Kids in Veins - Silk Sand Camel is gone!"
3071,0,0,0,0,0,0,0,"Kids in Veins - Silk Sand Camel is found!"
3072,0,0,0,0,0,0,0,"Kids in Veins - 1 lump of Camel dung obtained"
3073,0,0,0,0,0,0,0,"Kids in Veins - 2 lumps of Camel dung obtained"
3074,0,0,0,0,0,0,0,"Kids in Veins - 3 lumps of Camel dung obtained"
3075,0,0,0,0,0,0,0,"Kids in Veins - 4 lumps of Camel dung obtained"
3076,0,0,0,0,0,0,0,"Kids in Veins - 5 lumps of Camel dung obtained"
3077,0,0,0,0,0,0,0,"Kids in Veins - Go to Ms. Ivory"
3078,0,0,0,0,0,0,0,"Kids in Veins - Chamalepu Soap is completed!"
3079,0,0,0,0,0,0,0,"Kids in Veins - Making the key mold"
3080,0,0,0,0,0,0,0,"Kids in Veins - Bringing the key mold"
3081,0,0,0,0,0,0,0,"Kids in Veins - All you need is Steel!"
3082,0,0,0,0,0,0,0,"Kids in Veins - The Key is Made!"
3083,0,0,0,0,0,0,0,"Kids in Veins - Mr. Lockenlock's key"
3085,0,0,0,0,0,0,0,"Call from the commander"
3086,0,0,0,0,0,0,0,"Commander's Duty"
3087,0,0,0,0,0,0,0,"Report to Rune Midgard"
3088,0,0,0,0,0,0,0,"Report to the continent - Accident!"
3089,0,0,0,0,0,0,0,"Report to the continent - How to restore"
3090,0,0,0,0,0,0,0,"Report to the continent - Location of reports"
3091,1800,0,0,0,0,0,0,"Report to the continent - Location of reports"
3092,0,0,0,0,0,0,0,"Report to the continent - Success to restore!"
3093,0,0,0,0,0,0,0,"Report to the continent - Report to the continent"
3094,0,0,0,0,0,0,0,"Report to the continent - Return to the expedition"

3100,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Lost Bond of Debt"
3101,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Strange Heap of Earth"
3102,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Bond of Debt Found, but..."
3103,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Inventor Dorian"
3104,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repair Materials of Magic Dryer"
3105,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer"
3106,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer Failed"
3107,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Repairing Magic Dryer Successful"
3108,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Let's Run the Magic Dryer"
3109,0,0,0,0,0,0,0,"Consolidating Heavy Debt - Restoring the Bond of Debt"
3110,0,0,0,0,0,0,0,"Stolen Diamond - Tracking the Diamond"
3111,0,0,0,0,0,0,0,"Stolen Diamond - Leblo's Favor"
3112,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor"
3113,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor"
3114,0,0,0,0,0,0,0,"Stolen Diamond - Wola the Doctor"
3115,0,0,0,0,0,0,0,"Stolen Diamond - Leblo's Information"
3116,0,0,0,0,0,0,0,"Stolen Diamond - Information from Rogue Investigator"
3117,0,0,0,0,0,0,0,"Stolen Diamond - Odd Switches"
3118,0,0,0,0,0,0,0,"Stolen Diamond - Diamond Found!"
3119,0,0,0,0,0,0,0,"Z Gang Wanted - Wanted Notice"
3120,0,0,0,0,0,0,0,"Z Gang Wanted - About Z Gang"
3121,0,0,0,0,0,0,0,"Z Gang Wanted - Valdes's Favor"
3122,0,0,0,0,0,0,0,"Z Gang Wanted - Information from Valdes"
3123,0,0,0,0,0,0,0,"Z Gang Wanted - Marybell's Test"
3124,0,0,0,0,0,0,0,"Z Gang Wanted - Challenging Moonho Ahn"
3125,0,0,0,0,0,0,0,"Z Gang Wanted - Challenging Moonho Ahn"
3126,0,0,0,0,0,0,0,"Z Gang Wanted - Information from Marybell"
3127,0,0,0,0,0,0,0,"Z Gang Wanted - Z Gang's Attack"
3128,0,0,0,0,0,0,0,"Z Gang Wanted - Z Gang's Attack"
3129,0,0,0,0,0,0,0,"Z Gang Wanted - Strange Letter"
3130,0,0,0,0,0,0,0,"Z Gang Wanted - Decrypting the letter..."
3131,0,0,0,0,0,0,0,"Z Gang Wanted - Code's Broken!"
3132,0,0,0,0,0,0,0,"Z Gang Wanted - Find the Z Gang's Agit"
3133,0,0,0,0,0,0,0,"Z Gang Wanted - Agit Found!"
3134,0,0,0,0,0,0,0,"Z Gang Wanted - Clean Sweep of Z Gang"
3135,259200,0,0,0,0,0,0,"Nidhoggur's Nest"
3136,14400,0,0,0,0,0,0,"Nidhoggur's Nest Time Limit"

3200,0,0,0,0,0,0,0,"Job changes to Rune knight - Recommendation for Rune knight"
3201,0,0,0,0,0,0,0,"Job changes to Rune knight - Secret rendezvous of Rune knight"
3202,0,0,0,0,0,0,0,"Job changes to Rune knight - The first test"
3203,0,0,0,0,0,0,0,"Job changes to Rune knight - The first test"
3204,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the first test"
3205,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
3206,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
3207,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
3208,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
3209,0,1504,10,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy1"
3210,0,1506,10,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy2"
3211,0,1508,10,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy3"
3212,0,1510,10,0,0,0,0,"Job changes to Rune knight - Accumulation of magic energy4"
3213,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
3214,0,0,0,0,0,0,0,"Job changes to Rune knight - The second test"
3215,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the second test"
3216,0,0,0,0,0,0,0,"Job changes to Rune knight - The final test"
3217,0,0,0,0,0,0,0,"Job changes to Rune knight - The final test"
3218,0,0,0,0,0,0,0,"Job changes to Rune knight - Pass the final test"
3219,0,0,0,0,0,0,0,"Job changes to Rune knight - The end of all test"
3220,600,0,0,0,0,0,0,"Job changes to Rune knight - Waiting time of test"

3250,0,1041,30,0,0,0,0,"Request - What is this bandage for?"
3251,0,1271,30,0,0,0,0,"Request - An alligator of Counterattack"
3252,0,1264,30,0,0,0,0,"Request - My mermaid don't do like this way!"
3253,0,0,0,0,0,0,0,"Request - Missing occult mania"
3254,0,0,0,0,0,0,0,"Request - A country wants you"
3255,0,1166,30,0,0,0,0,"Request - A wild boar subjugate operation"
3256,0,0,0,0,0,0,0,"Request - Ready for waiting summer"
3257,0,1170,30,0,0,0,0,"Request - A grudge of women"
3258,0,0,0,0,0,0,0,"Request - A material of delicacy"
3259,0,1143,30,0,0,0,0,"Request - A agony of a doll master"
3260,0,1035,30,0,0,0,0,"Request - Tiresome flies"
3261,0,1026,30,0,0,0,0,"Request - Unclean girl"
3262,0,0,0,0,0,0,0,"Request - Queer hobby"
3263,0,0,0,0,0,0,0,"Request - A mallet of goblin"
3265,0,0,0,0,0,0,0,"Request - Missing occult mania"

4000,0,0,0,0,0,0,0,"Sherin's Job Interview"
4001,0,0,0,0,0,0,0,"Job Change to Hunter"
4002,0,0,0,0,0,0,0,"Job Change to Hunter"
4003,0,0,0,0,0,0,0,"Job Change to Hunter"
4004,0,0,0,0,0,0,0,"Job Change to Hunter"
4005,0,0,0,0,0,0,0,"Job Change to Hunter"
4006,0,0,0,0,0,0,0,"Job Change to Hunter"
4007,0,0,0,0,0,0,0,"Job Change to Hunter"
4008,0,0,0,0,0,0,0,"Job Change to Hunter"
4009,0,0,0,0,0,0,0,"Job Change to Hunter"
4010,0,0,0,0,0,0,0,"Job Change to Hunter"
4011,0,0,0,0,0,0,0,"Job Change to Hunter - Test"
4012,0,0,0,0,0,0,0,"Job Change to Hunter"
4013,0,0,0,0,0,0,0,"Job Change to Hunter"

// Following entries are depreciated - use 10000-10025
//4015,0,0,0,0,0,0,0,"Becoming an Adventurer Appraiser"
//4016,0,0,0,0,0,0,0,"Proof of Qualification"
//4017,0,0,0,0,0,0,0,"Qualification Test"
//4018,0,0,0,0,0,0,0,"Preparations for Meeting Princes"
//4020,0,0,0,0,0,0,0,"Interview with the Prince"
//4021,0,0,0,0,0,0,0,"Interview with the Prince"
//4022,0,0,0,0,0,0,0,"Interview with the Prince"
//4023,0,0,0,0,0,0,0,"Interview with the Prince"
//4024,0,0,0,0,0,0,0,"Interview with the Prince"
//4025,0,0,0,0,0,0,0,"Interview with the Prince"
//4026,0,0,0,0,0,0,0,"Interview with the Prince"
//4027,0,0,0,0,0,0,0,"Interview with the Prince"
//4028,0,0,0,0,0,0,0,"The prince, Peter's Favor"
//4029,0,0,0,0,0,0,0,"The Girl's Favor"
//4030,0,0,0,0,0,0,0,"The Story of Ahrum and Ernst"
//4031,0,0,0,0,0,0,0,"The Story of Ahrum and Ernst"
//4032,0,0,0,0,0,0,0,"Conspiracy of the two families"
//4033,0,0,0,0,0,0,0,"Death of Ahrum"

4133,0,0,0,0,0,0,0,"Iara"
4134,0,0,0,0,0,0,0,"Iara"
4135,86400,0,0,0,0,0,0,"Iara"

4154,0,0,0,0,0,0,0,"Homunculus Researcher"
4155,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 1"
4156,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 2"
4157,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 3"
4158,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 4"
4159,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 5"
4160,0,0,0,0,0,0,0,"Homunculus S Mutation Mission - 6"

4161,0,0,0,0,0,0,0,"Siege Expert"
4162,0,0,0,0,0,0,0,"Party Recruiting Expert"
4163,0,0,0,0,0,0,0,"Battleground Expert"
4164,0,0,0,0,0,0,0,"Memorial Dungeon Expert"
4165,0,0,0,0,0,0,0,"Map Expert"
4166,0,0,0,0,0,0,0,"Passing Grades"

// Paradise 86 - 90 [Chilly]
4167,0,1321,30,0,0,0,0,"Paradise: Dragon Tail Handling"
4168,0,1322,30,0,0,0,0,"Paradise: Spring Rabbit Handling"
4169,0,1256,30,0,0,0,0,"Paradise: Pest Handling"
4170,0,1102,30,0,0,0,0,"Paradise: Bathory Handling"
4171,0,1193,30,0,0,0,0,"Paradise: Alarm Handling"
4172,0,1882,30,0,0,0,0,"Paradise: Babayaga Handling"
4173,0,1512,30,0,0,0,0,"Paradise: Hyegun Handling"
4174,0,1403,30,0,0,0,0,"Paradise: Antique Firelock Handling"
4175,0,1417,30,0,0,0,0,"Paradise: Zipper Bear Handling"
4176,0,1155,30,0,0,0,0,"Paradise: Earth Petite Handling"
4177,0,1162,30,0,0,0,0,"Paradise: Rafflesia Handling"
4178,0,1621,30,0,0,0,0,"Paradise: Venomous Handling"
4179,0,1616,30,0,0,0,0,"Paradise: Pitman Handling"
4180,0,1718,30,0,0,0,0,"Paradise: Yellow Novus Handling"

// Paradise 91 - 99 [Chilly]
4181,0,1316,30,0,0,0,0,"Paradise: Solider Handling"
4182,0,1319,30,0,0,0,0,"Paradise: Freezer Handling"
4183,0,1318,30,0,0,0,0,"Paradise: Heater Handling"
4184,0,1257,30,0,0,0,0,"Paradise: Injustice Handling"
4185,0,1201,30,0,0,0,0,"Paradise: Rybio Handling"
4186,0,1198,30,0,0,0,0,"Paradise: Dark Priest Handling"
4187,0,1784,30,0,0,0,0,"Paradise: Stapo Handling"
4188,0,1782,30,0,0,0,0,"Paradise: Roween Handling"
4189,0,1776,30,0,0,0,0,"Paradise: Siroma Handling"
4190,0,1401,30,0,0,0,0,"Paradise: Shinobi Handling"
4191,0,1416,30,0,0,0,0,"Paradise: Evil Nymph Handling"
4192,0,1109,30,0,0,0,0,"Paradise: Deviruchi Handling"
4193,0,1614,30,0,0,0,0,"Paradise: Mineral Handling"
4194,0,1072,30,0,0,0,0,"Paradise: Kaho Handling"
4195,0,1255,30,0,0,0,0,"Paradise: Neraid Handling"
4196,0,1506,30,0,0,0,0,"Paradise: Disguise Handling"

4197,10800,0,0,0,0,0,0,"Octopus"

// Paradise Cooldowns
4198,10800,0,0,0,0,0,0,"86-90 Mission Board Timer"
4199,10800,0,0,0,0,0,0,"86-90 Mission Board Timer"
4200,10800,0,0,0,0,0,0,"86-90 Mission Board Timer"
4201,10800,0,0,0,0,0,0,"86-90 Mission Board Timer"
4202,10800,0,0,0,0,0,0,"86-90 Mission Board Timer"
4203,10800,0,0,0,0,0,0,"86-90 Mission Board Timer"
4204,10800,0,0,0,0,0,0,"86-90 Mission Board Timer"
4205,10800,0,0,0,0,0,0,"86-90 Mission Board Timer"
4206,10800,0,0,0,0,0,0,"86-90 Mission Board Timer"
4207,10800,0,0,0,0,0,0,"86-90 Mission Board Timer"
4208,10800,0,0,0,0,0,0,"86-90 Mission Board Timer"
4209,10800,0,0,0,0,0,0,"86-90 Mission Board Timer"
4210,10800,0,0,0,0,0,0,"86-90 Mission Board Timer"
4211,10800,0,0,0,0,0,0,"86-90 Mission Board Timer"
4212,10800,0,0,0,0,0,0,"91-99 Mission Board Timer"
4213,10800,0,0,0,0,0,0,"91-99 Mission Board Timer"
4214,10800,0,0,0,0,0,0,"91-99 Mission Board Timer"
4215,10800,0,0,0,0,0,0,"91-99 Mission Board Timer"
4216,10800,0,0,0,0,0,0,"91-99 Mission Board Timer"
4217,10800,0,0,0,0,0,0,"91-99 Mission Board Timer"
4218,10800,0,0,0,0,0,0,"91-99 Mission Board Timer"
4219,10800,0,0,0,0,0,0,"91-99 Mission Board Timer"
4220,10800,0,0,0,0,0,0,"91-99 Mission Board Timer"
4221,10800,0,0,0,0,0,0,"91-99 Mission Board Timer"
4222,10800,0,0,0,0,0,0,"91-99 Mission Board Timer"
4223,10800,0,0,0,0,0,0,"91-99 Mission Board Timer"
4224,10800,0,0,0,0,0,0,"91-99 Mission Board Timer"
4225,10800,0,0,0,0,0,0,"91-99 Mission Board Timer"
4226,10800,0,0,0,0,0,0,"91-99 Mission Board Timer"
4227,10800,0,0,0,0,0,0,"91-99 Mission Board Timer"

4229,86400,0,0,0,0,0,0,"Devil in the Cave"

4254,0,0,0,0,0,0,0,"Fairy with a stomache"
4255,0,0,0,0,0,0,0,"Revenge!"
4256,0,0,0,0,0,0,0,"An accomplice?"
4257,0,0,0,0,0,0,0,"Conspiracy"
4258,0,0,0,0,0,0,0,"Eirinn"
4259,0,0,0,0,0,0,0,"Bourbon"
4260,0,0,0,0,0,0,0,"Bee"
4261,0,0,0,0,0,0,0,"Counterattack (1)"
4262,0,0,0,0,0,0,0,"Counterattack (2)"
4263,0,0,0,0,0,0,0,"Counteroffensive (1)"
4264,0,0,0,0,0,0,0,"Counteroffensive (2)"
4265,0,0,0,0,0,0,0,"Bookshelf use"

5000,0,0,0,0,0,0,0,"The Crow of the Fate - 7"

// Researcher's Quest
5016,0,0,0,0,0,0,0,"Bring me a Research Tool Bag"
5017,0,0,0,0,0,0,0,"Revenge of the Reseacher"
5018,0,0,0,0,0,0,0,"Revenge of the Reseacher"
5019,0,0,0,0,0,0,0,"Bathroom Sample Studying"
5020,86400,0,0,0,0,0,0,"Sample Researching"
5021,0,0,0,0,0,0,0,"Sample Collecting"
5022,0,0,0,0,0,0,0,"Sample Collecting"
5023,21600,0,0,0,0,0,0,"Inspection of the Sample"
5024,0,0,0,0,0,0,0,"Eastern Pool Research"
5025,0,0,0,0,0,0,0,"Western Pool Research"
5026,0,0,0,0,0,0,0,"Southern Pool Research"
5027,0,0,0,0,0,0,0,"Northern Pool Research"
5028,43200,0,0,0,0,0,0,"Inspection of the Sample"
5029,3600,0,0,0,0,0,0,"Unidentified Creature"
5030,0,0,0,0,0,0,0,"The creature's family"
5031,0,0,0,0,0,0,0,"The creature's family"
5032,0,0,0,0,0,0,0,"The creature's family"
5033,0,0,0,0,0,0,0,"The creature's family"
5034,0,0,0,0,0,0,0,"News from the family"
5035,0,0,0,0,0,0,0,"Help the old man!"
5036,0,0,0,0,0,0,0,"Help the old man!"
5037,0,0,0,0,0,0,0,"Help the old man!"
5038,0,0,0,0,0,0,0,"Help the old man!"
5039,0,0,0,0,0,0,0,"Help the old man!"
5040,0,0,0,0,0,0,0,"Help the old man!"
5041,0,0,0,0,0,0,0,"Help the old man!"
5042,0,0,0,0,0,0,0,"Help the old man!"
5043,300,0,0,0,0,0,0,"Help the old man!"
5044,86400,0,0,0,0,0,0,"Help the old man!"
5045,0,0,0,0,0,0,0,"Help the old man!"
5046,0,0,0,0,0,0,0,"Help the old man!"
5047,0,0,0,0,0,0,0,"Help the old man!"
5048,0,0,0,0,0,0,0,"Help the old man!"
5049,0,0,0,0,0,0,0,"Help the old man!"
5050,0,0,0,0,0,0,0,"Help the old man!"
5051,0,0,0,0,0,0,0,"Help the old man!"
5052,0,0,0,0,0,0,0,"Traditional Weapon"
5053,0,0,0,0,0,0,0,"Traditional Weapon"
5054,0,0,0,0,0,0,0,"Traditional Weapon"

5058,0,0,0,0,0,0,0,"The mood of the players-(1)"
5059,0,0,0,0,0,0,0,"The mood of the players-(2)"
5060,180,0,0,0,0,0,0,"Cat Shock"
5061,0,0,0,0,0,0,0,"Am I scared?"
5062,0,0,0,0,0,0,0,"I met Eryu."
5063,0,0,0,0,0,0,0,"I met Stew."
5064,0,0,0,0,0,0,0,"I met Ketchup."
5065,0,0,0,0,0,0,0,"I met Eff."
5066,0,0,0,0,0,0,0,"Scary image-(1)"
5067,0,0,0,0,0,0,0,"Scary image-(2)"
5068,72000,0,0,0,0,0,0,"Collecting complaint"
5069,3600,0,0,0,0,0,0,"Token of honor"
5070,86400,0,0,0,0,0,0,"Rock Paper Scissors"
5071,86400,0,0,0,0,0,0,"Chamchamcham"
5072,86400,0,0,0,0,0,0,"Kkongnyangkkong"
5073,86400,0,0,0,0,0,0,"Challenging of flag wave"
5074,0,1158,30,0,0,0,0,"Cat's Meal"
5075,0,1144,50,0,0,0,0,"Health food"
5076,0,1282,30,0,0,0,0,"Enemies"
5077,0,1209,10,0,0,0,0,"Reaction Training"
5078,0,1019,50,0,0,0,0,"Light bird food"
5079,0,0,0,0,0,0,0,"How to stabilize the mind"
5080,0,0,0,0,0,0,0,"Lack of Snack"
5081,0,0,0,0,0,0,0,"Banned foods"
5082,0,0,0,0,0,0,0,"Cool food"
5083,0,0,0,0,0,0,0,"Please come back Eryu-(1)"
5084,0,0,0,0,0,0,0,"Please come back Eryu-(2)"
5085,0,0,0,0,0,0,0,"Please come back Stew-(1)"
5086,0,0,0,0,0,0,0,"Please come back Stew-(2)"
5087,0,0,0,0,0,0,0,"Please come back Ketchup-(1)"
5088,0,0,0,0,0,0,0,"Please come back Ketchup-(2)"
5089,0,0,0,0,0,0,0,"Please come back Eff-(1)"
5090,0,0,0,0,0,0,0,"Please come back Eff-(2)"
5091,0,0,0,0,0,0,0,"Go Malangdo"

5092,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
5093,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
5094,0,1002,1000,0,0,0,0,"Unlocking the Ultimate Mediocrity"
5095,0,1063,1000,0,0,0,0,"Unlocking the Ultimate Mediocrity"
5096,0,1007,1000,0,0,0,0,"Unlocking the Ultimate Mediocrity"
5097,0,1049,1000,0,0,0,0,"Unlocking the Ultimate Mediocrity"
5098,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
5099,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"
5100,0,0,0,0,0,0,0,"Unlocking the Ultimate Mediocrity"

5109,0,0,0,0,0,0,0,"Light but Unconfirmed Rumor"
5110,0,0,0,0,0,0,0,"The Rumored Character"
5111,0,0,0,0,0,0,0,"To the Lab..."
5112,259200,0,0,0,0,0,0,"Laboratory Restricted Access"
5113,0,0,0,0,0,0,0,"[Rest] Lord Knight"
5114,0,0,0,0,0,0,0,"[Rest] Paladin"
5115,0,0,0,0,0,0,0,"[Rest] High Priest"
5116,0,0,0,0,0,0,0,"[Rest] Champion"
5117,0,0,0,0,0,0,0,"[Rest] High Wizard"
5118,0,0,0,0,0,0,0,"[Rest] Professor"
5119,0,0,0,0,0,0,0,"[Rest] Whitesmith"
5120,0,0,0,0,0,0,0,"[Rest] Creator"
5121,0,0,0,0,0,0,0,"[Rest] Assassin Cross"
5122,0,0,0,0,0,0,0,"[Rest] Stalker"
5123,0,0,0,0,0,0,0,"[Rest] Sniper"
5124,0,0,0,0,0,0,0,"[Rest] Clown"
5125,0,0,0,0,0,0,0,"[Rest] Gypsy"

// Kagerou/Oboro Job Quest
5131,0,0,0,0,0,0,0,"Strange Conversation"
5132,0,0,0,0,0,0,0,"Family Business-(1)"
5133,0,0,0,0,0,0,0,"Family Business-(2)"
5134,0,0,0,0,0,0,0,"New path"
5135,0,0,0,0,0,0,0,"4 tests"
5136,0,0,0,0,0,0,0,"Knowledge test"
5137,0,0,0,0,0,0,0,"Survival test"
5138,0,0,0,0,0,0,0,"Weapons test"
5139,0,0,0,0,0,0,0,"The guy looks familiar!!"
5140,0,0,0,0,0,0,0,"Uncertain chilliness"
5141,120,0,0,0,0,0,0,"Got a curse!!"
5142,0,0,0,0,0,0,0,"Prototype-(1)"
5143,0,0,0,0,0,0,0,"Prototype-(2)"
5144,0,0,0,0,0,0,0,"Prototype-(2)"
5145,0,0,0,0,0,0,0,"Prototype-(3)"
5146,0,0,0,0,0,0,0,"Battle test"

6000,0,0,0,0,0,0,0,"Job Change to Taekwon"
6001,0,0,0,0,0,0,0,"Job Change to Taekwon"
6002,0,0,0,0,0,0,0,"Job Change to Taekwon"
6005,0,0,0,0,0,0,0,"Job Change to Soul-Linker"
6006,0,0,0,0,0,0,0,"Job Change to Soul-Linker"
6007,0,0,0,0,0,0,0,"Job Change to Soul-Linker"
6008,0,0,0,0,0,0,0,"Job Change to Soul-Linker"
6010,0,0,0,0,0,0,0,"Job Change to Super Novice"
6015,0,0,0,0,0,0,0,"A favor from Cougar"
6016,0,0,0,0,0,0,0,"A favor from a Suspicious Man"
6017,0,0,0,0,0,0,0,"Red Leopard Joe's Reply"
6018,0,0,0,0,0,0,0,"Cougar's Madness"
6020,0,0,0,0,0,0,0,"Master Miller's Letter"
6021,0,0,0,0,0,0,0,"Wise Bull Horn's voucher"
6022,0,0,0,0,0,0,0,"Making a voucher"
6023,0,0,0,0,0,0,0,"Wise Bull Horn's Favor"
6024,0,0,0,0,0,0,0,"Job Change to Gunslinger!"
6025,300,0,0,0,0,0,0,"KVM Guillaume"
6026,300,0,0,0,0,0,0,"KVM Croix"
6027,300,0,0,0,0,0,0,"KVM Indicator"
7000,0,0,0,0,0,0,0,"Job Change to Dancer!"
7001,0,0,0,0,0,0,0,"Job Change to Dancer!"
7002,0,0,0,0,0,0,0,"Job Change to Dancer!"
7003,0,0,0,0,0,0,0,"Job Change to Dancer!"
7004,0,0,0,0,0,0,0,"Job Change to Dancer!"
7005,0,0,0,0,0,0,0,"Job Change to Dancer!"
7006,0,0,0,0,0,0,0,"Job Change to Dancer!"
7007,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars"
7008,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - Nature"
7009,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - the Altar"
7010,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars - Stars?"
7011,0,0,0,0,0,0,0,"Warrior of the Sun, the Moon, and the Stars"
7012,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7013,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7014,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7015,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7016,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7017,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7018,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7019,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7020,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7021,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7022,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7023,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7024,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7025,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7026,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7027,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7028,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7029,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7030,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7031,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7032,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7033,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7034,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7035,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7036,0,0,0,0,0,0,0,"Pursuing Rayan Moore"
7037,0,0,0,0,0,0,0,"Case closed?"
7038,0,0,0,0,0,0,0,"Passion for Baked Sweet Potatoes"
7039,0,0,0,0,0,0,0,"Dodging the conversation"
7040,0,0,0,0,0,0,0,"Dodging the conversation"
7041,0,0,0,0,0,0,0,"Politics is for the Politicians"
7042,0,0,0,0,0,0,0,"Part-time Job - Tatacho's feed"
7043,0,0,0,0,0,0,0,"Part-time Job - Cornus's feed"
7044,0,0,0,0,0,0,0,"Part-time Job - Hillthrion's feed1"
7045,0,0,0,0,0,0,0,"Part-time Job - Hillthrion's feed2"
7046,0,0,0,0,0,0,0,"Part-time Job - warm rugs"
7047,18000,0,0,0,0,0,0,"Part-time Job - Let's call it a day!"
7048,0,0,0,0,0,0,0,"Thanatos Tower - Burled's Favor"
7049,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower"
7050,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower"
7051,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower"
7052,0,0,0,0,0,0,0,"Thanatos Tower - Sealed Tower"
7053,0,0,0,0,0,0,0,"Thanatos Tower - What they want is.."
7054,0,1282,1000,0,0,0,0,"Myu's Favor - Teach them a lesson!"
7055,0,1261,1,0,0,0,0,"Myu's Favor - Not the cat!"
7056,0,0,0,0,0,0,0,"Messenger - Arc's Favor"
7057,0,0,0,0,0,0,0,"Messenger - Arc's Favor"
7058,0,0,0,0,0,0,0,"Messenger - Arc's Favor"
7059,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
7060,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
7061,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
7062,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
7063,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
7064,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
7065,0,0,0,0,0,0,0,"Messenger - Terra's Whereabouts"
7066,0,0,0,0,0,0,0,"Messenger - Prove the Truth"
7067,0,0,0,0,0,0,0,"Messenger - Prove the Truth"
7068,0,0,0,0,0,0,0,"Messenger - Prove the Truth"
7069,0,0,0,0,0,0,0,"Messenger - Too late!"
7070,0,0,0,0,0,0,0,"Messenger - Terra's Return"
7071,0,0,0,0,0,0,0,"Messenger - Invitation"
//7072,0,0,0,0,0,0,0,""
//7073,86400,0,0,0,0,0,0,""
7074,0,2017,1,0,0,0,0,"Rata Hunt"
7075,0,2018,1,0,0,0,0,"Duneyrr Hunt"
7076,0,2026,1,0,0,0,0,"Wanted: Dandelion"
7077,0,0,0,0,0,0,0,"Collecting Dragon Eggs"
7078,86400,0,0,0,0,0,0,"Collecting Dragon Eggs"
7079,0,0,0,0,0,0,0,"Finding Refined Bradium"
7080,86400,0,0,0,0,0,0,"Finding Refined Bradium"
7081,0,0,0,0,0,0,0,"Helping the Laphine Craftsman"
7082,86400,0,0,0,0,0,0,"Helping the Laphine Craftsman"

7091,0,0,0,0,0,0,0,"An advice of Diora 01"
7092,0,0,0,0,0,0,0,"An advice of Diora 02"
7093,0,0,0,0,0,0,0,"An advice of Diora 03"
7094,0,0,0,0,0,0,0,"An advice of Diora 04"
7095,0,0,0,0,0,0,0,"An advice of Diora 05"
7096,0,0,0,0,0,0,0,"A proof of new requirement"
7097,0,0,0,0,0,0,0,"A proof of new requirement"
7098,0,0,0,0,0,0,0,"A proof of new requirement"
7099,0,0,0,0,0,0,0,"A proof of new requirement"
7100,0,0,0,0,0,0,0,"A message of Bercascell"
7101,0,0,0,0,0,0,0,"Special task of an assassin guild  1"
7102,0,0,0,0,0,0,0,"Special task of an assassin guild  2"
7103,0,0,0,0,0,0,0,"Special task of an assassin guild  3"
7104,0,0,0,0,0,0,0,"Special task of an assassin guild  4"
7105,0,0,0,0,0,0,0,"Special task of an assassin guild  4"
7106,0,0,0,0,0,0,0,"Special task of an assassin guild  5"
7107,0,0,0,0,0,0,0,"Special task of an assassin guild  6"
7108,0,0,0,0,0,0,0,"Special task of an assassin guild  7"
7109,0,0,0,0,0,0,0,"Special task of an assassin guild  8"
7110,0,0,0,0,0,0,0,"Special task of an assassin guild  9"
7111,0,0,0,0,0,0,0,"Special task of an assassin guild  10"
7112,0,0,0,0,0,0,0,"Information of Madelle"
7113,0,0,0,0,0,0,0,"Information of Crave"
7114,0,0,0,0,0,0,0,"Information of Trovan"
7115,0,0,0,0,0,0,0,"Information of a peddler"
7116,0,0,0,0,0,0,0,"Information of a old man"

// Novice Training Grounds
7117,0,0,0,0,0,0,0,"Your first quest!"
7118,0,0,0,0,0,0,0,"Novice Training"
7119,0,0,0,0,0,0,0,"Novice Training"
7120,0,0,0,0,0,0,0,"Novice Training"
7121,0,0,0,0,0,0,0,"Novice Training"
7122,0,1002,1,0,0,0,0,"First battle - Poring Hunt"
7123,0,1050,2,0,0,0,0,"Battle Basics -Swordman"
7124,0,1063,5,0,0,0,0,"Battle Basics -Mage"
//7125,0,0,0,0,0,0,0,"not used"
7126,0,0,0,0,0,0,0,"Selling items"
7127,0,1010,5,0,0,0,0,"Battle Basics -Thief"

7128,0,0,0,0,0,0,0,"Training course 'conquest a desert!' -start"
7129,0,1009,10,0,0,0,0,"The training course 'conquer the desert!' - A real battle 1"
7130,0,1107,10,0,0,0,0,"The training course 'conquer the desert!' - A real battle 2"
7131,0,1001,5,0,0,0,0,"The training course 'conquer the desert!' - A real battle 3"
7132,0,0,0,0,0,0,0,"The training course 'conquer the desert!' - Complete a quest"
7133,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - Start"
7134,0,1051,10,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 1"
7135,0,1175,10,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 2"
7136,0,1005,5,0,0,0,0,"The training course 'conquer the culvert!' - A real battle 3"
7137,0,0,0,0,0,0,0,"The training course 'conquer the culvert!' - Complete a quest"
7138,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - Start"
7139,0,1076,15,0,0,0,0,"The training course 'conquer the haunted cave!' - A real battle 1"
7140,0,1031,10,0,0,0,0,"The training course 'conquer the haunted cave!' - A real battle 2"
7141,0,0,0,0,0,0,0,"The training course 'conquer the haunted cave!' - Complete a quest"
7142,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - Start"
7143,0,1160,15,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 1"
7144,0,1095,15,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 2"
7145,0,1176,10,0,0,0,0,"The training course 'conquer ant hell!' - A real battle 3"
7146,0,0,0,0,0,0,0,"The training course 'conquer ant hell!' - Complete a quest"
7147,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - start"
7148,0,1686,10,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 1"
7149,0,1023,10,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 2"
7150,0,1273,10,0,0,0,0,"The training course 'conquer the orc village!' - A real battle 3"
7151,0,0,0,0,0,0,0,"The training course 'conquer the orc village!' - Complete a quest"
7152,0,0,0,0,0,0,0,"bThe training course 'conquer the orc dungeon!' - start"
7153,0,1153,20,0,0,0,0,"The training course 'conquer the orc dungeon!' - A real battle 1"
7154,0,1152,20,0,0,0,0,"The training course 'conquer the orc dungeon!'- A real battle 2"
7155,0,0,0,0,0,0,0,"The training course 'conquer the orc dungeon!' - complete a quest"
7156,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - start"
7157,0,1264,15,0,0,0,0,"The training course 'conquer an undersea city!' - A real battle 1"
7158,0,1065,10,0,0,0,0,0,"The training course 'conquer an undersea city!' - A real battle 2"
7159,0,0,0,0,0,0,0,"The training course 'conquer an undersea city!' - Complete a quest"

7160,0,0,0,0,0,0,0,"Mysterious Cryptogram"
7161,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd"
7162,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd"
7163,0,0,0,0,0,0,0,"Mysterious Cryptogram - 2nd"
7164,0,2076,1,0,0,0,0,"Hunt for shadow of deception"
7165,0,0,0,0,0,0,0,"Key of deception"
7166,0,0,0,0,0,0,0,"Rachel Branch of Shadow Workshop"
7167,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd"
7168,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd"
7169,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd"
7170,0,0,0,0,0,0,0,"Mysterious Cryptogram - 3rd"
7171,0,2077,1,0,0,0,0,"Hunt for shadow of delusion"
7172,0,0,0,0,0,0,0,"Key of delusion"
7173,0,0,0,0,0,0,0,"Message to Halled from Paul"
7174,0,0,0,0,0,0,0,"Mysterious Cryptogram - 4th"
7175,0,2078,1,0,0,0,0,"Hunft for shadow of gaiety"
7176,0,0,0,0,0,0,0,"Key of Gaiety"
7177,0,0,0,0,0,0,0,"A young guy in Lighthalzen"
7178,0,0,0,0,0,0,0,"Destination of Deception, Delusion and Gaiety"
7179,0,0,0,0,0,0,0,"Vicente, you dare!"
7180,0,0,0,0,0,0,0,"Message from Doomk"

7181,0,0,0,0,0,0,0,"Karakas's ring"

// El Dicastes
7182,0,0,0,0,0,0,0,"Sapha's Visit"
7183,0,0,0,0,0,0,0,"Invitation from Sapha"
7184,0,0,0,0,0,0,0,"To El Dicastes!"
7185,0,0,0,0,0,0,0,"Inspector Doha"
7186,0,0,0,0,0,0,0,"Secret Order from Doha - Investigation"
7187,0,0,0,0,0,0,0,"Secret Order from Doha - Shay"
7188,0,0,0,0,0,0,0,"Information Gathering - in the Plaza"
7189,0,0,0,0,0,0,0,"Information Gathering - in the Factory"
7190,0,0,0,0,0,0,0,"Information Gathering - at the Guards"
7191,0,0,0,0,0,0,0,"Shay's designation - BK"
7192,0,0,0,0,0,0,0,"BK's Information"
7193,0,0,0,0,0,0,0,"Dimensional Crack Investigation"
7194,0,0,0,0,0,0,0,"What's this bloodstain?"
7195,0,0,0,0,0,0,0,"What's this skin piece?"
7196,0,0,0,0,0,0,0,"What's this suspicious magic power?"
7197,0,0,0,0,0,0,0,"Sapha Certifications?"
7198,0,0,0,0,0,0,0,"Audience with Ahat"
7199,0,0,0,0,0,0,0,"Secret Order from Ahat"
7200,82800,0,0,0,0,0,0,"Cheshire's call"
7201,0,0,0,0,0,0,0,"Removing traces"
7202,0,0,0,0,0,0,0,"Secret order from Doha - Collect proof"
7203,0,0,0,0,0,0,0,"Secret order from Doha - Final Report"
7206,0,0,0,0,0,0,0,"New Day for Cheshire"
7207,0,0,0,0,0,0,0,"Cheshire's Box"
7208,86400,0,0,0,0,0,0,"Wait for Cheshire?"

// Misty Forest Labyrinth
7211,9000,0,0,0,0,0,0,"Misty Forest Labyrinth Exploration"
7212,0,0,0,0,0,0,0,"Loki's Search"
7213,0,0,0,0,0,0,0,"Wandering Protector"

// Paradise Gear Advanced Quests [Chilly]
7214,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Training"
7215,0,1278,3,0,0,0,0,"Paradise Advanced: Romeo Hunt 1"
7216,0,1278,10,0,0,0,0,"Paradise Advanced: Romeo Hunt 2"
7217,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Hunt 3"
7218,0,0,0,0,0,0,0,"Paradise Advanced: Romeo Complete"
7219,0,0,0,0,0,0,0,"Paradise Advanced: Johan Training"
7220,0,1192,20,0,0,0,0,"Paradise Advanced: Johan Hunt 1"
7221,0,1117,10,0,0,0,0,"Paradise Advanced: Johan Hunt 2"
7222,0,0,0,0,0,0,0,"Paradise Advanced: Johan Complete"
7223,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Training"
7224,0,1619,30,0,0,0,0,"Paradise Advanced: Kiren Hunt 1"
7225,0,1620,30,0,0,0,0,"Paradise Advanced: Removed"
7226,0,1621,30,0,0,0,0,"Paradise Advanced: Kiren Hunt 2 (Part A)"
7227,0,1622,5,0,0,0,0,"Paradise Advanced: Kiren Hunt 2 (Part B)"
7228,0,0,0,0,0,0,0,"Paradise Advanced: Kiren Complete"
7229,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Training"
7230,0,1776,30,0,0,0,0,"Paradise Advanced: Naomi Hunt 1"
7231,0,1776,30,0,0,0,0,"Paradise Advanced: Naomi Hunt 2"
7232,0,0,0,0,0,0,0,"Paradise Advanced: Naomi Complete"
7233,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Training"
7234,0,0,0,0,0,0,0,"Paradise Advanced: Margaret's Favor"
7235,0,1988,1,0,0,0,0,"Paradise Advanced: Margaret Hunt 1"
7236,0,1995,5,0,0,0,0,"Paradise Advanced: Margaret Hunt 2"
7237,0,0,0,0,0,0,0,"Paradise Advanced: Margaret Complete"
7238,0,0,0,0,0,0,0,"Toren's Errands (Easy)"
7239,0,0,0,0,0,0,0,"Toren's Errands (Normal)"
7240,0,0,0,0,0,0,0,"Strengthening Equipment"
7241,86400,0,0,0,0,0,0,"Toren's Errands - Tomorrow"
7242,0,0,0,0,0,0,0,"Play with the baby cat"
7243,0,0,0,0,0,0,0,"Nyadventure-Duruduru Compass"
7244,180,0,0,0,0,0,0,"Nyadventure-Duruduru Race"
7245,180,0,0,0,0,0,0,"Nyadventure-Duruduru Race"
7246,0,0,0,0,0,0,0,"Nyadventure-I'm coming now."
7247,0,0,0,0,0,0,0,"Nyadventure-Stop the Bang!"
//7248,0,0,0,0,0,0,0,""
7249,86400,0,0,0,0,0,0,"Nyadventure-Bang! See you next time"
7250,0,0,0,0,0,0,0,"Nyadventure-Hidden Treasure?"
7251,0,0,0,0,0,0,0,"Nyadventure-The First piece of Painting"
7252,0,0,0,0,0,0,0,"Nyadventure-The Second piece of Painting"
7253,0,0,0,0,0,0,0,"Nyadventure-The Third piece of Painting"
7254,0,0,0,0,0,0,0,"Nyadventure-The Fourth piece of Painting"
7255,0,0,0,0,0,0,0,"Nyadventure-The Fifth piece of Painting"
7256,0,0,0,0,0,0,0,"Nyadventure-The Sixth piece of Painting"
7257,86400,0,0,0,0,0,0,"Nyadventure-Race, Come back tomorrow!"
7258,0,0,0,0,0,0,0,"Nyadventure-Painting completed"
7259,0,0,0,0,0,0,0,"Gift from the Mew Bravery Team"
7260,0,0,0,0,0,0,0,"The origin of Bugs"
7261,0,0,0,0,0,0,0,"Cat Biscuits - Table"
7262,0,0,0,0,0,0,0,"Cat Biscuits - Mattress"
7263,0,0,0,0,0,0,0,"Cat Biscuits - Grill"
7264,0,0,0,0,0,0,0,"To Chef Nyas"
7265,0,0,0,0,0,0,0,"Rage of Chef Nyas"
7266,0,0,0,0,0,0,0,"Declaration of Chef Nyas"
7267,86400,0,0,0,0,0,0,"Appointed time with Cleanyang"
7268,0,0,0,0,0,0,0,"Find the Cat's hard biscuits!"
7269,0,0,0,0,0,0,0,"Cat Biscuits - Resting Place"
7270,0,0,0,0,0,0,0,"Cat Biscuits - Sand"
7271,0,0,0,0,0,0,0,"Cat Biscuits - Bottom of the Stairs"
7272,0,0,0,0,0,0,0,"Cat Biscuits - Corner"
7273,0,0,0,0,0,0,0,"Cat Biscuits - Locker"
7274,0,0,0,0,0,0,0,"Cat Biscuits - Foothold"
7275,0,0,0,0,0,0,0,"Cat Biscuits - Sand"
7276,86400,0,0,0,0,0,0,"Promise to deliver more food"
7281,0,0,0,0,0,0,0,"List of Errands"
7282,0,0,0,0,0,0,0,"List of Errands"
7283,0,0,0,0,0,0,0,"List of Errands"
7284,0,0,0,0,0,0,0,"List of Errands"
7285,0,0,0,0,0,0,0,"List of Errands"
7286,0,0,0,0,0,0,0,"List of Errands"
7287,0,0,0,0,0,0,0,"List of Errands"
7288,0,0,0,0,0,0,0,"List of Errands"
7289,0,0,0,0,0,0,0,"List of Errands"
7290,0,0,0,0,0,0,0,"List of Errands"
7291,0,0,0,0,0,0,0,"List of Errands"
7292,0,0,0,0,0,0,0,"List of Errands"
7293,0,0,0,0,0,0,0,"List of Errands"
7294,0,0,0,0,0,0,0,"List of Errands"
7295,0,0,0,0,0,0,0,"List of Errands"
7296,0,0,0,0,0,0,0,"List of Errands"
7297,0,0,0,0,0,0,0,"List of Errands"
7298,0,0,0,0,0,0,0,"List of Errands"
7299,0,0,0,0,0,0,0,"List of Errands"
7300,0,0,0,0,0,0,0,"List of Errands"
7301,0,0,0,0,0,0,0,"List of Errands"
7302,0,0,0,0,0,0,0,"List of Errands"
7303,0,0,0,0,0,0,0,"List of Errands"
7304,0,0,0,0,0,0,0,"List of Errands"
7305,0,0,0,0,0,0,0,"List of Errands"
7306,0,0,0,0,0,0,0,"List of Errands"
7307,0,0,0,0,0,0,0,"List of Errands"
7308,0,0,0,0,0,0,0,"List of Errands"
7309,0,0,0,0,0,0,0,"List of Errands"
7310,0,0,0,0,0,0,0,"List of Errands"
7311,0,0,0,0,0,0,0,"List of Errands"
7312,0,0,0,0,0,0,0,"List of Errands"
7313,0,0,0,0,0,0,0,"List of Errands"
7314,0,0,0,0,0,0,0,"List of Errands"
7315,0,0,0,0,0,0,0,"List of Errands"
7316,0,0,0,0,0,0,0,"List of Errands"
7317,0,0,0,0,0,0,0,"List of Errands"
7318,0,0,0,0,0,0,0,"List of Errands"
7319,0,0,0,0,0,0,0,"List of Errands"
7320,0,0,0,0,0,0,0,"List of Errands"
7321,0,0,0,0,0,0,0,"List of Errands"
7322,0,0,0,0,0,0,0,"List of Errands"
7323,0,0,0,0,0,0,0,"List of Errands"
7324,0,0,0,0,0,0,0,"List of Errands"
7325,0,0,0,0,0,0,0,"List of Errands"
7326,0,0,0,0,0,0,0,"List of Errands"
7327,0,0,0,0,0,0,0,"List of Errands"
7328,0,0,0,0,0,0,0,"List of Errands"
7329,0,0,0,0,0,0,0,"List of Errands"
7330,0,0,0,0,0,0,0,"List of Errands"
7331,0,0,0,0,0,0,0,"List of Errands"
7332,0,0,0,0,0,0,0,"List of Errands"
7333,0,0,0,0,0,0,0,"List of Errands"
7334,0,0,0,0,0,0,0,"List of Errands"
7335,0,0,0,0,0,0,0,"List of Errands"
7336,0,0,0,0,0,0,0,"List of Errands"
7337,0,0,0,0,0,0,0,"List of Errands"
7338,0,0,0,0,0,0,0,"List of Errands"
7339,0,0,0,0,0,0,0,"List of Errands"
7340,0,0,0,0,0,0,0,"List of Errands"
7341,0,0,0,0,0,0,0,"List of Errands"
7342,0,0,0,0,0,0,0,"List of Errands"
7343,0,0,0,0,0,0,0,"List of Errands"
7344,0,0,0,0,0,0,0,"List of Errands"
7345,0,0,0,0,0,0,0,"List of Errands"
7346,0,0,0,0,0,0,0,"List of Errands"

// Hall of Abyss
7349,1800,0,0,0,0,0,0,"Vote"

// Port Malaya
7350,0,0,0,0,0,0,0,"Cautious Village"
7351,0,0,0,0,0,0,0,"Better than My Old Button"
7352,0,0,0,0,0,0,0,"Sailor Wants a Button"
7353,0,0,0,0,0,0,0,"Old Man Wants a Button"
7354,0,0,0,0,0,0,0,"Young Man Wants a Button"
7355,0,0,0,0,0,0,0,"Merchant Wants a Button"
7356,0,0,0,0,0,0,0,"Little Kid Wants a Button"
7357,0,0,0,0,0,0,0,"Middle-aged Guy Wants a Button"
7358,0,0,0,0,0,0,0,"Why do they want my Buttons?"
7359,0,0,0,0,0,0,0,"Deliver Holy Item to Sailor"
7360,0,0,0,0,0,0,0,"Deliver Holy Item to Old Man"
7361,0,0,0,0,0,0,0,"Deliver Holy Item to Young Man"
7362,0,0,0,0,0,0,0,"Deliver Holy Item to Merchant"
7363,0,0,0,0,0,0,0,"Deliver Holy Item to Little Kid"
7364,0,0,0,0,0,0,0,"Deliver Holy Item to Middle-aged Man"
7365,0,0,0,0,0,0,0,"Better than My Old Button-2"
7366,0,0,0,0,0,0,0,"Traditional Spiritual Protection and Impudent Girl-1"
7367,0,0,0,0,0,0,0,"Traditional Spiritual Protection and Impudent Girl-2"
7368,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Pedro"
7369,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Nardo"
7370,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Pandoi"
7371,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Woeon"
7372,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Talah"
7373,0,0,0,0,0,0,0,"Deliver Spiritual Protection-Romel"
7374,0,0,0,0,0,0,0,"Love and Spiritual Protection for All"
7375,0,0,0,0,0,0,0,"Love and Spiritual Protection Continues"
7376,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-1"
7377,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-2"
7378,0,0,0,0,0,0,0,"Old Man and Cast-Iron Caldron-Regular Trades"
7379,0,0,0,0,0,0,0,"Peace Preacher"
7380,0,0,0,0,0,0,0,"To Smith a Traditional Spiritual Protection"
7381,0,0,0,0,0,0,0,"High Demand on Spiritual Protection Material"
7382,0,0,0,0,0,0,0,"Deliver to Pedro"
7383,0,0,0,0,0,0,0,"Deliver to Nardo"
7384,0,0,0,0,0,0,0,"Deliver to Pandoi"
7385,0,0,0,0,0,0,0,"Deliver to Woeon"
7386,0,0,0,0,0,0,0,"Deliver to Talah"
7387,0,0,0,0,0,0,0,"Deliver to Romel"
7388,0,0,0,0,0,0,0,"Maries's Child"
7389,0,0,0,0,0,0,0,"Give the Shirt to Maries's Child"
7390,0,0,0,0,0,0,0,"Worried about Maries's Child"
7391,0,0,0,0,0,0,0,"Jejeling and Jejellopy"
7392,0,0,0,0,0,0,0,"Collect Jejellopy Regularly"
7393,0,0,0,0,0,0,0,"Shiny Silver Blade"
7394,0,0,0,0,0,0,0,"Shiny Tomorrow"
7395,0,0,0,0,0,0,0,"Ghost on the Perry Ship"
7396,0,0,0,0,0,0,0,"Angry Soul on Perry Ship"
7397,0,0,0,0,0,0,0,"Mumbaki Phong's Advice"
7398,0,0,0,0,0,0,0,"Offering Bouquet Recommended by Mumbaki"
7399,0,0,0,0,0,0,0,"Soul Diwata's Story"
7400,0,0,0,0,0,0,0,"Mumbaki of Port Malaya"
7401,0,0,0,0,0,0,0,"All Aboard for Perry Sailing"
7402,0,0,0,0,0,0,0,"Bouquet for Diwata"
7403,0,0,0,0,0,0,0,"Stabilized Perry"
7404,0,0,0,0,0,0,0,"Get Rid of Jejeling"
7405,0,0,0,0,0,0,0,"Get Rid of Jejeling - Same Time Tomorrow"
7406,0,0,0,0,0,0,0,"Agree to Collecting Bones!"
7407,0,0,0,0,0,0,0,"Purified Bone"
7408,0,0,0,0,0,0,0,"Agree to Come Back Tomorrow?"
7409,0,0,0,0,0,0,0,"Cannot Meet Eyes with Him!"
7410,0,0,0,0,0,0,0,"Teach Another Lesson Tomorrow!"

// Eclage
7411,0,0,0,0,0,0,0,"The traveler, Fome's story"
7412,0,0,0,0,0,0,0,"The traveler, Litrip's story"
7413,0,0,0,0,0,0,0,"The traveler, Chiba's story"
7414,0,0,0,0,0,0,0,"Eclage guard's message"
7415,0,0,0,0,0,0,0,"Laphine's Chief of Staff"
7416,600,0,0,0,0,0,0,"Waiting to meet"
7417,0,0,0,0,0,0,0,"Kardui's request"
7418,0,0,0,0,0,0,0,"For Eclage 1"
7419,0,0,0,0,0,0,0,"For Eclage 2"
7420,0,0,0,0,0,0,0,"For Eclage 3"
7421,0,0,0,0,0,0,0,"That's enough"
7422,0,0,0,0,0,0,0,"Kardui's gift"
7423,0,0,0,0,0,0,0,"A rumor about the King 1"
7424,0,0,0,0,0,0,0,"A rumor about the King 2"
7425,0,0,0,0,0,0,0,"A rumor about the King 3"
7426,0,0,0,0,0,0,0,"A rumor about the King 4"
7427,0,0,0,0,0,0,0,"At times like this, face it straight on!"
7428,0,0,0,0,0,0,0,"Yai of the wild"
7429,0,0,0,0,0,0,0,"Wild recent trend!"
7430,0,0,0,0,0,0,0,"Deliveryman that runs through space"
7431,0,0,0,0,0,0,0,"A mailman never rests!"
7432,0,0,0,0,0,0,0,"The troublemakers in the land of blooming flowers"
7433,0,0,0,0,0,0,0,"Need constant guidance"

// Twins and Scholar of Magics
7434,0,0,0,0,0,0,0,"Kardui's big brother"
7435,0,0,0,0,0,0,0,"Time for reading the letter"
7436,0,0,0,0,0,0,0,"Avant the Scholar of Magics"
7437,0,0,0,0,0,0,0,"Shenime's favor"
7438,0,0,0,0,0,0,0,"Secret sponsorship"
7439,0,0,0,0,0,0,0,"The scholar of magics sponsored by Shenime"
7440,0,0,0,0,0,0,0,"Minuel's witness"
7441,0,0,0,0,0,0,0,"Mail is here!"
7442,0,0,0,0,0,0,0,"The identity of the scholar of magics"
7443,0,0,0,0,0,0,0,"Interfere with the research!"
7444,0,0,0,0,0,0,0,"What Avant was researching"

// Orb
7445,0,0,0,0,0,0,0,"Avant's back"
7446,0,0,0,0,0,0,0,"Unfruitful conversation"
7447,0,0,0,0,0,0,0,"Dilemma surrounding the Orb"
7448,0,0,0,0,0,0,0,"Something's not right"
7449,0,0,0,0,0,0,0,"Temptation toward the Orb"
7450,0,0,0,0,0,0,0,"Orb's lighting room"
7451,0,0,0,0,0,0,0,"Betrayal"
7452,0,0,0,0,0,0,0,"Find the chief of staff!"
7453,0,0,0,0,0,0,0,"The last of the chief of staff"

8000,0,0,0,0,0,0,0,"Quitting Job Change"
8001,0,0,0,0,0,0,0,"Job Change to Assassin"
8002,0,0,0,0,0,0,0,"Job Change to Assassin"
8003,0,0,0,0,0,0,0,"Job Change to Assassin"
8004,0,0,0,0,0,0,0,"Job Change to Assassin"
8005,0,0,0,0,0,0,0,"Job Change to Assassin"
8006,0,0,0,0,0,0,0,"Find the Guild Master!"
8007,0,0,0,0,0,0,0,"Acceptance from the Guild Master"
8008,0,0,0,0,0,0,0,"Job Change to Assassin"
8009,0,0,0,0,0,0,0,"Applying for Job Change to Priest"
8010,0,0,0,0,0,0,0,"Job Change to Priest"
8011,0,0,0,0,0,0,0,"Job Change to Priest"
8012,0,0,0,0,0,0,0,"Job Change to Priest"
8013,0,0,0,0,0,0,0,"Job Change to Priest"
8014,0,0,0,0,0,0,0,"Job Change to Priest"
8015,0,0,0,0,0,0,0,"Job Change to Priest"
8016,0,0,0,0,0,0,0,"Job Change to Priest"
8017,0,0,0,0,0,0,0,"Factory Inspection"
8018,0,0,0,0,0,0,0,"Factory Inspection"
8019,0,0,0,0,0,0,0,"Factory Inspection"
8020,0,0,0,0,0,0,0,"Factory Inspection"
8021,0,0,0,0,0,0,0,"Factory Inspection"
8022,0,0,0,0,0,0,0,"Factory Inspection"
8023,0,0,0,0,0,0,0,"Factory Inspection"
8024,0,0,0,0,0,0,0,"Factory Inspection"
8025,0,0,0,0,0,0,0,"Factory Inspection"
8026,0,0,0,0,0,0,0,"Factory Inspection"
8027,0,0,0,0,0,0,0,"Factory Inspection"
8028,0,0,0,0,0,0,0,"Factory Inspection"
8029,0,0,0,0,0,0,0,"Factory Inspection"
8030,0,0,0,0,0,0,0,"Factory Inspection"
8031,0,0,0,0,0,0,0,"Factory Inspection"
8032,0,0,0,0,0,0,0,"Tarlock's Favor"
8033,0,0,0,0,0,0,0,"Ferlock's Favor"
8034,0,0,0,0,0,0,0,"Ferlock's Favor"
8035,0,0,0,0,0,0,0,"How the Airship Works"
8036,0,0,0,0,0,0,0,"Hallen's Favor"
8037,0,0,0,0,0,0,0,"The Dice Roller"
8038,0,0,0,0,0,0,0,"The Dice Roller"
8039,0,0,0,0,0,0,0,"Secret of Airships"
8040,0,0,0,0,0,0,0,"Secret of Airships"
8041,0,0,0,0,0,0,0,"Secret of Airships"
8042,0,0,0,0,0,0,0,"Secret of Airships"
8043,0,0,0,0,0,0,0,"Secret of Airships"
8044,0,0,0,0,0,0,0,"Euslan's Fiancee"
8045,0,0,0,0,0,0,0,"Tips from Kaci"
8046,0,0,0,0,0,0,0,"Ferlock's Passengers list"
8047,0,0,0,0,0,0,0,"Euslan's Favor"
8048,0,0,0,0,0,0,0,"Eukran's Testimony"
8049,0,0,0,0,0,0,0,"Thierry's Favor"
8050,0,0,0,0,0,0,0,"Danger coming on to Thierry"
8051,0,0,0,0,0,0,0,"Euslan's Medicine"
8052,0,0,0,0,0,0,0,"Thierry's Favor"
8053,0,0,0,0,0,0,0,"Find Postell"
8054,0,0,0,0,0,0,0,"Message from Postell"
8055,0,0,0,0,0,0,0,"Nursing Allen"
8056,0,0,0,0,0,0,0,"Little something in return"
8057,0,0,0,0,0,0,0,"Grumbling Manainne"
8058,0,0,0,0,0,0,0,"Conversation with El Schatt"
8059,0,0,0,0,0,0,0,"Conversation with Perfitz"
8060,0,0,0,0,0,0,0,"Stubborn El Schatt"
8061,0,0,0,0,0,0,0,"Stories of the past"
8062,0,0,0,0,0,0,0,"Kanainne"
8063,0,0,0,0,0,0,0,"Kanainne's spirit"
8064,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
8065,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
8066,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
8067,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
8068,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
8069,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
8070,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
8071,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
8072,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
8073,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
8074,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
8075,0,0,0,0,0,0,0,"Cellette's Fish Cake Soup"
8076,0,0,0,0,0,0,0,"Klitzer and Calla"
8077,0,0,0,0,0,0,0,"Klitzer and Calla"
8078,0,0,0,0,0,0,0,"Klitzer and Calla"
8079,0,0,0,0,0,0,0,"Klitzer and Calla"
8080,0,0,0,0,0,0,0,"Klitzer and Calla"
8081,0,0,0,0,0,0,0,"Klitzer and Calla"
8082,0,0,0,0,0,0,0,"Klitzer and Calla"
8083,0,0,0,0,0,0,0,"Klitzer and Calla"
8084,0,0,0,0,0,0,0,"Klitzer and Calla"
8085,0,0,0,0,0,0,0,"Klitzer and Calla"
8086,0,0,0,0,0,0,0,"Klitzer and Calla"
8087,0,0,0,0,0,0,0,"Klitzer and Calla"
8088,0,0,0,0,0,0,0,"Klitzer and Calla"
8089,0,0,0,0,0,0,0,"Stolen Gemstone"
8090,0,0,0,0,0,0,0,"Mr. Manson"
8091,0,0,0,0,0,0,0,"Jenny the gardener"
8092,0,0,0,0,0,0,0,"Searching the Market"
8093,0,0,0,0,0,0,0,"Mysterious Message"
8094,0,0,0,0,0,0,0,"Double Crossed?"
8095,0,0,0,0,0,0,0,"Find Phobe"
8096,0,0,0,0,0,0,0,"Stolen Gemstone Found"
8097,0,0,0,0,0,0,0,"Informing Jenny"
8098,0,0,0,0,0,0,0,"Keeping the Secret"
8099,0,0,0,0,0,0,0,"Vincent's Recommendation"
8100,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
8101,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
8102,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
8103,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
8104,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
8105,0,0,0,0,0,0,0,"Recommendation from High Priest Zhed"
8106,0,0,0,0,0,0,0,"Mr. Shendar's daughter"
8107,0,0,0,0,0,0,0,"Lachellen's Testimony"
8108,0,0,0,0,0,0,0,"A Foreigner, Katinshuell"
8109,0,0,0,0,0,0,0,"Bruspetti's scent"
8110,0,0,0,0,0,0,0,"Bruspetti's scent"
8111,0,0,0,0,0,0,0,"Lachellen's Testimony"
8112,0,0,0,0,0,0,0,"Freya's Spring"
8113,0,0,0,0,0,0,0,"Bruspetti's Diary"
8114,0,0,0,0,0,0,0,"Bruspetti's Diary"
8115,0,0,0,0,0,0,0,"Suspicious Katinshuell"
8116,0,0,0,0,0,0,0,"Lachellen's Testimony"
8117,0,0,0,0,0,0,0,"Freya's Spring"
8118,0,0,0,0,0,0,0,"Conversation with Mr. Shendar"
8119,0,0,0,0,0,0,0,"Bruspetti's Diary"
8120,0,0,0,0,0,0,0,"Conversation with Katinshuell"
8121,0,0,0,0,0,0,0,"Conversation with Katinshuell"
8122,0,0,0,0,0,0,0,"Bruspetti's resting place"
8123,0,0,0,0,0,0,0,"Ayotaya's world famous dish, Tom Yum Goong"
8124,0,0,0,0,0,0,0,"Ayotaya's world famous dish, Tom Yum Goong"
8125,0,0,0,0,0,0,0,"Ayotaya's world famous dish, Tom Yum Goong"
8126,0,0,0,0,0,0,0,"Ayotaya's world famous dish, Tom Yum Goong"
8127,0,0,0,0,0,0,0,"Momotaro Field Trip"
8128,0,0,0,0,0,0,0,"Momotaro Field Trip"
8129,0,0,0,0,0,0,0,"Momotaro Field Trip"
8130,0,0,0,0,0,0,0,"Momotaro Field Trip"
8131,0,0,0,0,0,0,0,"The mother of lord in Amatsu"
8132,0,0,0,0,0,0,0,"The mother of lord in Amatsu"
8133,0,0,0,0,0,0,0,"Song of the fox"
8134,0,0,0,0,0,0,0,"Boy at the Northern Shrine"
8135,0,0,0,0,0,0,0,"Fox Expelled"
8136,0,0,0,0,0,0,0,"The Gray Wolf's Warning"
8137,0,0,0,0,0,0,0,"Finding the Keymaker"
8138,0,0,0,0,0,0,0,"Blacksmith's Request"
8139,0,0,0,0,0,0,0,"The Golden Key"
8140,0,0,0,0,0,0,0,"The Red Ring"
8141,0,0,0,0,0,0,0,"Mashenka's Red Ring"
8142,0,0,0,0,0,0,0,"Searching the Marsh"
8143,0,0,0,0,0,0,0,"The Flute's Voice"
8144,0,0,0,0,0,0,0,"Ryubaba's Confession"
8145,0,0,0,0,0,0,0,"Worried Mother's Request"
8146,0,0,0,0,0,0,0,"Finding Lusalka"
8147,0,0,0,0,0,0,0,"Lusalka's Beloved"
8148,0,0,0,0,0,0,0,"Lusalka's Beloved"
8149,0,0,0,0,0,0,0,"Searching for Igor"
8150,0,0,0,0,0,0,0,"Igor's message"
8151,0,0,0,0,0,0,0,"Marozka's Cave"
8152,0,0,0,0,0,0,0,"The Golden Thread"
8153,0,0,0,0,0,0,0,"Test of mind and wisdom"
8154,0,0,0,0,0,0,0,"The Keymaker"
8155,0,0,0,0,0,0,0,"Baba Yaga's Favor"
8156,0,0,0,0,0,0,0,"Baba Yaga's Favor"
8157,0,0,0,0,0,0,0,"Baba Yaga's Favor"
8158,0,0,0,0,0,0,0,"Baba Yaga's Favor"
8159,0,0,0,0,0,0,0,"Baba Yaga's Favor"
8160,0,0,0,0,0,0,0,"Baba Yaga's Favor"
8161,0,0,0,0,0,0,0,"Baba Yaga's Favor"
8162,0,0,0,0,0,0,0,"Baba Yaga's Favor"
8163,0,0,0,0,0,0,0,"Baba Yaga's Favor"
8164,0,0,0,0,0,0,0,"Baba Yaga's Favor"
8165,0,0,0,0,0,0,0,"Baba Yaga's Favor"
8166,0,0,0,0,0,0,0,"Baba Yaga's Favor"
8167,0,0,0,0,0,0,0,"The Golden Key"
8168,0,0,0,0,0,0,0,"Koshei, the Immortal"
8169,0,0,0,0,0,0,0,"Living and Dead Water"
8170,0,0,0,0,0,0,0,"Living and Dead Water"
8171,0,0,0,0,0,0,0,"Living and Dead Water"

8181,0,0,0,0,0,0,0,"Sight Blaster"
8182,0,0,0,0,0,0,0,"Push Back Theory"
8183,0,0,0,0,0,0,0,"Sight Blaster"
8184,0,0,0,0,0,0,0,"Elemental Converter"
8185,0,0,0,0,0,0,0,"Elemental Change"
8186,0,0,0,0,0,0,0,"Fire Elemental Change"
8187,0,0,0,0,0,0,0,"Earth Elemental Change"
8188,0,0,0,0,0,0,0,"Wind Elemental Change"
8189,0,0,0,0,0,0,0,"Water Elemental Change"
8190,0,0,0,0,0,0,0,"Charming Wink"
8191,0,0,0,0,0,0,0,"Charming Advisor"
8192,0,0,0,0,0,0,0,"Selfish Advisor"
8193,0,0,0,0,0,0,0,"Selfish Advisor"
8194,0,0,0,0,0,0,0,"Drunken Advisor"
8195,0,0,0,0,0,0,0,"Kind Canell"
8196,0,0,0,0,0,0,0,"The Tripartite Union's Feud"
8197,0,0,0,0,0,0,0,"Document Delivery"
8198,0,0,0,0,0,0,0,"Report to the United Research Official"
8199,0,0,0,0,0,0,0,"United Research Official's Favor"
8200,0,0,0,0,0,0,0,"Ryosen's Document Requests"
8201,0,0,0,0,0,0,0,"Missing Document"
8202,0,0,0,0,0,0,0,"Document Restoration"
8203,0,0,0,0,0,0,0,"Document Restoration"
8204,0,0,0,0,0,0,0,"Ryosen"
8205,0,0,0,0,0,0,0,"Report to the United Research Official"
8206,0,0,0,0,0,0,0,"Researchers' Meeting"
8207,0,0,0,0,0,0,0,"Hansenne is not guilty."
8208,0,0,0,0,0,0,0,"Hansenne's Favor"
8209,0,0,0,0,0,0,0,"Hue's Report"
8210,0,0,0,0,0,0,0,"Report to the United Research Official"
8211,0,0,0,0,0,0,0,"Shurank's Lecture"
8212,0,0,0,0,0,0,0,"Shurank's Lecture"
8213,0,0,0,0,0,0,0,"Shurank's Lecture"
8214,0,0,0,0,0,0,0,"Shurank's Lecture"
8215,0,0,0,0,0,0,0,"Shurank's Lecture"
8216,0,0,0,0,0,0,0,"Shurank's Order"
8217,0,0,0,0,0,0,0,"Dequ'ee's Message"
8218,0,0,0,0,0,0,0,"Shurank's Lecture"
8219,0,0,0,0,0,0,0,"Shurank's Lecture"
8220,0,0,0,0,0,0,0,"Shurank's Lecture"
8221,0,0,0,0,0,0,0,"Shurank's Lecture"
8222,0,0,0,0,0,0,0,"Shurank's order"
8223,0,0,0,0,0,0,0,"Dequ'ee's order"
8224,0,0,0,0,0,0,0,"The clue"
8225,0,0,0,0,0,0,0,"Dequ'ee's Reasoning"
8226,0,0,0,0,0,0,0,"Bankley's Death"
8227,0,0,0,0,0,0,0,"Return to Shurank"
8228,0,0,0,0,0,0,0,"Shurank's Lecture"
8229,0,0,0,0,0,0,0,"Guarnien's Lecture"
8230,0,0,0,0,0,0,0,"Guarnien's Lecture"
8231,0,0,0,0,0,0,0,"Guarnien's Lecture"
8232,0,0,0,0,0,0,0,"Guarnien's Lecture"
8233,0,0,0,0,0,0,0,"Guarnien's Lecture"
8234,0,0,0,0,0,0,0,"Prontera Market Research"
8235,0,0,0,0,0,0,0,"Guarnien's Lecture"
8236,0,0,0,0,0,0,0,"Guarnien's Lecture"
8237,0,0,0,0,0,0,0,"Guarnien's Lecture"
8238,0,0,0,0,0,0,0,"Guarnien's Lecture"
8239,0,0,0,0,0,0,0,"Guarnien's Lecture"
8240,0,0,0,0,0,0,0,"Guarnien's Lecture"
8241,0,0,0,0,0,0,0,"Collection of Red Jewel"
8242,0,0,0,0,0,0,0,"Collection of blue Jewel"
8243,0,0,0,0,0,0,0,"Learning new languages"
8244,0,0,0,0,0,0,0,"Fairies and Tree Giants"
8245,0,0,0,0,0,0,0,"Language sample investigation"
8246,0,0,0,0,0,0,0,"Language sample investigation"
8247,0,0,0,0,0,0,0,"Research progress"
8248,0,0,0,0,0,0,0,"Research progress"
8249,0,0,0,0,0,0,0,"Compressing Information"
8250,0,0,0,0,0,0,0,"Storage Gem"
8251,0,0,0,0,0,0,0,"Injection of Magic"
8252,0,0,0,0,0,0,0,"Handworked jewels"
8253,3600,0,0,0,0,0,0,"Language translation device"

8254,0,0,0,0,0,0,0,"with a light heart and body"
8255,0,0,0,0,0,0,0,"The test of power for existence"
8256,0,0,0,0,0,0,0,"The test of power for existence"
8257,0,0,0,0,0,0,0,"Providing food of Teardrop"
8258,0,0,0,0,0,0,0,"Providing food of Teardrop"
8259,0,0,0,0,0,0,0,"to a place for taking a practical technique test"
8260,0,0,0,0,0,0,0,"Mission! Documents delivery"
8261,0,0,0,0,0,0,0,"When you play the flute,then the wolf show up!"
8262,0,0,0,0,0,0,0,"Ranger master never again"

8265,0,0,0,0,0,0,0,"One time a one hour!"

8266,0,1077,10,0,0,0,0,"Hunting poison spore!"
8267,0,1056,10,0,0,0,0,"Hunting smokie!"
8268,0,1033,10,0,0,0,0,"Hunt elder wilow!"
8269,0,1104,10,0,0,0,0,"Hunt coco!"
8270,0,1034,10,0,0,0,0,"Hunt tharafrog!"
8271,0,0,0,0,0,0,0,"Toxic sprays delivery!"
8272,0,0,0,0,0,0,0,"Deliver a honey!"
8273,0,0,0,0,0,0,0,"Deliver a  blanket!"
8274,0,0,0,0,0,0,0,"Collect bones!"
8275,0,0,0,0,0,0,0,"Collect feet!"
8276,0,0,0,0,0,0,0,"Collect scell!"
8277,0,0,0,0,0,0,0,"Collect tails!"
8278,0,0,0,0,0,0,0,"Collect cookies!"
8279,0,0,0,0,0,0,0,"Collect mustache!"

9000,0,0,0,0,0,0,0,"Job Change to Knight"
9001,0,0,0,0,0,0,0,"Loyalty of a Knight"
9002,0,0,0,0,0,0,0,"Loyalty of a Knight"
9003,0,0,0,0,0,0,0,"The Honor of a Knight"
9004,0,0,0,0,0,0,0,"The Honor of a Knight"
9005,0,0,0,0,0,0,0,"Tenacity of a Knight"
9006,0,0,0,0,0,0,0,"Tenacity of a Knight"
9007,0,0,0,0,0,0,0,"The Honor of a Knight"
9008,0,0,0,0,0,0,0,"Etiquette as a Knight"
9009,0,0,0,0,0,0,0,"Life as a Knight"
9010,0,0,0,0,0,0,0,"Quality of reverence"
9011,0,0,0,0,0,0,0,"Life as a Knight"
9012,0,0,0,0,0,0,0,"Glory of a Knight!"
9013,0,0,0,0,0,0,0,"Job Change to Wizard"
9014,0,0,0,0,0,0,0,"Job Change to Wizard"
9015,0,0,0,0,0,0,0,"Job Change to Wizard"
9016,0,0,0,0,0,0,0,"Job Change to Wizard"
9017,0,0,0,0,0,0,0,"Job Change to Wizard"
9018,0,0,0,0,0,0,0,"Certified as a Wizard!"
9058,0,0,0,0,0,0,0,"O'Riley's Request"
9059,0,0,0,0,0,0,0,"Happy St. Patrick's Day"
9117,0,0,0,0,0,0,0,"Lina's Curse"
9118,0,0,0,0,0,0,0,"Lina's Curse - Deviruchi Hunt"
9119,0,0,0,0,0,0,0,"Lina's Curse - Wraith Dead Hunt"
9120,0,0,0,0,0,0,0,"Lina's Curse - Dullahan Hunt"
9121,0,0,0,0,0,0,0,"Lina's Curse - Nightmare Terror Hunt"
9122,0,0,0,0,0,0,0,"Lina's Curse"
9123,0,0,0,0,0,0,0,"Lina's Curse"
9024,0,0,0,0,0,0,0,"An errand boy from Einbroch"
// kRO
//9028,0,0,0,0,0,0,0,"strange Mouse"
//9029,86400,0,0,0,0,0,0,"Strange Mouse : present conditions"
// iRO/cRO
9028,0,0,0,0,0,0,0,"strange Hydra"
9029,86400,0,0,0,0,0,0,"Strange Hydra : present conditions"
9030,0,0,0,0,0,0,0,"Find a puppy"
9031,0,0,0,0,0,0,0,"Find a puppy"
9032,86400,0,0,0,0,0,0,"Find a puppy"

9155,0,0,0,0,0,0,0,"Getting materials for the Jaty Crown"
9156,0,0,0,0,0,0,0,"Make the Jaty Crown"
9157,0,0,0,0,0,0,0,"Reward from Sage, Kasyapa"
9158,0,0,0,0,0,0,0,"Delivery of Good News(1)"
9159,0,0,0,0,0,0,0,"Back to Paiko"
9160,0,0,0,0,0,0,0,"Delivery of Good News(2)"
9161,0,0,0,0,0,0,0,"Back to Paiko"
9162,0,0,0,0,0,0,0,"Delivery of Good News(3)"
9163,0,0,0,0,0,0,0,"Back to Paiko"
9164,0,0,0,0,0,0,0,"Delivery of Good News(4)"
9165,0,0,0,0,0,0,0,"Reward from Paiko for success of Jaty Crown"

9167,0,0,0,0,0,0,0,"Tutorial - Mercenary for Hire"
9168,0,0,0,0,0,0,0,"Quest Window Check"
9169,0,0,0,0,0,0,0,"Window Shopper Catalogue"
9170,0,0,0,0,0,0,0,"Window Shopper Catalogue"
9171,0,0,0,0,0,0,0,"Enchanting Items"
9172,0,0,0,0,0,0,0,"Enchanted Items"
9173,72000,0,0,0,0,0,0,"Tutorial Timer Cooldown"

9222,0,0,0,0,0,0,0,"Get Rid of Bangungot from Hospital 2F"
9223,0,0,0,0,0,0,0,"Will there be Peace at the Hospital?"
9224,0,0,0,0,0,0,0,"Explore Hospital 2F"

9225,0,0,0,0,0,0,0,"Mystery Robbery Incident 1"
9226,0,0,0,0,0,0,0,"Mystery Robbery Incident 2"
9227,0,0,0,0,0,0,0,"Mystery Robbery Incident 3"
9228,0,0,0,0,0,0,0,"Mystery Robbery Incident 4"
9229,0,0,0,0,0,0,0,"Mystery Robbery Incident 5"
9230,0,0,0,0,0,0,0,"Mystery Robbery Incident 6"
9231,0,0,0,0,0,0,0,"Mystery Robbery Incident 7"
9232,0,0,0,0,0,0,0,"Mystery Robbery Incident 8"
9233,0,0,0,0,0,0,0,"Mystery Robbery Incident 9"
9234,0,0,0,0,0,0,0,"Mystery Robbery Incident 10"
9235,0,0,0,0,0,0,0,"Mystery Robbery Incident 11"
9236,0,0,0,0,0,0,0,"Mystery Robbery Incident 12"
9237,0,0,0,0,0,0,0,"Mystery Robbery Incident 13"
9238,0,0,0,0,0,0,0,"Mystery Robbery Incident 14"
9239,0,0,0,0,0,0,0,"Mystery Robbery Incident 15"
9240,0,0,0,0,0,0,0,"Luen's statement notes"
9241,0,0,0,0,0,0,0,"Luen's statement notes"
9242,0,0,0,0,0,0,0,"Luen's statement notes"
9243,0,0,0,0,0,0,0,"Luen's statement notes"
9244,0,0,0,0,0,0,0,"Dames's statement notes"
9245,0,0,0,0,0,0,0,"Dames's statement notes"
9246,0,0,0,0,0,0,0,"Dames's statement notes"
9247,0,0,0,0,0,0,0,"Dames's statement notes"
9248,0,0,0,0,0,0,0,"Rosa's statement notes"
9249,0,0,0,0,0,0,0,"Rosa's statement notes"
9250,0,0,0,0,0,0,0,"Rosa's statement notes"
9251,0,0,0,0,0,0,0,"Rosa's statement notes"
9252,0,0,0,0,0,0,0,"Observing Poppy"
9253,0,0,0,0,0,0,0,"Examining a messy bookshelf"
9254,0,0,0,0,0,0,0,"Examining a damaged book"
9255,0,0,0,0,0,0,0,"Examining a container for soda cans"
9256,0,0,0,0,0,0,0,"Examining a messed up table"
9257,0,0,0,0,0,0,0,"Examining a foreign object"
9258,0,0,0,0,0,0,0,"Field examination results"
9259,0,0,0,0,0,0,0,"Confirming Cruyan's statements"
9260,0,0,0,0,0,0,0,"Survey investigation notes"
9262,0,0,0,0,0,0,0,"Mystery Robbery Incident 16"

10000,0,0,0,0,0,0,0,"To the Prontera Royal Court"
10001,0,0,0,0,0,0,0,"Qualification Test"
10002,0,0,0,0,0,0,0,"Qualification Review"
10003,0,0,0,0,0,0,0,"Instructions on what to do"
10004,0,0,0,0,0,0,0,"Interim Report"
10005,0,0,0,0,0,0,0,"Prince Eigen Ahrum"
10006,0,0,0,0,0,0,0,"Prince Ernst"
10007,0,0,0,0,0,0,0,"Prince Poe"
10008,0,0,0,0,0,0,0,"Prince Peter"
10009,0,0,0,0,0,0,0,"Prince Urugen"
10010,0,0,0,0,0,0,0,"Prince Helmut"
10011,0,0,0,0,0,0,0,"Prince Erich"
10012,0,0,0,0,0,0,0,"Conversation of the two princes"
10013,0,0,0,0,0,0,0,"Searching for the unknown girl"
10014,0,0,0,0,0,0,0,"Back to Peter"
10015,0,0,0,0,0,0,0,"Test 15"
10016,0,0,0,0,0,0,0,"A Guest from the Walter Family"
10017,0,0,0,0,0,0,0,"Conspiracy"
10018,0,0,0,0,0,0,0,"Villainous Ahrum - Poe"
10019,0,0,0,0,0,0,0,"Villainous Ahrum - Peter"
10020,0,0,0,0,0,0,0,"Villainous Ahrum - Erich"
10021,0,0,0,0,0,0,0,"Villainous Ahrum - Urugen"
10022,0,0,0,0,0,0,0,"Villainous Ahrum - Helmut"
10023,0,0,0,0,0,0,0,"Eigen Ahrum and Ernst -Former-"
10024,0,0,0,0,0,0,0,"Eigen Ahrum and Ernst -Latter-"
10025,0,0,0,0,0,0,0,"Good-bye, dear!"
10026,0,0,0,0,0,0,0,"Reforming Meto"
10027,0,0,0,0,0,0,0,"Reforming Meto"
10028,0,0,0,0,0,0,0,"Reforming Meto"
10029,0,0,0,0,0,0,0,"Reforming Meto"
10030,0,0,0,0,0,0,0,"Reforming Meto"
10031,0,0,0,0,0,0,0,"Reforming Meto"
10032,0,0,0,0,0,0,0,"Reforming Meto"
10033,0,0,0,0,0,0,0,"Reforming Meto"
10034,0,0,0,0,0,0,0,"Search the knife"
10035,0,0,0,0,0,0,0,"Deliver the knife"
10036,0,0,0,0,0,0,0,"Material Supply-Candy"
10037,0,0,0,0,0,0,0,"Material Supply-Crap Shells"
10038,0,0,0,0,0,0,0,"Material Supply-Conch"
10039,0,0,0,0,0,0,0,"Material Supply-Fish Tail"
10040,0,0,0,0,0,0,0,"Material Supply-White Platter"
10041,0,0,0,0,0,0,0,"Material Supply-?"
10042,0,0,0,0,0,0,0,"Find the Piano Keys-5 remained"
10043,0,0,0,0,0,0,0,"Find the Piano Keys-5 remained"
10044,0,0,0,0,0,0,0,"Find the Piano Keys-4 remained"
10045,0,0,0,0,0,0,0,"Find the Piano Keyboard-4 remained"
10046,0,0,0,0,0,0,0,"Find the Piano Keyboard-3 remained"
10047,0,0,0,0,0,0,0,"Find the Piano Keyboard-3 remained"
10048,0,0,0,0,0,0,0,"Find the Piano Keyboard-2 remained"
10049,0,0,0,0,0,0,0,"Find the Piano Keyboard-2 remained"
10050,0,0,0,0,0,0,0,"Find the Piano Keyboard-1 remained"
10051,0,0,0,0,0,0,0,"Find the Piano Keyboard-1 remained"
10052,0,0,0,0,0,0,0,"Find the Piano Keyboard-To the piano"
10053,0,0,0,0,0,0,0,"Find the Piano Keyboard-Fill the empty spot"
10054,0,0,0,0,0,0,0,"On the Verge of the Escape-Clint Kana"
10055,0,0,0,0,0,0,0,"Understanding the culture of Utan"
10056,0,0,0,0,0,0,0,"Learning Utan Language"
10057,0,0,0,0,0,0,0,"Onward to the Other World"
10058,0,0,0,0,0,0,0,"Onward to the Other World"
10059,0,0,0,0,0,0,0,"Onward to the Other World"
10060,0,0,0,0,0,0,0,"Onward to the Other World"
10061,0,0,0,0,0,0,0,"Onward to the Other World"
10062,0,0,0,0,0,0,0,"Onward to the Other World"
10063,0,0,0,0,0,0,0,"Onward to the Other World"
10064,0,0,0,0,0,0,0,"Onward to the Other World"
10065,0,0,0,0,0,0,0,"Onward to the Other World"
10066,0,0,0,0,0,0,0,"Onward to the Other World"
10067,0,0,0,0,0,0,0,"Onward to the Other World"
10068,0,0,0,0,0,0,0,"Onward to the Other World"
10069,0,0,0,0,0,0,0,"Onward to the Other World"
10070,0,0,0,0,0,0,0,"Onward to the Other World"
10071,0,0,0,0,0,0,0,"Onward to the Other World"
10072,0,0,0,0,0,0,0,"Onward to the Other World"
10073,0,0,0,0,0,0,0,"Onward to the Other World"
10074,0,0,0,0,0,0,0,"Onward to the Other World"
10075,0,0,0,0,0,0,0,"Onward to the Other World"
10076,0,0,0,0,0,0,0,"Onward to the Other World"
10077,0,0,0,0,0,0,0,"Onward to the Other World"
10078,0,0,0,0,0,0,0,"Onward to the Other World"
10079,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
10080,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
10081,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
10082,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
10083,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
10084,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
10085,86400,0,0,0,0,0,0,"Escape from the reality, into the broad world"
10086,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
10087,86400,0,0,0,0,0,0,"Escape from the reality, into the broad world"
10088,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"
10089,0,0,0,0,0,0,0,"Escape from the reality, into the broad world"

10090,0,0,0,0,0,0,0,"Job changes to Mechanic"
10091,0,0,0,0,0,0,0,"Job changes to Mechanic"
10092,0,0,0,0,0,0,0,"Job changes to Mechanic"
10093,0,0,0,0,0,0,0,"Job changes to Mechanic"
10094,0,0,0,0,0,0,0,"Job changes to Mechanic"
10095,0,0,0,0,0,0,0,"Job changes to Mechanic"
10096,0,0,0,0,0,0,0,"Job changes to Mechanic"
10097,0,0,0,0,0,0,0,"Job changes to Mechanic"
10098,0,0,0,0,0,0,0,"Job changes to Mechanic"
10099,0,0,0,0,0,0,0,"Job changes to Mechanic"
10100,0,0,0,0,0,0,0,"Job changes to Mechanic"
10101,0,0,0,0,0,0,0,"Job changes to Mechanic"

10102,0,0,0,0,0,0,0,"To client - the chapter of the sphinx dungeon"
10103,0,0,0,0,0,0,0,"To client - the chapter of Glast heim"
10104,0,0,0,0,0,0,0,"To client - the chapter of Yuno"
10105,0,0,0,0,0,0,0,"To client - the chapter of a clock tower"
10106,0,0,0,0,0,0,0,"To client - the chapter of localizing "
10107,0,1164,10,0,0,0,0,"Sphinx dungeon - Requiem"
10108,0,1140,10,0,0,0,0,"Sphinx dungeon - Marduk"
10109,0,1154,10,0,0,0,0,"Sphinx dungeon - Pasana"
10110,0,1260,10,0,0,0,0,"Glast heim - Dark Frame"
10111,0,1117,10,0,0,0,0,"Glast heim - Evil druid"
10112,0,1192,10,0,0,0,0,"Glast heim - Wraith"
10113,0,1276,10,0,0,0,0,"Glast Heim - Raydric Archer"
10114,0,1369,20,0,0,0,0,"Juno - Grand Peco"
10115,0,1386,20,0,0,0,0,"Juno - sleeper"
10116,0,1372,20,0,0,0,0,"Juno - Goat"
10117,0,1376,20,0,0,0,0,"Juno - Harpy"
10118,0,1269,15,0,0,0,0,"clock tower - Clock"
10119,0,1199,15,0,0,0,0,"clock tower - Punk"
10120,0,1195,15,0,0,0,0,"clock tower - Rideword"
10121,0,1883,15,0,0,0,0,"Localizing - Uzhas"
10122,0,1404,15,0,0,0,0,"Localizing - Miyabi Doll"
10123,0,1516,15,0,0,0,0,"Localizing - Mi Gao"

11000,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
11001,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
11002,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
11003,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
11004,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
11005,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
11006,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
11007,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
11008,0,0,0,0,0,0,0,"Inspection of Odin Shrine"
11009,0,0,0,0,0,0,0,"Morriphen's Request"
11010,0,0,0,0,0,0,0,"Fetching the medicine"
11011,0,0,0,0,0,0,0,"Medicine for two"
11012,0,0,0,0,0,0,0,"Find Makkie"
11013,0,0,0,0,0,0,0,"Red Plant Stem Powder"
11014,0,0,0,0,0,0,0,"The researcher's medicine"
11015,0,0,0,0,0,0,0,"Siria's cure"
11016,0,0,0,0,0,0,0,"Morriphen's story"
11017,0,0,0,0,0,0,0,"Exploring Juperos"
11018,0,0,0,0,0,0,0,"Exploring Juperos"
11019,0,0,0,0,0,0,0,"Exploring Juperos"
11020,0,0,0,0,0,0,0,"Exploring Juperos"
11021,0,0,0,0,0,0,0,"Exploring Juperos"
11022,0,0,0,0,0,0,0,"Exploring Juperos"
// iRO Event Quest
//11023,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 1"
//11024,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 2"
//11025,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 3"
//11026,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 4"
//11027,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 5"
//11028,0,0,0,0,0,0,0,"Help Mr. Zabaroo - 6"
11029,0,0,0,0,0,0,0,"Going to the Turtle Island.."
11030,0,0,0,0,0,0,0,"Going to the Turtle Island.."
11031,0,0,0,0,0,0,0,"Going to the Turtle Island.."
11032,0,0,0,0,0,0,0,"Going to the Turtle Island.."
11033,0,0,0,0,0,0,0,"Going to the Turtle Island.."
11034,0,0,0,0,0,0,0,"Going to the Turtle Island.."
11035,0,0,0,0,0,0,0,"Going to the Turtle Island.."
11036,0,0,0,0,0,0,0,"Going to the Turtle Island.."
11037,0,0,0,0,0,0,0,"Going to the Turtle Island.."
11038,0,0,0,0,0,0,0,"Meet the Dead"
11039,0,0,0,0,0,0,0,"Meet the Dead"
11040,0,0,0,0,0,0,0,"Meet the Dead"
11041,0,0,0,0,0,0,0,"Meet the Dead"
11042,0,0,0,0,0,0,0,"Meet the Dead"
11043,0,0,0,0,0,0,0,"Meet the Dead"
11044,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
11045,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
11046,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
11047,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
11048,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
11049,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
11050,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
11051,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
11052,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
11053,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
11054,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
11055,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
11056,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
11057,0,0,0,0,0,0,0,"Herb Medicine - Being a Doctor's Assistance"
11070,0,0,0,0,0,0,0,"Poison King"
11071,0,0,0,0,0,0,0,"Poison King"
11072,0,0,0,0,0,0,0,"Poison King"
11073,0,0,0,0,0,0,0,"Poison King"
11074,0,0,0,0,0,0,0,"Poison King"
11075,0,0,0,0,0,0,0,"Poison King"
11076,0,0,0,0,0,0,0,"Poison King"
11077,0,0,0,0,0,0,0,"Poison King"
11078,0,0,0,0,0,0,0,"Poison King"
11079,0,0,0,0,0,0,0,"Poison King"
11080,0,0,0,0,0,0,0,"Poison King"
11081,0,0,0,0,0,0,0,"Poison King"
11082,0,0,0,0,0,0,0,"Poison King"
11083,0,0,0,0,0,0,0,"Poison King"
11084,0,0,0,0,0,0,0,"New Surroundings"
11085,0,0,0,0,0,0,0,"New Surroundings"
11086,0,0,0,0,0,0,0,"New Surroundings"
11087,0,0,0,0,0,0,0,"Repairing the Tent"
11088,0,0,0,0,0,0,0,"Repairing the Tent"
11089,0,0,0,0,0,0,0,"Repairing the Tent"
11090,0,0,0,0,0,0,0,"Repairing the Tent"
11091,0,0,0,0,0,0,0,"Delivering Supplies"
11092,0,0,0,0,0,0,0,"Delivering Supplies"
11093,0,0,0,0,0,0,0,"Delivering Supplies"
11094,0,0,0,0,0,0,0,"Delivering Supplies"
11095,0,0,0,0,0,0,0,"Delivering Supplies"
11096,0,0,0,0,0,0,0,"Delivering Supplies"
11097,0,0,0,0,0,0,0,"Delivering Supplies"
11098,0,0,0,0,0,0,0,"Delivering Supplies"
11099,0,0,0,0,0,0,0,"To My Friend"
11100,0,0,0,0,0,0,0,"To My Friend"
11101,0,0,0,0,0,0,0,"Secret note of Bazet"
11102,0,0,0,0,0,0,0,"Secret note of Bazet"
11103,0,0,0,0,0,0,0,"Secret note of Bazet"
11104,82800,0,0,0,0,0,0,"Resting time"
11105,0,0,0,0,0,0,0,"Tendrilrion skin"

11106,0,0,0,0,0,0,0,"Job changing to Warlock"
11107,0,0,0,0,0,0,0,"Job changing to Warlock"
11108,0,0,0,0,0,0,0,"Job changing to Warlock"
11109,0,0,0,0,0,0,0,"Job changing to Warlock"
11110,0,0,0,0,0,0,0,"Job changing to Warlock"
11111,0,0,0,0,0,0,0,"Job changing to Warlock"
11112,0,0,0,0,0,0,0,"Job changing to Warlock"
11113,82800,0,0,0,0,0,0,"Until radering is functioning"

11114,0,1004,10,0,0,0,0,"Request : Hunt Honet"
11115,0,1009,20,0,0,0,0,"Request : Hunt Condor"
11116,0,1052,10,0,0,0,0,"Request : Hunt Grasshopper's Leg"
11117,0,1024,20,0,0,0,0,"Request : Hunt Worm tail"
11118,0,1014,30,0,0,0,0,"Request : Hunt Spore"
11119,0,1048,20,0,0,0,0,"Request : Pest Control"
11120,0,1055,20,0,0,0,0,"Request : Hunt Muka"
11121,0,1005,20,0,0,0,0,"Request : Hunt Farmiliar"
11122,0,1019,30,0,0,0,0,"Request : Collect Feather"
11123,0,1077,30,0,0,0,0,"Request : Collect Poison Spore"
11124,86400,0,0,0,0,0,0,"Request : Hunt Honet - Complete"
11125,86400,0,0,0,0,0,0,"Request : Hunt Condor - Complete"
11126,86400,0,0,0,0,0,0,"Request : Hunt Grasshopper's Leg - Complete"
11127,86400,0,0,0,0,0,0,"Request : Hunt Worm Tail - Complete"
11128,86400,0,0,0,0,0,0,"Request : Hunt Spore - Complete"
11129,86400,0,0,0,0,0,0,"Request : Pest Control - Complete"
11130,86400,0,0,0,0,0,0,"Request : Hunt Muka - Complete"
11131,86400,0,0,0,0,0,0,"Request : Hunt Farmiliar - Complete"
11132,86400,0,0,0,0,0,0,"Request : Collect Feather - Complete"
11133,86400,0,0,0,0,0,0,"Request : Collect Poison Spore - Complete"

11135,0,0,0,0,0,0,0,"Looking for Maestro Song"
11136,0,0,0,0,0,0,0,"Looking for Maestro Song"
11137,0,0,0,0,0,0,0,"Looking for Maestro Song"
11138,0,0,0,0,0,0,0,"Looking for Maestro Song"
11139,0,0,0,0,0,0,0,"Looking for Maestro Song"
11140,0,0,0,0,0,0,0,"The sky, plane and travel sickness."
11141,0,0,0,0,0,0,0,"Human & gossip is towarding to the bar"
11142,0,0,0,0,0,0,0,"Fearful metalic sound"
11143,0,0,0,0,0,0,0,"Thanatos tower"
11144,0,0,0,0,0,0,0,"Juno manager : click"
11145,0,1622,33,0,0,0,0,"I want to get the "
11146,0,0,0,0,0,0,0,"to ice tunnel..."
11147,0,0,0,0,0,0,0,"Lared's dew"
11148,0,0,0,0,0,0,0,"Toward Comodo with the bow"
11149,0,0,0,0,0,0,0,"Just pour the water. Pour! Pour!..."
11150,0,0,0,0,0,0,0,"Looking for Maestro Song"
11151,0,0,0,0,0,0,0,"Looking for Maestro Song"
11152,0,0,0,0,0,0,0,"to the quiet place!..."
11153,0,0,0,0,0,0,0,"Missing watch top"
11154,0,0,0,0,0,0,0,"I will remember the memories with you...."
11155,0,0,0,0,0,0,0,"undefinable battler"
11156,0,1106,100,0,0,0,0,"annoying homework"
11157,0,0,0,0,0,0,0,"Helmes valley "
11158,0,0,0,0,0,0,0,"On the way for meditation"

11159,0,0,0,0,0,0,0,"Story of Brian"
11160,0,0,0,0,0,0,0,"Story of John"
11161,0,0,0,0,0,0,0,"Story of Tyler"
11162,0,0,0,0,0,0,0,"Story of Rose"
11163,0,0,0,0,0,0,0,"Story of Bain"
11164,0,0,0,0,0,0,0,"Story of Lash"
11165,0,0,0,0,0,0,0,"Delivery to Brian"
11166,0,0,0,0,0,0,0,"Delivery to John"
11167,0,0,0,0,0,0,0,"Delivery to Tyler"
11168,0,0,0,0,0,0,0,"Delivery to Rose"
11169,0,0,0,0,0,0,0,"Delivery to Bain"
11170,0,0,0,0,0,0,0,"Delivery to Lash"
11171,0,0,0,0,0,0,0,"Request from Frede"
11172,0,0,0,0,0,0,0,"Request from Frede"
11173,0,0,0,0,0,0,0,"Request from Frede"
11174,0,0,0,0,0,0,0,"Supply Shortage"
11175,7200,0,0,0,0,0,0,"Supply Shortage"
11176,0,0,0,0,0,0,0,"For my friends"

// Mora
11182,60,0,0,0,0,0,0,"Theore's Report"
11183,0,0,0,0,0,0,0,"Theore's Favor"
11184,0,0,0,0,0,0,0,"Runaway Laphine"
11185,0,0,0,0,0,0,0,"Pouch"
11186,0,0,0,0,0,0,0,"Pouch"
11187,0,0,0,0,0,0,0,"Pouch"
11188,0,0,0,0,0,0,0,"Pouch"
11189,0,0,0,0,0,0,0,"Roast Beef"
11190,0,0,0,0,0,0,0,"Roast Beef"
11191,0,0,0,0,0,0,0,"Shortage of Roast Beef"
11192,0,0,0,0,0,0,0,"Mora Village..."
11193,0,0,0,0,0,0,0,"Sonya's Friend"
11194,0,0,0,0,0,0,0,"Runaway Laphine"
11195,0,0,0,0,0,0,0,"Pouch"
11196,0,0,0,0,0,0,0,"Pouch"
11197,0,0,0,0,0,0,0,"Pouch"
11198,0,0,0,0,0,0,0,"Mora Village..."
11199,0,0,0,0,0,0,0,"Theo's Friend"
11200,0,0,0,0,0,0,0,"Pouch"
11201,0,0,0,0,0,0,0,"Roast Beef"
11202,0,0,0,0,0,0,0,"Roast Beef"
11203,0,0,0,0,0,0,0,"Shortage of Roast Beef"
11206,0,0,0,0,0,0,0,"Quick Delivery Yoneseu"
11207,0,0,0,0,0,0,0,"A Very Heavy Burden"
11208,0,0,0,0,0,0,0,"Daphne"

// Malangdo
11209,0,0,0,0,0,0,0,"Hardships of Thomas"
11210,0,0,0,0,0,0,0,"Malangdo Reunion"
11211,0,0,0,0,0,0,0,"Malangdo Reunion"
11212,0,0,0,0,0,0,0,"Malangdo Reunion"
11213,0,0,0,0,0,0,0,"Malangdo Reunion"
11214,0,0,0,0,0,0,0,"Malangdo Reunion"
11215,0,0,0,0,0,0,0,"Malangdo Reunion"
11216,0,0,0,0,0,0,0,"Malangdo Reunion"
11217,0,0,0,0,0,0,0,"Malangdo Reunion"
11218,0,0,0,0,0,0,0,"Malangdo Reunion"
11219,0,0,0,0,0,0,0,"Malangdo Reunion"
11220,0,0,0,0,0,0,0,"Malangdo Reunion"
11221,0,0,0,0,0,0,0,"Repair of cracks"
11222,0,0,0,0,0,0,0,"Repair of cracks"
11223,0,0,0,0,0,0,0,"Repair of cracks"
11224,0,0,0,0,0,0,0,"Repair of cracks"
11225,0,0,0,0,0,0,0,"Repair of cracks"
11226,0,0,0,0,0,0,0,"Repair of cracks"
11227,0,0,0,0,0,0,0,"Repair of cracks"
11228,0,0,0,0,0,0,0,"Repair of cracks"
11229,0,0,0,0,0,0,0,"Repair of cracks"
11230,0,0,0,0,0,0,0,"Repair of cracks"
11231,0,0,0,0,0,0,0,"Repair of cracks"
11232,0,0,0,0,0,0,0,"Repair of cracks"
11233,0,0,0,0,0,0,0,"Repair of cracks"
11234,0,0,0,0,0,0,0,"Repair of cracks"
11235,0,0,0,0,0,0,0,"Repair of cracks"
11236,0,0,0,0,0,0,0,"Repair of cracks"
11237,0,0,0,0,0,0,0,"Repair of cracks"
11238,0,0,0,0,0,0,0,"Malangdo Fruits"
11239,82800,0,0,0,0,0,0,"Malangdo Fruits"
11240,0,0,0,0,0,0,0,"Repair of cracks"
11241,0,0,0,0,0,0,0,"Repair of cracks"
11242,0,0,0,0,0,0,0,"Repair of cracks"
11243,82800,0,0,0,0,0,0,"Repair of cracks"
11244,0,0,0,0,0,0,0,"Soft Jelly"
11245,82800,0,0,0,0,0,0,"Soft Jelly"

11284,0,0,0,0,0,0,0,"Nurse at Port Malaya-1"
11285,0,0,0,0,0,0,0,"Nurse at Port Malaya-2"
11286,0,0,0,0,0,0,0,"Nurse at Port Malaya-3"
11287,0,0,0,0,0,0,0,"Nurse at Port Malaya-4"
11288,0,0,0,0,0,0,0,"Nurse at Port Malaya-5"
11289,0,0,0,0,0,0,0,"Nurse at Port Malaya-6"
11290,0,0,0,0,0,0,0,"Nurse at Port Malaya-7"
11291,0,0,0,0,0,0,0,"Nurse at Port Malaya-8"
11292,0,0,0,0,0,0,0,"Nurse at Port Malaya-9"
11293,0,0,0,0,0,0,0,"Nurse at Port Malaya-10"
11294,0,0,0,0,0,0,0,"Nurse at Port Malaya-11"
11295,0,0,0,0,0,0,0,"Nurse at Port Malaya-12"
11296,0,0,0,0,0,0,0,"Nurse at Port Malaya-13"
11297,0,0,0,0,0,0,0,"Nurse at Port Malaya-14"
11298,0,0,0,0,0,0,0,"Nurse at Port Malaya-15"
11299,0,0,0,0,0,0,0,"Nurse at Port Malaya-16"
11300,0,0,0,0,0,0,0,"Nurse at Port Malaya-17"
11301,0,0,0,0,0,0,0,"Nurse at Port Malaya-18"
11302,0,0,0,0,0,0,0,"Nurse at Port Malaya-19"
11303,0,0,0,0,0,0,0,"Nurse at Port Malaya-20"
11304,0,0,0,0,0,0,0,"Nurse at Port Malaya-21"
11305,0,0,0,0,0,0,0,"Nurse at Port Malaya-22"
11306,0,0,0,0,0,0,0,"Nurse at Port Malaya-23"
11307,0,0,0,0,0,0,0,"Nurse at Port Malaya-24"
11308,0,0,0,0,0,0,0,"Nurse at Port Malaya-25"
11309,0,0,0,0,0,0,0,"Nurse at Port Malaya-26"

11310,0,0,0,0,0,0,0,"Eclage's Entrance"
11311,0,0,0,0,0,0,0,"Eclage's Entrance"
11312,0,0,0,0,0,0,0,"Goliath"
11313,0,0,0,0,0,0,0,"Goliath"
11314,0,0,0,0,0,0,0,"Goliath"
11315,0,0,0,0,0,0,0,"And time keeps on flowing"
11316,0,0,0,0,0,0,0,"And time keeps on flowing"
11317,0,0,0,0,0,0,0,"And time keeps on flowing"
11318,0,0,0,0,0,0,0,"And time keeps on flowing"
11319,0,0,0,0,0,0,0,"And time keeps on flowing"
11320,0,0,0,0,0,0,0,"And time keeps on flowing"
11321,0,0,0,0,0,0,0,"And time keeps on flowing"
11322,0,0,0,0,0,0,0,"And time keeps on flowing"
11323,0,0,0,0,0,0,0,"And time keeps on flowing"
11324,0,0,0,0,0,0,0,"And time keeps on flowing"
11325,0,0,0,0,0,0,0,"The chicken or the egg"
11326,0,0,0,0,0,0,0,"The chicken or the egg"
11327,0,0,0,0,0,0,0,"The chicken or the egg"
11328,0,0,0,0,0,0,0,"The chicken or the egg"
11329,0,0,0,0,0,0,0,"The chicken or the egg"
11330,0,0,0,0,0,0,0,"The chicken or the egg"
11331,0,0,0,0,0,0,0,"The chicken or the egg"
11332,0,0,0,0,0,0,0,"The chicken or the egg"
11333,0,0,0,0,0,0,0,"Red seed and green seed"
11334,0,0,0,0,0,0,0,"Red seed and green seed"
11335,0,0,0,0,0,0,0,"Dreaming boy"
11336,0,0,0,0,0,0,0,"Dreaming boy"
11337,0,0,0,0,0,0,0,"Dreaming boy"

12000,0,0,0,0,0,0,0,"An old friend"
12001,0,0,0,0,0,0,0,"Digotz, Maku's old friend"
12002,0,0,0,0,0,0,0,"Messenger of Friendship"
12003,0,0,0,0,0,0,0,"Digotz's message"
12004,0,0,0,0,0,0,0,"Maku's other friend"
12005,0,0,0,0,0,0,0,"Benkaistein"
12006,0,0,0,0,0,0,0,"Benkaistein's lost item"
12007,0,0,0,0,0,0,0,"Kazien"
12008,0,0,0,0,0,0,0,"Researcher Garins"
12009,0,0,0,0,0,0,0,"Failed mission"
12010,0,0,0,0,0,0,0,"No entrance"
12011,0,0,0,0,0,0,0,"Lyozien"
12012,0,0,0,0,0,0,0,"Meet Mr. Ahman"
12013,0,0,0,0,0,0,0,"Delivery complete"
12014,0,0,0,0,0,0,0,"More missions"
12015,0,0,0,0,0,0,0,"Ghalstein"
12016,0,0,0,0,0,0,0,"Sneaking into the Laboratory"
12017,0,0,0,0,0,0,0,"Membership approved"
12018,0,0,0,0,0,0,0,"Meeting the President"
12019,0,0,0,0,0,0,0,"The President's Mission"
12020,0,0,0,0,0,0,0,"Rescuing a Secret Wing Member"
12021,0,0,0,0,0,0,0,"The Sealed File Folder"
12022,0,0,0,0,0,0,0,"The Sealed File Folder"
12023,0,0,0,0,0,0,0,"Shinokas the researcher"
12024,0,0,0,0,0,0,0,"Kafra Corporation Agent"
12025,0,0,0,0,0,0,0,"Rekenber's Secret Archive"
12026,0,0,0,0,0,0,0,"Rekenber's Secret Archive"
12027,0,0,0,0,0,0,0,"Rekenber's Secret Archive"
12028,0,0,0,0,0,0,0,"Kurelle the traitor"
12029,0,0,0,0,0,0,0,"Lost Engagement Ring"
12030,0,0,0,0,0,0,0,"Engagement Ring Found"
12031,0,0,0,0,0,0,0,"Find Annon"
12032,0,0,0,0,0,0,0,"Searching for Annon"
12033,0,0,0,0,0,0,0,"Traces of blood"
12034,0,0,0,0,0,0,0,"Annon's side of the story"
12035,0,0,0,0,0,0,0,"Holy Threads"
12036,0,0,0,0,0,0,0,"The Stone Slate Message"
12037,0,0,0,0,0,0,0,"Holier Threads"
12038,0,0,0,0,0,0,0,"Searching for the Sa-mhing Tiger"
12039,0,0,0,0,0,0,0,"Boonthom's Comrade"
12040,0,0,0,0,0,0,0,"Benkaistein's Journal"
12041,0,0,0,0,0,0,0,"Benkaistein's Journal"
12042,0,0,0,0,0,0,0,"Benkaistein's Journal"
12043,0,0,0,0,0,0,0,"Pass to the Slums"
12044,0,0,0,0,0,0,0,"Soothing a crying child 1"
12045,0,0,0,0,0,0,0,"Soothing a crying child 2"
12046,0,0,0,0,0,0,0,"Soothing a crying child 3"
12047,0,0,0,0,0,0,0,"Soothing a crying child 4"
12048,0,0,0,0,0,0,0,"Soothing a crying child 5"
12049,0,0,0,0,0,0,0,"Job Quest 1 - Rogue"
12050,0,0,0,0,0,0,0,"Job Quest 2 - Rogue"
12051,0,0,0,0,0,0,0,"Job Quest 3 - Rogue"
12052,0,0,0,0,0,0,0,"Job Quest 4 - Rogue"
12053,0,0,0,0,0,0,0,"Job Quest 5 - Rogue"
12054,0,0,0,0,0,0,0,"Job Quest 6 - Rogue"
12055,0,0,0,0,0,0,0,"Job Quest - Assassin"
12056,0,0,0,0,0,0,0,"Job Quest - Assassin"
12057,0,0,0,0,0,0,0,"Pass to the Lab"
12058,604800,0,0,0,0,0,0,"Admission Restricted to the 102 Tower"
12059,7200,0,0,0,0,0,0,"Orc's Memory Time Limit"
12060,86400,0,0,0,0,0,0,"Today's Fishing Closed"
12061,10,0,0,0,0,0,0,"Concentration"
12062,86400,0,0,0,0,0,0,"Today's Mining Closed"
12070,14400,0,0,0,0,0,0,"Limited time for enter"
12071,86400,0,0,0,0,0,0,"Stamp a seal on the attendance book"
12072,0,1034,20,0,0,0,0,"Hunt tharafrog"
12073,0,1248,15,0,0,0,0,"Remove Cruiser"
12074,0,1070,30,0,0,0,0,"Remove Kukre"
12075,0,1686,15,0,0,0,0,"Remove orcbaby"
12076,0,1023,20,0,0,0,0,"Remove orcwarroir"
12077,0,1066,15,0,0,0,0,"Hunt vadon"
12078,0,1064,30,0,0,0,0,"Hunt Megalodon"
12079,0,1144,15,0,0,0,0,"Hunt Marse"
12080,0,1067,20,0,0,0,0,"Hunt Cornutus"
12081,0,1151,15,0,0,0,0,"Remove Myst"
12082,0,1074,30,0,0,0,0,"Hunt shellfish"
12083,0,1142,15,0,0,0,0,"Hunt Marine sphere"
12084,0,1158,20,0,0,0,0,"Hunt Phen"
12085,0,1152,15,0,0,0,0,"Remove orcskeleton"
12086,0,1177,30,0,0,0,0,"Remove Zenorc"
12087,0,1041,15,0,0,0,0,"Remove mummy"
12088,0,0,0,0,0,0,0,"Accomplishing a request"

12090,0,0,0,0,0,0,0,"Mysterious guy"
12091,0,0,0,0,0,0,0,"Just save the burning heart"
12092,0,0,0,0,0,0,0,"Long lasting story"
12093,0,0,0,0,0,0,0,"the record the intelligence Lyoda left"
12094,0,0,0,0,0,0,0,"The damaged shield letter"
12096,0,0,0,0,0,0,0,"Towards Karakas"
12097,0,0,0,0,0,0,0,"Basic preparation"
12098,0,0,0,0,0,0,0,"Tour of dungeon"
12099,0,2014,10,0,0,0,0,"Remove Root Cause"
12100,0,1994,12,0,0,0,0,"Violent Winged Insect"
12101,0,2013,5,0,0,0,0,"Work Interference"
12102,0,1993,10,0,0,0,0,"Intelligent Snakes"
12103,0,1992,1,0,0,0,0,"Legendary Creature"
12104,0,1987,15,0,0,0,0,"Insects with an Appetite"
12105,0,2024,10,0,0,0,0,"Moving Rocks"
12106,0,1995,15,0,0,0,0,"A child on a flower"
12107,0,2015,10,0,0,0,0,"Twisted Love"
12108,0,1988,12,0,0,0,0,"Dangerous Plant Removal"
12109,0,1999,14,0,0,0,0,"Larva Extermination"
12110,0,2016,7,0,0,0,0,"Demon of Water"
12111,0,1986,10,0,0,0,0,"Bird with ugly face"
12117,0,0,0,0,0,0,0,"Withered Flower"
12118,0,0,0,0,0,0,0,"Welcomed Mineral"
12119,0,0,0,0,0,0,0,"Valuable Textile"
12120,0,0,0,0,0,0,0,"Curious Meat"
12121,0,0,0,0,0,0,0,"Materials to Clear Snow"
12122,0,0,0,0,0,0,0,"Best Cooler Material"
12123,0,0,0,0,0,0,0,"Best Paint"
12124,0,0,0,0,0,0,0,"Rare Valuable"
12125,0,0,0,0,0,0,0,"Armory Material"
12126,0,0,0,0,0,0,0,"Advanced Armory Material"
12127,0,0,0,0,0,0,0,"Supervisor's Tool"
12128,0,0,0,0,0,0,0,"Preparation for Heating"
12129,0,0,0,0,0,0,0,"Suspicious Food"
12130,0,0,0,0,0,0,0,"Useful Material"
12131,0,0,0,0,0,0,0,"Essential Material for Construction"
12132,0,0,0,0,0,0,0,"Essential Material for Construction 2"
12133,0,0,0,0,0,0,0,"Decoration arrangement"
12134,0,0,0,0,0,0,0,"Instant Receptacle"
12135,0,0,0,0,0,0,0,"Not enough medicine"
12136,0,0,0,0,0,0,0,"Honey robber"
12137,0,0,0,0,0,0,0,"Tools for Experiment"
12138,0,0,0,0,0,0,0,"Fine Gift Samples"
12139,0,0,0,0,0,0,0,"Respect for Taste!"
12140,0,0,0,0,0,0,0,"Courtesy for Regulars"
12141,0,0,0,0,0,0,0,"Special Package"
12142,0,0,0,0,0,0,0,"Dangerous Request"
12143,0,0,0,0,0,0,0,"Strange Trend"
12144,0,0,0,0,0,0,0,"Unknown Usage"
12145,0,0,0,0,0,0,0,"Other World Cuisine"
12146,0,0,0,0,0,0,0,"Filling in Cracks"
12147,0,0,0,0,0,0,0,"Adhesive Material"
12148,0,0,0,0,0,0,0,"Bait for Tatacho Hunting"
12149,0,0,0,0,0,0,0,"Swordmanship Practice"
12150,0,0,0,0,0,0,0,"Pretty reddish vegetable"
12151,0,0,0,0,0,0,0,"Tenacity of the pub owner"
12152,0,0,0,0,0,0,0,"Tastes like home cooking"
12153,0,0,0,0,0,0,0,"Hazardous plant when burnt"
12154,0,0,0,0,0,0,0,"Unexpectedly Normal"
12155,0,0,0,0,0,0,0,"Gift with heart"
12156,0,0,0,0,0,0,0,"Respect personal appetite!"
12157,0,0,0,0,0,0,0,"Resolution of the pub owner"
12158,0,0,0,0,0,0,0,"Rage of the pub owner"
12159,82800,0,0,0,0,0,0,"Quest record from Laponte"
12160,82800,0,0,0,0,0,0,"Quest record from Kalipo"
12161,82800,0,0,0,0,0,0,"Quest record from Pura"
12162,82800,0,0,0,0,0,0,"Quest record from Tragis"
12163,82800,0,0,0,0,0,0,"Quest record from Calyon"
12164,82800,0,0,0,0,0,0,"Quest record from Moltuka"
12165,21600,0,0,0,0,0,0,"Dizziness"
12166,0,0,0,0,0,0,0,"Tree Root Doc."
12167,0,0,0,0,0,0,0,"Reptile Tongue Doc."
12168,0,0,0,0,0,0,0,"Scorpion Tail Doc."
12169,0,0,0,0,0,0,0,"Stem Doc."
12170,0,0,0,0,0,0,0,"Pointed Scale Doc."
12171,0,0,0,0,0,0,0,"Resin Doc."
12172,0,0,0,0,0,0,0,"Spawn Doc."
12173,0,0,0,0,0,0,0,"Jellopy Doc."
12174,0,0,0,0,0,0,0,"Fish Tail Doc."
12175,0,0,0,0,0,0,0,"Worm Peeling Doc."
12176,0,0,0,0,0,0,0,"Gill Doc."
12177,0,0,0,0,0,0,0,"Tooth of Bat Doc."
12178,0,0,0,0,0,0,0,"Fluff Doc."
12179,0,0,0,0,0,0,0,"Chrysalis Doc."
12180,0,0,0,0,0,0,0,"Feather of Birds Doc."
12181,0,0,0,0,0,0,0,"Talon Document Doc."
12182,0,0,0,0,0,0,0,"Sticky Webfoot Doc."
12183,0,0,0,0,0,0,0,"Animal Skin Doc."
12184,0,0,0,0,0,0,0,"Wolf Claw Doc."
12185,0,0,0,0,0,0,0,"Mushroom Spore Doc."
12186,0,0,0,0,0,0,0,"Orc's Fang Doc."
12187,0,0,0,0,0,0,0,"Evil Horn Doc."
12188,0,0,0,0,0,0,0,"Powder of Butterfly Doc."
12189,0,0,0,0,0,0,0,"Bill of Birds Doc."
12190,0,0,0,0,0,0,0,"Snake Scale Doc."
12191,0,0,0,0,0,0,0,"Insect Feeler Doc."
12192,0,0,0,0,0,0,0,"Immortal Heart Doc."
12193,0,0,0,0,0,0,0,"Rotten Bandage Doc."
12194,0,0,0,0,0,0,0,"Decayed Nail Doc."
12195,0,0,0,0,0,0,0,"Horrendous Mouth Doc."
12196,0,0,0,0,0,0,0,"Tentacle Doc."
12197,0,0,0,0,0,0,0,"Shell Doc."
12198,0,0,0,0,0,0,0,"Scale Shell Doc."
12199,0,0,0,0,0,0,0,"Venom Canine Doc."
12200,0,0,0,0,0,0,0,"Sticky Mucus Doc."
12201,0,0,0,0,0,0,0,"Bee Sting Doc."
12202,0,0,0,0,0,0,0,"Grasshopper's Leg Doc."
12203,0,0,0,0,0,0,0,"Royal Jelly Doc."
12204,0,0,0,0,0,0,0,"Yoyo Tail Doc."
12205,0,0,0,0,0,0,0,"Solid Shell Doc."
12206,0,0,0,0,0,0,0,"Yam Doc."
12207,0,0,0,0,0,0,0,"Raccoon Leaf Doc."
12208,0,0,0,0,0,0,0,"Snail's Shell Doc."
12209,0,0,0,0,0,0,0,"Horn Doc."
12210,0,0,0,0,0,0,0,"Bear's Footskin Doc."
12211,0,0,0,0,0,0,0,"Feather Doc."
12212,0,0,0,0,0,0,0,"Red Herb Doc."
12213,0,0,0,0,0,0,0,"Carrot Doc."
12214,0,0,0,0,0,0,0,"Cactus Needle Doc."
12215,0,0,0,0,0,0,0,"Stone Heart Doc."
12216,21600,0,0,0,0,0,0,"Pouty Jahbong"
12217,0,0,0,0,0,0,0,"Request - Traces of wild boar hunt"
12218,0,0,0,0,0,0,0,"How to make lava elixir"
12219,0,0,0,0,0,0,0,"How to creat flame elixir"
12220,0,0,0,0,0,0,0,"How to create glaicer elixir"
12221,0,0,0,0,0,0,0,"How to create fossil elixir"
12222,0,0,0,0,0,0,0,"How to create storm elixir"

// Mora Coin Daily Quests
12225,0,2132,3,0,0,0,0,"Pom Spider Hunting"
12226,0,2133,4,0,0,0,0,"Angra Mantis Hunting"
12227,0,2134,5,0,0,0,0,"Parus Hunting"
12228,0,2136,6,0,0,0,0,"Little Fatam Hunting"
12229,0,2137,7,0,0,0,0,"Miming Hunting"
12230,82800,0,0,0,0,0,0,"Mora Monster Hunt"
12231,0,0,0,0,0,0,0,"Insect Feeler Collecting"
12232,0,0,0,0,0,0,0,"Immortal Heart Collecting"
12233,0,0,0,0,0,0,0,"Rotten Bandage Collecting"
12234,0,0,0,0,0,0,0,"Orcish Voucher Collecting"
12235,0,0,0,0,0,0,0,"Skeleton Bone Collecting"
12236,0,0,0,0,0,0,0,"Memento Collecting"
12237,0,0,0,0,0,0,0,"Shell Collecting"
12238,0,0,0,0,0,0,0,"Scale Shell Collecting"
12239,0,0,0,0,0,0,0,"Venom Canine Collecting"
12240,0,0,0,0,0,0,0,"Sticky Mucus Collecting"
12241,82800,0,0,0,0,0,0,"Mora Item Request 1"
12242,82800,0,0,0,0,0,0,"Mora Item Request 2"

// Missing Person Quests
12243,0,0,0,0,0,0,0,"Missing Information on Tajareu"
12244,0,0,0,0,0,0,0,"Missing Information on Tokenizer"
12245,0,0,0,0,0,0,0,"Missing Information on Mesile"
12246,0,0,0,0,0,0,0,"Missing Information on Noir"
12247,0,0,0,0,0,0,0,"Missing Information on Pajama God"
12248,0,0,0,0,0,0,0,"Missing Information on Mendel"
12249,0,0,0,0,0,0,0,"Missing Information on Miles"
12250,0,0,0,0,0,0,0,"Missing Information on Kunmune"
12251,0,0,0,0,0,0,0,"Missing Information on Chayihokin"
12252,0,0,0,0,0,0,0,"Missing Information on Tuale"
12253,82800,0,0,0,0,0,0,"Missing Person Search Time Limit"

// Malangdo Culverts
12254,3600,0,0,0,0,0,0,"Now it's cleaning"
12255,0,2176,20,0,0,0,0,"Hunt deep sea crab"
12256,0,2175,20,0,0,0,0,"Hunt deep sea squid"
12257,0,2174,20,0,0,0,0,"Hunt Ancient crustacean"
12258,0,2178,20,0,0,0,0,"Hunt deep sea shell"
12259,0,2179,20,0,0,0,0,"Hunt ancient kukre"
12260,0,2177,20,0,0,0,0,"Hunt deep sea conch"
12261,0,2182,30,0,0,0,0,"Hunt deep sea horse"
12262,0,2181,30,0,0,0,0,"Hunt ancient sword fish"
12263,0,2180,30,0,0,0,0,"Hunt ancient sea god"
12264,0,2183,30,0,0,0,0,"Hunt mutation anolian"
12265,0,2184,30,0,0,0,0,"Hunt deep sea mermaid"
12266,0,2185,30,0,0,0,0,"Hunt transformable kapha"
12267,0,2188,1,0,0,0,0,"Hunt weird coelacanth"
12268,0,2187,1,0,0,0,0,"Hunt dark coelacanth"
12269,0,2190,1,0,0,0,0,"Hunt Cruel coelacanth"
12270,0,2189,1,0,0,0,0,"Hunt mutation coelacanth"
12271,82800,0,0,0,0,0,0,"In progress general culvert single day service"
12272,82800,0,0,0,0,0,0,"In progress hard culvert single day service"
12273,579600,0,0,0,0,0,0,"In progress general culvert weekly service"
12274,579600,0,0,0,0,0,0,"In progress hard culvert weekly service"

12278,604800,0,0,0,0,0,0,"Towards Bakonawa Lake..."
12279,0,2322,1,0,0,0,0,"Get Rid of Bakonawa"

12280,0,0,0,0,0,0,0,"A suspicious prisoner"
12281,0,0,0,0,0,0,0,"An unwanted favor"
12282,0,0,0,0,0,0,0,"Gossip king Clever"
12283,0,0,0,0,0,0,0,"The rift researcher"
12284,0,0,0,0,0,0,0,"A cat merchant's source of information"
12285,0,0,0,0,0,0,0,"A way to calm down a cat"
12286,0,0,0,0,0,0,0,"Information traded for some canned foods"
12287,0,0,0,0,0,0,0,"A weird experience"
12288,0,0,0,0,0,0,0,"A successful experience"
12289,0,0,0,0,0,0,0,"Another visitation"
12290,0,0,0,0,0,0,0,"Clever's historical documents"
12291,0,0,0,0,0,0,0,"Hidden historical documents (?)"
12292,0,0,0,0,0,0,0,"The unknown ones"
12293,0,0,0,0,0,0,0,"Figures in history"
12294,0,0,0,0,0,0,0,"Tour of Eclage"
12295,0,0,0,0,0,0,0,"Error"
12296,0,0,0,0,0,0,0,"Fun times with the reactor"
12297,0,0,0,0,0,0,0,"Encountering Etran"
12298,0,0,0,0,0,0,0,"Two wishes"
12299,0,0,0,0,0,0,0,"Revisiting Robert"
12300,0,0,0,0,0,0,0,"Revisiting Etran"
12301,0,0,0,0,0,0,0,"Two remaining friends"

13000,0,0,0,0,0,0,0,"RWC2011Card Gathering"
13001,82800,0,0,0,0,0,0,"RWC2011Card Gathering - Hold"

13050,0,0,0,0,0,0,0,"The Laphine that loves the land"
13051,0,0,0,0,0,0,0,"The singing Laphine"
13052,0,0,0,0,0,0,0,"The watering Laphine"
13053,0,0,0,0,0,0,0,"The dancing Laphine"
13054,0,0,0,0,0,0,0,"The smiling Laphine"
13055,0,0,0,0,0,0,0,"See if all the adventurers are safe"
13056,0,0,0,0,0,0,0,"Reporter Rossi"
13057,0,0,0,0,0,0,0,"Adventurer Euncheong"
13058,0,0,0,0,0,0,0,"Troublemaker New Oz"
13059,86400,0,0,0,0,0,0,"End of project"
13060,86400,0,0,0,0,0,0,"Safety confirmation complete!"
13061,0,0,0,0,0,0,0,"Food support"
13062,86400,0,0,0,0,0,0,"Food support - complete"
13063,0,0,0,0,0,0,0,"Dusting off"
13064,86400,0,0,0,0,0,0,"Dusting off - complete"
13065,0,0,0,0,0,0,0,"Collecting a souvenir"
13066,86400,0,0,0,0,0,0,"This is enough for souvenirs"

14118,0,0,0,0,0,0,0,"Wuhari's concern"
14119,0,0,0,0,0,0,0,"Test of patience"
14120,0,0,0,0,0,0,0,"Test of patience 2"
14121,0,0,0,0,0,0,0,"Test of patience 3"
14122,0,0,0,0,0,0,0,"Time for two"
14123,0,0,0,0,0,0,0,"Wuharu's favor"
14125,0,0,0,0,0,0,0,"Surveying the area"
14126,0,0,0,0,0,0,0,"Searching for Ms. Goatie"
14127,0,0,0,0,0,0,0,"Searching for Ms. Goatie's husband"
14128,0,0,0,0,0,0,0,"Obtaining the research report"
14131,0,0,0,0,0,0,0,"Analysis time"
14133,0,0,0,0,0,0,0,"Another favor"
14134,0,0,0,0,0,0,0,"Sharp Ms. Goatie"
14135,0,0,0,0,0,0,0,"Searching for Mr. Pompe"
14136,0,0,0,0,0,0,0,"A terrible scene in the field"
14137,0,0,0,0,0,0,0,"An interesting proposition"
14138,0,0,0,0,0,0,0,"The big corpse"
14139,0,0,0,0,0,0,0,"To Wuhuru"
14140,0,0,0,0,0,0,0,"To Wuhari"
14141,0,0,0,0,0,0,0,"Ingredients for research"

16000,0,0,0,0,0,0,0,"Metz Brayde's Notice"
16001,0,0,0,0,0,0,0,"First examination"
16002,0,0,0,0,0,0,0,"Fetching Items for Arian -1"
16003,0,0,0,0,0,0,0,"Fetching Items for Arian -2"
16004,0,0,0,0,0,0,0,"Fetching Items for Arian -3"
16005,0,0,0,0,0,0,0,"Fetching Items for Arian -4"
16006,0,0,0,0,0,0,0,"Fetching Items for Arian -5"
16007,0,0,0,0,0,0,0,"Fetching Items for Arian -6"
16008,0,0,0,0,0,0,0,"Quiz time!"
16009,0,0,0,0,0,0,0,"Quiz time!"
16010,0,0,0,0,0,0,0,"Daewoon's Test"
16011,0,0,0,0,0,0,0,"Sir Jore's Test"
16012,0,0,0,0,0,0,0,"Sir Jore's Materials"
16013,0,0,0,0,0,0,0,"The Stone of Sage"
16014,0,0,0,0,0,0,0,"The Stone of Sage"
16015,0,0,0,0,0,0,0,"Lady Jesqurienne"
16016,0,0,0,0,0,0,0,"Jesquerinne's Quiz Challenge"
16017,0,0,0,0,0,0,0,"Failed Quiz Challenge"
16018,0,0,0,0,0,0,0,"Quiz Challenge Triumph"
16019,0,0,0,0,0,0,0,"Search for Dearles"
16020,0,0,0,0,0,0,0,"Dearles' Test"
16021,0,0,0,0,0,0,0,"Test of Appreciation"
16022,0,0,0,0,0,0,0,"Dearles' Test Part Two"
16023,0,0,0,0,0,0,0,"Rhythm Test Passed"
16024,0,0,0,0,0,0,0,"Find Bakerlan"
16025,0,0,0,0,0,0,0,"Bakerlan's delivery"
16026,0,0,0,0,0,0,0,"Mahatra's delivery"
16027,0,0,0,0,0,0,0,"Bakerlan's Receipt"
16028,0,0,0,0,0,0,0,"Find Seylin"
16029,0,0,0,0,0,0,0,"Vigorgra Medicine"
16030,0,0,0,0,0,0,0,"Vigorgra Ingredients"
16031,0,0,0,0,0,0,0,"Vigorgra Ingredients"
16032,0,0,0,0,0,0,0,"Seylin's Request"
16033,0,0,0,0,0,0,0,"Back to Seylin"
16034,0,0,0,0,0,0,0,"Back to Mahatra"
16035,0,0,0,0,0,0,0,"Report to Bakerlan"
16036,0,0,0,0,0,0,0,"The last Crumb"
16037,0,0,0,0,0,0,0,"Finding Engel Howard"
16038,0,0,0,0,0,0,0,"Liana's Letter"
16039,0,0,0,0,0,0,0,"Combining the Starlight"
16040,0,0,0,0,0,0,0,"Letter to Engel's Family"
16041,0,0,0,0,0,0,0,"Talk to Liana"
16042,0,0,0,0,0,0,0,"Sobbing Starlight Progress"
16043,0,0,0,0,0,0,0,"Restored Sobbing Starlight"
16044,0,0,0,0,0,0,0,"Combining the Starlight"
16045,0,0,0,0,0,0,0,"Starlight message"
16046,0,0,0,0,0,0,0,"The man in Umbala"
16047,0,0,0,0,0,0,0,"Into the Tree"
16048,0,0,0,0,0,0,0,"Ancient Papers"
16049,0,0,0,0,0,0,0,"Record of Ancient Language"
16050,0,0,0,0,0,0,0,"The Fastidious Old Man"
16051,0,0,0,0,0,0,0,"Blurry Vision"
16052,0,0,0,0,0,0,0,"Translating the Document"
16053,0,0,0,0,0,0,0,"Translated Ancient Language"
16054,0,0,0,0,0,0,0,"Where the rejected live"
16055,0,0,0,0,0,0,0,"Misfortunate of Niflheim"
16056,0,0,0,0,0,0,0,"Removed Curse"
16057,0,0,0,0,0,0,0,"Meeting the witch"
16058,0,0,0,0,0,0,0,"Wing Of Crow"
16059,0,0,0,0,0,0,0,"Wing Of Crow"
16060,0,0,0,0,0,0,0,"Misfortunate of Niflheim"
16061,0,0,0,0,0,0,0,"Bard in Niflheim"
16062,0,0,0,0,0,0,0,"Gen of Niflheim"
16063,0,0,0,0,0,0,0,"The Witch's Aid"
16064,0,0,0,0,0,0,0,"Misfortunate of Niflheim"
16065,0,0,0,0,0,0,0,"The Queen's Symbol"
16066,0,0,0,0,0,0,0,"Knowledge of the Symbol"
16067,0,0,0,0,0,0,0,"Knowledge of Asgard"
16068,0,0,0,0,0,0,0,"Finding the Soul Pieces"
16069,0,0,0,0,0,0,0,"Finding the Soul Pieces"
16070,0,0,0,0,0,0,0,"Finding the Soul Pieces"
16071,0,0,0,0,0,0,0,"Finding the Soul Pieces"
16072,0,0,0,0,0,0,0,"Finding the Soul Pieces"
16073,0,0,0,0,0,0,0,"Agrboda's Soul"
16074,0,0,0,0,0,0,0,"Symbol of the Nine Realms"
16075,0,0,0,0,0,0,0,"Serin's Ambitions"
16076,0,0,0,0,0,0,0,"Witch's Tonic"
16077,0,0,0,0,0,0,0,"Serin's Release"
16078,0,0,0,0,0,0,0,"Visit with Lady Hell"
16079,0,0,0,0,0,0,0,"The Sign"
16080,0,0,0,0,0,0,0,"Dark Lord's return"
16081,0,0,0,0,0,0,0,"Serin's Ambitions"
16082,0,0,0,0,0,0,0,"Dark Lord's return"
16083,0,0,0,0,0,0,0,"Serin's Realization"
16084,0,0,0,0,0,0,0,"The Sign"
16085,0,0,0,0,0,0,0,"The Sign"
16086,0,0,0,0,0,0,0,"The Sign"
16087,0,0,0,0,0,0,0,"The Sign"
16101,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16102,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16103,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16104,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16105,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16106,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16107,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16108,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16109,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16110,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16111,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16112,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16113,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16114,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16115,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16116,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16117,0,0,0,0,0,0,0,"Mysterious World Map"
16118,0,0,0,0,0,0,0,"Hidden poem"
16119,0,0,0,0,0,0,0,"Snake swords"
16120,0,0,0,0,0,0,0,"A dream?"
16121,0,0,0,0,0,0,0,"Secret Code?"
16122,0,0,0,0,0,0,0,"Old Copper Key"
16123,0,0,0,0,0,0,0,"Green Keycard"
16124,0,0,0,0,0,0,0,"Steel Box"
16125,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16126,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16127,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16128,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16129,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16130,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16131,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16132,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16133,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16134,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16135,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16136,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16137,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16138,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16139,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16140,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16141,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16142,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16143,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16144,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16145,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16146,0,0,0,0,0,0,0,"Kiel Hyre Academy"
16200,0,0,0,0,0,0,0,"Limberg's Request"
16201,0,0,0,0,0,0,0,"TPS Report"
16202,0,0,0,0,0,0,0,"TPS Report"
16203,0,0,0,0,0,0,0,"TPS Report"
16204,0,0,0,0,0,0,0,"Crack in the Wall"
16205,0,0,0,0,0,0,0,"The Empty Lava Tube"
17000,0,0,0,0,0,0,0,"Meet with Father Bamph"
17001,0,0,0,0,0,0,0,"Meet with Larjes"
17002,0,0,0,0,0,0,0,"Report to Father Bamph"
17003,0,0,0,0,0,0,0,"Travel to Rachel"
17004,0,0,0,0,0,0,0,"Travel to Veins"
17005,0,0,0,0,0,0,0,"Frustrated Magistrate"
17006,0,0,0,0,0,0,0,"Interrogated Smugglers"
17007,0,0,0,0,0,0,0,"Written Orders"
17008,0,0,0,0,0,0,0,"Investigating"
17009,0,0,0,0,0,0,0,"More Investigating"
17010,0,0,0,0,0,0,0,"Further Investigations"
17011,0,0,0,0,0,0,0,"Kurdi's Father"
17012,0,0,0,0,0,0,0,"Karyn's Boat"
17013,0,0,0,0,0,0,0,"To the Island"
17014,0,0,0,0,0,0,0,"Investigating the Island"
17015,0,0,0,0,0,0,0,"The Research Note"
17016,0,0,0,0,0,0,0,"Regicide"
17017,0,0,0,0,0,0,0,"Reporting the King's Death"

18001,0,0,0,0,0,0,0,"Delivery for Rooney"
18002,0,0,0,0,0,0,0,"Delivery for Rooney"
18003,0,0,0,0,0,0,0,"Delivery for Rooney"
18004,0,0,0,0,0,0,0,"Lasda's Request"
18005,0,0,0,0,0,0,0,"Jesse's Request"
18006,0,0,0,0,0,0,0,"Sir Krieg's Approval"
18007,0,0,0,0,0,0,0,"Sir Krieg's Trust"
18008,0,0,0,0,0,0,0,"Sir Krieg's Trust"
18009,0,0,0,0,0,0,0,"Into the prison"
18010,0,0,0,0,0,0,0,"Jail Break"
18011,0,0,0,0,0,0,0,"Bodyguard work"
18012,0,0,0,0,0,0,0,"Bodyguard work"
18013,0,0,0,0,0,0,0,"Bodyguard work"
18014,0,0,0,0,0,0,0,"Bodyguard work"
18015,0,0,0,0,0,0,0,"Bodyguard work"
18016,0,0,0,0,0,0,0,"Bodyguard work"
18017,0,0,0,0,0,0,0,"Jail Break"
18018,0,0,0,0,0,0,0,"Jail Break"
18019,0,0,0,0,0,0,0,"Vitre's Songs"
18020,0,0,0,0,0,0,0,"Vitre's Songs"
18021,0,0,0,0,0,0,0,"Vitre's Songs"
18022,0,0,0,0,0,0,0,"Vitre's Songs"
18023,0,0,0,0,0,0,0,"Vitre the Spy"
18030,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18031,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18032,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18033,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18034,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18035,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18036,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18037,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18038,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18039,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18040,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18041,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18042,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18043,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18044,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18045,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18046,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18047,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18048,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18049,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18050,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18051,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18052,0,0,0,0,0,0,0,"Gaebolg Family Curse"
18060,0,0,0,0,0,0,0,"Missing boy Mikhail"
18061,0,0,0,0,0,0,0,"Mikhail's Whereabouts"
18062,0,0,0,0,0,0,0,"Missing boy Mikhail"
18063,0,0,0,0,0,0,0,"The isolated swamp"
18064,0,0,0,0,0,0,0,"Back to the Village"
18065,0,0,0,0,0,0,0,"High-strength Adhesive"
18066,0,0,0,0,0,0,0,"Back to the swamp"
18067,0,0,0,0,0,0,0,"Make the paste"
18068,0,0,0,0,0,0,0,"Fixing the Matrushka"
18069,0,0,0,0,0,0,0,"Report to Gallina"
18070,0,0,0,0,0,0,0,"Banishing Winter"
18071,0,0,0,0,0,0,0,"Making the magic dust"
18072,0,0,0,0,0,0,0,"Making the magic dust"
18073,0,0,0,0,0,0,0,"The Dragon's Lair"
18074,0,0,0,0,0,0,0,"The Magic Gourd Bottle"
18075,0,0,0,0,0,0,0,"Containing People's Speech"
18076,0,0,0,0,0,0,0,"Containing People's Speech"
18077,0,0,0,0,0,0,0,"Csar's Request"
18078,0,0,0,0,0,0,0,"Baba Yaga's Secret Medicine"
18079,0,0,0,0,0,0,0,"Winter is Banished"
18100,0,0,0,0,0,0,0,"Legends from Moscovia"
18101,0,0,0,0,0,0,0,"The Moving Island"
18102,0,0,0,0,0,0,0,"In Search of The Moving Island"
18103,0,0,0,0,0,0,0,"In Search of The Moving Island"
18104,0,0,0,0,0,0,0,"Mr. Ibanoff's New Friend"
18105,0,0,0,0,0,0,0,"Repairing Charabel"
18106,0,0,0,0,0,0,0,"As the Tide Turns"
18107,0,0,0,0,0,0,0,"Departing"
18108,0,0,0,0,0,0,0,"The Moving Island?"
18109,0,0,0,0,0,0,0,"The Moving Island???"
18110,0,0,0,0,0,0,0,"The Aged Stranger"
18111,0,0,0,0,0,0,0,"Whale Island!"
18112,0,0,0,0,0,0,0,"A Story for the Csar"
18113,0,0,0,0,0,0,0,"Evidence for the Csar"
18114,0,0,0,0,0,0,0,"Before Sunset"
18115,0,0,0,0,0,0,0,"Departing"
18116,0,0,0,0,0,0,0,"Whale Island!"
18117,0,0,0,0,0,0,0,"Materials for Evidence"
18118,0,0,0,0,0,0,0,"Mysterious Musical Instrument"
18119,0,0,0,0,0,0,0,"Gusli"
18120,0,0,0,0,0,0,0,"Gusli"
18121,0,0,0,0,0,0,0,"Shafka"
19101,0,0,0,0,0,0,0,"The Eye of Hellion"
19102,0,0,0,0,0,0,0,"The Eye of Hellion"
19103,0,0,0,0,0,0,0,"The Eye of Hellion"
19104,0,0,0,0,0,0,0,"The Eye of Hellion"
19105,0,0,0,0,0,0,0,"The Eye of Hellion"
19106,0,0,0,0,0,0,0,"The Eye of Hellion"
19107,0,0,0,0,0,0,0,"The Eye of Hellion"
19108,0,0,0,0,0,0,0,"The Eye of Hellion"
19109,0,0,0,0,0,0,0,"The Eye of Hellion"
19110,0,0,0,0,0,0,0,"The Eye of Hellion"
19111,0,0,0,0,0,0,0,"The Eye of Hellion"
19112,0,0,0,0,0,0,0,"The Eye of Hellion"
19113,0,0,0,0,0,0,0,"The Eye of Hellion"
19114,0,0,0,0,0,0,0,"The Eye of Hellion"
19115,0,0,0,0,0,0,0,"The Eye of Hellion"
19116,0,0,0,0,0,0,0,"The Eye of Hellion"
19117,0,0,0,0,0,0,0,"The Eye of Hellion"
19118,0,0,0,0,0,0,0,"The Eye of Hellion"
19119,0,0,0,0,0,0,0,"The Eye of Hellion"
19120,0,0,0,0,0,0,0,"The Eye of Hellion"
19121,0,0,0,0,0,0,0,"The Eye of Hellion"
19122,0,0,0,0,0,0,0,"The Eye of Hellion"
19123,0,0,0,0,0,0,0,"The Eye of Hellion"
19124,0,0,0,0,0,0,0,"The Eye of Hellion"
19125,0,0,0,0,0,0,0,"The Eye of Hellion"
19126,0,0,0,0,0,0,0,"The Eye of Hellion"
19127,0,0,0,0,0,0,0,"The Eye of Hellion"
19128,0,0,0,0,0,0,0,"The Eye of Hellion"
19129,0,0,0,0,0,0,0,"The Eye of Hellion"

50000,0,0,0,0,0,0,0,"Pirate Dagger materials"
50001,0,0,0,0,0,0,0,"Weather Beaten Old Man"
50002,0,0,0,0,0,0,0,"Lost Treasure?"
50003,0,0,0,0,0,0,0,"Lost Treasure?"
50004,0,0,0,0,0,0,0,"The Old Man's Treasure"
50005,0,0,0,0,0,0,0,"The Old Man's Treasure"
50006,0,0,0,0,0,0,0,"The Old Man's Treasure"
50007,0,0,0,0,0,0,0,"The Old Man's Treasure"
50008,0,0,0,0,0,0,0,"The Old Man's Treasure"
50009,0,0,0,0,0,0,0,"The Old Man's Treasure"
50010,0,0,0,0,0,0,0,"A special lock pick"
50011,0,0,0,0,0,0,0,"The special lock pick"
50012,0,0,0,0,0,0,0,"Use the lock pick"
50013,0,0,0,0,0,0,0,"Broken lock pick"
50015,0,0,0,0,0,0,0,"The empty treasure box"
50016,0,0,0,0,0,0,0,"The empty treasure box"
50017,0,0,0,0,0,0,0,"The empty treasure box"
50018,0,0,0,0,0,0,0,"The empty treasure box"
50019,0,0,0,0,0,0,0,"The empty treasure box"
50020,0,0,0,0,0,0,0,"The empty treasure box"
50021,0,0,0,0,0,0,0,"J Roger"
50022,0,0,0,0,0,0,0,"J Roger's key materials"
50023,0,0,0,0,0,0,0,"Conversation with J Roger"
50024,0,0,0,0,0,0,0,"Bury the treasure"
50025,0,0,0,0,0,0,0,"Bury the treasure"
50026,0,0,0,0,0,0,0,"Bury the treasure"
50027,0,0,0,0,0,0,0,"Buried treasure"
50028,0,0,0,0,0,0,0,"Stolen treasure!"
50029,0,0,0,0,0,0,0,"A Pirate's Spirit!"

//60000,0,0,0,0,0,0,0,"60000"
60001,0,0,0,0,0,0,0,"Monster Extermination"
60002,0,0,0,0,0,0,0,"Monster Extermination"
60003,0,0,0,0,0,0,0,"Monster Extermination"
60004,0,0,0,0,0,0,0,"Monster Extermination"
60005,0,0,0,0,0,0,0,"Monster Extermination"
60006,0,0,0,0,0,0,0,"Monster Extermination"
60007,0,0,0,0,0,0,0,"Endless Tower Effect"
60008,0,0,0,0,0,0,0,"Endless Tower Time Limit"
60009,0,0,0,0,0,0,0,"Orc Hero"
60010,0,0,0,0,0,0,0,"Derik Ver's Request"
60011,0,0,0,0,0,0,0,"Investigation of Byalan"
60012,0,0,0,0,0,0,0,"Investigation of Abyss"
60013,0,0,0,0,0,0,0,"Monster Investigation"
60014,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation"
60015,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation"
60016,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation"
60017,0,0,0,0,0,0,0,"Geffen Dungeon's Monster Investigation"
60018,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation"
60019,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation"
60020,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation"
60021,0,0,0,0,0,0,0,"Byalan Dungeon's Monster Investigation"
60022,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation"
60023,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation"
60024,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation"
60025,0,0,0,0,0,0,0,"Abyss Lake's Monster Investigation"
60026,0,0,0,0,0,0,0,"Continuing the Investigation"
60027,0,0,0,0,0,0,0,"Investigating Aldebaran"
60028,0,0,0,0,0,0,0,"Monster Investigation"
60029,0,0,0,0,0,0,0,"Aldebaran Monster Investigation"
60030,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
60031,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
60032,0,0,0,0,0,0,0,"Lutie Field Monster Investigation"
60033,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
60034,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
60035,0,0,0,0,0,0,0,"Aldebaran Monster Investigation"
60036,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
60037,0,0,0,0,0,0,0,"Clock Tower Monster Investigation"
60038,0,0,0,0,0,0,0,"Aldebaran Monster Investigation"
60039,0,0,0,0,0,0,0,"Investigation of Glastheim"
60040,0,0,0,0,0,0,0,"Investigation of Glastheim"
60041,0,0,0,0,0,0,0,"Monster Investigation"
60042,0,0,0,0,0,0,0,"Investigation of Glastheim"
60043,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
60044,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
60045,0,0,0,0,0,0,0,"Investigation of Glastheim"
60046,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
60047,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
60048,0,0,0,0,0,0,0,"Investigation of Glastheim"
60049,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
60050,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
60051,0,0,0,0,0,0,0,"Investigation of Glastheim"
60052,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
60053,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
60054,0,0,0,0,0,0,0,"Investigation of Glastheim"
60055,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
60056,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
60057,0,0,0,0,0,0,0,"Glastheim Monster Investigation"
60058,0,0,0,0,0,0,0,"Derik Ver's Brother"
60059,0,0,0,0,0,0,0,"A history lesson"
60060,0,0,0,0,0,0,0,"The Crown of Deceit"
60061,0,0,0,0,0,0,0,"A magic solvent"
60062,0,0,0,0,0,0,0,"Rendering the crown Inert"
60101,0,1019,50,0,0,0,0,"Hunting Peco Pecos"
60102,0,1019,100,0,0,0,0,"Hunting Peco Pecos"
60103,0,1019,150,0,0,0,0,"Hunting Peco Pecos"
60104,0,1127,50,0,0,0,0,"Hunting Hodes"
60105,0,1127,100,0,0,0,0,"Hunting Hodes"
60106,0,1127,150,0,0,0,0,"Hunting Hodes"
60107,0,1007,50,0,0,0,0,"Hunting Fabres"
60108,0,1007,100,0,0,0,0,"Hunting Fabres"
60109,0,1007,150,0,0,0,0,"Hunting Fabres"
60110,0,1008,50,0,0,0,0,"Hunting Pupa"
60111,0,1008,100,0,0,0,0,"Hunting Pupa"
60112,0,1008,150,0,0,0,0,"Hunting Pupa"
60113,0,1104,50,0,0,0,0,"Hunting Cocos"
60114,0,1104,100,0,0,0,0,"Hunting Cocos"
60115,0,1104,150,0,0,0,0,"Hunting Cocos"
60116,0,1103,50,0,0,0,0,"Hunting Caramels"
60117,0,1103,100,0,0,0,0,"Hunting Caramels"
60118,0,1103,150,0,0,0,0,"Hunting Caramels"
60119,0,1271,50,0,0,0,0,"Hunting Alligators"
60120,0,1271,100,0,0,0,0,"Hunting Alligators"
60121,0,1271,150,0,0,0,0,"Hunting Alligators"
60122,0,1018,50,0,0,0,0,"Hunting Creamys"
60123,0,1018,100,0,0,0,0,"Hunting Creamys"
60124,0,1018,150,0,0,0,0,"Hunting Creamys"
60125,0,1378,50,0,0,0,0,"Hunting Demon Pungus"
60126,0,1378,100,0,0,0,0,"Hunting Demon Pungus"
60127,0,1378,150,0,0,0,0,"Hunting Demon Pungus"
60128,0,1110,50,0,0,0,0,"Hunting Dokebi"
60129,0,1110,100,0,0,0,0,"Hunting Dokebi"
60130,0,1110,150,0,0,0,0,"Hunting Dokebi"
60131,0,1493,50,0,0,0,0,"Hunting Dryads"
60132,0,1493,100,0,0,0,0,"Hunting Dryads"
60133,0,1493,150,0,0,0,0,"Hunting Dryads"
60134,0,1119,50,0,0,0,0,"Hunting Frilldora"
60135,0,1119,100,0,0,0,0,"Hunting Frilldora"
60136,0,1119,150,0,0,0,0,"Hunting Frilldora"
60137,0,1372,50,0,0,0,0,"Hunting Goats"
60138,0,1372,100,0,0,0,0,"Hunting Goats"
60139,0,1372,150,0,0,0,0,"Hunting Goats"
60140,0,1040,50,0,0,0,0,"Hunting Golems"
60141,0,1040,100,0,0,0,0,"Hunting Golems"
60142,0,1040,150,0,0,0,0,"Hunting Golems"
60143,0,1586,50,0,0,0,0,"Hunting Leaf Cats"
60144,0,1586,100,0,0,0,0,"Hunting Leaf Cats"
60145,0,1586,150,0,0,0,0,"Hunting Leaf Cats"
60146,0,1076,50,0,0,0,0,"Hunting Skeletons"
60147,0,1076,100,0,0,0,0,"Hunting Skeletons"
60148,0,1076,150,0,0,0,0,"Hunting Skeletons"
60149,0,1026,50,0,0,0,0,"Hunting Munaks"
60150,0,1026,100,0,0,0,0,"Hunting Munaks"
60151,0,1026,150,0,0,0,0,"Hunting Munaks"
60152,0,1170,50,0,0,0,0,"Hunting Sohees"
60153,0,1170,100,0,0,0,0,"Hunting Sohees"
60154,0,1170,150,0,0,0,0,"Hunting Sohees"
60155,0,1403,50,0,0,0,0,"Hunting Firelock Soldiers"
60156,0,1403,100,0,0,0,0,"Hunting Firelock Soldiers"
60157,0,1403,150,0,0,0,0,"Hunting Firelock Soldiers"
60158,0,1405,50,0,0,0,0,"Hunting Tengus"
60159,0,1405,100,0,0,0,0,"Hunting Tengus"
60160,0,1405,150,0,0,0,0,"Hunting Tengus"
60161,0,1675,25,0,0,0,0,"Hunting Venatu"
60162,0,1675,50,0,0,0,0,"Hunting Venatu"
60163,0,1675,75,0,0,0,0,"Hunting Venatu"
60164,0,1668,50,0,0,0,0,"Hunting Archdam"
60165,0,1668,100,0,0,0,0,"Hunting Archdam"
60166,0,1668,150,0,0,0,0,"Hunting Archdam"
60167,0,1776,50,0,0,0,0,"Hunting Siromas"
60168,0,1776,100,0,0,0,0,"Hunting Siromas"
60169,0,1776,150,0,0,0,0,"Hunting Siroma"
60170,0,1777,50,0,0,0,0,"Hunting Ice Titans"
60171,0,1777,100,0,0,0,0,"Hunting Ice Titans"
60172,0,1777,150,0,0,0,0,"Hunting Ice Titans"
60173,0,1506,50,0,0,0,0,"Hunting Disguises"
60174,0,1506,100,0,0,0,0,"Hunting Disguises"
60175,0,1506,150,0,0,0,0,"Hunting Disguises"
60176,0,1505,50,0,0,0,0,"Hunting Loli Ruri"
60177,0,1505,100,0,0,0,0,"Hunting Loli Ruri"
60178,0,1505,150,0,0,0,0,"Hunting Loli Ruri"
60179,0,1139,50,0,0,0,0,"Hunting Mantis"
60180,0,1139,100,0,0,0,0,"Hunting Mantis"
60181,0,1139,150,0,0,0,0,"Hunting Mantis"
60182,0,1514,50,0,0,0,0,"Hunting Dancing Dragons"
60183,0,1514,100,0,0,0,0,"Hunting Dancing Dragons"
60184,0,1514,150,0,0,0,0,"Hunting Dancing Dragons"
60185,0,1870,20,0,0,0,0,"Hunting Necromancers"
60186,0,1870,40,0,0,0,0,"Hunting Necromancers"
60187,0,1870,60,0,0,0,0,"Hunting Necromancers"
60188,0,1365,50,0,0,0,0,"Hunting Apocalypse"
60189,0,1365,100,0,0,0,0,"Hunting Apocalypse"
60190,0,1365,150,0,0,0,0,"Hunting Apocalypse"

60200,604800,0,0,0,0,0,0,"Endless Tower Effect"
60201,14400,0,0,0,0,0,0,"Endless Tower Time Limit"
60301,0,1155,100,0,0,0,0,"Dragon Hunting"
60302,0,1155,200,0,0,0,0,"Dragon Hunting"
60303,0,1714,100,0,0,0,0,"Dragon Hunting"
60304,0,1714,200,0,0,0,0,"Dragon Hunting"
60305,0,1717,100,0,0,0,0,"Dragon Hunting"
60306,0,1717,200,0,0,0,0,"Dragon Hunting"
60307,0,1713,100,0,0,0,0,"Dragon Hunting"
60308,0,1713,200,0,0,0,0,"Dragon Hunting"
60309,0,1716,100,0,0,0,0,"Dragon Hunting"
60310,0,1716,200,0,0,0,0,"Dragon Hunting"

// iRO expanded upon the log entries of this quest.
60351,0,0,0,0,0,0,0,"Bathroom Ghost"
60352,0,0,0,0,0,0,0,"Bathroom Ghost"
60353,0,0,0,0,0,0,0,"Bathroom Ghost"
60354,0,0,0,0,0,0,0,"Bathroom Ghost"
60355,0,0,0,0,0,0,0,"Bathroom Ghost"