summaryrefslogblamecommitdiff
path: root/src/plugins/HPMHooking/HPMHooking.HPMHooksCore.inc
blob: fa9b04d39e3e3d5d9a68791033c3482cd1a85e94 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
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
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
7671
7672
7673
7674
7675
7676
7677
7678
7679
7680
7681
7682
7683
7684
7685
7686
7687
7688
7689
7690
7691
7692
7693
7694
7695
7696
7697
7698
7699
7700
7701
7702
7703
7704
7705
7706
7707
7708
7709
7710
7711
7712
7713
7714
7715
7716
7717
7718
7719
7720
7721
7722
7723
7724
7725
7726
7727
7728
7729
7730
7731
7732
7733
7734
7735
7736
7737
7738
7739
7740
7741
7742
7743
7744
7745
7746
7747
7748
7749
7750
7751
7752
7753
7754
7755
7756
7757
7758
7759
7760
7761
7762
7763
7764
7765
7766
7767
7768
7769
7770
7771
7772
7773
7774
7775
7776
7777
7778
7779
7780
7781
7782
7783
7784
7785
7786
7787
7788
7789
7790
7791
7792
7793
7794
7795
7796
7797
7798
7799
7800
7801
7802
7803
7804
7805
7806
7807
7808
7809
7810
7811
7812
7813
7814
7815
7816
7817
7818
7819
7820
7821
7822
7823
7824
7825
7826
7827
7828
7829
7830
7831
7832
7833
7834
7835
7836
7837
7838
7839
7840
7841
7842
7843
7844
7845
7846
7847
7848
7849
7850
7851
7852
7853
7854
7855
7856
7857
7858
7859
7860
7861
7862
7863
7864
7865
7866
7867
7868
7869
7870
7871
7872
7873
7874
7875
7876
7877
7878
7879
7880
7881
7882
7883
7884
7885
7886
7887
7888
7889
7890
7891
7892
7893
7894
7895
7896
7897
7898
7899
7900
7901
7902
7903
7904
7905
7906
7907
7908
7909
7910
7911
7912
7913
7914
7915
7916
7917
7918
7919
7920
7921
7922
9311
9312
9313
9314
9315
9316
9317
9318
9319
9320
9321
9322
9323
9324
9325
9326
9327
9328
9329
9330
9331
9332
9333
9334
9335
9336
9337
9338
9339
9340
9341
9342
9343
9344
9345
9346
9347
9348
9349
9350
9351
9352
9353
9354
9355
9356
9357
9358
9359
9360
9361
9362
9363
9364
9365
9366
9367
9368
9369
9370
9371
9372
9373
9374
9375
9376
9377
9378
9379
9380
9381
9382
9383
9384
9385
9386
9387
9388
9389
9390
9391
9392
9393
9394
9395
9396
9397
9398
9399
9400
9401
9402
9403
9404
9405
9406
9407
9408
9409
9410
9411
9412
9413
9414
9415
9416
9417
9418
9419
9420
9421
9422
9423
9424
9425
9426
9427
9428
9429
9430
9431
9432
9433
9434
9435
9436
9437
9438
9439
9440
9441
9442
9443
9444
9445
9446
9447
9448
9449
9450
9451
9452
9453
9454
9455
9456
9457
9458
9459
9460
9461
9462
9463
9464
9465
9466
9467
9468
9469
9470
9471
9472
9473
9474
9475
9476
9477
9478
9479
9480
9481
9482
9483
9484
9485
9486
9487
9488
9489
9490
9491
9492
9493
9494
9495
9496
9497
9498
9499
9500
9501
9502
9503
9504
9505
9506
9507
9508
9509
9510
9511
9512
9513
9514
9515
9516
9517
9518
9519
9520
9521
9522
9523
9524
9525
9526
9527
9528
9529
9530
9531
9532
9533
9534
9535
9536
9537
9538
9539
9540
9541
9542
9543
9544
9545
9546
9547
9548
9549
9550
9551
9552
9553
9554
9555
9556
9557
9558
9559
9560
9561
9562
9563
9564
9565
9566
9567
9568
9569
9570
9571
9572
9573
9574
9575
9576
9577
9578
9579
9580
9581
9582
9583
9584
9585
9586
9587
9588
9589
9590
9591
9592
9593
9594
9595
9596
9597
9598
9599
9600
9601
9602
9603
9604
9605
9606
9607
9608
9609
9610
9611
9612
9613
9614
9615
9616
9617
9618
9619
9620
9621
9622
9623
9624
9625
9626
9627
9628
9629
9630
9631
9632
9633
9634
9635
9636
9637
9638
9639
9640
9641
9642
9643
9644
9645
9646
9647
9648
9649
9650
9651
9652
9653
9654
9655
9656
9657
9658
9659
9660
9661
9662
9663
9664
9665
9666
9667
9668
9669
9670
9671
9672
9673
9674
9675
9676
9677
9678
9679
9680
9681
9682
9683
9684
9685
9686
9687
9688
9689
9690
9691
9692
9729
9730
9731
9732
9733
9734
9735
9736
9737
9738
9739
9740
9741
9742
9743
9744
9745
9746
9747
9748
9749
9750
9751
9752
9753
9754
9755
9756
9757
9758
9759
9760
9761
9762
9763
9764
9765
9766
9767
9768
9769
9770
9771
9772
9773
9774
9775
9776
9777
9778
9779
9780
9781
9782
9783
9784
9785
9786
9787
9788
9789
9790
9791
9792
9793
9794
9795
9796
9797
9798
9799
9800
9801
9802
9803
9804
9805
9806
9807
9808
9809
9810
9811
9812
9813
9814
9815
9816
9817
9818
9819
9820
9821
9822
9823
9824
9825
9826
9827
9828
9829
9830
9831
9832
9833
9834
9835
9836
9837
9838
9839
9840
9841
9842
9843
9844
9845
9846
9847
9848
9849
9850
9851
9852
9853
9854
9855
9856
9857
9858
9859
9860
9861
9862
9863
9864
9865
9866
9867
9868
9869
9870
9871
9872
9873
9874
9875
9876
9877
9878
9879
9880
9881
9882
9883
9884
9885
9886
9887
9888
9889
9890
9891
9892
9893
9894
9895
9896
9897
9898
9899
9900
9901
9902
9903
9904
9905
9906
9907
9908
9909
9910
9911
9912
9913
9914
9915
9916
9917
9918
9919
9920
9921
9922
9923
9924
9925
9926
9927
9928
9929
9930
9931
9932
9933
9934
9935
9936
9937
9938
9939
9940
9941
9942
9943
9944
9945
9946
9947
9948
9949
9950
9951
9952
9953
9954
9955
9956
9957
9958
9959
9960
9961
9962
9963
9964
9965
9966
9967
9968
9969
9970
9971
9972
9973
9974
9975
9976
9977
9978
9979
9980
9981
9982
9983
9984
9985
9986
9987
9988
9989
9990
9991
9992
9993
9994
9995
9996
9997
9998
9999
10000
10001
10002
10003
10004
10005
10006
10007
10008
10009
10010
10011
10012
10013
10014
10015
10016
10017
10018
10019
10020
10021
10022
10023
10024
10025
10026
10027
10028
10029
10030
10031
10032
10033
10034
10035
10036
10037
10038
10039
10040
10041
10042
10043
10044
10045
10046
10047
10048
10049
10050
10051
10052
10053
10054
10055
10056
10057
10058
10059
10060
10061
10062
10063
10064
10065
10066





                                                                          
        



                                                     

                                                    

















































                                                                 

                                                   

                                                   



















                                                               

                                                           









                                                            

                                                             



































































































































































                                                                

                                                

                                                 















































                                                             















                                                              

                                                 





































                                                                     

                                                    

























                                                              



                                                              







































































                                                           

                                                             

























                                                            

























                                                                

                                                         









































































































































































                                                                 



























































































































































                                                                  

































                                                          

                                                     



















































































































                                                                      











































































































































































































































































                                                                             



                                                        

                                                         

                                                           



                                                           



                                                                  





















































































































































































































































































                                                                     

                                                       





















































































































































                                                                        









                                                        





                                                             

























































































































































































































                                                                         

                                                             



































































































































































                                                                   

                                                     









                                                           





                                                           























































































                                                                   

                                                         



























































































































































                                                                    

                                                          



































































                                                               



















                                                                  









































































                                                                 





                                                                 



                                                             









                                                              

                                                  

                                                     

























































































































































































































































































































                                                                      

                                                          



                                                          

                                                    































                                                       

                                                       





























































































































































































































                                                                  

                                                        





































































































































                                                              



                                                   

























































                                                               















                                                            

                                                               





































































                                                              

                                                            





































                                                               





















                                                             







                                                     

                                                       

                                                             

                                                        













































































































































                                                                     

                                                             





























































































































































































































                                                                



                                                      



                                                        

                                                    





                                                                









                                                           















































































                                                                

                                                 

                                                  

                                              















                                                                

                                                 









                                                   

                                                        



































                                                          







































































                                                                   











































                                                                 























                                                                        



























                                                                              



                                                                  



                                                                  







                                                                         

                                                        

                                                         















                                                                

                                                              







                                                                    



                                                                





























































































































































































































































































































































































                                                                          

                                                            

                                                            





























                                                                   

                                                         

















































































































































































































































































































































                                                                
       
 
        



                                    

                                   

















































                                                

                                  

                                  



















                                              

                                          









                                           

                                            



































































































































































                                               

                               

                                















































                                            















                                             

                                





































                                                    

                                   

























                                             



                                             







































































                                          

                                            

























                                           

























                                               

                                        









































































































































































                                                



























































































































































                                                 

































                                         

                                    



















































































































                                                     











































































































































































































































































                                                            



                                       

                                        

                                          



                                          



                                                 





















































































































































































































































































                                                    

                                      





















































































































































                                                       









                                       





                                            

























































































































































































































                                                        

                                            



































































































































































                                                  

                                    









                                          





                                          























































































                                                  

                                        



























































































































































                                                   

                                         



































































                                              



















                                                 









































































                                                





                                                



                                            









                                             

                                 

                                    

























































































































































































































































































































                                                     

                                         



                                         

                                   































                                      

                                      





























































































































































































































                                                 

                                       





































































































































                                             



                                  

























































                                              















                                           

                                              





































































                                             

                                           





































                                              





















                                            







                                    

                                      

                                            

                                       













































































































































                                                    

                                            





























































































































































































































                                               



                                     



                                       

                                   





                                               









                                          















































































                                               

                                

                                 

                             















                                               

                                









                                  

                                       



































                                         







































































                                                  











































                                                























                                                       



























                                                             



                                                 



                                                 







                                                        

                                       

                                        















                                               

                                             







                                                   



                                               





























































































































































































































































































































































































                                                         

                                           

                                           





























                                                  

                                        

















































































































































































































































































































































                                               
        
 
        

























                                                 
                                       










                                                 
         
// Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// See the LICENSE file
//
// NOTE: This file was auto-generated and should never be manually edited,
//       as it will get overwritten.

struct {
	struct HPMHookPoint *HP_atcommand_init_pre;
	struct HPMHookPoint *HP_atcommand_init_post;
	struct HPMHookPoint *HP_atcommand_final_pre;
	struct HPMHookPoint *HP_atcommand_final_post;
	struct HPMHookPoint *HP_atcommand_exec_pre;
	struct HPMHookPoint *HP_atcommand_exec_post;
	struct HPMHookPoint *HP_atcommand_create_pre;
	struct HPMHookPoint *HP_atcommand_create_post;
	struct HPMHookPoint *HP_atcommand_can_use_pre;
	struct HPMHookPoint *HP_atcommand_can_use_post;
	struct HPMHookPoint *HP_atcommand_can_use2_pre;
	struct HPMHookPoint *HP_atcommand_can_use2_post;
	struct HPMHookPoint *HP_atcommand_load_groups_pre;
	struct HPMHookPoint *HP_atcommand_load_groups_post;
	struct HPMHookPoint *HP_atcommand_exists_pre;
	struct HPMHookPoint *HP_atcommand_exists_post;
	struct HPMHookPoint *HP_atcommand_msg_read_pre;
	struct HPMHookPoint *HP_atcommand_msg_read_post;
	struct HPMHookPoint *HP_atcommand_final_msg_pre;
	struct HPMHookPoint *HP_atcommand_final_msg_post;
	struct HPMHookPoint *HP_atcommand_get_bind_byname_pre;
	struct HPMHookPoint *HP_atcommand_get_bind_byname_post;
	struct HPMHookPoint *HP_atcommand_get_info_byname_pre;
	struct HPMHookPoint *HP_atcommand_get_info_byname_post;
	struct HPMHookPoint *HP_atcommand_check_alias_pre;
	struct HPMHookPoint *HP_atcommand_check_alias_post;
	struct HPMHookPoint *HP_atcommand_get_suggestions_pre;
	struct HPMHookPoint *HP_atcommand_get_suggestions_post;
	struct HPMHookPoint *HP_atcommand_config_read_pre;
	struct HPMHookPoint *HP_atcommand_config_read_post;
	struct HPMHookPoint *HP_atcommand_stopattack_pre;
	struct HPMHookPoint *HP_atcommand_stopattack_post;
	struct HPMHookPoint *HP_atcommand_pvpoff_sub_pre;
	struct HPMHookPoint *HP_atcommand_pvpoff_sub_post;
	struct HPMHookPoint *HP_atcommand_pvpon_sub_pre;
	struct HPMHookPoint *HP_atcommand_pvpon_sub_post;
	struct HPMHookPoint *HP_atcommand_atkillmonster_sub_pre;
	struct HPMHookPoint *HP_atcommand_atkillmonster_sub_post;
	struct HPMHookPoint *HP_atcommand_raise_sub_pre;
	struct HPMHookPoint *HP_atcommand_raise_sub_post;
	struct HPMHookPoint *HP_atcommand_get_jail_time_pre;
	struct HPMHookPoint *HP_atcommand_get_jail_time_post;
	struct HPMHookPoint *HP_atcommand_cleanfloor_sub_pre;
	struct HPMHookPoint *HP_atcommand_cleanfloor_sub_post;
	struct HPMHookPoint *HP_atcommand_mutearea_sub_pre;
	struct HPMHookPoint *HP_atcommand_mutearea_sub_post;
	struct HPMHookPoint *HP_atcommand_commands_sub_pre;
	struct HPMHookPoint *HP_atcommand_commands_sub_post;
	struct HPMHookPoint *HP_atcommand_cmd_db_clear_pre;
	struct HPMHookPoint *HP_atcommand_cmd_db_clear_post;
	struct HPMHookPoint *HP_atcommand_cmd_db_clear_sub_pre;
	struct HPMHookPoint *HP_atcommand_cmd_db_clear_sub_post;
	struct HPMHookPoint *HP_atcommand_doload_pre;
	struct HPMHookPoint *HP_atcommand_doload_post;
	struct HPMHookPoint *HP_atcommand_base_commands_pre;
	struct HPMHookPoint *HP_atcommand_base_commands_post;
	struct HPMHookPoint *HP_atcommand_add_pre;
	struct HPMHookPoint *HP_atcommand_add_post;
	struct HPMHookPoint *HP_atcommand_msg_pre;
	struct HPMHookPoint *HP_atcommand_msg_post;
	struct HPMHookPoint *HP_battle_init_pre;
	struct HPMHookPoint *HP_battle_init_post;
	struct HPMHookPoint *HP_battle_final_pre;
	struct HPMHookPoint *HP_battle_final_post;
	struct HPMHookPoint *HP_battle_calc_attack_pre;
	struct HPMHookPoint *HP_battle_calc_attack_post;
	struct HPMHookPoint *HP_battle_calc_damage_pre;
	struct HPMHookPoint *HP_battle_calc_damage_post;
	struct HPMHookPoint *HP_battle_calc_gvg_damage_pre;
	struct HPMHookPoint *HP_battle_calc_gvg_damage_post;
	struct HPMHookPoint *HP_battle_calc_bg_damage_pre;
	struct HPMHookPoint *HP_battle_calc_bg_damage_post;
	struct HPMHookPoint *HP_battle_weapon_attack_pre;
	struct HPMHookPoint *HP_battle_weapon_attack_post;
	struct HPMHookPoint *HP_battle_calc_weapon_attack_pre;
	struct HPMHookPoint *HP_battle_calc_weapon_attack_post;
	struct HPMHookPoint *HP_battle_delay_damage_pre;
	struct HPMHookPoint *HP_battle_delay_damage_post;
	struct HPMHookPoint *HP_battle_drain_pre;
	struct HPMHookPoint *HP_battle_drain_post;
	struct HPMHookPoint *HP_battle_reflect_damage_pre;
	struct HPMHookPoint *HP_battle_reflect_damage_post;
	struct HPMHookPoint *HP_battle_attr_ratio_pre;
	struct HPMHookPoint *HP_battle_attr_ratio_post;
	struct HPMHookPoint *HP_battle_attr_fix_pre;
	struct HPMHookPoint *HP_battle_attr_fix_post;
	struct HPMHookPoint *HP_battle_calc_cardfix_pre;
	struct HPMHookPoint *HP_battle_calc_cardfix_post;
	struct HPMHookPoint *HP_battle_calc_elefix_pre;
	struct HPMHookPoint *HP_battle_calc_elefix_post;
	struct HPMHookPoint *HP_battle_calc_masteryfix_pre;
	struct HPMHookPoint *HP_battle_calc_masteryfix_post;
	struct HPMHookPoint *HP_battle_calc_chorusbonus_pre;
	struct HPMHookPoint *HP_battle_calc_chorusbonus_post;
	struct HPMHookPoint *HP_battle_calc_skillratio_pre;
	struct HPMHookPoint *HP_battle_calc_skillratio_post;
	struct HPMHookPoint *HP_battle_calc_sizefix_pre;
	struct HPMHookPoint *HP_battle_calc_sizefix_post;
	struct HPMHookPoint *HP_battle_calc_weapon_damage_pre;
	struct HPMHookPoint *HP_battle_calc_weapon_damage_post;
	struct HPMHookPoint *HP_battle_calc_defense_pre;
	struct HPMHookPoint *HP_battle_calc_defense_post;
	struct HPMHookPoint *HP_battle_get_master_pre;
	struct HPMHookPoint *HP_battle_get_master_post;
	struct HPMHookPoint *HP_battle_get_targeted_pre;
	struct HPMHookPoint *HP_battle_get_targeted_post;
	struct HPMHookPoint *HP_battle_get_enemy_pre;
	struct HPMHookPoint *HP_battle_get_enemy_post;
	struct HPMHookPoint *HP_battle_get_target_pre;
	struct HPMHookPoint *HP_battle_get_target_post;
	struct HPMHookPoint *HP_battle_get_current_skill_pre;
	struct HPMHookPoint *HP_battle_get_current_skill_post;
	struct HPMHookPoint *HP_battle_check_undead_pre;
	struct HPMHookPoint *HP_battle_check_undead_post;
	struct HPMHookPoint *HP_battle_check_target_pre;
	struct HPMHookPoint *HP_battle_check_target_post;
	struct HPMHookPoint *HP_battle_check_range_pre;
	struct HPMHookPoint *HP_battle_check_range_post;
	struct HPMHookPoint *HP_battle_consume_ammo_pre;
	struct HPMHookPoint *HP_battle_consume_ammo_post;
	struct HPMHookPoint *HP_battle_get_targeted_sub_pre;
	struct HPMHookPoint *HP_battle_get_targeted_sub_post;
	struct HPMHookPoint *HP_battle_get_enemy_sub_pre;
	struct HPMHookPoint *HP_battle_get_enemy_sub_post;
	struct HPMHookPoint *HP_battle_get_enemy_area_sub_pre;
	struct HPMHookPoint *HP_battle_get_enemy_area_sub_post;
	struct HPMHookPoint *HP_battle_delay_damage_sub_pre;
	struct HPMHookPoint *HP_battle_delay_damage_sub_post;
	struct HPMHookPoint *HP_battle_blewcount_bonus_pre;
	struct HPMHookPoint *HP_battle_blewcount_bonus_post;
	struct HPMHookPoint *HP_battle_range_type_pre;
	struct HPMHookPoint *HP_battle_range_type_post;
	struct HPMHookPoint *HP_battle_calc_base_damage_pre;
	struct HPMHookPoint *HP_battle_calc_base_damage_post;
	struct HPMHookPoint *HP_battle_calc_base_damage2_pre;
	struct HPMHookPoint *HP_battle_calc_base_damage2_post;
	struct HPMHookPoint *HP_battle_calc_misc_attack_pre;
	struct HPMHookPoint *HP_battle_calc_misc_attack_post;
	struct HPMHookPoint *HP_battle_calc_magic_attack_pre;
	struct HPMHookPoint *HP_battle_calc_magic_attack_post;
	struct HPMHookPoint *HP_battle_adjust_skill_damage_pre;
	struct HPMHookPoint *HP_battle_adjust_skill_damage_post;
	struct HPMHookPoint *HP_battle_add_mastery_pre;
	struct HPMHookPoint *HP_battle_add_mastery_post;
	struct HPMHookPoint *HP_battle_calc_drain_pre;
	struct HPMHookPoint *HP_battle_calc_drain_post;
	struct HPMHookPoint *HP_battle_config_read_pre;
	struct HPMHookPoint *HP_battle_config_read_post;
	struct HPMHookPoint *HP_battle_config_set_defaults_pre;
	struct HPMHookPoint *HP_battle_config_set_defaults_post;
	struct HPMHookPoint *HP_battle_config_set_value_pre;
	struct HPMHookPoint *HP_battle_config_set_value_post;
	struct HPMHookPoint *HP_battle_config_get_value_pre;
	struct HPMHookPoint *HP_battle_config_get_value_post;
	struct HPMHookPoint *HP_battle_config_adjust_pre;
	struct HPMHookPoint *HP_battle_config_adjust_post;
	struct HPMHookPoint *HP_battle_get_enemy_area_pre;
	struct HPMHookPoint *HP_battle_get_enemy_area_post;
	struct HPMHookPoint *HP_battle_damage_area_pre;
	struct HPMHookPoint *HP_battle_damage_area_post;
	struct HPMHookPoint *HP_bg_init_pre;
	struct HPMHookPoint *HP_bg_init_post;
	struct HPMHookPoint *HP_bg_final_pre;
	struct HPMHookPoint *HP_bg_final_post;
	struct HPMHookPoint *HP_bg_name2arena_pre;
	struct HPMHookPoint *HP_bg_name2arena_post;
	struct HPMHookPoint *HP_bg_queue_add_pre;
	struct HPMHookPoint *HP_bg_queue_add_post;
	struct HPMHookPoint *HP_bg_can_queue_pre;
	struct HPMHookPoint *HP_bg_can_queue_post;
	struct HPMHookPoint *HP_bg_id2pos_pre;
	struct HPMHookPoint *HP_bg_id2pos_post;
	struct HPMHookPoint *HP_bg_queue_pc_cleanup_pre;
	struct HPMHookPoint *HP_bg_queue_pc_cleanup_post;
	struct HPMHookPoint *HP_bg_begin_pre;
	struct HPMHookPoint *HP_bg_begin_post;
	struct HPMHookPoint *HP_bg_begin_timer_pre;
	struct HPMHookPoint *HP_bg_begin_timer_post;
	struct HPMHookPoint *HP_bg_queue_pregame_pre;
	struct HPMHookPoint *HP_bg_queue_pregame_post;
	struct HPMHookPoint *HP_bg_fillup_timer_pre;
	struct HPMHookPoint *HP_bg_fillup_timer_post;
	struct HPMHookPoint *HP_bg_queue_ready_ack_pre;
	struct HPMHookPoint *HP_bg_queue_ready_ack_post;
	struct HPMHookPoint *HP_bg_match_over_pre;
	struct HPMHookPoint *HP_bg_match_over_post;
	struct HPMHookPoint *HP_bg_queue_check_pre;
	struct HPMHookPoint *HP_bg_queue_check_post;
	struct HPMHookPoint *HP_bg_team_search_pre;
	struct HPMHookPoint *HP_bg_team_search_post;
	struct HPMHookPoint *HP_bg_getavailablesd_pre;
	struct HPMHookPoint *HP_bg_getavailablesd_post;
	struct HPMHookPoint *HP_bg_team_delete_pre;
	struct HPMHookPoint *HP_bg_team_delete_post;
	struct HPMHookPoint *HP_bg_team_warp_pre;
	struct HPMHookPoint *HP_bg_team_warp_post;
	struct HPMHookPoint *HP_bg_send_dot_remove_pre;
	struct HPMHookPoint *HP_bg_send_dot_remove_post;
	struct HPMHookPoint *HP_bg_team_join_pre;
	struct HPMHookPoint *HP_bg_team_join_post;
	struct HPMHookPoint *HP_bg_team_leave_pre;
	struct HPMHookPoint *HP_bg_team_leave_post;
	struct HPMHookPoint *HP_bg_member_respawn_pre;
	struct HPMHookPoint *HP_bg_member_respawn_post;
	struct HPMHookPoint *HP_bg_create_pre;
	struct HPMHookPoint *HP_bg_create_post;
	struct HPMHookPoint *HP_bg_team_get_id_pre;
	struct HPMHookPoint *HP_bg_team_get_id_post;
	struct HPMHookPoint *HP_bg_send_message_pre;
	struct HPMHookPoint *HP_bg_send_message_post;
	struct HPMHookPoint *HP_bg_send_xy_timer_sub_pre;
	struct HPMHookPoint *HP_bg_send_xy_timer_sub_post;
	struct HPMHookPoint *HP_bg_send_xy_timer_pre;
	struct HPMHookPoint *HP_bg_send_xy_timer_post;
	struct HPMHookPoint *HP_bg_config_read_pre;
	struct HPMHookPoint *HP_bg_config_read_post;
	struct HPMHookPoint *HP_buyingstore_setup_pre;
	struct HPMHookPoint *HP_buyingstore_setup_post;
	struct HPMHookPoint *HP_buyingstore_create_pre;
	struct HPMHookPoint *HP_buyingstore_create_post;
	struct HPMHookPoint *HP_buyingstore_close_pre;
	struct HPMHookPoint *HP_buyingstore_close_post;
	struct HPMHookPoint *HP_buyingstore_open_pre;
	struct HPMHookPoint *HP_buyingstore_open_post;
	struct HPMHookPoint *HP_buyingstore_trade_pre;
	struct HPMHookPoint *HP_buyingstore_trade_post;
	struct HPMHookPoint *HP_buyingstore_search_pre;
	struct HPMHookPoint *HP_buyingstore_search_post;
	struct HPMHookPoint *HP_buyingstore_searchall_pre;
	struct HPMHookPoint *HP_buyingstore_searchall_post;
	struct HPMHookPoint *HP_buyingstore_getuid_pre;
	struct HPMHookPoint *HP_buyingstore_getuid_post;
	struct HPMHookPoint *HP_chat_create_pc_chat_pre;
	struct HPMHookPoint *HP_chat_create_pc_chat_post;
	struct HPMHookPoint *HP_chat_join_pre;
	struct HPMHookPoint *HP_chat_join_post;
	struct HPMHookPoint *HP_chat_leave_pre;
	struct HPMHookPoint *HP_chat_leave_post;
	struct HPMHookPoint *HP_chat_change_owner_pre;
	struct HPMHookPoint *HP_chat_change_owner_post;
	struct HPMHookPoint *HP_chat_change_status_pre;
	struct HPMHookPoint *HP_chat_change_status_post;
	struct HPMHookPoint *HP_chat_kick_pre;
	struct HPMHookPoint *HP_chat_kick_post;
	struct HPMHookPoint *HP_chat_create_npc_chat_pre;
	struct HPMHookPoint *HP_chat_create_npc_chat_post;
	struct HPMHookPoint *HP_chat_delete_npc_chat_pre;
	struct HPMHookPoint *HP_chat_delete_npc_chat_post;
	struct HPMHookPoint *HP_chat_enable_event_pre;
	struct HPMHookPoint *HP_chat_enable_event_post;
	struct HPMHookPoint *HP_chat_disable_event_pre;
	struct HPMHookPoint *HP_chat_disable_event_post;
	struct HPMHookPoint *HP_chat_npc_kick_all_pre;
	struct HPMHookPoint *HP_chat_npc_kick_all_post;
	struct HPMHookPoint *HP_chat_trigger_event_pre;
	struct HPMHookPoint *HP_chat_trigger_event_post;
	struct HPMHookPoint *HP_chat_create_pre;
	struct HPMHookPoint *HP_chat_create_post;
	struct HPMHookPoint *HP_chrif_init_pre;
	struct HPMHookPoint *HP_chrif_init_post;
	struct HPMHookPoint *HP_chrif_final_pre;
	struct HPMHookPoint *HP_chrif_final_post;
	struct HPMHookPoint *HP_chrif_setuserid_pre;
	struct HPMHookPoint *HP_chrif_setuserid_post;
	struct HPMHookPoint *HP_chrif_setpasswd_pre;
	struct HPMHookPoint *HP_chrif_setpasswd_post;
	struct HPMHookPoint *HP_chrif_checkdefaultlogin_pre;
	struct HPMHookPoint *HP_chrif_checkdefaultlogin_post;
	struct HPMHookPoint *HP_chrif_setip_pre;
	struct HPMHookPoint *HP_chrif_setip_post;
	struct HPMHookPoint *HP_chrif_setport_pre;
	struct HPMHookPoint *HP_chrif_setport_post;
	struct HPMHookPoint *HP_chrif_isconnected_pre;
	struct HPMHookPoint *HP_chrif_isconnected_post;
	struct HPMHookPoint *HP_chrif_check_shutdown_pre;
	struct HPMHookPoint *HP_chrif_check_shutdown_post;
	struct HPMHookPoint *HP_chrif_search_pre;
	struct HPMHookPoint *HP_chrif_search_post;
	struct HPMHookPoint *HP_chrif_auth_check_pre;
	struct HPMHookPoint *HP_chrif_auth_check_post;
	struct HPMHookPoint *HP_chrif_auth_delete_pre;
	struct HPMHookPoint *HP_chrif_auth_delete_post;
	struct HPMHookPoint *HP_chrif_auth_finished_pre;
	struct HPMHookPoint *HP_chrif_auth_finished_post;
	struct HPMHookPoint *HP_chrif_authreq_pre;
	struct HPMHookPoint *HP_chrif_authreq_post;
	struct HPMHookPoint *HP_chrif_authok_pre;
	struct HPMHookPoint *HP_chrif_authok_post;
	struct HPMHookPoint *HP_chrif_scdata_request_pre;
	struct HPMHookPoint *HP_chrif_scdata_request_post;
	struct HPMHookPoint *HP_chrif_save_pre;
	struct HPMHookPoint *HP_chrif_save_post;
	struct HPMHookPoint *HP_chrif_charselectreq_pre;
	struct HPMHookPoint *HP_chrif_charselectreq_post;
	struct HPMHookPoint *HP_chrif_changemapserver_pre;
	struct HPMHookPoint *HP_chrif_changemapserver_post;
	struct HPMHookPoint *HP_chrif_searchcharid_pre;
	struct HPMHookPoint *HP_chrif_searchcharid_post;
	struct HPMHookPoint *HP_chrif_changeemail_pre;
	struct HPMHookPoint *HP_chrif_changeemail_post;
	struct HPMHookPoint *HP_chrif_char_ask_name_pre;
	struct HPMHookPoint *HP_chrif_char_ask_name_post;
	struct HPMHookPoint *HP_chrif_updatefamelist_pre;
	struct HPMHookPoint *HP_chrif_updatefamelist_post;
	struct HPMHookPoint *HP_chrif_buildfamelist_pre;
	struct HPMHookPoint *HP_chrif_buildfamelist_post;
	struct HPMHookPoint *HP_chrif_save_scdata_pre;
	struct HPMHookPoint *HP_chrif_save_scdata_post;
	struct HPMHookPoint *HP_chrif_ragsrvinfo_pre;
	struct HPMHookPoint *HP_chrif_ragsrvinfo_post;
	struct HPMHookPoint *HP_chrif_char_offline_nsd_pre;
	struct HPMHookPoint *HP_chrif_char_offline_nsd_post;
	struct HPMHookPoint *HP_chrif_char_reset_offline_pre;
	struct HPMHookPoint *HP_chrif_char_reset_offline_post;
	struct HPMHookPoint *HP_chrif_send_users_tochar_pre;
	struct HPMHookPoint *HP_chrif_send_users_tochar_post;
	struct HPMHookPoint *HP_chrif_char_online_pre;
	struct HPMHookPoint *HP_chrif_char_online_post;
	struct HPMHookPoint *HP_chrif_changesex_pre;
	struct HPMHookPoint *HP_chrif_changesex_post;
	struct HPMHookPoint *HP_chrif_divorce_pre;
	struct HPMHookPoint *HP_chrif_divorce_post;
	struct HPMHookPoint *HP_chrif_removefriend_pre;
	struct HPMHookPoint *HP_chrif_removefriend_post;
	struct HPMHookPoint *HP_chrif_send_report_pre;
	struct HPMHookPoint *HP_chrif_send_report_post;
	struct HPMHookPoint *HP_chrif_flush_pre;
	struct HPMHookPoint *HP_chrif_flush_post;
	struct HPMHookPoint *HP_chrif_skillid2idx_pre;
	struct HPMHookPoint *HP_chrif_skillid2idx_post;
	struct HPMHookPoint *HP_chrif_sd_to_auth_pre;
	struct HPMHookPoint *HP_chrif_sd_to_auth_post;
	struct HPMHookPoint *HP_chrif_check_connect_char_server_pre;
	struct HPMHookPoint *HP_chrif_check_connect_char_server_post;
	struct HPMHookPoint *HP_chrif_auth_logout_pre;
	struct HPMHookPoint *HP_chrif_auth_logout_post;
	struct HPMHookPoint *HP_chrif_save_ack_pre;
	struct HPMHookPoint *HP_chrif_save_ack_post;
	struct HPMHookPoint *HP_chrif_reconnect_pre;
	struct HPMHookPoint *HP_chrif_reconnect_post;
	struct HPMHookPoint *HP_chrif_auth_db_cleanup_sub_pre;
	struct HPMHookPoint *HP_chrif_auth_db_cleanup_sub_post;
	struct HPMHookPoint *HP_chrif_char_ask_name_answer_pre;
	struct HPMHookPoint *HP_chrif_char_ask_name_answer_post;
	struct HPMHookPoint *HP_chrif_auth_db_final_pre;
	struct HPMHookPoint *HP_chrif_auth_db_final_post;
	struct HPMHookPoint *HP_chrif_send_usercount_tochar_pre;
	struct HPMHookPoint *HP_chrif_send_usercount_tochar_post;
	struct HPMHookPoint *HP_chrif_auth_db_cleanup_pre;
	struct HPMHookPoint *HP_chrif_auth_db_cleanup_post;
	struct HPMHookPoint *HP_chrif_connect_pre;
	struct HPMHookPoint *HP_chrif_connect_post;
	struct HPMHookPoint *HP_chrif_connectack_pre;
	struct HPMHookPoint *HP_chrif_connectack_post;
	struct HPMHookPoint *HP_chrif_sendmap_pre;
	struct HPMHookPoint *HP_chrif_sendmap_post;
	struct HPMHookPoint *HP_chrif_sendmapack_pre;
	struct HPMHookPoint *HP_chrif_sendmapack_post;
	struct HPMHookPoint *HP_chrif_recvmap_pre;
	struct HPMHookPoint *HP_chrif_recvmap_post;
	struct HPMHookPoint *HP_chrif_changemapserverack_pre;
	struct HPMHookPoint *HP_chrif_changemapserverack_post;
	struct HPMHookPoint *HP_chrif_changedsex_pre;
	struct HPMHookPoint *HP_chrif_changedsex_post;
	struct HPMHookPoint *HP_chrif_divorceack_pre;
	struct HPMHookPoint *HP_chrif_divorceack_post;
	struct HPMHookPoint *HP_chrif_idbanned_pre;
	struct HPMHookPoint *HP_chrif_idbanned_post;
	struct HPMHookPoint *HP_chrif_recvfamelist_pre;
	struct HPMHookPoint *HP_chrif_recvfamelist_post;
	struct HPMHookPoint *HP_chrif_load_scdata_pre;
	struct HPMHookPoint *HP_chrif_load_scdata_post;
	struct HPMHookPoint *HP_chrif_update_ip_pre;
	struct HPMHookPoint *HP_chrif_update_ip_post;
	struct HPMHookPoint *HP_chrif_disconnectplayer_pre;
	struct HPMHookPoint *HP_chrif_disconnectplayer_post;
	struct HPMHookPoint *HP_chrif_removemap_pre;
	struct HPMHookPoint *HP_chrif_removemap_post;
	struct HPMHookPoint *HP_chrif_updatefamelist_ack_pre;
	struct HPMHookPoint *HP_chrif_updatefamelist_ack_post;
	struct HPMHookPoint *HP_chrif_keepalive_pre;
	struct HPMHookPoint *HP_chrif_keepalive_post;
	struct HPMHookPoint *HP_chrif_keepalive_ack_pre;
	struct HPMHookPoint *HP_chrif_keepalive_ack_post;
	struct HPMHookPoint *HP_chrif_deadopt_pre;
	struct HPMHookPoint *HP_chrif_deadopt_post;
	struct HPMHookPoint *HP_chrif_authfail_pre;
	struct HPMHookPoint *HP_chrif_authfail_post;
	struct HPMHookPoint *HP_chrif_on_ready_pre;
	struct HPMHookPoint *HP_chrif_on_ready_post;
	struct HPMHookPoint *HP_chrif_on_disconnect_pre;
	struct HPMHookPoint *HP_chrif_on_disconnect_post;
	struct HPMHookPoint *HP_chrif_parse_pre;
	struct HPMHookPoint *HP_chrif_parse_post;
	struct HPMHookPoint *HP_chrif_save_scdata_single_pre;
	struct HPMHookPoint *HP_chrif_save_scdata_single_post;
	struct HPMHookPoint *HP_chrif_del_scdata_single_pre;
	struct HPMHookPoint *HP_chrif_del_scdata_single_post;
	struct HPMHookPoint *HP_clif_init_pre;
	struct HPMHookPoint *HP_clif_init_post;
	struct HPMHookPoint *HP_clif_final_pre;
	struct HPMHookPoint *HP_clif_final_post;
	struct HPMHookPoint *HP_clif_setip_pre;
	struct HPMHookPoint *HP_clif_setip_post;
	struct HPMHookPoint *HP_clif_setbindip_pre;
	struct HPMHookPoint *HP_clif_setbindip_post;
	struct HPMHookPoint *HP_clif_setport_pre;
	struct HPMHookPoint *HP_clif_setport_post;
	struct HPMHookPoint *HP_clif_refresh_ip_pre;
	struct HPMHookPoint *HP_clif_refresh_ip_post;
	struct HPMHookPoint *HP_clif_send_pre;
	struct HPMHookPoint *HP_clif_send_post;
	struct HPMHookPoint *HP_clif_send_sub_pre;
	struct HPMHookPoint *HP_clif_send_sub_post;
	struct HPMHookPoint *HP_clif_parse_pre;
	struct HPMHookPoint *HP_clif_parse_post;
	struct HPMHookPoint *HP_clif_parse_cmd_pre;
	struct HPMHookPoint *HP_clif_parse_cmd_post;
	struct HPMHookPoint *HP_clif_decrypt_cmd_pre;
	struct HPMHookPoint *HP_clif_decrypt_cmd_post;
	struct HPMHookPoint *HP_clif_authok_pre;
	struct HPMHookPoint *HP_clif_authok_post;
	struct HPMHookPoint *HP_clif_authrefuse_pre;
	struct HPMHookPoint *HP_clif_authrefuse_post;
	struct HPMHookPoint *HP_clif_authfail_fd_pre;
	struct HPMHookPoint *HP_clif_authfail_fd_post;
	struct HPMHookPoint *HP_clif_charselectok_pre;
	struct HPMHookPoint *HP_clif_charselectok_post;
	struct HPMHookPoint *HP_clif_dropflooritem_pre;
	struct HPMHookPoint *HP_clif_dropflooritem_post;
	struct HPMHookPoint *HP_clif_clearflooritem_pre;
	struct HPMHookPoint *HP_clif_clearflooritem_post;
	struct HPMHookPoint *HP_clif_additem_pre;
	struct HPMHookPoint *HP_clif_additem_post;
	struct HPMHookPoint *HP_clif_dropitem_pre;
	struct HPMHookPoint *HP_clif_dropitem_post;
	struct HPMHookPoint *HP_clif_delitem_pre;
	struct HPMHookPoint *HP_clif_delitem_post;
	struct HPMHookPoint *HP_clif_takeitem_pre;
	struct HPMHookPoint *HP_clif_takeitem_post;
	struct HPMHookPoint *HP_clif_arrowequip_pre;
	struct HPMHookPoint *HP_clif_arrowequip_post;
	struct HPMHookPoint *HP_clif_arrow_fail_pre;
	struct HPMHookPoint *HP_clif_arrow_fail_post;
	struct HPMHookPoint *HP_clif_use_card_pre;
	struct HPMHookPoint *HP_clif_use_card_post;
	struct HPMHookPoint *HP_clif_cart_additem_pre;
	struct HPMHookPoint *HP_clif_cart_additem_post;
	struct HPMHookPoint *HP_clif_cart_delitem_pre;
	struct HPMHookPoint *HP_clif_cart_delitem_post;
	struct HPMHookPoint *HP_clif_equipitemack_pre;
	struct HPMHookPoint *HP_clif_equipitemack_post;
	struct HPMHookPoint *HP_clif_unequipitemack_pre;
	struct HPMHookPoint *HP_clif_unequipitemack_post;
	struct HPMHookPoint *HP_clif_useitemack_pre;
	struct HPMHookPoint *HP_clif_useitemack_post;
	struct HPMHookPoint *HP_clif_addcards_pre;
	struct HPMHookPoint *HP_clif_addcards_post;
	struct HPMHookPoint *HP_clif_addcards2_pre;
	struct HPMHookPoint *HP_clif_addcards2_post;
	struct HPMHookPoint *HP_clif_item_sub_pre;
	struct HPMHookPoint *HP_clif_item_sub_post;
	struct HPMHookPoint *HP_clif_getareachar_item_pre;
	struct HPMHookPoint *HP_clif_getareachar_item_post;
	struct HPMHookPoint *HP_clif_cart_additem_ack_pre;
	struct HPMHookPoint *HP_clif_cart_additem_ack_post;
	struct HPMHookPoint *HP_clif_cashshop_load_pre;
	struct HPMHookPoint *HP_clif_cashshop_load_post;
	struct HPMHookPoint *HP_clif_package_announce_pre;
	struct HPMHookPoint *HP_clif_package_announce_post;
	struct HPMHookPoint *HP_clif_item_drop_announce_pre;
	struct HPMHookPoint *HP_clif_item_drop_announce_post;
	struct HPMHookPoint *HP_clif_clearunit_single_pre;
	struct HPMHookPoint *HP_clif_clearunit_single_post;
	struct HPMHookPoint *HP_clif_clearunit_area_pre;
	struct HPMHookPoint *HP_clif_clearunit_area_post;
	struct HPMHookPoint *HP_clif_clearunit_delayed_pre;
	struct HPMHookPoint *HP_clif_clearunit_delayed_post;
	struct HPMHookPoint *HP_clif_walkok_pre;
	struct HPMHookPoint *HP_clif_walkok_post;
	struct HPMHookPoint *HP_clif_move_pre;
	struct HPMHookPoint *HP_clif_move_post;
	struct HPMHookPoint *HP_clif_move2_pre;
	struct HPMHookPoint *HP_clif_move2_post;
	struct HPMHookPoint *HP_clif_blown_pre;
	struct HPMHookPoint *HP_clif_blown_post;
	struct HPMHookPoint *HP_clif_slide_pre;
	struct HPMHookPoint *HP_clif_slide_post;
	struct HPMHookPoint *HP_clif_fixpos_pre;
	struct HPMHookPoint *HP_clif_fixpos_post;
	struct HPMHookPoint *HP_clif_changelook_pre;
	struct HPMHookPoint *HP_clif_changelook_post;
	struct HPMHookPoint *HP_clif_changetraplook_pre;
	struct HPMHookPoint *HP_clif_changetraplook_post;
	struct HPMHookPoint *HP_clif_refreshlook_pre;
	struct HPMHookPoint *HP_clif_refreshlook_post;
	struct HPMHookPoint *HP_clif_class_change_pre;
	struct HPMHookPoint *HP_clif_class_change_post;
	struct HPMHookPoint *HP_clif_skill_delunit_pre;
	struct HPMHookPoint *HP_clif_skill_delunit_post;
	struct HPMHookPoint *HP_clif_skillunit_update_pre;
	struct HPMHookPoint *HP_clif_skillunit_update_post;
	struct HPMHookPoint *HP_clif_clearunit_delayed_sub_pre;
	struct HPMHookPoint *HP_clif_clearunit_delayed_sub_post;
	struct HPMHookPoint *HP_clif_set_unit_idle_pre;
	struct HPMHookPoint *HP_clif_set_unit_idle_post;
	struct HPMHookPoint *HP_clif_spawn_unit_pre;
	struct HPMHookPoint *HP_clif_spawn_unit_post;
	struct HPMHookPoint *HP_clif_spawn_unit2_pre;
	struct HPMHookPoint *HP_clif_spawn_unit2_post;
	struct HPMHookPoint *HP_clif_set_unit_idle2_pre;
	struct HPMHookPoint *HP_clif_set_unit_idle2_post;
	struct HPMHookPoint *HP_clif_set_unit_walking_pre;
	struct HPMHookPoint *HP_clif_set_unit_walking_post;
	struct HPMHookPoint *HP_clif_calc_walkdelay_pre;
	struct HPMHookPoint *HP_clif_calc_walkdelay_post;
	struct HPMHookPoint *HP_clif_getareachar_skillunit_pre;
	struct HPMHookPoint *HP_clif_getareachar_skillunit_post;
	struct HPMHookPoint *HP_clif_getareachar_unit_pre;
	struct HPMHookPoint *HP_clif_getareachar_unit_post;
	struct HPMHookPoint *HP_clif_clearchar_skillunit_pre;
	struct HPMHookPoint *HP_clif_clearchar_skillunit_post;
	struct HPMHookPoint *HP_clif_getareachar_pre;
	struct HPMHookPoint *HP_clif_getareachar_post;
	struct HPMHookPoint *HP_clif_graffiti_entry_pre;
	struct HPMHookPoint *HP_clif_graffiti_entry_post;
	struct HPMHookPoint *HP_clif_spawn_pre;
	struct HPMHookPoint *HP_clif_spawn_post;
	struct HPMHookPoint *HP_clif_changemap_pre;
	struct HPMHookPoint *HP_clif_changemap_post;
	struct HPMHookPoint *HP_clif_changemapcell_pre;
	struct HPMHookPoint *HP_clif_changemapcell_post;
	struct HPMHookPoint *HP_clif_map_property_pre;
	struct HPMHookPoint *HP_clif_map_property_post;
	struct HPMHookPoint *HP_clif_pvpset_pre;
	struct HPMHookPoint *HP_clif_pvpset_post;
	struct HPMHookPoint *HP_clif_map_property_mapall_pre;
	struct HPMHookPoint *HP_clif_map_property_mapall_post;
	struct HPMHookPoint *HP_clif_bossmapinfo_pre;
	struct HPMHookPoint *HP_clif_bossmapinfo_post;
	struct HPMHookPoint *HP_clif_map_type_pre;
	struct HPMHookPoint *HP_clif_map_type_post;
	struct HPMHookPoint *HP_clif_maptypeproperty2_pre;
	struct HPMHookPoint *HP_clif_maptypeproperty2_post;
	struct HPMHookPoint *HP_clif_changemapserver_pre;
	struct HPMHookPoint *HP_clif_changemapserver_post;
	struct HPMHookPoint *HP_clif_npcbuysell_pre;
	struct HPMHookPoint *HP_clif_npcbuysell_post;
	struct HPMHookPoint *HP_clif_buylist_pre;
	struct HPMHookPoint *HP_clif_buylist_post;
	struct HPMHookPoint *HP_clif_selllist_pre;
	struct HPMHookPoint *HP_clif_selllist_post;
	struct HPMHookPoint *HP_clif_cashshop_show_pre;
	struct HPMHookPoint *HP_clif_cashshop_show_post;
	struct HPMHookPoint *HP_clif_npc_buy_result_pre;
	struct HPMHookPoint *HP_clif_npc_buy_result_post;
	struct HPMHookPoint *HP_clif_npc_sell_result_pre;
	struct HPMHookPoint *HP_clif_npc_sell_result_post;
	struct HPMHookPoint *HP_clif_cashshop_ack_pre;
	struct HPMHookPoint *HP_clif_cashshop_ack_post;
	struct HPMHookPoint *HP_clif_scriptmes_pre;
	struct HPMHookPoint *HP_clif_scriptmes_post;
	struct HPMHookPoint *HP_clif_scriptnext_pre;
	struct HPMHookPoint *HP_clif_scriptnext_post;
	struct HPMHookPoint *HP_clif_scriptclose_pre;
	struct HPMHookPoint *HP_clif_scriptclose_post;
	struct HPMHookPoint *HP_clif_scriptmenu_pre;
	struct HPMHookPoint *HP_clif_scriptmenu_post;
	struct HPMHookPoint *HP_clif_scriptinput_pre;
	struct HPMHookPoint *HP_clif_scriptinput_post;
	struct HPMHookPoint *HP_clif_scriptinputstr_pre;
	struct HPMHookPoint *HP_clif_scriptinputstr_post;
	struct HPMHookPoint *HP_clif_cutin_pre;
	struct HPMHookPoint *HP_clif_cutin_post;
	struct HPMHookPoint *HP_clif_sendfakenpc_pre;
	struct HPMHookPoint *HP_clif_sendfakenpc_post;
	struct HPMHookPoint *HP_clif_scriptclear_pre;
	struct HPMHookPoint *HP_clif_scriptclear_post;
	struct HPMHookPoint *HP_clif_viewpoint_pre;
	struct HPMHookPoint *HP_clif_viewpoint_post;
	struct HPMHookPoint *HP_clif_damage_pre;
	struct HPMHookPoint *HP_clif_damage_post;
	struct HPMHookPoint *HP_clif_sitting_pre;
	struct HPMHookPoint *HP_clif_sitting_post;
	struct HPMHookPoint *HP_clif_standing_pre;
	struct HPMHookPoint *HP_clif_standing_post;
	struct HPMHookPoint *HP_clif_arrow_create_list_pre;
	struct HPMHookPoint *HP_clif_arrow_create_list_post;
	struct HPMHookPoint *HP_clif_refresh_pre;
	struct HPMHookPoint *HP_clif_refresh_post;
	struct HPMHookPoint *HP_clif_fame_blacksmith_pre;
	struct HPMHookPoint *HP_clif_fame_blacksmith_post;
	struct HPMHookPoint *HP_clif_fame_alchemist_pre;
	struct HPMHookPoint *HP_clif_fame_alchemist_post;
	struct HPMHookPoint *HP_clif_fame_taekwon_pre;
	struct HPMHookPoint *HP_clif_fame_taekwon_post;
	struct HPMHookPoint *HP_clif_ranklist_pre;
	struct HPMHookPoint *HP_clif_ranklist_post;
	struct HPMHookPoint *HP_clif_update_rankingpoint_pre;
	struct HPMHookPoint *HP_clif_update_rankingpoint_post;
	struct HPMHookPoint *HP_clif_pRanklist_pre;
	struct HPMHookPoint *HP_clif_pRanklist_post;
	struct HPMHookPoint *HP_clif_hotkeys_pre;
	struct HPMHookPoint *HP_clif_hotkeys_post;
	struct HPMHookPoint *HP_clif_insight_pre;
	struct HPMHookPoint *HP_clif_insight_post;
	struct HPMHookPoint *HP_clif_outsight_pre;
	struct HPMHookPoint *HP_clif_outsight_post;
	struct HPMHookPoint *HP_clif_skillcastcancel_pre;
	struct HPMHookPoint *HP_clif_skillcastcancel_post;
	struct HPMHookPoint *HP_clif_skill_fail_pre;
	struct HPMHookPoint *HP_clif_skill_fail_post;
	struct HPMHookPoint *HP_clif_skill_cooldown_pre;
	struct HPMHookPoint *HP_clif_skill_cooldown_post;
	struct HPMHookPoint *HP_clif_skill_memomessage_pre;
	struct HPMHookPoint *HP_clif_skill_memomessage_post;
	struct HPMHookPoint *HP_clif_skill_mapinfomessage_pre;
	struct HPMHookPoint *HP_clif_skill_mapinfomessage_post;
	struct HPMHookPoint *HP_clif_skill_produce_mix_list_pre;
	struct HPMHookPoint *HP_clif_skill_produce_mix_list_post;
	struct HPMHookPoint *HP_clif_cooking_list_pre;
	struct HPMHookPoint *HP_clif_cooking_list_post;
	struct HPMHookPoint *HP_clif_autospell_pre;
	struct HPMHookPoint *HP_clif_autospell_post;
	struct HPMHookPoint *HP_clif_combo_delay_pre;
	struct HPMHookPoint *HP_clif_combo_delay_post;
	struct HPMHookPoint *HP_clif_status_change_pre;
	struct HPMHookPoint *HP_clif_status_change_post;
	struct HPMHookPoint *HP_clif_insert_card_pre;
	struct HPMHookPoint *HP_clif_insert_card_post;
	struct HPMHookPoint *HP_clif_inventorylist_pre;
	struct HPMHookPoint *HP_clif_inventorylist_post;
	struct HPMHookPoint *HP_clif_equiplist_pre;
	struct HPMHookPoint *HP_clif_equiplist_post;
	struct HPMHookPoint *HP_clif_cartlist_pre;
	struct HPMHookPoint *HP_clif_cartlist_post;
	struct HPMHookPoint *HP_clif_favorite_item_pre;
	struct HPMHookPoint *HP_clif_favorite_item_post;
	struct HPMHookPoint *HP_clif_clearcart_pre;
	struct HPMHookPoint *HP_clif_clearcart_post;
	struct HPMHookPoint *HP_clif_item_identify_list_pre;
	struct HPMHookPoint *HP_clif_item_identify_list_post;
	struct HPMHookPoint *HP_clif_item_identified_pre;
	struct HPMHookPoint *HP_clif_item_identified_post;
	struct HPMHookPoint *HP_clif_item_repair_list_pre;
	struct HPMHookPoint *HP_clif_item_repair_list_post;
	struct HPMHookPoint *HP_clif_item_repaireffect_pre;
	struct HPMHookPoint *HP_clif_item_repaireffect_post;
	struct HPMHookPoint *HP_clif_item_damaged_pre;
	struct HPMHookPoint *HP_clif_item_damaged_post;
	struct HPMHookPoint *HP_clif_item_refine_list_pre;
	struct HPMHookPoint *HP_clif_item_refine_list_post;
	struct HPMHookPoint *HP_clif_item_skill_pre;
	struct HPMHookPoint *HP_clif_item_skill_post;
	struct HPMHookPoint *HP_clif_mvp_item_pre;
	struct HPMHookPoint *HP_clif_mvp_item_post;
	struct HPMHookPoint *HP_clif_mvp_exp_pre;
	struct HPMHookPoint *HP_clif_mvp_exp_post;
	struct HPMHookPoint *HP_clif_mvp_noitem_pre;
	struct HPMHookPoint *HP_clif_mvp_noitem_post;
	struct HPMHookPoint *HP_clif_changed_dir_pre;
	struct HPMHookPoint *HP_clif_changed_dir_post;
	struct HPMHookPoint *HP_clif_charnameack_pre;
	struct HPMHookPoint *HP_clif_charnameack_post;
	struct HPMHookPoint *HP_clif_monster_hp_bar_pre;
	struct HPMHookPoint *HP_clif_monster_hp_bar_post;
	struct HPMHookPoint *HP_clif_hpmeter_pre;
	struct HPMHookPoint *HP_clif_hpmeter_post;
	struct HPMHookPoint *HP_clif_hpmeter_single_pre;
	struct HPMHookPoint *HP_clif_hpmeter_single_post;
	struct HPMHookPoint *HP_clif_hpmeter_sub_pre;
	struct HPMHookPoint *HP_clif_hpmeter_sub_post;
	struct HPMHookPoint *HP_clif_upgrademessage_pre;
	struct HPMHookPoint *HP_clif_upgrademessage_post;
	struct HPMHookPoint *HP_clif_get_weapon_view_pre;
	struct HPMHookPoint *HP_clif_get_weapon_view_post;
	struct HPMHookPoint *HP_clif_gospel_info_pre;
	struct HPMHookPoint *HP_clif_gospel_info_post;
	struct HPMHookPoint *HP_clif_feel_req_pre;
	struct HPMHookPoint *HP_clif_feel_req_post;
	struct HPMHookPoint *HP_clif_starskill_pre;
	struct HPMHookPoint *HP_clif_starskill_post;
	struct HPMHookPoint *HP_clif_feel_info_pre;
	struct HPMHookPoint *HP_clif_feel_info_post;
	struct HPMHookPoint *HP_clif_hate_info_pre;
	struct HPMHookPoint *HP_clif_hate_info_post;
	struct HPMHookPoint *HP_clif_mission_info_pre;
	struct HPMHookPoint *HP_clif_mission_info_post;
	struct HPMHookPoint *HP_clif_feel_hate_reset_pre;
	struct HPMHookPoint *HP_clif_feel_hate_reset_post;
	struct HPMHookPoint *HP_clif_partytickack_pre;
	struct HPMHookPoint *HP_clif_partytickack_post;
	struct HPMHookPoint *HP_clif_equiptickack_pre;
	struct HPMHookPoint *HP_clif_equiptickack_post;
	struct HPMHookPoint *HP_clif_viewequip_ack_pre;
	struct HPMHookPoint *HP_clif_viewequip_ack_post;
	struct HPMHookPoint *HP_clif_equpcheckbox_pre;
	struct HPMHookPoint *HP_clif_equpcheckbox_post;
	struct HPMHookPoint *HP_clif_displayexp_pre;
	struct HPMHookPoint *HP_clif_displayexp_post;
	struct HPMHookPoint *HP_clif_font_pre;
	struct HPMHookPoint *HP_clif_font_post;
	struct HPMHookPoint *HP_clif_progressbar_pre;
	struct HPMHookPoint *HP_clif_progressbar_post;
	struct HPMHookPoint *HP_clif_progressbar_abort_pre;
	struct HPMHookPoint *HP_clif_progressbar_abort_post;
	struct HPMHookPoint *HP_clif_showdigit_pre;
	struct HPMHookPoint *HP_clif_showdigit_post;
	struct HPMHookPoint *HP_clif_elementalconverter_list_pre;
	struct HPMHookPoint *HP_clif_elementalconverter_list_post;
	struct HPMHookPoint *HP_clif_spellbook_list_pre;
	struct HPMHookPoint *HP_clif_spellbook_list_post;
	struct HPMHookPoint *HP_clif_magicdecoy_list_pre;
	struct HPMHookPoint *HP_clif_magicdecoy_list_post;
	struct HPMHookPoint *HP_clif_poison_list_pre;
	struct HPMHookPoint *HP_clif_poison_list_post;
	struct HPMHookPoint *HP_clif_autoshadowspell_list_pre;
	struct HPMHookPoint *HP_clif_autoshadowspell_list_post;
	struct HPMHookPoint *HP_clif_skill_itemlistwindow_pre;
	struct HPMHookPoint *HP_clif_skill_itemlistwindow_post;
	struct HPMHookPoint *HP_clif_sc_load_pre;
	struct HPMHookPoint *HP_clif_sc_load_post;
	struct HPMHookPoint *HP_clif_sc_end_pre;
	struct HPMHookPoint *HP_clif_sc_end_post;
	struct HPMHookPoint *HP_clif_initialstatus_pre;
	struct HPMHookPoint *HP_clif_initialstatus_post;
	struct HPMHookPoint *HP_clif_cooldown_list_pre;
	struct HPMHookPoint *HP_clif_cooldown_list_post;
	struct HPMHookPoint *HP_clif_updatestatus_pre;
	struct HPMHookPoint *HP_clif_updatestatus_post;
	struct HPMHookPoint *HP_clif_changestatus_pre;
	struct HPMHookPoint *HP_clif_changestatus_post;
	struct HPMHookPoint *HP_clif_statusupack_pre;
	struct HPMHookPoint *HP_clif_statusupack_post;
	struct HPMHookPoint *HP_clif_movetoattack_pre;
	struct HPMHookPoint *HP_clif_movetoattack_post;
	struct HPMHookPoint *HP_clif_solved_charname_pre;
	struct HPMHookPoint *HP_clif_solved_charname_post;
	struct HPMHookPoint *HP_clif_charnameupdate_pre;
	struct HPMHookPoint *HP_clif_charnameupdate_post;
	struct HPMHookPoint *HP_clif_delayquit_pre;
	struct HPMHookPoint *HP_clif_delayquit_post;
	struct HPMHookPoint *HP_clif_getareachar_pc_pre;
	struct HPMHookPoint *HP_clif_getareachar_pc_post;
	struct HPMHookPoint *HP_clif_disconnect_ack_pre;
	struct HPMHookPoint *HP_clif_disconnect_ack_post;
	struct HPMHookPoint *HP_clif_PVPInfo_pre;
	struct HPMHookPoint *HP_clif_PVPInfo_post;
	struct HPMHookPoint *HP_clif_blacksmith_pre;
	struct HPMHookPoint *HP_clif_blacksmith_post;
	struct HPMHookPoint *HP_clif_alchemist_pre;
	struct HPMHookPoint *HP_clif_alchemist_post;
	struct HPMHookPoint *HP_clif_taekwon_pre;
	struct HPMHookPoint *HP_clif_taekwon_post;
	struct HPMHookPoint *HP_clif_ranking_pk_pre;
	struct HPMHookPoint *HP_clif_ranking_pk_post;
	struct HPMHookPoint *HP_clif_quitsave_pre;
	struct HPMHookPoint *HP_clif_quitsave_post;
	struct HPMHookPoint *HP_clif_misceffect_pre;
	struct HPMHookPoint *HP_clif_misceffect_post;
	struct HPMHookPoint *HP_clif_changeoption_pre;
	struct HPMHookPoint *HP_clif_changeoption_post;
	struct HPMHookPoint *HP_clif_changeoption2_pre;
	struct HPMHookPoint *HP_clif_changeoption2_post;
	struct HPMHookPoint *HP_clif_emotion_pre;
	struct HPMHookPoint *HP_clif_emotion_post;
	struct HPMHookPoint *HP_clif_talkiebox_pre;
	struct HPMHookPoint *HP_clif_talkiebox_post;
	struct HPMHookPoint *HP_clif_wedding_effect_pre;
	struct HPMHookPoint *HP_clif_wedding_effect_post;
	struct HPMHookPoint *HP_clif_divorced_pre;
	struct HPMHookPoint *HP_clif_divorced_post;
	struct HPMHookPoint *HP_clif_callpartner_pre;
	struct HPMHookPoint *HP_clif_callpartner_post;
	struct HPMHookPoint *HP_clif_skill_damage_pre;
	struct HPMHookPoint *HP_clif_skill_damage_post;
	struct HPMHookPoint *HP_clif_skill_nodamage_pre;
	struct HPMHookPoint *HP_clif_skill_nodamage_post;
	struct HPMHookPoint *HP_clif_skill_poseffect_pre;
	struct HPMHookPoint *HP_clif_skill_poseffect_post;
	struct HPMHookPoint *HP_clif_skill_estimation_pre;
	struct HPMHookPoint *HP_clif_skill_estimation_post;
	struct HPMHookPoint *HP_clif_skill_warppoint_pre;
	struct HPMHookPoint *HP_clif_skill_warppoint_post;
	struct HPMHookPoint *HP_clif_skillcasting_pre;
	struct HPMHookPoint *HP_clif_skillcasting_post;
	struct HPMHookPoint *HP_clif_produce_effect_pre;
	struct HPMHookPoint *HP_clif_produce_effect_post;
	struct HPMHookPoint *HP_clif_devotion_pre;
	struct HPMHookPoint *HP_clif_devotion_post;
	struct HPMHookPoint *HP_clif_spiritball_pre;
	struct HPMHookPoint *HP_clif_spiritball_post;
	struct HPMHookPoint *HP_clif_spiritball_single_pre;
	struct HPMHookPoint *HP_clif_spiritball_single_post;
	struct HPMHookPoint *HP_clif_bladestop_pre;
	struct HPMHookPoint *HP_clif_bladestop_post;
	struct HPMHookPoint *HP_clif_mvp_effect_pre;
	struct HPMHookPoint *HP_clif_mvp_effect_post;
	struct HPMHookPoint *HP_clif_heal_pre;
	struct HPMHookPoint *HP_clif_heal_post;
	struct HPMHookPoint *HP_clif_resurrection_pre;
	struct HPMHookPoint *HP_clif_resurrection_post;
	struct HPMHookPoint *HP_clif_refine_pre;
	struct HPMHookPoint *HP_clif_refine_post;
	struct HPMHookPoint *HP_clif_weather_pre;
	struct HPMHookPoint *HP_clif_weather_post;
	struct HPMHookPoint *HP_clif_specialeffect_pre;
	struct HPMHookPoint *HP_clif_specialeffect_post;
	struct HPMHookPoint *HP_clif_specialeffect_single_pre;
	struct HPMHookPoint *HP_clif_specialeffect_single_post;
	struct HPMHookPoint *HP_clif_specialeffect_value_pre;
	struct HPMHookPoint *HP_clif_specialeffect_value_post;
	struct HPMHookPoint *HP_clif_millenniumshield_pre;
	struct HPMHookPoint *HP_clif_millenniumshield_post;
	struct HPMHookPoint *HP_clif_charm_pre;
	struct HPMHookPoint *HP_clif_charm_post;
	struct HPMHookPoint *HP_clif_charm_single_pre;
	struct HPMHookPoint *HP_clif_charm_single_post;
	struct HPMHookPoint *HP_clif_snap_pre;
	struct HPMHookPoint *HP_clif_snap_post;
	struct HPMHookPoint *HP_clif_weather_check_pre;
	struct HPMHookPoint *HP_clif_weather_check_post;
	struct HPMHookPoint *HP_clif_playBGM_pre;
	struct HPMHookPoint *HP_clif_playBGM_post;
	struct HPMHookPoint *HP_clif_soundeffect_pre;
	struct HPMHookPoint *HP_clif_soundeffect_post;
	struct HPMHookPoint *HP_clif_soundeffectall_pre;
	struct HPMHookPoint *HP_clif_soundeffectall_post;
	struct HPMHookPoint *HP_clif_GlobalMessage_pre;
	struct HPMHookPoint *HP_clif_GlobalMessage_post;
	struct HPMHookPoint *HP_clif_createchat_pre;
	struct HPMHookPoint *HP_clif_createchat_post;
	struct HPMHookPoint *HP_clif_dispchat_pre;
	struct HPMHookPoint *HP_clif_dispchat_post;
	struct HPMHookPoint *HP_clif_joinchatfail_pre;
	struct HPMHookPoint *HP_clif_joinchatfail_post;
	struct HPMHookPoint *HP_clif_joinchatok_pre;
	struct HPMHookPoint *HP_clif_joinchatok_post;
	struct HPMHookPoint *HP_clif_addchat_pre;
	struct HPMHookPoint *HP_clif_addchat_post;
	struct HPMHookPoint *HP_clif_changechatowner_pre;
	struct HPMHookPoint *HP_clif_changechatowner_post;
	struct HPMHookPoint *HP_clif_clearchat_pre;
	struct HPMHookPoint *HP_clif_clearchat_post;
	struct HPMHookPoint *HP_clif_leavechat_pre;
	struct HPMHookPoint *HP_clif_leavechat_post;
	struct HPMHookPoint *HP_clif_changechatstatus_pre;
	struct HPMHookPoint *HP_clif_changechatstatus_post;
	struct HPMHookPoint *HP_clif_wis_message_pre;
	struct HPMHookPoint *HP_clif_wis_message_post;
	struct HPMHookPoint *HP_clif_wis_end_pre;
	struct HPMHookPoint *HP_clif_wis_end_post;
	struct HPMHookPoint *HP_clif_disp_message_pre;
	struct HPMHookPoint *HP_clif_disp_message_post;
	struct HPMHookPoint *HP_clif_broadcast_pre;
	struct HPMHookPoint *HP_clif_broadcast_post;
	struct HPMHookPoint *HP_clif_broadcast2_pre;
	struct HPMHookPoint *HP_clif_broadcast2_post;
	struct HPMHookPoint *HP_clif_messagecolor_pre;
	struct HPMHookPoint *HP_clif_messagecolor_post;
	struct HPMHookPoint *HP_clif_disp_overhead_pre;
	struct HPMHookPoint *HP_clif_disp_overhead_post;
	struct HPMHookPoint *HP_clif_msg_pre;
	struct HPMHookPoint *HP_clif_msg_post;
	struct HPMHookPoint *HP_clif_msg_value_pre;
	struct HPMHookPoint *HP_clif_msg_value_post;
	struct HPMHookPoint *HP_clif_msg_skill_pre;
	struct HPMHookPoint *HP_clif_msg_skill_post;
	struct HPMHookPoint *HP_clif_msgtable_pre;
	struct HPMHookPoint *HP_clif_msgtable_post;
	struct HPMHookPoint *HP_clif_msgtable_num_pre;
	struct HPMHookPoint *HP_clif_msgtable_num_post;
	struct HPMHookPoint *HP_clif_message_pre;
	struct HPMHookPoint *HP_clif_message_post;
	struct HPMHookPoint *HP_clif_messageln_pre;
	struct HPMHookPoint *HP_clif_messageln_post;
	struct HPMHookPoint *HP_clif_colormes_pre;
	struct HPMHookPoint *HP_clif_colormes_post;
	struct HPMHookPoint *HP_clif_process_message_pre;
	struct HPMHookPoint *HP_clif_process_message_post;
	struct HPMHookPoint *HP_clif_wisexin_pre;
	struct HPMHookPoint *HP_clif_wisexin_post;
	struct HPMHookPoint *HP_clif_wisall_pre;
	struct HPMHookPoint *HP_clif_wisall_post;
	struct HPMHookPoint *HP_clif_PMIgnoreList_pre;
	struct HPMHookPoint *HP_clif_PMIgnoreList_post;
	struct HPMHookPoint *HP_clif_ShowScript_pre;
	struct HPMHookPoint *HP_clif_ShowScript_post;
	struct HPMHookPoint *HP_clif_traderequest_pre;
	struct HPMHookPoint *HP_clif_traderequest_post;
	struct HPMHookPoint *HP_clif_tradestart_pre;
	struct HPMHookPoint *HP_clif_tradestart_post;
	struct HPMHookPoint *HP_clif_tradeadditem_pre;
	struct HPMHookPoint *HP_clif_tradeadditem_post;
	struct HPMHookPoint *HP_clif_tradeitemok_pre;
	struct HPMHookPoint *HP_clif_tradeitemok_post;
	struct HPMHookPoint *HP_clif_tradedeal_lock_pre;
	struct HPMHookPoint *HP_clif_tradedeal_lock_post;
	struct HPMHookPoint *HP_clif_tradecancelled_pre;
	struct HPMHookPoint *HP_clif_tradecancelled_post;
	struct HPMHookPoint *HP_clif_tradecompleted_pre;
	struct HPMHookPoint *HP_clif_tradecompleted_post;
	struct HPMHookPoint *HP_clif_tradeundo_pre;
	struct HPMHookPoint *HP_clif_tradeundo_post;
	struct HPMHookPoint *HP_clif_openvendingreq_pre;
	struct HPMHookPoint *HP_clif_openvendingreq_post;
	struct HPMHookPoint *HP_clif_showvendingboard_pre;
	struct HPMHookPoint *HP_clif_showvendingboard_post;
	struct HPMHookPoint *HP_clif_closevendingboard_pre;
	struct HPMHookPoint *HP_clif_closevendingboard_post;
	struct HPMHookPoint *HP_clif_vendinglist_pre;
	struct HPMHookPoint *HP_clif_vendinglist_post;
	struct HPMHookPoint *HP_clif_buyvending_pre;
	struct HPMHookPoint *HP_clif_buyvending_post;
	struct HPMHookPoint *HP_clif_openvending_pre;
	struct HPMHookPoint *HP_clif_openvending_post;
	struct HPMHookPoint *HP_clif_vendingreport_pre;
	struct HPMHookPoint *HP_clif_vendingreport_post;
	struct HPMHookPoint *HP_clif_storagelist_pre;
	struct HPMHookPoint *HP_clif_storagelist_post;
	struct HPMHookPoint *HP_clif_updatestorageamount_pre;
	struct HPMHookPoint *HP_clif_updatestorageamount_post;
	struct HPMHookPoint *HP_clif_storageitemadded_pre;
	struct HPMHookPoint *HP_clif_storageitemadded_post;
	struct HPMHookPoint *HP_clif_storageitemremoved_pre;
	struct HPMHookPoint *HP_clif_storageitemremoved_post;
	struct HPMHookPoint *HP_clif_storageclose_pre;
	struct HPMHookPoint *HP_clif_storageclose_post;
	struct HPMHookPoint *HP_clif_skillinfoblock_pre;
	struct HPMHookPoint *HP_clif_skillinfoblock_post;
	struct HPMHookPoint *HP_clif_skillup_pre;
	struct HPMHookPoint *HP_clif_skillup_post;
	struct HPMHookPoint *HP_clif_skillinfo_pre;
	struct HPMHookPoint *HP_clif_skillinfo_post;
	struct HPMHookPoint *HP_clif_addskill_pre;
	struct HPMHookPoint *HP_clif_addskill_post;
	struct HPMHookPoint *HP_clif_deleteskill_pre;
	struct HPMHookPoint *HP_clif_deleteskill_post;
	struct HPMHookPoint *HP_clif_party_created_pre;
	struct HPMHookPoint *HP_clif_party_created_post;
	struct HPMHookPoint *HP_clif_party_member_info_pre;
	struct HPMHookPoint *HP_clif_party_member_info_post;
	struct HPMHookPoint *HP_clif_party_info_pre;
	struct HPMHookPoint *HP_clif_party_info_post;
	struct HPMHookPoint *HP_clif_party_invite_pre;
	struct HPMHookPoint *HP_clif_party_invite_post;
	struct HPMHookPoint *HP_clif_party_inviteack_pre;
	struct HPMHookPoint *HP_clif_party_inviteack_post;
	struct HPMHookPoint *HP_clif_party_option_pre;
	struct HPMHookPoint *HP_clif_party_option_post;
	struct HPMHookPoint *HP_clif_party_withdraw_pre;
	struct HPMHookPoint *HP_clif_party_withdraw_post;
	struct HPMHookPoint *HP_clif_party_message_pre;
	struct HPMHookPoint *HP_clif_party_message_post;
	struct HPMHookPoint *HP_clif_party_xy_pre;
	struct HPMHookPoint *HP_clif_party_xy_post;
	struct HPMHookPoint *HP_clif_party_xy_single_pre;
	struct HPMHookPoint *HP_clif_party_xy_single_post;
	struct HPMHookPoint *HP_clif_party_hp_pre;
	struct HPMHookPoint *HP_clif_party_hp_post;
	struct HPMHookPoint *HP_clif_party_xy_remove_pre;
	struct HPMHookPoint *HP_clif_party_xy_remove_post;
	struct HPMHookPoint *HP_clif_party_show_picker_pre;
	struct HPMHookPoint *HP_clif_party_show_picker_post;
	struct HPMHookPoint *HP_clif_partyinvitationstate_pre;
	struct HPMHookPoint *HP_clif_partyinvitationstate_post;
	struct HPMHookPoint *HP_clif_guild_created_pre;
	struct HPMHookPoint *HP_clif_guild_created_post;
	struct HPMHookPoint *HP_clif_guild_belonginfo_pre;
	struct HPMHookPoint *HP_clif_guild_belonginfo_post;
	struct HPMHookPoint *HP_clif_guild_masterormember_pre;
	struct HPMHookPoint *HP_clif_guild_masterormember_post;
	struct HPMHookPoint *HP_clif_guild_basicinfo_pre;
	struct HPMHookPoint *HP_clif_guild_basicinfo_post;
	struct HPMHookPoint *HP_clif_guild_allianceinfo_pre;
	struct HPMHookPoint *HP_clif_guild_allianceinfo_post;
	struct HPMHookPoint *HP_clif_guild_memberlist_pre;
	struct HPMHookPoint *HP_clif_guild_memberlist_post;
	struct HPMHookPoint *HP_clif_guild_skillinfo_pre;
	struct HPMHookPoint *HP_clif_guild_skillinfo_post;
	struct HPMHookPoint *HP_clif_guild_send_onlineinfo_pre;
	struct HPMHookPoint *HP_clif_guild_send_onlineinfo_post;
	struct HPMHookPoint *HP_clif_guild_memberlogin_notice_pre;
	struct HPMHookPoint *HP_clif_guild_memberlogin_notice_post;
	struct HPMHookPoint *HP_clif_guild_invite_pre;
	struct HPMHookPoint *HP_clif_guild_invite_post;
	struct HPMHookPoint *HP_clif_guild_inviteack_pre;
	struct HPMHookPoint *HP_clif_guild_inviteack_post;
	struct HPMHookPoint *HP_clif_guild_leave_pre;
	struct HPMHookPoint *HP_clif_guild_leave_post;
	struct HPMHookPoint *HP_clif_guild_expulsion_pre;
	struct HPMHookPoint *HP_clif_guild_expulsion_post;
	struct HPMHookPoint *HP_clif_guild_positionchanged_pre;
	struct HPMHookPoint *HP_clif_guild_positionchanged_post;
	struct HPMHookPoint *HP_clif_guild_memberpositionchanged_pre;
	struct HPMHookPoint *HP_clif_guild_memberpositionchanged_post;
	struct HPMHookPoint *HP_clif_guild_emblem_pre;
	struct HPMHookPoint *HP_clif_guild_emblem_post;
	struct HPMHookPoint *HP_clif_guild_emblem_area_pre;
	struct HPMHookPoint *HP_clif_guild_emblem_area_post;
	struct HPMHookPoint *HP_clif_guild_notice_pre;
	struct HPMHookPoint *HP_clif_guild_notice_post;
	struct HPMHookPoint *HP_clif_guild_message_pre;
	struct HPMHookPoint *HP_clif_guild_message_post;
	struct HPMHookPoint *HP_clif_guild_reqalliance_pre;
	struct HPMHookPoint *HP_clif_guild_reqalliance_post;
	struct HPMHookPoint *HP_clif_guild_allianceack_pre;
	struct HPMHookPoint *HP_clif_guild_allianceack_post;
	struct HPMHookPoint *HP_clif_guild_delalliance_pre;
	struct HPMHookPoint *HP_clif_guild_delalliance_post;
	struct HPMHookPoint *HP_clif_guild_oppositionack_pre;
	struct HPMHookPoint *HP_clif_guild_oppositionack_post;
	struct HPMHookPoint *HP_clif_guild_broken_pre;
	struct HPMHookPoint *HP_clif_guild_broken_post;
	struct HPMHookPoint *HP_clif_guild_xy_pre;
	struct HPMHookPoint *HP_clif_guild_xy_post;
	struct HPMHookPoint *HP_clif_guild_xy_single_pre;
	struct HPMHookPoint *HP_clif_guild_xy_single_post;
	struct HPMHookPoint *HP_clif_guild_xy_remove_pre;
	struct HPMHookPoint *HP_clif_guild_xy_remove_post;
	struct HPMHookPoint *HP_clif_guild_positionnamelist_pre;
	struct HPMHookPoint *HP_clif_guild_positionnamelist_post;
	struct HPMHookPoint *HP_clif_guild_positioninfolist_pre;
	struct HPMHookPoint *HP_clif_guild_positioninfolist_post;
	struct HPMHookPoint *HP_clif_guild_expulsionlist_pre;
	struct HPMHookPoint *HP_clif_guild_expulsionlist_post;
	struct HPMHookPoint *HP_clif_validate_emblem_pre;
	struct HPMHookPoint *HP_clif_validate_emblem_post;
	struct HPMHookPoint *HP_clif_bg_hp_pre;
	struct HPMHookPoint *HP_clif_bg_hp_post;
	struct HPMHookPoint *HP_clif_bg_xy_pre;
	struct HPMHookPoint *HP_clif_bg_xy_post;
	struct HPMHookPoint *HP_clif_bg_xy_remove_pre;
	struct HPMHookPoint *HP_clif_bg_xy_remove_post;
	struct HPMHookPoint *HP_clif_bg_message_pre;
	struct HPMHookPoint *HP_clif_bg_message_post;
	struct HPMHookPoint *HP_clif_bg_updatescore_pre;
	struct HPMHookPoint *HP_clif_bg_updatescore_post;
	struct HPMHookPoint *HP_clif_bg_updatescore_single_pre;
	struct HPMHookPoint *HP_clif_bg_updatescore_single_post;
	struct HPMHookPoint *HP_clif_sendbgemblem_area_pre;
	struct HPMHookPoint *HP_clif_sendbgemblem_area_post;
	struct HPMHookPoint *HP_clif_sendbgemblem_single_pre;
	struct HPMHookPoint *HP_clif_sendbgemblem_single_post;
	struct HPMHookPoint *HP_clif_instance_pre;
	struct HPMHookPoint *HP_clif_instance_post;
	struct HPMHookPoint *HP_clif_instance_join_pre;
	struct HPMHookPoint *HP_clif_instance_join_post;
	struct HPMHookPoint *HP_clif_instance_leave_pre;
	struct HPMHookPoint *HP_clif_instance_leave_post;
	struct HPMHookPoint *HP_clif_catch_process_pre;
	struct HPMHookPoint *HP_clif_catch_process_post;
	struct HPMHookPoint *HP_clif_pet_roulette_pre;
	struct HPMHookPoint *HP_clif_pet_roulette_post;
	struct HPMHookPoint *HP_clif_sendegg_pre;
	struct HPMHookPoint *HP_clif_sendegg_post;
	struct HPMHookPoint *HP_clif_send_petstatus_pre;
	struct HPMHookPoint *HP_clif_send_petstatus_post;
	struct HPMHookPoint *HP_clif_send_petdata_pre;
	struct HPMHookPoint *HP_clif_send_petdata_post;
	struct HPMHookPoint *HP_clif_pet_emotion_pre;
	struct HPMHookPoint *HP_clif_pet_emotion_post;
	struct HPMHookPoint *HP_clif_pet_food_pre;
	struct HPMHookPoint *HP_clif_pet_food_post;
	struct HPMHookPoint *HP_clif_friendslist_toggle_sub_pre;
	struct HPMHookPoint *HP_clif_friendslist_toggle_sub_post;
	struct HPMHookPoint *HP_clif_friendslist_send_pre;
	struct HPMHookPoint *HP_clif_friendslist_send_post;
	struct HPMHookPoint *HP_clif_friendslist_reqack_pre;
	struct HPMHookPoint *HP_clif_friendslist_reqack_post;
	struct HPMHookPoint *HP_clif_friendslist_toggle_pre;
	struct HPMHookPoint *HP_clif_friendslist_toggle_post;
	struct HPMHookPoint *HP_clif_friendlist_req_pre;
	struct HPMHookPoint *HP_clif_friendlist_req_post;
	struct HPMHookPoint *HP_clif_GM_kickack_pre;
	struct HPMHookPoint *HP_clif_GM_kickack_post;
	struct HPMHookPoint *HP_clif_GM_kick_pre;
	struct HPMHookPoint *HP_clif_GM_kick_post;
	struct HPMHookPoint *HP_clif_manner_message_pre;
	struct HPMHookPoint *HP_clif_manner_message_post;
	struct HPMHookPoint *HP_clif_GM_silence_pre;
	struct HPMHookPoint *HP_clif_GM_silence_post;
	struct HPMHookPoint *HP_clif_account_name_pre;
	struct HPMHookPoint *HP_clif_account_name_post;
	struct HPMHookPoint *HP_clif_check_pre;
	struct HPMHookPoint *HP_clif_check_post;
	struct HPMHookPoint *HP_clif_hominfo_pre;
	struct HPMHookPoint *HP_clif_hominfo_post;
	struct HPMHookPoint *HP_clif_homskillinfoblock_pre;
	struct HPMHookPoint *HP_clif_homskillinfoblock_post;
	struct HPMHookPoint *HP_clif_homskillup_pre;
	struct HPMHookPoint *HP_clif_homskillup_post;
	struct HPMHookPoint *HP_clif_hom_food_pre;
	struct HPMHookPoint *HP_clif_hom_food_post;
	struct HPMHookPoint *HP_clif_send_homdata_pre;
	struct HPMHookPoint *HP_clif_send_homdata_post;
	struct HPMHookPoint *HP_clif_quest_send_list_pre;
	struct HPMHookPoint *HP_clif_quest_send_list_post;
	struct HPMHookPoint *HP_clif_quest_send_mission_pre;
	struct HPMHookPoint *HP_clif_quest_send_mission_post;
	struct HPMHookPoint *HP_clif_quest_add_pre;
	struct HPMHookPoint *HP_clif_quest_add_post;
	struct HPMHookPoint *HP_clif_quest_delete_pre;
	struct HPMHookPoint *HP_clif_quest_delete_post;
	struct HPMHookPoint *HP_clif_quest_update_status_pre;
	struct HPMHookPoint *HP_clif_quest_update_status_post;
	struct HPMHookPoint *HP_clif_quest_update_objective_pre;
	struct HPMHookPoint *HP_clif_quest_update_objective_post;
	struct HPMHookPoint *HP_clif_quest_show_event_pre;
	struct HPMHookPoint *HP_clif_quest_show_event_post;
	struct HPMHookPoint *HP_clif_mail_window_pre;
	struct HPMHookPoint *HP_clif_mail_window_post;
	struct HPMHookPoint *HP_clif_mail_read_pre;
	struct HPMHookPoint *HP_clif_mail_read_post;
	struct HPMHookPoint *HP_clif_mail_delete_pre;
	struct HPMHookPoint *HP_clif_mail_delete_post;
	struct HPMHookPoint *HP_clif_mail_return_pre;
	struct HPMHookPoint *HP_clif_mail_return_post;
	struct HPMHookPoint *HP_clif_mail_send_pre;
	struct HPMHookPoint *HP_clif_mail_send_post;
	struct HPMHookPoint *HP_clif_mail_new_pre;
	struct HPMHookPoint *HP_clif_mail_new_post;
	struct HPMHookPoint *HP_clif_mail_refreshinbox_pre;
	struct HPMHookPoint *HP_clif_mail_refreshinbox_post;
	struct HPMHookPoint *HP_clif_mail_getattachment_pre;
	struct HPMHookPoint *HP_clif_mail_getattachment_post;
	struct HPMHookPoint *HP_clif_mail_setattachment_pre;
	struct HPMHookPoint *HP_clif_mail_setattachment_post;
	struct HPMHookPoint *HP_clif_auction_openwindow_pre;
	struct HPMHookPoint *HP_clif_auction_openwindow_post;
	struct HPMHookPoint *HP_clif_auction_results_pre;
	struct HPMHookPoint *HP_clif_auction_results_post;
	struct HPMHookPoint *HP_clif_auction_message_pre;
	struct HPMHookPoint *HP_clif_auction_message_post;
	struct HPMHookPoint *HP_clif_auction_close_pre;
	struct HPMHookPoint *HP_clif_auction_close_post;
	struct HPMHookPoint *HP_clif_auction_setitem_pre;
	struct HPMHookPoint *HP_clif_auction_setitem_post;
	struct HPMHookPoint *HP_clif_mercenary_info_pre;
	struct HPMHookPoint *HP_clif_mercenary_info_post;
	struct HPMHookPoint *HP_clif_mercenary_skillblock_pre;
	struct HPMHookPoint *HP_clif_mercenary_skillblock_post;
	struct HPMHookPoint *HP_clif_mercenary_message_pre;
	struct HPMHookPoint *HP_clif_mercenary_message_post;
	struct HPMHookPoint *HP_clif_mercenary_updatestatus_pre;
	struct HPMHookPoint *HP_clif_mercenary_updatestatus_post;
	struct HPMHookPoint *HP_clif_rental_time_pre;
	struct HPMHookPoint *HP_clif_rental_time_post;
	struct HPMHookPoint *HP_clif_rental_expired_pre;
	struct HPMHookPoint *HP_clif_rental_expired_post;
	struct HPMHookPoint *HP_clif_PartyBookingRegisterAck_pre;
	struct HPMHookPoint *HP_clif_PartyBookingRegisterAck_post;
	struct HPMHookPoint *HP_clif_PartyBookingDeleteAck_pre;
	struct HPMHookPoint *HP_clif_PartyBookingDeleteAck_post;
	struct HPMHookPoint *HP_clif_PartyBookingSearchAck_pre;
	struct HPMHookPoint *HP_clif_PartyBookingSearchAck_post;
	struct HPMHookPoint *HP_clif_PartyBookingUpdateNotify_pre;
	struct HPMHookPoint *HP_clif_PartyBookingUpdateNotify_post;
	struct HPMHookPoint *HP_clif_PartyBookingDeleteNotify_pre;
	struct HPMHookPoint *HP_clif_PartyBookingDeleteNotify_post;
	struct HPMHookPoint *HP_clif_PartyBookingInsertNotify_pre;
	struct HPMHookPoint *HP_clif_PartyBookingInsertNotify_post;
	struct HPMHookPoint *HP_clif_PartyRecruitRegisterAck_pre;
	struct HPMHookPoint *HP_clif_PartyRecruitRegisterAck_post;
	struct HPMHookPoint *HP_clif_PartyRecruitDeleteAck_pre;
	struct HPMHookPoint *HP_clif_PartyRecruitDeleteAck_post;
	struct HPMHookPoint *HP_clif_PartyRecruitSearchAck_pre;
	struct HPMHookPoint *HP_clif_PartyRecruitSearchAck_post;
	struct HPMHookPoint *HP_clif_PartyRecruitUpdateNotify_pre;
	struct HPMHookPoint *HP_clif_PartyRecruitUpdateNotify_post;
	struct HPMHookPoint *HP_clif_PartyRecruitDeleteNotify_pre;
	struct HPMHookPoint *HP_clif_PartyRecruitDeleteNotify_post;
	struct HPMHookPoint *HP_clif_PartyRecruitInsertNotify_pre;
	struct HPMHookPoint *HP_clif_PartyRecruitInsertNotify_post;
	struct HPMHookPoint *HP_clif_PartyBookingVolunteerInfo_pre;
	struct HPMHookPoint *HP_clif_PartyBookingVolunteerInfo_post;
	struct HPMHookPoint *HP_clif_PartyBookingRefuseVolunteer_pre;
	struct HPMHookPoint *HP_clif_PartyBookingRefuseVolunteer_post;
	struct HPMHookPoint *HP_clif_PartyBookingCancelVolunteer_pre;
	struct HPMHookPoint *HP_clif_PartyBookingCancelVolunteer_post;
	struct HPMHookPoint *HP_clif_PartyBookingAddFilteringList_pre;
	struct HPMHookPoint *HP_clif_PartyBookingAddFilteringList_post;
	struct HPMHookPoint *HP_clif_PartyBookingSubFilteringList_pre;
	struct HPMHookPoint *HP_clif_PartyBookingSubFilteringList_post;
	struct HPMHookPoint *HP_clif_buyingstore_open_pre;
	struct HPMHookPoint *HP_clif_buyingstore_open_post;
	struct HPMHookPoint *HP_clif_buyingstore_open_failed_pre;
	struct HPMHookPoint *HP_clif_buyingstore_open_failed_post;
	struct HPMHookPoint *HP_clif_buyingstore_myitemlist_pre;
	struct HPMHookPoint *HP_clif_buyingstore_myitemlist_post;
	struct HPMHookPoint *HP_clif_buyingstore_entry_pre;
	struct HPMHookPoint *HP_clif_buyingstore_entry_post;
	struct HPMHookPoint *HP_clif_buyingstore_entry_single_pre;
	struct HPMHookPoint *HP_clif_buyingstore_entry_single_post;
	struct HPMHookPoint *HP_clif_buyingstore_disappear_entry_pre;
	struct HPMHookPoint *HP_clif_buyingstore_disappear_entry_post;
	struct HPMHookPoint *HP_clif_buyingstore_disappear_entry_single_pre;
	struct HPMHookPoint *HP_clif_buyingstore_disappear_entry_single_post;
	struct HPMHookPoint *HP_clif_buyingstore_itemlist_pre;
	struct HPMHookPoint *HP_clif_buyingstore_itemlist_post;
	struct HPMHookPoint *HP_clif_buyingstore_trade_failed_buyer_pre;
	struct HPMHookPoint *HP_clif_buyingstore_trade_failed_buyer_post;
	struct HPMHookPoint *HP_clif_buyingstore_update_item_pre;
	struct HPMHookPoint *HP_clif_buyingstore_update_item_post;
	struct HPMHookPoint *HP_clif_buyingstore_delete_item_pre;
	struct HPMHookPoint *HP_clif_buyingstore_delete_item_post;
	struct HPMHookPoint *HP_clif_buyingstore_trade_failed_seller_pre;
	struct HPMHookPoint *HP_clif_buyingstore_trade_failed_seller_post;
	struct HPMHookPoint *HP_clif_search_store_info_ack_pre;
	struct HPMHookPoint *HP_clif_search_store_info_ack_post;
	struct HPMHookPoint *HP_clif_search_store_info_failed_pre;
	struct HPMHookPoint *HP_clif_search_store_info_failed_post;
	struct HPMHookPoint *HP_clif_open_search_store_info_pre;
	struct HPMHookPoint *HP_clif_open_search_store_info_post;
	struct HPMHookPoint *HP_clif_search_store_info_click_ack_pre;
	struct HPMHookPoint *HP_clif_search_store_info_click_ack_post;
	struct HPMHookPoint *HP_clif_elemental_info_pre;
	struct HPMHookPoint *HP_clif_elemental_info_post;
	struct HPMHookPoint *HP_clif_elemental_updatestatus_pre;
	struct HPMHookPoint *HP_clif_elemental_updatestatus_post;
	struct HPMHookPoint *HP_clif_bgqueue_ack_pre;
	struct HPMHookPoint *HP_clif_bgqueue_ack_post;
	struct HPMHookPoint *HP_clif_bgqueue_notice_delete_pre;
	struct HPMHookPoint *HP_clif_bgqueue_notice_delete_post;
	struct HPMHookPoint *HP_clif_bgqueue_update_info_pre;
	struct HPMHookPoint *HP_clif_bgqueue_update_info_post;
	struct HPMHookPoint *HP_clif_bgqueue_joined_pre;
	struct HPMHookPoint *HP_clif_bgqueue_joined_post;
	struct HPMHookPoint *HP_clif_bgqueue_pcleft_pre;
	struct HPMHookPoint *HP_clif_bgqueue_pcleft_post;
	struct HPMHookPoint *HP_clif_bgqueue_battlebegins_pre;
	struct HPMHookPoint *HP_clif_bgqueue_battlebegins_post;
	struct HPMHookPoint *HP_clif_adopt_reply_pre;
	struct HPMHookPoint *HP_clif_adopt_reply_post;
	struct HPMHookPoint *HP_clif_adopt_request_pre;
	struct HPMHookPoint *HP_clif_adopt_request_post;
	struct HPMHookPoint *HP_clif_readbook_pre;
	struct HPMHookPoint *HP_clif_readbook_post;
	struct HPMHookPoint *HP_clif_notify_time_pre;
	struct HPMHookPoint *HP_clif_notify_time_post;
	struct HPMHookPoint *HP_clif_user_count_pre;
	struct HPMHookPoint *HP_clif_user_count_post;
	struct HPMHookPoint *HP_clif_noask_sub_pre;
	struct HPMHookPoint *HP_clif_noask_sub_post;
	struct HPMHookPoint *HP_clif_bc_ready_pre;
	struct HPMHookPoint *HP_clif_bc_ready_post;
	struct HPMHookPoint *HP_clif_undisguise_timer_pre;
	struct HPMHookPoint *HP_clif_undisguise_timer_post;
	struct HPMHookPoint *HP_clif_chsys_create_pre;
	struct HPMHookPoint *HP_clif_chsys_create_post;
	struct HPMHookPoint *HP_clif_chsys_msg_pre;
	struct HPMHookPoint *HP_clif_chsys_msg_post;
	struct HPMHookPoint *HP_clif_chsys_msg2_pre;
	struct HPMHookPoint *HP_clif_chsys_msg2_post;
	struct HPMHookPoint *HP_clif_chsys_send_pre;
	struct HPMHookPoint *HP_clif_chsys_send_post;
	struct HPMHookPoint *HP_clif_chsys_join_pre;
	struct HPMHookPoint *HP_clif_chsys_join_post;
	struct HPMHookPoint *HP_clif_chsys_left_pre;
	struct HPMHookPoint *HP_clif_chsys_left_post;
	struct HPMHookPoint *HP_clif_chsys_delete_pre;
	struct HPMHookPoint *HP_clif_chsys_delete_post;
	struct HPMHookPoint *HP_clif_chsys_mjoin_pre;
	struct HPMHookPoint *HP_clif_chsys_mjoin_post;
	struct HPMHookPoint *HP_clif_chsys_quit_pre;
	struct HPMHookPoint *HP_clif_chsys_quit_post;
	struct HPMHookPoint *HP_clif_chsys_quitg_pre;
	struct HPMHookPoint *HP_clif_chsys_quitg_post;
	struct HPMHookPoint *HP_clif_chsys_gjoin_pre;
	struct HPMHookPoint *HP_clif_chsys_gjoin_post;
	struct HPMHookPoint *HP_clif_chsys_gleave_pre;
	struct HPMHookPoint *HP_clif_chsys_gleave_post;
	struct HPMHookPoint *HP_clif_bank_deposit_pre;
	struct HPMHookPoint *HP_clif_bank_deposit_post;
	struct HPMHookPoint *HP_clif_bank_withdraw_pre;
	struct HPMHookPoint *HP_clif_bank_withdraw_post;
	struct HPMHookPoint *HP_clif_show_modifiers_pre;
	struct HPMHookPoint *HP_clif_show_modifiers_post;
	struct HPMHookPoint *HP_clif_notify_bounditem_pre;
	struct HPMHookPoint *HP_clif_notify_bounditem_post;
	struct HPMHookPoint *HP_clif_delay_damage_pre;
	struct HPMHookPoint *HP_clif_delay_damage_post;
	struct HPMHookPoint *HP_clif_delay_damage_sub_pre;
	struct HPMHookPoint *HP_clif_delay_damage_sub_post;
	struct HPMHookPoint *HP_clif_npc_market_open_pre;
	struct HPMHookPoint *HP_clif_npc_market_open_post;
	struct HPMHookPoint *HP_clif_npc_market_purchase_ack_pre;
	struct HPMHookPoint *HP_clif_npc_market_purchase_ack_post;
	struct HPMHookPoint *HP_clif_pWantToConnection_pre;
	struct HPMHookPoint *HP_clif_pWantToConnection_post;
	struct HPMHookPoint *HP_clif_pLoadEndAck_pre;
	struct HPMHookPoint *HP_clif_pLoadEndAck_post;
	struct HPMHookPoint *HP_clif_pTickSend_pre;
	struct HPMHookPoint *HP_clif_pTickSend_post;
	struct HPMHookPoint *HP_clif_pHotkey_pre;
	struct HPMHookPoint *HP_clif_pHotkey_post;
	struct HPMHookPoint *HP_clif_pProgressbar_pre;
	struct HPMHookPoint *HP_clif_pProgressbar_post;
	struct HPMHookPoint *HP_clif_pWalkToXY_pre;
	struct HPMHookPoint *HP_clif_pWalkToXY_post;
	struct HPMHookPoint *HP_clif_pQuitGame_pre;
	struct HPMHookPoint *HP_clif_pQuitGame_post;
	struct HPMHookPoint *HP_clif_pGetCharNameRequest_pre;
	struct HPMHookPoint *HP_clif_pGetCharNameRequest_post;
	struct HPMHookPoint *HP_clif_pGlobalMessage_pre;
	struct HPMHookPoint *HP_clif_pGlobalMessage_post;
	struct HPMHookPoint *HP_clif_pMapMove_pre;
	struct HPMHookPoint *HP_clif_pMapMove_post;
	struct HPMHookPoint *HP_clif_pChangeDir_pre;
	struct HPMHookPoint *HP_clif_pChangeDir_post;
	struct HPMHookPoint *HP_clif_pEmotion_pre;
	struct HPMHookPoint *HP_clif_pEmotion_post;
	struct HPMHookPoint *HP_clif_pHowManyConnections_pre;
	struct HPMHookPoint *HP_clif_pHowManyConnections_post;
	struct HPMHookPoint *HP_clif_pActionRequest_pre;
	struct HPMHookPoint *HP_clif_pActionRequest_post;
	struct HPMHookPoint *HP_clif_pActionRequest_sub_pre;
	struct HPMHookPoint *HP_clif_pActionRequest_sub_post;
	struct HPMHookPoint *HP_clif_pRestart_pre;
	struct HPMHookPoint *HP_clif_pRestart_post;
	struct HPMHookPoint *HP_clif_pWisMessage_pre;
	struct HPMHookPoint *HP_clif_pWisMessage_post;
	struct HPMHookPoint *HP_clif_pBroadcast_pre;
	struct HPMHookPoint *HP_clif_pBroadcast_post;
	struct HPMHookPoint *HP_clif_pTakeItem_pre;
	struct HPMHookPoint *HP_clif_pTakeItem_post;
	struct HPMHookPoint *HP_clif_pDropItem_pre;
	struct HPMHookPoint *HP_clif_pDropItem_post;
	struct HPMHookPoint *HP_clif_pUseItem_pre;
	struct HPMHookPoint *HP_clif_pUseItem_post;
	struct HPMHookPoint *HP_clif_pEquipItem_pre;
	struct HPMHookPoint *HP_clif_pEquipItem_post;
	struct HPMHookPoint *HP_clif_pUnequipItem_pre;
	struct HPMHookPoint *HP_clif_pUnequipItem_post;
	struct HPMHookPoint *HP_clif_pNpcClicked_pre;
	struct HPMHookPoint *HP_clif_pNpcClicked_post;
	struct HPMHookPoint *HP_clif_pNpcBuySellSelected_pre;
	struct HPMHookPoint *HP_clif_pNpcBuySellSelected_post;
	struct HPMHookPoint *HP_clif_pNpcBuyListSend_pre;
	struct HPMHookPoint *HP_clif_pNpcBuyListSend_post;
	struct HPMHookPoint *HP_clif_pNpcSellListSend_pre;
	struct HPMHookPoint *HP_clif_pNpcSellListSend_post;
	struct HPMHookPoint *HP_clif_pCreateChatRoom_pre;
	struct HPMHookPoint *HP_clif_pCreateChatRoom_post;
	struct HPMHookPoint *HP_clif_pChatAddMember_pre;
	struct HPMHookPoint *HP_clif_pChatAddMember_post;
	struct HPMHookPoint *HP_clif_pChatRoomStatusChange_pre;
	struct HPMHookPoint *HP_clif_pChatRoomStatusChange_post;
	struct HPMHookPoint *HP_clif_pChangeChatOwner_pre;
	struct HPMHookPoint *HP_clif_pChangeChatOwner_post;
	struct HPMHookPoint *HP_clif_pKickFromChat_pre;
	struct HPMHookPoint *HP_clif_pKickFromChat_post;
	struct HPMHookPoint *HP_clif_pChatLeave_pre;
	struct HPMHookPoint *HP_clif_pChatLeave_post;
	struct HPMHookPoint *HP_clif_pTradeRequest_pre;
	struct HPMHookPoint *HP_clif_pTradeRequest_post;
	struct HPMHookPoint *HP_clif_chann_config_read_pre;
	struct HPMHookPoint *HP_clif_chann_config_read_post;
	struct HPMHookPoint *HP_clif_pTradeAck_pre;
	struct HPMHookPoint *HP_clif_pTradeAck_post;
	struct HPMHookPoint *HP_clif_pTradeAddItem_pre;
	struct HPMHookPoint *HP_clif_pTradeAddItem_post;
	struct HPMHookPoint *HP_clif_pTradeOk_pre;
	struct HPMHookPoint *HP_clif_pTradeOk_post;
	struct HPMHookPoint *HP_clif_pTradeCancel_pre;
	struct HPMHookPoint *HP_clif_pTradeCancel_post;
	struct HPMHookPoint *HP_clif_pTradeCommit_pre;
	struct HPMHookPoint *HP_clif_pTradeCommit_post;
	struct HPMHookPoint *HP_clif_pStopAttack_pre;
	struct HPMHookPoint *HP_clif_pStopAttack_post;
	struct HPMHookPoint *HP_clif_pPutItemToCart_pre;
	struct HPMHookPoint *HP_clif_pPutItemToCart_post;
	struct HPMHookPoint *HP_clif_pGetItemFromCart_pre;
	struct HPMHookPoint *HP_clif_pGetItemFromCart_post;
	struct HPMHookPoint *HP_clif_pRemoveOption_pre;
	struct HPMHookPoint *HP_clif_pRemoveOption_post;
	struct HPMHookPoint *HP_clif_pChangeCart_pre;
	struct HPMHookPoint *HP_clif_pChangeCart_post;
	struct HPMHookPoint *HP_clif_pStatusUp_pre;
	struct HPMHookPoint *HP_clif_pStatusUp_post;
	struct HPMHookPoint *HP_clif_pSkillUp_pre;
	struct HPMHookPoint *HP_clif_pSkillUp_post;
	struct HPMHookPoint *HP_clif_pUseSkillToId_pre;
	struct HPMHookPoint *HP_clif_pUseSkillToId_post;
	struct HPMHookPoint *HP_clif_pUseSkillToId_homun_pre;
	struct HPMHookPoint *HP_clif_pUseSkillToId_homun_post;
	struct HPMHookPoint *HP_clif_pUseSkillToId_mercenary_pre;
	struct HPMHookPoint *HP_clif_pUseSkillToId_mercenary_post;
	struct HPMHookPoint *HP_clif_pUseSkillToPos_pre;
	struct HPMHookPoint *HP_clif_pUseSkillToPos_post;
	struct HPMHookPoint *HP_clif_pUseSkillToPosSub_pre;
	struct HPMHookPoint *HP_clif_pUseSkillToPosSub_post;
	struct HPMHookPoint *HP_clif_pUseSkillToPos_homun_pre;
	struct HPMHookPoint *HP_clif_pUseSkillToPos_homun_post;
	struct HPMHookPoint *HP_clif_pUseSkillToPos_mercenary_pre;
	struct HPMHookPoint *HP_clif_pUseSkillToPos_mercenary_post;
	struct HPMHookPoint *HP_clif_pUseSkillToPosMoreInfo_pre;
	struct HPMHookPoint *HP_clif_pUseSkillToPosMoreInfo_post;
	struct HPMHookPoint *HP_clif_pUseSkillMap_pre;
	struct HPMHookPoint *HP_clif_pUseSkillMap_post;
	struct HPMHookPoint *HP_clif_pRequestMemo_pre;
	struct HPMHookPoint *HP_clif_pRequestMemo_post;
	struct HPMHookPoint *HP_clif_pProduceMix_pre;
	struct HPMHookPoint *HP_clif_pProduceMix_post;
	struct HPMHookPoint *HP_clif_pCooking_pre;
	struct HPMHookPoint *HP_clif_pCooking_post;
	struct HPMHookPoint *HP_clif_pRepairItem_pre;
	struct HPMHookPoint *HP_clif_pRepairItem_post;
	struct HPMHookPoint *HP_clif_pWeaponRefine_pre;
	struct HPMHookPoint *HP_clif_pWeaponRefine_post;
	struct HPMHookPoint *HP_clif_pNpcSelectMenu_pre;
	struct HPMHookPoint *HP_clif_pNpcSelectMenu_post;
	struct HPMHookPoint *HP_clif_pNpcNextClicked_pre;
	struct HPMHookPoint *HP_clif_pNpcNextClicked_post;
	struct HPMHookPoint *HP_clif_pNpcAmountInput_pre;
	struct HPMHookPoint *HP_clif_pNpcAmountInput_post;
	struct HPMHookPoint *HP_clif_pNpcStringInput_pre;
	struct HPMHookPoint *HP_clif_pNpcStringInput_post;
	struct HPMHookPoint *HP_clif_pNpcCloseClicked_pre;
	struct HPMHookPoint *HP_clif_pNpcCloseClicked_post;
	struct HPMHookPoint *HP_clif_pItemIdentify_pre;
	struct HPMHookPoint *HP_clif_pItemIdentify_post;
	struct HPMHookPoint *HP_clif_pSelectArrow_pre;
	struct HPMHookPoint *HP_clif_pSelectArrow_post;
	struct HPMHookPoint *HP_clif_pAutoSpell_pre;
	struct HPMHookPoint *HP_clif_pAutoSpell_post;
	struct HPMHookPoint *HP_clif_pUseCard_pre;
	struct HPMHookPoint *HP_clif_pUseCard_post;
	struct HPMHookPoint *HP_clif_pInsertCard_pre;
	struct HPMHookPoint *HP_clif_pInsertCard_post;
	struct HPMHookPoint *HP_clif_pSolveCharName_pre;
	struct HPMHookPoint *HP_clif_pSolveCharName_post;
	struct HPMHookPoint *HP_clif_pResetChar_pre;
	struct HPMHookPoint *HP_clif_pResetChar_post;
	struct HPMHookPoint *HP_clif_pLocalBroadcast_pre;
	struct HPMHookPoint *HP_clif_pLocalBroadcast_post;
	struct HPMHookPoint *HP_clif_pMoveToKafra_pre;
	struct HPMHookPoint *HP_clif_pMoveToKafra_post;
	struct HPMHookPoint *HP_clif_pMoveFromKafra_pre;
	struct HPMHookPoint *HP_clif_pMoveFromKafra_post;
	struct HPMHookPoint *HP_clif_pMoveToKafraFromCart_pre;
	struct HPMHookPoint *HP_clif_pMoveToKafraFromCart_post;
	struct HPMHookPoint *HP_clif_pMoveFromKafraToCart_pre;
	struct HPMHookPoint *HP_clif_pMoveFromKafraToCart_post;
	struct HPMHookPoint *HP_clif_pCloseKafra_pre;
	struct HPMHookPoint *HP_clif_pCloseKafra_post;
	struct HPMHookPoint *HP_clif_pStoragePassword_pre;
	struct HPMHookPoint *HP_clif_pStoragePassword_post;
	struct HPMHookPoint *HP_clif_pCreateParty_pre;
	struct HPMHookPoint *HP_clif_pCreateParty_post;
	struct HPMHookPoint *HP_clif_pCreateParty2_pre;
	struct HPMHookPoint *HP_clif_pCreateParty2_post;
	struct HPMHookPoint *HP_clif_pPartyInvite_pre;
	struct HPMHookPoint *HP_clif_pPartyInvite_post;
	struct HPMHookPoint *HP_clif_pPartyInvite2_pre;
	struct HPMHookPoint *HP_clif_pPartyInvite2_post;
	struct HPMHookPoint *HP_clif_pReplyPartyInvite_pre;
	struct HPMHookPoint *HP_clif_pReplyPartyInvite_post;
	struct HPMHookPoint *HP_clif_pReplyPartyInvite2_pre;
	struct HPMHookPoint *HP_clif_pReplyPartyInvite2_post;
	struct HPMHookPoint *HP_clif_pLeaveParty_pre;
	struct HPMHookPoint *HP_clif_pLeaveParty_post;
	struct HPMHookPoint *HP_clif_pRemovePartyMember_pre;
	struct HPMHookPoint *HP_clif_pRemovePartyMember_post;
	struct HPMHookPoint *HP_clif_pPartyChangeOption_pre;
	struct HPMHookPoint *HP_clif_pPartyChangeOption_post;
	struct HPMHookPoint *HP_clif_pPartyMessage_pre;
	struct HPMHookPoint *HP_clif_pPartyMessage_post;
	struct HPMHookPoint *HP_clif_pPartyChangeLeader_pre;
	struct HPMHookPoint *HP_clif_pPartyChangeLeader_post;
	struct HPMHookPoint *HP_clif_pPartyBookingRegisterReq_pre;
	struct HPMHookPoint *HP_clif_pPartyBookingRegisterReq_post;
	struct HPMHookPoint *HP_clif_pPartyBookingSearchReq_pre;
	struct HPMHookPoint *HP_clif_pPartyBookingSearchReq_post;
	struct HPMHookPoint *HP_clif_pPartyBookingDeleteReq_pre;
	struct HPMHookPoint *HP_clif_pPartyBookingDeleteReq_post;
	struct HPMHookPoint *HP_clif_pPartyBookingUpdateReq_pre;
	struct HPMHookPoint *HP_clif_pPartyBookingUpdateReq_post;
	struct HPMHookPoint *HP_clif_pPartyRecruitRegisterReq_pre;
	struct HPMHookPoint *HP_clif_pPartyRecruitRegisterReq_post;
	struct HPMHookPoint *HP_clif_pPartyRecruitSearchReq_pre;
	struct HPMHookPoint *HP_clif_pPartyRecruitSearchReq_post;
	struct HPMHookPoint *HP_clif_pPartyRecruitDeleteReq_pre;
	struct HPMHookPoint *HP_clif_pPartyRecruitDeleteReq_post;
	struct HPMHookPoint *HP_clif_pPartyRecruitUpdateReq_pre;
	struct HPMHookPoint *HP_clif_pPartyRecruitUpdateReq_post;
	struct HPMHookPoint *HP_clif_pCloseVending_pre;
	struct HPMHookPoint *HP_clif_pCloseVending_post;
	struct HPMHookPoint *HP_clif_pVendingListReq_pre;
	struct HPMHookPoint *HP_clif_pVendingListReq_post;
	struct HPMHookPoint *HP_clif_pPurchaseReq_pre;
	struct HPMHookPoint *HP_clif_pPurchaseReq_post;
	struct HPMHookPoint *HP_clif_pPurchaseReq2_pre;
	struct HPMHookPoint *HP_clif_pPurchaseReq2_post;
	struct HPMHookPoint *HP_clif_pOpenVending_pre;
	struct HPMHookPoint *HP_clif_pOpenVending_post;
	struct HPMHookPoint *HP_clif_pCreateGuild_pre;
	struct HPMHookPoint *HP_clif_pCreateGuild_post;
	struct HPMHookPoint *HP_clif_pGuildCheckMaster_pre;
	struct HPMHookPoint *HP_clif_pGuildCheckMaster_post;
	struct HPMHookPoint *HP_clif_pGuildRequestInfo_pre;
	struct HPMHookPoint *HP_clif_pGuildRequestInfo_post;
	struct HPMHookPoint *HP_clif_pGuildChangePositionInfo_pre;
	struct HPMHookPoint *HP_clif_pGuildChangePositionInfo_post;
	struct HPMHookPoint *HP_clif_pGuildChangeMemberPosition_pre;
	struct HPMHookPoint *HP_clif_pGuildChangeMemberPosition_post;
	struct HPMHookPoint *HP_clif_pGuildRequestEmblem_pre;
	struct HPMHookPoint *HP_clif_pGuildRequestEmblem_post;
	struct HPMHookPoint *HP_clif_pGuildChangeEmblem_pre;
	struct HPMHookPoint *HP_clif_pGuildChangeEmblem_post;
	struct HPMHookPoint *HP_clif_pGuildChangeNotice_pre;
	struct HPMHookPoint *HP_clif_pGuildChangeNotice_post;
	struct HPMHookPoint *HP_clif_pGuildInvite_pre;
	struct HPMHookPoint *HP_clif_pGuildInvite_post;
	struct HPMHookPoint *HP_clif_pGuildReplyInvite_pre;
	struct HPMHookPoint *HP_clif_pGuildReplyInvite_post;
	struct HPMHookPoint *HP_clif_pGuildLeave_pre;
	struct HPMHookPoint *HP_clif_pGuildLeave_post;
	struct HPMHookPoint *HP_clif_pGuildExpulsion_pre;
	struct HPMHookPoint *HP_clif_pGuildExpulsion_post;
	struct HPMHookPoint *HP_clif_pGuildMessage_pre;
	struct HPMHookPoint *HP_clif_pGuildMessage_post;
	struct HPMHookPoint *HP_clif_pGuildRequestAlliance_pre;
	struct HPMHookPoint *HP_clif_pGuildRequestAlliance_post;
	struct HPMHookPoint *HP_clif_pGuildReplyAlliance_pre;
	struct HPMHookPoint *HP_clif_pGuildReplyAlliance_post;
	struct HPMHookPoint *HP_clif_pGuildDelAlliance_pre;
	struct HPMHookPoint *HP_clif_pGuildDelAlliance_post;
	struct HPMHookPoint *HP_clif_pGuildOpposition_pre;
	struct HPMHookPoint *HP_clif_pGuildOpposition_post;
	struct HPMHookPoint *HP_clif_pGuildBreak_pre;
	struct HPMHookPoint *HP_clif_pGuildBreak_post;
	struct HPMHookPoint *HP_clif_pPetMenu_pre;
	struct HPMHookPoint *HP_clif_pPetMenu_post;
	struct HPMHookPoint *HP_clif_pCatchPet_pre;
	struct HPMHookPoint *HP_clif_pCatchPet_post;
	struct HPMHookPoint *HP_clif_pSelectEgg_pre;
	struct HPMHookPoint *HP_clif_pSelectEgg_post;
	struct HPMHookPoint *HP_clif_pSendEmotion_pre;
	struct HPMHookPoint *HP_clif_pSendEmotion_post;
	struct HPMHookPoint *HP_clif_pChangePetName_pre;
	struct HPMHookPoint *HP_clif_pChangePetName_post;
	struct HPMHookPoint *HP_clif_pGMKick_pre;
	struct HPMHookPoint *HP_clif_pGMKick_post;
	struct HPMHookPoint *HP_clif_pGMKickAll_pre;
	struct HPMHookPoint *HP_clif_pGMKickAll_post;
	struct HPMHookPoint *HP_clif_pGMShift_pre;
	struct HPMHookPoint *HP_clif_pGMShift_post;
	struct HPMHookPoint *HP_clif_pGMRemove2_pre;
	struct HPMHookPoint *HP_clif_pGMRemove2_post;
	struct HPMHookPoint *HP_clif_pGMRecall_pre;
	struct HPMHookPoint *HP_clif_pGMRecall_post;
	struct HPMHookPoint *HP_clif_pGMRecall2_pre;
	struct HPMHookPoint *HP_clif_pGMRecall2_post;
	struct HPMHookPoint *HP_clif_pGM_Monster_Item_pre;
	struct HPMHookPoint *HP_clif_pGM_Monster_Item_post;
	struct HPMHookPoint *HP_clif_pGMHide_pre;
	struct HPMHookPoint *HP_clif_pGMHide_post;
	struct HPMHookPoint *HP_clif_pGMReqNoChat_pre;
	struct HPMHookPoint *HP_clif_pGMReqNoChat_post;
	struct HPMHookPoint *HP_clif_pGMRc_pre;
	struct HPMHookPoint *HP_clif_pGMRc_post;
	struct HPMHookPoint *HP_clif_pGMReqAccountName_pre;
	struct HPMHookPoint *HP_clif_pGMReqAccountName_post;
	struct HPMHookPoint *HP_clif_pGMChangeMapType_pre;
	struct HPMHookPoint *HP_clif_pGMChangeMapType_post;
	struct HPMHookPoint *HP_clif_pGMFullStrip_pre;
	struct HPMHookPoint *HP_clif_pGMFullStrip_post;
	struct HPMHookPoint *HP_clif_pPMIgnore_pre;
	struct HPMHookPoint *HP_clif_pPMIgnore_post;
	struct HPMHookPoint *HP_clif_pPMIgnoreAll_pre;
	struct HPMHookPoint *HP_clif_pPMIgnoreAll_post;
	struct HPMHookPoint *HP_clif_pPMIgnoreList_pre;
	struct HPMHookPoint *HP_clif_pPMIgnoreList_post;
	struct HPMHookPoint *HP_clif_pNoviceDoriDori_pre;
	struct HPMHookPoint *HP_clif_pNoviceDoriDori_post;
	struct HPMHookPoint *HP_clif_pNoviceExplosionSpirits_pre;
	struct HPMHookPoint *HP_clif_pNoviceExplosionSpirits_post;
	struct HPMHookPoint *HP_clif_pFriendsListAdd_pre;
	struct HPMHookPoint *HP_clif_pFriendsListAdd_post;
	struct HPMHookPoint *HP_clif_pFriendsListReply_pre;
	struct HPMHookPoint *HP_clif_pFriendsListReply_post;
	struct HPMHookPoint *HP_clif_pFriendsListRemove_pre;
	struct HPMHookPoint *HP_clif_pFriendsListRemove_post;
	struct HPMHookPoint *HP_clif_pPVPInfo_pre;
	struct HPMHookPoint *HP_clif_pPVPInfo_post;
	struct HPMHookPoint *HP_clif_pBlacksmith_pre;
	struct HPMHookPoint *HP_clif_pBlacksmith_post;
	struct HPMHookPoint *HP_clif_pAlchemist_pre;
	struct HPMHookPoint *HP_clif_pAlchemist_post;
	struct HPMHookPoint *HP_clif_pTaekwon_pre;
	struct HPMHookPoint *HP_clif_pTaekwon_post;
	struct HPMHookPoint *HP_clif_pRankingPk_pre;
	struct HPMHookPoint *HP_clif_pRankingPk_post;
	struct HPMHookPoint *HP_clif_pFeelSaveOk_pre;
	struct HPMHookPoint *HP_clif_pFeelSaveOk_post;
	struct HPMHookPoint *HP_clif_pChangeHomunculusName_pre;
	struct HPMHookPoint *HP_clif_pChangeHomunculusName_post;
	struct HPMHookPoint *HP_clif_pHomMoveToMaster_pre;
	struct HPMHookPoint *HP_clif_pHomMoveToMaster_post;
	struct HPMHookPoint *HP_clif_pHomMoveTo_pre;
	struct HPMHookPoint *HP_clif_pHomMoveTo_post;
	struct HPMHookPoint *HP_clif_pHomAttack_pre;
	struct HPMHookPoint *HP_clif_pHomAttack_post;
	struct HPMHookPoint *HP_clif_pHomMenu_pre;
	struct HPMHookPoint *HP_clif_pHomMenu_post;
	struct HPMHookPoint *HP_clif_pAutoRevive_pre;
	struct HPMHookPoint *HP_clif_pAutoRevive_post;
	struct HPMHookPoint *HP_clif_pCheck_pre;
	struct HPMHookPoint *HP_clif_pCheck_post;
	struct HPMHookPoint *HP_clif_pMail_refreshinbox_pre;
	struct HPMHookPoint *HP_clif_pMail_refreshinbox_post;
	struct HPMHookPoint *HP_clif_pMail_read_pre;
	struct HPMHookPoint *HP_clif_pMail_read_post;
	struct HPMHookPoint *HP_clif_pMail_getattach_pre;
	struct HPMHookPoint *HP_clif_pMail_getattach_post;
	struct HPMHookPoint *HP_clif_pMail_delete_pre;
	struct HPMHookPoint *HP_clif_pMail_delete_post;
	struct HPMHookPoint *HP_clif_pMail_return_pre;
	struct HPMHookPoint *HP_clif_pMail_return_post;
	struct HPMHookPoint *HP_clif_pMail_setattach_pre;
	struct HPMHookPoint *HP_clif_pMail_setattach_post;
	struct HPMHookPoint *HP_clif_pMail_winopen_pre;
	struct HPMHookPoint *HP_clif_pMail_winopen_post;
	struct HPMHookPoint *HP_clif_pMail_send_pre;
	struct HPMHookPoint *HP_clif_pMail_send_post;
	struct HPMHookPoint *HP_clif_pAuction_cancelreg_pre;
	struct HPMHookPoint *HP_clif_pAuction_cancelreg_post;
	struct HPMHookPoint *HP_clif_pAuction_setitem_pre;
	struct HPMHookPoint *HP_clif_pAuction_setitem_post;
	struct HPMHookPoint *HP_clif_pAuction_register_pre;
	struct HPMHookPoint *HP_clif_pAuction_register_post;
	struct HPMHookPoint *HP_clif_pAuction_cancel_pre;
	struct HPMHookPoint *HP_clif_pAuction_cancel_post;
	struct HPMHookPoint *HP_clif_pAuction_close_pre;
	struct HPMHookPoint *HP_clif_pAuction_close_post;
	struct HPMHookPoint *HP_clif_pAuction_bid_pre;
	struct HPMHookPoint *HP_clif_pAuction_bid_post;
	struct HPMHookPoint *HP_clif_pAuction_search_pre;
	struct HPMHookPoint *HP_clif_pAuction_search_post;
	struct HPMHookPoint *HP_clif_pAuction_buysell_pre;
	struct HPMHookPoint *HP_clif_pAuction_buysell_post;
	struct HPMHookPoint *HP_clif_pcashshop_buy_pre;
	struct HPMHookPoint *HP_clif_pcashshop_buy_post;
	struct HPMHookPoint *HP_clif_pAdopt_request_pre;
	struct HPMHookPoint *HP_clif_pAdopt_request_post;
	struct HPMHookPoint *HP_clif_pAdopt_reply_pre;
	struct HPMHookPoint *HP_clif_pAdopt_reply_post;
	struct HPMHookPoint *HP_clif_pViewPlayerEquip_pre;
	struct HPMHookPoint *HP_clif_pViewPlayerEquip_post;
	struct HPMHookPoint *HP_clif_pEquipTick_pre;
	struct HPMHookPoint *HP_clif_pEquipTick_post;
	struct HPMHookPoint *HP_clif_pquestStateAck_pre;
	struct HPMHookPoint *HP_clif_pquestStateAck_post;
	struct HPMHookPoint *HP_clif_pmercenary_action_pre;
	struct HPMHookPoint *HP_clif_pmercenary_action_post;
	struct HPMHookPoint *HP_clif_pBattleChat_pre;
	struct HPMHookPoint *HP_clif_pBattleChat_post;
	struct HPMHookPoint *HP_clif_pLessEffect_pre;
	struct HPMHookPoint *HP_clif_pLessEffect_post;
	struct HPMHookPoint *HP_clif_pItemListWindowSelected_pre;
	struct HPMHookPoint *HP_clif_pItemListWindowSelected_post;
	struct HPMHookPoint *HP_clif_pReqOpenBuyingStore_pre;
	struct HPMHookPoint *HP_clif_pReqOpenBuyingStore_post;
	struct HPMHookPoint *HP_clif_pReqCloseBuyingStore_pre;
	struct HPMHookPoint *HP_clif_pReqCloseBuyingStore_post;
	struct HPMHookPoint *HP_clif_pReqClickBuyingStore_pre;
	struct HPMHookPoint *HP_clif_pReqClickBuyingStore_post;
	struct HPMHookPoint *HP_clif_pReqTradeBuyingStore_pre;
	struct HPMHookPoint *HP_clif_pReqTradeBuyingStore_post;
	struct HPMHookPoint *HP_clif_pSearchStoreInfo_pre;
	struct HPMHookPoint *HP_clif_pSearchStoreInfo_post;
	struct HPMHookPoint *HP_clif_pSearchStoreInfoNextPage_pre;
	struct HPMHookPoint *HP_clif_pSearchStoreInfoNextPage_post;
	struct HPMHookPoint *HP_clif_pCloseSearchStoreInfo_pre;
	struct HPMHookPoint *HP_clif_pCloseSearchStoreInfo_post;
	struct HPMHookPoint *HP_clif_pSearchStoreInfoListItemClick_pre;
	struct HPMHookPoint *HP_clif_pSearchStoreInfoListItemClick_post;
	struct HPMHookPoint *HP_clif_pDebug_pre;
	struct HPMHookPoint *HP_clif_pDebug_post;
	struct HPMHookPoint *HP_clif_pSkillSelectMenu_pre;
	struct HPMHookPoint *HP_clif_pSkillSelectMenu_post;
	struct HPMHookPoint *HP_clif_pMoveItem_pre;
	struct HPMHookPoint *HP_clif_pMoveItem_post;
	struct HPMHookPoint *HP_clif_pDull_pre;
	struct HPMHookPoint *HP_clif_pDull_post;
	struct HPMHookPoint *HP_clif_pBGQueueRegister_pre;
	struct HPMHookPoint *HP_clif_pBGQueueRegister_post;
	struct HPMHookPoint *HP_clif_pBGQueueCheckState_pre;
	struct HPMHookPoint *HP_clif_pBGQueueCheckState_post;
	struct HPMHookPoint *HP_clif_pBGQueueRevokeReq_pre;
	struct HPMHookPoint *HP_clif_pBGQueueRevokeReq_post;
	struct HPMHookPoint *HP_clif_pBGQueueBattleBeginAck_pre;
	struct HPMHookPoint *HP_clif_pBGQueueBattleBeginAck_post;
	struct HPMHookPoint *HP_clif_pCashShopOpen_pre;
	struct HPMHookPoint *HP_clif_pCashShopOpen_post;
	struct HPMHookPoint *HP_clif_pCashShopClose_pre;
	struct HPMHookPoint *HP_clif_pCashShopClose_post;
	struct HPMHookPoint *HP_clif_pCashShopReqTab_pre;
	struct HPMHookPoint *HP_clif_pCashShopReqTab_post;
	struct HPMHookPoint *HP_clif_pCashShopSchedule_pre;
	struct HPMHookPoint *HP_clif_pCashShopSchedule_post;
	struct HPMHookPoint *HP_clif_pCashShopBuy_pre;
	struct HPMHookPoint *HP_clif_pCashShopBuy_post;
	struct HPMHookPoint *HP_clif_pPartyTick_pre;
	struct HPMHookPoint *HP_clif_pPartyTick_post;
	struct HPMHookPoint *HP_clif_pGuildInvite2_pre;
	struct HPMHookPoint *HP_clif_pGuildInvite2_post;
	struct HPMHookPoint *HP_clif_pPartyBookingAddFilter_pre;
	struct HPMHookPoint *HP_clif_pPartyBookingAddFilter_post;
	struct HPMHookPoint *HP_clif_pPartyBookingSubFilter_pre;
	struct HPMHookPoint *HP_clif_pPartyBookingSubFilter_post;
	struct HPMHookPoint *HP_clif_pPartyBookingReqVolunteer_pre;
	struct HPMHookPoint *HP_clif_pPartyBookingReqVolunteer_post;
	struct HPMHookPoint *HP_clif_pPartyBookingRefuseVolunteer_pre;
	struct HPMHookPoint *HP_clif_pPartyBookingRefuseVolunteer_post;
	struct HPMHookPoint *HP_clif_pPartyBookingCancelVolunteer_pre;
	struct HPMHookPoint *HP_clif_pPartyBookingCancelVolunteer_post;
	struct HPMHookPoint *HP_clif_pBankDeposit_pre;
	struct HPMHookPoint *HP_clif_pBankDeposit_post;
	struct HPMHookPoint *HP_clif_pBankWithdraw_pre;
	struct HPMHookPoint *HP_clif_pBankWithdraw_post;
	struct HPMHookPoint *HP_clif_pBankCheck_pre;
	struct HPMHookPoint *HP_clif_pBankCheck_post;
	struct HPMHookPoint *HP_clif_pBankOpen_pre;
	struct HPMHookPoint *HP_clif_pBankOpen_post;
	struct HPMHookPoint *HP_clif_pBankClose_pre;
	struct HPMHookPoint *HP_clif_pBankClose_post;
	struct HPMHookPoint *HP_clif_pNPCShopClosed_pre;
	struct HPMHookPoint *HP_clif_pNPCShopClosed_post;
	struct HPMHookPoint *HP_clif_pNPCMarketClosed_pre;
	struct HPMHookPoint *HP_clif_pNPCMarketClosed_post;
	struct HPMHookPoint *HP_clif_pNPCMarketPurchase_pre;
	struct HPMHookPoint *HP_clif_pNPCMarketPurchase_post;
	struct HPMHookPoint *HP_duel_create_pre;
	struct HPMHookPoint *HP_duel_create_post;
	struct HPMHookPoint *HP_duel_invite_pre;
	struct HPMHookPoint *HP_duel_invite_post;
	struct HPMHookPoint *HP_duel_accept_pre;
	struct HPMHookPoint *HP_duel_accept_post;
	struct HPMHookPoint *HP_duel_reject_pre;
	struct HPMHookPoint *HP_duel_reject_post;
	struct HPMHookPoint *HP_duel_leave_pre;
	struct HPMHookPoint *HP_duel_leave_post;
	struct HPMHookPoint *HP_duel_showinfo_pre;
	struct HPMHookPoint *HP_duel_showinfo_post;
	struct HPMHookPoint *HP_duel_checktime_pre;
	struct HPMHookPoint *HP_duel_checktime_post;
	struct HPMHookPoint *HP_duel_init_pre;
	struct HPMHookPoint *HP_duel_init_post;
	struct HPMHookPoint *HP_duel_final_pre;
	struct HPMHookPoint *HP_duel_final_post;
	struct HPMHookPoint *HP_elemental_init_pre;
	struct HPMHookPoint *HP_elemental_init_post;
	struct HPMHookPoint *HP_elemental_final_pre;
	struct HPMHookPoint *HP_elemental_final_post;
	struct HPMHookPoint *HP_elemental_class_pre;
	struct HPMHookPoint *HP_elemental_class_post;
	struct HPMHookPoint *HP_elemental_get_viewdata_pre;
	struct HPMHookPoint *HP_elemental_get_viewdata_post;
	struct HPMHookPoint *HP_elemental_create_pre;
	struct HPMHookPoint *HP_elemental_create_post;
	struct HPMHookPoint *HP_elemental_data_received_pre;
	struct HPMHookPoint *HP_elemental_data_received_post;
	struct HPMHookPoint *HP_elemental_save_pre;
	struct HPMHookPoint *HP_elemental_save_post;
	struct HPMHookPoint *HP_elemental_change_mode_ack_pre;
	struct HPMHookPoint *HP_elemental_change_mode_ack_post;
	struct HPMHookPoint *HP_elemental_change_mode_pre;
	struct HPMHookPoint *HP_elemental_change_mode_post;
	struct HPMHookPoint *HP_elemental_heal_pre;
	struct HPMHookPoint *HP_elemental_heal_post;
	struct HPMHookPoint *HP_elemental_dead_pre;
	struct HPMHookPoint *HP_elemental_dead_post;
	struct HPMHookPoint *HP_elemental_delete_pre;
	struct HPMHookPoint *HP_elemental_delete_post;
	struct HPMHookPoint *HP_elemental_summon_stop_pre;
	struct HPMHookPoint *HP_elemental_summon_stop_post;
	struct HPMHookPoint *HP_elemental_get_lifetime_pre;
	struct HPMHookPoint *HP_elemental_get_lifetime_post;
	struct HPMHookPoint *HP_elemental_unlocktarget_pre;
	struct HPMHookPoint *HP_elemental_unlocktarget_post;
	struct HPMHookPoint *HP_elemental_skillnotok_pre;
	struct HPMHookPoint *HP_elemental_skillnotok_post;
	struct HPMHookPoint *HP_elemental_set_target_pre;
	struct HPMHookPoint *HP_elemental_set_target_post;
	struct HPMHookPoint *HP_elemental_clean_single_effect_pre;
	struct HPMHookPoint *HP_elemental_clean_single_effect_post;
	struct HPMHookPoint *HP_elemental_clean_effect_pre;
	struct HPMHookPoint *HP_elemental_clean_effect_post;
	struct HPMHookPoint *HP_elemental_action_pre;
	struct HPMHookPoint *HP_elemental_action_post;
	struct HPMHookPoint *HP_elemental_skill_get_requirements_pre;
	struct HPMHookPoint *HP_elemental_skill_get_requirements_post;
	struct HPMHookPoint *HP_elemental_read_skilldb_pre;
	struct HPMHookPoint *HP_elemental_read_skilldb_post;
	struct HPMHookPoint *HP_elemental_reload_db_pre;
	struct HPMHookPoint *HP_elemental_reload_db_post;
	struct HPMHookPoint *HP_elemental_reload_skilldb_pre;
	struct HPMHookPoint *HP_elemental_reload_skilldb_post;
	struct HPMHookPoint *HP_elemental_search_index_pre;
	struct HPMHookPoint *HP_elemental_search_index_post;
	struct HPMHookPoint *HP_elemental_summon_init_pre;
	struct HPMHookPoint *HP_elemental_summon_init_post;
	struct HPMHookPoint *HP_elemental_summon_end_timer_pre;
	struct HPMHookPoint *HP_elemental_summon_end_timer_post;
	struct HPMHookPoint *HP_elemental_ai_sub_timer_activesearch_pre;
	struct HPMHookPoint *HP_elemental_ai_sub_timer_activesearch_post;
	struct HPMHookPoint *HP_elemental_ai_sub_timer_pre;
	struct HPMHookPoint *HP_elemental_ai_sub_timer_post;
	struct HPMHookPoint *HP_elemental_ai_sub_foreachclient_pre;
	struct HPMHookPoint *HP_elemental_ai_sub_foreachclient_post;
	struct HPMHookPoint *HP_elemental_ai_timer_pre;
	struct HPMHookPoint *HP_elemental_ai_timer_post;
	struct HPMHookPoint *HP_elemental_read_db_pre;
	struct HPMHookPoint *HP_elemental_read_db_post;
	struct HPMHookPoint *HP_guild_init_pre;
	struct HPMHookPoint *HP_guild_init_post;
	struct HPMHookPoint *HP_guild_final_pre;
	struct HPMHookPoint *HP_guild_final_post;
	struct HPMHookPoint *HP_guild_skill_get_max_pre;
	struct HPMHookPoint *HP_guild_skill_get_max_post;
	struct HPMHookPoint *HP_guild_checkskill_pre;
	struct HPMHookPoint *HP_guild_checkskill_post;
	struct HPMHookPoint *HP_guild_check_skill_require_pre;
	struct HPMHookPoint *HP_guild_check_skill_require_post;
	struct HPMHookPoint *HP_guild_checkcastles_pre;
	struct HPMHookPoint *HP_guild_checkcastles_post;
	struct HPMHookPoint *HP_guild_isallied_pre;
	struct HPMHookPoint *HP_guild_isallied_post;
	struct HPMHookPoint *HP_guild_search_pre;
	struct HPMHookPoint *HP_guild_search_post;
	struct HPMHookPoint *HP_guild_searchname_pre;
	struct HPMHookPoint *HP_guild_searchname_post;
	struct HPMHookPoint *HP_guild_castle_search_pre;
	struct HPMHookPoint *HP_guild_castle_search_post;
	struct HPMHookPoint *HP_guild_mapname2gc_pre;
	struct HPMHookPoint *HP_guild_mapname2gc_post;
	struct HPMHookPoint *HP_guild_mapindex2gc_pre;
	struct HPMHookPoint *HP_guild_mapindex2gc_post;
	struct HPMHookPoint *HP_guild_getavailablesd_pre;
	struct HPMHookPoint *HP_guild_getavailablesd_post;
	struct HPMHookPoint *HP_guild_getindex_pre;
	struct HPMHookPoint *HP_guild_getindex_post;
	struct HPMHookPoint *HP_guild_getposition_pre;
	struct HPMHookPoint *HP_guild_getposition_post;
	struct HPMHookPoint *HP_guild_payexp_pre;
	struct HPMHookPoint *HP_guild_payexp_post;
	struct HPMHookPoint *HP_guild_getexp_pre;
	struct HPMHookPoint *HP_guild_getexp_post;
	struct HPMHookPoint *HP_guild_create_pre;
	struct HPMHookPoint *HP_guild_create_post;
	struct HPMHookPoint *HP_guild_created_pre;
	struct HPMHookPoint *HP_guild_created_post;
	struct HPMHookPoint *HP_guild_request_info_pre;
	struct HPMHookPoint *HP_guild_request_info_post;
	struct HPMHookPoint *HP_guild_recv_noinfo_pre;
	struct HPMHookPoint *HP_guild_recv_noinfo_post;
	struct HPMHookPoint *HP_guild_recv_info_pre;
	struct HPMHookPoint *HP_guild_recv_info_post;
	struct HPMHookPoint *HP_guild_npc_request_info_pre;
	struct HPMHookPoint *HP_guild_npc_request_info_post;
	struct HPMHookPoint *HP_guild_invite_pre;
	struct HPMHookPoint *HP_guild_invite_post;
	struct HPMHookPoint *HP_guild_reply_invite_pre;
	struct HPMHookPoint *HP_guild_reply_invite_post;
	struct HPMHookPoint *HP_guild_member_joined_pre;
	struct HPMHookPoint *HP_guild_member_joined_post;
	struct HPMHookPoint *HP_guild_member_added_pre;
	struct HPMHookPoint *HP_guild_member_added_post;
	struct HPMHookPoint *HP_guild_leave_pre;
	struct HPMHookPoint *HP_guild_leave_post;
	struct HPMHookPoint *HP_guild_member_withdraw_pre;
	struct HPMHookPoint *HP_guild_member_withdraw_post;
	struct HPMHookPoint *HP_guild_expulsion_pre;
	struct HPMHookPoint *HP_guild_expulsion_post;
	struct HPMHookPoint *HP_guild_skillup_pre;
	struct HPMHookPoint *HP_guild_skillup_post;
	struct HPMHookPoint *HP_guild_block_skill_pre;
	struct HPMHookPoint *HP_guild_block_skill_post;
	struct HPMHookPoint *HP_guild_reqalliance_pre;
	struct HPMHookPoint *HP_guild_reqalliance_post;
	struct HPMHookPoint *HP_guild_reply_reqalliance_pre;
	struct HPMHookPoint *HP_guild_reply_reqalliance_post;
	struct HPMHookPoint *HP_guild_allianceack_pre;
	struct HPMHookPoint *HP_guild_allianceack_post;
	struct HPMHookPoint *HP_guild_delalliance_pre;
	struct HPMHookPoint *HP_guild_delalliance_post;
	struct HPMHookPoint *HP_guild_opposition_pre;
	struct HPMHookPoint *HP_guild_opposition_post;
	struct HPMHookPoint *HP_guild_check_alliance_pre;
	struct HPMHookPoint *HP_guild_check_alliance_post;
	struct HPMHookPoint *HP_guild_send_memberinfoshort_pre;
	struct HPMHookPoint *HP_guild_send_memberinfoshort_post;
	struct HPMHookPoint *HP_guild_recv_memberinfoshort_pre;
	struct HPMHookPoint *HP_guild_recv_memberinfoshort_post;
	struct HPMHookPoint *HP_guild_change_memberposition_pre;
	struct HPMHookPoint *HP_guild_change_memberposition_post;
	struct HPMHookPoint *HP_guild_memberposition_changed_pre;
	struct HPMHookPoint *HP_guild_memberposition_changed_post;
	struct HPMHookPoint *HP_guild_change_position_pre;
	struct HPMHookPoint *HP_guild_change_position_post;
	struct HPMHookPoint *HP_guild_position_changed_pre;
	struct HPMHookPoint *HP_guild_position_changed_post;
	struct HPMHookPoint *HP_guild_change_notice_pre;
	struct HPMHookPoint *HP_guild_change_notice_post;
	struct HPMHookPoint *HP_guild_notice_changed_pre;
	struct HPMHookPoint *HP_guild_notice_changed_post;
	struct HPMHookPoint *HP_guild_change_emblem_pre;
	struct HPMHookPoint *HP_guild_change_emblem_post;
	struct HPMHookPoint *HP_guild_emblem_changed_pre;
	struct HPMHookPoint *HP_guild_emblem_changed_post;
	struct HPMHookPoint *HP_guild_send_message_pre;
	struct HPMHookPoint *HP_guild_send_message_post;
	struct HPMHookPoint *HP_guild_recv_message_pre;
	struct HPMHookPoint *HP_guild_recv_message_post;
	struct HPMHookPoint *HP_guild_send_dot_remove_pre;
	struct HPMHookPoint *HP_guild_send_dot_remove_post;
	struct HPMHookPoint *HP_guild_skillupack_pre;
	struct HPMHookPoint *HP_guild_skillupack_post;
	struct HPMHookPoint *HP_guild_dobreak_pre;
	struct HPMHookPoint *HP_guild_dobreak_post;
	struct HPMHookPoint *HP_guild_broken_pre;
	struct HPMHookPoint *HP_guild_broken_post;
	struct HPMHookPoint *HP_guild_gm_change_pre;
	struct HPMHookPoint *HP_guild_gm_change_post;
	struct HPMHookPoint *HP_guild_gm_changed_pre;
	struct HPMHookPoint *HP_guild_gm_changed_post;
	struct HPMHookPoint *HP_guild_castle_map_init_pre;
	struct HPMHookPoint *HP_guild_castle_map_init_post;
	struct HPMHookPoint *HP_guild_castledatasave_pre;
	struct HPMHookPoint *HP_guild_castledatasave_post;
	struct HPMHookPoint *HP_guild_castledataloadack_pre;
	struct HPMHookPoint *HP_guild_castledataloadack_post;
	struct HPMHookPoint *HP_guild_castle_reconnect_pre;
	struct HPMHookPoint *HP_guild_castle_reconnect_post;
	struct HPMHookPoint *HP_guild_agit_start_pre;
	struct HPMHookPoint *HP_guild_agit_start_post;
	struct HPMHookPoint *HP_guild_agit_end_pre;
	struct HPMHookPoint *HP_guild_agit_end_post;
	struct HPMHookPoint *HP_guild_agit2_start_pre;
	struct HPMHookPoint *HP_guild_agit2_start_post;
	struct HPMHookPoint *HP_guild_agit2_end_pre;
	struct HPMHookPoint *HP_guild_agit2_end_post;
	struct HPMHookPoint *HP_guild_flag_add_pre;
	struct HPMHookPoint *HP_guild_flag_add_post;
	struct HPMHookPoint *HP_guild_flag_remove_pre;
	struct HPMHookPoint *HP_guild_flag_remove_post;
	struct HPMHookPoint *HP_guild_flags_clear_pre;
	struct HPMHookPoint *HP_guild_flags_clear_post;
	struct HPMHookPoint *HP_guild_aura_refresh_pre;
	struct HPMHookPoint *HP_guild_aura_refresh_post;
	struct HPMHookPoint *HP_guild_retrieveitembound_pre;
	struct HPMHookPoint *HP_guild_retrieveitembound_post;
	struct HPMHookPoint *HP_guild_payexp_timer_pre;
	struct HPMHookPoint *HP_guild_payexp_timer_post;
	struct HPMHookPoint *HP_guild_sd_check_pre;
	struct HPMHookPoint *HP_guild_sd_check_post;
	struct HPMHookPoint *HP_guild_read_guildskill_tree_db_pre;
	struct HPMHookPoint *HP_guild_read_guildskill_tree_db_post;
	struct HPMHookPoint *HP_guild_read_castledb_pre;
	struct HPMHookPoint *HP_guild_read_castledb_post;
	struct HPMHookPoint *HP_guild_payexp_timer_sub_pre;
	struct HPMHookPoint *HP_guild_payexp_timer_sub_post;
	struct HPMHookPoint *HP_guild_send_xy_timer_sub_pre;
	struct HPMHookPoint *HP_guild_send_xy_timer_sub_post;
	struct HPMHookPoint *HP_guild_send_xy_timer_pre;
	struct HPMHookPoint *HP_guild_send_xy_timer_post;
	struct HPMHookPoint *HP_guild_create_expcache_pre;
	struct HPMHookPoint *HP_guild_create_expcache_post;
	struct HPMHookPoint *HP_guild_eventlist_db_final_pre;
	struct HPMHookPoint *HP_guild_eventlist_db_final_post;
	struct HPMHookPoint *HP_guild_expcache_db_final_pre;
	struct HPMHookPoint *HP_guild_expcache_db_final_post;
	struct HPMHookPoint *HP_guild_castle_db_final_pre;
	struct HPMHookPoint *HP_guild_castle_db_final_post;
	struct HPMHookPoint *HP_guild_broken_sub_pre;
	struct HPMHookPoint *HP_guild_broken_sub_post;
	struct HPMHookPoint *HP_guild_castle_broken_sub_pre;
	struct HPMHookPoint *HP_guild_castle_broken_sub_post;
	struct HPMHookPoint *HP_guild_makemember_pre;
	struct HPMHookPoint *HP_guild_makemember_post;
	struct HPMHookPoint *HP_guild_check_member_pre;
	struct HPMHookPoint *HP_guild_check_member_post;
	struct HPMHookPoint *HP_guild_get_alliance_count_pre;
	struct HPMHookPoint *HP_guild_get_alliance_count_post;
	struct HPMHookPoint *HP_guild_castle_reconnect_sub_pre;
	struct HPMHookPoint *HP_guild_castle_reconnect_sub_post;
	struct HPMHookPoint *HP_gstorage_id2storage_pre;
	struct HPMHookPoint *HP_gstorage_id2storage_post;
	struct HPMHookPoint *HP_gstorage_id2storage2_pre;
	struct HPMHookPoint *HP_gstorage_id2storage2_post;
	struct HPMHookPoint *HP_gstorage_init_pre;
	struct HPMHookPoint *HP_gstorage_init_post;
	struct HPMHookPoint *HP_gstorage_final_pre;
	struct HPMHookPoint *HP_gstorage_final_post;
	struct HPMHookPoint *HP_gstorage_delete_pre;
	struct HPMHookPoint *HP_gstorage_delete_post;
	struct HPMHookPoint *HP_gstorage_open_pre;
	struct HPMHookPoint *HP_gstorage_open_post;
	struct HPMHookPoint *HP_gstorage_additem_pre;
	struct HPMHookPoint *HP_gstorage_additem_post;
	struct HPMHookPoint *HP_gstorage_delitem_pre;
	struct HPMHookPoint *HP_gstorage_delitem_post;
	struct HPMHookPoint *HP_gstorage_add_pre;
	struct HPMHookPoint *HP_gstorage_add_post;
	struct HPMHookPoint *HP_gstorage_get_pre;
	struct HPMHookPoint *HP_gstorage_get_post;
	struct HPMHookPoint *HP_gstorage_addfromcart_pre;
	struct HPMHookPoint *HP_gstorage_addfromcart_post;
	struct HPMHookPoint *HP_gstorage_gettocart_pre;
	struct HPMHookPoint *HP_gstorage_gettocart_post;
	struct HPMHookPoint *HP_gstorage_close_pre;
	struct HPMHookPoint *HP_gstorage_close_post;
	struct HPMHookPoint *HP_gstorage_pc_quit_pre;
	struct HPMHookPoint *HP_gstorage_pc_quit_post;
	struct HPMHookPoint *HP_gstorage_save_pre;
	struct HPMHookPoint *HP_gstorage_save_post;
	struct HPMHookPoint *HP_gstorage_saved_pre;
	struct HPMHookPoint *HP_gstorage_saved_post;
	struct HPMHookPoint *HP_gstorage_create_pre;
	struct HPMHookPoint *HP_gstorage_create_post;
	struct HPMHookPoint *HP_homun_init_pre;
	struct HPMHookPoint *HP_homun_init_post;
	struct HPMHookPoint *HP_homun_final_pre;
	struct HPMHookPoint *HP_homun_final_post;
	struct HPMHookPoint *HP_homun_reload_pre;
	struct HPMHookPoint *HP_homun_reload_post;
	struct HPMHookPoint *HP_homun_reload_skill_pre;
	struct HPMHookPoint *HP_homun_reload_skill_post;
	struct HPMHookPoint *HP_homun_get_viewdata_pre;
	struct HPMHookPoint *HP_homun_get_viewdata_post;
	struct HPMHookPoint *HP_homun_class2type_pre;
	struct HPMHookPoint *HP_homun_class2type_post;
	struct HPMHookPoint *HP_homun_damaged_pre;
	struct HPMHookPoint *HP_homun_damaged_post;
	struct HPMHookPoint *HP_homun_dead_pre;
	struct HPMHookPoint *HP_homun_dead_post;
	struct HPMHookPoint *HP_homun_vaporize_pre;
	struct HPMHookPoint *HP_homun_vaporize_post;
	struct HPMHookPoint *HP_homun_delete_pre;
	struct HPMHookPoint *HP_homun_delete_post;
	struct HPMHookPoint *HP_homun_checkskill_pre;
	struct HPMHookPoint *HP_homun_checkskill_post;
	struct HPMHookPoint *HP_homun_calc_skilltree_pre;
	struct HPMHookPoint *HP_homun_calc_skilltree_post;
	struct HPMHookPoint *HP_homun_skill_tree_get_max_pre;
	struct HPMHookPoint *HP_homun_skill_tree_get_max_post;
	struct HPMHookPoint *HP_homun_skillup_pre;
	struct HPMHookPoint *HP_homun_skillup_post;
	struct HPMHookPoint *HP_homun_levelup_pre;
	struct HPMHookPoint *HP_homun_levelup_post;
	struct HPMHookPoint *HP_homun_change_class_pre;
	struct HPMHookPoint *HP_homun_change_class_post;
	struct HPMHookPoint *HP_homun_evolve_pre;
	struct HPMHookPoint *HP_homun_evolve_post;
	struct HPMHookPoint *HP_homun_mutate_pre;
	struct HPMHookPoint *HP_homun_mutate_post;
	struct HPMHookPoint *HP_homun_gainexp_pre;
	struct HPMHookPoint *HP_homun_gainexp_post;
	struct HPMHookPoint *HP_homun_add_intimacy_pre;
	struct HPMHookPoint *HP_homun_add_intimacy_post;
	struct HPMHookPoint *HP_homun_consume_intimacy_pre;
	struct HPMHookPoint *HP_homun_consume_intimacy_post;
	struct HPMHookPoint *HP_homun_healed_pre;
	struct HPMHookPoint *HP_homun_healed_post;
	struct HPMHookPoint *HP_homun_save_pre;
	struct HPMHookPoint *HP_homun_save_post;
	struct HPMHookPoint *HP_homun_menu_pre;
	struct HPMHookPoint *HP_homun_menu_post;
	struct HPMHookPoint *HP_homun_feed_pre;
	struct HPMHookPoint *HP_homun_feed_post;
	struct HPMHookPoint *HP_homun_hunger_timer_pre;
	struct HPMHookPoint *HP_homun_hunger_timer_post;
	struct HPMHookPoint *HP_homun_hunger_timer_delete_pre;
	struct HPMHookPoint *HP_homun_hunger_timer_delete_post;
	struct HPMHookPoint *HP_homun_change_name_pre;
	struct HPMHookPoint *HP_homun_change_name_post;
	struct HPMHookPoint *HP_homun_change_name_ack_pre;
	struct HPMHookPoint *HP_homun_change_name_ack_post;
	struct HPMHookPoint *HP_homun_db_search_pre;
	struct HPMHookPoint *HP_homun_db_search_post;
	struct HPMHookPoint *HP_homun_create_pre;
	struct HPMHookPoint *HP_homun_create_post;
	struct HPMHookPoint *HP_homun_init_timers_pre;
	struct HPMHookPoint *HP_homun_init_timers_post;
	struct HPMHookPoint *HP_homun_call_pre;
	struct HPMHookPoint *HP_homun_call_post;
	struct HPMHookPoint *HP_homun_recv_data_pre;
	struct HPMHookPoint *HP_homun_recv_data_post;
	struct HPMHookPoint *HP_homun_creation_request_pre;
	struct HPMHookPoint *HP_homun_creation_request_post;
	struct HPMHookPoint *HP_homun_ressurect_pre;
	struct HPMHookPoint *HP_homun_ressurect_post;
	struct HPMHookPoint *HP_homun_revive_pre;
	struct HPMHookPoint *HP_homun_revive_post;
	struct HPMHookPoint *HP_homun_stat_reset_pre;
	struct HPMHookPoint *HP_homun_stat_reset_post;
	struct HPMHookPoint *HP_homun_shuffle_pre;
	struct HPMHookPoint *HP_homun_shuffle_post;
	struct HPMHookPoint *HP_homun_read_db_sub_pre;
	struct HPMHookPoint *HP_homun_read_db_sub_post;
	struct HPMHookPoint *HP_homun_read_db_pre;
	struct HPMHookPoint *HP_homun_read_db_post;
	struct HPMHookPoint *HP_homun_read_skill_db_sub_pre;
	struct HPMHookPoint *HP_homun_read_skill_db_sub_post;
	struct HPMHookPoint *HP_homun_skill_db_read_pre;
	struct HPMHookPoint *HP_homun_skill_db_read_post;
	struct HPMHookPoint *HP_homun_exp_db_read_pre;
	struct HPMHookPoint *HP_homun_exp_db_read_post;
	struct HPMHookPoint *HP_homun_addspiritball_pre;
	struct HPMHookPoint *HP_homun_addspiritball_post;
	struct HPMHookPoint *HP_homun_delspiritball_pre;
	struct HPMHookPoint *HP_homun_delspiritball_post;
	struct HPMHookPoint *HP_instance_init_pre;
	struct HPMHookPoint *HP_instance_init_post;
	struct HPMHookPoint *HP_instance_final_pre;
	struct HPMHookPoint *HP_instance_final_post;
	struct HPMHookPoint *HP_instance_reload_pre;
	struct HPMHookPoint *HP_instance_reload_post;
	struct HPMHookPoint *HP_instance_create_pre;
	struct HPMHookPoint *HP_instance_create_post;
	struct HPMHookPoint *HP_instance_add_map_pre;
	struct HPMHookPoint *HP_instance_add_map_post;
	struct HPMHookPoint *HP_instance_del_map_pre;
	struct HPMHookPoint *HP_instance_del_map_post;
	struct HPMHookPoint *HP_instance_map2imap_pre;
	struct HPMHookPoint *HP_instance_map2imap_post;
	struct HPMHookPoint *HP_instance_mapid2imapid_pre;
	struct HPMHookPoint *HP_instance_mapid2imapid_post;
	struct HPMHookPoint *HP_instance_mapname2imap_pre;
	struct HPMHookPoint *HP_instance_mapname2imap_post;
	struct HPMHookPoint *HP_instance_map_npcsub_pre;
	struct HPMHookPoint *HP_instance_map_npcsub_post;
	struct HPMHookPoint *HP_instance_init_npc_pre;
	struct HPMHookPoint *HP_instance_init_npc_post;
	struct HPMHookPoint *HP_instance_destroy_pre;
	struct HPMHookPoint *HP_instance_destroy_post;
	struct HPMHookPoint *HP_instance_start_pre;
	struct HPMHookPoint *HP_instance_start_post;
	struct HPMHookPoint *HP_instance_check_idle_pre;
	struct HPMHookPoint *HP_instance_check_idle_post;
	struct HPMHookPoint *HP_instance_check_kick_pre;
	struct HPMHookPoint *HP_instance_check_kick_post;
	struct HPMHookPoint *HP_instance_set_timeout_pre;
	struct HPMHookPoint *HP_instance_set_timeout_post;
	struct HPMHookPoint *HP_instance_valid_pre;
	struct HPMHookPoint *HP_instance_valid_post;
	struct HPMHookPoint *HP_instance_destroy_timer_pre;
	struct HPMHookPoint *HP_instance_destroy_timer_post;
	struct HPMHookPoint *HP_intif_parse_pre;
	struct HPMHookPoint *HP_intif_parse_post;
	struct HPMHookPoint *HP_intif_create_pet_pre;
	struct HPMHookPoint *HP_intif_create_pet_post;
	struct HPMHookPoint *HP_intif_broadcast_pre;
	struct HPMHookPoint *HP_intif_broadcast_post;
	struct HPMHookPoint *HP_intif_broadcast2_pre;
	struct HPMHookPoint *HP_intif_broadcast2_post;
	struct HPMHookPoint *HP_intif_main_message_pre;
	struct HPMHookPoint *HP_intif_main_message_post;
	struct HPMHookPoint *HP_intif_wis_message_pre;
	struct HPMHookPoint *HP_intif_wis_message_post;
	struct HPMHookPoint *HP_intif_wis_message_to_gm_pre;
	struct HPMHookPoint *HP_intif_wis_message_to_gm_post;
	struct HPMHookPoint *HP_intif_saveregistry_pre;
	struct HPMHookPoint *HP_intif_saveregistry_post;
	struct HPMHookPoint *HP_intif_request_registry_pre;
	struct HPMHookPoint *HP_intif_request_registry_post;
	struct HPMHookPoint *HP_intif_request_guild_storage_pre;
	struct HPMHookPoint *HP_intif_request_guild_storage_post;
	struct HPMHookPoint *HP_intif_send_guild_storage_pre;
	struct HPMHookPoint *HP_intif_send_guild_storage_post;
	struct HPMHookPoint *HP_intif_create_party_pre;
	struct HPMHookPoint *HP_intif_create_party_post;
	struct HPMHookPoint *HP_intif_request_partyinfo_pre;
	struct HPMHookPoint *HP_intif_request_partyinfo_post;
	struct HPMHookPoint *HP_intif_party_addmember_pre;
	struct HPMHookPoint *HP_intif_party_addmember_post;
	struct HPMHookPoint *HP_intif_party_changeoption_pre;
	struct HPMHookPoint *HP_intif_party_changeoption_post;
	struct HPMHookPoint *HP_intif_party_leave_pre;
	struct HPMHookPoint *HP_intif_party_leave_post;
	struct HPMHookPoint *HP_intif_party_changemap_pre;
	struct HPMHookPoint *HP_intif_party_changemap_post;
	struct HPMHookPoint *HP_intif_break_party_pre;
	struct HPMHookPoint *HP_intif_break_party_post;
	struct HPMHookPoint *HP_intif_party_message_pre;
	struct HPMHookPoint *HP_intif_party_message_post;
	struct HPMHookPoint *HP_intif_party_leaderchange_pre;
	struct HPMHookPoint *HP_intif_party_leaderchange_post;
	struct HPMHookPoint *HP_intif_guild_create_pre;
	struct HPMHookPoint *HP_intif_guild_create_post;
	struct HPMHookPoint *HP_intif_guild_request_info_pre;
	struct HPMHookPoint *HP_intif_guild_request_info_post;
	struct HPMHookPoint *HP_intif_guild_addmember_pre;
	struct HPMHookPoint *HP_intif_guild_addmember_post;
	struct HPMHookPoint *HP_intif_guild_leave_pre;
	struct HPMHookPoint *HP_intif_guild_leave_post;
	struct HPMHookPoint *HP_intif_guild_memberinfoshort_pre;
	struct HPMHookPoint *HP_intif_guild_memberinfoshort_post;
	struct HPMHookPoint *HP_intif_guild_break_pre;
	struct HPMHookPoint *HP_intif_guild_break_post;
	struct HPMHookPoint *HP_intif_guild_message_pre;
	struct HPMHookPoint *HP_intif_guild_message_post;
	struct HPMHookPoint *HP_intif_guild_change_gm_pre;
	struct HPMHookPoint *HP_intif_guild_change_gm_post;
	struct HPMHookPoint *HP_intif_guild_change_basicinfo_pre;
	struct HPMHookPoint *HP_intif_guild_change_basicinfo_post;
	struct HPMHookPoint *HP_intif_guild_change_memberinfo_pre;
	struct HPMHookPoint *HP_intif_guild_change_memberinfo_post;
	struct HPMHookPoint *HP_intif_guild_position_pre;
	struct HPMHookPoint *HP_intif_guild_position_post;
	struct HPMHookPoint *HP_intif_guild_skillup_pre;
	struct HPMHookPoint *HP_intif_guild_skillup_post;
	struct HPMHookPoint *HP_intif_guild_alliance_pre;
	struct HPMHookPoint *HP_intif_guild_alliance_post;
	struct HPMHookPoint *HP_intif_guild_notice_pre;
	struct HPMHookPoint *HP_intif_guild_notice_post;
	struct HPMHookPoint *HP_intif_guild_emblem_pre;
	struct HPMHookPoint *HP_intif_guild_emblem_post;
	struct HPMHookPoint *HP_intif_guild_castle_dataload_pre;
	struct HPMHookPoint *HP_intif_guild_castle_dataload_post;
	struct HPMHookPoint *HP_intif_guild_castle_datasave_pre;
	struct HPMHookPoint *HP_intif_guild_castle_datasave_post;
	struct HPMHookPoint *HP_intif_itembound_req_pre;
	struct HPMHookPoint *HP_intif_itembound_req_post;
	struct HPMHookPoint *HP_intif_request_petdata_pre;
	struct HPMHookPoint *HP_intif_request_petdata_post;
	struct HPMHookPoint *HP_intif_save_petdata_pre;
	struct HPMHookPoint *HP_intif_save_petdata_post;
	struct HPMHookPoint *HP_intif_delete_petdata_pre;
	struct HPMHookPoint *HP_intif_delete_petdata_post;
	struct HPMHookPoint *HP_intif_rename_pre;
	struct HPMHookPoint *HP_intif_rename_post;
	struct HPMHookPoint *HP_intif_homunculus_create_pre;
	struct HPMHookPoint *HP_intif_homunculus_create_post;
	struct HPMHookPoint *HP_intif_homunculus_requestload_pre;
	struct HPMHookPoint *HP_intif_homunculus_requestload_post;
	struct HPMHookPoint *HP_intif_homunculus_requestsave_pre;
	struct HPMHookPoint *HP_intif_homunculus_requestsave_post;
	struct HPMHookPoint *HP_intif_homunculus_requestdelete_pre;
	struct HPMHookPoint *HP_intif_homunculus_requestdelete_post;
	struct HPMHookPoint *HP_intif_request_questlog_pre;
	struct HPMHookPoint *HP_intif_request_questlog_post;
	struct HPMHookPoint *HP_intif_quest_save_pre;
	struct HPMHookPoint *HP_intif_quest_save_post;
	struct HPMHookPoint *HP_intif_mercenary_create_pre;
	struct HPMHookPoint *HP_intif_mercenary_create_post;
	struct HPMHookPoint *HP_intif_mercenary_request_pre;
	struct HPMHookPoint *HP_intif_mercenary_request_post;
	struct HPMHookPoint *HP_intif_mercenary_delete_pre;
	struct HPMHookPoint *HP_intif_mercenary_delete_post;
	struct HPMHookPoint *HP_intif_mercenary_save_pre;
	struct HPMHookPoint *HP_intif_mercenary_save_post;
	struct HPMHookPoint *HP_intif_Mail_requestinbox_pre;
	struct HPMHookPoint *HP_intif_Mail_requestinbox_post;
	struct HPMHookPoint *HP_intif_Mail_read_pre;
	struct HPMHookPoint *HP_intif_Mail_read_post;
	struct HPMHookPoint *HP_intif_Mail_getattach_pre;
	struct HPMHookPoint *HP_intif_Mail_getattach_post;
	struct HPMHookPoint *HP_intif_Mail_delete_pre;
	struct HPMHookPoint *HP_intif_Mail_delete_post;
	struct HPMHookPoint *HP_intif_Mail_return_pre;
	struct HPMHookPoint *HP_intif_Mail_return_post;
	struct HPMHookPoint *HP_intif_Mail_send_pre;
	struct HPMHookPoint *HP_intif_Mail_send_post;
	struct HPMHookPoint *HP_intif_Auction_requestlist_pre;
	struct HPMHookPoint *HP_intif_Auction_requestlist_post;
	struct HPMHookPoint *HP_intif_Auction_register_pre;
	struct HPMHookPoint *HP_intif_Auction_register_post;
	struct HPMHookPoint *HP_intif_Auction_cancel_pre;
	struct HPMHookPoint *HP_intif_Auction_cancel_post;
	struct HPMHookPoint *HP_intif_Auction_close_pre;
	struct HPMHookPoint *HP_intif_Auction_close_post;
	struct HPMHookPoint *HP_intif_Auction_bid_pre;
	struct HPMHookPoint *HP_intif_Auction_bid_post;
	struct HPMHookPoint *HP_intif_elemental_create_pre;
	struct HPMHookPoint *HP_intif_elemental_create_post;
	struct HPMHookPoint *HP_intif_elemental_request_pre;
	struct HPMHookPoint *HP_intif_elemental_request_post;
	struct HPMHookPoint *HP_intif_elemental_delete_pre;
	struct HPMHookPoint *HP_intif_elemental_delete_post;
	struct HPMHookPoint *HP_intif_elemental_save_pre;
	struct HPMHookPoint *HP_intif_elemental_save_post;
	struct HPMHookPoint *HP_intif_request_accinfo_pre;
	struct HPMHookPoint *HP_intif_request_accinfo_post;
	struct HPMHookPoint *HP_intif_CheckForCharServer_pre;
	struct HPMHookPoint *HP_intif_CheckForCharServer_post;
	struct HPMHookPoint *HP_intif_pWisMessage_pre;
	struct HPMHookPoint *HP_intif_pWisMessage_post;
	struct HPMHookPoint *HP_intif_pWisEnd_pre;
	struct HPMHookPoint *HP_intif_pWisEnd_post;
	struct HPMHookPoint *HP_intif_pWisToGM_sub_pre;
	struct HPMHookPoint *HP_intif_pWisToGM_sub_post;
	struct HPMHookPoint *HP_intif_pWisToGM_pre;
	struct HPMHookPoint *HP_intif_pWisToGM_post;
	struct HPMHookPoint *HP_intif_pRegisters_pre;
	struct HPMHookPoint *HP_intif_pRegisters_post;
	struct HPMHookPoint *HP_intif_pChangeNameOk_pre;
	struct HPMHookPoint *HP_intif_pChangeNameOk_post;
	struct HPMHookPoint *HP_intif_pMessageToFD_pre;
	struct HPMHookPoint *HP_intif_pMessageToFD_post;
	struct HPMHookPoint *HP_intif_pLoadGuildStorage_pre;
	struct HPMHookPoint *HP_intif_pLoadGuildStorage_post;
	struct HPMHookPoint *HP_intif_pSaveGuildStorage_pre;
	struct HPMHookPoint *HP_intif_pSaveGuildStorage_post;
	struct HPMHookPoint *HP_intif_pPartyCreated_pre;
	struct HPMHookPoint *HP_intif_pPartyCreated_post;
	struct HPMHookPoint *HP_intif_pPartyInfo_pre;
	struct HPMHookPoint *HP_intif_pPartyInfo_post;
	struct HPMHookPoint *HP_intif_pPartyMemberAdded_pre;
	struct HPMHookPoint *HP_intif_pPartyMemberAdded_post;
	struct HPMHookPoint *HP_intif_pPartyOptionChanged_pre;
	struct HPMHookPoint *HP_intif_pPartyOptionChanged_post;
	struct HPMHookPoint *HP_intif_pPartyMemberWithdraw_pre;
	struct HPMHookPoint *HP_intif_pPartyMemberWithdraw_post;
	struct HPMHookPoint *HP_intif_pPartyMove_pre;
	struct HPMHookPoint *HP_intif_pPartyMove_post;
	struct HPMHookPoint *HP_intif_pPartyBroken_pre;
	struct HPMHookPoint *HP_intif_pPartyBroken_post;
	struct HPMHookPoint *HP_intif_pPartyMessage_pre;
	struct HPMHookPoint *HP_intif_pPartyMessage_post;
	struct HPMHookPoint *HP_intif_pGuildCreated_pre;
	struct HPMHookPoint *HP_intif_pGuildCreated_post;
	struct HPMHookPoint *HP_intif_pGuildInfo_pre;
	struct HPMHookPoint *HP_intif_pGuildInfo_post;
	struct HPMHookPoint *HP_intif_pGuildMemberAdded_pre;
	struct HPMHookPoint *HP_intif_pGuildMemberAdded_post;
	struct HPMHookPoint *HP_intif_pGuildMemberWithdraw_pre;
	struct HPMHookPoint *HP_intif_pGuildMemberWithdraw_post;
	struct HPMHookPoint *HP_intif_pGuildMemberInfoShort_pre;
	struct HPMHookPoint *HP_intif_pGuildMemberInfoShort_post;
	struct HPMHookPoint *HP_intif_pGuildBroken_pre;
	struct HPMHookPoint *HP_intif_pGuildBroken_post;
	struct HPMHookPoint *HP_intif_pGuildMessage_pre;
	struct HPMHookPoint *HP_intif_pGuildMessage_post;
	struct HPMHookPoint *HP_intif_pGuildBasicInfoChanged_pre;
	struct HPMHookPoint *HP_intif_pGuildBasicInfoChanged_post;
	struct HPMHookPoint *HP_intif_pGuildMemberInfoChanged_pre;
	struct HPMHookPoint *HP_intif_pGuildMemberInfoChanged_post;
	struct HPMHookPoint *HP_intif_pGuildPosition_pre;
	struct HPMHookPoint *HP_intif_pGuildPosition_post;
	struct HPMHookPoint *HP_intif_pGuildSkillUp_pre;
	struct HPMHookPoint *HP_intif_pGuildSkillUp_post;
	struct HPMHookPoint *HP_intif_pGuildAlliance_pre;
	struct HPMHookPoint *HP_intif_pGuildAlliance_post;
	struct HPMHookPoint *HP_intif_pGuildNotice_pre;
	struct HPMHookPoint *HP_intif_pGuildNotice_post;
	struct HPMHookPoint *HP_intif_pGuildEmblem_pre;
	struct HPMHookPoint *HP_intif_pGuildEmblem_post;
	struct HPMHookPoint *HP_intif_pGuildCastleDataLoad_pre;
	struct HPMHookPoint *HP_intif_pGuildCastleDataLoad_post;
	struct HPMHookPoint *HP_intif_pGuildMasterChanged_pre;
	struct HPMHookPoint *HP_intif_pGuildMasterChanged_post;
	struct HPMHookPoint *HP_intif_pQuestLog_pre;
	struct HPMHookPoint *HP_intif_pQuestLog_post;
	struct HPMHookPoint *HP_intif_pQuestSave_pre;
	struct HPMHookPoint *HP_intif_pQuestSave_post;
	struct HPMHookPoint *HP_intif_pMailInboxReceived_pre;
	struct HPMHookPoint *HP_intif_pMailInboxReceived_post;
	struct HPMHookPoint *HP_intif_pMailNew_pre;
	struct HPMHookPoint *HP_intif_pMailNew_post;
	struct HPMHookPoint *HP_intif_pMailGetAttach_pre;
	struct HPMHookPoint *HP_intif_pMailGetAttach_post;
	struct HPMHookPoint *HP_intif_pMailDelete_pre;
	struct HPMHookPoint *HP_intif_pMailDelete_post;
	struct HPMHookPoint *HP_intif_pMailReturn_pre;
	struct HPMHookPoint *HP_intif_pMailReturn_post;
	struct HPMHookPoint *HP_intif_pMailSend_pre;
	struct HPMHookPoint *HP_intif_pMailSend_post;
	struct HPMHookPoint *HP_intif_pAuctionResults_pre;
	struct HPMHookPoint *HP_intif_pAuctionResults_post;
	struct HPMHookPoint *HP_intif_pAuctionRegister_pre;
	struct HPMHookPoint *HP_intif_pAuctionRegister_post;
	struct HPMHookPoint *HP_intif_pAuctionCancel_pre;
	struct HPMHookPoint *HP_intif_pAuctionCancel_post;
	struct HPMHookPoint *HP_intif_pAuctionClose_pre;
	struct HPMHookPoint *HP_intif_pAuctionClose_post;
	struct HPMHookPoint *HP_intif_pAuctionMessage_pre;
	struct HPMHookPoint *HP_intif_pAuctionMessage_post;
	struct HPMHookPoint *HP_intif_pAuctionBid_pre;
	struct HPMHookPoint *HP_intif_pAuctionBid_post;
	struct HPMHookPoint *HP_intif_pItembound_ack_pre;
	struct HPMHookPoint *HP_intif_pItembound_ack_post;
	struct HPMHookPoint *HP_intif_pMercenaryReceived_pre;
	struct HPMHookPoint *HP_intif_pMercenaryReceived_post;
	struct HPMHookPoint *HP_intif_pMercenaryDeleted_pre;
	struct HPMHookPoint *HP_intif_pMercenaryDeleted_post;
	struct HPMHookPoint *HP_intif_pMercenarySaved_pre;
	struct HPMHookPoint *HP_intif_pMercenarySaved_post;
	struct HPMHookPoint *HP_intif_pElementalReceived_pre;
	struct HPMHookPoint *HP_intif_pElementalReceived_post;
	struct HPMHookPoint *HP_intif_pElementalDeleted_pre;
	struct HPMHookPoint *HP_intif_pElementalDeleted_post;
	struct HPMHookPoint *HP_intif_pElementalSaved_pre;
	struct HPMHookPoint *HP_intif_pElementalSaved_post;
	struct HPMHookPoint *HP_intif_pCreatePet_pre;
	struct HPMHookPoint *HP_intif_pCreatePet_post;
	struct HPMHookPoint *HP_intif_pRecvPetData_pre;
	struct HPMHookPoint *HP_intif_pRecvPetData_post;
	struct HPMHookPoint *HP_intif_pSavePetOk_pre;
	struct HPMHookPoint *HP_intif_pSavePetOk_post;
	struct HPMHookPoint *HP_intif_pDeletePetOk_pre;
	struct HPMHookPoint *HP_intif_pDeletePetOk_post;
	struct HPMHookPoint *HP_intif_pCreateHomunculus_pre;
	struct HPMHookPoint *HP_intif_pCreateHomunculus_post;
	struct HPMHookPoint *HP_intif_pRecvHomunculusData_pre;
	struct HPMHookPoint *HP_intif_pRecvHomunculusData_post;
	struct HPMHookPoint *HP_intif_pSaveHomunculusOk_pre;
	struct HPMHookPoint *HP_intif_pSaveHomunculusOk_post;
	struct HPMHookPoint *HP_intif_pDeleteHomunculusOk_pre;
	struct HPMHookPoint *HP_intif_pDeleteHomunculusOk_post;
	struct HPMHookPoint *HP_ircbot_init_pre;
	struct HPMHookPoint *HP_ircbot_init_post;
	struct HPMHookPoint *HP_ircbot_final_pre;
	struct HPMHookPoint *HP_ircbot_final_post;
	struct HPMHookPoint *HP_ircbot_parse_pre;
	struct HPMHookPoint *HP_ircbot_parse_post;
	struct HPMHookPoint *HP_ircbot_parse_sub_pre;
	struct HPMHookPoint *HP_ircbot_parse_sub_post;
	struct HPMHookPoint *HP_ircbot_parse_source_pre;
	struct HPMHookPoint *HP_ircbot_parse_source_post;
	struct HPMHookPoint *HP_ircbot_func_search_pre;
	struct HPMHookPoint *HP_ircbot_func_search_post;
	struct HPMHookPoint *HP_ircbot_connect_timer_pre;
	struct HPMHookPoint *HP_ircbot_connect_timer_post;
	struct HPMHookPoint *HP_ircbot_identify_timer_pre;
	struct HPMHookPoint *HP_ircbot_identify_timer_post;
	struct HPMHookPoint *HP_ircbot_join_timer_pre;
	struct HPMHookPoint *HP_ircbot_join_timer_post;
	struct HPMHookPoint *HP_ircbot_send_pre;
	struct HPMHookPoint *HP_ircbot_send_post;
	struct HPMHookPoint *HP_ircbot_relay_pre;
	struct HPMHookPoint *HP_ircbot_relay_post;
	struct HPMHookPoint *HP_ircbot_pong_pre;
	struct HPMHookPoint *HP_ircbot_pong_post;
	struct HPMHookPoint *HP_ircbot_privmsg_pre;
	struct HPMHookPoint *HP_ircbot_privmsg_post;
	struct HPMHookPoint *HP_ircbot_userjoin_pre;
	struct HPMHookPoint *HP_ircbot_userjoin_post;
	struct HPMHookPoint *HP_ircbot_userleave_pre;
	struct HPMHookPoint *HP_ircbot_userleave_post;
	struct HPMHookPoint *HP_ircbot_usernick_pre;
	struct HPMHookPoint *HP_ircbot_usernick_post;
	struct HPMHookPoint *HP_itemdb_init_pre;
	struct HPMHookPoint *HP_itemdb_init_post;
	struct HPMHookPoint *HP_itemdb_final_pre;
	struct HPMHookPoint *HP_itemdb_final_post;
	struct HPMHookPoint *HP_itemdb_reload_pre;
	struct HPMHookPoint *HP_itemdb_reload_post;
	struct HPMHookPoint *HP_itemdb_name_constants_pre;
	struct HPMHookPoint *HP_itemdb_name_constants_post;
	struct HPMHookPoint *HP_itemdb_read_groups_pre;
	struct HPMHookPoint *HP_itemdb_read_groups_post;
	struct HPMHookPoint *HP_itemdb_read_chains_pre;
	struct HPMHookPoint *HP_itemdb_read_chains_post;
	struct HPMHookPoint *HP_itemdb_read_packages_pre;
	struct HPMHookPoint *HP_itemdb_read_packages_post;
	struct HPMHookPoint *HP_itemdb_write_cached_packages_pre;
	struct HPMHookPoint *HP_itemdb_write_cached_packages_post;
	struct HPMHookPoint *HP_itemdb_read_cached_packages_pre;
	struct HPMHookPoint *HP_itemdb_read_cached_packages_post;
	struct HPMHookPoint *HP_itemdb_name2id_pre;
	struct HPMHookPoint *HP_itemdb_name2id_post;
	struct HPMHookPoint *HP_itemdb_search_name_pre;
	struct HPMHookPoint *HP_itemdb_search_name_post;
	struct HPMHookPoint *HP_itemdb_search_name_array_pre;
	struct HPMHookPoint *HP_itemdb_search_name_array_post;
	struct HPMHookPoint *HP_itemdb_load_pre;
	struct HPMHookPoint *HP_itemdb_load_post;
	struct HPMHookPoint *HP_itemdb_search_pre;
	struct HPMHookPoint *HP_itemdb_search_post;
	struct HPMHookPoint *HP_itemdb_exists_pre;
	struct HPMHookPoint *HP_itemdb_exists_post;
	struct HPMHookPoint *HP_itemdb_in_group_pre;
	struct HPMHookPoint *HP_itemdb_in_group_post;
	struct HPMHookPoint *HP_itemdb_group_item_pre;
	struct HPMHookPoint *HP_itemdb_group_item_post;
	struct HPMHookPoint *HP_itemdb_chain_item_pre;
	struct HPMHookPoint *HP_itemdb_chain_item_post;
	struct HPMHookPoint *HP_itemdb_package_item_pre;
	struct HPMHookPoint *HP_itemdb_package_item_post;
	struct HPMHookPoint *HP_itemdb_searchname_sub_pre;
	struct HPMHookPoint *HP_itemdb_searchname_sub_post;
	struct HPMHookPoint *HP_itemdb_searchname_array_sub_pre;
	struct HPMHookPoint *HP_itemdb_searchname_array_sub_post;
	struct HPMHookPoint *HP_itemdb_searchrandomid_pre;
	struct HPMHookPoint *HP_itemdb_searchrandomid_post;
	struct HPMHookPoint *HP_itemdb_typename_pre;
	struct HPMHookPoint *HP_itemdb_typename_post;
	struct HPMHookPoint *HP_itemdb_jobid2mapid_pre;
	struct HPMHookPoint *HP_itemdb_jobid2mapid_post;
	struct HPMHookPoint *HP_itemdb_create_dummy_data_pre;
	struct HPMHookPoint *HP_itemdb_create_dummy_data_post;
	struct HPMHookPoint *HP_itemdb_create_item_data_pre;
	struct HPMHookPoint *HP_itemdb_create_item_data_post;
	struct HPMHookPoint *HP_itemdb_isequip_pre;
	struct HPMHookPoint *HP_itemdb_isequip_post;
	struct HPMHookPoint *HP_itemdb_isequip2_pre;
	struct HPMHookPoint *HP_itemdb_isequip2_post;
	struct HPMHookPoint *HP_itemdb_isstackable_pre;
	struct HPMHookPoint *HP_itemdb_isstackable_post;
	struct HPMHookPoint *HP_itemdb_isstackable2_pre;
	struct HPMHookPoint *HP_itemdb_isstackable2_post;
	struct HPMHookPoint *HP_itemdb_isdropable_sub_pre;
	struct HPMHookPoint *HP_itemdb_isdropable_sub_post;
	struct HPMHookPoint *HP_itemdb_cantrade_sub_pre;
	struct HPMHookPoint *HP_itemdb_cantrade_sub_post;
	struct HPMHookPoint *HP_itemdb_canpartnertrade_sub_pre;
	struct HPMHookPoint *HP_itemdb_canpartnertrade_sub_post;
	struct HPMHookPoint *HP_itemdb_cansell_sub_pre;
	struct HPMHookPoint *HP_itemdb_cansell_sub_post;
	struct HPMHookPoint *HP_itemdb_cancartstore_sub_pre;
	struct HPMHookPoint *HP_itemdb_cancartstore_sub_post;
	struct HPMHookPoint *HP_itemdb_canstore_sub_pre;
	struct HPMHookPoint *HP_itemdb_canstore_sub_post;
	struct HPMHookPoint *HP_itemdb_canguildstore_sub_pre;
	struct HPMHookPoint *HP_itemdb_canguildstore_sub_post;
	struct HPMHookPoint *HP_itemdb_canmail_sub_pre;
	struct HPMHookPoint *HP_itemdb_canmail_sub_post;
	struct HPMHookPoint *HP_itemdb_canauction_sub_pre;
	struct HPMHookPoint *HP_itemdb_canauction_sub_post;
	struct HPMHookPoint *HP_itemdb_isrestricted_pre;
	struct HPMHookPoint *HP_itemdb_isrestricted_post;
	struct HPMHookPoint *HP_itemdb_isidentified_pre;
	struct HPMHookPoint *HP_itemdb_isidentified_post;
	struct HPMHookPoint *HP_itemdb_isidentified2_pre;
	struct HPMHookPoint *HP_itemdb_isidentified2_post;
	struct HPMHookPoint *HP_itemdb_read_itemavail_pre;
	struct HPMHookPoint *HP_itemdb_read_itemavail_post;
	struct HPMHookPoint *HP_itemdb_read_itemtrade_pre;
	struct HPMHookPoint *HP_itemdb_read_itemtrade_post;
	struct HPMHookPoint *HP_itemdb_read_itemdelay_pre;
	struct HPMHookPoint *HP_itemdb_read_itemdelay_post;
	struct HPMHookPoint *HP_itemdb_read_stack_pre;
	struct HPMHookPoint *HP_itemdb_read_stack_post;
	struct HPMHookPoint *HP_itemdb_read_buyingstore_pre;
	struct HPMHookPoint *HP_itemdb_read_buyingstore_post;
	struct HPMHookPoint *HP_itemdb_read_nouse_pre;
	struct HPMHookPoint *HP_itemdb_read_nouse_post;
	struct HPMHookPoint *HP_itemdb_combo_split_atoi_pre;
	struct HPMHookPoint *HP_itemdb_combo_split_atoi_post;
	struct HPMHookPoint *HP_itemdb_read_combos_pre;
	struct HPMHookPoint *HP_itemdb_read_combos_post;
	struct HPMHookPoint *HP_itemdb_gendercheck_pre;
	struct HPMHookPoint *HP_itemdb_gendercheck_post;
	struct HPMHookPoint *HP_itemdb_validate_entry_pre;
	struct HPMHookPoint *HP_itemdb_validate_entry_post;
	struct HPMHookPoint *HP_itemdb_readdb_sql_sub_pre;
	struct HPMHookPoint *HP_itemdb_readdb_sql_sub_post;
	struct HPMHookPoint *HP_itemdb_readdb_libconfig_sub_pre;
	struct HPMHookPoint *HP_itemdb_readdb_libconfig_sub_post;
	struct HPMHookPoint *HP_itemdb_readdb_libconfig_pre;
	struct HPMHookPoint *HP_itemdb_readdb_libconfig_post;
	struct HPMHookPoint *HP_itemdb_readdb_sql_pre;
	struct HPMHookPoint *HP_itemdb_readdb_sql_post;
	struct HPMHookPoint *HP_itemdb_unique_id_pre;
	struct HPMHookPoint *HP_itemdb_unique_id_post;
	struct HPMHookPoint *HP_itemdb_uid_load_pre;
	struct HPMHookPoint *HP_itemdb_uid_load_post;
	struct HPMHookPoint *HP_itemdb_read_pre;
	struct HPMHookPoint *HP_itemdb_read_post;
	struct HPMHookPoint *HP_itemdb_destroy_item_data_pre;
	struct HPMHookPoint *HP_itemdb_destroy_item_data_post;
	struct HPMHookPoint *HP_itemdb_final_sub_pre;
	struct HPMHookPoint *HP_itemdb_final_sub_post;
	struct HPMHookPoint *HP_itemdb_clear_pre;
	struct HPMHookPoint *HP_itemdb_clear_post;
	struct HPMHookPoint *HP_itemdb_id2combo_pre;
	struct HPMHookPoint *HP_itemdb_id2combo_post;
	struct HPMHookPoint *HP_logs_pick_pc_pre;
	struct HPMHookPoint *HP_logs_pick_pc_post;
	struct HPMHookPoint *HP_logs_pick_mob_pre;
	struct HPMHookPoint *HP_logs_pick_mob_post;
	struct HPMHookPoint *HP_logs_zeny_pre;
	struct HPMHookPoint *HP_logs_zeny_post;
	struct HPMHookPoint *HP_logs_npc_pre;
	struct HPMHookPoint *HP_logs_npc_post;
	struct HPMHookPoint *HP_logs_chat_pre;
	struct HPMHookPoint *HP_logs_chat_post;
	struct HPMHookPoint *HP_logs_atcommand_pre;
	struct HPMHookPoint *HP_logs_atcommand_post;
	struct HPMHookPoint *HP_logs_branch_pre;
	struct HPMHookPoint *HP_logs_branch_post;
	struct HPMHookPoint *HP_logs_mvpdrop_pre;
	struct HPMHookPoint *HP_logs_mvpdrop_post;
	struct HPMHookPoint *HP_logs_pick_sub_pre;
	struct HPMHookPoint *HP_logs_pick_sub_post;
	struct HPMHookPoint *HP_logs_zeny_sub_pre;
	struct HPMHookPoint *HP_logs_zeny_sub_post;
	struct HPMHookPoint *HP_logs_npc_sub_pre;
	struct HPMHookPoint *HP_logs_npc_sub_post;
	struct HPMHookPoint *HP_logs_chat_sub_pre;
	struct HPMHookPoint *HP_logs_chat_sub_post;
	struct HPMHookPoint *HP_logs_atcommand_sub_pre;
	struct HPMHookPoint *HP_logs_atcommand_sub_post;
	struct HPMHookPoint *HP_logs_branch_sub_pre;
	struct HPMHookPoint *HP_logs_branch_sub_post;
	struct HPMHookPoint *HP_logs_mvpdrop_sub_pre;
	struct HPMHookPoint *HP_logs_mvpdrop_sub_post;
	struct HPMHookPoint *HP_logs_config_read_pre;
	struct HPMHookPoint *HP_logs_config_read_post;
	struct HPMHookPoint *HP_logs_config_done_pre;
	struct HPMHookPoint *HP_logs_config_done_post;
	struct HPMHookPoint *HP_logs_sql_init_pre;
	struct HPMHookPoint *HP_logs_sql_init_post;
	struct HPMHookPoint *HP_logs_sql_final_pre;
	struct HPMHookPoint *HP_logs_sql_final_post;
	struct HPMHookPoint *HP_logs_picktype2char_pre;
	struct HPMHookPoint *HP_logs_picktype2char_post;
	struct HPMHookPoint *HP_logs_chattype2char_pre;
	struct HPMHookPoint *HP_logs_chattype2char_post;
	struct HPMHookPoint *HP_logs_should_log_item_pre;
	struct HPMHookPoint *HP_logs_should_log_item_post;
	struct HPMHookPoint *HP_mail_clear_pre;
	struct HPMHookPoint *HP_mail_clear_post;
	struct HPMHookPoint *HP_mail_removeitem_pre;
	struct HPMHookPoint *HP_mail_removeitem_post;
	struct HPMHookPoint *HP_mail_removezeny_pre;
	struct HPMHookPoint *HP_mail_removezeny_post;
	struct HPMHookPoint *HP_mail_setitem_pre;
	struct HPMHookPoint *HP_mail_setitem_post;
	struct HPMHookPoint *HP_mail_setattachment_pre;
	struct HPMHookPoint *HP_mail_setattachment_post;
	struct HPMHookPoint *HP_mail_getattachment_pre;
	struct HPMHookPoint *HP_mail_getattachment_post;
	struct HPMHookPoint *HP_mail_openmail_pre;
	struct HPMHookPoint *HP_mail_openmail_post;
	struct HPMHookPoint *HP_mail_deliveryfail_pre;
	struct HPMHookPoint *HP_mail_deliveryfail_post;
	struct HPMHookPoint *HP_mail_invalid_operation_pre;
	struct HPMHookPoint *HP_mail_invalid_operation_post;
	struct HPMHookPoint *HP_map_zone_init_pre;
	struct HPMHookPoint *HP_map_zone_init_post;
	struct HPMHookPoint *HP_map_zone_remove_pre;
	struct HPMHookPoint *HP_map_zone_remove_post;
	struct HPMHookPoint *HP_map_zone_apply_pre;
	struct HPMHookPoint *HP_map_zone_apply_post;
	struct HPMHookPoint *HP_map_zone_change_pre;
	struct HPMHookPoint *HP_map_zone_change_post;
	struct HPMHookPoint *HP_map_zone_change2_pre;
	struct HPMHookPoint *HP_map_zone_change2_post;
	struct HPMHookPoint *HP_map_getcell_pre;
	struct HPMHookPoint *HP_map_getcell_post;
	struct HPMHookPoint *HP_map_setgatcell_pre;
	struct HPMHookPoint *HP_map_setgatcell_post;
	struct HPMHookPoint *HP_map_cellfromcache_pre;
	struct HPMHookPoint *HP_map_cellfromcache_post;
	struct HPMHookPoint *HP_map_setusers_pre;
	struct HPMHookPoint *HP_map_setusers_post;
	struct HPMHookPoint *HP_map_getusers_pre;
	struct HPMHookPoint *HP_map_getusers_post;
	struct HPMHookPoint *HP_map_usercount_pre;
	struct HPMHookPoint *HP_map_usercount_post;
	struct HPMHookPoint *HP_map_freeblock_pre;
	struct HPMHookPoint *HP_map_freeblock_post;
	struct HPMHookPoint *HP_map_freeblock_lock_pre;
	struct HPMHookPoint *HP_map_freeblock_lock_post;
	struct HPMHookPoint *HP_map_freeblock_unlock_pre;
	struct HPMHookPoint *HP_map_freeblock_unlock_post;
	struct HPMHookPoint *HP_map_addblock_pre;
	struct HPMHookPoint *HP_map_addblock_post;
	struct HPMHookPoint *HP_map_delblock_pre;
	struct HPMHookPoint *HP_map_delblock_post;
	struct HPMHookPoint *HP_map_moveblock_pre;
	struct HPMHookPoint *HP_map_moveblock_post;
	struct HPMHookPoint *HP_map_count_oncell_pre;
	struct HPMHookPoint *HP_map_count_oncell_post;
	struct HPMHookPoint *HP_map_find_skill_unit_oncell_pre;
	struct HPMHookPoint *HP_map_find_skill_unit_oncell_post;
	struct HPMHookPoint *HP_map_get_new_object_id_pre;
	struct HPMHookPoint *HP_map_get_new_object_id_post;
	struct HPMHookPoint *HP_map_search_freecell_pre;
	struct HPMHookPoint *HP_map_search_freecell_post;
	struct HPMHookPoint *HP_map_quit_pre;
	struct HPMHookPoint *HP_map_quit_post;
	struct HPMHookPoint *HP_map_addnpc_pre;
	struct HPMHookPoint *HP_map_addnpc_post;
	struct HPMHookPoint *HP_map_clearflooritem_timer_pre;
	struct HPMHookPoint *HP_map_clearflooritem_timer_post;
	struct HPMHookPoint *HP_map_removemobs_timer_pre;
	struct HPMHookPoint *HP_map_removemobs_timer_post;
	struct HPMHookPoint *HP_map_clearflooritem_pre;
	struct HPMHookPoint *HP_map_clearflooritem_post;
	struct HPMHookPoint *HP_map_addflooritem_pre;
	struct HPMHookPoint *HP_map_addflooritem_post;
	struct HPMHookPoint *HP_map_addnickdb_pre;
	struct HPMHookPoint *HP_map_addnickdb_post;
	struct HPMHookPoint *HP_map_delnickdb_pre;
	struct HPMHookPoint *HP_map_delnickdb_post;
	struct HPMHookPoint *HP_map_reqnickdb_pre;
	struct HPMHookPoint *HP_map_reqnickdb_post;
	struct HPMHookPoint *HP_map_charid2nick_pre;
	struct HPMHookPoint *HP_map_charid2nick_post;
	struct HPMHookPoint *HP_map_charid2sd_pre;
	struct HPMHookPoint *HP_map_charid2sd_post;
	struct HPMHookPoint *HP_map_vforeachpc_pre;
	struct HPMHookPoint *HP_map_vforeachpc_post;
	struct HPMHookPoint *HP_map_vforeachmob_pre;
	struct HPMHookPoint *HP_map_vforeachmob_post;
	struct HPMHookPoint *HP_map_vforeachnpc_pre;
	struct HPMHookPoint *HP_map_vforeachnpc_post;
	struct HPMHookPoint *HP_map_vforeachregen_pre;
	struct HPMHookPoint *HP_map_vforeachregen_post;
	struct HPMHookPoint *HP_map_vforeachiddb_pre;
	struct HPMHookPoint *HP_map_vforeachiddb_post;
	struct HPMHookPoint *HP_map_vforeachinrange_pre;
	struct HPMHookPoint *HP_map_vforeachinrange_post;
	struct HPMHookPoint *HP_map_vforeachinshootrange_pre;
	struct HPMHookPoint *HP_map_vforeachinshootrange_post;
	struct HPMHookPoint *HP_map_vforeachinarea_pre;
	struct HPMHookPoint *HP_map_vforeachinarea_post;
	struct HPMHookPoint *HP_map_vforcountinrange_pre;
	struct HPMHookPoint *HP_map_vforcountinrange_post;
	struct HPMHookPoint *HP_map_vforcountinarea_pre;
	struct HPMHookPoint *HP_map_vforcountinarea_post;
	struct HPMHookPoint *HP_map_vforeachinmovearea_pre;
	struct HPMHookPoint *HP_map_vforeachinmovearea_post;
	struct HPMHookPoint *HP_map_vforeachincell_pre;
	struct HPMHookPoint *HP_map_vforeachincell_post;
	struct HPMHookPoint *HP_map_vforeachinpath_pre;
	struct HPMHookPoint *HP_map_vforeachinpath_post;
	struct HPMHookPoint *HP_map_vforeachinmap_pre;
	struct HPMHookPoint *HP_map_vforeachinmap_post;
	struct HPMHookPoint *HP_map_vforeachininstance_pre;
	struct HPMHookPoint *HP_map_vforeachininstance_post;
	struct HPMHookPoint *HP_map_id2sd_pre;
	struct HPMHookPoint *HP_map_id2sd_post;
	struct HPMHookPoint *HP_map_id2md_pre;
	struct HPMHookPoint *HP_map_id2md_post;
	struct HPMHookPoint *HP_map_id2nd_pre;
	struct HPMHookPoint *HP_map_id2nd_post;
	struct HPMHookPoint *HP_map_id2hd_pre;
	struct HPMHookPoint *HP_map_id2hd_post;
	struct HPMHookPoint *HP_map_id2mc_pre;
	struct HPMHookPoint *HP_map_id2mc_post;
	struct HPMHookPoint *HP_map_id2cd_pre;
	struct HPMHookPoint *HP_map_id2cd_post;
	struct HPMHookPoint *HP_map_id2bl_pre;
	struct HPMHookPoint *HP_map_id2bl_post;
	struct HPMHookPoint *HP_map_blid_exists_pre;
	struct HPMHookPoint *HP_map_blid_exists_post;
	struct HPMHookPoint *HP_map_mapindex2mapid_pre;
	struct HPMHookPoint *HP_map_mapindex2mapid_post;
	struct HPMHookPoint *HP_map_mapname2mapid_pre;
	struct HPMHookPoint *HP_map_mapname2mapid_post;
	struct HPMHookPoint *HP_map_mapname2ipport_pre;
	struct HPMHookPoint *HP_map_mapname2ipport_post;
	struct HPMHookPoint *HP_map_setipport_pre;
	struct HPMHookPoint *HP_map_setipport_post;
	struct HPMHookPoint *HP_map_eraseipport_pre;
	struct HPMHookPoint *HP_map_eraseipport_post;
	struct HPMHookPoint *HP_map_eraseallipport_pre;
	struct HPMHookPoint *HP_map_eraseallipport_post;
	struct HPMHookPoint *HP_map_addiddb_pre;
	struct HPMHookPoint *HP_map_addiddb_post;
	struct HPMHookPoint *HP_map_deliddb_pre;
	struct HPMHookPoint *HP_map_deliddb_post;
	struct HPMHookPoint *HP_map_nick2sd_pre;
	struct HPMHookPoint *HP_map_nick2sd_post;
	struct HPMHookPoint *HP_map_getmob_boss_pre;
	struct HPMHookPoint *HP_map_getmob_boss_post;
	struct HPMHookPoint *HP_map_id2boss_pre;
	struct HPMHookPoint *HP_map_id2boss_post;
	struct HPMHookPoint *HP_map_reloadnpc_pre;
	struct HPMHookPoint *HP_map_reloadnpc_post;
	struct HPMHookPoint *HP_map_check_dir_pre;
	struct HPMHookPoint *HP_map_check_dir_post;
	struct HPMHookPoint *HP_map_calc_dir_pre;
	struct HPMHookPoint *HP_map_calc_dir_post;
	struct HPMHookPoint *HP_map_random_dir_pre;
	struct HPMHookPoint *HP_map_random_dir_post;
	struct HPMHookPoint *HP_map_cleanup_sub_pre;
	struct HPMHookPoint *HP_map_cleanup_sub_post;
	struct HPMHookPoint *HP_map_delmap_pre;
	struct HPMHookPoint *HP_map_delmap_post;
	struct HPMHookPoint *HP_map_flags_init_pre;
	struct HPMHookPoint *HP_map_flags_init_post;
	struct HPMHookPoint *HP_map_iwall_set_pre;
	struct HPMHookPoint *HP_map_iwall_set_post;
	struct HPMHookPoint *HP_map_iwall_get_pre;
	struct HPMHookPoint *HP_map_iwall_get_post;
	struct HPMHookPoint *HP_map_iwall_remove_pre;
	struct HPMHookPoint *HP_map_iwall_remove_post;
	struct HPMHookPoint *HP_map_addmobtolist_pre;
	struct HPMHookPoint *HP_map_addmobtolist_post;
	struct HPMHookPoint *HP_map_spawnmobs_pre;
	struct HPMHookPoint *HP_map_spawnmobs_post;
	struct HPMHookPoint *HP_map_removemobs_pre;
	struct HPMHookPoint *HP_map_removemobs_post;
	struct HPMHookPoint *HP_map_addmap2db_pre;
	struct HPMHookPoint *HP_map_addmap2db_post;
	struct HPMHookPoint *HP_map_removemapdb_pre;
	struct HPMHookPoint *HP_map_removemapdb_post;
	struct HPMHookPoint *HP_map_clean_pre;
	struct HPMHookPoint *HP_map_clean_post;
	struct HPMHookPoint *HP_map_do_shutdown_pre;
	struct HPMHookPoint *HP_map_do_shutdown_post;
	struct HPMHookPoint *HP_map_freeblock_timer_pre;
	struct HPMHookPoint *HP_map_freeblock_timer_post;
	struct HPMHookPoint *HP_map_searchrandfreecell_pre;
	struct HPMHookPoint *HP_map_searchrandfreecell_post;
	struct HPMHookPoint *HP_map_count_sub_pre;
	struct HPMHookPoint *HP_map_count_sub_post;
	struct HPMHookPoint *HP_map_create_charid2nick_pre;
	struct HPMHookPoint *HP_map_create_charid2nick_post;
	struct HPMHookPoint *HP_map_removemobs_sub_pre;
	struct HPMHookPoint *HP_map_removemobs_sub_post;
	struct HPMHookPoint *HP_map_gat2cell_pre;
	struct HPMHookPoint *HP_map_gat2cell_post;
	struct HPMHookPoint *HP_map_cell2gat_pre;
	struct HPMHookPoint *HP_map_cell2gat_post;
	struct HPMHookPoint *HP_map_getcellp_pre;
	struct HPMHookPoint *HP_map_getcellp_post;
	struct HPMHookPoint *HP_map_setcell_pre;
	struct HPMHookPoint *HP_map_setcell_post;
	struct HPMHookPoint *HP_map_sub_getcellp_pre;
	struct HPMHookPoint *HP_map_sub_getcellp_post;
	struct HPMHookPoint *HP_map_sub_setcell_pre;
	struct HPMHookPoint *HP_map_sub_setcell_post;
	struct HPMHookPoint *HP_map_iwall_nextxy_pre;
	struct HPMHookPoint *HP_map_iwall_nextxy_post;
	struct HPMHookPoint *HP_map_create_map_data_other_server_pre;
	struct HPMHookPoint *HP_map_create_map_data_other_server_post;
	struct HPMHookPoint *HP_map_eraseallipport_sub_pre;
	struct HPMHookPoint *HP_map_eraseallipport_sub_post;
	struct HPMHookPoint *HP_map_init_mapcache_pre;
	struct HPMHookPoint *HP_map_init_mapcache_post;
	struct HPMHookPoint *HP_map_readfromcache_pre;
	struct HPMHookPoint *HP_map_readfromcache_post;
	struct HPMHookPoint *HP_map_addmap_pre;
	struct HPMHookPoint *HP_map_addmap_post;
	struct HPMHookPoint *HP_map_delmapid_pre;
	struct HPMHookPoint *HP_map_delmapid_post;
	struct HPMHookPoint *HP_map_zone_db_clear_pre;
	struct HPMHookPoint *HP_map_zone_db_clear_post;
	struct HPMHookPoint *HP_map_list_final_pre;
	struct HPMHookPoint *HP_map_list_final_post;
	struct HPMHookPoint *HP_map_waterheight_pre;
	struct HPMHookPoint *HP_map_waterheight_post;
	struct HPMHookPoint *HP_map_readgat_pre;
	struct HPMHookPoint *HP_map_readgat_post;
	struct HPMHookPoint *HP_map_readallmaps_pre;
	struct HPMHookPoint *HP_map_readallmaps_post;
	struct HPMHookPoint *HP_map_config_read_pre;
	struct HPMHookPoint *HP_map_config_read_post;
	struct HPMHookPoint *HP_map_config_read_sub_pre;
	struct HPMHookPoint *HP_map_config_read_sub_post;
	struct HPMHookPoint *HP_map_reloadnpc_sub_pre;
	struct HPMHookPoint *HP_map_reloadnpc_sub_post;
	struct HPMHookPoint *HP_map_inter_config_read_pre;
	struct HPMHookPoint *HP_map_inter_config_read_post;
	struct HPMHookPoint *HP_map_sql_init_pre;
	struct HPMHookPoint *HP_map_sql_init_post;
	struct HPMHookPoint *HP_map_sql_close_pre;
	struct HPMHookPoint *HP_map_sql_close_post;
	struct HPMHookPoint *HP_map_zone_mf_cache_pre;
	struct HPMHookPoint *HP_map_zone_mf_cache_post;
	struct HPMHookPoint *HP_map_zone_str2itemid_pre;
	struct HPMHookPoint *HP_map_zone_str2itemid_post;
	struct HPMHookPoint *HP_map_zone_str2skillid_pre;
	struct HPMHookPoint *HP_map_zone_str2skillid_post;
	struct HPMHookPoint *HP_map_zone_bl_type_pre;
	struct HPMHookPoint *HP_map_zone_bl_type_post;
	struct HPMHookPoint *HP_map_read_zone_db_pre;
	struct HPMHookPoint *HP_map_read_zone_db_post;
	struct HPMHookPoint *HP_map_db_final_pre;
	struct HPMHookPoint *HP_map_db_final_post;
	struct HPMHookPoint *HP_map_nick_db_final_pre;
	struct HPMHookPoint *HP_map_nick_db_final_post;
	struct HPMHookPoint *HP_map_cleanup_db_sub_pre;
	struct HPMHookPoint *HP_map_cleanup_db_sub_post;
	struct HPMHookPoint *HP_map_abort_sub_pre;
	struct HPMHookPoint *HP_map_abort_sub_post;
	struct HPMHookPoint *HP_map_helpscreen_pre;
	struct HPMHookPoint *HP_map_helpscreen_post;
	struct HPMHookPoint *HP_map_versionscreen_pre;
	struct HPMHookPoint *HP_map_versionscreen_post;
	struct HPMHookPoint *HP_map_arg_next_value_pre;
	struct HPMHookPoint *HP_map_arg_next_value_post;
	struct HPMHookPoint *HP_map_addblcell_pre;
	struct HPMHookPoint *HP_map_addblcell_post;
	struct HPMHookPoint *HP_map_delblcell_pre;
	struct HPMHookPoint *HP_map_delblcell_post;
	struct HPMHookPoint *HP_map_get_new_bonus_id_pre;
	struct HPMHookPoint *HP_map_get_new_bonus_id_post;
	struct HPMHookPoint *HP_map_add_questinfo_pre;
	struct HPMHookPoint *HP_map_add_questinfo_post;
	struct HPMHookPoint *HP_map_remove_questinfo_pre;
	struct HPMHookPoint *HP_map_remove_questinfo_post;
	struct HPMHookPoint *HP_map_merge_zone_pre;
	struct HPMHookPoint *HP_map_merge_zone_post;
	struct HPMHookPoint *HP_mapit_alloc_pre;
	struct HPMHookPoint *HP_mapit_alloc_post;
	struct HPMHookPoint *HP_mapit_free_pre;
	struct HPMHookPoint *HP_mapit_free_post;
	struct HPMHookPoint *HP_mapit_first_pre;
	struct HPMHookPoint *HP_mapit_first_post;
	struct HPMHookPoint *HP_mapit_last_pre;
	struct HPMHookPoint *HP_mapit_last_post;
	struct HPMHookPoint *HP_mapit_next_pre;
	struct HPMHookPoint *HP_mapit_next_post;
	struct HPMHookPoint *HP_mapit_prev_pre;
	struct HPMHookPoint *HP_mapit_prev_post;
	struct HPMHookPoint *HP_mapit_exists_pre;
	struct HPMHookPoint *HP_mapit_exists_post;
	struct HPMHookPoint *HP_mapreg_init_pre;
	struct HPMHookPoint *HP_mapreg_init_post;
	struct HPMHookPoint *HP_mapreg_final_pre;
	struct HPMHookPoint *HP_mapreg_final_post;
	struct HPMHookPoint *HP_mapreg_readreg_pre;
	struct HPMHookPoint *HP_mapreg_readreg_post;
	struct HPMHookPoint *HP_mapreg_readregstr_pre;
	struct HPMHookPoint *HP_mapreg_readregstr_post;
	struct HPMHookPoint *HP_mapreg_setreg_pre;
	struct HPMHookPoint *HP_mapreg_setreg_post;
	struct HPMHookPoint *HP_mapreg_setregstr_pre;
	struct HPMHookPoint *HP_mapreg_setregstr_post;
	struct HPMHookPoint *HP_mapreg_load_pre;
	struct HPMHookPoint *HP_mapreg_load_post;
	struct HPMHookPoint *HP_mapreg_save_pre;
	struct HPMHookPoint *HP_mapreg_save_post;
	struct HPMHookPoint *HP_mapreg_save_timer_pre;
	struct HPMHookPoint *HP_mapreg_save_timer_post;
	struct HPMHookPoint *HP_mapreg_destroyreg_pre;
	struct HPMHookPoint *HP_mapreg_destroyreg_post;
	struct HPMHookPoint *HP_mapreg_reload_pre;
	struct HPMHookPoint *HP_mapreg_reload_post;
	struct HPMHookPoint *HP_mapreg_config_read_pre;
	struct HPMHookPoint *HP_mapreg_config_read_post;
	struct HPMHookPoint *HP_mercenary_init_pre;
	struct HPMHookPoint *HP_mercenary_init_post;
	struct HPMHookPoint *HP_mercenary_class_pre;
	struct HPMHookPoint *HP_mercenary_class_post;
	struct HPMHookPoint *HP_mercenary_get_viewdata_pre;
	struct HPMHookPoint *HP_mercenary_get_viewdata_post;
	struct HPMHookPoint *HP_mercenary_create_pre;
	struct HPMHookPoint *HP_mercenary_create_post;
	struct HPMHookPoint *HP_mercenary_data_received_pre;
	struct HPMHookPoint *HP_mercenary_data_received_post;
	struct HPMHookPoint *HP_mercenary_save_pre;
	struct HPMHookPoint *HP_mercenary_save_post;
	struct HPMHookPoint *HP_mercenary_heal_pre;
	struct HPMHookPoint *HP_mercenary_heal_post;
	struct HPMHookPoint *HP_mercenary_dead_pre;
	struct HPMHookPoint *HP_mercenary_dead_post;
	struct HPMHookPoint *HP_mercenary_delete_pre;
	struct HPMHookPoint *HP_mercenary_delete_post;
	struct HPMHookPoint *HP_mercenary_contract_stop_pre;
	struct HPMHookPoint *HP_mercenary_contract_stop_post;
	struct HPMHookPoint *HP_mercenary_get_lifetime_pre;
	struct HPMHookPoint *HP_mercenary_get_lifetime_post;
	struct HPMHookPoint *HP_mercenary_get_guild_pre;
	struct HPMHookPoint *HP_mercenary_get_guild_post;
	struct HPMHookPoint *HP_mercenary_get_faith_pre;
	struct HPMHookPoint *HP_mercenary_get_faith_post;
	struct HPMHookPoint *HP_mercenary_set_faith_pre;
	struct HPMHookPoint *HP_mercenary_set_faith_post;
	struct HPMHookPoint *HP_mercenary_get_calls_pre;
	struct HPMHookPoint *HP_mercenary_get_calls_post;
	struct HPMHookPoint *HP_mercenary_set_calls_pre;
	struct HPMHookPoint *HP_mercenary_set_calls_post;
	struct HPMHookPoint *HP_mercenary_kills_pre;
	struct HPMHookPoint *HP_mercenary_kills_post;
	struct HPMHookPoint *HP_mercenary_checkskill_pre;
	struct HPMHookPoint *HP_mercenary_checkskill_post;
	struct HPMHookPoint *HP_mercenary_read_db_pre;
	struct HPMHookPoint *HP_mercenary_read_db_post;
	struct HPMHookPoint *HP_mercenary_read_skilldb_pre;
	struct HPMHookPoint *HP_mercenary_read_skilldb_post;
	struct HPMHookPoint *HP_mercenary_killbonus_pre;
	struct HPMHookPoint *HP_mercenary_killbonus_post;
	struct HPMHookPoint *HP_mercenary_search_index_pre;
	struct HPMHookPoint *HP_mercenary_search_index_post;
	struct HPMHookPoint *HP_mercenary_contract_end_timer_pre;
	struct HPMHookPoint *HP_mercenary_contract_end_timer_post;
	struct HPMHookPoint *HP_mercenary_read_db_sub_pre;
	struct HPMHookPoint *HP_mercenary_read_db_sub_post;
	struct HPMHookPoint *HP_mercenary_read_skill_db_sub_pre;
	struct HPMHookPoint *HP_mercenary_read_skill_db_sub_post;
	struct HPMHookPoint *HP_mob_init_pre;
	struct HPMHookPoint *HP_mob_init_post;
	struct HPMHookPoint *HP_mob_final_pre;
	struct HPMHookPoint *HP_mob_final_post;
	struct HPMHookPoint *HP_mob_reload_pre;
	struct HPMHookPoint *HP_mob_reload_post;
	struct HPMHookPoint *HP_mob_db_pre;
	struct HPMHookPoint *HP_mob_db_post;
	struct HPMHookPoint *HP_mob_chat_pre;
	struct HPMHookPoint *HP_mob_chat_post;
	struct HPMHookPoint *HP_mob_makedummymobdb_pre;
	struct HPMHookPoint *HP_mob_makedummymobdb_post;
	struct HPMHookPoint *HP_mob_spawn_guardian_sub_pre;
	struct HPMHookPoint *HP_mob_spawn_guardian_sub_post;
	struct HPMHookPoint *HP_mob_skill_id2skill_idx_pre;
	struct HPMHookPoint *HP_mob_skill_id2skill_idx_post;
	struct HPMHookPoint *HP_mob_db_searchname_pre;
	struct HPMHookPoint *HP_mob_db_searchname_post;
	struct HPMHookPoint *HP_mob_db_searchname_array_sub_pre;
	struct HPMHookPoint *HP_mob_db_searchname_array_sub_post;
	struct HPMHookPoint *HP_mob_mvptomb_create_pre;
	struct HPMHookPoint *HP_mob_mvptomb_create_post;
	struct HPMHookPoint *HP_mob_mvptomb_destroy_pre;
	struct HPMHookPoint *HP_mob_mvptomb_destroy_post;
	struct HPMHookPoint *HP_mob_db_searchname_array_pre;
	struct HPMHookPoint *HP_mob_db_searchname_array_post;
	struct HPMHookPoint *HP_mob_db_checkid_pre;
	struct HPMHookPoint *HP_mob_db_checkid_post;
	struct HPMHookPoint *HP_mob_get_viewdata_pre;
	struct HPMHookPoint *HP_mob_get_viewdata_post;
	struct HPMHookPoint *HP_mob_parse_dataset_pre;
	struct HPMHookPoint *HP_mob_parse_dataset_post;
	struct HPMHookPoint *HP_mob_spawn_dataset_pre;
	struct HPMHookPoint *HP_mob_spawn_dataset_post;
	struct HPMHookPoint *HP_mob_get_random_id_pre;
	struct HPMHookPoint *HP_mob_get_random_id_post;
	struct HPMHookPoint *HP_mob_ksprotected_pre;
	struct HPMHookPoint *HP_mob_ksprotected_post;
	struct HPMHookPoint *HP_mob_once_spawn_sub_pre;
	struct HPMHookPoint *HP_mob_once_spawn_sub_post;
	struct HPMHookPoint *HP_mob_once_spawn_pre;
	struct HPMHookPoint *HP_mob_once_spawn_post;
	struct HPMHookPoint *HP_mob_once_spawn_area_pre;
	struct HPMHookPoint *HP_mob_once_spawn_area_post;
	struct HPMHookPoint *HP_mob_spawn_guardian_pre;
	struct HPMHookPoint *HP_mob_spawn_guardian_post;
	struct HPMHookPoint *HP_mob_spawn_bg_pre;
	struct HPMHookPoint *HP_mob_spawn_bg_post;
	struct HPMHookPoint *HP_mob_can_reach_pre;
	struct HPMHookPoint *HP_mob_can_reach_post;
	struct HPMHookPoint *HP_mob_linksearch_pre;
	struct HPMHookPoint *HP_mob_linksearch_post;
	struct HPMHookPoint *HP_mob_delayspawn_pre;
	struct HPMHookPoint *HP_mob_delayspawn_post;
	struct HPMHookPoint *HP_mob_setdelayspawn_pre;
	struct HPMHookPoint *HP_mob_setdelayspawn_post;
	struct HPMHookPoint *HP_mob_count_sub_pre;
	struct HPMHookPoint *HP_mob_count_sub_post;
	struct HPMHookPoint *HP_mob_spawn_pre;
	struct HPMHookPoint *HP_mob_spawn_post;
	struct HPMHookPoint *HP_mob_can_changetarget_pre;
	struct HPMHookPoint *HP_mob_can_changetarget_post;
	struct HPMHookPoint *HP_mob_target_pre;
	struct HPMHookPoint *HP_mob_target_post;
	struct HPMHookPoint *HP_mob_ai_sub_hard_activesearch_pre;
	struct HPMHookPoint *HP_mob_ai_sub_hard_activesearch_post;
	struct HPMHookPoint *HP_mob_ai_sub_hard_changechase_pre;
	struct HPMHookPoint *HP_mob_ai_sub_hard_changechase_post;
	struct HPMHookPoint *HP_mob_ai_sub_hard_bg_ally_pre;
	struct HPMHookPoint *HP_mob_ai_sub_hard_bg_ally_post;
	struct HPMHookPoint *HP_mob_ai_sub_hard_lootsearch_pre;
	struct HPMHookPoint *HP_mob_ai_sub_hard_lootsearch_post;
	struct HPMHookPoint *HP_mob_warpchase_sub_pre;
	struct HPMHookPoint *HP_mob_warpchase_sub_post;
	struct HPMHookPoint *HP_mob_ai_sub_hard_slavemob_pre;
	struct HPMHookPoint *HP_mob_ai_sub_hard_slavemob_post;
	struct HPMHookPoint *HP_mob_unlocktarget_pre;
	struct HPMHookPoint *HP_mob_unlocktarget_post;
	struct HPMHookPoint *HP_mob_randomwalk_pre;
	struct HPMHookPoint *HP_mob_randomwalk_post;
	struct HPMHookPoint *HP_mob_warpchase_pre;
	struct HPMHookPoint *HP_mob_warpchase_post;
	struct HPMHookPoint *HP_mob_ai_sub_hard_pre;
	struct HPMHookPoint *HP_mob_ai_sub_hard_post;
	struct HPMHookPoint *HP_mob_ai_sub_hard_timer_pre;
	struct HPMHookPoint *HP_mob_ai_sub_hard_timer_post;
	struct HPMHookPoint *HP_mob_ai_sub_foreachclient_pre;
	struct HPMHookPoint *HP_mob_ai_sub_foreachclient_post;
	struct HPMHookPoint *HP_mob_ai_sub_lazy_pre;
	struct HPMHookPoint *HP_mob_ai_sub_lazy_post;
	struct HPMHookPoint *HP_mob_ai_lazy_pre;
	struct HPMHookPoint *HP_mob_ai_lazy_post;
	struct HPMHookPoint *HP_mob_ai_hard_pre;
	struct HPMHookPoint *HP_mob_ai_hard_post;
	struct HPMHookPoint *HP_mob_setdropitem_pre;
	struct HPMHookPoint *HP_mob_setdropitem_post;
	struct HPMHookPoint *HP_mob_setlootitem_pre;
	struct HPMHookPoint *HP_mob_setlootitem_post;
	struct HPMHookPoint *HP_mob_delay_item_drop_pre;
	struct HPMHookPoint *HP_mob_delay_item_drop_post;
	struct HPMHookPoint *HP_mob_item_drop_pre;
	struct HPMHookPoint *HP_mob_item_drop_post;
	struct HPMHookPoint *HP_mob_timer_delete_pre;
	struct HPMHookPoint *HP_mob_timer_delete_post;
	struct HPMHookPoint *HP_mob_deleteslave_sub_pre;
	struct HPMHookPoint *HP_mob_deleteslave_sub_post;
	struct HPMHookPoint *HP_mob_deleteslave_pre;
	struct HPMHookPoint *HP_mob_deleteslave_post;
	struct HPMHookPoint *HP_mob_respawn_pre;
	struct HPMHookPoint *HP_mob_respawn_post;
	struct HPMHookPoint *HP_mob_log_damage_pre;
	struct HPMHookPoint *HP_mob_log_damage_post;
	struct HPMHookPoint *HP_mob_damage_pre;
	struct HPMHookPoint *HP_mob_damage_post;
	struct HPMHookPoint *HP_mob_dead_pre;
	struct HPMHookPoint *HP_mob_dead_post;
	struct HPMHookPoint *HP_mob_revive_pre;
	struct HPMHookPoint *HP_mob_revive_post;
	struct HPMHookPoint *HP_mob_guardian_guildchange_pre;
	struct HPMHookPoint *HP_mob_guardian_guildchange_post;
	struct HPMHookPoint *HP_mob_random_class_pre;
	struct HPMHookPoint *HP_mob_random_class_post;
	struct HPMHookPoint *HP_mob_class_change_pre;
	struct HPMHookPoint *HP_mob_class_change_post;
	struct HPMHookPoint *HP_mob_heal_pre;
	struct HPMHookPoint *HP_mob_heal_post;
	struct HPMHookPoint *HP_mob_warpslave_sub_pre;
	struct HPMHookPoint *HP_mob_warpslave_sub_post;
	struct HPMHookPoint *HP_mob_warpslave_pre;
	struct HPMHookPoint *HP_mob_warpslave_post;
	struct HPMHookPoint *HP_mob_countslave_sub_pre;
	struct HPMHookPoint *HP_mob_countslave_sub_post;
	struct HPMHookPoint *HP_mob_countslave_pre;
	struct HPMHookPoint *HP_mob_countslave_post;
	struct HPMHookPoint *HP_mob_summonslave_pre;
	struct HPMHookPoint *HP_mob_summonslave_post;
	struct HPMHookPoint *HP_mob_getfriendhprate_sub_pre;
	struct HPMHookPoint *HP_mob_getfriendhprate_sub_post;
	struct HPMHookPoint *HP_mob_getfriendhprate_pre;
	struct HPMHookPoint *HP_mob_getfriendhprate_post;
	struct HPMHookPoint *HP_mob_getmasterhpltmaxrate_pre;
	struct HPMHookPoint *HP_mob_getmasterhpltmaxrate_post;
	struct HPMHookPoint *HP_mob_getfriendstatus_sub_pre;
	struct HPMHookPoint *HP_mob_getfriendstatus_sub_post;
	struct HPMHookPoint *HP_mob_getfriendstatus_pre;
	struct HPMHookPoint *HP_mob_getfriendstatus_post;
	struct HPMHookPoint *HP_mob_skill_use_pre;
	struct HPMHookPoint *HP_mob_skill_use_post;
	struct HPMHookPoint *HP_mob_skill_event_pre;
	struct HPMHookPoint *HP_mob_skill_event_post;
	struct HPMHookPoint *HP_mob_is_clone_pre;
	struct HPMHookPoint *HP_mob_is_clone_post;
	struct HPMHookPoint *HP_mob_clone_spawn_pre;
	struct HPMHookPoint *HP_mob_clone_spawn_post;
	struct HPMHookPoint *HP_mob_clone_delete_pre;
	struct HPMHookPoint *HP_mob_clone_delete_post;
	struct HPMHookPoint *HP_mob_drop_adjust_pre;
	struct HPMHookPoint *HP_mob_drop_adjust_post;
	struct HPMHookPoint *HP_mob_item_dropratio_adjust_pre;
	struct HPMHookPoint *HP_mob_item_dropratio_adjust_post;
	struct HPMHookPoint *HP_mob_parse_dbrow_pre;
	struct HPMHookPoint *HP_mob_parse_dbrow_post;
	struct HPMHookPoint *HP_mob_readdb_sub_pre;
	struct HPMHookPoint *HP_mob_readdb_sub_post;
	struct HPMHookPoint *HP_mob_readdb_pre;
	struct HPMHookPoint *HP_mob_readdb_post;
	struct HPMHookPoint *HP_mob_read_sqldb_pre;
	struct HPMHookPoint *HP_mob_read_sqldb_post;
	struct HPMHookPoint *HP_mob_name_constants_pre;
	struct HPMHookPoint *HP_mob_name_constants_post;
	struct HPMHookPoint *HP_mob_readdb_mobavail_pre;
	struct HPMHookPoint *HP_mob_readdb_mobavail_post;
	struct HPMHookPoint *HP_mob_read_randommonster_pre;
	struct HPMHookPoint *HP_mob_read_randommonster_post;
	struct HPMHookPoint *HP_mob_parse_row_chatdb_pre;
	struct HPMHookPoint *HP_mob_parse_row_chatdb_post;
	struct HPMHookPoint *HP_mob_readchatdb_pre;
	struct HPMHookPoint *HP_mob_readchatdb_post;
	struct HPMHookPoint *HP_mob_parse_row_mobskilldb_pre;
	struct HPMHookPoint *HP_mob_parse_row_mobskilldb_post;
	struct HPMHookPoint *HP_mob_readskilldb_pre;
	struct HPMHookPoint *HP_mob_readskilldb_post;
	struct HPMHookPoint *HP_mob_read_sqlskilldb_pre;
	struct HPMHookPoint *HP_mob_read_sqlskilldb_post;
	struct HPMHookPoint *HP_mob_readdb_race2_pre;
	struct HPMHookPoint *HP_mob_readdb_race2_post;
	struct HPMHookPoint *HP_mob_readdb_itemratio_pre;
	struct HPMHookPoint *HP_mob_readdb_itemratio_post;
	struct HPMHookPoint *HP_mob_load_pre;
	struct HPMHookPoint *HP_mob_load_post;
	struct HPMHookPoint *HP_mob_clear_spawninfo_pre;
	struct HPMHookPoint *HP_mob_clear_spawninfo_post;
	struct HPMHookPoint *HP_npc_init_pre;
	struct HPMHookPoint *HP_npc_init_post;
	struct HPMHookPoint *HP_npc_final_pre;
	struct HPMHookPoint *HP_npc_final_post;
	struct HPMHookPoint *HP_npc_get_new_npc_id_pre;
	struct HPMHookPoint *HP_npc_get_new_npc_id_post;
	struct HPMHookPoint *HP_npc_get_viewdata_pre;
	struct HPMHookPoint *HP_npc_get_viewdata_post;
	struct HPMHookPoint *HP_npc_isnear_sub_pre;
	struct HPMHookPoint *HP_npc_isnear_sub_post;
	struct HPMHookPoint *HP_npc_isnear_pre;
	struct HPMHookPoint *HP_npc_isnear_post;
	struct HPMHookPoint *HP_npc_ontouch_event_pre;
	struct HPMHookPoint *HP_npc_ontouch_event_post;
	struct HPMHookPoint *HP_npc_ontouch2_event_pre;
	struct HPMHookPoint *HP_npc_ontouch2_event_post;
	struct HPMHookPoint *HP_npc_enable_sub_pre;
	struct HPMHookPoint *HP_npc_enable_sub_post;
	struct HPMHookPoint *HP_npc_enable_pre;
	struct HPMHookPoint *HP_npc_enable_post;
	struct HPMHookPoint *HP_npc_name2id_pre;
	struct HPMHookPoint *HP_npc_name2id_post;
	struct HPMHookPoint *HP_npc_event_dequeue_pre;
	struct HPMHookPoint *HP_npc_event_dequeue_post;
	struct HPMHookPoint *HP_npc_event_export_create_pre;
	struct HPMHookPoint *HP_npc_event_export_create_post;
	struct HPMHookPoint *HP_npc_event_export_pre;
	struct HPMHookPoint *HP_npc_event_export_post;
	struct HPMHookPoint *HP_npc_event_sub_pre;
	struct HPMHookPoint *HP_npc_event_sub_post;
	struct HPMHookPoint *HP_npc_event_doall_sub_pre;
	struct HPMHookPoint *HP_npc_event_doall_sub_post;
	struct HPMHookPoint *HP_npc_event_do_pre;
	struct HPMHookPoint *HP_npc_event_do_post;
	struct HPMHookPoint *HP_npc_event_doall_id_pre;
	struct HPMHookPoint *HP_npc_event_doall_id_post;
	struct HPMHookPoint *HP_npc_event_doall_pre;
	struct HPMHookPoint *HP_npc_event_doall_post;
	struct HPMHookPoint *HP_npc_event_do_clock_pre;
	struct HPMHookPoint *HP_npc_event_do_clock_post;
	struct HPMHookPoint *HP_npc_event_do_oninit_pre;
	struct HPMHookPoint *HP_npc_event_do_oninit_post;
	struct HPMHookPoint *HP_npc_timerevent_export_pre;
	struct HPMHookPoint *HP_npc_timerevent_export_post;
	struct HPMHookPoint *HP_npc_timerevent_pre;
	struct HPMHookPoint *HP_npc_timerevent_post;
	struct HPMHookPoint *HP_npc_timerevent_start_pre;
	struct HPMHookPoint *HP_npc_timerevent_start_post;
	struct HPMHookPoint *HP_npc_timerevent_stop_pre;
	struct HPMHookPoint *HP_npc_timerevent_stop_post;
	struct HPMHookPoint *HP_npc_timerevent_quit_pre;
	struct HPMHookPoint *HP_npc_timerevent_quit_post;
	struct HPMHookPoint *HP_npc_gettimerevent_tick_pre;
	struct HPMHookPoint *HP_npc_gettimerevent_tick_post;
	struct HPMHookPoint *HP_npc_settimerevent_tick_pre;
	struct HPMHookPoint *HP_npc_settimerevent_tick_post;
	struct HPMHookPoint *HP_npc_event_pre;
	struct HPMHookPoint *HP_npc_event_post;
	struct HPMHookPoint *HP_npc_touch_areanpc_sub_pre;
	struct HPMHookPoint *HP_npc_touch_areanpc_sub_post;
	struct HPMHookPoint *HP_npc_touchnext_areanpc_pre;
	struct HPMHookPoint *HP_npc_touchnext_areanpc_post;
	struct HPMHookPoint *HP_npc_touch_areanpc_pre;
	struct HPMHookPoint *HP_npc_touch_areanpc_post;
	struct HPMHookPoint *HP_npc_touch_areanpc2_pre;
	struct HPMHookPoint *HP_npc_touch_areanpc2_post;
	struct HPMHookPoint *HP_npc_check_areanpc_pre;
	struct HPMHookPoint *HP_npc_check_areanpc_post;
	struct HPMHookPoint *HP_npc_checknear_pre;
	struct HPMHookPoint *HP_npc_checknear_post;
	struct HPMHookPoint *HP_npc_globalmessage_pre;
	struct HPMHookPoint *HP_npc_globalmessage_post;
	struct HPMHookPoint *HP_npc_run_tomb_pre;
	struct HPMHookPoint *HP_npc_run_tomb_post;
	struct HPMHookPoint *HP_npc_click_pre;
	struct HPMHookPoint *HP_npc_click_post;
	struct HPMHookPoint *HP_npc_scriptcont_pre;
	struct HPMHookPoint *HP_npc_scriptcont_post;
	struct HPMHookPoint *HP_npc_buysellsel_pre;
	struct HPMHookPoint *HP_npc_buysellsel_post;
	struct HPMHookPoint *HP_npc_cashshop_buylist_pre;
	struct HPMHookPoint *HP_npc_cashshop_buylist_post;
	struct HPMHookPoint *HP_npc_buylist_sub_pre;
	struct HPMHookPoint *HP_npc_buylist_sub_post;
	struct HPMHookPoint *HP_npc_cashshop_buy_pre;
	struct HPMHookPoint *HP_npc_cashshop_buy_post;
	struct HPMHookPoint *HP_npc_buylist_pre;
	struct HPMHookPoint *HP_npc_buylist_post;
	struct HPMHookPoint *HP_npc_selllist_sub_pre;
	struct HPMHookPoint *HP_npc_selllist_sub_post;
	struct HPMHookPoint *HP_npc_selllist_pre;
	struct HPMHookPoint *HP_npc_selllist_post;
	struct HPMHookPoint *HP_npc_remove_map_pre;
	struct HPMHookPoint *HP_npc_remove_map_post;
	struct HPMHookPoint *HP_npc_unload_ev_pre;
	struct HPMHookPoint *HP_npc_unload_ev_post;
	struct HPMHookPoint *HP_npc_unload_ev_label_pre;
	struct HPMHookPoint *HP_npc_unload_ev_label_post;
	struct HPMHookPoint *HP_npc_unload_dup_sub_pre;
	struct HPMHookPoint *HP_npc_unload_dup_sub_post;
	struct HPMHookPoint *HP_npc_unload_duplicates_pre;
	struct HPMHookPoint *HP_npc_unload_duplicates_post;
	struct HPMHookPoint *HP_npc_unload_pre;
	struct HPMHookPoint *HP_npc_unload_post;
	struct HPMHookPoint *HP_npc_clearsrcfile_pre;
	struct HPMHookPoint *HP_npc_clearsrcfile_post;
	struct HPMHookPoint *HP_npc_addsrcfile_pre;
	struct HPMHookPoint *HP_npc_addsrcfile_post;
	struct HPMHookPoint *HP_npc_delsrcfile_pre;
	struct HPMHookPoint *HP_npc_delsrcfile_post;
	struct HPMHookPoint *HP_npc_parsename_pre;
	struct HPMHookPoint *HP_npc_parsename_post;
	struct HPMHookPoint *HP_npc_parseview_pre;
	struct HPMHookPoint *HP_npc_parseview_post;
	struct HPMHookPoint *HP_npc_viewisid_pre;
	struct HPMHookPoint *HP_npc_viewisid_post;
	struct HPMHookPoint *HP_npc_add_warp_pre;
	struct HPMHookPoint *HP_npc_add_warp_post;
	struct HPMHookPoint *HP_npc_parse_warp_pre;
	struct HPMHookPoint *HP_npc_parse_warp_post;
	struct HPMHookPoint *HP_npc_parse_shop_pre;
	struct HPMHookPoint *HP_npc_parse_shop_post;
	struct HPMHookPoint *HP_npc_convertlabel_db_pre;
	struct HPMHookPoint *HP_npc_convertlabel_db_post;
	struct HPMHookPoint *HP_npc_skip_script_pre;
	struct HPMHookPoint *HP_npc_skip_script_post;
	struct HPMHookPoint *HP_npc_parse_script_pre;
	struct HPMHookPoint *HP_npc_parse_script_post;
	struct HPMHookPoint *HP_npc_parse_duplicate_pre;
	struct HPMHookPoint *HP_npc_parse_duplicate_post;
	struct HPMHookPoint *HP_npc_duplicate4instance_pre;
	struct HPMHookPoint *HP_npc_duplicate4instance_post;
	struct HPMHookPoint *HP_npc_setcells_pre;
	struct HPMHookPoint *HP_npc_setcells_post;
	struct HPMHookPoint *HP_npc_unsetcells_sub_pre;
	struct HPMHookPoint *HP_npc_unsetcells_sub_post;
	struct HPMHookPoint *HP_npc_unsetcells_pre;
	struct HPMHookPoint *HP_npc_unsetcells_post;
	struct HPMHookPoint *HP_npc_movenpc_pre;
	struct HPMHookPoint *HP_npc_movenpc_post;
	struct HPMHookPoint *HP_npc_setdisplayname_pre;
	struct HPMHookPoint *HP_npc_setdisplayname_post;
	struct HPMHookPoint *HP_npc_setclass_pre;
	struct HPMHookPoint *HP_npc_setclass_post;
	struct HPMHookPoint *HP_npc_do_atcmd_event_pre;
	struct HPMHookPoint *HP_npc_do_atcmd_event_post;
	struct HPMHookPoint *HP_npc_parse_function_pre;
	struct HPMHookPoint *HP_npc_parse_function_post;
	struct HPMHookPoint *HP_npc_parse_mob2_pre;
	struct HPMHookPoint *HP_npc_parse_mob2_post;
	struct HPMHookPoint *HP_npc_parse_mob_pre;
	struct HPMHookPoint *HP_npc_parse_mob_post;
	struct HPMHookPoint *HP_npc_parse_mapflag_pre;
	struct HPMHookPoint *HP_npc_parse_mapflag_post;
	struct HPMHookPoint *HP_npc_parsesrcfile_pre;
	struct HPMHookPoint *HP_npc_parsesrcfile_post;
	struct HPMHookPoint *HP_npc_script_event_pre;
	struct HPMHookPoint *HP_npc_script_event_post;
	struct HPMHookPoint *HP_npc_read_event_script_pre;
	struct HPMHookPoint *HP_npc_read_event_script_post;
	struct HPMHookPoint *HP_npc_path_db_clear_sub_pre;
	struct HPMHookPoint *HP_npc_path_db_clear_sub_post;
	struct HPMHookPoint *HP_npc_ev_label_db_clear_sub_pre;
	struct HPMHookPoint *HP_npc_ev_label_db_clear_sub_post;
	struct HPMHookPoint *HP_npc_reload_pre;
	struct HPMHookPoint *HP_npc_reload_post;
	struct HPMHookPoint *HP_npc_unloadfile_pre;
	struct HPMHookPoint *HP_npc_unloadfile_post;
	struct HPMHookPoint *HP_npc_do_clear_npc_pre;
	struct HPMHookPoint *HP_npc_do_clear_npc_post;
	struct HPMHookPoint *HP_npc_debug_warps_sub_pre;
	struct HPMHookPoint *HP_npc_debug_warps_sub_post;
	struct HPMHookPoint *HP_npc_debug_warps_pre;
	struct HPMHookPoint *HP_npc_debug_warps_post;
	struct HPMHookPoint *HP_npc_trader_count_funds_pre;
	struct HPMHookPoint *HP_npc_trader_count_funds_post;
	struct HPMHookPoint *HP_npc_trader_pay_pre;
	struct HPMHookPoint *HP_npc_trader_pay_post;
	struct HPMHookPoint *HP_npc_trader_update_pre;
	struct HPMHookPoint *HP_npc_trader_update_post;
	struct HPMHookPoint *HP_npc_market_buylist_pre;
	struct HPMHookPoint *HP_npc_market_buylist_post;
	struct HPMHookPoint *HP_npc_trader_open_pre;
	struct HPMHookPoint *HP_npc_trader_open_post;
	struct HPMHookPoint *HP_npc_market_fromsql_pre;
	struct HPMHookPoint *HP_npc_market_fromsql_post;
	struct HPMHookPoint *HP_npc_market_tosql_pre;
	struct HPMHookPoint *HP_npc_market_tosql_post;
	struct HPMHookPoint *HP_npc_market_delfromsql_pre;
	struct HPMHookPoint *HP_npc_market_delfromsql_post;
	struct HPMHookPoint *HP_npc_market_delfromsql_sub_pre;
	struct HPMHookPoint *HP_npc_market_delfromsql_sub_post;
	struct HPMHookPoint *HP_npc_secure_timeout_timer_pre;
	struct HPMHookPoint *HP_npc_secure_timeout_timer_post;
	struct HPMHookPoint *HP_party_init_pre;
	struct HPMHookPoint *HP_party_init_post;
	struct HPMHookPoint *HP_party_final_pre;
	struct HPMHookPoint *HP_party_final_post;
	struct HPMHookPoint *HP_party_search_pre;
	struct HPMHookPoint *HP_party_search_post;
	struct HPMHookPoint *HP_party_searchname_pre;
	struct HPMHookPoint *HP_party_searchname_post;
	struct HPMHookPoint *HP_party_getmemberid_pre;
	struct HPMHookPoint *HP_party_getmemberid_post;
	struct HPMHookPoint *HP_party_getavailablesd_pre;
	struct HPMHookPoint *HP_party_getavailablesd_post;
	struct HPMHookPoint *HP_party_create_pre;
	struct HPMHookPoint *HP_party_create_post;
	struct HPMHookPoint *HP_party_created_pre;
	struct HPMHookPoint *HP_party_created_post;
	struct HPMHookPoint *HP_party_request_info_pre;
	struct HPMHookPoint *HP_party_request_info_post;
	struct HPMHookPoint *HP_party_invite_pre;
	struct HPMHookPoint *HP_party_invite_post;
	struct HPMHookPoint *HP_party_member_joined_pre;
	struct HPMHookPoint *HP_party_member_joined_post;
	struct HPMHookPoint *HP_party_member_added_pre;
	struct HPMHookPoint *HP_party_member_added_post;
	struct HPMHookPoint *HP_party_leave_pre;
	struct HPMHookPoint *HP_party_leave_post;
	struct HPMHookPoint *HP_party_removemember_pre;
	struct HPMHookPoint *HP_party_removemember_post;
	struct HPMHookPoint *HP_party_member_withdraw_pre;
	struct HPMHookPoint *HP_party_member_withdraw_post;
	struct HPMHookPoint *HP_party_reply_invite_pre;
	struct HPMHookPoint *HP_party_reply_invite_post;
	struct HPMHookPoint *HP_party_recv_noinfo_pre;
	struct HPMHookPoint *HP_party_recv_noinfo_post;
	struct HPMHookPoint *HP_party_recv_info_pre;
	struct HPMHookPoint *HP_party_recv_info_post;
	struct HPMHookPoint *HP_party_recv_movemap_pre;
	struct HPMHookPoint *HP_party_recv_movemap_post;
	struct HPMHookPoint *HP_party_broken_pre;
	struct HPMHookPoint *HP_party_broken_post;
	struct HPMHookPoint *HP_party_optionchanged_pre;
	struct HPMHookPoint *HP_party_optionchanged_post;
	struct HPMHookPoint *HP_party_changeoption_pre;
	struct HPMHookPoint *HP_party_changeoption_post;
	struct HPMHookPoint *HP_party_changeleader_pre;
	struct HPMHookPoint *HP_party_changeleader_post;
	struct HPMHookPoint *HP_party_send_movemap_pre;
	struct HPMHookPoint *HP_party_send_movemap_post;
	struct HPMHookPoint *HP_party_send_levelup_pre;
	struct HPMHookPoint *HP_party_send_levelup_post;
	struct HPMHookPoint *HP_party_send_logout_pre;
	struct HPMHookPoint *HP_party_send_logout_post;
	struct HPMHookPoint *HP_party_send_message_pre;
	struct HPMHookPoint *HP_party_send_message_post;
	struct HPMHookPoint *HP_party_recv_message_pre;
	struct HPMHookPoint *HP_party_recv_message_post;
	struct HPMHookPoint *HP_party_skill_check_pre;
	struct HPMHookPoint *HP_party_skill_check_post;
	struct HPMHookPoint *HP_party_send_xy_clear_pre;
	struct HPMHookPoint *HP_party_send_xy_clear_post;
	struct HPMHookPoint *HP_party_exp_share_pre;
	struct HPMHookPoint *HP_party_exp_share_post;
	struct HPMHookPoint *HP_party_share_loot_pre;
	struct HPMHookPoint *HP_party_share_loot_post;
	struct HPMHookPoint *HP_party_send_dot_remove_pre;
	struct HPMHookPoint *HP_party_send_dot_remove_post;
	struct HPMHookPoint *HP_party_sub_count_pre;
	struct HPMHookPoint *HP_party_sub_count_post;
	struct HPMHookPoint *HP_party_sub_count_chorus_pre;
	struct HPMHookPoint *HP_party_sub_count_chorus_post;
	struct HPMHookPoint *HP_party_booking_register_pre;
	struct HPMHookPoint *HP_party_booking_register_post;
	struct HPMHookPoint *HP_party_booking_update_pre;
	struct HPMHookPoint *HP_party_booking_update_post;
	struct HPMHookPoint *HP_party_booking_search_pre;
	struct HPMHookPoint *HP_party_booking_search_post;
	struct HPMHookPoint *HP_party_recruit_register_pre;
	struct HPMHookPoint *HP_party_recruit_register_post;
	struct HPMHookPoint *HP_party_recruit_update_pre;
	struct HPMHookPoint *HP_party_recruit_update_post;
	struct HPMHookPoint *HP_party_recruit_search_pre;
	struct HPMHookPoint *HP_party_recruit_search_post;
	struct HPMHookPoint *HP_party_booking_delete_pre;
	struct HPMHookPoint *HP_party_booking_delete_post;
	struct HPMHookPoint *HP_party_vforeachsamemap_pre;
	struct HPMHookPoint *HP_party_vforeachsamemap_post;
	struct HPMHookPoint *HP_party_send_xy_timer_pre;
	struct HPMHookPoint *HP_party_send_xy_timer_post;
	struct HPMHookPoint *HP_party_fill_member_pre;
	struct HPMHookPoint *HP_party_fill_member_post;
	struct HPMHookPoint *HP_party_sd_check_pre;
	struct HPMHookPoint *HP_party_sd_check_post;
	struct HPMHookPoint *HP_party_check_state_pre;
	struct HPMHookPoint *HP_party_check_state_post;
	struct HPMHookPoint *HP_party_create_booking_data_pre;
	struct HPMHookPoint *HP_party_create_booking_data_post;
	struct HPMHookPoint *HP_party_db_final_pre;
	struct HPMHookPoint *HP_party_db_final_post;
	struct HPMHookPoint *HP_path_blownpos_pre;
	struct HPMHookPoint *HP_path_blownpos_post;
	struct HPMHookPoint *HP_path_search_pre;
	struct HPMHookPoint *HP_path_search_post;
	struct HPMHookPoint *HP_path_search_long_pre;
	struct HPMHookPoint *HP_path_search_long_post;
	struct HPMHookPoint *HP_path_check_distance_pre;
	struct HPMHookPoint *HP_path_check_distance_post;
	struct HPMHookPoint *HP_path_distance_pre;
	struct HPMHookPoint *HP_path_distance_post;
	struct HPMHookPoint *HP_pcg_init_pre;
	struct HPMHookPoint *HP_pcg_init_post;
	struct HPMHookPoint *HP_pcg_final_pre;
	struct HPMHookPoint *HP_pcg_final_post;
	struct HPMHookPoint *HP_pcg_reload_pre;
	struct HPMHookPoint *HP_pcg_reload_post;
	struct HPMHookPoint *HP_pcg_get_dummy_group_pre;
	struct HPMHookPoint *HP_pcg_get_dummy_group_post;
	struct HPMHookPoint *HP_pcg_exists_pre;
	struct HPMHookPoint *HP_pcg_exists_post;
	struct HPMHookPoint *HP_pcg_id2group_pre;
	struct HPMHookPoint *HP_pcg_id2group_post;
	struct HPMHookPoint *HP_pcg_has_permission_pre;
	struct HPMHookPoint *HP_pcg_has_permission_post;
	struct HPMHookPoint *HP_pcg_should_log_commands_pre;
	struct HPMHookPoint *HP_pcg_should_log_commands_post;
	struct HPMHookPoint *HP_pcg_get_name_pre;
	struct HPMHookPoint *HP_pcg_get_name_post;
	struct HPMHookPoint *HP_pcg_get_level_pre;
	struct HPMHookPoint *HP_pcg_get_level_post;
	struct HPMHookPoint *HP_pcg_get_idx_pre;
	struct HPMHookPoint *HP_pcg_get_idx_post;
	struct HPMHookPoint *HP_pc_init_pre;
	struct HPMHookPoint *HP_pc_init_post;
	struct HPMHookPoint *HP_pc_final_pre;
	struct HPMHookPoint *HP_pc_final_post;
	struct HPMHookPoint *HP_pc_get_dummy_sd_pre;
	struct HPMHookPoint *HP_pc_get_dummy_sd_post;
	struct HPMHookPoint *HP_pc_class2idx_pre;
	struct HPMHookPoint *HP_pc_class2idx_post;
	struct HPMHookPoint *HP_pc_can_give_items_pre;
	struct HPMHookPoint *HP_pc_can_give_items_post;
	struct HPMHookPoint *HP_pc_can_give_bound_items_pre;
	struct HPMHookPoint *HP_pc_can_give_bound_items_post;
	struct HPMHookPoint *HP_pc_can_use_command_pre;
	struct HPMHookPoint *HP_pc_can_use_command_post;
	struct HPMHookPoint *HP_pc_set_group_pre;
	struct HPMHookPoint *HP_pc_set_group_post;
	struct HPMHookPoint *HP_pc_should_log_commands_pre;
	struct HPMHookPoint *HP_pc_should_log_commands_post;
	struct HPMHookPoint *HP_pc_setrestartvalue_pre;
	struct HPMHookPoint *HP_pc_setrestartvalue_post;
	struct HPMHookPoint *HP_pc_makesavestatus_pre;
	struct HPMHookPoint *HP_pc_makesavestatus_post;
	struct HPMHookPoint *HP_pc_respawn_pre;
	struct HPMHookPoint *HP_pc_respawn_post;
	struct HPMHookPoint *HP_pc_setnewpc_pre;
	struct HPMHookPoint *HP_pc_setnewpc_post;
	struct HPMHookPoint *HP_pc_authok_pre;
	struct HPMHookPoint *HP_pc_authok_post;
	struct HPMHookPoint *HP_pc_authfail_pre;
	struct HPMHookPoint *HP_pc_authfail_post;
	struct HPMHookPoint *HP_pc_reg_received_pre;
	struct HPMHookPoint *HP_pc_reg_received_post;
	struct HPMHookPoint *HP_pc_isequip_pre;
	struct HPMHookPoint *HP_pc_isequip_post;
	struct HPMHookPoint *HP_pc_equippoint_pre;
	struct HPMHookPoint *HP_pc_equippoint_post;
	struct HPMHookPoint *HP_pc_setinventorydata_pre;
	struct HPMHookPoint *HP_pc_setinventorydata_post;
	struct HPMHookPoint *HP_pc_checkskill_pre;
	struct HPMHookPoint *HP_pc_checkskill_post;
	struct HPMHookPoint *HP_pc_checkskill2_pre;
	struct HPMHookPoint *HP_pc_checkskill2_post;
	struct HPMHookPoint *HP_pc_checkallowskill_pre;
	struct HPMHookPoint *HP_pc_checkallowskill_post;
	struct HPMHookPoint *HP_pc_checkequip_pre;
	struct HPMHookPoint *HP_pc_checkequip_post;
	struct HPMHookPoint *HP_pc_calc_skilltree_pre;
	struct HPMHookPoint *HP_pc_calc_skilltree_post;
	struct HPMHookPoint *HP_pc_calc_skilltree_normalize_job_pre;
	struct HPMHookPoint *HP_pc_calc_skilltree_normalize_job_post;
	struct HPMHookPoint *HP_pc_clean_skilltree_pre;
	struct HPMHookPoint *HP_pc_clean_skilltree_post;
	struct HPMHookPoint *HP_pc_setpos_pre;
	struct HPMHookPoint *HP_pc_setpos_post;
	struct HPMHookPoint *HP_pc_setsavepoint_pre;
	struct HPMHookPoint *HP_pc_setsavepoint_post;
	struct HPMHookPoint *HP_pc_randomwarp_pre;
	struct HPMHookPoint *HP_pc_randomwarp_post;
	struct HPMHookPoint *HP_pc_memo_pre;
	struct HPMHookPoint *HP_pc_memo_post;
	struct HPMHookPoint *HP_pc_checkadditem_pre;
	struct HPMHookPoint *HP_pc_checkadditem_post;
	struct HPMHookPoint *HP_pc_inventoryblank_pre;
	struct HPMHookPoint *HP_pc_inventoryblank_post;
	struct HPMHookPoint *HP_pc_search_inventory_pre;
	struct HPMHookPoint *HP_pc_search_inventory_post;
	struct HPMHookPoint *HP_pc_payzeny_pre;
	struct HPMHookPoint *HP_pc_payzeny_post;
	struct HPMHookPoint *HP_pc_additem_pre;
	struct HPMHookPoint *HP_pc_additem_post;
	struct HPMHookPoint *HP_pc_getzeny_pre;
	struct HPMHookPoint *HP_pc_getzeny_post;
	struct HPMHookPoint *HP_pc_delitem_pre;
	struct HPMHookPoint *HP_pc_delitem_post;
	struct HPMHookPoint *HP_pc_paycash_pre;
	struct HPMHookPoint *HP_pc_paycash_post;
	struct HPMHookPoint *HP_pc_getcash_pre;
	struct HPMHookPoint *HP_pc_getcash_post;
	struct HPMHookPoint *HP_pc_cart_additem_pre;
	struct HPMHookPoint *HP_pc_cart_additem_post;
	struct HPMHookPoint *HP_pc_cart_delitem_pre;
	struct HPMHookPoint *HP_pc_cart_delitem_post;
	struct HPMHookPoint *HP_pc_putitemtocart_pre;
	struct HPMHookPoint *HP_pc_putitemtocart_post;
	struct HPMHookPoint *HP_pc_getitemfromcart_pre;
	struct HPMHookPoint *HP_pc_getitemfromcart_post;
	struct HPMHookPoint *HP_pc_cartitem_amount_pre;
	struct HPMHookPoint *HP_pc_cartitem_amount_post;
	struct HPMHookPoint *HP_pc_takeitem_pre;
	struct HPMHookPoint *HP_pc_takeitem_post;
	struct HPMHookPoint *HP_pc_dropitem_pre;
	struct HPMHookPoint *HP_pc_dropitem_post;
	struct HPMHookPoint *HP_pc_isequipped_pre;
	struct HPMHookPoint *HP_pc_isequipped_post;
	struct HPMHookPoint *HP_pc_can_Adopt_pre;
	struct HPMHookPoint *HP_pc_can_Adopt_post;
	struct HPMHookPoint *HP_pc_adoption_pre;
	struct HPMHookPoint *HP_pc_adoption_post;
	struct HPMHookPoint *HP_pc_updateweightstatus_pre;
	struct HPMHookPoint *HP_pc_updateweightstatus_post;
	struct HPMHookPoint *HP_pc_addautobonus_pre;
	struct HPMHookPoint *HP_pc_addautobonus_post;
	struct HPMHookPoint *HP_pc_exeautobonus_pre;
	struct HPMHookPoint *HP_pc_exeautobonus_post;
	struct HPMHookPoint *HP_pc_endautobonus_pre;
	struct HPMHookPoint *HP_pc_endautobonus_post;
	struct HPMHookPoint *HP_pc_delautobonus_pre;
	struct HPMHookPoint *HP_pc_delautobonus_post;
	struct HPMHookPoint *HP_pc_bonus_pre;
	struct HPMHookPoint *HP_pc_bonus_post;
	struct HPMHookPoint *HP_pc_bonus2_pre;
	struct HPMHookPoint *HP_pc_bonus2_post;
	struct HPMHookPoint *HP_pc_bonus3_pre;
	struct HPMHookPoint *HP_pc_bonus3_post;
	struct HPMHookPoint *HP_pc_bonus4_pre;
	struct HPMHookPoint *HP_pc_bonus4_post;
	struct HPMHookPoint *HP_pc_bonus5_pre;
	struct HPMHookPoint *HP_pc_bonus5_post;
	struct HPMHookPoint *HP_pc_skill_pre;
	struct HPMHookPoint *HP_pc_skill_post;
	struct HPMHookPoint *HP_pc_insert_card_pre;
	struct HPMHookPoint *HP_pc_insert_card_post;
	struct HPMHookPoint *HP_pc_steal_item_pre;
	struct HPMHookPoint *HP_pc_steal_item_post;
	struct HPMHookPoint *HP_pc_steal_coin_pre;
	struct HPMHookPoint *HP_pc_steal_coin_post;
	struct HPMHookPoint *HP_pc_modifybuyvalue_pre;
	struct HPMHookPoint *HP_pc_modifybuyvalue_post;
	struct HPMHookPoint *HP_pc_modifysellvalue_pre;
	struct HPMHookPoint *HP_pc_modifysellvalue_post;
	struct HPMHookPoint *HP_pc_follow_pre;
	struct HPMHookPoint *HP_pc_follow_post;
	struct HPMHookPoint *HP_pc_stop_following_pre;
	struct HPMHookPoint *HP_pc_stop_following_post;
	struct HPMHookPoint *HP_pc_maxbaselv_pre;
	struct HPMHookPoint *HP_pc_maxbaselv_post;
	struct HPMHookPoint *HP_pc_maxjoblv_pre;
	struct HPMHookPoint *HP_pc_maxjoblv_post;
	struct HPMHookPoint *HP_pc_checkbaselevelup_pre;
	struct HPMHookPoint *HP_pc_checkbaselevelup_post;
	struct HPMHookPoint *HP_pc_checkjoblevelup_pre;
	struct HPMHookPoint *HP_pc_checkjoblevelup_post;
	struct HPMHookPoint *HP_pc_gainexp_pre;
	struct HPMHookPoint *HP_pc_gainexp_post;
	struct HPMHookPoint *HP_pc_nextbaseexp_pre;
	struct HPMHookPoint *HP_pc_nextbaseexp_post;
	struct HPMHookPoint *HP_pc_thisbaseexp_pre;
	struct HPMHookPoint *HP_pc_thisbaseexp_post;
	struct HPMHookPoint *HP_pc_nextjobexp_pre;
	struct HPMHookPoint *HP_pc_nextjobexp_post;
	struct HPMHookPoint *HP_pc_thisjobexp_pre;
	struct HPMHookPoint *HP_pc_thisjobexp_post;
	struct HPMHookPoint *HP_pc_gets_status_point_pre;
	struct HPMHookPoint *HP_pc_gets_status_point_post;
	struct HPMHookPoint *HP_pc_need_status_point_pre;
	struct HPMHookPoint *HP_pc_need_status_point_post;
	struct HPMHookPoint *HP_pc_maxparameterincrease_pre;
	struct HPMHookPoint *HP_pc_maxparameterincrease_post;
	struct HPMHookPoint *HP_pc_statusup_pre;
	struct HPMHookPoint *HP_pc_statusup_post;
	struct HPMHookPoint *HP_pc_statusup2_pre;
	struct HPMHookPoint *HP_pc_statusup2_post;
	struct HPMHookPoint *HP_pc_skillup_pre;
	struct HPMHookPoint *HP_pc_skillup_post;
	struct HPMHookPoint *HP_pc_allskillup_pre;
	struct HPMHookPoint *HP_pc_allskillup_post;
	struct HPMHookPoint *HP_pc_resetlvl_pre;
	struct HPMHookPoint *HP_pc_resetlvl_post;
	struct HPMHookPoint *HP_pc_resetstate_pre;
	struct HPMHookPoint *HP_pc_resetstate_post;
	struct HPMHookPoint *HP_pc_resetskill_pre;
	struct HPMHookPoint *HP_pc_resetskill_post;
	struct HPMHookPoint *HP_pc_resetfeel_pre;
	struct HPMHookPoint *HP_pc_resetfeel_post;
	struct HPMHookPoint *HP_pc_resethate_pre;
	struct HPMHookPoint *HP_pc_resethate_post;
	struct HPMHookPoint *HP_pc_equipitem_pre;
	struct HPMHookPoint *HP_pc_equipitem_post;
	struct HPMHookPoint *HP_pc_unequipitem_pre;
	struct HPMHookPoint *HP_pc_unequipitem_post;
	struct HPMHookPoint *HP_pc_checkitem_pre;
	struct HPMHookPoint *HP_pc_checkitem_post;
	struct HPMHookPoint *HP_pc_useitem_pre;
	struct HPMHookPoint *HP_pc_useitem_post;
	struct HPMHookPoint *HP_pc_skillatk_bonus_pre;
	struct HPMHookPoint *HP_pc_skillatk_bonus_post;
	struct HPMHookPoint *HP_pc_skillheal_bonus_pre;
	struct HPMHookPoint *HP_pc_skillheal_bonus_post;
	struct HPMHookPoint *HP_pc_skillheal2_bonus_pre;
	struct HPMHookPoint *HP_pc_skillheal2_bonus_post;
	struct HPMHookPoint *HP_pc_damage_pre;
	struct HPMHookPoint *HP_pc_damage_post;
	struct HPMHookPoint *HP_pc_dead_pre;
	struct HPMHookPoint *HP_pc_dead_post;
	struct HPMHookPoint *HP_pc_revive_pre;
	struct HPMHookPoint *HP_pc_revive_post;
	struct HPMHookPoint *HP_pc_heal_pre;
	struct HPMHookPoint *HP_pc_heal_post;
	struct HPMHookPoint *HP_pc_itemheal_pre;
	struct HPMHookPoint *HP_pc_itemheal_post;
	struct HPMHookPoint *HP_pc_percentheal_pre;
	struct HPMHookPoint *HP_pc_percentheal_post;
	struct HPMHookPoint *HP_pc_jobchange_pre;
	struct HPMHookPoint *HP_pc_jobchange_post;
	struct HPMHookPoint *HP_pc_setoption_pre;
	struct HPMHookPoint *HP_pc_setoption_post;
	struct HPMHookPoint *HP_pc_setcart_pre;
	struct HPMHookPoint *HP_pc_setcart_post;
	struct HPMHookPoint *HP_pc_setfalcon_pre;
	struct HPMHookPoint *HP_pc_setfalcon_post;
	struct HPMHookPoint *HP_pc_setriding_pre;
	struct HPMHookPoint *HP_pc_setriding_post;
	struct HPMHookPoint *HP_pc_setmadogear_pre;
	struct HPMHookPoint *HP_pc_setmadogear_post;
	struct HPMHookPoint *HP_pc_changelook_pre;
	struct HPMHookPoint *HP_pc_changelook_post;
	struct HPMHookPoint *HP_pc_equiplookall_pre;
	struct HPMHookPoint *HP_pc_equiplookall_post;
	struct HPMHookPoint *HP_pc_readparam_pre;
	struct HPMHookPoint *HP_pc_readparam_post;
	struct HPMHookPoint *HP_pc_setparam_pre;
	struct HPMHookPoint *HP_pc_setparam_post;
	struct HPMHookPoint *HP_pc_readreg_pre;
	struct HPMHookPoint *HP_pc_readreg_post;
	struct HPMHookPoint *HP_pc_setreg_pre;
	struct HPMHookPoint *HP_pc_setreg_post;
	struct HPMHookPoint *HP_pc_readregstr_pre;
	struct HPMHookPoint *HP_pc_readregstr_post;
	struct HPMHookPoint *HP_pc_setregstr_pre;
	struct HPMHookPoint *HP_pc_setregstr_post;
	struct HPMHookPoint *HP_pc_readregistry_pre;
	struct HPMHookPoint *HP_pc_readregistry_post;
	struct HPMHookPoint *HP_pc_setregistry_pre;
	struct HPMHookPoint *HP_pc_setregistry_post;
	struct HPMHookPoint *HP_pc_readregistry_str_pre;
	struct HPMHookPoint *HP_pc_readregistry_str_post;
	struct HPMHookPoint *HP_pc_setregistry_str_pre;
	struct HPMHookPoint *HP_pc_setregistry_str_post;
	struct HPMHookPoint *HP_pc_addeventtimer_pre;
	struct HPMHookPoint *HP_pc_addeventtimer_post;
	struct HPMHookPoint *HP_pc_deleventtimer_pre;
	struct HPMHookPoint *HP_pc_deleventtimer_post;
	struct HPMHookPoint *HP_pc_cleareventtimer_pre;
	struct HPMHookPoint *HP_pc_cleareventtimer_post;
	struct HPMHookPoint *HP_pc_addeventtimercount_pre;
	struct HPMHookPoint *HP_pc_addeventtimercount_post;
	struct HPMHookPoint *HP_pc_calc_pvprank_pre;
	struct HPMHookPoint *HP_pc_calc_pvprank_post;
	struct HPMHookPoint *HP_pc_calc_pvprank_timer_pre;
	struct HPMHookPoint *HP_pc_calc_pvprank_timer_post;
	struct HPMHookPoint *HP_pc_ismarried_pre;
	struct HPMHookPoint *HP_pc_ismarried_post;
	struct HPMHookPoint *HP_pc_marriage_pre;
	struct HPMHookPoint *HP_pc_marriage_post;
	struct HPMHookPoint *HP_pc_divorce_pre;
	struct HPMHookPoint *HP_pc_divorce_post;
	struct HPMHookPoint *HP_pc_get_partner_pre;
	struct HPMHookPoint *HP_pc_get_partner_post;
	struct HPMHookPoint *HP_pc_get_father_pre;
	struct HPMHookPoint *HP_pc_get_father_post;
	struct HPMHookPoint *HP_pc_get_mother_pre;
	struct HPMHookPoint *HP_pc_get_mother_post;
	struct HPMHookPoint *HP_pc_get_child_pre;
	struct HPMHookPoint *HP_pc_get_child_post;
	struct HPMHookPoint *HP_pc_bleeding_pre;
	struct HPMHookPoint *HP_pc_bleeding_post;
	struct HPMHookPoint *HP_pc_regen_pre;
	struct HPMHookPoint *HP_pc_regen_post;
	struct HPMHookPoint *HP_pc_setstand_pre;
	struct HPMHookPoint *HP_pc_setstand_post;
	struct HPMHookPoint *HP_pc_candrop_pre;
	struct HPMHookPoint *HP_pc_candrop_post;
	struct HPMHookPoint *HP_pc_jobid2mapid_pre;
	struct HPMHookPoint *HP_pc_jobid2mapid_post;
	struct HPMHookPoint *HP_pc_mapid2jobid_pre;
	struct HPMHookPoint *HP_pc_mapid2jobid_post;
	struct HPMHookPoint *HP_pc_job_name_pre;
	struct HPMHookPoint *HP_pc_job_name_post;
	struct HPMHookPoint *HP_pc_setinvincibletimer_pre;
	struct HPMHookPoint *HP_pc_setinvincibletimer_post;
	struct HPMHookPoint *HP_pc_delinvincibletimer_pre;
	struct HPMHookPoint *HP_pc_delinvincibletimer_post;
	struct HPMHookPoint *HP_pc_addspiritball_pre;
	struct HPMHookPoint *HP_pc_addspiritball_post;
	struct HPMHookPoint *HP_pc_delspiritball_pre;
	struct HPMHookPoint *HP_pc_delspiritball_post;
	struct HPMHookPoint *HP_pc_addfame_pre;
	struct HPMHookPoint *HP_pc_addfame_post;
	struct HPMHookPoint *HP_pc_famerank_pre;
	struct HPMHookPoint *HP_pc_famerank_post;
	struct HPMHookPoint *HP_pc_set_hate_mob_pre;
	struct HPMHookPoint *HP_pc_set_hate_mob_post;
	struct HPMHookPoint *HP_pc_readdb_pre;
	struct HPMHookPoint *HP_pc_readdb_post;
	struct HPMHookPoint *HP_pc_map_day_timer_pre;
	struct HPMHookPoint *HP_pc_map_day_timer_post;
	struct HPMHookPoint *HP_pc_map_night_timer_pre;
	struct HPMHookPoint *HP_pc_map_night_timer_post;
	struct HPMHookPoint *HP_pc_inventory_rentals_pre;
	struct HPMHookPoint *HP_pc_inventory_rentals_post;
	struct HPMHookPoint *HP_pc_inventory_rental_clear_pre;
	struct HPMHookPoint *HP_pc_inventory_rental_clear_post;
	struct HPMHookPoint *HP_pc_inventory_rental_add_pre;
	struct HPMHookPoint *HP_pc_inventory_rental_add_post;
	struct HPMHookPoint *HP_pc_disguise_pre;
	struct HPMHookPoint *HP_pc_disguise_post;
	struct HPMHookPoint *HP_pc_isautolooting_pre;
	struct HPMHookPoint *HP_pc_isautolooting_post;
	struct HPMHookPoint *HP_pc_overheat_pre;
	struct HPMHookPoint *HP_pc_overheat_post;
	struct HPMHookPoint *HP_pc_banding_pre;
	struct HPMHookPoint *HP_pc_banding_post;
	struct HPMHookPoint *HP_pc_itemcd_do_pre;
	struct HPMHookPoint *HP_pc_itemcd_do_post;
	struct HPMHookPoint *HP_pc_load_combo_pre;
	struct HPMHookPoint *HP_pc_load_combo_post;
	struct HPMHookPoint *HP_pc_add_charm_pre;
	struct HPMHookPoint *HP_pc_add_charm_post;
	struct HPMHookPoint *HP_pc_del_charm_pre;
	struct HPMHookPoint *HP_pc_del_charm_post;
	struct HPMHookPoint *HP_pc_baselevelchanged_pre;
	struct HPMHookPoint *HP_pc_baselevelchanged_post;
	struct HPMHookPoint *HP_pc_level_penalty_mod_pre;
	struct HPMHookPoint *HP_pc_level_penalty_mod_post;
	struct HPMHookPoint *HP_pc_calc_skillpoint_pre;
	struct HPMHookPoint *HP_pc_calc_skillpoint_post;
	struct HPMHookPoint *HP_pc_invincible_timer_pre;
	struct HPMHookPoint *HP_pc_invincible_timer_post;
	struct HPMHookPoint *HP_pc_spiritball_timer_pre;
	struct HPMHookPoint *HP_pc_spiritball_timer_post;
	struct HPMHookPoint *HP_pc_check_banding_pre;
	struct HPMHookPoint *HP_pc_check_banding_post;
	struct HPMHookPoint *HP_pc_inventory_rental_end_pre;
	struct HPMHookPoint *HP_pc_inventory_rental_end_post;
	struct HPMHookPoint *HP_pc_check_skilltree_pre;
	struct HPMHookPoint *HP_pc_check_skilltree_post;
	struct HPMHookPoint *HP_pc_bonus_autospell_pre;
	struct HPMHookPoint *HP_pc_bonus_autospell_post;
	struct HPMHookPoint *HP_pc_bonus_autospell_onskill_pre;
	struct HPMHookPoint *HP_pc_bonus_autospell_onskill_post;
	struct HPMHookPoint *HP_pc_bonus_addeff_pre;
	struct HPMHookPoint *HP_pc_bonus_addeff_post;
	struct HPMHookPoint *HP_pc_bonus_addeff_onskill_pre;
	struct HPMHookPoint *HP_pc_bonus_addeff_onskill_post;
	struct HPMHookPoint *HP_pc_bonus_item_drop_pre;
	struct HPMHookPoint *HP_pc_bonus_item_drop_post;
	struct HPMHookPoint *HP_pc_calcexp_pre;
	struct HPMHookPoint *HP_pc_calcexp_post;
	struct HPMHookPoint *HP_pc_respawn_timer_pre;
	struct HPMHookPoint *HP_pc_respawn_timer_post;
	struct HPMHookPoint *HP_pc_jobchange_killclone_pre;
	struct HPMHookPoint *HP_pc_jobchange_killclone_post;
	struct HPMHookPoint *HP_pc_getstat_pre;
	struct HPMHookPoint *HP_pc_getstat_post;
	struct HPMHookPoint *HP_pc_setstat_pre;
	struct HPMHookPoint *HP_pc_setstat_post;
	struct HPMHookPoint *HP_pc_eventtimer_pre;
	struct HPMHookPoint *HP_pc_eventtimer_post;
	struct HPMHookPoint *HP_pc_daynight_timer_sub_pre;
	struct HPMHookPoint *HP_pc_daynight_timer_sub_post;
	struct HPMHookPoint *HP_pc_charm_timer_pre;
	struct HPMHookPoint *HP_pc_charm_timer_post;
	struct HPMHookPoint *HP_pc_readdb_levelpenalty_pre;
	struct HPMHookPoint *HP_pc_readdb_levelpenalty_post;
	struct HPMHookPoint *HP_pc_autosave_pre;
	struct HPMHookPoint *HP_pc_autosave_post;
	struct HPMHookPoint *HP_pc_follow_timer_pre;
	struct HPMHookPoint *HP_pc_follow_timer_post;
	struct HPMHookPoint *HP_pc_read_skill_tree_pre;
	struct HPMHookPoint *HP_pc_read_skill_tree_post;
	struct HPMHookPoint *HP_pc_isUseitem_pre;
	struct HPMHookPoint *HP_pc_isUseitem_post;
	struct HPMHookPoint *HP_pc_show_steal_pre;
	struct HPMHookPoint *HP_pc_show_steal_post;
	struct HPMHookPoint *HP_pc_checkcombo_pre;
	struct HPMHookPoint *HP_pc_checkcombo_post;
	struct HPMHookPoint *HP_pc_calcweapontype_pre;
	struct HPMHookPoint *HP_pc_calcweapontype_post;
	struct HPMHookPoint *HP_pc_removecombo_pre;
	struct HPMHookPoint *HP_pc_removecombo_post;
	struct HPMHookPoint *HP_pc_bank_deposit_pre;
	struct HPMHookPoint *HP_pc_bank_deposit_post;
	struct HPMHookPoint *HP_pc_bank_withdraw_pre;
	struct HPMHookPoint *HP_pc_bank_withdraw_post;
	struct HPMHookPoint *HP_pc_rental_expire_pre;
	struct HPMHookPoint *HP_pc_rental_expire_post;
	struct HPMHookPoint *HP_pc_scdata_received_pre;
	struct HPMHookPoint *HP_pc_scdata_received_post;
	struct HPMHookPoint *HP_pc_bound_clear_pre;
	struct HPMHookPoint *HP_pc_bound_clear_post;
	struct HPMHookPoint *HP_pc_expiration_timer_pre;
	struct HPMHookPoint *HP_pc_expiration_timer_post;
	struct HPMHookPoint *HP_pc_global_expiration_timer_pre;
	struct HPMHookPoint *HP_pc_global_expiration_timer_post;
	struct HPMHookPoint *HP_pc_expire_check_pre;
	struct HPMHookPoint *HP_pc_expire_check_post;
	struct HPMHookPoint *HP_pc_autotrade_load_pre;
	struct HPMHookPoint *HP_pc_autotrade_load_post;
	struct HPMHookPoint *HP_pc_autotrade_update_pre;
	struct HPMHookPoint *HP_pc_autotrade_update_post;
	struct HPMHookPoint *HP_pc_autotrade_start_pre;
	struct HPMHookPoint *HP_pc_autotrade_start_post;
	struct HPMHookPoint *HP_pc_autotrade_prepare_pre;
	struct HPMHookPoint *HP_pc_autotrade_prepare_post;
	struct HPMHookPoint *HP_pc_autotrade_populate_pre;
	struct HPMHookPoint *HP_pc_autotrade_populate_post;
	struct HPMHookPoint *HP_pet_init_pre;
	struct HPMHookPoint *HP_pet_init_post;
	struct HPMHookPoint *HP_pet_final_pre;
	struct HPMHookPoint *HP_pet_final_post;
	struct HPMHookPoint *HP_pet_hungry_val_pre;
	struct HPMHookPoint *HP_pet_hungry_val_post;
	struct HPMHookPoint *HP_pet_set_intimate_pre;
	struct HPMHookPoint *HP_pet_set_intimate_post;
	struct HPMHookPoint *HP_pet_create_egg_pre;
	struct HPMHookPoint *HP_pet_create_egg_post;
	struct HPMHookPoint *HP_pet_unlocktarget_pre;
	struct HPMHookPoint *HP_pet_unlocktarget_post;
	struct HPMHookPoint *HP_pet_attackskill_pre;
	struct HPMHookPoint *HP_pet_attackskill_post;
	struct HPMHookPoint *HP_pet_target_check_pre;
	struct HPMHookPoint *HP_pet_target_check_post;
	struct HPMHookPoint *HP_pet_sc_check_pre;
	struct HPMHookPoint *HP_pet_sc_check_post;
	struct HPMHookPoint *HP_pet_hungry_pre;
	struct HPMHookPoint *HP_pet_hungry_post;
	struct HPMHookPoint *HP_pet_search_petDB_index_pre;
	struct HPMHookPoint *HP_pet_search_petDB_index_post;
	struct HPMHookPoint *HP_pet_hungry_timer_delete_pre;
	struct HPMHookPoint *HP_pet_hungry_timer_delete_post;
	struct HPMHookPoint *HP_pet_performance_pre;
	struct HPMHookPoint *HP_pet_performance_post;
	struct HPMHookPoint *HP_pet_return_egg_pre;
	struct HPMHookPoint *HP_pet_return_egg_post;
	struct HPMHookPoint *HP_pet_data_init_pre;
	struct HPMHookPoint *HP_pet_data_init_post;
	struct HPMHookPoint *HP_pet_birth_process_pre;
	struct HPMHookPoint *HP_pet_birth_process_post;
	struct HPMHookPoint *HP_pet_recv_petdata_pre;
	struct HPMHookPoint *HP_pet_recv_petdata_post;
	struct HPMHookPoint *HP_pet_select_egg_pre;
	struct HPMHookPoint *HP_pet_select_egg_post;
	struct HPMHookPoint *HP_pet_catch_process1_pre;
	struct HPMHookPoint *HP_pet_catch_process1_post;
	struct HPMHookPoint *HP_pet_catch_process2_pre;
	struct HPMHookPoint *HP_pet_catch_process2_post;
	struct HPMHookPoint *HP_pet_get_egg_pre;
	struct HPMHookPoint *HP_pet_get_egg_post;
	struct HPMHookPoint *HP_pet_unequipitem_pre;
	struct HPMHookPoint *HP_pet_unequipitem_post;
	struct HPMHookPoint *HP_pet_food_pre;
	struct HPMHookPoint *HP_pet_food_post;
	struct HPMHookPoint *HP_pet_ai_sub_hard_lootsearch_pre;
	struct HPMHookPoint *HP_pet_ai_sub_hard_lootsearch_post;
	struct HPMHookPoint *HP_pet_menu_pre;
	struct HPMHookPoint *HP_pet_menu_post;
	struct HPMHookPoint *HP_pet_change_name_pre;
	struct HPMHookPoint *HP_pet_change_name_post;
	struct HPMHookPoint *HP_pet_change_name_ack_pre;
	struct HPMHookPoint *HP_pet_change_name_ack_post;
	struct HPMHookPoint *HP_pet_equipitem_pre;
	struct HPMHookPoint *HP_pet_equipitem_post;
	struct HPMHookPoint *HP_pet_randomwalk_pre;
	struct HPMHookPoint *HP_pet_randomwalk_post;
	struct HPMHookPoint *HP_pet_ai_sub_hard_pre;
	struct HPMHookPoint *HP_pet_ai_sub_hard_post;
	struct HPMHookPoint *HP_pet_ai_sub_foreachclient_pre;
	struct HPMHookPoint *HP_pet_ai_sub_foreachclient_post;
	struct HPMHookPoint *HP_pet_ai_hard_pre;
	struct HPMHookPoint *HP_pet_ai_hard_post;
	struct HPMHookPoint *HP_pet_delay_item_drop_pre;
	struct HPMHookPoint *HP_pet_delay_item_drop_post;
	struct HPMHookPoint *HP_pet_lootitem_drop_pre;
	struct HPMHookPoint *HP_pet_lootitem_drop_post;
	struct HPMHookPoint *HP_pet_skill_bonus_timer_pre;
	struct HPMHookPoint *HP_pet_skill_bonus_timer_post;
	struct HPMHookPoint *HP_pet_recovery_timer_pre;
	struct HPMHookPoint *HP_pet_recovery_timer_post;
	struct HPMHookPoint *HP_pet_heal_timer_pre;
	struct HPMHookPoint *HP_pet_heal_timer_post;
	struct HPMHookPoint *HP_pet_skill_support_timer_pre;
	struct HPMHookPoint *HP_pet_skill_support_timer_post;
	struct HPMHookPoint *HP_pet_read_db_pre;
	struct HPMHookPoint *HP_pet_read_db_post;
	struct HPMHookPoint *HP_quest_init_pre;
	struct HPMHookPoint *HP_quest_init_post;
	struct HPMHookPoint *HP_quest_final_pre;
	struct HPMHookPoint *HP_quest_final_post;
	struct HPMHookPoint *HP_quest_reload_pre;
	struct HPMHookPoint *HP_quest_reload_post;
	struct HPMHookPoint *HP_quest_db_pre;
	struct HPMHookPoint *HP_quest_db_post;
	struct HPMHookPoint *HP_quest_pc_login_pre;
	struct HPMHookPoint *HP_quest_pc_login_post;
	struct HPMHookPoint *HP_quest_add_pre;
	struct HPMHookPoint *HP_quest_add_post;
	struct HPMHookPoint *HP_quest_change_pre;
	struct HPMHookPoint *HP_quest_change_post;
	struct HPMHookPoint *HP_quest_delete_pre;
	struct HPMHookPoint *HP_quest_delete_post;
	struct HPMHookPoint *HP_quest_update_objective_sub_pre;
	struct HPMHookPoint *HP_quest_update_objective_sub_post;
	struct HPMHookPoint *HP_quest_update_objective_pre;
	struct HPMHookPoint *HP_quest_update_objective_post;
	struct HPMHookPoint *HP_quest_update_status_pre;
	struct HPMHookPoint *HP_quest_update_status_post;
	struct HPMHookPoint *HP_quest_check_pre;
	struct HPMHookPoint *HP_quest_check_post;
	struct HPMHookPoint *HP_quest_clear_pre;
	struct HPMHookPoint *HP_quest_clear_post;
	struct HPMHookPoint *HP_quest_read_db_pre;
	struct HPMHookPoint *HP_quest_read_db_post;
	struct HPMHookPoint *HP_script_init_pre;
	struct HPMHookPoint *HP_script_init_post;
	struct HPMHookPoint *HP_script_final_pre;
	struct HPMHookPoint *HP_script_final_post;
	struct HPMHookPoint *HP_script_reload_pre;
	struct HPMHookPoint *HP_script_reload_post;
	struct HPMHookPoint *HP_script_parse_pre;
	struct HPMHookPoint *HP_script_parse_post;
	struct HPMHookPoint *HP_script_add_builtin_pre;
	struct HPMHookPoint *HP_script_add_builtin_post;
	struct HPMHookPoint *HP_script_parse_builtin_pre;
	struct HPMHookPoint *HP_script_parse_builtin_post;
	struct HPMHookPoint *HP_script_parse_subexpr_pre;
	struct HPMHookPoint *HP_script_parse_subexpr_post;
	struct HPMHookPoint *HP_script_skip_space_pre;
	struct HPMHookPoint *HP_script_skip_space_post;
	struct HPMHookPoint *HP_script_error_pre;
	struct HPMHookPoint *HP_script_error_post;
	struct HPMHookPoint *HP_script_warning_pre;
	struct HPMHookPoint *HP_script_warning_post;
	struct HPMHookPoint *HP_script_addScript_pre;
	struct HPMHookPoint *HP_script_addScript_post;
	struct HPMHookPoint *HP_script_conv_num_pre;
	struct HPMHookPoint *HP_script_conv_num_post;
	struct HPMHookPoint *HP_script_conv_str_pre;
	struct HPMHookPoint *HP_script_conv_str_post;
	struct HPMHookPoint *HP_script_rid2sd_pre;
	struct HPMHookPoint *HP_script_rid2sd_post;
	struct HPMHookPoint *HP_script_detach_rid_pre;
	struct HPMHookPoint *HP_script_detach_rid_post;
	struct HPMHookPoint *HP_script_push_val_pre;
	struct HPMHookPoint *HP_script_push_val_post;
	struct HPMHookPoint *HP_script_get_val_pre;
	struct HPMHookPoint *HP_script_get_val_post;
	struct HPMHookPoint *HP_script_get_val2_pre;
	struct HPMHookPoint *HP_script_get_val2_post;
	struct HPMHookPoint *HP_script_push_str_pre;
	struct HPMHookPoint *HP_script_push_str_post;
	struct HPMHookPoint *HP_script_push_copy_pre;
	struct HPMHookPoint *HP_script_push_copy_post;
	struct HPMHookPoint *HP_script_pop_stack_pre;
	struct HPMHookPoint *HP_script_pop_stack_post;
	struct HPMHookPoint *HP_script_set_constant_pre;
	struct HPMHookPoint *HP_script_set_constant_post;
	struct HPMHookPoint *HP_script_set_constant2_pre;
	struct HPMHookPoint *HP_script_set_constant2_post;
	struct HPMHookPoint *HP_script_get_constant_pre;
	struct HPMHookPoint *HP_script_get_constant_post;
	struct HPMHookPoint *HP_script_label_add_pre;
	struct HPMHookPoint *HP_script_label_add_post;
	struct HPMHookPoint *HP_script_run_pre;
	struct HPMHookPoint *HP_script_run_post;
	struct HPMHookPoint *HP_script_run_main_pre;
	struct HPMHookPoint *HP_script_run_main_post;
	struct HPMHookPoint *HP_script_run_timer_pre;
	struct HPMHookPoint *HP_script_run_timer_post;
	struct HPMHookPoint *HP_script_set_var_pre;
	struct HPMHookPoint *HP_script_set_var_post;
	struct HPMHookPoint *HP_script_stop_instances_pre;
	struct HPMHookPoint *HP_script_stop_instances_post;
	struct HPMHookPoint *HP_script_free_code_pre;
	struct HPMHookPoint *HP_script_free_code_post;
	struct HPMHookPoint *HP_script_free_vars_pre;
	struct HPMHookPoint *HP_script_free_vars_post;
	struct HPMHookPoint *HP_script_alloc_state_pre;
	struct HPMHookPoint *HP_script_alloc_state_post;
	struct HPMHookPoint *HP_script_free_state_pre;
	struct HPMHookPoint *HP_script_free_state_post;
	struct HPMHookPoint *HP_script_run_autobonus_pre;
	struct HPMHookPoint *HP_script_run_autobonus_post;
	struct HPMHookPoint *HP_script_cleararray_pc_pre;
	struct HPMHookPoint *HP_script_cleararray_pc_post;
	struct HPMHookPoint *HP_script_setarray_pc_pre;
	struct HPMHookPoint *HP_script_setarray_pc_post;
	struct HPMHookPoint *HP_script_config_read_pre;
	struct HPMHookPoint *HP_script_config_read_post;
	struct HPMHookPoint *HP_script_add_str_pre;
	struct HPMHookPoint *HP_script_add_str_post;
	struct HPMHookPoint *HP_script_get_str_pre;
	struct HPMHookPoint *HP_script_get_str_post;
	struct HPMHookPoint *HP_script_search_str_pre;
	struct HPMHookPoint *HP_script_search_str_post;
	struct HPMHookPoint *HP_script_setd_sub_pre;
	struct HPMHookPoint *HP_script_setd_sub_post;
	struct HPMHookPoint *HP_script_attach_state_pre;
	struct HPMHookPoint *HP_script_attach_state_post;
	struct HPMHookPoint *HP_script_queue_pre;
	struct HPMHookPoint *HP_script_queue_post;
	struct HPMHookPoint *HP_script_queue_add_pre;
	struct HPMHookPoint *HP_script_queue_add_post;
	struct HPMHookPoint *HP_script_queue_del_pre;
	struct HPMHookPoint *HP_script_queue_del_post;
	struct HPMHookPoint *HP_script_queue_remove_pre;
	struct HPMHookPoint *HP_script_queue_remove_post;
	struct HPMHookPoint *HP_script_queue_create_pre;
	struct HPMHookPoint *HP_script_queue_create_post;
	struct HPMHookPoint *HP_script_queue_clear_pre;
	struct HPMHookPoint *HP_script_queue_clear_post;
	struct HPMHookPoint *HP_script_parse_curly_close_pre;
	struct HPMHookPoint *HP_script_parse_curly_close_post;
	struct HPMHookPoint *HP_script_parse_syntax_close_pre;
	struct HPMHookPoint *HP_script_parse_syntax_close_post;
	struct HPMHookPoint *HP_script_parse_syntax_close_sub_pre;
	struct HPMHookPoint *HP_script_parse_syntax_close_sub_post;
	struct HPMHookPoint *HP_script_parse_syntax_pre;
	struct HPMHookPoint *HP_script_parse_syntax_post;
	struct HPMHookPoint *HP_script_get_com_pre;
	struct HPMHookPoint *HP_script_get_com_post;
	struct HPMHookPoint *HP_script_get_num_pre;
	struct HPMHookPoint *HP_script_get_num_post;
	struct HPMHookPoint *HP_script_op2name_pre;
	struct HPMHookPoint *HP_script_op2name_post;
	struct HPMHookPoint *HP_script_reportsrc_pre;
	struct HPMHookPoint *HP_script_reportsrc_post;
	struct HPMHookPoint *HP_script_reportdata_pre;
	struct HPMHookPoint *HP_script_reportdata_post;
	struct HPMHookPoint *HP_script_reportfunc_pre;
	struct HPMHookPoint *HP_script_reportfunc_post;
	struct HPMHookPoint *HP_script_disp_warning_message_pre;
	struct HPMHookPoint *HP_script_disp_warning_message_post;
	struct HPMHookPoint *HP_script_check_event_pre;
	struct HPMHookPoint *HP_script_check_event_post;
	struct HPMHookPoint *HP_script_calc_hash_pre;
	struct HPMHookPoint *HP_script_calc_hash_post;
	struct HPMHookPoint *HP_script_addb_pre;
	struct HPMHookPoint *HP_script_addb_post;
	struct HPMHookPoint *HP_script_addc_pre;
	struct HPMHookPoint *HP_script_addc_post;
	struct HPMHookPoint *HP_script_addi_pre;
	struct HPMHookPoint *HP_script_addi_post;
	struct HPMHookPoint *HP_script_addl_pre;
	struct HPMHookPoint *HP_script_addl_post;
	struct HPMHookPoint *HP_script_set_label_pre;
	struct HPMHookPoint *HP_script_set_label_post;
	struct HPMHookPoint *HP_script_skip_word_pre;
	struct HPMHookPoint *HP_script_skip_word_post;
	struct HPMHookPoint *HP_script_add_word_pre;
	struct HPMHookPoint *HP_script_add_word_post;
	struct HPMHookPoint *HP_script_parse_callfunc_pre;
	struct HPMHookPoint *HP_script_parse_callfunc_post;
	struct HPMHookPoint *HP_script_parse_nextline_pre;
	struct HPMHookPoint *HP_script_parse_nextline_post;
	struct HPMHookPoint *HP_script_parse_variable_pre;
	struct HPMHookPoint *HP_script_parse_variable_post;
	struct HPMHookPoint *HP_script_parse_simpleexpr_pre;
	struct HPMHookPoint *HP_script_parse_simpleexpr_post;
	struct HPMHookPoint *HP_script_parse_expr_pre;
	struct HPMHookPoint *HP_script_parse_expr_post;
	struct HPMHookPoint *HP_script_parse_line_pre;
	struct HPMHookPoint *HP_script_parse_line_post;
	struct HPMHookPoint *HP_script_read_constdb_pre;
	struct HPMHookPoint *HP_script_read_constdb_post;
	struct HPMHookPoint *HP_script_print_line_pre;
	struct HPMHookPoint *HP_script_print_line_post;
	struct HPMHookPoint *HP_script_errorwarning_sub_pre;
	struct HPMHookPoint *HP_script_errorwarning_sub_post;
	struct HPMHookPoint *HP_script_set_reg_pre;
	struct HPMHookPoint *HP_script_set_reg_post;
	struct HPMHookPoint *HP_script_stack_expand_pre;
	struct HPMHookPoint *HP_script_stack_expand_post;
	struct HPMHookPoint *HP_script_push_retinfo_pre;
	struct HPMHookPoint *HP_script_push_retinfo_post;
	struct HPMHookPoint *HP_script_op_3_pre;
	struct HPMHookPoint *HP_script_op_3_post;
	struct HPMHookPoint *HP_script_op_2str_pre;
	struct HPMHookPoint *HP_script_op_2str_post;
	struct HPMHookPoint *HP_script_op_2num_pre;
	struct HPMHookPoint *HP_script_op_2num_post;
	struct HPMHookPoint *HP_script_op_2_pre;
	struct HPMHookPoint *HP_script_op_2_post;
	struct HPMHookPoint *HP_script_op_1_pre;
	struct HPMHookPoint *HP_script_op_1_post;
	struct HPMHookPoint *HP_script_check_buildin_argtype_pre;
	struct HPMHookPoint *HP_script_check_buildin_argtype_post;
	struct HPMHookPoint *HP_script_detach_state_pre;
	struct HPMHookPoint *HP_script_detach_state_post;
	struct HPMHookPoint *HP_script_db_free_code_sub_pre;
	struct HPMHookPoint *HP_script_db_free_code_sub_post;
	struct HPMHookPoint *HP_script_add_autobonus_pre;
	struct HPMHookPoint *HP_script_add_autobonus_post;
	struct HPMHookPoint *HP_script_menu_countoptions_pre;
	struct HPMHookPoint *HP_script_menu_countoptions_post;
	struct HPMHookPoint *HP_script_buildin_areawarp_sub_pre;
	struct HPMHookPoint *HP_script_buildin_areawarp_sub_post;
	struct HPMHookPoint *HP_script_buildin_areapercentheal_sub_pre;
	struct HPMHookPoint *HP_script_buildin_areapercentheal_sub_post;
	struct HPMHookPoint *HP_script_buildin_delitem_delete_pre;
	struct HPMHookPoint *HP_script_buildin_delitem_delete_post;
	struct HPMHookPoint *HP_script_buildin_delitem_search_pre;
	struct HPMHookPoint *HP_script_buildin_delitem_search_post;
	struct HPMHookPoint *HP_script_buildin_killmonster_sub_strip_pre;
	struct HPMHookPoint *HP_script_buildin_killmonster_sub_strip_post;
	struct HPMHookPoint *HP_script_buildin_killmonster_sub_pre;
	struct HPMHookPoint *HP_script_buildin_killmonster_sub_post;
	struct HPMHookPoint *HP_script_buildin_killmonsterall_sub_strip_pre;
	struct HPMHookPoint *HP_script_buildin_killmonsterall_sub_strip_post;
	struct HPMHookPoint *HP_script_buildin_killmonsterall_sub_pre;
	struct HPMHookPoint *HP_script_buildin_killmonsterall_sub_post;
	struct HPMHookPoint *HP_script_buildin_announce_sub_pre;
	struct HPMHookPoint *HP_script_buildin_announce_sub_post;
	struct HPMHookPoint *HP_script_buildin_getareausers_sub_pre;
	struct HPMHookPoint *HP_script_buildin_getareausers_sub_post;
	struct HPMHookPoint *HP_script_buildin_getareadropitem_sub_pre;
	struct HPMHookPoint *HP_script_buildin_getareadropitem_sub_post;
	struct HPMHookPoint *HP_script_mapflag_pvp_sub_pre;
	struct HPMHookPoint *HP_script_mapflag_pvp_sub_post;
	struct HPMHookPoint *HP_script_buildin_pvpoff_sub_pre;
	struct HPMHookPoint *HP_script_buildin_pvpoff_sub_post;
	struct HPMHookPoint *HP_script_buildin_maprespawnguildid_sub_pc_pre;
	struct HPMHookPoint *HP_script_buildin_maprespawnguildid_sub_pc_post;
	struct HPMHookPoint *HP_script_buildin_maprespawnguildid_sub_mob_pre;
	struct HPMHookPoint *HP_script_buildin_maprespawnguildid_sub_mob_post;
	struct HPMHookPoint *HP_script_buildin_mobcount_sub_pre;
	struct HPMHookPoint *HP_script_buildin_mobcount_sub_post;
	struct HPMHookPoint *HP_script_playbgm_sub_pre;
	struct HPMHookPoint *HP_script_playbgm_sub_post;
	struct HPMHookPoint *HP_script_playbgm_foreachpc_sub_pre;
	struct HPMHookPoint *HP_script_playbgm_foreachpc_sub_post;
	struct HPMHookPoint *HP_script_soundeffect_sub_pre;
	struct HPMHookPoint *HP_script_soundeffect_sub_post;
	struct HPMHookPoint *HP_script_buildin_query_sql_sub_pre;
	struct HPMHookPoint *HP_script_buildin_query_sql_sub_post;
	struct HPMHookPoint *HP_script_buildin_instance_warpall_sub_pre;
	struct HPMHookPoint *HP_script_buildin_instance_warpall_sub_post;
	struct HPMHookPoint *HP_script_buildin_mobuseskill_sub_pre;
	struct HPMHookPoint *HP_script_buildin_mobuseskill_sub_post;
	struct HPMHookPoint *HP_script_cleanfloor_sub_pre;
	struct HPMHookPoint *HP_script_cleanfloor_sub_post;
	struct HPMHookPoint *HP_script_run_func_pre;
	struct HPMHookPoint *HP_script_run_func_post;
	struct HPMHookPoint *HP_script_getfuncname_pre;
	struct HPMHookPoint *HP_script_getfuncname_post;
	struct HPMHookPoint *HP_script_calc_hash_ci_pre;
	struct HPMHookPoint *HP_script_calc_hash_ci_post;
	struct HPMHookPoint *HP_script_array_src_pre;
	struct HPMHookPoint *HP_script_array_src_post;
	struct HPMHookPoint *HP_script_array_update_pre;
	struct HPMHookPoint *HP_script_array_update_post;
	struct HPMHookPoint *HP_script_array_delete_pre;
	struct HPMHookPoint *HP_script_array_delete_post;
	struct HPMHookPoint *HP_script_array_remove_member_pre;
	struct HPMHookPoint *HP_script_array_remove_member_post;
	struct HPMHookPoint *HP_script_array_add_member_pre;
	struct HPMHookPoint *HP_script_array_add_member_post;
	struct HPMHookPoint *HP_script_array_size_pre;
	struct HPMHookPoint *HP_script_array_size_post;
	struct HPMHookPoint *HP_script_array_highest_key_pre;
	struct HPMHookPoint *HP_script_array_highest_key_post;
	struct HPMHookPoint *HP_script_array_free_db_pre;
	struct HPMHookPoint *HP_script_array_free_db_post;
	struct HPMHookPoint *HP_script_array_ensure_zero_pre;
	struct HPMHookPoint *HP_script_array_ensure_zero_post;
	struct HPMHookPoint *HP_script_reg_destroy_single_pre;
	struct HPMHookPoint *HP_script_reg_destroy_single_post;
	struct HPMHookPoint *HP_script_reg_destroy_pre;
	struct HPMHookPoint *HP_script_reg_destroy_post;
	struct HPMHookPoint *HP_script_generic_ui_array_expand_pre;
	struct HPMHookPoint *HP_script_generic_ui_array_expand_post;
	struct HPMHookPoint *HP_script_array_cpy_list_pre;
	struct HPMHookPoint *HP_script_array_cpy_list_post;
	struct HPMHookPoint *HP_script_hardcoded_constants_pre;
	struct HPMHookPoint *HP_script_hardcoded_constants_post;
	struct HPMHookPoint *HP_script_mapindexname2id_pre;
	struct HPMHookPoint *HP_script_mapindexname2id_post;
	struct HPMHookPoint *HP_searchstore_open_pre;
	struct HPMHookPoint *HP_searchstore_open_post;
	struct HPMHookPoint *HP_searchstore_query_pre;
	struct HPMHookPoint *HP_searchstore_query_post;
	struct HPMHookPoint *HP_searchstore_querynext_pre;
	struct HPMHookPoint *HP_searchstore_querynext_post;
	struct HPMHookPoint *HP_searchstore_next_pre;
	struct HPMHookPoint *HP_searchstore_next_post;
	struct HPMHookPoint *HP_searchstore_clear_pre;
	struct HPMHookPoint *HP_searchstore_clear_post;
	struct HPMHookPoint *HP_searchstore_close_pre;
	struct HPMHookPoint *HP_searchstore_close_post;
	struct HPMHookPoint *HP_searchstore_click_pre;
	struct HPMHookPoint *HP_searchstore_click_post;
	struct HPMHookPoint *HP_searchstore_queryremote_pre;
	struct HPMHookPoint *HP_searchstore_queryremote_post;
	struct HPMHookPoint *HP_searchstore_clearremote_pre;
	struct HPMHookPoint *HP_searchstore_clearremote_post;
	struct HPMHookPoint *HP_searchstore_result_pre;
	struct HPMHookPoint *HP_searchstore_result_post;
	struct HPMHookPoint *HP_skill_init_pre;
	struct HPMHookPoint *HP_skill_init_post;
	struct HPMHookPoint *HP_skill_final_pre;
	struct HPMHookPoint *HP_skill_final_post;
	struct HPMHookPoint *HP_skill_reload_pre;
	struct HPMHookPoint *HP_skill_reload_post;
	struct HPMHookPoint *HP_skill_read_db_pre;
	struct HPMHookPoint *HP_skill_read_db_post;
	struct HPMHookPoint *HP_skill_get_index_pre;
	struct HPMHookPoint *HP_skill_get_index_post;
	struct HPMHookPoint *HP_skill_get_type_pre;
	struct HPMHookPoint *HP_skill_get_type_post;
	struct HPMHookPoint *HP_skill_get_hit_pre;
	struct HPMHookPoint *HP_skill_get_hit_post;
	struct HPMHookPoint *HP_skill_get_inf_pre;
	struct HPMHookPoint *HP_skill_get_inf_post;
	struct HPMHookPoint *HP_skill_get_ele_pre;
	struct HPMHookPoint *HP_skill_get_ele_post;
	struct HPMHookPoint *HP_skill_get_nk_pre;
	struct HPMHookPoint *HP_skill_get_nk_post;
	struct HPMHookPoint *HP_skill_get_max_pre;
	struct HPMHookPoint *HP_skill_get_max_post;
	struct HPMHookPoint *HP_skill_get_range_pre;
	struct HPMHookPoint *HP_skill_get_range_post;
	struct HPMHookPoint *HP_skill_get_range2_pre;
	struct HPMHookPoint *HP_skill_get_range2_post;
	struct HPMHookPoint *HP_skill_get_splash_pre;
	struct HPMHookPoint *HP_skill_get_splash_post;
	struct HPMHookPoint *HP_skill_get_hp_pre;
	struct HPMHookPoint *HP_skill_get_hp_post;
	struct HPMHookPoint *HP_skill_get_mhp_pre;
	struct HPMHookPoint *HP_skill_get_mhp_post;
	struct HPMHookPoint *HP_skill_get_sp_pre;
	struct HPMHookPoint *HP_skill_get_sp_post;
	struct HPMHookPoint *HP_skill_get_state_pre;
	struct HPMHookPoint *HP_skill_get_state_post;
	struct HPMHookPoint *HP_skill_get_spiritball_pre;
	struct HPMHookPoint *HP_skill_get_spiritball_post;
	struct HPMHookPoint *HP_skill_get_zeny_pre;
	struct HPMHookPoint *HP_skill_get_zeny_post;
	struct HPMHookPoint *HP_skill_get_num_pre;
	struct HPMHookPoint *HP_skill_get_num_post;
	struct HPMHookPoint *HP_skill_get_cast_pre;
	struct HPMHookPoint *HP_skill_get_cast_post;
	struct HPMHookPoint *HP_skill_get_delay_pre;
	struct HPMHookPoint *HP_skill_get_delay_post;
	struct HPMHookPoint *HP_skill_get_walkdelay_pre;
	struct HPMHookPoint *HP_skill_get_walkdelay_post;
	struct HPMHookPoint *HP_skill_get_time_pre;
	struct HPMHookPoint *HP_skill_get_time_post;
	struct HPMHookPoint *HP_skill_get_time2_pre;
	struct HPMHookPoint *HP_skill_get_time2_post;
	struct HPMHookPoint *HP_skill_get_castnodex_pre;
	struct HPMHookPoint *HP_skill_get_castnodex_post;
	struct HPMHookPoint *HP_skill_get_delaynodex_pre;
	struct HPMHookPoint *HP_skill_get_delaynodex_post;
	struct HPMHookPoint *HP_skill_get_castdef_pre;
	struct HPMHookPoint *HP_skill_get_castdef_post;
	struct HPMHookPoint *HP_skill_get_weapontype_pre;
	struct HPMHookPoint *HP_skill_get_weapontype_post;
	struct HPMHookPoint *HP_skill_get_ammotype_pre;
	struct HPMHookPoint *HP_skill_get_ammotype_post;
	struct HPMHookPoint *HP_skill_get_ammo_qty_pre;
	struct HPMHookPoint *HP_skill_get_ammo_qty_post;
	struct HPMHookPoint *HP_skill_get_unit_id_pre;
	struct HPMHookPoint *HP_skill_get_unit_id_post;
	struct HPMHookPoint *HP_skill_get_inf2_pre;
	struct HPMHookPoint *HP_skill_get_inf2_post;
	struct HPMHookPoint *HP_skill_get_castcancel_pre;
	struct HPMHookPoint *HP_skill_get_castcancel_post;
	struct HPMHookPoint *HP_skill_get_maxcount_pre;
	struct HPMHookPoint *HP_skill_get_maxcount_post;
	struct HPMHookPoint *HP_skill_get_blewcount_pre;
	struct HPMHookPoint *HP_skill_get_blewcount_post;
	struct HPMHookPoint *HP_skill_get_unit_flag_pre;
	struct HPMHookPoint *HP_skill_get_unit_flag_post;
	struct HPMHookPoint *HP_skill_get_unit_target_pre;
	struct HPMHookPoint *HP_skill_get_unit_target_post;
	struct HPMHookPoint *HP_skill_get_unit_interval_pre;
	struct HPMHookPoint *HP_skill_get_unit_interval_post;
	struct HPMHookPoint *HP_skill_get_unit_bl_target_pre;
	struct HPMHookPoint *HP_skill_get_unit_bl_target_post;
	struct HPMHookPoint *HP_skill_get_unit_layout_type_pre;
	struct HPMHookPoint *HP_skill_get_unit_layout_type_post;
	struct HPMHookPoint *HP_skill_get_unit_range_pre;
	struct HPMHookPoint *HP_skill_get_unit_range_post;
	struct HPMHookPoint *HP_skill_get_cooldown_pre;
	struct HPMHookPoint *HP_skill_get_cooldown_post;
	struct HPMHookPoint *HP_skill_tree_get_max_pre;
	struct HPMHookPoint *HP_skill_tree_get_max_post;
	struct HPMHookPoint *HP_skill_get_name_pre;
	struct HPMHookPoint *HP_skill_get_name_post;
	struct HPMHookPoint *HP_skill_get_desc_pre;
	struct HPMHookPoint *HP_skill_get_desc_post;
	struct HPMHookPoint *HP_skill_chk_pre;
	struct HPMHookPoint *HP_skill_chk_post;
	struct HPMHookPoint *HP_skill_get_casttype_pre;
	struct HPMHookPoint *HP_skill_get_casttype_post;
	struct HPMHookPoint *HP_skill_get_casttype2_pre;
	struct HPMHookPoint *HP_skill_get_casttype2_post;
	struct HPMHookPoint *HP_skill_name2id_pre;
	struct HPMHookPoint *HP_skill_name2id_post;
	struct HPMHookPoint *HP_skill_isammotype_pre;
	struct HPMHookPoint *HP_skill_isammotype_post;
	struct HPMHookPoint *HP_skill_castend_id_pre;
	struct HPMHookPoint *HP_skill_castend_id_post;
	struct HPMHookPoint *HP_skill_castend_pos_pre;
	struct HPMHookPoint *HP_skill_castend_pos_post;
	struct HPMHookPoint *HP_skill_castend_map_pre;
	struct HPMHookPoint *HP_skill_castend_map_post;
	struct HPMHookPoint *HP_skill_cleartimerskill_pre;
	struct HPMHookPoint *HP_skill_cleartimerskill_post;
	struct HPMHookPoint *HP_skill_addtimerskill_pre;
	struct HPMHookPoint *HP_skill_addtimerskill_post;
	struct HPMHookPoint *HP_skill_additional_effect_pre;
	struct HPMHookPoint *HP_skill_additional_effect_post;
	struct HPMHookPoint *HP_skill_counter_additional_effect_pre;
	struct HPMHookPoint *HP_skill_counter_additional_effect_post;
	struct HPMHookPoint *HP_skill_blown_pre;
	struct HPMHookPoint *HP_skill_blown_post;
	struct HPMHookPoint *HP_skill_break_equip_pre;
	struct HPMHookPoint *HP_skill_break_equip_post;
	struct HPMHookPoint *HP_skill_strip_equip_pre;
	struct HPMHookPoint *HP_skill_strip_equip_post;
	struct HPMHookPoint *HP_skill_id2group_pre;
	struct HPMHookPoint *HP_skill_id2group_post;
	struct HPMHookPoint *HP_skill_unitsetting_pre;
	struct HPMHookPoint *HP_skill_unitsetting_post;
	struct HPMHookPoint *HP_skill_initunit_pre;
	struct HPMHookPoint *HP_skill_initunit_post;
	struct HPMHookPoint *HP_skill_delunit_pre;
	struct HPMHookPoint *HP_skill_delunit_post;
	struct HPMHookPoint *HP_skill_init_unitgroup_pre;
	struct HPMHookPoint *HP_skill_init_unitgroup_post;
	struct HPMHookPoint *HP_skill_del_unitgroup_pre;
	struct HPMHookPoint *HP_skill_del_unitgroup_post;
	struct HPMHookPoint *HP_skill_clear_unitgroup_pre;
	struct HPMHookPoint *HP_skill_clear_unitgroup_post;
	struct HPMHookPoint *HP_skill_clear_group_pre;
	struct HPMHookPoint *HP_skill_clear_group_post;
	struct HPMHookPoint *HP_skill_unit_onplace_pre;
	struct HPMHookPoint *HP_skill_unit_onplace_post;
	struct HPMHookPoint *HP_skill_unit_ondamaged_pre;
	struct HPMHookPoint *HP_skill_unit_ondamaged_post;
	struct HPMHookPoint *HP_skill_cast_fix_pre;
	struct HPMHookPoint *HP_skill_cast_fix_post;
	struct HPMHookPoint *HP_skill_cast_fix_sc_pre;
	struct HPMHookPoint *HP_skill_cast_fix_sc_post;
	struct HPMHookPoint *HP_skill_vf_cast_fix_pre;
	struct HPMHookPoint *HP_skill_vf_cast_fix_post;
	struct HPMHookPoint *HP_skill_delay_fix_pre;
	struct HPMHookPoint *HP_skill_delay_fix_post;
	struct HPMHookPoint *HP_skill_check_condition_castbegin_pre;
	struct HPMHookPoint *HP_skill_check_condition_castbegin_post;
	struct HPMHookPoint *HP_skill_check_condition_castend_pre;
	struct HPMHookPoint *HP_skill_check_condition_castend_post;
	struct HPMHookPoint *HP_skill_consume_requirement_pre;
	struct HPMHookPoint *HP_skill_consume_requirement_post;
	struct HPMHookPoint *HP_skill_get_requirement_pre;
	struct HPMHookPoint *HP_skill_get_requirement_post;
	struct HPMHookPoint *HP_skill_check_pc_partner_pre;
	struct HPMHookPoint *HP_skill_check_pc_partner_post;
	struct HPMHookPoint *HP_skill_unit_move_pre;
	struct HPMHookPoint *HP_skill_unit_move_post;
	struct HPMHookPoint *HP_skill_unit_onleft_pre;
	struct HPMHookPoint *HP_skill_unit_onleft_post;
	struct HPMHookPoint *HP_skill_unit_onout_pre;
	struct HPMHookPoint *HP_skill_unit_onout_post;
	struct HPMHookPoint *HP_skill_unit_move_unit_group_pre;
	struct HPMHookPoint *HP_skill_unit_move_unit_group_post;
	struct HPMHookPoint *HP_skill_sit_pre;
	struct HPMHookPoint *HP_skill_sit_post;
	struct HPMHookPoint *HP_skill_brandishspear_pre;
	struct HPMHookPoint *HP_skill_brandishspear_post;
	struct HPMHookPoint *HP_skill_repairweapon_pre;
	struct HPMHookPoint *HP_skill_repairweapon_post;
	struct HPMHookPoint *HP_skill_identify_pre;
	struct HPMHookPoint *HP_skill_identify_post;
	struct HPMHookPoint *HP_skill_weaponrefine_pre;
	struct HPMHookPoint *HP_skill_weaponrefine_post;
	struct HPMHookPoint *HP_skill_autospell_pre;
	struct HPMHookPoint *HP_skill_autospell_post;
	struct HPMHookPoint *HP_skill_calc_heal_pre;
	struct HPMHookPoint *HP_skill_calc_heal_post;
	struct HPMHookPoint *HP_skill_check_cloaking_pre;
	struct HPMHookPoint *HP_skill_check_cloaking_post;
	struct HPMHookPoint *HP_skill_enchant_elemental_end_pre;
	struct HPMHookPoint *HP_skill_enchant_elemental_end_post;
	struct HPMHookPoint *HP_skill_not_ok_pre;
	struct HPMHookPoint *HP_skill_not_ok_post;
	struct HPMHookPoint *HP_skill_not_ok_hom_pre;
	struct HPMHookPoint *HP_skill_not_ok_hom_post;
	struct HPMHookPoint *HP_skill_not_ok_mercenary_pre;
	struct HPMHookPoint *HP_skill_not_ok_mercenary_post;
	struct HPMHookPoint *HP_skill_chastle_mob_changetarget_pre;
	struct HPMHookPoint *HP_skill_chastle_mob_changetarget_post;
	struct HPMHookPoint *HP_skill_can_produce_mix_pre;
	struct HPMHookPoint *HP_skill_can_produce_mix_post;
	struct HPMHookPoint *HP_skill_produce_mix_pre;
	struct HPMHookPoint *HP_skill_produce_mix_post;
	struct HPMHookPoint *HP_skill_arrow_create_pre;
	struct HPMHookPoint *HP_skill_arrow_create_post;
	struct HPMHookPoint *HP_skill_castend_nodamage_id_pre;
	struct HPMHookPoint *HP_skill_castend_nodamage_id_post;
	struct HPMHookPoint *HP_skill_castend_damage_id_pre;
	struct HPMHookPoint *HP_skill_castend_damage_id_post;
	struct HPMHookPoint *HP_skill_castend_pos2_pre;
	struct HPMHookPoint *HP_skill_castend_pos2_post;
	struct HPMHookPoint *HP_skill_blockpc_start_pre;
	struct HPMHookPoint *HP_skill_blockpc_start_post;
	struct HPMHookPoint *HP_skill_blockhomun_start_pre;
	struct HPMHookPoint *HP_skill_blockhomun_start_post;
	struct HPMHookPoint *HP_skill_blockmerc_start_pre;
	struct HPMHookPoint *HP_skill_blockmerc_start_post;
	struct HPMHookPoint *HP_skill_attack_pre;
	struct HPMHookPoint *HP_skill_attack_post;
	struct HPMHookPoint *HP_skill_attack_area_pre;
	struct HPMHookPoint *HP_skill_attack_area_post;
	struct HPMHookPoint *HP_skill_area_sub_pre;
	struct HPMHookPoint *HP_skill_area_sub_post;
	struct HPMHookPoint *HP_skill_area_sub_count_pre;
	struct HPMHookPoint *HP_skill_area_sub_count_post;
	struct HPMHookPoint *HP_skill_check_unit_range_pre;
	struct HPMHookPoint *HP_skill_check_unit_range_post;
	struct HPMHookPoint *HP_skill_check_unit_range_sub_pre;
	struct HPMHookPoint *HP_skill_check_unit_range_sub_post;
	struct HPMHookPoint *HP_skill_check_unit_range2_pre;
	struct HPMHookPoint *HP_skill_check_unit_range2_post;
	struct HPMHookPoint *HP_skill_check_unit_range2_sub_pre;
	struct HPMHookPoint *HP_skill_check_unit_range2_sub_post;
	struct HPMHookPoint *HP_skill_toggle_magicpower_pre;
	struct HPMHookPoint *HP_skill_toggle_magicpower_post;
	struct HPMHookPoint *HP_skill_magic_reflect_pre;
	struct HPMHookPoint *HP_skill_magic_reflect_post;
	struct HPMHookPoint *HP_skill_onskillusage_pre;
	struct HPMHookPoint *HP_skill_onskillusage_post;
	struct HPMHookPoint *HP_skill_cell_overlap_pre;
	struct HPMHookPoint *HP_skill_cell_overlap_post;
	struct HPMHookPoint *HP_skill_timerskill_pre;
	struct HPMHookPoint *HP_skill_timerskill_post;
	struct HPMHookPoint *HP_skill_trap_splash_pre;
	struct HPMHookPoint *HP_skill_trap_splash_post;
	struct HPMHookPoint *HP_skill_check_condition_mercenary_pre;
	struct HPMHookPoint *HP_skill_check_condition_mercenary_post;
	struct HPMHookPoint *HP_skill_locate_element_field_pre;
	struct HPMHookPoint *HP_skill_locate_element_field_post;
	struct HPMHookPoint *HP_skill_graffitiremover_pre;
	struct HPMHookPoint *HP_skill_graffitiremover_post;
	struct HPMHookPoint *HP_skill_activate_reverberation_pre;
	struct HPMHookPoint *HP_skill_activate_reverberation_post;
	struct HPMHookPoint *HP_skill_dance_overlap_sub_pre;
	struct HPMHookPoint *HP_skill_dance_overlap_sub_post;
	struct HPMHookPoint *HP_skill_dance_overlap_pre;
	struct HPMHookPoint *HP_skill_dance_overlap_post;
	struct HPMHookPoint *HP_skill_get_unit_layout_pre;
	struct HPMHookPoint *HP_skill_get_unit_layout_post;
	struct HPMHookPoint *HP_skill_frostjoke_scream_pre;
	struct HPMHookPoint *HP_skill_frostjoke_scream_post;
	struct HPMHookPoint *HP_skill_greed_pre;
	struct HPMHookPoint *HP_skill_greed_post;
	struct HPMHookPoint *HP_skill_destroy_trap_pre;
	struct HPMHookPoint *HP_skill_destroy_trap_post;
	struct HPMHookPoint *HP_skill_icewall_block_pre;
	struct HPMHookPoint *HP_skill_icewall_block_post;
	struct HPMHookPoint *HP_skill_unitgrouptickset_search_pre;
	struct HPMHookPoint *HP_skill_unitgrouptickset_search_post;
	struct HPMHookPoint *HP_skill_dance_switch_pre;
	struct HPMHookPoint *HP_skill_dance_switch_post;
	struct HPMHookPoint *HP_skill_check_condition_char_sub_pre;
	struct HPMHookPoint *HP_skill_check_condition_char_sub_post;
	struct HPMHookPoint *HP_skill_check_condition_mob_master_sub_pre;
	struct HPMHookPoint *HP_skill_check_condition_mob_master_sub_post;
	struct HPMHookPoint *HP_skill_brandishspear_first_pre;
	struct HPMHookPoint *HP_skill_brandishspear_first_post;
	struct HPMHookPoint *HP_skill_brandishspear_dir_pre;
	struct HPMHookPoint *HP_skill_brandishspear_dir_post;
	struct HPMHookPoint *HP_skill_get_fixed_cast_pre;
	struct HPMHookPoint *HP_skill_get_fixed_cast_post;
	struct HPMHookPoint *HP_skill_sit_count_pre;
	struct HPMHookPoint *HP_skill_sit_count_post;
	struct HPMHookPoint *HP_skill_sit_in_pre;
	struct HPMHookPoint *HP_skill_sit_in_post;
	struct HPMHookPoint *HP_skill_sit_out_pre;
	struct HPMHookPoint *HP_skill_sit_out_post;
	struct HPMHookPoint *HP_skill_unitsetmapcell_pre;
	struct HPMHookPoint *HP_skill_unitsetmapcell_post;
	struct HPMHookPoint *HP_skill_unit_onplace_timer_pre;
	struct HPMHookPoint *HP_skill_unit_onplace_timer_post;
	struct HPMHookPoint *HP_skill_unit_effect_pre;
	struct HPMHookPoint *HP_skill_unit_effect_post;
	struct HPMHookPoint *HP_skill_unit_timer_sub_onplace_pre;
	struct HPMHookPoint *HP_skill_unit_timer_sub_onplace_post;
	struct HPMHookPoint *HP_skill_unit_move_sub_pre;
	struct HPMHookPoint *HP_skill_unit_move_sub_post;
	struct HPMHookPoint *HP_skill_blockpc_end_pre;
	struct HPMHookPoint *HP_skill_blockpc_end_post;
	struct HPMHookPoint *HP_skill_blockhomun_end_pre;
	struct HPMHookPoint *HP_skill_blockhomun_end_post;
	struct HPMHookPoint *HP_skill_blockmerc_end_pre;
	struct HPMHookPoint *HP_skill_blockmerc_end_post;
	struct HPMHookPoint *HP_skill_split_atoi_pre;
	struct HPMHookPoint *HP_skill_split_atoi_post;
	struct HPMHookPoint *HP_skill_unit_timer_pre;
	struct HPMHookPoint *HP_skill_unit_timer_post;
	struct HPMHookPoint *HP_skill_unit_timer_sub_pre;
	struct HPMHookPoint *HP_skill_unit_timer_sub_post;
	struct HPMHookPoint *HP_skill_init_unit_layout_pre;
	struct HPMHookPoint *HP_skill_init_unit_layout_post;
	struct HPMHookPoint *HP_skill_parse_row_skilldb_pre;
	struct HPMHookPoint *HP_skill_parse_row_skilldb_post;
	struct HPMHookPoint *HP_skill_parse_row_requiredb_pre;
	struct HPMHookPoint *HP_skill_parse_row_requiredb_post;
	struct HPMHookPoint *HP_skill_parse_row_castdb_pre;
	struct HPMHookPoint *HP_skill_parse_row_castdb_post;
	struct HPMHookPoint *HP_skill_parse_row_castnodexdb_pre;
	struct HPMHookPoint *HP_skill_parse_row_castnodexdb_post;
	struct HPMHookPoint *HP_skill_parse_row_unitdb_pre;
	struct HPMHookPoint *HP_skill_parse_row_unitdb_post;
	struct HPMHookPoint *HP_skill_parse_row_producedb_pre;
	struct HPMHookPoint *HP_skill_parse_row_producedb_post;
	struct HPMHookPoint *HP_skill_parse_row_createarrowdb_pre;
	struct HPMHookPoint *HP_skill_parse_row_createarrowdb_post;
	struct HPMHookPoint *HP_skill_parse_row_abradb_pre;
	struct HPMHookPoint *HP_skill_parse_row_abradb_post;
	struct HPMHookPoint *HP_skill_parse_row_spellbookdb_pre;
	struct HPMHookPoint *HP_skill_parse_row_spellbookdb_post;
	struct HPMHookPoint *HP_skill_parse_row_magicmushroomdb_pre;
	struct HPMHookPoint *HP_skill_parse_row_magicmushroomdb_post;
	struct HPMHookPoint *HP_skill_parse_row_reproducedb_pre;
	struct HPMHookPoint *HP_skill_parse_row_reproducedb_post;
	struct HPMHookPoint *HP_skill_parse_row_improvisedb_pre;
	struct HPMHookPoint *HP_skill_parse_row_improvisedb_post;
	struct HPMHookPoint *HP_skill_parse_row_changematerialdb_pre;
	struct HPMHookPoint *HP_skill_parse_row_changematerialdb_post;
	struct HPMHookPoint *HP_skill_usave_add_pre;
	struct HPMHookPoint *HP_skill_usave_add_post;
	struct HPMHookPoint *HP_skill_usave_trigger_pre;
	struct HPMHookPoint *HP_skill_usave_trigger_post;
	struct HPMHookPoint *HP_skill_cooldown_load_pre;
	struct HPMHookPoint *HP_skill_cooldown_load_post;
	struct HPMHookPoint *HP_skill_spellbook_pre;
	struct HPMHookPoint *HP_skill_spellbook_post;
	struct HPMHookPoint *HP_skill_block_check_pre;
	struct HPMHookPoint *HP_skill_block_check_post;
	struct HPMHookPoint *HP_skill_detonator_pre;
	struct HPMHookPoint *HP_skill_detonator_post;
	struct HPMHookPoint *HP_skill_check_camouflage_pre;
	struct HPMHookPoint *HP_skill_check_camouflage_post;
	struct HPMHookPoint *HP_skill_magicdecoy_pre;
	struct HPMHookPoint *HP_skill_magicdecoy_post;
	struct HPMHookPoint *HP_skill_poisoningweapon_pre;
	struct HPMHookPoint *HP_skill_poisoningweapon_post;
	struct HPMHookPoint *HP_skill_select_menu_pre;
	struct HPMHookPoint *HP_skill_select_menu_post;
	struct HPMHookPoint *HP_skill_elementalanalysis_pre;
	struct HPMHookPoint *HP_skill_elementalanalysis_post;
	struct HPMHookPoint *HP_skill_changematerial_pre;
	struct HPMHookPoint *HP_skill_changematerial_post;
	struct HPMHookPoint *HP_skill_get_elemental_type_pre;
	struct HPMHookPoint *HP_skill_get_elemental_type_post;
	struct HPMHookPoint *HP_skill_cooldown_save_pre;
	struct HPMHookPoint *HP_skill_cooldown_save_post;
	struct HPMHookPoint *HP_skill_get_new_group_id_pre;
	struct HPMHookPoint *HP_skill_get_new_group_id_post;
	struct HPMHookPoint *HP_skill_check_shadowform_pre;
	struct HPMHookPoint *HP_skill_check_shadowform_post;
	struct HPMHookPoint *HP_status_init_pre;
	struct HPMHookPoint *HP_status_init_post;
	struct HPMHookPoint *HP_status_final_pre;
	struct HPMHookPoint *HP_status_final_post;
	struct HPMHookPoint *HP_status_get_refine_chance_pre;
	struct HPMHookPoint *HP_status_get_refine_chance_post;
	struct HPMHookPoint *HP_status_skill2sc_pre;
	struct HPMHookPoint *HP_status_skill2sc_post;
	struct HPMHookPoint *HP_status_sc2skill_pre;
	struct HPMHookPoint *HP_status_sc2skill_post;
	struct HPMHookPoint *HP_status_sc2scb_flag_pre;
	struct HPMHookPoint *HP_status_sc2scb_flag_post;
	struct HPMHookPoint *HP_status_type2relevant_bl_types_pre;
	struct HPMHookPoint *HP_status_type2relevant_bl_types_post;
	struct HPMHookPoint *HP_status_get_sc_type_pre;
	struct HPMHookPoint *HP_status_get_sc_type_post;
	struct HPMHookPoint *HP_status_damage_pre;
	struct HPMHookPoint *HP_status_damage_post;
	struct HPMHookPoint *HP_status_charge_pre;
	struct HPMHookPoint *HP_status_charge_post;
	struct HPMHookPoint *HP_status_percent_change_pre;
	struct HPMHookPoint *HP_status_percent_change_post;
	struct HPMHookPoint *HP_status_set_hp_pre;
	struct HPMHookPoint *HP_status_set_hp_post;
	struct HPMHookPoint *HP_status_set_sp_pre;
	struct HPMHookPoint *HP_status_set_sp_post;
	struct HPMHookPoint *HP_status_heal_pre;
	struct HPMHookPoint *HP_status_heal_post;
	struct HPMHookPoint *HP_status_revive_pre;
	struct HPMHookPoint *HP_status_revive_post;
	struct HPMHookPoint *HP_status_fixed_revive_pre;
	struct HPMHookPoint *HP_status_fixed_revive_post;
	struct HPMHookPoint *HP_status_get_regen_data_pre;
	struct HPMHookPoint *HP_status_get_regen_data_post;
	struct HPMHookPoint *HP_status_get_status_data_pre;
	struct HPMHookPoint *HP_status_get_status_data_post;
	struct HPMHookPoint *HP_status_get_base_status_pre;
	struct HPMHookPoint *HP_status_get_base_status_post;
	struct HPMHookPoint *HP_status_get_name_pre;
	struct HPMHookPoint *HP_status_get_name_post;
	struct HPMHookPoint *HP_status_get_class_pre;
	struct HPMHookPoint *HP_status_get_class_post;
	struct HPMHookPoint *HP_status_get_lv_pre;
	struct HPMHookPoint *HP_status_get_lv_post;
	struct HPMHookPoint *HP_status_get_def_pre;
	struct HPMHookPoint *HP_status_get_def_post;
	struct HPMHookPoint *HP_status_get_speed_pre;
	struct HPMHookPoint *HP_status_get_speed_post;
	struct HPMHookPoint *HP_status_calc_attack_element_pre;
	struct HPMHookPoint *HP_status_calc_attack_element_post;
	struct HPMHookPoint *HP_status_get_party_id_pre;
	struct HPMHookPoint *HP_status_get_party_id_post;
	struct HPMHookPoint *HP_status_get_guild_id_pre;
	struct HPMHookPoint *HP_status_get_guild_id_post;
	struct HPMHookPoint *HP_status_get_emblem_id_pre;
	struct HPMHookPoint *HP_status_get_emblem_id_post;
	struct HPMHookPoint *HP_status_get_mexp_pre;
	struct HPMHookPoint *HP_status_get_mexp_post;
	struct HPMHookPoint *HP_status_get_race2_pre;
	struct HPMHookPoint *HP_status_get_race2_post;
	struct HPMHookPoint *HP_status_get_viewdata_pre;
	struct HPMHookPoint *HP_status_get_viewdata_post;
	struct HPMHookPoint *HP_status_set_viewdata_pre;
	struct HPMHookPoint *HP_status_set_viewdata_post;
	struct HPMHookPoint *HP_status_change_init_pre;
	struct HPMHookPoint *HP_status_change_init_post;
	struct HPMHookPoint *HP_status_get_sc_pre;
	struct HPMHookPoint *HP_status_get_sc_post;
	struct HPMHookPoint *HP_status_isdead_pre;
	struct HPMHookPoint *HP_status_isdead_post;
	struct HPMHookPoint *HP_status_isimmune_pre;
	struct HPMHookPoint *HP_status_isimmune_post;
	struct HPMHookPoint *HP_status_get_sc_def_pre;
	struct HPMHookPoint *HP_status_get_sc_def_post;
	struct HPMHookPoint *HP_status_change_start_pre;
	struct HPMHookPoint *HP_status_change_start_post;
	struct HPMHookPoint *HP_status_change_end__pre;
	struct HPMHookPoint *HP_status_change_end__post;
	struct HPMHookPoint *HP_status_kaahi_heal_timer_pre;
	struct HPMHookPoint *HP_status_kaahi_heal_timer_post;
	struct HPMHookPoint *HP_status_change_timer_pre;
	struct HPMHookPoint *HP_status_change_timer_post;
	struct HPMHookPoint *HP_status_change_timer_sub_pre;
	struct HPMHookPoint *HP_status_change_timer_sub_post;
	struct HPMHookPoint *HP_status_change_clear_pre;
	struct HPMHookPoint *HP_status_change_clear_post;
	struct HPMHookPoint *HP_status_change_clear_buffs_pre;
	struct HPMHookPoint *HP_status_change_clear_buffs_post;
	struct HPMHookPoint *HP_status_calc_bl__pre;
	struct HPMHookPoint *HP_status_calc_bl__post;
	struct HPMHookPoint *HP_status_calc_mob__pre;
	struct HPMHookPoint *HP_status_calc_mob__post;
	struct HPMHookPoint *HP_status_calc_pet__pre;
	struct HPMHookPoint *HP_status_calc_pet__post;
	struct HPMHookPoint *HP_status_calc_pc__pre;
	struct HPMHookPoint *HP_status_calc_pc__post;
	struct HPMHookPoint *HP_status_calc_homunculus__pre;
	struct HPMHookPoint *HP_status_calc_homunculus__post;
	struct HPMHookPoint *HP_status_calc_mercenary__pre;
	struct HPMHookPoint *HP_status_calc_mercenary__post;
	struct HPMHookPoint *HP_status_calc_elemental__pre;
	struct HPMHookPoint *HP_status_calc_elemental__post;
	struct HPMHookPoint *HP_status_calc_misc_pre;
	struct HPMHookPoint *HP_status_calc_misc_post;
	struct HPMHookPoint *HP_status_calc_regen_pre;
	struct HPMHookPoint *HP_status_calc_regen_post;
	struct HPMHookPoint *HP_status_calc_regen_rate_pre;
	struct HPMHookPoint *HP_status_calc_regen_rate_post;
	struct HPMHookPoint *HP_status_check_skilluse_pre;
	struct HPMHookPoint *HP_status_check_skilluse_post;
	struct HPMHookPoint *HP_status_check_visibility_pre;
	struct HPMHookPoint *HP_status_check_visibility_post;
	struct HPMHookPoint *HP_status_change_spread_pre;
	struct HPMHookPoint *HP_status_change_spread_post;
	struct HPMHookPoint *HP_status_calc_def_pre;
	struct HPMHookPoint *HP_status_calc_def_post;
	struct HPMHookPoint *HP_status_calc_def2_pre;
	struct HPMHookPoint *HP_status_calc_def2_post;
	struct HPMHookPoint *HP_status_calc_mdef_pre;
	struct HPMHookPoint *HP_status_calc_mdef_post;
	struct HPMHookPoint *HP_status_calc_mdef2_pre;
	struct HPMHookPoint *HP_status_calc_mdef2_post;
	struct HPMHookPoint *HP_status_calc_batk_pre;
	struct HPMHookPoint *HP_status_calc_batk_post;
	struct HPMHookPoint *HP_status_base_matk_pre;
	struct HPMHookPoint *HP_status_base_matk_post;
	struct HPMHookPoint *HP_status_get_weapon_atk_pre;
	struct HPMHookPoint *HP_status_get_weapon_atk_post;
	struct HPMHookPoint *HP_status_get_total_mdef_pre;
	struct HPMHookPoint *HP_status_get_total_mdef_post;
	struct HPMHookPoint *HP_status_get_total_def_pre;
	struct HPMHookPoint *HP_status_get_total_def_post;
	struct HPMHookPoint *HP_status_get_matk_pre;
	struct HPMHookPoint *HP_status_get_matk_post;
	struct HPMHookPoint *HP_status_readdb_pre;
	struct HPMHookPoint *HP_status_readdb_post;
	struct HPMHookPoint *HP_status_initChangeTables_pre;
	struct HPMHookPoint *HP_status_initChangeTables_post;
	struct HPMHookPoint *HP_status_initDummyData_pre;
	struct HPMHookPoint *HP_status_initDummyData_post;
	struct HPMHookPoint *HP_status_base_amotion_pc_pre;
	struct HPMHookPoint *HP_status_base_amotion_pc_post;
	struct HPMHookPoint *HP_status_base_atk_pre;
	struct HPMHookPoint *HP_status_base_atk_post;
	struct HPMHookPoint *HP_status_calc_sigma_pre;
	struct HPMHookPoint *HP_status_calc_sigma_post;
	struct HPMHookPoint *HP_status_base_pc_maxhp_pre;
	struct HPMHookPoint *HP_status_base_pc_maxhp_post;
	struct HPMHookPoint *HP_status_base_pc_maxsp_pre;
	struct HPMHookPoint *HP_status_base_pc_maxsp_post;
	struct HPMHookPoint *HP_status_calc_npc__pre;
	struct HPMHookPoint *HP_status_calc_npc__post;
	struct HPMHookPoint *HP_status_calc_str_pre;
	struct HPMHookPoint *HP_status_calc_str_post;
	struct HPMHookPoint *HP_status_calc_agi_pre;
	struct HPMHookPoint *HP_status_calc_agi_post;
	struct HPMHookPoint *HP_status_calc_vit_pre;
	struct HPMHookPoint *HP_status_calc_vit_post;
	struct HPMHookPoint *HP_status_calc_int_pre;
	struct HPMHookPoint *HP_status_calc_int_post;
	struct HPMHookPoint *HP_status_calc_dex_pre;
	struct HPMHookPoint *HP_status_calc_dex_post;
	struct HPMHookPoint *HP_status_calc_luk_pre;
	struct HPMHookPoint *HP_status_calc_luk_post;
	struct HPMHookPoint *HP_status_calc_watk_pre;
	struct HPMHookPoint *HP_status_calc_watk_post;
	struct HPMHookPoint *HP_status_calc_matk_pre;
	struct HPMHookPoint *HP_status_calc_matk_post;
	struct HPMHookPoint *HP_status_calc_hit_pre;
	struct HPMHookPoint *HP_status_calc_hit_post;
	struct HPMHookPoint *HP_status_calc_critical_pre;
	struct HPMHookPoint *HP_status_calc_critical_post;
	struct HPMHookPoint *HP_status_calc_flee_pre;
	struct HPMHookPoint *HP_status_calc_flee_post;
	struct HPMHookPoint *HP_status_calc_flee2_pre;
	struct HPMHookPoint *HP_status_calc_flee2_post;
	struct HPMHookPoint *HP_status_calc_speed_pre;
	struct HPMHookPoint *HP_status_calc_speed_post;
	struct HPMHookPoint *HP_status_calc_aspd_rate_pre;
	struct HPMHookPoint *HP_status_calc_aspd_rate_post;
	struct HPMHookPoint *HP_status_calc_dmotion_pre;
	struct HPMHookPoint *HP_status_calc_dmotion_post;
	struct HPMHookPoint *HP_status_calc_aspd_pre;
	struct HPMHookPoint *HP_status_calc_aspd_post;
	struct HPMHookPoint *HP_status_calc_fix_aspd_pre;
	struct HPMHookPoint *HP_status_calc_fix_aspd_post;
	struct HPMHookPoint *HP_status_calc_maxhp_pre;
	struct HPMHookPoint *HP_status_calc_maxhp_post;
	struct HPMHookPoint *HP_status_calc_maxsp_pre;
	struct HPMHookPoint *HP_status_calc_maxsp_post;
	struct HPMHookPoint *HP_status_calc_element_pre;
	struct HPMHookPoint *HP_status_calc_element_post;
	struct HPMHookPoint *HP_status_calc_element_lv_pre;
	struct HPMHookPoint *HP_status_calc_element_lv_post;
	struct HPMHookPoint *HP_status_calc_mode_pre;
	struct HPMHookPoint *HP_status_calc_mode_post;
	struct HPMHookPoint *HP_status_calc_ematk_pre;
	struct HPMHookPoint *HP_status_calc_ematk_post;
	struct HPMHookPoint *HP_status_calc_bl_main_pre;
	struct HPMHookPoint *HP_status_calc_bl_main_post;
	struct HPMHookPoint *HP_status_display_add_pre;
	struct HPMHookPoint *HP_status_display_add_post;
	struct HPMHookPoint *HP_status_display_remove_pre;
	struct HPMHookPoint *HP_status_display_remove_post;
	struct HPMHookPoint *HP_status_natural_heal_pre;
	struct HPMHookPoint *HP_status_natural_heal_post;
	struct HPMHookPoint *HP_status_natural_heal_timer_pre;
	struct HPMHookPoint *HP_status_natural_heal_timer_post;
	struct HPMHookPoint *HP_status_readdb_job1_pre;
	struct HPMHookPoint *HP_status_readdb_job1_post;
	struct HPMHookPoint *HP_status_readdb_job2_pre;
	struct HPMHookPoint *HP_status_readdb_job2_post;
	struct HPMHookPoint *HP_status_readdb_sizefix_pre;
	struct HPMHookPoint *HP_status_readdb_sizefix_post;
	struct HPMHookPoint *HP_status_readdb_refine_pre;
	struct HPMHookPoint *HP_status_readdb_refine_post;
	struct HPMHookPoint *HP_status_readdb_scconfig_pre;
	struct HPMHookPoint *HP_status_readdb_scconfig_post;
	struct HPMHookPoint *HP_storage_reconnect_pre;
	struct HPMHookPoint *HP_storage_reconnect_post;
	struct HPMHookPoint *HP_storage_delitem_pre;
	struct HPMHookPoint *HP_storage_delitem_post;
	struct HPMHookPoint *HP_storage_open_pre;
	struct HPMHookPoint *HP_storage_open_post;
	struct HPMHookPoint *HP_storage_add_pre;
	struct HPMHookPoint *HP_storage_add_post;
	struct HPMHookPoint *HP_storage_get_pre;
	struct HPMHookPoint *HP_storage_get_post;
	struct HPMHookPoint *HP_storage_additem_pre;
	struct HPMHookPoint *HP_storage_additem_post;
	struct HPMHookPoint *HP_storage_addfromcart_pre;
	struct HPMHookPoint *HP_storage_addfromcart_post;
	struct HPMHookPoint *HP_storage_gettocart_pre;
	struct HPMHookPoint *HP_storage_gettocart_post;
	struct HPMHookPoint *HP_storage_close_pre;
	struct HPMHookPoint *HP_storage_close_post;
	struct HPMHookPoint *HP_storage_pc_quit_pre;
	struct HPMHookPoint *HP_storage_pc_quit_post;
	struct HPMHookPoint *HP_storage_comp_item_pre;
	struct HPMHookPoint *HP_storage_comp_item_post;
	struct HPMHookPoint *HP_storage_sortitem_pre;
	struct HPMHookPoint *HP_storage_sortitem_post;
	struct HPMHookPoint *HP_storage_reconnect_sub_pre;
	struct HPMHookPoint *HP_storage_reconnect_sub_post;
	struct HPMHookPoint *HP_trade_request_pre;
	struct HPMHookPoint *HP_trade_request_post;
	struct HPMHookPoint *HP_trade_ack_pre;
	struct HPMHookPoint *HP_trade_ack_post;
	struct HPMHookPoint *HP_trade_check_impossible_pre;
	struct HPMHookPoint *HP_trade_check_impossible_post;
	struct HPMHookPoint *HP_trade_check_pre;
	struct HPMHookPoint *HP_trade_check_post;
	struct HPMHookPoint *HP_trade_additem_pre;
	struct HPMHookPoint *HP_trade_additem_post;
	struct HPMHookPoint *HP_trade_addzeny_pre;
	struct HPMHookPoint *HP_trade_addzeny_post;
	struct HPMHookPoint *HP_trade_ok_pre;
	struct HPMHookPoint *HP_trade_ok_post;
	struct HPMHookPoint *HP_trade_cancel_pre;
	struct HPMHookPoint *HP_trade_cancel_post;
	struct HPMHookPoint *HP_trade_commit_pre;
	struct HPMHookPoint *HP_trade_commit_post;
	struct HPMHookPoint *HP_unit_init_pre;
	struct HPMHookPoint *HP_unit_init_post;
	struct HPMHookPoint *HP_unit_final_pre;
	struct HPMHookPoint *HP_unit_final_post;
	struct HPMHookPoint *HP_unit_bl2ud_pre;
	struct HPMHookPoint *HP_unit_bl2ud_post;
	struct HPMHookPoint *HP_unit_bl2ud2_pre;
	struct HPMHookPoint *HP_unit_bl2ud2_post;
	struct HPMHookPoint *HP_unit_attack_timer_pre;
	struct HPMHookPoint *HP_unit_attack_timer_post;
	struct HPMHookPoint *HP_unit_walktoxy_timer_pre;
	struct HPMHookPoint *HP_unit_walktoxy_timer_post;
	struct HPMHookPoint *HP_unit_walktoxy_sub_pre;
	struct HPMHookPoint *HP_unit_walktoxy_sub_post;
	struct HPMHookPoint *HP_unit_delay_walktoxy_timer_pre;
	struct HPMHookPoint *HP_unit_delay_walktoxy_timer_post;
	struct HPMHookPoint *HP_unit_walktoxy_pre;
	struct HPMHookPoint *HP_unit_walktoxy_post;
	struct HPMHookPoint *HP_unit_walktobl_sub_pre;
	struct HPMHookPoint *HP_unit_walktobl_sub_post;
	struct HPMHookPoint *HP_unit_walktobl_pre;
	struct HPMHookPoint *HP_unit_walktobl_post;
	struct HPMHookPoint *HP_unit_run_pre;
	struct HPMHookPoint *HP_unit_run_post;
	struct HPMHookPoint *HP_unit_wugdash_pre;
	struct HPMHookPoint *HP_unit_wugdash_post;
	struct HPMHookPoint *HP_unit_escape_pre;
	struct HPMHookPoint *HP_unit_escape_post;
	struct HPMHookPoint *HP_unit_movepos_pre;
	struct HPMHookPoint *HP_unit_movepos_post;
	struct HPMHookPoint *HP_unit_setdir_pre;
	struct HPMHookPoint *HP_unit_setdir_post;
	struct HPMHookPoint *HP_unit_getdir_pre;
	struct HPMHookPoint *HP_unit_getdir_post;
	struct HPMHookPoint *HP_unit_blown_pre;
	struct HPMHookPoint *HP_unit_blown_post;
	struct HPMHookPoint *HP_unit_warp_pre;
	struct HPMHookPoint *HP_unit_warp_post;
	struct HPMHookPoint *HP_unit_stop_walking_pre;
	struct HPMHookPoint *HP_unit_stop_walking_post;
	struct HPMHookPoint *HP_unit_skilluse_id_pre;
	struct HPMHookPoint *HP_unit_skilluse_id_post;
	struct HPMHookPoint *HP_unit_is_walking_pre;
	struct HPMHookPoint *HP_unit_is_walking_post;
	struct HPMHookPoint *HP_unit_can_move_pre;
	struct HPMHookPoint *HP_unit_can_move_post;
	struct HPMHookPoint *HP_unit_resume_running_pre;
	struct HPMHookPoint *HP_unit_resume_running_post;
	struct HPMHookPoint *HP_unit_set_walkdelay_pre;
	struct HPMHookPoint *HP_unit_set_walkdelay_post;
	struct HPMHookPoint *HP_unit_skilluse_id2_pre;
	struct HPMHookPoint *HP_unit_skilluse_id2_post;
	struct HPMHookPoint *HP_unit_skilluse_pos_pre;
	struct HPMHookPoint *HP_unit_skilluse_pos_post;
	struct HPMHookPoint *HP_unit_skilluse_pos2_pre;
	struct HPMHookPoint *HP_unit_skilluse_pos2_post;
	struct HPMHookPoint *HP_unit_set_target_pre;
	struct HPMHookPoint *HP_unit_set_target_post;
	struct HPMHookPoint *HP_unit_stop_attack_pre;
	struct HPMHookPoint *HP_unit_stop_attack_post;
	struct HPMHookPoint *HP_unit_unattackable_pre;
	struct HPMHookPoint *HP_unit_unattackable_post;
	struct HPMHookPoint *HP_unit_attack_pre;
	struct HPMHookPoint *HP_unit_attack_post;
	struct HPMHookPoint *HP_unit_cancel_combo_pre;
	struct HPMHookPoint *HP_unit_cancel_combo_post;
	struct HPMHookPoint *HP_unit_can_reach_pos_pre;
	struct HPMHookPoint *HP_unit_can_reach_pos_post;
	struct HPMHookPoint *HP_unit_can_reach_bl_pre;
	struct HPMHookPoint *HP_unit_can_reach_bl_post;
	struct HPMHookPoint *HP_unit_calc_pos_pre;
	struct HPMHookPoint *HP_unit_calc_pos_post;
	struct HPMHookPoint *HP_unit_attack_timer_sub_pre;
	struct HPMHookPoint *HP_unit_attack_timer_sub_post;
	struct HPMHookPoint *HP_unit_skillcastcancel_pre;
	struct HPMHookPoint *HP_unit_skillcastcancel_post;
	struct HPMHookPoint *HP_unit_dataset_pre;
	struct HPMHookPoint *HP_unit_dataset_post;
	struct HPMHookPoint *HP_unit_counttargeted_pre;
	struct HPMHookPoint *HP_unit_counttargeted_post;
	struct HPMHookPoint *HP_unit_fixdamage_pre;
	struct HPMHookPoint *HP_unit_fixdamage_post;
	struct HPMHookPoint *HP_unit_changeviewsize_pre;
	struct HPMHookPoint *HP_unit_changeviewsize_post;
	struct HPMHookPoint *HP_unit_remove_map_pre;
	struct HPMHookPoint *HP_unit_remove_map_post;
	struct HPMHookPoint *HP_unit_remove_map_pc_pre;
	struct HPMHookPoint *HP_unit_remove_map_pc_post;
	struct HPMHookPoint *HP_unit_free_pc_pre;
	struct HPMHookPoint *HP_unit_free_pc_post;
	struct HPMHookPoint *HP_unit_free_pre;
	struct HPMHookPoint *HP_unit_free_post;
	struct HPMHookPoint *HP_vending_init_pre;
	struct HPMHookPoint *HP_vending_init_post;
	struct HPMHookPoint *HP_vending_final_pre;
	struct HPMHookPoint *HP_vending_final_post;
	struct HPMHookPoint *HP_vending_close_pre;
	struct HPMHookPoint *HP_vending_close_post;
	struct HPMHookPoint *HP_vending_open_pre;
	struct HPMHookPoint *HP_vending_open_post;
	struct HPMHookPoint *HP_vending_list_pre;
	struct HPMHookPoint *HP_vending_list_post;
	struct HPMHookPoint *HP_vending_purchase_pre;
	struct HPMHookPoint *HP_vending_purchase_post;
	struct HPMHookPoint *HP_vending_search_pre;
	struct HPMHookPoint *HP_vending_search_post;
	struct HPMHookPoint *HP_vending_searchall_pre;
	struct HPMHookPoint *HP_vending_searchall_post;
} list;

struct {
	int HP_atcommand_init_pre;
	int HP_atcommand_init_post;
	int HP_atcommand_final_pre;
	int HP_atcommand_final_post;
	int HP_atcommand_exec_pre;
	int HP_atcommand_exec_post;
	int HP_atcommand_create_pre;
	int HP_atcommand_create_post;
	int HP_atcommand_can_use_pre;
	int HP_atcommand_can_use_post;
	int HP_atcommand_can_use2_pre;
	int HP_atcommand_can_use2_post;
	int HP_atcommand_load_groups_pre;
	int HP_atcommand_load_groups_post;
	int HP_atcommand_exists_pre;
	int HP_atcommand_exists_post;
	int HP_atcommand_msg_read_pre;
	int HP_atcommand_msg_read_post;
	int HP_atcommand_final_msg_pre;
	int HP_atcommand_final_msg_post;
	int HP_atcommand_get_bind_byname_pre;
	int HP_atcommand_get_bind_byname_post;
	int HP_atcommand_get_info_byname_pre;
	int HP_atcommand_get_info_byname_post;
	int HP_atcommand_check_alias_pre;
	int HP_atcommand_check_alias_post;
	int HP_atcommand_get_suggestions_pre;
	int HP_atcommand_get_suggestions_post;
	int HP_atcommand_config_read_pre;
	int HP_atcommand_config_read_post;
	int HP_atcommand_stopattack_pre;
	int HP_atcommand_stopattack_post;
	int HP_atcommand_pvpoff_sub_pre;
	int HP_atcommand_pvpoff_sub_post;
	int HP_atcommand_pvpon_sub_pre;
	int HP_atcommand_pvpon_sub_post;
	int HP_atcommand_atkillmonster_sub_pre;
	int HP_atcommand_atkillmonster_sub_post;
	int HP_atcommand_raise_sub_pre;
	int HP_atcommand_raise_sub_post;
	int HP_atcommand_get_jail_time_pre;
	int HP_atcommand_get_jail_time_post;
	int HP_atcommand_cleanfloor_sub_pre;
	int HP_atcommand_cleanfloor_sub_post;
	int HP_atcommand_mutearea_sub_pre;
	int HP_atcommand_mutearea_sub_post;
	int HP_atcommand_commands_sub_pre;
	int HP_atcommand_commands_sub_post;
	int HP_atcommand_cmd_db_clear_pre;
	int HP_atcommand_cmd_db_clear_post;
	int HP_atcommand_cmd_db_clear_sub_pre;
	int HP_atcommand_cmd_db_clear_sub_post;
	int HP_atcommand_doload_pre;
	int HP_atcommand_doload_post;
	int HP_atcommand_base_commands_pre;
	int HP_atcommand_base_commands_post;
	int HP_atcommand_add_pre;
	int HP_atcommand_add_post;
	int HP_atcommand_msg_pre;
	int HP_atcommand_msg_post;
	int HP_battle_init_pre;
	int HP_battle_init_post;
	int HP_battle_final_pre;
	int HP_battle_final_post;
	int HP_battle_calc_attack_pre;
	int HP_battle_calc_attack_post;
	int HP_battle_calc_damage_pre;
	int HP_battle_calc_damage_post;
	int HP_battle_calc_gvg_damage_pre;
	int HP_battle_calc_gvg_damage_post;
	int HP_battle_calc_bg_damage_pre;
	int HP_battle_calc_bg_damage_post;
	int HP_battle_weapon_attack_pre;
	int HP_battle_weapon_attack_post;
	int HP_battle_calc_weapon_attack_pre;
	int HP_battle_calc_weapon_attack_post;
	int HP_battle_delay_damage_pre;
	int HP_battle_delay_damage_post;
	int HP_battle_drain_pre;
	int HP_battle_drain_post;
	int HP_battle_reflect_damage_pre;
	int HP_battle_reflect_damage_post;
	int HP_battle_attr_ratio_pre;
	int HP_battle_attr_ratio_post;
	int HP_battle_attr_fix_pre;
	int HP_battle_attr_fix_post;
	int HP_battle_calc_cardfix_pre;
	int HP_battle_calc_cardfix_post;
	int HP_battle_calc_elefix_pre;
	int HP_battle_calc_elefix_post;
	int HP_battle_calc_masteryfix_pre;
	int HP_battle_calc_masteryfix_post;
	int HP_battle_calc_chorusbonus_pre;
	int HP_battle_calc_chorusbonus_post;
	int HP_battle_calc_skillratio_pre;
	int HP_battle_calc_skillratio_post;
	int HP_battle_calc_sizefix_pre;
	int HP_battle_calc_sizefix_post;
	int HP_battle_calc_weapon_damage_pre;
	int HP_battle_calc_weapon_damage_post;
	int HP_battle_calc_defense_pre;
	int HP_battle_calc_defense_post;
	int HP_battle_get_master_pre;
	int HP_battle_get_master_post;
	int HP_battle_get_targeted_pre;
	int HP_battle_get_targeted_post;
	int HP_battle_get_enemy_pre;
	int HP_battle_get_enemy_post;
	int HP_battle_get_target_pre;
	int HP_battle_get_target_post;
	int HP_battle_get_current_skill_pre;
	int HP_battle_get_current_skill_post;
	int HP_battle_check_undead_pre;
	int HP_battle_check_undead_post;
	int HP_battle_check_target_pre;
	int HP_battle_check_target_post;
	int HP_battle_check_range_pre;
	int HP_battle_check_range_post;
	int HP_battle_consume_ammo_pre;
	int HP_battle_consume_ammo_post;
	int HP_battle_get_targeted_sub_pre;
	int HP_battle_get_targeted_sub_post;
	int HP_battle_get_enemy_sub_pre;
	int HP_battle_get_enemy_sub_post;
	int HP_battle_get_enemy_area_sub_pre;
	int HP_battle_get_enemy_area_sub_post;
	int HP_battle_delay_damage_sub_pre;
	int HP_battle_delay_damage_sub_post;
	int HP_battle_blewcount_bonus_pre;
	int HP_battle_blewcount_bonus_post;
	int HP_battle_range_type_pre;
	int HP_battle_range_type_post;
	int HP_battle_calc_base_damage_pre;
	int HP_battle_calc_base_damage_post;
	int HP_battle_calc_base_damage2_pre;
	int HP_battle_calc_base_damage2_post;
	int HP_battle_calc_misc_attack_pre;
	int HP_battle_calc_misc_attack_post;
	int HP_battle_calc_magic_attack_pre;
	int HP_battle_calc_magic_attack_post;
	int HP_battle_adjust_skill_damage_pre;
	int HP_battle_adjust_skill_damage_post;
	int HP_battle_add_mastery_pre;
	int HP_battle_add_mastery_post;
	int HP_battle_calc_drain_pre;
	int HP_battle_calc_drain_post;
	int HP_battle_config_read_pre;
	int HP_battle_config_read_post;
	int HP_battle_config_set_defaults_pre;
	int HP_battle_config_set_defaults_post;
	int HP_battle_config_set_value_pre;
	int HP_battle_config_set_value_post;
	int HP_battle_config_get_value_pre;
	int HP_battle_config_get_value_post;
	int HP_battle_config_adjust_pre;
	int HP_battle_config_adjust_post;
	int HP_battle_get_enemy_area_pre;
	int HP_battle_get_enemy_area_post;
	int HP_battle_damage_area_pre;
	int HP_battle_damage_area_post;
	int HP_bg_init_pre;
	int HP_bg_init_post;
	int HP_bg_final_pre;
	int HP_bg_final_post;
	int HP_bg_name2arena_pre;
	int HP_bg_name2arena_post;
	int HP_bg_queue_add_pre;
	int HP_bg_queue_add_post;
	int HP_bg_can_queue_pre;
	int HP_bg_can_queue_post;
	int HP_bg_id2pos_pre;
	int HP_bg_id2pos_post;
	int HP_bg_queue_pc_cleanup_pre;
	int HP_bg_queue_pc_cleanup_post;
	int HP_bg_begin_pre;
	int HP_bg_begin_post;
	int HP_bg_begin_timer_pre;
	int HP_bg_begin_timer_post;
	int HP_bg_queue_pregame_pre;
	int HP_bg_queue_pregame_post;
	int HP_bg_fillup_timer_pre;
	int HP_bg_fillup_timer_post;
	int HP_bg_queue_ready_ack_pre;
	int HP_bg_queue_ready_ack_post;
	int HP_bg_match_over_pre;
	int HP_bg_match_over_post;
	int HP_bg_queue_check_pre;
	int HP_bg_queue_check_post;
	int HP_bg_team_search_pre;
	int HP_bg_team_search_post;
	int HP_bg_getavailablesd_pre;
	int HP_bg_getavailablesd_post;
	int HP_bg_team_delete_pre;
	int HP_bg_team_delete_post;
	int HP_bg_team_warp_pre;
	int HP_bg_team_warp_post;
	int HP_bg_send_dot_remove_pre;
	int HP_bg_send_dot_remove_post;
	int HP_bg_team_join_pre;
	int HP_bg_team_join_post;
	int HP_bg_team_leave_pre;
	int HP_bg_team_leave_post;
	int HP_bg_member_respawn_pre;
	int HP_bg_member_respawn_post;
	int HP_bg_create_pre;
	int HP_bg_create_post;
	int HP_bg_team_get_id_pre;
	int HP_bg_team_get_id_post;
	int HP_bg_send_message_pre;
	int HP_bg_send_message_post;
	int HP_bg_send_xy_timer_sub_pre;
	int HP_bg_send_xy_timer_sub_post;
	int HP_bg_send_xy_timer_pre;
	int HP_bg_send_xy_timer_post;
	int HP_bg_config_read_pre;
	int HP_bg_config_read_post;
	int HP_buyingstore_setup_pre;
	int HP_buyingstore_setup_post;
	int HP_buyingstore_create_pre;
	int HP_buyingstore_create_post;
	int HP_buyingstore_close_pre;
	int HP_buyingstore_close_post;
	int HP_buyingstore_open_pre;
	int HP_buyingstore_open_post;
	int HP_buyingstore_trade_pre;
	int HP_buyingstore_trade_post;
	int HP_buyingstore_search_pre;
	int HP_buyingstore_search_post;
	int HP_buyingstore_searchall_pre;
	int HP_buyingstore_searchall_post;
	int HP_buyingstore_getuid_pre;
	int HP_buyingstore_getuid_post;
	int HP_chat_create_pc_chat_pre;
	int HP_chat_create_pc_chat_post;
	int HP_chat_join_pre;
	int HP_chat_join_post;
	int HP_chat_leave_pre;
	int HP_chat_leave_post;
	int HP_chat_change_owner_pre;
	int HP_chat_change_owner_post;
	int HP_chat_change_status_pre;
	int HP_chat_change_status_post;
	int HP_chat_kick_pre;
	int HP_chat_kick_post;
	int HP_chat_create_npc_chat_pre;
	int HP_chat_create_npc_chat_post;
	int HP_chat_delete_npc_chat_pre;
	int HP_chat_delete_npc_chat_post;
	int HP_chat_enable_event_pre;
	int HP_chat_enable_event_post;
	int HP_chat_disable_event_pre;
	int HP_chat_disable_event_post;
	int HP_chat_npc_kick_all_pre;
	int HP_chat_npc_kick_all_post;
	int HP_chat_trigger_event_pre;
	int HP_chat_trigger_event_post;
	int HP_chat_create_pre;
	int HP_chat_create_post;
	int HP_chrif_init_pre;
	int HP_chrif_init_post;
	int HP_chrif_final_pre;
	int HP_chrif_final_post;
	int HP_chrif_setuserid_pre;
	int HP_chrif_setuserid_post;
	int HP_chrif_setpasswd_pre;
	int HP_chrif_setpasswd_post;
	int HP_chrif_checkdefaultlogin_pre;
	int HP_chrif_checkdefaultlogin_post;
	int HP_chrif_setip_pre;
	int HP_chrif_setip_post;
	int HP_chrif_setport_pre;
	int HP_chrif_setport_post;
	int HP_chrif_isconnected_pre;
	int HP_chrif_isconnected_post;
	int HP_chrif_check_shutdown_pre;
	int HP_chrif_check_shutdown_post;
	int HP_chrif_search_pre;
	int HP_chrif_search_post;
	int HP_chrif_auth_check_pre;
	int HP_chrif_auth_check_post;
	int HP_chrif_auth_delete_pre;
	int HP_chrif_auth_delete_post;
	int HP_chrif_auth_finished_pre;
	int HP_chrif_auth_finished_post;
	int HP_chrif_authreq_pre;
	int HP_chrif_authreq_post;
	int HP_chrif_authok_pre;
	int HP_chrif_authok_post;
	int HP_chrif_scdata_request_pre;
	int HP_chrif_scdata_request_post;
	int HP_chrif_save_pre;
	int HP_chrif_save_post;
	int HP_chrif_charselectreq_pre;
	int HP_chrif_charselectreq_post;
	int HP_chrif_changemapserver_pre;
	int HP_chrif_changemapserver_post;
	int HP_chrif_searchcharid_pre;
	int HP_chrif_searchcharid_post;
	int HP_chrif_changeemail_pre;
	int HP_chrif_changeemail_post;
	int HP_chrif_char_ask_name_pre;
	int HP_chrif_char_ask_name_post;
	int HP_chrif_updatefamelist_pre;
	int HP_chrif_updatefamelist_post;
	int HP_chrif_buildfamelist_pre;
	int HP_chrif_buildfamelist_post;
	int HP_chrif_save_scdata_pre;
	int HP_chrif_save_scdata_post;
	int HP_chrif_ragsrvinfo_pre;
	int HP_chrif_ragsrvinfo_post;
	int HP_chrif_char_offline_nsd_pre;
	int HP_chrif_char_offline_nsd_post;
	int HP_chrif_char_reset_offline_pre;
	int HP_chrif_char_reset_offline_post;
	int HP_chrif_send_users_tochar_pre;
	int HP_chrif_send_users_tochar_post;
	int HP_chrif_char_online_pre;
	int HP_chrif_char_online_post;
	int HP_chrif_changesex_pre;
	int HP_chrif_changesex_post;
	int HP_chrif_divorce_pre;
	int HP_chrif_divorce_post;
	int HP_chrif_removefriend_pre;
	int HP_chrif_removefriend_post;
	int HP_chrif_send_report_pre;
	int HP_chrif_send_report_post;
	int HP_chrif_flush_pre;
	int HP_chrif_flush_post;
	int HP_chrif_skillid2idx_pre;
	int HP_chrif_skillid2idx_post;
	int HP_chrif_sd_to_auth_pre;
	int HP_chrif_sd_to_auth_post;
	int HP_chrif_check_connect_char_server_pre;
	int HP_chrif_check_connect_char_server_post;
	int HP_chrif_auth_logout_pre;
	int HP_chrif_auth_logout_post;
	int HP_chrif_save_ack_pre;
	int HP_chrif_save_ack_post;
	int HP_chrif_reconnect_pre;
	int HP_chrif_reconnect_post;
	int HP_chrif_auth_db_cleanup_sub_pre;
	int HP_chrif_auth_db_cleanup_sub_post;
	int HP_chrif_char_ask_name_answer_pre;
	int HP_chrif_char_ask_name_answer_post;
	int HP_chrif_auth_db_final_pre;
	int HP_chrif_auth_db_final_post;
	int HP_chrif_send_usercount_tochar_pre;
	int HP_chrif_send_usercount_tochar_post;
	int HP_chrif_auth_db_cleanup_pre;
	int HP_chrif_auth_db_cleanup_post;
	int HP_chrif_connect_pre;
	int HP_chrif_connect_post;
	int HP_chrif_connectack_pre;
	int HP_chrif_connectack_post;
	int HP_chrif_sendmap_pre;
	int HP_chrif_sendmap_post;
	int HP_chrif_sendmapack_pre;
	int HP_chrif_sendmapack_post;
	int HP_chrif_recvmap_pre;
	int HP_chrif_recvmap_post;
	int HP_chrif_changemapserverack_pre;
	int HP_chrif_changemapserverack_post;
	int HP_chrif_changedsex_pre;
	int HP_chrif_changedsex_post;
	int HP_chrif_divorceack_pre;
	int HP_chrif_divorceack_post;
	int HP_chrif_idbanned_pre;
	int HP_chrif_idbanned_post;
	int HP_chrif_recvfamelist_pre;
	int HP_chrif_recvfamelist_post;
	int HP_chrif_load_scdata_pre;
	int HP_chrif_load_scdata_post;
	int HP_chrif_update_ip_pre;
	int HP_chrif_update_ip_post;
	int HP_chrif_disconnectplayer_pre;
	int HP_chrif_disconnectplayer_post;
	int HP_chrif_removemap_pre;
	int HP_chrif_removemap_post;
	int HP_chrif_updatefamelist_ack_pre;
	int HP_chrif_updatefamelist_ack_post;
	int HP_chrif_keepalive_pre;
	int HP_chrif_keepalive_post;
	int HP_chrif_keepalive_ack_pre;
	int HP_chrif_keepalive_ack_post;
	int HP_chrif_deadopt_pre;
	int HP_chrif_deadopt_post;
	int HP_chrif_authfail_pre;
	int HP_chrif_authfail_post;
	int HP_chrif_on_ready_pre;
	int HP_chrif_on_ready_post;
	int HP_chrif_on_disconnect_pre;
	int HP_chrif_on_disconnect_post;
	int HP_chrif_parse_pre;
	int HP_chrif_parse_post;
	int HP_chrif_save_scdata_single_pre;
	int HP_chrif_save_scdata_single_post;
	int HP_chrif_del_scdata_single_pre;
	int HP_chrif_del_scdata_single_post;
	int HP_clif_init_pre;
	int HP_clif_init_post;
	int HP_clif_final_pre;
	int HP_clif_final_post;
	int HP_clif_setip_pre;
	int HP_clif_setip_post;
	int HP_clif_setbindip_pre;
	int HP_clif_setbindip_post;
	int HP_clif_setport_pre;
	int HP_clif_setport_post;
	int HP_clif_refresh_ip_pre;
	int HP_clif_refresh_ip_post;
	int HP_clif_send_pre;
	int HP_clif_send_post;
	int HP_clif_send_sub_pre;
	int HP_clif_send_sub_post;
	int HP_clif_parse_pre;
	int HP_clif_parse_post;
	int HP_clif_parse_cmd_pre;
	int HP_clif_parse_cmd_post;
	int HP_clif_decrypt_cmd_pre;
	int HP_clif_decrypt_cmd_post;
	int HP_clif_authok_pre;
	int HP_clif_authok_post;
	int HP_clif_authrefuse_pre;
	int HP_clif_authrefuse_post;
	int HP_clif_authfail_fd_pre;
	int HP_clif_authfail_fd_post;
	int HP_clif_charselectok_pre;
	int HP_clif_charselectok_post;
	int HP_clif_dropflooritem_pre;
	int HP_clif_dropflooritem_post;
	int HP_clif_clearflooritem_pre;
	int HP_clif_clearflooritem_post;
	int HP_clif_additem_pre;
	int HP_clif_additem_post;
	int HP_clif_dropitem_pre;
	int HP_clif_dropitem_post;
	int HP_clif_delitem_pre;
	int HP_clif_delitem_post;
	int HP_clif_takeitem_pre;
	int HP_clif_takeitem_post;
	int HP_clif_arrowequip_pre;
	int HP_clif_arrowequip_post;
	int HP_clif_arrow_fail_pre;
	int HP_clif_arrow_fail_post;
	int HP_clif_use_card_pre;
	int HP_clif_use_card_post;
	int HP_clif_cart_additem_pre;
	int HP_clif_cart_additem_post;
	int HP_clif_cart_delitem_pre;
	int HP_clif_cart_delitem_post;
	int HP_clif_equipitemack_pre;
	int HP_clif_equipitemack_post;
	int HP_clif_unequipitemack_pre;
	int HP_clif_unequipitemack_post;
	int HP_clif_useitemack_pre;
	int HP_clif_useitemack_post;
	int HP_clif_addcards_pre;
	int HP_clif_addcards_post;
	int HP_clif_addcards2_pre;
	int HP_clif_addcards2_post;
	int HP_clif_item_sub_pre;
	int HP_clif_item_sub_post;
	int HP_clif_getareachar_item_pre;
	int HP_clif_getareachar_item_post;
	int HP_clif_cart_additem_ack_pre;
	int HP_clif_cart_additem_ack_post;
	int HP_clif_cashshop_load_pre;
	int HP_clif_cashshop_load_post;
	int HP_clif_package_announce_pre;
	int HP_clif_package_announce_post;
	int HP_clif_item_drop_announce_pre;
	int HP_clif_item_drop_announce_post;
	int HP_clif_clearunit_single_pre;
	int HP_clif_clearunit_single_post;
	int HP_clif_clearunit_area_pre;
	int HP_clif_clearunit_area_post;
	int HP_clif_clearunit_delayed_pre;
	int HP_clif_clearunit_delayed_post;
	int HP_clif_walkok_pre;
	int HP_clif_walkok_post;
	int HP_clif_move_pre;
	int HP_clif_move_post;
	int HP_clif_move2_pre;
	int HP_clif_move2_post;
	int HP_clif_blown_pre;
	int HP_clif_blown_post;
	int HP_clif_slide_pre;
	int HP_clif_slide_post;
	int HP_clif_fixpos_pre;
	int HP_clif_fixpos_post;
	int HP_clif_changelook_pre;
	int HP_clif_changelook_post;
	int HP_clif_changetraplook_pre;
	int HP_clif_changetraplook_post;
	int HP_clif_refreshlook_pre;
	int HP_clif_refreshlook_post;
	int HP_clif_class_change_pre;
	int HP_clif_class_change_post;
	int HP_clif_skill_delunit_pre;
	int HP_clif_skill_delunit_post;
	int HP_clif_skillunit_update_pre;
	int HP_clif_skillunit_update_post;
	int HP_clif_clearunit_delayed_sub_pre;
	int HP_clif_clearunit_delayed_sub_post;
	int HP_clif_set_unit_idle_pre;
	int HP_clif_set_unit_idle_post;
	int HP_clif_spawn_unit_pre;
	int HP_clif_spawn_unit_post;
	int HP_clif_spawn_unit2_pre;
	int HP_clif_spawn_unit2_post;
	int HP_clif_set_unit_idle2_pre;
	int HP_clif_set_unit_idle2_post;
	int HP_clif_set_unit_walking_pre;
	int HP_clif_set_unit_walking_post;
	int HP_clif_calc_walkdelay_pre;
	int HP_clif_calc_walkdelay_post;
	int HP_clif_getareachar_skillunit_pre;
	int HP_clif_getareachar_skillunit_post;
	int HP_clif_getareachar_unit_pre;
	int HP_clif_getareachar_unit_post;
	int HP_clif_clearchar_skillunit_pre;
	int HP_clif_clearchar_skillunit_post;
	int HP_clif_getareachar_pre;
	int HP_clif_getareachar_post;
	int HP_clif_graffiti_entry_pre;
	int HP_clif_graffiti_entry_post;
	int HP_clif_spawn_pre;
	int HP_clif_spawn_post;
	int HP_clif_changemap_pre;
	int HP_clif_changemap_post;
	int HP_clif_changemapcell_pre;
	int HP_clif_changemapcell_post;
	int HP_clif_map_property_pre;
	int HP_clif_map_property_post;
	int HP_clif_pvpset_pre;
	int HP_clif_pvpset_post;
	int HP_clif_map_property_mapall_pre;
	int HP_clif_map_property_mapall_post;
	int HP_clif_bossmapinfo_pre;
	int HP_clif_bossmapinfo_post;
	int HP_clif_map_type_pre;
	int HP_clif_map_type_post;
	int HP_clif_maptypeproperty2_pre;
	int HP_clif_maptypeproperty2_post;
	int HP_clif_changemapserver_pre;
	int HP_clif_changemapserver_post;
	int HP_clif_npcbuysell_pre;
	int HP_clif_npcbuysell_post;
	int HP_clif_buylist_pre;
	int HP_clif_buylist_post;
	int HP_clif_selllist_pre;
	int HP_clif_selllist_post;
	int HP_clif_cashshop_show_pre;
	int HP_clif_cashshop_show_post;
	int HP_clif_npc_buy_result_pre;
	int HP_clif_npc_buy_result_post;
	int HP_clif_npc_sell_result_pre;
	int HP_clif_npc_sell_result_post;
	int HP_clif_cashshop_ack_pre;
	int HP_clif_cashshop_ack_post;
	int HP_clif_scriptmes_pre;
	int HP_clif_scriptmes_post;
	int HP_clif_scriptnext_pre;
	int HP_clif_scriptnext_post;
	int HP_clif_scriptclose_pre;
	int HP_clif_scriptclose_post;
	int HP_clif_scriptmenu_pre;
	int HP_clif_scriptmenu_post;
	int HP_clif_scriptinput_pre;
	int HP_clif_scriptinput_post;
	int HP_clif_scriptinputstr_pre;
	int HP_clif_scriptinputstr_post;
	int HP_clif_cutin_pre;
	int HP_clif_cutin_post;
	int HP_clif_sendfakenpc_pre;
	int HP_clif_sendfakenpc_post;
	int HP_clif_scriptclear_pre;
	int HP_clif_scriptclear_post;
	int HP_clif_viewpoint_pre;
	int HP_clif_viewpoint_post;
	int HP_clif_damage_pre;
	int HP_clif_damage_post;
	int HP_clif_sitting_pre;
	int HP_clif_sitting_post;
	int HP_clif_standing_pre;
	int HP_clif_standing_post;
	int HP_clif_arrow_create_list_pre;
	int HP_clif_arrow_create_list_post;
	int HP_clif_refresh_pre;
	int HP_clif_refresh_post;
	int HP_clif_fame_blacksmith_pre;
	int HP_clif_fame_blacksmith_post;
	int HP_clif_fame_alchemist_pre;
	int HP_clif_fame_alchemist_post;
	int HP_clif_fame_taekwon_pre;
	int HP_clif_fame_taekwon_post;
	int HP_clif_ranklist_pre;
	int HP_clif_ranklist_post;
	int HP_clif_update_rankingpoint_pre;
	int HP_clif_update_rankingpoint_post;
	int HP_clif_pRanklist_pre;
	int HP_clif_pRanklist_post;
	int HP_clif_hotkeys_pre;
	int HP_clif_hotkeys_post;
	int HP_clif_insight_pre;
	int HP_clif_insight_post;
	int HP_clif_outsight_pre;
	int HP_clif_outsight_post;
	int HP_clif_skillcastcancel_pre;
	int HP_clif_skillcastcancel_post;
	int HP_clif_skill_fail_pre;
	int HP_clif_skill_fail_post;
	int HP_clif_skill_cooldown_pre;
	int HP_clif_skill_cooldown_post;
	int HP_clif_skill_memomessage_pre;
	int HP_clif_skill_memomessage_post;
	int HP_clif_skill_mapinfomessage_pre;
	int HP_clif_skill_mapinfomessage_post;
	int HP_clif_skill_produce_mix_list_pre;
	int HP_clif_skill_produce_mix_list_post;
	int HP_clif_cooking_list_pre;
	int HP_clif_cooking_list_post;
	int HP_clif_autospell_pre;
	int HP_clif_autospell_post;
	int HP_clif_combo_delay_pre;
	int HP_clif_combo_delay_post;
	int HP_clif_status_change_pre;
	int HP_clif_status_change_post;
	int HP_clif_insert_card_pre;
	int HP_clif_insert_card_post;
	int HP_clif_inventorylist_pre;
	int HP_clif_inventorylist_post;
	int HP_clif_equiplist_pre;
	int HP_clif_equiplist_post;
	int HP_clif_cartlist_pre;
	int HP_clif_cartlist_post;
	int HP_clif_favorite_item_pre;
	int HP_clif_favorite_item_post;
	int HP_clif_clearcart_pre;
	int HP_clif_clearcart_post;
	int HP_clif_item_identify_list_pre;
	int HP_clif_item_identify_list_post;
	int HP_clif_item_identified_pre;
	int HP_clif_item_identified_post;
	int HP_clif_item_repair_list_pre;
	int HP_clif_item_repair_list_post;
	int HP_clif_item_repaireffect_pre;
	int HP_clif_item_repaireffect_post;
	int HP_clif_item_damaged_pre;
	int HP_clif_item_damaged_post;
	int HP_clif_item_refine_list_pre;
	int HP_clif_item_refine_list_post;
	int HP_clif_item_skill_pre;
	int HP_clif_item_skill_post;
	int HP_clif_mvp_item_pre;
	int HP_clif_mvp_item_post;
	int HP_clif_mvp_exp_pre;
	int HP_clif_mvp_exp_post;
	int HP_clif_mvp_noitem_pre;
	int HP_clif_mvp_noitem_post;
	int HP_clif_changed_dir_pre;
	int HP_clif_changed_dir_post;
	int HP_clif_charnameack_pre;
	int HP_clif_charnameack_post;
	int HP_clif_monster_hp_bar_pre;
	int HP_clif_monster_hp_bar_post;
	int HP_clif_hpmeter_pre;
	int HP_clif_hpmeter_post;
	int HP_clif_hpmeter_single_pre;
	int HP_clif_hpmeter_single_post;
	int HP_clif_hpmeter_sub_pre;
	int HP_clif_hpmeter_sub_post;
	int HP_clif_upgrademessage_pre;
	int HP_clif_upgrademessage_post;
	int HP_clif_get_weapon_view_pre;
	int HP_clif_get_weapon_view_post;
	int HP_clif_gospel_info_pre;
	int HP_clif_gospel_info_post;
	int HP_clif_feel_req_pre;
	int HP_clif_feel_req_post;
	int HP_clif_starskill_pre;
	int HP_clif_starskill_post;
	int HP_clif_feel_info_pre;
	int HP_clif_feel_info_post;
	int HP_clif_hate_info_pre;
	int HP_clif_hate_info_post;
	int HP_clif_mission_info_pre;
	int HP_clif_mission_info_post;
	int HP_clif_feel_hate_reset_pre;
	int HP_clif_feel_hate_reset_post;
	int HP_clif_partytickack_pre;
	int HP_clif_partytickack_post;
	int HP_clif_equiptickack_pre;
	int HP_clif_equiptickack_post;
	int HP_clif_viewequip_ack_pre;
	int HP_clif_viewequip_ack_post;
	int HP_clif_equpcheckbox_pre;
	int HP_clif_equpcheckbox_post;
	int HP_clif_displayexp_pre;
	int HP_clif_displayexp_post;
	int HP_clif_font_pre;
	int HP_clif_font_post;
	int HP_clif_progressbar_pre;
	int HP_clif_progressbar_post;
	int HP_clif_progressbar_abort_pre;
	int HP_clif_progressbar_abort_post;
	int HP_clif_showdigit_pre;
	int HP_clif_showdigit_post;
	int HP_clif_elementalconverter_list_pre;
	int HP_clif_elementalconverter_list_post;
	int HP_clif_spellbook_list_pre;
	int HP_clif_spellbook_list_post;
	int HP_clif_magicdecoy_list_pre;
	int HP_clif_magicdecoy_list_post;
	int HP_clif_poison_list_pre;
	int HP_clif_poison_list_post;
	int HP_clif_autoshadowspell_list_pre;
	int HP_clif_autoshadowspell_list_post;
	int HP_clif_skill_itemlistwindow_pre;
	int HP_clif_skill_itemlistwindow_post;
	int HP_clif_sc_load_pre;
	int HP_clif_sc_load_post;
	int HP_clif_sc_end_pre;
	int HP_clif_sc_end_post;
	int HP_clif_initialstatus_pre;
	int HP_clif_initialstatus_post;
	int HP_clif_cooldown_list_pre;
	int HP_clif_cooldown_list_post;
	int HP_clif_updatestatus_pre;
	int HP_clif_updatestatus_post;
	int HP_clif_changestatus_pre;
	int HP_clif_changestatus_post;
	int HP_clif_statusupack_pre;
	int HP_clif_statusupack_post;
	int HP_clif_movetoattack_pre;
	int HP_clif_movetoattack_post;
	int HP_clif_solved_charname_pre;
	int HP_clif_solved_charname_post;
	int HP_clif_charnameupdate_pre;
	int HP_clif_charnameupdate_post;
	int HP_clif_delayquit_pre;
	int HP_clif_delayquit_post;
	int HP_clif_getareachar_pc_pre;
	int HP_clif_getareachar_pc_post;
	int HP_clif_disconnect_ack_pre;
	int HP_clif_disconnect_ack_post;
	int HP_clif_PVPInfo_pre;
	int HP_clif_PVPInfo_post;
	int HP_clif_blacksmith_pre;
	int HP_clif_blacksmith_post;
	int HP_clif_alchemist_pre;
	int HP_clif_alchemist_post;
	int HP_clif_taekwon_pre;
	int HP_clif_taekwon_post;
	int HP_clif_ranking_pk_pre;
	int HP_clif_ranking_pk_post;
	int HP_clif_quitsave_pre;
	int HP_clif_quitsave_post;
	int HP_clif_misceffect_pre;
	int HP_clif_misceffect_post;
	int HP_clif_changeoption_pre;
	int HP_clif_changeoption_post;
	int HP_clif_changeoption2_pre;
	int HP_clif_changeoption2_post;
	int HP_clif_emotion_pre;
	int HP_clif_emotion_post;
	int HP_clif_talkiebox_pre;
	int HP_clif_talkiebox_post;
	int HP_clif_wedding_effect_pre;
	int HP_clif_wedding_effect_post;
	int HP_clif_divorced_pre;
	int HP_clif_divorced_post;
	int HP_clif_callpartner_pre;
	int HP_clif_callpartner_post;
	int HP_clif_skill_damage_pre;
	int HP_clif_skill_damage_post;
	int HP_clif_skill_nodamage_pre;
	int HP_clif_skill_nodamage_post;
	int HP_clif_skill_poseffect_pre;
	int HP_clif_skill_poseffect_post;
	int HP_clif_skill_estimation_pre;
	int HP_clif_skill_estimation_post;
	int HP_clif_skill_warppoint_pre;
	int HP_clif_skill_warppoint_post;
	int HP_clif_skillcasting_pre;
	int HP_clif_skillcasting_post;
	int HP_clif_produce_effect_pre;
	int HP_clif_produce_effect_post;
	int HP_clif_devotion_pre;
	int HP_clif_devotion_post;
	int HP_clif_spiritball_pre;
	int HP_clif_spiritball_post;
	int HP_clif_spiritball_single_pre;
	int HP_clif_spiritball_single_post;
	int HP_clif_bladestop_pre;
	int HP_clif_bladestop_post;
	int HP_clif_mvp_effect_pre;
	int HP_clif_mvp_effect_post;
	int HP_clif_heal_pre;
	int HP_clif_heal_post;
	int HP_clif_resurrection_pre;
	int HP_clif_resurrection_post;
	int HP_clif_refine_pre;
	int HP_clif_refine_post;
	int HP_clif_weather_pre;
	int HP_clif_weather_post;
	int HP_clif_specialeffect_pre;
	int HP_clif_specialeffect_post;
	int HP_clif_specialeffect_single_pre;
	int HP_clif_specialeffect_single_post;
	int HP_clif_specialeffect_value_pre;
	int HP_clif_specialeffect_value_post;
	int HP_clif_millenniumshield_pre;
	int HP_clif_millenniumshield_post;
	int HP_clif_charm_pre;
	int HP_clif_charm_post;
	int HP_clif_charm_single_pre;
	int HP_clif_charm_single_post;
	int HP_clif_snap_pre;
	int HP_clif_snap_post;
	int HP_clif_weather_check_pre;
	int HP_clif_weather_check_post;
	int HP_clif_playBGM_pre;
	int HP_clif_playBGM_post;
	int HP_clif_soundeffect_pre;
	int HP_clif_soundeffect_post;
	int HP_clif_soundeffectall_pre;
	int HP_clif_soundeffectall_post;
	int HP_clif_GlobalMessage_pre;
	int HP_clif_GlobalMessage_post;
	int HP_clif_createchat_pre;
	int HP_clif_createchat_post;
	int HP_clif_dispchat_pre;
	int HP_clif_dispchat_post;
	int HP_clif_joinchatfail_pre;
	int HP_clif_joinchatfail_post;
	int HP_clif_joinchatok_pre;
	int HP_clif_joinchatok_post;
	int HP_clif_addchat_pre;
	int HP_clif_addchat_post;
	int HP_clif_changechatowner_pre;
	int HP_clif_changechatowner_post;
	int HP_clif_clearchat_pre;
	int HP_clif_clearchat_post;
	int HP_clif_leavechat_pre;
	int HP_clif_leavechat_post;
	int HP_clif_changechatstatus_pre;
	int HP_clif_changechatstatus_post;
	int HP_clif_wis_message_pre;
	int HP_clif_wis_message_post;
	int HP_clif_wis_end_pre;
	int HP_clif_wis_end_post;
	int HP_clif_disp_message_pre;
	int HP_clif_disp_message_post;
	int HP_clif_broadcast_pre;
	int HP_clif_broadcast_post;
	int HP_clif_broadcast2_pre;
	int HP_clif_broadcast2_post;
	int HP_clif_messagecolor_pre;
	int HP_clif_messagecolor_post;
	int HP_clif_disp_overhead_pre;
	int HP_clif_disp_overhead_post;
	int HP_clif_msg_pre;
	int HP_clif_msg_post;
	int HP_clif_msg_value_pre;
	int HP_clif_msg_value_post;
	int HP_clif_msg_skill_pre;
	int HP_clif_msg_skill_post;
	int HP_clif_msgtable_pre;
	int HP_clif_msgtable_post;
	int HP_clif_msgtable_num_pre;
	int HP_clif_msgtable_num_post;
	int HP_clif_message_pre;
	int HP_clif_message_post;
	int HP_clif_messageln_pre;
	int HP_clif_messageln_post;
	int HP_clif_colormes_pre;
	int HP_clif_colormes_post;
	int HP_clif_process_message_pre;
	int HP_clif_process_message_post;
	int HP_clif_wisexin_pre;
	int HP_clif_wisexin_post;
	int HP_clif_wisall_pre;
	int HP_clif_wisall_post;
	int HP_clif_PMIgnoreList_pre;
	int HP_clif_PMIgnoreList_post;
	int HP_clif_ShowScript_pre;
	int HP_clif_ShowScript_post;
	int HP_clif_traderequest_pre;
	int HP_clif_traderequest_post;
	int HP_clif_tradestart_pre;
	int HP_clif_tradestart_post;
	int HP_clif_tradeadditem_pre;
	int HP_clif_tradeadditem_post;
	int HP_clif_tradeitemok_pre;
	int HP_clif_tradeitemok_post;
	int HP_clif_tradedeal_lock_pre;
	int HP_clif_tradedeal_lock_post;
	int HP_clif_tradecancelled_pre;
	int HP_clif_tradecancelled_post;
	int HP_clif_tradecompleted_pre;
	int HP_clif_tradecompleted_post;
	int HP_clif_tradeundo_pre;
	int HP_clif_tradeundo_post;
	int HP_clif_openvendingreq_pre;
	int HP_clif_openvendingreq_post;
	int HP_clif_showvendingboard_pre;
	int HP_clif_showvendingboard_post;
	int HP_clif_closevendingboard_pre;
	int HP_clif_closevendingboard_post;
	int HP_clif_vendinglist_pre;
	int HP_clif_vendinglist_post;
	int HP_clif_buyvending_pre;
	int HP_clif_buyvending_post;
	int HP_clif_openvending_pre;
	int HP_clif_openvending_post;
	int HP_clif_vendingreport_pre;
	int HP_clif_vendingreport_post;
	int HP_clif_storagelist_pre;
	int HP_clif_storagelist_post;
	int HP_clif_updatestorageamount_pre;
	int HP_clif_updatestorageamount_post;
	int HP_clif_storageitemadded_pre;
	int HP_clif_storageitemadded_post;
	int HP_clif_storageitemremoved_pre;
	int HP_clif_storageitemremoved_post;
	int HP_clif_storageclose_pre;
	int HP_clif_storageclose_post;
	int HP_clif_skillinfoblock_pre;
	int HP_clif_skillinfoblock_post;
	int HP_clif_skillup_pre;
	int HP_clif_skillup_post;
	int HP_clif_skillinfo_pre;
	int HP_clif_skillinfo_post;
	int HP_clif_addskill_pre;
	int HP_clif_addskill_post;
	int HP_clif_deleteskill_pre;
	int HP_clif_deleteskill_post;
	int HP_clif_party_created_pre;
	int HP_clif_party_created_post;
	int HP_clif_party_member_info_pre;
	int HP_clif_party_member_info_post;
	int HP_clif_party_info_pre;
	int HP_clif_party_info_post;
	int HP_clif_party_invite_pre;
	int HP_clif_party_invite_post;
	int HP_clif_party_inviteack_pre;
	int HP_clif_party_inviteack_post;
	int HP_clif_party_option_pre;
	int HP_clif_party_option_post;
	int HP_clif_party_withdraw_pre;
	int HP_clif_party_withdraw_post;
	int HP_clif_party_message_pre;
	int HP_clif_party_message_post;
	int HP_clif_party_xy_pre;
	int HP_clif_party_xy_post;
	int HP_clif_party_xy_single_pre;
	int HP_clif_party_xy_single_post;
	int HP_clif_party_hp_pre;
	int HP_clif_party_hp_post;
	int HP_clif_party_xy_remove_pre;
	int HP_clif_party_xy_remove_post;
	int HP_clif_party_show_picker_pre;
	int HP_clif_party_show_picker_post;
	int HP_clif_partyinvitationstate_pre;
	int HP_clif_partyinvitationstate_post;
	int HP_clif_guild_created_pre;
	int HP_clif_guild_created_post;
	int HP_clif_guild_belonginfo_pre;
	int HP_clif_guild_belonginfo_post;
	int HP_clif_guild_masterormember_pre;
	int HP_clif_guild_masterormember_post;
	int HP_clif_guild_basicinfo_pre;
	int HP_clif_guild_basicinfo_post;
	int HP_clif_guild_allianceinfo_pre;
	int HP_clif_guild_allianceinfo_post;
	int HP_clif_guild_memberlist_pre;
	int HP_clif_guild_memberlist_post;
	int HP_clif_guild_skillinfo_pre;
	int HP_clif_guild_skillinfo_post;
	int HP_clif_guild_send_onlineinfo_pre;
	int HP_clif_guild_send_onlineinfo_post;
	int HP_clif_guild_memberlogin_notice_pre;
	int HP_clif_guild_memberlogin_notice_post;
	int HP_clif_guild_invite_pre;
	int HP_clif_guild_invite_post;
	int HP_clif_guild_inviteack_pre;
	int HP_clif_guild_inviteack_post;
	int HP_clif_guild_leave_pre;
	int HP_clif_guild_leave_post;
	int HP_clif_guild_expulsion_pre;
	int HP_clif_guild_expulsion_post;
	int HP_clif_guild_positionchanged_pre;
	int HP_clif_guild_positionchanged_post;
	int HP_clif_guild_memberpositionchanged_pre;
	int HP_clif_guild_memberpositionchanged_post;
	int HP_clif_guild_emblem_pre;
	int HP_clif_guild_emblem_post;
	int HP_clif_guild_emblem_area_pre;
	int HP_clif_guild_emblem_area_post;
	int HP_clif_guild_notice_pre;
	int HP_clif_guild_notice_post;
	int HP_clif_guild_message_pre;
	int HP_clif_guild_message_post;
	int HP_clif_guild_reqalliance_pre;
	int HP_clif_guild_reqalliance_post;
	int HP_clif_guild_allianceack_pre;
	int HP_clif_guild_allianceack_post;
	int HP_clif_guild_delalliance_pre;
	int HP_clif_guild_delalliance_post;
	int HP_clif_guild_oppositionack_pre;
	int HP_clif_guild_oppositionack_post;
	int HP_clif_guild_broken_pre;
	int HP_clif_guild_broken_post;
	int HP_clif_guild_xy_pre;
	int HP_clif_guild_xy_post;
	int HP_clif_guild_xy_single_pre;
	int HP_clif_guild_xy_single_post;
	int HP_clif_guild_xy_remove_pre;
	int HP_clif_guild_xy_remove_post;
	int HP_clif_guild_positionnamelist_pre;
	int HP_clif_guild_positionnamelist_post;
	int HP_clif_guild_positioninfolist_pre;
	int HP_clif_guild_positioninfolist_post;
	int HP_clif_guild_expulsionlist_pre;
	int HP_clif_guild_expulsionlist_post;
	int HP_clif_validate_emblem_pre;
	int HP_clif_validate_emblem_post;
	int HP_clif_bg_hp_pre;
	int HP_clif_bg_hp_post;
	int HP_clif_bg_xy_pre;
	int HP_clif_bg_xy_post;
	int HP_clif_bg_xy_remove_pre;
	int HP_clif_bg_xy_remove_post;
	int HP_clif_bg_message_pre;
	int HP_clif_bg_message_post;
	int HP_clif_bg_updatescore_pre;
	int HP_clif_bg_updatescore_post;
	int HP_clif_bg_updatescore_single_pre;
	int HP_clif_bg_updatescore_single_post;
	int HP_clif_sendbgemblem_area_pre;
	int HP_clif_sendbgemblem_area_post;
	int HP_clif_sendbgemblem_single_pre;
	int HP_clif_sendbgemblem_single_post;
	int HP_clif_instance_pre;
	int HP_clif_instance_post;
	int HP_clif_instance_join_pre;
	int HP_clif_instance_join_post;
	int HP_clif_instance_leave_pre;
	int HP_clif_instance_leave_post;
	int HP_clif_catch_process_pre;
	int HP_clif_catch_process_post;
	int HP_clif_pet_roulette_pre;
	int HP_clif_pet_roulette_post;
	int HP_clif_sendegg_pre;
	int HP_clif_sendegg_post;
	int HP_clif_send_petstatus_pre;
	int HP_clif_send_petstatus_post;
	int HP_clif_send_petdata_pre;
	int HP_clif_send_petdata_post;
	int HP_clif_pet_emotion_pre;
	int HP_clif_pet_emotion_post;
	int HP_clif_pet_food_pre;
	int HP_clif_pet_food_post;
	int HP_clif_friendslist_toggle_sub_pre;
	int HP_clif_friendslist_toggle_sub_post;
	int HP_clif_friendslist_send_pre;
	int HP_clif_friendslist_send_post;
	int HP_clif_friendslist_reqack_pre;
	int HP_clif_friendslist_reqack_post;
	int HP_clif_friendslist_toggle_pre;
	int HP_clif_friendslist_toggle_post;
	int HP_clif_friendlist_req_pre;
	int HP_clif_friendlist_req_post;
	int HP_clif_GM_kickack_pre;
	int HP_clif_GM_kickack_post;
	int HP_clif_GM_kick_pre;
	int HP_clif_GM_kick_post;
	int HP_clif_manner_message_pre;
	int HP_clif_manner_message_post;
	int HP_clif_GM_silence_pre;
	int HP_clif_GM_silence_post;
	int HP_clif_account_name_pre;
	int HP_clif_account_name_post;
	int HP_clif_check_pre;
	int HP_clif_check_post;
	int HP_clif_hominfo_pre;
	int HP_clif_hominfo_post;
	int HP_clif_homskillinfoblock_pre;
	int HP_clif_homskillinfoblock_post;
	int HP_clif_homskillup_pre;
	int HP_clif_homskillup_post;
	int HP_clif_hom_food_pre;
	int HP_clif_hom_food_post;
	int HP_clif_send_homdata_pre;
	int HP_clif_send_homdata_post;
	int HP_clif_quest_send_list_pre;
	int HP_clif_quest_send_list_post;
	int HP_clif_quest_send_mission_pre;
	int HP_clif_quest_send_mission_post;
	int HP_clif_quest_add_pre;
	int HP_clif_quest_add_post;
	int HP_clif_quest_delete_pre;
	int HP_clif_quest_delete_post;
	int HP_clif_quest_update_status_pre;
	int HP_clif_quest_update_status_post;
	int HP_clif_quest_update_objective_pre;
	int HP_clif_quest_update_objective_post;
	int HP_clif_quest_show_event_pre;
	int HP_clif_quest_show_event_post;
	int HP_clif_mail_window_pre;
	int HP_clif_mail_window_post;
	int HP_clif_mail_read_pre;
	int HP_clif_mail_read_post;
	int HP_clif_mail_delete_pre;
	int HP_clif_mail_delete_post;
	int HP_clif_mail_return_pre;
	int HP_clif_mail_return_post;
	int HP_clif_mail_send_pre;
	int HP_clif_mail_send_post;
	int HP_clif_mail_new_pre;
	int HP_clif_mail_new_post;
	int HP_clif_mail_refreshinbox_pre;
	int HP_clif_mail_refreshinbox_post;
	int HP_clif_mail_getattachment_pre;
	int HP_clif_mail_getattachment_post;
	int HP_clif_mail_setattachment_pre;
	int HP_clif_mail_setattachment_post;
	int HP_clif_auction_openwindow_pre;
	int HP_clif_auction_openwindow_post;
	int HP_clif_auction_results_pre;
	int HP_clif_auction_results_post;
	int HP_clif_auction_message_pre;
	int HP_clif_auction_message_post;
	int HP_clif_auction_close_pre;
	int HP_clif_auction_close_post;
	int HP_clif_auction_setitem_pre;
	int HP_clif_auction_setitem_post;
	int HP_clif_mercenary_info_pre;
	int HP_clif_mercenary_info_post;
	int HP_clif_mercenary_skillblock_pre;
	int HP_clif_mercenary_skillblock_post;
	int HP_clif_mercenary_message_pre;
	int HP_clif_mercenary_message_post;
	int HP_clif_mercenary_updatestatus_pre;
	int HP_clif_mercenary_updatestatus_post;
	int HP_clif_rental_time_pre;
	int HP_clif_rental_time_post;
	int HP_clif_rental_expired_pre;
	int HP_clif_rental_expired_post;
	int HP_clif_PartyBookingRegisterAck_pre;
	int HP_clif_PartyBookingRegisterAck_post;
	int HP_clif_PartyBookingDeleteAck_pre;
	int HP_clif_PartyBookingDeleteAck_post;
	int HP_clif_PartyBookingSearchAck_pre;
	int HP_clif_PartyBookingSearchAck_post;
	int HP_clif_PartyBookingUpdateNotify_pre;
	int HP_clif_PartyBookingUpdateNotify_post;
	int HP_clif_PartyBookingDeleteNotify_pre;
	int HP_clif_PartyBookingDeleteNotify_post;
	int HP_clif_PartyBookingInsertNotify_pre;
	int HP_clif_PartyBookingInsertNotify_post;
	int HP_clif_PartyRecruitRegisterAck_pre;
	int HP_clif_PartyRecruitRegisterAck_post;
	int HP_clif_PartyRecruitDeleteAck_pre;
	int HP_clif_PartyRecruitDeleteAck_post;
	int HP_clif_PartyRecruitSearchAck_pre;
	int HP_clif_PartyRecruitSearchAck_post;
	int HP_clif_PartyRecruitUpdateNotify_pre;
	int HP_clif_PartyRecruitUpdateNotify_post;
	int HP_clif_PartyRecruitDeleteNotify_pre;
	int HP_clif_PartyRecruitDeleteNotify_post;
	int HP_clif_PartyRecruitInsertNotify_pre;
	int HP_clif_PartyRecruitInsertNotify_post;
	int HP_clif_PartyBookingVolunteerInfo_pre;
	int HP_clif_PartyBookingVolunteerInfo_post;
	int HP_clif_PartyBookingRefuseVolunteer_pre;
	int HP_clif_PartyBookingRefuseVolunteer_post;
	int HP_clif_PartyBookingCancelVolunteer_pre;
	int HP_clif_PartyBookingCancelVolunteer_post;
	int HP_clif_PartyBookingAddFilteringList_pre;
	int HP_clif_PartyBookingAddFilteringList_post;
	int HP_clif_PartyBookingSubFilteringList_pre;
	int HP_clif_PartyBookingSubFilteringList_post;
	int HP_clif_buyingstore_open_pre;
	int HP_clif_buyingstore_open_post;
	int HP_clif_buyingstore_open_failed_pre;
	int HP_clif_buyingstore_open_failed_post;
	int HP_clif_buyingstore_myitemlist_pre;
	int HP_clif_buyingstore_myitemlist_post;
	int HP_clif_buyingstore_entry_pre;
	int HP_clif_buyingstore_entry_post;
	int HP_clif_buyingstore_entry_single_pre;
	int HP_clif_buyingstore_entry_single_post;
	int HP_clif_buyingstore_disappear_entry_pre;
	int HP_clif_buyingstore_disappear_entry_post;
	int HP_clif_buyingstore_disappear_entry_single_pre;
	int HP_clif_buyingstore_disappear_entry_single_post;
	int HP_clif_buyingstore_itemlist_pre;
	int HP_clif_buyingstore_itemlist_post;
	int HP_clif_buyingstore_trade_failed_buyer_pre;
	int HP_clif_buyingstore_trade_failed_buyer_post;
	int HP_clif_buyingstore_update_item_pre;
	int HP_clif_buyingstore_update_item_post;
	int HP_clif_buyingstore_delete_item_pre;
	int HP_clif_buyingstore_delete_item_post;
	int HP_clif_buyingstore_trade_failed_seller_pre;
	int HP_clif_buyingstore_trade_failed_seller_post;
	int HP_clif_search_store_info_ack_pre;
	int HP_clif_search_store_info_ack_post;
	int HP_clif_search_store_info_failed_pre;
	int HP_clif_search_store_info_failed_post;
	int HP_clif_open_search_store_info_pre;
	int HP_clif_open_search_store_info_post;
	int HP_clif_search_store_info_click_ack_pre;
	int HP_clif_search_store_info_click_ack_post;
	int HP_clif_elemental_info_pre;
	int HP_clif_elemental_info_post;
	int HP_clif_elemental_updatestatus_pre;
	int HP_clif_elemental_updatestatus_post;
	int HP_clif_bgqueue_ack_pre;
	int HP_clif_bgqueue_ack_post;
	int HP_clif_bgqueue_notice_delete_pre;
	int HP_clif_bgqueue_notice_delete_post;
	int HP_clif_bgqueue_update_info_pre;
	int HP_clif_bgqueue_update_info_post;
	int HP_clif_bgqueue_joined_pre;
	int HP_clif_bgqueue_joined_post;
	int HP_clif_bgqueue_pcleft_pre;
	int HP_clif_bgqueue_pcleft_post;
	int HP_clif_bgqueue_battlebegins_pre;
	int HP_clif_bgqueue_battlebegins_post;
	int HP_clif_adopt_reply_pre;
	int HP_clif_adopt_reply_post;
	int HP_clif_adopt_request_pre;
	int HP_clif_adopt_request_post;
	int HP_clif_readbook_pre;
	int HP_clif_readbook_post;
	int HP_clif_notify_time_pre;
	int HP_clif_notify_time_post;
	int HP_clif_user_count_pre;
	int HP_clif_user_count_post;
	int HP_clif_noask_sub_pre;
	int HP_clif_noask_sub_post;
	int HP_clif_bc_ready_pre;
	int HP_clif_bc_ready_post;
	int HP_clif_undisguise_timer_pre;
	int HP_clif_undisguise_timer_post;
	int HP_clif_chsys_create_pre;
	int HP_clif_chsys_create_post;
	int HP_clif_chsys_msg_pre;
	int HP_clif_chsys_msg_post;
	int HP_clif_chsys_msg2_pre;
	int HP_clif_chsys_msg2_post;
	int HP_clif_chsys_send_pre;
	int HP_clif_chsys_send_post;
	int HP_clif_chsys_join_pre;
	int HP_clif_chsys_join_post;
	int HP_clif_chsys_left_pre;
	int HP_clif_chsys_left_post;
	int HP_clif_chsys_delete_pre;
	int HP_clif_chsys_delete_post;
	int HP_clif_chsys_mjoin_pre;
	int HP_clif_chsys_mjoin_post;
	int HP_clif_chsys_quit_pre;
	int HP_clif_chsys_quit_post;
	int HP_clif_chsys_quitg_pre;
	int HP_clif_chsys_quitg_post;
	int HP_clif_chsys_gjoin_pre;
	int HP_clif_chsys_gjoin_post;
	int HP_clif_chsys_gleave_pre;
	int HP_clif_chsys_gleave_post;
	int HP_clif_bank_deposit_pre;
	int HP_clif_bank_deposit_post;
	int HP_clif_bank_withdraw_pre;
	int HP_clif_bank_withdraw_post;
	int HP_clif_show_modifiers_pre;
	int HP_clif_show_modifiers_post;
	int HP_clif_notify_bounditem_pre;
	int HP_clif_notify_bounditem_post;
	int HP_clif_delay_damage_pre;
	int HP_clif_delay_damage_post;
	int HP_clif_delay_damage_sub_pre;
	int HP_clif_delay_damage_sub_post;
	int HP_clif_npc_market_open_pre;
	int HP_clif_npc_market_open_post;
	int HP_clif_npc_market_purchase_ack_pre;
	int HP_clif_npc_market_purchase_ack_post;
	int HP_clif_pWantToConnection_pre;
	int HP_clif_pWantToConnection_post;
	int HP_clif_pLoadEndAck_pre;
	int HP_clif_pLoadEndAck_post;
	int HP_clif_pTickSend_pre;
	int HP_clif_pTickSend_post;
	int HP_clif_pHotkey_pre;
	int HP_clif_pHotkey_post;
	int HP_clif_pProgressbar_pre;
	int HP_clif_pProgressbar_post;
	int HP_clif_pWalkToXY_pre;
	int HP_clif_pWalkToXY_post;
	int HP_clif_pQuitGame_pre;
	int HP_clif_pQuitGame_post;
	int HP_clif_pGetCharNameRequest_pre;
	int HP_clif_pGetCharNameRequest_post;
	int HP_clif_pGlobalMessage_pre;
	int HP_clif_pGlobalMessage_post;
	int HP_clif_pMapMove_pre;
	int HP_clif_pMapMove_post;
	int HP_clif_pChangeDir_pre;
	int HP_clif_pChangeDir_post;
	int HP_clif_pEmotion_pre;
	int HP_clif_pEmotion_post;
	int HP_clif_pHowManyConnections_pre;
	int HP_clif_pHowManyConnections_post;
	int HP_clif_pActionRequest_pre;
	int HP_clif_pActionRequest_post;
	int HP_clif_pActionRequest_sub_pre;
	int HP_clif_pActionRequest_sub_post;
	int HP_clif_pRestart_pre;
	int HP_clif_pRestart_post;
	int HP_clif_pWisMessage_pre;
	int HP_clif_pWisMessage_post;
	int HP_clif_pBroadcast_pre;
	int HP_clif_pBroadcast_post;
	int HP_clif_pTakeItem_pre;
	int HP_clif_pTakeItem_post;
	int HP_clif_pDropItem_pre;
	int HP_clif_pDropItem_post;
	int HP_clif_pUseItem_pre;
	int HP_clif_pUseItem_post;
	int HP_clif_pEquipItem_pre;
	int HP_clif_pEquipItem_post;
	int HP_clif_pUnequipItem_pre;
	int HP_clif_pUnequipItem_post;
	int HP_clif_pNpcClicked_pre;
	int HP_clif_pNpcClicked_post;
	int HP_clif_pNpcBuySellSelected_pre;
	int HP_clif_pNpcBuySellSelected_post;
	int HP_clif_pNpcBuyListSend_pre;
	int HP_clif_pNpcBuyListSend_post;
	int HP_clif_pNpcSellListSend_pre;
	int HP_clif_pNpcSellListSend_post;
	int HP_clif_pCreateChatRoom_pre;
	int HP_clif_pCreateChatRoom_post;
	int HP_clif_pChatAddMember_pre;
	int HP_clif_pChatAddMember_post;
	int HP_clif_pChatRoomStatusChange_pre;
	int HP_clif_pChatRoomStatusChange_post;
	int HP_clif_pChangeChatOwner_pre;
	int HP_clif_pChangeChatOwner_post;
	int HP_clif_pKickFromChat_pre;
	int HP_clif_pKickFromChat_post;
	int HP_clif_pChatLeave_pre;
	int HP_clif_pChatLeave_post;
	int HP_clif_pTradeRequest_pre;
	int HP_clif_pTradeRequest_post;
	int HP_clif_chann_config_read_pre;
	int HP_clif_chann_config_read_post;
	int HP_clif_pTradeAck_pre;
	int HP_clif_pTradeAck_post;
	int HP_clif_pTradeAddItem_pre;
	int HP_clif_pTradeAddItem_post;
	int HP_clif_pTradeOk_pre;
	int HP_clif_pTradeOk_post;
	int HP_clif_pTradeCancel_pre;
	int HP_clif_pTradeCancel_post;
	int HP_clif_pTradeCommit_pre;
	int HP_clif_pTradeCommit_post;
	int HP_clif_pStopAttack_pre;
	int HP_clif_pStopAttack_post;
	int HP_clif_pPutItemToCart_pre;
	int HP_clif_pPutItemToCart_post;
	int HP_clif_pGetItemFromCart_pre;
	int HP_clif_pGetItemFromCart_post;
	int HP_clif_pRemoveOption_pre;
	int HP_clif_pRemoveOption_post;
	int HP_clif_pChangeCart_pre;
	int HP_clif_pChangeCart_post;
	int HP_clif_pStatusUp_pre;
	int HP_clif_pStatusUp_post;
	int HP_clif_pSkillUp_pre;
	int HP_clif_pSkillUp_post;
	int HP_clif_pUseSkillToId_pre;
	int HP_clif_pUseSkillToId_post;
	int HP_clif_pUseSkillToId_homun_pre;
	int HP_clif_pUseSkillToId_homun_post;
	int HP_clif_pUseSkillToId_mercenary_pre;
	int HP_clif_pUseSkillToId_mercenary_post;
	int HP_clif_pUseSkillToPos_pre;
	int HP_clif_pUseSkillToPos_post;
	int HP_clif_pUseSkillToPosSub_pre;
	int HP_clif_pUseSkillToPosSub_post;
	int HP_clif_pUseSkillToPos_homun_pre;
	int HP_clif_pUseSkillToPos_homun_post;
	int HP_clif_pUseSkillToPos_mercenary_pre;
	int HP_clif_pUseSkillToPos_mercenary_post;
	int HP_clif_pUseSkillToPosMoreInfo_pre;
	int HP_clif_pUseSkillToPosMoreInfo_post;
	int HP_clif_pUseSkillMap_pre;
	int HP_clif_pUseSkillMap_post;
	int HP_clif_pRequestMemo_pre;
	int HP_clif_pRequestMemo_post;
	int HP_clif_pProduceMix_pre;
	int HP_clif_pProduceMix_post;
	int HP_clif_pCooking_pre;
	int HP_clif_pCooking_post;
	int HP_clif_pRepairItem_pre;
	int HP_clif_pRepairItem_post;
	int HP_clif_pWeaponRefine_pre;
	int HP_clif_pWeaponRefine_post;
	int HP_clif_pNpcSelectMenu_pre;
	int HP_clif_pNpcSelectMenu_post;
	int HP_clif_pNpcNextClicked_pre;
	int HP_clif_pNpcNextClicked_post;
	int HP_clif_pNpcAmountInput_pre;
	int HP_clif_pNpcAmountInput_post;
	int HP_clif_pNpcStringInput_pre;
	int HP_clif_pNpcStringInput_post;
	int HP_clif_pNpcCloseClicked_pre;
	int HP_clif_pNpcCloseClicked_post;
	int HP_clif_pItemIdentify_pre;
	int HP_clif_pItemIdentify_post;
	int HP_clif_pSelectArrow_pre;
	int HP_clif_pSelectArrow_post;
	int HP_clif_pAutoSpell_pre;
	int HP_clif_pAutoSpell_post;
	int HP_clif_pUseCard_pre;
	int HP_clif_pUseCard_post;
	int HP_clif_pInsertCard_pre;
	int HP_clif_pInsertCard_post;
	int HP_clif_pSolveCharName_pre;
	int HP_clif_pSolveCharName_post;
	int HP_clif_pResetChar_pre;
	int HP_clif_pResetChar_post;
	int HP_clif_pLocalBroadcast_pre;
	int HP_clif_pLocalBroadcast_post;
	int HP_clif_pMoveToKafra_pre;
	int HP_clif_pMoveToKafra_post;
	int HP_clif_pMoveFromKafra_pre;
	int HP_clif_pMoveFromKafra_post;
	int HP_clif_pMoveToKafraFromCart_pre;
	int HP_clif_pMoveToKafraFromCart_post;
	int HP_clif_pMoveFromKafraToCart_pre;
	int HP_clif_pMoveFromKafraToCart_post;
	int HP_clif_pCloseKafra_pre;
	int HP_clif_pCloseKafra_post;
	int HP_clif_pStoragePassword_pre;
	int HP_clif_pStoragePassword_post;
	int HP_clif_pCreateParty_pre;
	int HP_clif_pCreateParty_post;
	int HP_clif_pCreateParty2_pre;
	int HP_clif_pCreateParty2_post;
	int HP_clif_pPartyInvite_pre;
	int HP_clif_pPartyInvite_post;
	int HP_clif_pPartyInvite2_pre;
	int HP_clif_pPartyInvite2_post;
	int HP_clif_pReplyPartyInvite_pre;
	int HP_clif_pReplyPartyInvite_post;
	int HP_clif_pReplyPartyInvite2_pre;
	int HP_clif_pReplyPartyInvite2_post;
	int HP_clif_pLeaveParty_pre;
	int HP_clif_pLeaveParty_post;
	int HP_clif_pRemovePartyMember_pre;
	int HP_clif_pRemovePartyMember_post;
	int HP_clif_pPartyChangeOption_pre;
	int HP_clif_pPartyChangeOption_post;
	int HP_clif_pPartyMessage_pre;
	int HP_clif_pPartyMessage_post;
	int HP_clif_pPartyChangeLeader_pre;
	int HP_clif_pPartyChangeLeader_post;
	int HP_clif_pPartyBookingRegisterReq_pre;
	int HP_clif_pPartyBookingRegisterReq_post;
	int HP_clif_pPartyBookingSearchReq_pre;
	int HP_clif_pPartyBookingSearchReq_post;
	int HP_clif_pPartyBookingDeleteReq_pre;
	int HP_clif_pPartyBookingDeleteReq_post;
	int HP_clif_pPartyBookingUpdateReq_pre;
	int HP_clif_pPartyBookingUpdateReq_post;
	int HP_clif_pPartyRecruitRegisterReq_pre;
	int HP_clif_pPartyRecruitRegisterReq_post;
	int HP_clif_pPartyRecruitSearchReq_pre;
	int HP_clif_pPartyRecruitSearchReq_post;
	int HP_clif_pPartyRecruitDeleteReq_pre;
	int HP_clif_pPartyRecruitDeleteReq_post;
	int HP_clif_pPartyRecruitUpdateReq_pre;
	int HP_clif_pPartyRecruitUpdateReq_post;
	int HP_clif_pCloseVending_pre;
	int HP_clif_pCloseVending_post;
	int HP_clif_pVendingListReq_pre;
	int HP_clif_pVendingListReq_post;
	int HP_clif_pPurchaseReq_pre;
	int HP_clif_pPurchaseReq_post;
	int HP_clif_pPurchaseReq2_pre;
	int HP_clif_pPurchaseReq2_post;
	int HP_clif_pOpenVending_pre;
	int HP_clif_pOpenVending_post;
	int HP_clif_pCreateGuild_pre;
	int HP_clif_pCreateGuild_post;
	int HP_clif_pGuildCheckMaster_pre;
	int HP_clif_pGuildCheckMaster_post;
	int HP_clif_pGuildRequestInfo_pre;
	int HP_clif_pGuildRequestInfo_post;
	int HP_clif_pGuildChangePositionInfo_pre;
	int HP_clif_pGuildChangePositionInfo_post;
	int HP_clif_pGuildChangeMemberPosition_pre;
	int HP_clif_pGuildChangeMemberPosition_post;
	int HP_clif_pGuildRequestEmblem_pre;
	int HP_clif_pGuildRequestEmblem_post;
	int HP_clif_pGuildChangeEmblem_pre;
	int HP_clif_pGuildChangeEmblem_post;
	int HP_clif_pGuildChangeNotice_pre;
	int HP_clif_pGuildChangeNotice_post;
	int HP_clif_pGuildInvite_pre;
	int HP_clif_pGuildInvite_post;
	int HP_clif_pGuildReplyInvite_pre;
	int HP_clif_pGuildReplyInvite_post;
	int HP_clif_pGuildLeave_pre;
	int HP_clif_pGuildLeave_post;
	int HP_clif_pGuildExpulsion_pre;
	int HP_clif_pGuildExpulsion_post;
	int HP_clif_pGuildMessage_pre;
	int HP_clif_pGuildMessage_post;
	int HP_clif_pGuildRequestAlliance_pre;
	int HP_clif_pGuildRequestAlliance_post;
	int HP_clif_pGuildReplyAlliance_pre;
	int HP_clif_pGuildReplyAlliance_post;
	int HP_clif_pGuildDelAlliance_pre;
	int HP_clif_pGuildDelAlliance_post;
	int HP_clif_pGuildOpposition_pre;
	int HP_clif_pGuildOpposition_post;
	int HP_clif_pGuildBreak_pre;
	int HP_clif_pGuildBreak_post;
	int HP_clif_pPetMenu_pre;
	int HP_clif_pPetMenu_post;
	int HP_clif_pCatchPet_pre;
	int HP_clif_pCatchPet_post;
	int HP_clif_pSelectEgg_pre;
	int HP_clif_pSelectEgg_post;
	int HP_clif_pSendEmotion_pre;
	int HP_clif_pSendEmotion_post;
	int HP_clif_pChangePetName_pre;
	int HP_clif_pChangePetName_post;
	int HP_clif_pGMKick_pre;
	int HP_clif_pGMKick_post;
	int HP_clif_pGMKickAll_pre;
	int HP_clif_pGMKickAll_post;
	int HP_clif_pGMShift_pre;
	int HP_clif_pGMShift_post;
	int HP_clif_pGMRemove2_pre;
	int HP_clif_pGMRemove2_post;
	int HP_clif_pGMRecall_pre;
	int HP_clif_pGMRecall_post;
	int HP_clif_pGMRecall2_pre;
	int HP_clif_pGMRecall2_post;
	int HP_clif_pGM_Monster_Item_pre;
	int HP_clif_pGM_Monster_Item_post;
	int HP_clif_pGMHide_pre;
	int HP_clif_pGMHide_post;
	int HP_clif_pGMReqNoChat_pre;
	int HP_clif_pGMReqNoChat_post;
	int HP_clif_pGMRc_pre;
	int HP_clif_pGMRc_post;
	int HP_clif_pGMReqAccountName_pre;
	int HP_clif_pGMReqAccountName_post;
	int HP_clif_pGMChangeMapType_pre;
	int HP_clif_pGMChangeMapType_post;
	int HP_clif_pGMFullStrip_pre;
	int HP_clif_pGMFullStrip_post;
	int HP_clif_pPMIgnore_pre;
	int HP_clif_pPMIgnore_post;
	int HP_clif_pPMIgnoreAll_pre;
	int HP_clif_pPMIgnoreAll_post;
	int HP_clif_pPMIgnoreList_pre;
	int HP_clif_pPMIgnoreList_post;
	int HP_clif_pNoviceDoriDori_pre;
	int HP_clif_pNoviceDoriDori_post;
	int HP_clif_pNoviceExplosionSpirits_pre;
	int HP_clif_pNoviceExplosionSpirits_post;
	int HP_clif_pFriendsListAdd_pre;
	int HP_clif_pFriendsListAdd_post;
	int HP_clif_pFriendsListReply_pre;
	int HP_clif_pFriendsListReply_post;
	int HP_clif_pFriendsListRemove_pre;
	int HP_clif_pFriendsListRemove_post;
	int HP_clif_pPVPInfo_pre;
	int HP_clif_pPVPInfo_post;
	int HP_clif_pBlacksmith_pre;
	int HP_clif_pBlacksmith_post;
	int HP_clif_pAlchemist_pre;
	int HP_clif_pAlchemist_post;
	int HP_clif_pTaekwon_pre;
	int HP_clif_pTaekwon_post;
	int HP_clif_pRankingPk_pre;
	int HP_clif_pRankingPk_post;
	int HP_clif_pFeelSaveOk_pre;
	int HP_clif_pFeelSaveOk_post;
	int HP_clif_pChangeHomunculusName_pre;
	int HP_clif_pChangeHomunculusName_post;
	int HP_clif_pHomMoveToMaster_pre;
	int HP_clif_pHomMoveToMaster_post;
	int HP_clif_pHomMoveTo_pre;
	int HP_clif_pHomMoveTo_post;
	int HP_clif_pHomAttack_pre;
	int HP_clif_pHomAttack_post;
	int HP_clif_pHomMenu_pre;
	int HP_clif_pHomMenu_post;
	int HP_clif_pAutoRevive_pre;
	int HP_clif_pAutoRevive_post;
	int HP_clif_pCheck_pre;
	int HP_clif_pCheck_post;
	int HP_clif_pMail_refreshinbox_pre;
	int HP_clif_pMail_refreshinbox_post;
	int HP_clif_pMail_read_pre;
	int HP_clif_pMail_read_post;
	int HP_clif_pMail_getattach_pre;
	int HP_clif_pMail_getattach_post;
	int HP_clif_pMail_delete_pre;
	int HP_clif_pMail_delete_post;
	int HP_clif_pMail_return_pre;
	int HP_clif_pMail_return_post;
	int HP_clif_pMail_setattach_pre;
	int HP_clif_pMail_setattach_post;
	int HP_clif_pMail_winopen_pre;
	int HP_clif_pMail_winopen_post;
	int HP_clif_pMail_send_pre;
	int HP_clif_pMail_send_post;
	int HP_clif_pAuction_cancelreg_pre;
	int HP_clif_pAuction_cancelreg_post;
	int HP_clif_pAuction_setitem_pre;
	int HP_clif_pAuction_setitem_post;
	int HP_clif_pAuction_register_pre;
	int HP_clif_pAuction_register_post;
	int HP_clif_pAuction_cancel_pre;
	int HP_clif_pAuction_cancel_post;
	int HP_clif_pAuction_close_pre;
	int HP_clif_pAuction_close_post;
	int HP_clif_pAuction_bid_pre;
	int HP_clif_pAuction_bid_post;
	int HP_clif_pAuction_search_pre;
	int HP_clif_pAuction_search_post;
	int HP_clif_pAuction_buysell_pre;
	int HP_clif_pAuction_buysell_post;
	int HP_clif_pcashshop_buy_pre;
	int HP_clif_pcashshop_buy_post;
	int HP_clif_pAdopt_request_pre;
	int HP_clif_pAdopt_request_post;
	int HP_clif_pAdopt_reply_pre;
	int HP_clif_pAdopt_reply_post;
	int HP_clif_pViewPlayerEquip_pre;
	int HP_clif_pViewPlayerEquip_post;
	int HP_clif_pEquipTick_pre;
	int HP_clif_pEquipTick_post;
	int HP_clif_pquestStateAck_pre;
	int HP_clif_pquestStateAck_post;
	int HP_clif_pmercenary_action_pre;
	int HP_clif_pmercenary_action_post;
	int HP_clif_pBattleChat_pre;
	int HP_clif_pBattleChat_post;
	int HP_clif_pLessEffect_pre;
	int HP_clif_pLessEffect_post;
	int HP_clif_pItemListWindowSelected_pre;
	int HP_clif_pItemListWindowSelected_post;
	int HP_clif_pReqOpenBuyingStore_pre;
	int HP_clif_pReqOpenBuyingStore_post;
	int HP_clif_pReqCloseBuyingStore_pre;
	int HP_clif_pReqCloseBuyingStore_post;
	int HP_clif_pReqClickBuyingStore_pre;
	int HP_clif_pReqClickBuyingStore_post;
	int HP_clif_pReqTradeBuyingStore_pre;
	int HP_clif_pReqTradeBuyingStore_post;
	int HP_clif_pSearchStoreInfo_pre;
	int HP_clif_pSearchStoreInfo_post;
	int HP_clif_pSearchStoreInfoNextPage_pre;
	int HP_clif_pSearchStoreInfoNextPage_post;
	int HP_clif_pCloseSearchStoreInfo_pre;
	int HP_clif_pCloseSearchStoreInfo_post;
	int HP_clif_pSearchStoreInfoListItemClick_pre;
	int HP_clif_pSearchStoreInfoListItemClick_post;
	int HP_clif_pDebug_pre;
	int HP_clif_pDebug_post;
	int HP_clif_pSkillSelectMenu_pre;
	int HP_clif_pSkillSelectMenu_post;
	int HP_clif_pMoveItem_pre;
	int HP_clif_pMoveItem_post;
	int HP_clif_pDull_pre;
	int HP_clif_pDull_post;
	int HP_clif_pBGQueueRegister_pre;
	int HP_clif_pBGQueueRegister_post;
	int HP_clif_pBGQueueCheckState_pre;
	int HP_clif_pBGQueueCheckState_post;
	int HP_clif_pBGQueueRevokeReq_pre;
	int HP_clif_pBGQueueRevokeReq_post;
	int HP_clif_pBGQueueBattleBeginAck_pre;
	int HP_clif_pBGQueueBattleBeginAck_post;
	int HP_clif_pCashShopOpen_pre;
	int HP_clif_pCashShopOpen_post;
	int HP_clif_pCashShopClose_pre;
	int HP_clif_pCashShopClose_post;
	int HP_clif_pCashShopReqTab_pre;
	int HP_clif_pCashShopReqTab_post;
	int HP_clif_pCashShopSchedule_pre;
	int HP_clif_pCashShopSchedule_post;
	int HP_clif_pCashShopBuy_pre;
	int HP_clif_pCashShopBuy_post;
	int HP_clif_pPartyTick_pre;
	int HP_clif_pPartyTick_post;
	int HP_clif_pGuildInvite2_pre;
	int HP_clif_pGuildInvite2_post;
	int HP_clif_pPartyBookingAddFilter_pre;
	int HP_clif_pPartyBookingAddFilter_post;
	int HP_clif_pPartyBookingSubFilter_pre;
	int HP_clif_pPartyBookingSubFilter_post;
	int HP_clif_pPartyBookingReqVolunteer_pre;
	int HP_clif_pPartyBookingReqVolunteer_post;
	int HP_clif_pPartyBookingRefuseVolunteer_pre;
	int HP_clif_pPartyBookingRefuseVolunteer_post;
	int HP_clif_pPartyBookingCancelVolunteer_pre;
	int HP_clif_pPartyBookingCancelVolunteer_post;
	int HP_clif_pBankDeposit_pre;
	int HP_clif_pBankDeposit_post;
	int HP_clif_pBankWithdraw_pre;
	int HP_clif_pBankWithdraw_post;
	int HP_clif_pBankCheck_pre;
	int HP_clif_pBankCheck_post;
	int HP_clif_pBankOpen_pre;
	int HP_clif_pBankOpen_post;
	int HP_clif_pBankClose_pre;
	int HP_clif_pBankClose_post;
	int HP_clif_pNPCShopClosed_pre;
	int HP_clif_pNPCShopClosed_post;
	int HP_clif_pNPCMarketClosed_pre;
	int HP_clif_pNPCMarketClosed_post;
	int HP_clif_pNPCMarketPurchase_pre;
	int HP_clif_pNPCMarketPurchase_post;
	int HP_duel_create_pre;
	int HP_duel_create_post;
	int HP_duel_invite_pre;
	int HP_duel_invite_post;
	int HP_duel_accept_pre;
	int HP_duel_accept_post;
	int HP_duel_reject_pre;
	int HP_duel_reject_post;
	int HP_duel_leave_pre;
	int HP_duel_leave_post;
	int HP_duel_showinfo_pre;
	int HP_duel_showinfo_post;
	int HP_duel_checktime_pre;
	int HP_duel_checktime_post;
	int HP_duel_init_pre;
	int HP_duel_init_post;
	int HP_duel_final_pre;
	int HP_duel_final_post;
	int HP_elemental_init_pre;
	int HP_elemental_init_post;
	int HP_elemental_final_pre;
	int HP_elemental_final_post;
	int HP_elemental_class_pre;
	int HP_elemental_class_post;
	int HP_elemental_get_viewdata_pre;
	int HP_elemental_get_viewdata_post;
	int HP_elemental_create_pre;
	int HP_elemental_create_post;
	int HP_elemental_data_received_pre;
	int HP_elemental_data_received_post;
	int HP_elemental_save_pre;
	int HP_elemental_save_post;
	int HP_elemental_change_mode_ack_pre;
	int HP_elemental_change_mode_ack_post;
	int HP_elemental_change_mode_pre;
	int HP_elemental_change_mode_post;
	int HP_elemental_heal_pre;
	int HP_elemental_heal_post;
	int HP_elemental_dead_pre;
	int HP_elemental_dead_post;
	int HP_elemental_delete_pre;
	int HP_elemental_delete_post;
	int HP_elemental_summon_stop_pre;
	int HP_elemental_summon_stop_post;
	int HP_elemental_get_lifetime_pre;
	int HP_elemental_get_lifetime_post;
	int HP_elemental_unlocktarget_pre;
	int HP_elemental_unlocktarget_post;
	int HP_elemental_skillnotok_pre;
	int HP_elemental_skillnotok_post;
	int HP_elemental_set_target_pre;
	int HP_elemental_set_target_post;
	int HP_elemental_clean_single_effect_pre;
	int HP_elemental_clean_single_effect_post;
	int HP_elemental_clean_effect_pre;
	int HP_elemental_clean_effect_post;
	int HP_elemental_action_pre;
	int HP_elemental_action_post;
	int HP_elemental_skill_get_requirements_pre;
	int HP_elemental_skill_get_requirements_post;
	int HP_elemental_read_skilldb_pre;
	int HP_elemental_read_skilldb_post;
	int HP_elemental_reload_db_pre;
	int HP_elemental_reload_db_post;
	int HP_elemental_reload_skilldb_pre;
	int HP_elemental_reload_skilldb_post;
	int HP_elemental_search_index_pre;
	int HP_elemental_search_index_post;
	int HP_elemental_summon_init_pre;
	int HP_elemental_summon_init_post;
	int HP_elemental_summon_end_timer_pre;
	int HP_elemental_summon_end_timer_post;
	int HP_elemental_ai_sub_timer_activesearch_pre;
	int HP_elemental_ai_sub_timer_activesearch_post;
	int HP_elemental_ai_sub_timer_pre;
	int HP_elemental_ai_sub_timer_post;
	int HP_elemental_ai_sub_foreachclient_pre;
	int HP_elemental_ai_sub_foreachclient_post;
	int HP_elemental_ai_timer_pre;
	int HP_elemental_ai_timer_post;
	int HP_elemental_read_db_pre;
	int HP_elemental_read_db_post;
	int HP_guild_init_pre;
	int HP_guild_init_post;
	int HP_guild_final_pre;
	int HP_guild_final_post;
	int HP_guild_skill_get_max_pre;
	int HP_guild_skill_get_max_post;
	int HP_guild_checkskill_pre;
	int HP_guild_checkskill_post;
	int HP_guild_check_skill_require_pre;
	int HP_guild_check_skill_require_post;
	int HP_guild_checkcastles_pre;
	int HP_guild_checkcastles_post;
	int HP_guild_isallied_pre;
	int HP_guild_isallied_post;
	int HP_guild_search_pre;
	int HP_guild_search_post;
	int HP_guild_searchname_pre;
	int HP_guild_searchname_post;
	int HP_guild_castle_search_pre;
	int HP_guild_castle_search_post;
	int HP_guild_mapname2gc_pre;
	int HP_guild_mapname2gc_post;
	int HP_guild_mapindex2gc_pre;
	int HP_guild_mapindex2gc_post;
	int HP_guild_getavailablesd_pre;
	int HP_guild_getavailablesd_post;
	int HP_guild_getindex_pre;
	int HP_guild_getindex_post;
	int HP_guild_getposition_pre;
	int HP_guild_getposition_post;
	int HP_guild_payexp_pre;
	int HP_guild_payexp_post;
	int HP_guild_getexp_pre;
	int HP_guild_getexp_post;
	int HP_guild_create_pre;
	int HP_guild_create_post;
	int HP_guild_created_pre;
	int HP_guild_created_post;
	int HP_guild_request_info_pre;
	int HP_guild_request_info_post;
	int HP_guild_recv_noinfo_pre;
	int HP_guild_recv_noinfo_post;
	int HP_guild_recv_info_pre;
	int HP_guild_recv_info_post;
	int HP_guild_npc_request_info_pre;
	int HP_guild_npc_request_info_post;
	int HP_guild_invite_pre;
	int HP_guild_invite_post;
	int HP_guild_reply_invite_pre;
	int HP_guild_reply_invite_post;
	int HP_guild_member_joined_pre;
	int HP_guild_member_joined_post;
	int HP_guild_member_added_pre;
	int HP_guild_member_added_post;
	int HP_guild_leave_pre;
	int HP_guild_leave_post;
	int HP_guild_member_withdraw_pre;
	int HP_guild_member_withdraw_post;
	int HP_guild_expulsion_pre;
	int HP_guild_expulsion_post;
	int HP_guild_skillup_pre;
	int HP_guild_skillup_post;
	int HP_guild_block_skill_pre;
	int HP_guild_block_skill_post;
	int HP_guild_reqalliance_pre;
	int HP_guild_reqalliance_post;
	int HP_guild_reply_reqalliance_pre;
	int HP_guild_reply_reqalliance_post;
	int HP_guild_allianceack_pre;
	int HP_guild_allianceack_post;
	int HP_guild_delalliance_pre;
	int HP_guild_delalliance_post;
	int HP_guild_opposition_pre;
	int HP_guild_opposition_post;
	int HP_guild_check_alliance_pre;
	int HP_guild_check_alliance_post;
	int HP_guild_send_memberinfoshort_pre;
	int HP_guild_send_memberinfoshort_post;
	int HP_guild_recv_memberinfoshort_pre;
	int HP_guild_recv_memberinfoshort_post;
	int HP_guild_change_memberposition_pre;
	int HP_guild_change_memberposition_post;
	int HP_guild_memberposition_changed_pre;
	int HP_guild_memberposition_changed_post;
	int HP_guild_change_position_pre;
	int HP_guild_change_position_post;
	int HP_guild_position_changed_pre;
	int HP_guild_position_changed_post;
	int HP_guild_change_notice_pre;
	int HP_guild_change_notice_post;
	int HP_guild_notice_changed_pre;
	int HP_guild_notice_changed_post;
	int HP_guild_change_emblem_pre;
	int HP_guild_change_emblem_post;
	int HP_guild_emblem_changed_pre;
	int HP_guild_emblem_changed_post;
	int HP_guild_send_message_pre;
	int HP_guild_send_message_post;
	int HP_guild_recv_message_pre;
	int HP_guild_recv_message_post;
	int HP_guild_send_dot_remove_pre;
	int HP_guild_send_dot_remove_post;
	int HP_guild_skillupack_pre;
	int HP_guild_skillupack_post;
	int HP_guild_dobreak_pre;
	int HP_guild_dobreak_post;
	int HP_guild_broken_pre;
	int HP_guild_broken_post;
	int HP_guild_gm_change_pre;
	int HP_guild_gm_change_post;
	int HP_guild_gm_changed_pre;
	int HP_guild_gm_changed_post;
	int HP_guild_castle_map_init_pre;
	int HP_guild_castle_map_init_post;
	int HP_guild_castledatasave_pre;
	int HP_guild_castledatasave_post;
	int HP_guild_castledataloadack_pre;
	int HP_guild_castledataloadack_post;
	int HP_guild_castle_reconnect_pre;
	int HP_guild_castle_reconnect_post;
	int HP_guild_agit_start_pre;
	int HP_guild_agit_start_post;
	int HP_guild_agit_end_pre;
	int HP_guild_agit_end_post;
	int HP_guild_agit2_start_pre;
	int HP_guild_agit2_start_post;
	int HP_guild_agit2_end_pre;
	int HP_guild_agit2_end_post;
	int HP_guild_flag_add_pre;
	int HP_guild_flag_add_post;
	int HP_guild_flag_remove_pre;
	int HP_guild_flag_remove_post;
	int HP_guild_flags_clear_pre;
	int HP_guild_flags_clear_post;
	int HP_guild_aura_refresh_pre;
	int HP_guild_aura_refresh_post;
	int HP_guild_retrieveitembound_pre;
	int HP_guild_retrieveitembound_post;
	int HP_guild_payexp_timer_pre;
	int HP_guild_payexp_timer_post;
	int HP_guild_sd_check_pre;
	int HP_guild_sd_check_post;
	int HP_guild_read_guildskill_tree_db_pre;
	int HP_guild_read_guildskill_tree_db_post;
	int HP_guild_read_castledb_pre;
	int HP_guild_read_castledb_post;
	int HP_guild_payexp_timer_sub_pre;
	int HP_guild_payexp_timer_sub_post;
	int HP_guild_send_xy_timer_sub_pre;
	int HP_guild_send_xy_timer_sub_post;
	int HP_guild_send_xy_timer_pre;
	int HP_guild_send_xy_timer_post;
	int HP_guild_create_expcache_pre;
	int HP_guild_create_expcache_post;
	int HP_guild_eventlist_db_final_pre;
	int HP_guild_eventlist_db_final_post;
	int HP_guild_expcache_db_final_pre;
	int HP_guild_expcache_db_final_post;
	int HP_guild_castle_db_final_pre;
	int HP_guild_castle_db_final_post;
	int HP_guild_broken_sub_pre;
	int HP_guild_broken_sub_post;
	int HP_guild_castle_broken_sub_pre;
	int HP_guild_castle_broken_sub_post;
	int HP_guild_makemember_pre;
	int HP_guild_makemember_post;
	int HP_guild_check_member_pre;
	int HP_guild_check_member_post;
	int HP_guild_get_alliance_count_pre;
	int HP_guild_get_alliance_count_post;
	int HP_guild_castle_reconnect_sub_pre;
	int HP_guild_castle_reconnect_sub_post;
	int HP_gstorage_id2storage_pre;
	int HP_gstorage_id2storage_post;
	int HP_gstorage_id2storage2_pre;
	int HP_gstorage_id2storage2_post;
	int HP_gstorage_init_pre;
	int HP_gstorage_init_post;
	int HP_gstorage_final_pre;
	int HP_gstorage_final_post;
	int HP_gstorage_delete_pre;
	int HP_gstorage_delete_post;
	int HP_gstorage_open_pre;
	int HP_gstorage_open_post;
	int HP_gstorage_additem_pre;
	int HP_gstorage_additem_post;
	int HP_gstorage_delitem_pre;
	int HP_gstorage_delitem_post;
	int HP_gstorage_add_pre;
	int HP_gstorage_add_post;
	int HP_gstorage_get_pre;
	int HP_gstorage_get_post;
	int HP_gstorage_addfromcart_pre;
	int HP_gstorage_addfromcart_post;
	int HP_gstorage_gettocart_pre;
	int HP_gstorage_gettocart_post;
	int HP_gstorage_close_pre;
	int HP_gstorage_close_post;
	int HP_gstorage_pc_quit_pre;
	int HP_gstorage_pc_quit_post;
	int HP_gstorage_save_pre;
	int HP_gstorage_save_post;
	int HP_gstorage_saved_pre;
	int HP_gstorage_saved_post;
	int HP_gstorage_create_pre;
	int HP_gstorage_create_post;
	int HP_homun_init_pre;
	int HP_homun_init_post;
	int HP_homun_final_pre;
	int HP_homun_final_post;
	int HP_homun_reload_pre;
	int HP_homun_reload_post;
	int HP_homun_reload_skill_pre;
	int HP_homun_reload_skill_post;
	int HP_homun_get_viewdata_pre;
	int HP_homun_get_viewdata_post;
	int HP_homun_class2type_pre;
	int HP_homun_class2type_post;
	int HP_homun_damaged_pre;
	int HP_homun_damaged_post;
	int HP_homun_dead_pre;
	int HP_homun_dead_post;
	int HP_homun_vaporize_pre;
	int HP_homun_vaporize_post;
	int HP_homun_delete_pre;
	int HP_homun_delete_post;
	int HP_homun_checkskill_pre;
	int HP_homun_checkskill_post;
	int HP_homun_calc_skilltree_pre;
	int HP_homun_calc_skilltree_post;
	int HP_homun_skill_tree_get_max_pre;
	int HP_homun_skill_tree_get_max_post;
	int HP_homun_skillup_pre;
	int HP_homun_skillup_post;
	int HP_homun_levelup_pre;
	int HP_homun_levelup_post;
	int HP_homun_change_class_pre;
	int HP_homun_change_class_post;
	int HP_homun_evolve_pre;
	int HP_homun_evolve_post;
	int HP_homun_mutate_pre;
	int HP_homun_mutate_post;
	int HP_homun_gainexp_pre;
	int HP_homun_gainexp_post;
	int HP_homun_add_intimacy_pre;
	int HP_homun_add_intimacy_post;
	int HP_homun_consume_intimacy_pre;
	int HP_homun_consume_intimacy_post;
	int HP_homun_healed_pre;
	int HP_homun_healed_post;
	int HP_homun_save_pre;
	int HP_homun_save_post;
	int HP_homun_menu_pre;
	int HP_homun_menu_post;
	int HP_homun_feed_pre;
	int HP_homun_feed_post;
	int HP_homun_hunger_timer_pre;
	int HP_homun_hunger_timer_post;
	int HP_homun_hunger_timer_delete_pre;
	int HP_homun_hunger_timer_delete_post;
	int HP_homun_change_name_pre;
	int HP_homun_change_name_post;
	int HP_homun_change_name_ack_pre;
	int HP_homun_change_name_ack_post;
	int HP_homun_db_search_pre;
	int HP_homun_db_search_post;
	int HP_homun_create_pre;
	int HP_homun_create_post;
	int HP_homun_init_timers_pre;
	int HP_homun_init_timers_post;
	int HP_homun_call_pre;
	int HP_homun_call_post;
	int HP_homun_recv_data_pre;
	int HP_homun_recv_data_post;
	int HP_homun_creation_request_pre;
	int HP_homun_creation_request_post;
	int HP_homun_ressurect_pre;
	int HP_homun_ressurect_post;
	int HP_homun_revive_pre;
	int HP_homun_revive_post;
	int HP_homun_stat_reset_pre;
	int HP_homun_stat_reset_post;
	int HP_homun_shuffle_pre;
	int HP_homun_shuffle_post;
	int HP_homun_read_db_sub_pre;
	int HP_homun_read_db_sub_post;
	int HP_homun_read_db_pre;
	int HP_homun_read_db_post;
	int HP_homun_read_skill_db_sub_pre;
	int HP_homun_read_skill_db_sub_post;
	int HP_homun_skill_db_read_pre;
	int HP_homun_skill_db_read_post;
	int HP_homun_exp_db_read_pre;
	int HP_homun_exp_db_read_post;
	int HP_homun_addspiritball_pre;
	int HP_homun_addspiritball_post;
	int HP_homun_delspiritball_pre;
	int HP_homun_delspiritball_post;
	int HP_instance_init_pre;
	int HP_instance_init_post;
	int HP_instance_final_pre;
	int HP_instance_final_post;
	int HP_instance_reload_pre;
	int HP_instance_reload_post;
	int HP_instance_create_pre;
	int HP_instance_create_post;
	int HP_instance_add_map_pre;
	int HP_instance_add_map_post;
	int HP_instance_del_map_pre;
	int HP_instance_del_map_post;
	int HP_instance_map2imap_pre;
	int HP_instance_map2imap_post;
	int HP_instance_mapid2imapid_pre;
	int HP_instance_mapid2imapid_post;
	int HP_instance_mapname2imap_pre;
	int HP_instance_mapname2imap_post;
	int HP_instance_map_npcsub_pre;
	int HP_instance_map_npcsub_post;
	int HP_instance_init_npc_pre;
	int HP_instance_init_npc_post;
	int HP_instance_destroy_pre;
	int HP_instance_destroy_post;
	int HP_instance_start_pre;
	int HP_instance_start_post;
	int HP_instance_check_idle_pre;
	int HP_instance_check_idle_post;
	int HP_instance_check_kick_pre;
	int HP_instance_check_kick_post;
	int HP_instance_set_timeout_pre;
	int HP_instance_set_timeout_post;
	int HP_instance_valid_pre;
	int HP_instance_valid_post;
	int HP_instance_destroy_timer_pre;
	int HP_instance_destroy_timer_post;
	int HP_intif_parse_pre;
	int HP_intif_parse_post;
	int HP_intif_create_pet_pre;
	int HP_intif_create_pet_post;
	int HP_intif_broadcast_pre;
	int HP_intif_broadcast_post;
	int HP_intif_broadcast2_pre;
	int HP_intif_broadcast2_post;
	int HP_intif_main_message_pre;
	int HP_intif_main_message_post;
	int HP_intif_wis_message_pre;
	int HP_intif_wis_message_post;
	int HP_intif_wis_message_to_gm_pre;
	int HP_intif_wis_message_to_gm_post;
	int HP_intif_saveregistry_pre;
	int HP_intif_saveregistry_post;
	int HP_intif_request_registry_pre;
	int HP_intif_request_registry_post;
	int HP_intif_request_guild_storage_pre;
	int HP_intif_request_guild_storage_post;
	int HP_intif_send_guild_storage_pre;
	int HP_intif_send_guild_storage_post;
	int HP_intif_create_party_pre;
	int HP_intif_create_party_post;
	int HP_intif_request_partyinfo_pre;
	int HP_intif_request_partyinfo_post;
	int HP_intif_party_addmember_pre;
	int HP_intif_party_addmember_post;
	int HP_intif_party_changeoption_pre;
	int HP_intif_party_changeoption_post;
	int HP_intif_party_leave_pre;
	int HP_intif_party_leave_post;
	int HP_intif_party_changemap_pre;
	int HP_intif_party_changemap_post;
	int HP_intif_break_party_pre;
	int HP_intif_break_party_post;
	int HP_intif_party_message_pre;
	int HP_intif_party_message_post;
	int HP_intif_party_leaderchange_pre;
	int HP_intif_party_leaderchange_post;
	int HP_intif_guild_create_pre;
	int HP_intif_guild_create_post;
	int HP_intif_guild_request_info_pre;
	int HP_intif_guild_request_info_post;
	int HP_intif_guild_addmember_pre;
	int HP_intif_guild_addmember_post;
	int HP_intif_guild_leave_pre;
	int HP_intif_guild_leave_post;
	int HP_intif_guild_memberinfoshort_pre;
	int HP_intif_guild_memberinfoshort_post;
	int HP_intif_guild_break_pre;
	int HP_intif_guild_break_post;
	int HP_intif_guild_message_pre;
	int HP_intif_guild_message_post;
	int HP_intif_guild_change_gm_pre;
	int HP_intif_guild_change_gm_post;
	int HP_intif_guild_change_basicinfo_pre;
	int HP_intif_guild_change_basicinfo_post;
	int HP_intif_guild_change_memberinfo_pre;
	int HP_intif_guild_change_memberinfo_post;
	int HP_intif_guild_position_pre;
	int HP_intif_guild_position_post;
	int HP_intif_guild_skillup_pre;
	int HP_intif_guild_skillup_post;
	int HP_intif_guild_alliance_pre;
	int HP_intif_guild_alliance_post;
	int HP_intif_guild_notice_pre;
	int HP_intif_guild_notice_post;
	int HP_intif_guild_emblem_pre;
	int HP_intif_guild_emblem_post;
	int HP_intif_guild_castle_dataload_pre;
	int HP_intif_guild_castle_dataload_post;
	int HP_intif_guild_castle_datasave_pre;
	int HP_intif_guild_castle_datasave_post;
	int HP_intif_itembound_req_pre;
	int HP_intif_itembound_req_post;
	int HP_intif_request_petdata_pre;
	int HP_intif_request_petdata_post;
	int HP_intif_save_petdata_pre;
	int HP_intif_save_petdata_post;
	int HP_intif_delete_petdata_pre;
	int HP_intif_delete_petdata_post;
	int HP_intif_rename_pre;
	int HP_intif_rename_post;
	int HP_intif_homunculus_create_pre;
	int HP_intif_homunculus_create_post;
	int HP_intif_homunculus_requestload_pre;
	int HP_intif_homunculus_requestload_post;
	int HP_intif_homunculus_requestsave_pre;
	int HP_intif_homunculus_requestsave_post;
	int HP_intif_homunculus_requestdelete_pre;
	int HP_intif_homunculus_requestdelete_post;
	int HP_intif_request_questlog_pre;
	int HP_intif_request_questlog_post;
	int HP_intif_quest_save_pre;
	int HP_intif_quest_save_post;
	int HP_intif_mercenary_create_pre;
	int HP_intif_mercenary_create_post;
	int HP_intif_mercenary_request_pre;
	int HP_intif_mercenary_request_post;
	int HP_intif_mercenary_delete_pre;
	int HP_intif_mercenary_delete_post;
	int HP_intif_mercenary_save_pre;
	int HP_intif_mercenary_save_post;
	int HP_intif_Mail_requestinbox_pre;
	int HP_intif_Mail_requestinbox_post;
	int HP_intif_Mail_read_pre;
	int HP_intif_Mail_read_post;
	int HP_intif_Mail_getattach_pre;
	int HP_intif_Mail_getattach_post;
	int HP_intif_Mail_delete_pre;
	int HP_intif_Mail_delete_post;
	int HP_intif_Mail_return_pre;
	int HP_intif_Mail_return_post;
	int HP_intif_Mail_send_pre;
	int HP_intif_Mail_send_post;
	int HP_intif_Auction_requestlist_pre;
	int HP_intif_Auction_requestlist_post;
	int HP_intif_Auction_register_pre;
	int HP_intif_Auction_register_post;
	int HP_intif_Auction_cancel_pre;
	int HP_intif_Auction_cancel_post;
	int HP_intif_Auction_close_pre;
	int HP_intif_Auction_close_post;
	int HP_intif_Auction_bid_pre;
	int HP_intif_Auction_bid_post;
	int HP_intif_elemental_create_pre;
	int HP_intif_elemental_create_post;
	int HP_intif_elemental_request_pre;
	int HP_intif_elemental_request_post;
	int HP_intif_elemental_delete_pre;
	int HP_intif_elemental_delete_post;
	int HP_intif_elemental_save_pre;
	int HP_intif_elemental_save_post;
	int HP_intif_request_accinfo_pre;
	int HP_intif_request_accinfo_post;
	int HP_intif_CheckForCharServer_pre;
	int HP_intif_CheckForCharServer_post;
	int HP_intif_pWisMessage_pre;
	int HP_intif_pWisMessage_post;
	int HP_intif_pWisEnd_pre;
	int HP_intif_pWisEnd_post;
	int HP_intif_pWisToGM_sub_pre;
	int HP_intif_pWisToGM_sub_post;
	int HP_intif_pWisToGM_pre;
	int HP_intif_pWisToGM_post;
	int HP_intif_pRegisters_pre;
	int HP_intif_pRegisters_post;
	int HP_intif_pChangeNameOk_pre;
	int HP_intif_pChangeNameOk_post;
	int HP_intif_pMessageToFD_pre;
	int HP_intif_pMessageToFD_post;
	int HP_intif_pLoadGuildStorage_pre;
	int HP_intif_pLoadGuildStorage_post;
	int HP_intif_pSaveGuildStorage_pre;
	int HP_intif_pSaveGuildStorage_post;
	int HP_intif_pPartyCreated_pre;
	int HP_intif_pPartyCreated_post;
	int HP_intif_pPartyInfo_pre;
	int HP_intif_pPartyInfo_post;
	int HP_intif_pPartyMemberAdded_pre;
	int HP_intif_pPartyMemberAdded_post;
	int HP_intif_pPartyOptionChanged_pre;
	int HP_intif_pPartyOptionChanged_post;
	int HP_intif_pPartyMemberWithdraw_pre;
	int HP_intif_pPartyMemberWithdraw_post;
	int HP_intif_pPartyMove_pre;
	int HP_intif_pPartyMove_post;
	int HP_intif_pPartyBroken_pre;
	int HP_intif_pPartyBroken_post;
	int HP_intif_pPartyMessage_pre;
	int HP_intif_pPartyMessage_post;
	int HP_intif_pGuildCreated_pre;
	int HP_intif_pGuildCreated_post;
	int HP_intif_pGuildInfo_pre;
	int HP_intif_pGuildInfo_post;
	int HP_intif_pGuildMemberAdded_pre;
	int HP_intif_pGuildMemberAdded_post;
	int HP_intif_pGuildMemberWithdraw_pre;
	int HP_intif_pGuildMemberWithdraw_post;
	int HP_intif_pGuildMemberInfoShort_pre;
	int HP_intif_pGuildMemberInfoShort_post;
	int HP_intif_pGuildBroken_pre;
	int HP_intif_pGuildBroken_post;
	int HP_intif_pGuildMessage_pre;
	int HP_intif_pGuildMessage_post;
	int HP_intif_pGuildBasicInfoChanged_pre;
	int HP_intif_pGuildBasicInfoChanged_post;
	int HP_intif_pGuildMemberInfoChanged_pre;
	int HP_intif_pGuildMemberInfoChanged_post;
	int HP_intif_pGuildPosition_pre;
	int HP_intif_pGuildPosition_post;
	int HP_intif_pGuildSkillUp_pre;
	int HP_intif_pGuildSkillUp_post;
	int HP_intif_pGuildAlliance_pre;
	int HP_intif_pGuildAlliance_post;
	int HP_intif_pGuildNotice_pre;
	int HP_intif_pGuildNotice_post;
	int HP_intif_pGuildEmblem_pre;
	int HP_intif_pGuildEmblem_post;
	int HP_intif_pGuildCastleDataLoad_pre;
	int HP_intif_pGuildCastleDataLoad_post;
	int HP_intif_pGuildMasterChanged_pre;
	int HP_intif_pGuildMasterChanged_post;
	int HP_intif_pQuestLog_pre;
	int HP_intif_pQuestLog_post;
	int HP_intif_pQuestSave_pre;
	int HP_intif_pQuestSave_post;
	int HP_intif_pMailInboxReceived_pre;
	int HP_intif_pMailInboxReceived_post;
	int HP_intif_pMailNew_pre;
	int HP_intif_pMailNew_post;
	int HP_intif_pMailGetAttach_pre;
	int HP_intif_pMailGetAttach_post;
	int HP_intif_pMailDelete_pre;
	int HP_intif_pMailDelete_post;
	int HP_intif_pMailReturn_pre;
	int HP_intif_pMailReturn_post;
	int HP_intif_pMailSend_pre;
	int HP_intif_pMailSend_post;
	int HP_intif_pAuctionResults_pre;
	int HP_intif_pAuctionResults_post;
	int HP_intif_pAuctionRegister_pre;
	int HP_intif_pAuctionRegister_post;
	int HP_intif_pAuctionCancel_pre;
	int HP_intif_pAuctionCancel_post;
	int HP_intif_pAuctionClose_pre;
	int HP_intif_pAuctionClose_post;
	int HP_intif_pAuctionMessage_pre;
	int HP_intif_pAuctionMessage_post;
	int HP_intif_pAuctionBid_pre;
	int HP_intif_pAuctionBid_post;
	int HP_intif_pItembound_ack_pre;
	int HP_intif_pItembound_ack_post;
	int HP_intif_pMercenaryReceived_pre;
	int HP_intif_pMercenaryReceived_post;
	int HP_intif_pMercenaryDeleted_pre;
	int HP_intif_pMercenaryDeleted_post;
	int HP_intif_pMercenarySaved_pre;
	int HP_intif_pMercenarySaved_post;
	int HP_intif_pElementalReceived_pre;
	int HP_intif_pElementalReceived_post;
	int HP_intif_pElementalDeleted_pre;
	int HP_intif_pElementalDeleted_post;
	int HP_intif_pElementalSaved_pre;
	int HP_intif_pElementalSaved_post;
	int HP_intif_pCreatePet_pre;
	int HP_intif_pCreatePet_post;
	int HP_intif_pRecvPetData_pre;
	int HP_intif_pRecvPetData_post;
	int HP_intif_pSavePetOk_pre;
	int HP_intif_pSavePetOk_post;
	int HP_intif_pDeletePetOk_pre;
	int HP_intif_pDeletePetOk_post;
	int HP_intif_pCreateHomunculus_pre;
	int HP_intif_pCreateHomunculus_post;
	int HP_intif_pRecvHomunculusData_pre;
	int HP_intif_pRecvHomunculusData_post;
	int HP_intif_pSaveHomunculusOk_pre;
	int HP_intif_pSaveHomunculusOk_post;
	int HP_intif_pDeleteHomunculusOk_pre;
	int HP_intif_pDeleteHomunculusOk_post;
	int HP_ircbot_init_pre;
	int HP_ircbot_init_post;
	int HP_ircbot_final_pre;
	int HP_ircbot_final_post;
	int HP_ircbot_parse_pre;
	int HP_ircbot_parse_post;
	int HP_ircbot_parse_sub_pre;
	int HP_ircbot_parse_sub_post;
	int HP_ircbot_parse_source_pre;
	int HP_ircbot_parse_source_post;
	int HP_ircbot_func_search_pre;
	int HP_ircbot_func_search_post;
	int HP_ircbot_connect_timer_pre;
	int HP_ircbot_connect_timer_post;
	int HP_ircbot_identify_timer_pre;
	int HP_ircbot_identify_timer_post;
	int HP_ircbot_join_timer_pre;
	int HP_ircbot_join_timer_post;
	int HP_ircbot_send_pre;
	int HP_ircbot_send_post;
	int HP_ircbot_relay_pre;
	int HP_ircbot_relay_post;
	int HP_ircbot_pong_pre;
	int HP_ircbot_pong_post;
	int HP_ircbot_privmsg_pre;
	int HP_ircbot_privmsg_post;
	int HP_ircbot_userjoin_pre;
	int HP_ircbot_userjoin_post;
	int HP_ircbot_userleave_pre;
	int HP_ircbot_userleave_post;
	int HP_ircbot_usernick_pre;
	int HP_ircbot_usernick_post;
	int HP_itemdb_init_pre;
	int HP_itemdb_init_post;
	int HP_itemdb_final_pre;
	int HP_itemdb_final_post;
	int HP_itemdb_reload_pre;
	int HP_itemdb_reload_post;
	int HP_itemdb_name_constants_pre;
	int HP_itemdb_name_constants_post;
	int HP_itemdb_read_groups_pre;
	int HP_itemdb_read_groups_post;
	int HP_itemdb_read_chains_pre;
	int HP_itemdb_read_chains_post;
	int HP_itemdb_read_packages_pre;
	int HP_itemdb_read_packages_post;
	int HP_itemdb_write_cached_packages_pre;
	int HP_itemdb_write_cached_packages_post;
	int HP_itemdb_read_cached_packages_pre;
	int HP_itemdb_read_cached_packages_post;
	int HP_itemdb_name2id_pre;
	int HP_itemdb_name2id_post;
	int HP_itemdb_search_name_pre;
	int HP_itemdb_search_name_post;
	int HP_itemdb_search_name_array_pre;
	int HP_itemdb_search_name_array_post;
	int HP_itemdb_load_pre;
	int HP_itemdb_load_post;
	int HP_itemdb_search_pre;
	int HP_itemdb_search_post;
	int HP_itemdb_exists_pre;
	int HP_itemdb_exists_post;
	int HP_itemdb_in_group_pre;
	int HP_itemdb_in_group_post;
	int HP_itemdb_group_item_pre;
	int HP_itemdb_group_item_post;
	int HP_itemdb_chain_item_pre;
	int HP_itemdb_chain_item_post;
	int HP_itemdb_package_item_pre;
	int HP_itemdb_package_item_post;
	int HP_itemdb_searchname_sub_pre;
	int HP_itemdb_searchname_sub_post;
	int HP_itemdb_searchname_array_sub_pre;
	int HP_itemdb_searchname_array_sub_post;
	int HP_itemdb_searchrandomid_pre;
	int HP_itemdb_searchrandomid_post;
	int HP_itemdb_typename_pre;
	int HP_itemdb_typename_post;
	int HP_itemdb_jobid2mapid_pre;
	int HP_itemdb_jobid2mapid_post;
	int HP_itemdb_create_dummy_data_pre;
	int HP_itemdb_create_dummy_data_post;
	int HP_itemdb_create_item_data_pre;
	int HP_itemdb_create_item_data_post;
	int HP_itemdb_isequip_pre;
	int HP_itemdb_isequip_post;
	int HP_itemdb_isequip2_pre;
	int HP_itemdb_isequip2_post;
	int HP_itemdb_isstackable_pre;
	int HP_itemdb_isstackable_post;
	int HP_itemdb_isstackable2_pre;
	int HP_itemdb_isstackable2_post;
	int HP_itemdb_isdropable_sub_pre;
	int HP_itemdb_isdropable_sub_post;
	int HP_itemdb_cantrade_sub_pre;
	int HP_itemdb_cantrade_sub_post;
	int HP_itemdb_canpartnertrade_sub_pre;
	int HP_itemdb_canpartnertrade_sub_post;
	int HP_itemdb_cansell_sub_pre;
	int HP_itemdb_cansell_sub_post;
	int HP_itemdb_cancartstore_sub_pre;
	int HP_itemdb_cancartstore_sub_post;
	int HP_itemdb_canstore_sub_pre;
	int HP_itemdb_canstore_sub_post;
	int HP_itemdb_canguildstore_sub_pre;
	int HP_itemdb_canguildstore_sub_post;
	int HP_itemdb_canmail_sub_pre;
	int HP_itemdb_canmail_sub_post;
	int HP_itemdb_canauction_sub_pre;
	int HP_itemdb_canauction_sub_post;
	int HP_itemdb_isrestricted_pre;
	int HP_itemdb_isrestricted_post;
	int HP_itemdb_isidentified_pre;
	int HP_itemdb_isidentified_post;
	int HP_itemdb_isidentified2_pre;
	int HP_itemdb_isidentified2_post;
	int HP_itemdb_read_itemavail_pre;
	int HP_itemdb_read_itemavail_post;
	int HP_itemdb_read_itemtrade_pre;
	int HP_itemdb_read_itemtrade_post;
	int HP_itemdb_read_itemdelay_pre;
	int HP_itemdb_read_itemdelay_post;
	int HP_itemdb_read_stack_pre;
	int HP_itemdb_read_stack_post;
	int HP_itemdb_read_buyingstore_pre;
	int HP_itemdb_read_buyingstore_post;
	int HP_itemdb_read_nouse_pre;
	int HP_itemdb_read_nouse_post;
	int HP_itemdb_combo_split_atoi_pre;
	int HP_itemdb_combo_split_atoi_post;
	int HP_itemdb_read_combos_pre;
	int HP_itemdb_read_combos_post;
	int HP_itemdb_gendercheck_pre;
	int HP_itemdb_gendercheck_post;
	int HP_itemdb_validate_entry_pre;
	int HP_itemdb_validate_entry_post;
	int HP_itemdb_readdb_sql_sub_pre;
	int HP_itemdb_readdb_sql_sub_post;
	int HP_itemdb_readdb_libconfig_sub_pre;
	int HP_itemdb_readdb_libconfig_sub_post;
	int HP_itemdb_readdb_libconfig_pre;
	int HP_itemdb_readdb_libconfig_post;
	int HP_itemdb_readdb_sql_pre;
	int HP_itemdb_readdb_sql_post;
	int HP_itemdb_unique_id_pre;
	int HP_itemdb_unique_id_post;
	int HP_itemdb_uid_load_pre;
	int HP_itemdb_uid_load_post;
	int HP_itemdb_read_pre;
	int HP_itemdb_read_post;
	int HP_itemdb_destroy_item_data_pre;
	int HP_itemdb_destroy_item_data_post;
	int HP_itemdb_final_sub_pre;
	int HP_itemdb_final_sub_post;
	int HP_itemdb_clear_pre;
	int HP_itemdb_clear_post;
	int HP_itemdb_id2combo_pre;
	int HP_itemdb_id2combo_post;
	int HP_logs_pick_pc_pre;
	int HP_logs_pick_pc_post;
	int HP_logs_pick_mob_pre;
	int HP_logs_pick_mob_post;
	int HP_logs_zeny_pre;
	int HP_logs_zeny_post;
	int HP_logs_npc_pre;
	int HP_logs_npc_post;
	int HP_logs_chat_pre;
	int HP_logs_chat_post;
	int HP_logs_atcommand_pre;
	int HP_logs_atcommand_post;
	int HP_logs_branch_pre;
	int HP_logs_branch_post;
	int HP_logs_mvpdrop_pre;
	int HP_logs_mvpdrop_post;
	int HP_logs_pick_sub_pre;
	int HP_logs_pick_sub_post;
	int HP_logs_zeny_sub_pre;
	int HP_logs_zeny_sub_post;
	int HP_logs_npc_sub_pre;
	int HP_logs_npc_sub_post;
	int HP_logs_chat_sub_pre;
	int HP_logs_chat_sub_post;
	int HP_logs_atcommand_sub_pre;
	int HP_logs_atcommand_sub_post;
	int HP_logs_branch_sub_pre;
	int HP_logs_branch_sub_post;
	int HP_logs_mvpdrop_sub_pre;
	int HP_logs_mvpdrop_sub_post;
	int HP_logs_config_read_pre;
	int HP_logs_config_read_post;
	int HP_logs_config_done_pre;
	int HP_logs_config_done_post;
	int HP_logs_sql_init_pre;
	int HP_logs_sql_init_post;
	int HP_logs_sql_final_pre;
	int HP_logs_sql_final_post;
	int HP_logs_picktype2char_pre;
	int HP_logs_picktype2char_post;
	int HP_logs_chattype2char_pre;
	int HP_logs_chattype2char_post;
	int HP_logs_should_log_item_pre;
	int HP_logs_should_log_item_post;
	int HP_mail_clear_pre;
	int HP_mail_clear_post;
	int HP_mail_removeitem_pre;
	int HP_mail_removeitem_post;
	int HP_mail_removezeny_pre;
	int HP_mail_removezeny_post;
	int HP_mail_setitem_pre;
	int HP_mail_setitem_post;
	int HP_mail_setattachment_pre;
	int HP_mail_setattachment_post;
	int HP_mail_getattachment_pre;
	int HP_mail_getattachment_post;
	int HP_mail_openmail_pre;
	int HP_mail_openmail_post;
	int HP_mail_deliveryfail_pre;
	int HP_mail_deliveryfail_post;
	int HP_mail_invalid_operation_pre;
	int HP_mail_invalid_operation_post;
	int HP_map_zone_init_pre;
	int HP_map_zone_init_post;
	int HP_map_zone_remove_pre;
	int HP_map_zone_remove_post;
	int HP_map_zone_apply_pre;
	int HP_map_zone_apply_post;
	int HP_map_zone_change_pre;
	int HP_map_zone_change_post;
	int HP_map_zone_change2_pre;
	int HP_map_zone_change2_post;
	int HP_map_getcell_pre;
	int HP_map_getcell_post;
	int HP_map_setgatcell_pre;
	int HP_map_setgatcell_post;
	int HP_map_cellfromcache_pre;
	int HP_map_cellfromcache_post;
	int HP_map_setusers_pre;
	int HP_map_setusers_post;
	int HP_map_getusers_pre;
	int HP_map_getusers_post;
	int HP_map_usercount_pre;
	int HP_map_usercount_post;
	int HP_map_freeblock_pre;
	int HP_map_freeblock_post;
	int HP_map_freeblock_lock_pre;
	int HP_map_freeblock_lock_post;
	int HP_map_freeblock_unlock_pre;
	int HP_map_freeblock_unlock_post;
	int HP_map_addblock_pre;
	int HP_map_addblock_post;
	int HP_map_delblock_pre;
	int HP_map_delblock_post;
	int HP_map_moveblock_pre;
	int HP_map_moveblock_post;
	int HP_map_count_oncell_pre;
	int HP_map_count_oncell_post;
	int HP_map_find_skill_unit_oncell_pre;
	int HP_map_find_skill_unit_oncell_post;
	int HP_map_get_new_object_id_pre;
	int HP_map_get_new_object_id_post;
	int HP_map_search_freecell_pre;
	int HP_map_search_freecell_post;
	int HP_map_quit_pre;
	int HP_map_quit_post;
	int HP_map_addnpc_pre;
	int HP_map_addnpc_post;
	int HP_map_clearflooritem_timer_pre;
	int HP_map_clearflooritem_timer_post;
	int HP_map_removemobs_timer_pre;
	int HP_map_removemobs_timer_post;
	int HP_map_clearflooritem_pre;
	int HP_map_clearflooritem_post;
	int HP_map_addflooritem_pre;
	int HP_map_addflooritem_post;
	int HP_map_addnickdb_pre;
	int HP_map_addnickdb_post;
	int HP_map_delnickdb_pre;
	int HP_map_delnickdb_post;
	int HP_map_reqnickdb_pre;
	int HP_map_reqnickdb_post;
	int HP_map_charid2nick_pre;
	int HP_map_charid2nick_post;
	int HP_map_charid2sd_pre;
	int HP_map_charid2sd_post;
	int HP_map_vforeachpc_pre;
	int HP_map_vforeachpc_post;
	int HP_map_vforeachmob_pre;
	int HP_map_vforeachmob_post;
	int HP_map_vforeachnpc_pre;
	int HP_map_vforeachnpc_post;
	int HP_map_vforeachregen_pre;
	int HP_map_vforeachregen_post;
	int HP_map_vforeachiddb_pre;
	int HP_map_vforeachiddb_post;
	int HP_map_vforeachinrange_pre;
	int HP_map_vforeachinrange_post;
	int HP_map_vforeachinshootrange_pre;
	int HP_map_vforeachinshootrange_post;
	int HP_map_vforeachinarea_pre;
	int HP_map_vforeachinarea_post;
	int HP_map_vforcountinrange_pre;
	int HP_map_vforcountinrange_post;
	int HP_map_vforcountinarea_pre;
	int HP_map_vforcountinarea_post;
	int HP_map_vforeachinmovearea_pre;
	int HP_map_vforeachinmovearea_post;
	int HP_map_vforeachincell_pre;
	int HP_map_vforeachincell_post;
	int HP_map_vforeachinpath_pre;
	int HP_map_vforeachinpath_post;
	int HP_map_vforeachinmap_pre;
	int HP_map_vforeachinmap_post;
	int HP_map_vforeachininstance_pre;
	int HP_map_vforeachininstance_post;
	int HP_map_id2sd_pre;
	int HP_map_id2sd_post;
	int HP_map_id2md_pre;
	int HP_map_id2md_post;
	int HP_map_id2nd_pre;
	int HP_map_id2nd_post;
	int HP_map_id2hd_pre;
	int HP_map_id2hd_post;
	int HP_map_id2mc_pre;
	int HP_map_id2mc_post;
	int HP_map_id2cd_pre;
	int HP_map_id2cd_post;
	int HP_map_id2bl_pre;
	int HP_map_id2bl_post;
	int HP_map_blid_exists_pre;
	int HP_map_blid_exists_post;
	int HP_map_mapindex2mapid_pre;
	int HP_map_mapindex2mapid_post;
	int HP_map_mapname2mapid_pre;
	int HP_map_mapname2mapid_post;
	int HP_map_mapname2ipport_pre;
	int HP_map_mapname2ipport_post;
	int HP_map_setipport_pre;
	int HP_map_setipport_post;
	int HP_map_eraseipport_pre;
	int HP_map_eraseipport_post;
	int HP_map_eraseallipport_pre;
	int HP_map_eraseallipport_post;
	int HP_map_addiddb_pre;
	int HP_map_addiddb_post;
	int HP_map_deliddb_pre;
	int HP_map_deliddb_post;
	int HP_map_nick2sd_pre;
	int HP_map_nick2sd_post;
	int HP_map_getmob_boss_pre;
	int HP_map_getmob_boss_post;
	int HP_map_id2boss_pre;
	int HP_map_id2boss_post;
	int HP_map_reloadnpc_pre;
	int HP_map_reloadnpc_post;
	int HP_map_check_dir_pre;
	int HP_map_check_dir_post;
	int HP_map_calc_dir_pre;
	int HP_map_calc_dir_post;
	int HP_map_random_dir_pre;
	int HP_map_random_dir_post;
	int HP_map_cleanup_sub_pre;
	int HP_map_cleanup_sub_post;
	int HP_map_delmap_pre;
	int HP_map_delmap_post;
	int HP_map_flags_init_pre;
	int HP_map_flags_init_post;
	int HP_map_iwall_set_pre;
	int HP_map_iwall_set_post;
	int HP_map_iwall_get_pre;
	int HP_map_iwall_get_post;
	int HP_map_iwall_remove_pre;
	int HP_map_iwall_remove_post;
	int HP_map_addmobtolist_pre;
	int HP_map_addmobtolist_post;
	int HP_map_spawnmobs_pre;
	int HP_map_spawnmobs_post;
	int HP_map_removemobs_pre;
	int HP_map_removemobs_post;
	int HP_map_addmap2db_pre;
	int HP_map_addmap2db_post;
	int HP_map_removemapdb_pre;
	int HP_map_removemapdb_post;
	int HP_map_clean_pre;
	int HP_map_clean_post;
	int HP_map_do_shutdown_pre;
	int HP_map_do_shutdown_post;
	int HP_map_freeblock_timer_pre;
	int HP_map_freeblock_timer_post;
	int HP_map_searchrandfreecell_pre;
	int HP_map_searchrandfreecell_post;
	int HP_map_count_sub_pre;
	int HP_map_count_sub_post;
	int HP_map_create_charid2nick_pre;
	int HP_map_create_charid2nick_post;
	int HP_map_removemobs_sub_pre;
	int HP_map_removemobs_sub_post;
	int HP_map_gat2cell_pre;
	int HP_map_gat2cell_post;
	int HP_map_cell2gat_pre;
	int HP_map_cell2gat_post;
	int HP_map_getcellp_pre;
	int HP_map_getcellp_post;
	int HP_map_setcell_pre;
	int HP_map_setcell_post;
	int HP_map_sub_getcellp_pre;
	int HP_map_sub_getcellp_post;
	int HP_map_sub_setcell_pre;
	int HP_map_sub_setcell_post;
	int HP_map_iwall_nextxy_pre;
	int HP_map_iwall_nextxy_post;
	int HP_map_create_map_data_other_server_pre;
	int HP_map_create_map_data_other_server_post;
	int HP_map_eraseallipport_sub_pre;
	int HP_map_eraseallipport_sub_post;
	int HP_map_init_mapcache_pre;
	int HP_map_init_mapcache_post;
	int HP_map_readfromcache_pre;
	int HP_map_readfromcache_post;
	int HP_map_addmap_pre;
	int HP_map_addmap_post;
	int HP_map_delmapid_pre;
	int HP_map_delmapid_post;
	int HP_map_zone_db_clear_pre;
	int HP_map_zone_db_clear_post;
	int HP_map_list_final_pre;
	int HP_map_list_final_post;
	int HP_map_waterheight_pre;
	int HP_map_waterheight_post;
	int HP_map_readgat_pre;
	int HP_map_readgat_post;
	int HP_map_readallmaps_pre;
	int HP_map_readallmaps_post;
	int HP_map_config_read_pre;
	int HP_map_config_read_post;
	int HP_map_config_read_sub_pre;
	int HP_map_config_read_sub_post;
	int HP_map_reloadnpc_sub_pre;
	int HP_map_reloadnpc_sub_post;
	int HP_map_inter_config_read_pre;
	int HP_map_inter_config_read_post;
	int HP_map_sql_init_pre;
	int HP_map_sql_init_post;
	int HP_map_sql_close_pre;
	int HP_map_sql_close_post;
	int HP_map_zone_mf_cache_pre;
	int HP_map_zone_mf_cache_post;
	int HP_map_zone_str2itemid_pre;
	int HP_map_zone_str2itemid_post;
	int HP_map_zone_str2skillid_pre;
	int HP_map_zone_str2skillid_post;
	int HP_map_zone_bl_type_pre;
	int HP_map_zone_bl_type_post;
	int HP_map_read_zone_db_pre;
	int HP_map_read_zone_db_post;
	int HP_map_db_final_pre;
	int HP_map_db_final_post;
	int HP_map_nick_db_final_pre;
	int HP_map_nick_db_final_post;
	int HP_map_cleanup_db_sub_pre;
	int HP_map_cleanup_db_sub_post;
	int HP_map_abort_sub_pre;
	int HP_map_abort_sub_post;
	int HP_map_helpscreen_pre;
	int HP_map_helpscreen_post;
	int HP_map_versionscreen_pre;
	int HP_map_versionscreen_post;
	int HP_map_arg_next_value_pre;
	int HP_map_arg_next_value_post;
	int HP_map_addblcell_pre;
	int HP_map_addblcell_post;
	int HP_map_delblcell_pre;
	int HP_map_delblcell_post;
	int HP_map_get_new_bonus_id_pre;
	int HP_map_get_new_bonus_id_post;
	int HP_map_add_questinfo_pre;
	int HP_map_add_questinfo_post;
	int HP_map_remove_questinfo_pre;
	int HP_map_remove_questinfo_post;
	int HP_map_merge_zone_pre;
	int HP_map_merge_zone_post;
	int HP_mapit_alloc_pre;
	int HP_mapit_alloc_post;
	int HP_mapit_free_pre;
	int HP_mapit_free_post;
	int HP_mapit_first_pre;
	int HP_mapit_first_post;
	int HP_mapit_last_pre;
	int HP_mapit_last_post;
	int HP_mapit_next_pre;
	int HP_mapit_next_post;
	int HP_mapit_prev_pre;
	int HP_mapit_prev_post;
	int HP_mapit_exists_pre;
	int HP_mapit_exists_post;
	int HP_mapreg_init_pre;
	int HP_mapreg_init_post;
	int HP_mapreg_final_pre;
	int HP_mapreg_final_post;
	int HP_mapreg_readreg_pre;
	int HP_mapreg_readreg_post;
	int HP_mapreg_readregstr_pre;
	int HP_mapreg_readregstr_post;
	int HP_mapreg_setreg_pre;
	int HP_mapreg_setreg_post;
	int HP_mapreg_setregstr_pre;
	int HP_mapreg_setregstr_post;
	int HP_mapreg_load_pre;
	int HP_mapreg_load_post;
	int HP_mapreg_save_pre;
	int HP_mapreg_save_post;
	int HP_mapreg_save_timer_pre;
	int HP_mapreg_save_timer_post;
	int HP_mapreg_destroyreg_pre;
	int HP_mapreg_destroyreg_post;
	int HP_mapreg_reload_pre;
	int HP_mapreg_reload_post;
	int HP_mapreg_config_read_pre;
	int HP_mapreg_config_read_post;
	int HP_mercenary_init_pre;
	int HP_mercenary_init_post;
	int HP_mercenary_class_pre;
	int HP_mercenary_class_post;
	int HP_mercenary_get_viewdata_pre;
	int HP_mercenary_get_viewdata_post;
	int HP_mercenary_create_pre;
	int HP_mercenary_create_post;
	int HP_mercenary_data_received_pre;
	int HP_mercenary_data_received_post;
	int HP_mercenary_save_pre;
	int HP_mercenary_save_post;
	int HP_mercenary_heal_pre;
	int HP_mercenary_heal_post;
	int HP_mercenary_dead_pre;
	int HP_mercenary_dead_post;
	int HP_mercenary_delete_pre;
	int HP_mercenary_delete_post;
	int HP_mercenary_contract_stop_pre;
	int HP_mercenary_contract_stop_post;
	int HP_mercenary_get_lifetime_pre;
	int HP_mercenary_get_lifetime_post;
	int HP_mercenary_get_guild_pre;
	int HP_mercenary_get_guild_post;
	int HP_mercenary_get_faith_pre;
	int HP_mercenary_get_faith_post;
	int HP_mercenary_set_faith_pre;
	int HP_mercenary_set_faith_post;
	int HP_mercenary_get_calls_pre;
	int HP_mercenary_get_calls_post;
	int HP_mercenary_set_calls_pre;
	int HP_mercenary_set_calls_post;
	int HP_mercenary_kills_pre;
	int HP_mercenary_kills_post;
	int HP_mercenary_checkskill_pre;
	int HP_mercenary_checkskill_post;
	int HP_mercenary_read_db_pre;
	int HP_mercenary_read_db_post;
	int HP_mercenary_read_skilldb_pre;
	int HP_mercenary_read_skilldb_post;
	int HP_mercenary_killbonus_pre;
	int HP_mercenary_killbonus_post;
	int HP_mercenary_search_index_pre;
	int HP_mercenary_search_index_post;
	int HP_mercenary_contract_end_timer_pre;
	int HP_mercenary_contract_end_timer_post;
	int HP_mercenary_read_db_sub_pre;
	int HP_mercenary_read_db_sub_post;
	int HP_mercenary_read_skill_db_sub_pre;
	int HP_mercenary_read_skill_db_sub_post;
	int HP_mob_init_pre;
	int HP_mob_init_post;
	int HP_mob_final_pre;
	int HP_mob_final_post;
	int HP_mob_reload_pre;
	int HP_mob_reload_post;
	int HP_mob_db_pre;
	int HP_mob_db_post;
	int HP_mob_chat_pre;
	int HP_mob_chat_post;
	int HP_mob_makedummymobdb_pre;
	int HP_mob_makedummymobdb_post;
	int HP_mob_spawn_guardian_sub_pre;
	int HP_mob_spawn_guardian_sub_post;
	int HP_mob_skill_id2skill_idx_pre;
	int HP_mob_skill_id2skill_idx_post;
	int HP_mob_db_searchname_pre;
	int HP_mob_db_searchname_post;
	int HP_mob_db_searchname_array_sub_pre;
	int HP_mob_db_searchname_array_sub_post;
	int HP_mob_mvptomb_create_pre;
	int HP_mob_mvptomb_create_post;
	int HP_mob_mvptomb_destroy_pre;
	int HP_mob_mvptomb_destroy_post;
	int HP_mob_db_searchname_array_pre;
	int HP_mob_db_searchname_array_post;
	int HP_mob_db_checkid_pre;
	int HP_mob_db_checkid_post;
	int HP_mob_get_viewdata_pre;
	int HP_mob_get_viewdata_post;
	int HP_mob_parse_dataset_pre;
	int HP_mob_parse_dataset_post;
	int HP_mob_spawn_dataset_pre;
	int HP_mob_spawn_dataset_post;
	int HP_mob_get_random_id_pre;
	int HP_mob_get_random_id_post;
	int HP_mob_ksprotected_pre;
	int HP_mob_ksprotected_post;
	int HP_mob_once_spawn_sub_pre;
	int HP_mob_once_spawn_sub_post;
	int HP_mob_once_spawn_pre;
	int HP_mob_once_spawn_post;
	int HP_mob_once_spawn_area_pre;
	int HP_mob_once_spawn_area_post;
	int HP_mob_spawn_guardian_pre;
	int HP_mob_spawn_guardian_post;
	int HP_mob_spawn_bg_pre;
	int HP_mob_spawn_bg_post;
	int HP_mob_can_reach_pre;
	int HP_mob_can_reach_post;
	int HP_mob_linksearch_pre;
	int HP_mob_linksearch_post;
	int HP_mob_delayspawn_pre;
	int HP_mob_delayspawn_post;
	int HP_mob_setdelayspawn_pre;
	int HP_mob_setdelayspawn_post;
	int HP_mob_count_sub_pre;
	int HP_mob_count_sub_post;
	int HP_mob_spawn_pre;
	int HP_mob_spawn_post;
	int HP_mob_can_changetarget_pre;
	int HP_mob_can_changetarget_post;
	int HP_mob_target_pre;
	int HP_mob_target_post;
	int HP_mob_ai_sub_hard_activesearch_pre;
	int HP_mob_ai_sub_hard_activesearch_post;
	int HP_mob_ai_sub_hard_changechase_pre;
	int HP_mob_ai_sub_hard_changechase_post;
	int HP_mob_ai_sub_hard_bg_ally_pre;
	int HP_mob_ai_sub_hard_bg_ally_post;
	int HP_mob_ai_sub_hard_lootsearch_pre;
	int HP_mob_ai_sub_hard_lootsearch_post;
	int HP_mob_warpchase_sub_pre;
	int HP_mob_warpchase_sub_post;
	int HP_mob_ai_sub_hard_slavemob_pre;
	int HP_mob_ai_sub_hard_slavemob_post;
	int HP_mob_unlocktarget_pre;
	int HP_mob_unlocktarget_post;
	int HP_mob_randomwalk_pre;
	int HP_mob_randomwalk_post;
	int HP_mob_warpchase_pre;
	int HP_mob_warpchase_post;
	int HP_mob_ai_sub_hard_pre;
	int HP_mob_ai_sub_hard_post;
	int HP_mob_ai_sub_hard_timer_pre;
	int HP_mob_ai_sub_hard_timer_post;
	int HP_mob_ai_sub_foreachclient_pre;
	int HP_mob_ai_sub_foreachclient_post;
	int HP_mob_ai_sub_lazy_pre;
	int HP_mob_ai_sub_lazy_post;
	int HP_mob_ai_lazy_pre;
	int HP_mob_ai_lazy_post;
	int HP_mob_ai_hard_pre;
	int HP_mob_ai_hard_post;
	int HP_mob_setdropitem_pre;
	int HP_mob_setdropitem_post;
	int HP_mob_setlootitem_pre;
	int HP_mob_setlootitem_post;
	int HP_mob_delay_item_drop_pre;
	int HP_mob_delay_item_drop_post;
	int HP_mob_item_drop_pre;
	int HP_mob_item_drop_post;
	int HP_mob_timer_delete_pre;
	int HP_mob_timer_delete_post;
	int HP_mob_deleteslave_sub_pre;
	int HP_mob_deleteslave_sub_post;
	int HP_mob_deleteslave_pre;
	int HP_mob_deleteslave_post;
	int HP_mob_respawn_pre;
	int HP_mob_respawn_post;
	int HP_mob_log_damage_pre;
	int HP_mob_log_damage_post;
	int HP_mob_damage_pre;
	int HP_mob_damage_post;
	int HP_mob_dead_pre;
	int HP_mob_dead_post;
	int HP_mob_revive_pre;
	int HP_mob_revive_post;
	int HP_mob_guardian_guildchange_pre;
	int HP_mob_guardian_guildchange_post;
	int HP_mob_random_class_pre;
	int HP_mob_random_class_post;
	int HP_mob_class_change_pre;
	int HP_mob_class_change_post;
	int HP_mob_heal_pre;
	int HP_mob_heal_post;
	int HP_mob_warpslave_sub_pre;
	int HP_mob_warpslave_sub_post;
	int HP_mob_warpslave_pre;
	int HP_mob_warpslave_post;
	int HP_mob_countslave_sub_pre;
	int HP_mob_countslave_sub_post;
	int HP_mob_countslave_pre;
	int HP_mob_countslave_post;
	int HP_mob_summonslave_pre;
	int HP_mob_summonslave_post;
	int HP_mob_getfriendhprate_sub_pre;
	int HP_mob_getfriendhprate_sub_post;
	int HP_mob_getfriendhprate_pre;
	int HP_mob_getfriendhprate_post;
	int HP_mob_getmasterhpltmaxrate_pre;
	int HP_mob_getmasterhpltmaxrate_post;
	int HP_mob_getfriendstatus_sub_pre;
	int HP_mob_getfriendstatus_sub_post;
	int HP_mob_getfriendstatus_pre;
	int HP_mob_getfriendstatus_post;
	int HP_mob_skill_use_pre;
	int HP_mob_skill_use_post;
	int HP_mob_skill_event_pre;
	int HP_mob_skill_event_post;
	int HP_mob_is_clone_pre;
	int HP_mob_is_clone_post;
	int HP_mob_clone_spawn_pre;
	int HP_mob_clone_spawn_post;
	int HP_mob_clone_delete_pre;
	int HP_mob_clone_delete_post;
	int HP_mob_drop_adjust_pre;
	int HP_mob_drop_adjust_post;
	int HP_mob_item_dropratio_adjust_pre;
	int HP_mob_item_dropratio_adjust_post;
	int HP_mob_parse_dbrow_pre;
	int HP_mob_parse_dbrow_post;
	int HP_mob_readdb_sub_pre;
	int HP_mob_readdb_sub_post;
	int HP_mob_readdb_pre;
	int HP_mob_readdb_post;
	int HP_mob_read_sqldb_pre;
	int HP_mob_read_sqldb_post;
	int HP_mob_name_constants_pre;
	int HP_mob_name_constants_post;
	int HP_mob_readdb_mobavail_pre;
	int HP_mob_readdb_mobavail_post;
	int HP_mob_read_randommonster_pre;
	int HP_mob_read_randommonster_post;
	int HP_mob_parse_row_chatdb_pre;
	int HP_mob_parse_row_chatdb_post;
	int HP_mob_readchatdb_pre;
	int HP_mob_readchatdb_post;
	int HP_mob_parse_row_mobskilldb_pre;
	int HP_mob_parse_row_mobskilldb_post;
	int HP_mob_readskilldb_pre;
	int HP_mob_readskilldb_post;
	int HP_mob_read_sqlskilldb_pre;
	int HP_mob_read_sqlskilldb_post;
	int HP_mob_readdb_race2_pre;
	int HP_mob_readdb_race2_post;
	int HP_mob_readdb_itemratio_pre;
	int HP_mob_readdb_itemratio_post;
	int HP_mob_load_pre;
	int HP_mob_load_post;
	int HP_mob_clear_spawninfo_pre;
	int HP_mob_clear_spawninfo_post;
	int HP_npc_init_pre;
	int HP_npc_init_post;
	int HP_npc_final_pre;
	int HP_npc_final_post;
	int HP_npc_get_new_npc_id_pre;
	int HP_npc_get_new_npc_id_post;
	int HP_npc_get_viewdata_pre;
	int HP_npc_get_viewdata_post;
	int HP_npc_isnear_sub_pre;
	int HP_npc_isnear_sub_post;
	int HP_npc_isnear_pre;
	int HP_npc_isnear_post;
	int HP_npc_ontouch_event_pre;
	int HP_npc_ontouch_event_post;
	int HP_npc_ontouch2_event_pre;
	int HP_npc_ontouch2_event_post;
	int HP_npc_enable_sub_pre;
	int HP_npc_enable_sub_post;
	int HP_npc_enable_pre;
	int HP_npc_enable_post;
	int HP_npc_name2id_pre;
	int HP_npc_name2id_post;
	int HP_npc_event_dequeue_pre;
	int HP_npc_event_dequeue_post;
	int HP_npc_event_export_create_pre;
	int HP_npc_event_export_create_post;
	int HP_npc_event_export_pre;
	int HP_npc_event_export_post;
	int HP_npc_event_sub_pre;
	int HP_npc_event_sub_post;
	int HP_npc_event_doall_sub_pre;
	int HP_npc_event_doall_sub_post;
	int HP_npc_event_do_pre;
	int HP_npc_event_do_post;
	int HP_npc_event_doall_id_pre;
	int HP_npc_event_doall_id_post;
	int HP_npc_event_doall_pre;
	int HP_npc_event_doall_post;
	int HP_npc_event_do_clock_pre;
	int HP_npc_event_do_clock_post;
	int HP_npc_event_do_oninit_pre;
	int HP_npc_event_do_oninit_post;
	int HP_npc_timerevent_export_pre;
	int HP_npc_timerevent_export_post;
	int HP_npc_timerevent_pre;
	int HP_npc_timerevent_post;
	int HP_npc_timerevent_start_pre;
	int HP_npc_timerevent_start_post;
	int HP_npc_timerevent_stop_pre;
	int HP_npc_timerevent_stop_post;
	int HP_npc_timerevent_quit_pre;
	int HP_npc_timerevent_quit_post;
	int HP_npc_gettimerevent_tick_pre;
	int HP_npc_gettimerevent_tick_post;
	int HP_npc_settimerevent_tick_pre;
	int HP_npc_settimerevent_tick_post;
	int HP_npc_event_pre;
	int HP_npc_event_post;
	int HP_npc_touch_areanpc_sub_pre;
	int HP_npc_touch_areanpc_sub_post;
	int HP_npc_touchnext_areanpc_pre;
	int HP_npc_touchnext_areanpc_post;
	int HP_npc_touch_areanpc_pre;
	int HP_npc_touch_areanpc_post;
	int HP_npc_touch_areanpc2_pre;
	int HP_npc_touch_areanpc2_post;
	int HP_npc_check_areanpc_pre;
	int HP_npc_check_areanpc_post;
	int HP_npc_checknear_pre;
	int HP_npc_checknear_post;
	int HP_npc_globalmessage_pre;
	int HP_npc_globalmessage_post;
	int HP_npc_run_tomb_pre;
	int HP_npc_run_tomb_post;
	int HP_npc_click_pre;
	int HP_npc_click_post;
	int HP_npc_scriptcont_pre;
	int HP_npc_scriptcont_post;
	int HP_npc_buysellsel_pre;
	int HP_npc_buysellsel_post;
	int HP_npc_cashshop_buylist_pre;
	int HP_npc_cashshop_buylist_post;
	int HP_npc_buylist_sub_pre;
	int HP_npc_buylist_sub_post;
	int HP_npc_cashshop_buy_pre;
	int HP_npc_cashshop_buy_post;
	int HP_npc_buylist_pre;
	int HP_npc_buylist_post;
	int HP_npc_selllist_sub_pre;
	int HP_npc_selllist_sub_post;
	int HP_npc_selllist_pre;
	int HP_npc_selllist_post;
	int HP_npc_remove_map_pre;
	int HP_npc_remove_map_post;
	int HP_npc_unload_ev_pre;
	int HP_npc_unload_ev_post;
	int HP_npc_unload_ev_label_pre;
	int HP_npc_unload_ev_label_post;
	int HP_npc_unload_dup_sub_pre;
	int HP_npc_unload_dup_sub_post;
	int HP_npc_unload_duplicates_pre;
	int HP_npc_unload_duplicates_post;
	int HP_npc_unload_pre;
	int HP_npc_unload_post;
	int HP_npc_clearsrcfile_pre;
	int HP_npc_clearsrcfile_post;
	int HP_npc_addsrcfile_pre;
	int HP_npc_addsrcfile_post;
	int HP_npc_delsrcfile_pre;
	int HP_npc_delsrcfile_post;
	int HP_npc_parsename_pre;
	int HP_npc_parsename_post;
	int HP_npc_parseview_pre;
	int HP_npc_parseview_post;
	int HP_npc_viewisid_pre;
	int HP_npc_viewisid_post;
	int HP_npc_add_warp_pre;
	int HP_npc_add_warp_post;
	int HP_npc_parse_warp_pre;
	int HP_npc_parse_warp_post;
	int HP_npc_parse_shop_pre;
	int HP_npc_parse_shop_post;
	int HP_npc_convertlabel_db_pre;
	int HP_npc_convertlabel_db_post;
	int HP_npc_skip_script_pre;
	int HP_npc_skip_script_post;
	int HP_npc_parse_script_pre;
	int HP_npc_parse_script_post;
	int HP_npc_parse_duplicate_pre;
	int HP_npc_parse_duplicate_post;
	int HP_npc_duplicate4instance_pre;
	int HP_npc_duplicate4instance_post;
	int HP_npc_setcells_pre;
	int HP_npc_setcells_post;
	int HP_npc_unsetcells_sub_pre;
	int HP_npc_unsetcells_sub_post;
	int HP_npc_unsetcells_pre;
	int HP_npc_unsetcells_post;
	int HP_npc_movenpc_pre;
	int HP_npc_movenpc_post;
	int HP_npc_setdisplayname_pre;
	int HP_npc_setdisplayname_post;
	int HP_npc_setclass_pre;
	int HP_npc_setclass_post;
	int HP_npc_do_atcmd_event_pre;
	int HP_npc_do_atcmd_event_post;
	int HP_npc_parse_function_pre;
	int HP_npc_parse_function_post;
	int HP_npc_parse_mob2_pre;
	int HP_npc_parse_mob2_post;
	int HP_npc_parse_mob_pre;
	int HP_npc_parse_mob_post;
	int HP_npc_parse_mapflag_pre;
	int HP_npc_parse_mapflag_post;
	int HP_npc_parsesrcfile_pre;
	int HP_npc_parsesrcfile_post;
	int HP_npc_script_event_pre;
	int HP_npc_script_event_post;
	int HP_npc_read_event_script_pre;
	int HP_npc_read_event_script_post;
	int HP_npc_path_db_clear_sub_pre;
	int HP_npc_path_db_clear_sub_post;
	int HP_npc_ev_label_db_clear_sub_pre;
	int HP_npc_ev_label_db_clear_sub_post;
	int HP_npc_reload_pre;
	int HP_npc_reload_post;
	int HP_npc_unloadfile_pre;
	int HP_npc_unloadfile_post;
	int HP_npc_do_clear_npc_pre;
	int HP_npc_do_clear_npc_post;
	int HP_npc_debug_warps_sub_pre;
	int HP_npc_debug_warps_sub_post;
	int HP_npc_debug_warps_pre;
	int HP_npc_debug_warps_post;
	int HP_npc_trader_count_funds_pre;
	int HP_npc_trader_count_funds_post;
	int HP_npc_trader_pay_pre;
	int HP_npc_trader_pay_post;
	int HP_npc_trader_update_pre;
	int HP_npc_trader_update_post;
	int HP_npc_market_buylist_pre;
	int HP_npc_market_buylist_post;
	int HP_npc_trader_open_pre;
	int HP_npc_trader_open_post;
	int HP_npc_market_fromsql_pre;
	int HP_npc_market_fromsql_post;
	int HP_npc_market_tosql_pre;
	int HP_npc_market_tosql_post;
	int HP_npc_market_delfromsql_pre;
	int HP_npc_market_delfromsql_post;
	int HP_npc_market_delfromsql_sub_pre;
	int HP_npc_market_delfromsql_sub_post;
	int HP_npc_secure_timeout_timer_pre;
	int HP_npc_secure_timeout_timer_post;
	int HP_party_init_pre;
	int HP_party_init_post;
	int HP_party_final_pre;
	int HP_party_final_post;
	int HP_party_search_pre;
	int HP_party_search_post;
	int HP_party_searchname_pre;
	int HP_party_searchname_post;
	int HP_party_getmemberid_pre;
	int HP_party_getmemberid_post;
	int HP_party_getavailablesd_pre;
	int HP_party_getavailablesd_post;
	int HP_party_create_pre;
	int HP_party_create_post;
	int HP_party_created_pre;
	int HP_party_created_post;
	int HP_party_request_info_pre;
	int HP_party_request_info_post;
	int HP_party_invite_pre;
	int HP_party_invite_post;
	int HP_party_member_joined_pre;
	int HP_party_member_joined_post;
	int HP_party_member_added_pre;
	int HP_party_member_added_post;
	int HP_party_leave_pre;
	int HP_party_leave_post;
	int HP_party_removemember_pre;
	int HP_party_removemember_post;
	int HP_party_member_withdraw_pre;
	int HP_party_member_withdraw_post;
	int HP_party_reply_invite_pre;
	int HP_party_reply_invite_post;
	int HP_party_recv_noinfo_pre;
	int HP_party_recv_noinfo_post;
	int HP_party_recv_info_pre;
	int HP_party_recv_info_post;
	int HP_party_recv_movemap_pre;
	int HP_party_recv_movemap_post;
	int HP_party_broken_pre;
	int HP_party_broken_post;
	int HP_party_optionchanged_pre;
	int HP_party_optionchanged_post;
	int HP_party_changeoption_pre;
	int HP_party_changeoption_post;
	int HP_party_changeleader_pre;
	int HP_party_changeleader_post;
	int HP_party_send_movemap_pre;
	int HP_party_send_movemap_post;
	int HP_party_send_levelup_pre;
	int HP_party_send_levelup_post;
	int HP_party_send_logout_pre;
	int HP_party_send_logout_post;
	int HP_party_send_message_pre;
	int HP_party_send_message_post;
	int HP_party_recv_message_pre;
	int HP_party_recv_message_post;
	int HP_party_skill_check_pre;
	int HP_party_skill_check_post;
	int HP_party_send_xy_clear_pre;
	int HP_party_send_xy_clear_post;
	int HP_party_exp_share_pre;
	int HP_party_exp_share_post;
	int HP_party_share_loot_pre;
	int HP_party_share_loot_post;
	int HP_party_send_dot_remove_pre;
	int HP_party_send_dot_remove_post;
	int HP_party_sub_count_pre;
	int HP_party_sub_count_post;
	int HP_party_sub_count_chorus_pre;
	int HP_party_sub_count_chorus_post;
	int HP_party_booking_register_pre;
	int HP_party_booking_register_post;
	int HP_party_booking_update_pre;
	int HP_party_booking_update_post;
	int HP_party_booking_search_pre;
	int HP_party_booking_search_post;
	int HP_party_recruit_register_pre;
	int HP_party_recruit_register_post;
	int HP_party_recruit_update_pre;
	int HP_party_recruit_update_post;
	int HP_party_recruit_search_pre;
	int HP_party_recruit_search_post;
	int HP_party_booking_delete_pre;
	int HP_party_booking_delete_post;
	int HP_party_vforeachsamemap_pre;
	int HP_party_vforeachsamemap_post;
	int HP_party_send_xy_timer_pre;
	int HP_party_send_xy_timer_post;
	int HP_party_fill_member_pre;
	int HP_party_fill_member_post;
	int HP_party_sd_check_pre;
	int HP_party_sd_check_post;
	int HP_party_check_state_pre;
	int HP_party_check_state_post;
	int HP_party_create_booking_data_pre;
	int HP_party_create_booking_data_post;
	int HP_party_db_final_pre;
	int HP_party_db_final_post;
	int HP_path_blownpos_pre;
	int HP_path_blownpos_post;
	int HP_path_search_pre;
	int HP_path_search_post;
	int HP_path_search_long_pre;
	int HP_path_search_long_post;
	int HP_path_check_distance_pre;
	int HP_path_check_distance_post;
	int HP_path_distance_pre;
	int HP_path_distance_post;
	int HP_pcg_init_pre;
	int HP_pcg_init_post;
	int HP_pcg_final_pre;
	int HP_pcg_final_post;
	int HP_pcg_reload_pre;
	int HP_pcg_reload_post;
	int HP_pcg_get_dummy_group_pre;
	int HP_pcg_get_dummy_group_post;
	int HP_pcg_exists_pre;
	int HP_pcg_exists_post;
	int HP_pcg_id2group_pre;
	int HP_pcg_id2group_post;
	int HP_pcg_has_permission_pre;
	int HP_pcg_has_permission_post;
	int HP_pcg_should_log_commands_pre;
	int HP_pcg_should_log_commands_post;
	int HP_pcg_get_name_pre;
	int HP_pcg_get_name_post;
	int HP_pcg_get_level_pre;
	int HP_pcg_get_level_post;
	int HP_pcg_get_idx_pre;
	int HP_pcg_get_idx_post;
	int HP_pc_init_pre;
	int HP_pc_init_post;
	int HP_pc_final_pre;
	int HP_pc_final_post;
	int HP_pc_get_dummy_sd_pre;
	int HP_pc_get_dummy_sd_post;
	int HP_pc_class2idx_pre;
	int HP_pc_class2idx_post;
	int HP_pc_can_give_items_pre;
	int HP_pc_can_give_items_post;
	int HP_pc_can_give_bound_items_pre;
	int HP_pc_can_give_bound_items_post;
	int HP_pc_can_use_command_pre;
	int HP_pc_can_use_command_post;
	int HP_pc_set_group_pre;
	int HP_pc_set_group_post;
	int HP_pc_should_log_commands_pre;
	int HP_pc_should_log_commands_post;
	int HP_pc_setrestartvalue_pre;
	int HP_pc_setrestartvalue_post;
	int HP_pc_makesavestatus_pre;
	int HP_pc_makesavestatus_post;
	int HP_pc_respawn_pre;
	int HP_pc_respawn_post;
	int HP_pc_setnewpc_pre;
	int HP_pc_setnewpc_post;
	int HP_pc_authok_pre;
	int HP_pc_authok_post;
	int HP_pc_authfail_pre;
	int HP_pc_authfail_post;
	int HP_pc_reg_received_pre;
	int HP_pc_reg_received_post;
	int HP_pc_isequip_pre;
	int HP_pc_isequip_post;
	int HP_pc_equippoint_pre;
	int HP_pc_equippoint_post;
	int HP_pc_setinventorydata_pre;
	int HP_pc_setinventorydata_post;
	int HP_pc_checkskill_pre;
	int HP_pc_checkskill_post;
	int HP_pc_checkskill2_pre;
	int HP_pc_checkskill2_post;
	int HP_pc_checkallowskill_pre;
	int HP_pc_checkallowskill_post;
	int HP_pc_checkequip_pre;
	int HP_pc_checkequip_post;
	int HP_pc_calc_skilltree_pre;
	int HP_pc_calc_skilltree_post;
	int HP_pc_calc_skilltree_normalize_job_pre;
	int HP_pc_calc_skilltree_normalize_job_post;
	int HP_pc_clean_skilltree_pre;
	int HP_pc_clean_skilltree_post;
	int HP_pc_setpos_pre;
	int HP_pc_setpos_post;
	int HP_pc_setsavepoint_pre;
	int HP_pc_setsavepoint_post;
	int HP_pc_randomwarp_pre;
	int HP_pc_randomwarp_post;
	int HP_pc_memo_pre;
	int HP_pc_memo_post;
	int HP_pc_checkadditem_pre;
	int HP_pc_checkadditem_post;
	int HP_pc_inventoryblank_pre;
	int HP_pc_inventoryblank_post;
	int HP_pc_search_inventory_pre;
	int HP_pc_search_inventory_post;
	int HP_pc_payzeny_pre;
	int HP_pc_payzeny_post;
	int HP_pc_additem_pre;
	int HP_pc_additem_post;
	int HP_pc_getzeny_pre;
	int HP_pc_getzeny_post;
	int HP_pc_delitem_pre;
	int HP_pc_delitem_post;
	int HP_pc_paycash_pre;
	int HP_pc_paycash_post;
	int HP_pc_getcash_pre;
	int HP_pc_getcash_post;
	int HP_pc_cart_additem_pre;
	int HP_pc_cart_additem_post;
	int HP_pc_cart_delitem_pre;
	int HP_pc_cart_delitem_post;
	int HP_pc_putitemtocart_pre;
	int HP_pc_putitemtocart_post;
	int HP_pc_getitemfromcart_pre;
	int HP_pc_getitemfromcart_post;
	int HP_pc_cartitem_amount_pre;
	int HP_pc_cartitem_amount_post;
	int HP_pc_takeitem_pre;
	int HP_pc_takeitem_post;
	int HP_pc_dropitem_pre;
	int HP_pc_dropitem_post;
	int HP_pc_isequipped_pre;
	int HP_pc_isequipped_post;
	int HP_pc_can_Adopt_pre;
	int HP_pc_can_Adopt_post;
	int HP_pc_adoption_pre;
	int HP_pc_adoption_post;
	int HP_pc_updateweightstatus_pre;
	int HP_pc_updateweightstatus_post;
	int HP_pc_addautobonus_pre;
	int HP_pc_addautobonus_post;
	int HP_pc_exeautobonus_pre;
	int HP_pc_exeautobonus_post;
	int HP_pc_endautobonus_pre;
	int HP_pc_endautobonus_post;
	int HP_pc_delautobonus_pre;
	int HP_pc_delautobonus_post;
	int HP_pc_bonus_pre;
	int HP_pc_bonus_post;
	int HP_pc_bonus2_pre;
	int HP_pc_bonus2_post;
	int HP_pc_bonus3_pre;
	int HP_pc_bonus3_post;
	int HP_pc_bonus4_pre;
	int HP_pc_bonus4_post;
	int HP_pc_bonus5_pre;
	int HP_pc_bonus5_post;
	int HP_pc_skill_pre;
	int HP_pc_skill_post;
	int HP_pc_insert_card_pre;
	int HP_pc_insert_card_post;
	int HP_pc_steal_item_pre;
	int HP_pc_steal_item_post;
	int HP_pc_steal_coin_pre;
	int HP_pc_steal_coin_post;
	int HP_pc_modifybuyvalue_pre;
	int HP_pc_modifybuyvalue_post;
	int HP_pc_modifysellvalue_pre;
	int HP_pc_modifysellvalue_post;
	int HP_pc_follow_pre;
	int HP_pc_follow_post;
	int HP_pc_stop_following_pre;
	int HP_pc_stop_following_post;
	int HP_pc_maxbaselv_pre;
	int HP_pc_maxbaselv_post;
	int HP_pc_maxjoblv_pre;
	int HP_pc_maxjoblv_post;
	int HP_pc_checkbaselevelup_pre;
	int HP_pc_checkbaselevelup_post;
	int HP_pc_checkjoblevelup_pre;
	int HP_pc_checkjoblevelup_post;
	int HP_pc_gainexp_pre;
	int HP_pc_gainexp_post;
	int HP_pc_nextbaseexp_pre;
	int HP_pc_nextbaseexp_post;
	int HP_pc_thisbaseexp_pre;
	int HP_pc_thisbaseexp_post;
	int HP_pc_nextjobexp_pre;
	int HP_pc_nextjobexp_post;
	int HP_pc_thisjobexp_pre;
	int HP_pc_thisjobexp_post;
	int HP_pc_gets_status_point_pre;
	int HP_pc_gets_status_point_post;
	int HP_pc_need_status_point_pre;
	int HP_pc_need_status_point_post;
	int HP_pc_maxparameterincrease_pre;
	int HP_pc_maxparameterincrease_post;
	int HP_pc_statusup_pre;
	int HP_pc_statusup_post;
	int HP_pc_statusup2_pre;
	int HP_pc_statusup2_post;
	int HP_pc_skillup_pre;
	int HP_pc_skillup_post;
	int HP_pc_allskillup_pre;
	int HP_pc_allskillup_post;
	int HP_pc_resetlvl_pre;
	int HP_pc_resetlvl_post;
	int HP_pc_resetstate_pre;
	int HP_pc_resetstate_post;
	int HP_pc_resetskill_pre;
	int HP_pc_resetskill_post;
	int HP_pc_resetfeel_pre;
	int HP_pc_resetfeel_post;
	int HP_pc_resethate_pre;
	int HP_pc_resethate_post;
	int HP_pc_equipitem_pre;
	int HP_pc_equipitem_post;
	int HP_pc_unequipitem_pre;
	int HP_pc_unequipitem_post;
	int HP_pc_checkitem_pre;
	int HP_pc_checkitem_post;
	int HP_pc_useitem_pre;
	int HP_pc_useitem_post;
	int HP_pc_skillatk_bonus_pre;
	int HP_pc_skillatk_bonus_post;
	int HP_pc_skillheal_bonus_pre;
	int HP_pc_skillheal_bonus_post;
	int HP_pc_skillheal2_bonus_pre;
	int HP_pc_skillheal2_bonus_post;
	int HP_pc_damage_pre;
	int HP_pc_damage_post;
	int HP_pc_dead_pre;
	int HP_pc_dead_post;
	int HP_pc_revive_pre;
	int HP_pc_revive_post;
	int HP_pc_heal_pre;
	int HP_pc_heal_post;
	int HP_pc_itemheal_pre;
	int HP_pc_itemheal_post;
	int HP_pc_percentheal_pre;
	int HP_pc_percentheal_post;
	int HP_pc_jobchange_pre;
	int HP_pc_jobchange_post;
	int HP_pc_setoption_pre;
	int HP_pc_setoption_post;
	int HP_pc_setcart_pre;
	int HP_pc_setcart_post;
	int HP_pc_setfalcon_pre;
	int HP_pc_setfalcon_post;
	int HP_pc_setriding_pre;
	int HP_pc_setriding_post;
	int HP_pc_setmadogear_pre;
	int HP_pc_setmadogear_post;
	int HP_pc_changelook_pre;
	int HP_pc_changelook_post;
	int HP_pc_equiplookall_pre;
	int HP_pc_equiplookall_post;
	int HP_pc_readparam_pre;
	int HP_pc_readparam_post;
	int HP_pc_setparam_pre;
	int HP_pc_setparam_post;
	int HP_pc_readreg_pre;
	int HP_pc_readreg_post;
	int HP_pc_setreg_pre;
	int HP_pc_setreg_post;
	int HP_pc_readregstr_pre;
	int HP_pc_readregstr_post;
	int HP_pc_setregstr_pre;
	int HP_pc_setregstr_post;
	int HP_pc_readregistry_pre;
	int HP_pc_readregistry_post;
	int HP_pc_setregistry_pre;
	int HP_pc_setregistry_post;
	int HP_pc_readregistry_str_pre;
	int HP_pc_readregistry_str_post;
	int HP_pc_setregistry_str_pre;
	int HP_pc_setregistry_str_post;
	int HP_pc_addeventtimer_pre;
	int HP_pc_addeventtimer_post;
	int HP_pc_deleventtimer_pre;
	int HP_pc_deleventtimer_post;
	int HP_pc_cleareventtimer_pre;
	int HP_pc_cleareventtimer_post;
	int HP_pc_addeventtimercount_pre;
	int HP_pc_addeventtimercount_post;
	int HP_pc_calc_pvprank_pre;
	int HP_pc_calc_pvprank_post;
	int HP_pc_calc_pvprank_timer_pre;
	int HP_pc_calc_pvprank_timer_post;
	int HP_pc_ismarried_pre;
	int HP_pc_ismarried_post;
	int HP_pc_marriage_pre;
	int HP_pc_marriage_post;
	int HP_pc_divorce_pre;
	int HP_pc_divorce_post;
	int HP_pc_get_partner_pre;
	int HP_pc_get_partner_post;
	int HP_pc_get_father_pre;
	int HP_pc_get_father_post;
	int HP_pc_get_mother_pre;
	int HP_pc_get_mother_post;
	int HP_pc_get_child_pre;
	int HP_pc_get_child_post;
	int HP_pc_bleeding_pre;
	int HP_pc_bleeding_post;
	int HP_pc_regen_pre;
	int HP_pc_regen_post;
	int HP_pc_setstand_pre;
	int HP_pc_setstand_post;
	int HP_pc_candrop_pre;
	int HP_pc_candrop_post;
	int HP_pc_jobid2mapid_pre;
	int HP_pc_jobid2mapid_post;
	int HP_pc_mapid2jobid_pre;
	int HP_pc_mapid2jobid_post;
	int HP_pc_job_name_pre;
	int HP_pc_job_name_post;
	int HP_pc_setinvincibletimer_pre;
	int HP_pc_setinvincibletimer_post;
	int HP_pc_delinvincibletimer_pre;
	int HP_pc_delinvincibletimer_post;
	int HP_pc_addspiritball_pre;
	int HP_pc_addspiritball_post;
	int HP_pc_delspiritball_pre;
	int HP_pc_delspiritball_post;
	int HP_pc_addfame_pre;
	int HP_pc_addfame_post;
	int HP_pc_famerank_pre;
	int HP_pc_famerank_post;
	int HP_pc_set_hate_mob_pre;
	int HP_pc_set_hate_mob_post;
	int HP_pc_readdb_pre;
	int HP_pc_readdb_post;
	int HP_pc_map_day_timer_pre;
	int HP_pc_map_day_timer_post;
	int HP_pc_map_night_timer_pre;
	int HP_pc_map_night_timer_post;
	int HP_pc_inventory_rentals_pre;
	int HP_pc_inventory_rentals_post;
	int HP_pc_inventory_rental_clear_pre;
	int HP_pc_inventory_rental_clear_post;
	int HP_pc_inventory_rental_add_pre;
	int HP_pc_inventory_rental_add_post;
	int HP_pc_disguise_pre;
	int HP_pc_disguise_post;
	int HP_pc_isautolooting_pre;
	int HP_pc_isautolooting_post;
	int HP_pc_overheat_pre;
	int HP_pc_overheat_post;
	int HP_pc_banding_pre;
	int HP_pc_banding_post;
	int HP_pc_itemcd_do_pre;
	int HP_pc_itemcd_do_post;
	int HP_pc_load_combo_pre;
	int HP_pc_load_combo_post;
	int HP_pc_add_charm_pre;
	int HP_pc_add_charm_post;
	int HP_pc_del_charm_pre;
	int HP_pc_del_charm_post;
	int HP_pc_baselevelchanged_pre;
	int HP_pc_baselevelchanged_post;
	int HP_pc_level_penalty_mod_pre;
	int HP_pc_level_penalty_mod_post;
	int HP_pc_calc_skillpoint_pre;
	int HP_pc_calc_skillpoint_post;
	int HP_pc_invincible_timer_pre;
	int HP_pc_invincible_timer_post;
	int HP_pc_spiritball_timer_pre;
	int HP_pc_spiritball_timer_post;
	int HP_pc_check_banding_pre;
	int HP_pc_check_banding_post;
	int HP_pc_inventory_rental_end_pre;
	int HP_pc_inventory_rental_end_post;
	int HP_pc_check_skilltree_pre;
	int HP_pc_check_skilltree_post;
	int HP_pc_bonus_autospell_pre;
	int HP_pc_bonus_autospell_post;
	int HP_pc_bonus_autospell_onskill_pre;
	int HP_pc_bonus_autospell_onskill_post;
	int HP_pc_bonus_addeff_pre;
	int HP_pc_bonus_addeff_post;
	int HP_pc_bonus_addeff_onskill_pre;
	int HP_pc_bonus_addeff_onskill_post;
	int HP_pc_bonus_item_drop_pre;
	int HP_pc_bonus_item_drop_post;
	int HP_pc_calcexp_pre;
	int HP_pc_calcexp_post;
	int HP_pc_respawn_timer_pre;
	int HP_pc_respawn_timer_post;
	int HP_pc_jobchange_killclone_pre;
	int HP_pc_jobchange_killclone_post;
	int HP_pc_getstat_pre;
	int HP_pc_getstat_post;
	int HP_pc_setstat_pre;
	int HP_pc_setstat_post;
	int HP_pc_eventtimer_pre;
	int HP_pc_eventtimer_post;
	int HP_pc_daynight_timer_sub_pre;
	int HP_pc_daynight_timer_sub_post;
	int HP_pc_charm_timer_pre;
	int HP_pc_charm_timer_post;
	int HP_pc_readdb_levelpenalty_pre;
	int HP_pc_readdb_levelpenalty_post;
	int HP_pc_autosave_pre;
	int HP_pc_autosave_post;
	int HP_pc_follow_timer_pre;
	int HP_pc_follow_timer_post;
	int HP_pc_read_skill_tree_pre;
	int HP_pc_read_skill_tree_post;
	int HP_pc_isUseitem_pre;
	int HP_pc_isUseitem_post;
	int HP_pc_show_steal_pre;
	int HP_pc_show_steal_post;
	int HP_pc_checkcombo_pre;
	int HP_pc_checkcombo_post;
	int HP_pc_calcweapontype_pre;
	int HP_pc_calcweapontype_post;
	int HP_pc_removecombo_pre;
	int HP_pc_removecombo_post;
	int HP_pc_bank_deposit_pre;
	int HP_pc_bank_deposit_post;
	int HP_pc_bank_withdraw_pre;
	int HP_pc_bank_withdraw_post;
	int HP_pc_rental_expire_pre;
	int HP_pc_rental_expire_post;
	int HP_pc_scdata_received_pre;
	int HP_pc_scdata_received_post;
	int HP_pc_bound_clear_pre;
	int HP_pc_bound_clear_post;
	int HP_pc_expiration_timer_pre;
	int HP_pc_expiration_timer_post;
	int HP_pc_global_expiration_timer_pre;
	int HP_pc_global_expiration_timer_post;
	int HP_pc_expire_check_pre;
	int HP_pc_expire_check_post;
	int HP_pc_autotrade_load_pre;
	int HP_pc_autotrade_load_post;
	int HP_pc_autotrade_update_pre;
	int HP_pc_autotrade_update_post;
	int HP_pc_autotrade_start_pre;
	int HP_pc_autotrade_start_post;
	int HP_pc_autotrade_prepare_pre;
	int HP_pc_autotrade_prepare_post;
	int HP_pc_autotrade_populate_pre;
	int HP_pc_autotrade_populate_post;
	int HP_pet_init_pre;
	int HP_pet_init_post;
	int HP_pet_final_pre;
	int HP_pet_final_post;
	int HP_pet_hungry_val_pre;
	int HP_pet_hungry_val_post;
	int HP_pet_set_intimate_pre;
	int HP_pet_set_intimate_post;
	int HP_pet_create_egg_pre;
	int HP_pet_create_egg_post;
	int HP_pet_unlocktarget_pre;
	int HP_pet_unlocktarget_post;
	int HP_pet_attackskill_pre;
	int HP_pet_attackskill_post;
	int HP_pet_target_check_pre;
	int HP_pet_target_check_post;
	int HP_pet_sc_check_pre;
	int HP_pet_sc_check_post;
	int HP_pet_hungry_pre;
	int HP_pet_hungry_post;
	int HP_pet_search_petDB_index_pre;
	int HP_pet_search_petDB_index_post;
	int HP_pet_hungry_timer_delete_pre;
	int HP_pet_hungry_timer_delete_post;
	int HP_pet_performance_pre;
	int HP_pet_performance_post;
	int HP_pet_return_egg_pre;
	int HP_pet_return_egg_post;
	int HP_pet_data_init_pre;
	int HP_pet_data_init_post;
	int HP_pet_birth_process_pre;
	int HP_pet_birth_process_post;
	int HP_pet_recv_petdata_pre;
	int HP_pet_recv_petdata_post;
	int HP_pet_select_egg_pre;
	int HP_pet_select_egg_post;
	int HP_pet_catch_process1_pre;
	int HP_pet_catch_process1_post;
	int HP_pet_catch_process2_pre;
	int HP_pet_catch_process2_post;
	int HP_pet_get_egg_pre;
	int HP_pet_get_egg_post;
	int HP_pet_unequipitem_pre;
	int HP_pet_unequipitem_post;
	int HP_pet_food_pre;
	int HP_pet_food_post;
	int HP_pet_ai_sub_hard_lootsearch_pre;
	int HP_pet_ai_sub_hard_lootsearch_post;
	int HP_pet_menu_pre;
	int HP_pet_menu_post;
	int HP_pet_change_name_pre;
	int HP_pet_change_name_post;
	int HP_pet_change_name_ack_pre;
	int HP_pet_change_name_ack_post;
	int HP_pet_equipitem_pre;
	int HP_pet_equipitem_post;
	int HP_pet_randomwalk_pre;
	int HP_pet_randomwalk_post;
	int HP_pet_ai_sub_hard_pre;
	int HP_pet_ai_sub_hard_post;
	int HP_pet_ai_sub_foreachclient_pre;
	int HP_pet_ai_sub_foreachclient_post;
	int HP_pet_ai_hard_pre;
	int HP_pet_ai_hard_post;
	int HP_pet_delay_item_drop_pre;
	int HP_pet_delay_item_drop_post;
	int HP_pet_lootitem_drop_pre;
	int HP_pet_lootitem_drop_post;
	int HP_pet_skill_bonus_timer_pre;
	int HP_pet_skill_bonus_timer_post;
	int HP_pet_recovery_timer_pre;
	int HP_pet_recovery_timer_post;
	int HP_pet_heal_timer_pre;
	int HP_pet_heal_timer_post;
	int HP_pet_skill_support_timer_pre;
	int HP_pet_skill_support_timer_post;
	int HP_pet_read_db_pre;
	int HP_pet_read_db_post;
	int HP_quest_init_pre;
	int HP_quest_init_post;
	int HP_quest_final_pre;
	int HP_quest_final_post;
	int HP_quest_reload_pre;
	int HP_quest_reload_post;
	int HP_quest_db_pre;
	int HP_quest_db_post;
	int HP_quest_pc_login_pre;
	int HP_quest_pc_login_post;
	int HP_quest_add_pre;
	int HP_quest_add_post;
	int HP_quest_change_pre;
	int HP_quest_change_post;
	int HP_quest_delete_pre;
	int HP_quest_delete_post;
	int HP_quest_update_objective_sub_pre;
	int HP_quest_update_objective_sub_post;
	int HP_quest_update_objective_pre;
	int HP_quest_update_objective_post;
	int HP_quest_update_status_pre;
	int HP_quest_update_status_post;
	int HP_quest_check_pre;
	int HP_quest_check_post;
	int HP_quest_clear_pre;
	int HP_quest_clear_post;
	int HP_quest_read_db_pre;
	int HP_quest_read_db_post;
	int HP_script_init_pre;
	int HP_script_init_post;
	int HP_script_final_pre;
	int HP_script_final_post;
	int HP_script_reload_pre;
	int HP_script_reload_post;
	int HP_script_parse_pre;
	int HP_script_parse_post;
	int HP_script_add_builtin_pre;
	int HP_script_add_builtin_post;
	int HP_script_parse_builtin_pre;
	int HP_script_parse_builtin_post;
	int HP_script_parse_subexpr_pre;
	int HP_script_parse_subexpr_post;
	int HP_script_skip_space_pre;
	int HP_script_skip_space_post;
	int HP_script_error_pre;
	int HP_script_error_post;
	int HP_script_warning_pre;
	int HP_script_warning_post;
	int HP_script_addScript_pre;
	int HP_script_addScript_post;
	int HP_script_conv_num_pre;
	int HP_script_conv_num_post;
	int HP_script_conv_str_pre;
	int HP_script_conv_str_post;
	int HP_script_rid2sd_pre;
	int HP_script_rid2sd_post;
	int HP_script_detach_rid_pre;
	int HP_script_detach_rid_post;
	int HP_script_push_val_pre;
	int HP_script_push_val_post;
	int HP_script_get_val_pre;
	int HP_script_get_val_post;
	int HP_script_get_val2_pre;
	int HP_script_get_val2_post;
	int HP_script_push_str_pre;
	int HP_script_push_str_post;
	int HP_script_push_copy_pre;
	int HP_script_push_copy_post;
	int HP_script_pop_stack_pre;
	int HP_script_pop_stack_post;
	int HP_script_set_constant_pre;
	int HP_script_set_constant_post;
	int HP_script_set_constant2_pre;
	int HP_script_set_constant2_post;
	int HP_script_get_constant_pre;
	int HP_script_get_constant_post;
	int HP_script_label_add_pre;
	int HP_script_label_add_post;
	int HP_script_run_pre;
	int HP_script_run_post;
	int HP_script_run_main_pre;
	int HP_script_run_main_post;
	int HP_script_run_timer_pre;
	int HP_script_run_timer_post;
	int HP_script_set_var_pre;
	int HP_script_set_var_post;
	int HP_script_stop_instances_pre;
	int HP_script_stop_instances_post;
	int HP_script_free_code_pre;
	int HP_script_free_code_post;
	int HP_script_free_vars_pre;
	int HP_script_free_vars_post;
	int HP_script_alloc_state_pre;
	int HP_script_alloc_state_post;
	int HP_script_free_state_pre;
	int HP_script_free_state_post;
	int HP_script_run_autobonus_pre;
	int HP_script_run_autobonus_post;
	int HP_script_cleararray_pc_pre;
	int HP_script_cleararray_pc_post;
	int HP_script_setarray_pc_pre;
	int HP_script_setarray_pc_post;
	int HP_script_config_read_pre;
	int HP_script_config_read_post;
	int HP_script_add_str_pre;
	int HP_script_add_str_post;
	int HP_script_get_str_pre;
	int HP_script_get_str_post;
	int HP_script_search_str_pre;
	int HP_script_search_str_post;
	int HP_script_setd_sub_pre;
	int HP_script_setd_sub_post;
	int HP_script_attach_state_pre;
	int HP_script_attach_state_post;
	int HP_script_queue_pre;
	int HP_script_queue_post;
	int HP_script_queue_add_pre;
	int HP_script_queue_add_post;
	int HP_script_queue_del_pre;
	int HP_script_queue_del_post;
	int HP_script_queue_remove_pre;
	int HP_script_queue_remove_post;
	int HP_script_queue_create_pre;
	int HP_script_queue_create_post;
	int HP_script_queue_clear_pre;
	int HP_script_queue_clear_post;
	int HP_script_parse_curly_close_pre;
	int HP_script_parse_curly_close_post;
	int HP_script_parse_syntax_close_pre;
	int HP_script_parse_syntax_close_post;
	int HP_script_parse_syntax_close_sub_pre;
	int HP_script_parse_syntax_close_sub_post;
	int HP_script_parse_syntax_pre;
	int HP_script_parse_syntax_post;
	int HP_script_get_com_pre;
	int HP_script_get_com_post;
	int HP_script_get_num_pre;
	int HP_script_get_num_post;
	int HP_script_op2name_pre;
	int HP_script_op2name_post;
	int HP_script_reportsrc_pre;
	int HP_script_reportsrc_post;
	int HP_script_reportdata_pre;
	int HP_script_reportdata_post;
	int HP_script_reportfunc_pre;
	int HP_script_reportfunc_post;
	int HP_script_disp_warning_message_pre;
	int HP_script_disp_warning_message_post;
	int HP_script_check_event_pre;
	int HP_script_check_event_post;
	int HP_script_calc_hash_pre;
	int HP_script_calc_hash_post;
	int HP_script_addb_pre;
	int HP_script_addb_post;
	int HP_script_addc_pre;
	int HP_script_addc_post;
	int HP_script_addi_pre;
	int HP_script_addi_post;
	int HP_script_addl_pre;
	int HP_script_addl_post;
	int HP_script_set_label_pre;
	int HP_script_set_label_post;
	int HP_script_skip_word_pre;
	int HP_script_skip_word_post;
	int HP_script_add_word_pre;
	int HP_script_add_word_post;
	int HP_script_parse_callfunc_pre;
	int HP_script_parse_callfunc_post;
	int HP_script_parse_nextline_pre;
	int HP_script_parse_nextline_post;
	int HP_script_parse_variable_pre;
	int HP_script_parse_variable_post;
	int HP_script_parse_simpleexpr_pre;
	int HP_script_parse_simpleexpr_post;
	int HP_script_parse_expr_pre;
	int HP_script_parse_expr_post;
	int HP_script_parse_line_pre;
	int HP_script_parse_line_post;
	int HP_script_read_constdb_pre;
	int HP_script_read_constdb_post;
	int HP_script_print_line_pre;
	int HP_script_print_line_post;
	int HP_script_errorwarning_sub_pre;
	int HP_script_errorwarning_sub_post;
	int HP_script_set_reg_pre;
	int HP_script_set_reg_post;
	int HP_script_stack_expand_pre;
	int HP_script_stack_expand_post;
	int HP_script_push_retinfo_pre;
	int HP_script_push_retinfo_post;
	int HP_script_op_3_pre;
	int HP_script_op_3_post;
	int HP_script_op_2str_pre;
	int HP_script_op_2str_post;
	int HP_script_op_2num_pre;
	int HP_script_op_2num_post;
	int HP_script_op_2_pre;
	int HP_script_op_2_post;
	int HP_script_op_1_pre;
	int HP_script_op_1_post;
	int HP_script_check_buildin_argtype_pre;
	int HP_script_check_buildin_argtype_post;
	int HP_script_detach_state_pre;
	int HP_script_detach_state_post;
	int HP_script_db_free_code_sub_pre;
	int HP_script_db_free_code_sub_post;
	int HP_script_add_autobonus_pre;
	int HP_script_add_autobonus_post;
	int HP_script_menu_countoptions_pre;
	int HP_script_menu_countoptions_post;
	int HP_script_buildin_areawarp_sub_pre;
	int HP_script_buildin_areawarp_sub_post;
	int HP_script_buildin_areapercentheal_sub_pre;
	int HP_script_buildin_areapercentheal_sub_post;
	int HP_script_buildin_delitem_delete_pre;
	int HP_script_buildin_delitem_delete_post;
	int HP_script_buildin_delitem_search_pre;
	int HP_script_buildin_delitem_search_post;
	int HP_script_buildin_killmonster_sub_strip_pre;
	int HP_script_buildin_killmonster_sub_strip_post;
	int HP_script_buildin_killmonster_sub_pre;
	int HP_script_buildin_killmonster_sub_post;
	int HP_script_buildin_killmonsterall_sub_strip_pre;
	int HP_script_buildin_killmonsterall_sub_strip_post;
	int HP_script_buildin_killmonsterall_sub_pre;
	int HP_script_buildin_killmonsterall_sub_post;
	int HP_script_buildin_announce_sub_pre;
	int HP_script_buildin_announce_sub_post;
	int HP_script_buildin_getareausers_sub_pre;
	int HP_script_buildin_getareausers_sub_post;
	int HP_script_buildin_getareadropitem_sub_pre;
	int HP_script_buildin_getareadropitem_sub_post;
	int HP_script_mapflag_pvp_sub_pre;
	int HP_script_mapflag_pvp_sub_post;
	int HP_script_buildin_pvpoff_sub_pre;
	int HP_script_buildin_pvpoff_sub_post;
	int HP_script_buildin_maprespawnguildid_sub_pc_pre;
	int HP_script_buildin_maprespawnguildid_sub_pc_post;
	int HP_script_buildin_maprespawnguildid_sub_mob_pre;
	int HP_script_buildin_maprespawnguildid_sub_mob_post;
	int HP_script_buildin_mobcount_sub_pre;
	int HP_script_buildin_mobcount_sub_post;
	int HP_script_playbgm_sub_pre;
	int HP_script_playbgm_sub_post;
	int HP_script_playbgm_foreachpc_sub_pre;
	int HP_script_playbgm_foreachpc_sub_post;
	int HP_script_soundeffect_sub_pre;
	int HP_script_soundeffect_sub_post;
	int HP_script_buildin_query_sql_sub_pre;
	int HP_script_buildin_query_sql_sub_post;
	int HP_script_buildin_instance_warpall_sub_pre;
	int HP_script_buildin_instance_warpall_sub_post;
	int HP_script_buildin_mobuseskill_sub_pre;
	int HP_script_buildin_mobuseskill_sub_post;
	int HP_script_cleanfloor_sub_pre;
	int HP_script_cleanfloor_sub_post;
	int HP_script_run_func_pre;
	int HP_script_run_func_post;
	int HP_script_getfuncname_pre;
	int HP_script_getfuncname_post;
	int HP_script_calc_hash_ci_pre;
	int HP_script_calc_hash_ci_post;
	int HP_script_array_src_pre;
	int HP_script_array_src_post;
	int HP_script_array_update_pre;
	int HP_script_array_update_post;
	int HP_script_array_delete_pre;
	int HP_script_array_delete_post;
	int HP_script_array_remove_member_pre;
	int HP_script_array_remove_member_post;
	int HP_script_array_add_member_pre;
	int HP_script_array_add_member_post;
	int HP_script_array_size_pre;
	int HP_script_array_size_post;
	int HP_script_array_highest_key_pre;
	int HP_script_array_highest_key_post;
	int HP_script_array_free_db_pre;
	int HP_script_array_free_db_post;
	int HP_script_array_ensure_zero_pre;
	int HP_script_array_ensure_zero_post;
	int HP_script_reg_destroy_single_pre;
	int HP_script_reg_destroy_single_post;
	int HP_script_reg_destroy_pre;
	int HP_script_reg_destroy_post;
	int HP_script_generic_ui_array_expand_pre;
	int HP_script_generic_ui_array_expand_post;
	int HP_script_array_cpy_list_pre;
	int HP_script_array_cpy_list_post;
	int HP_script_hardcoded_constants_pre;
	int HP_script_hardcoded_constants_post;
	int HP_script_mapindexname2id_pre;
	int HP_script_mapindexname2id_post;
	int HP_searchstore_open_pre;
	int HP_searchstore_open_post;
	int HP_searchstore_query_pre;
	int HP_searchstore_query_post;
	int HP_searchstore_querynext_pre;
	int HP_searchstore_querynext_post;
	int HP_searchstore_next_pre;
	int HP_searchstore_next_post;
	int HP_searchstore_clear_pre;
	int HP_searchstore_clear_post;
	int HP_searchstore_close_pre;
	int HP_searchstore_close_post;
	int HP_searchstore_click_pre;
	int HP_searchstore_click_post;
	int HP_searchstore_queryremote_pre;
	int HP_searchstore_queryremote_post;
	int HP_searchstore_clearremote_pre;
	int HP_searchstore_clearremote_post;
	int HP_searchstore_result_pre;
	int HP_searchstore_result_post;
	int HP_skill_init_pre;
	int HP_skill_init_post;
	int HP_skill_final_pre;
	int HP_skill_final_post;
	int HP_skill_reload_pre;
	int HP_skill_reload_post;
	int HP_skill_read_db_pre;
	int HP_skill_read_db_post;
	int HP_skill_get_index_pre;
	int HP_skill_get_index_post;
	int HP_skill_get_type_pre;
	int HP_skill_get_type_post;
	int HP_skill_get_hit_pre;
	int HP_skill_get_hit_post;
	int HP_skill_get_inf_pre;
	int HP_skill_get_inf_post;
	int HP_skill_get_ele_pre;
	int HP_skill_get_ele_post;
	int HP_skill_get_nk_pre;
	int HP_skill_get_nk_post;
	int HP_skill_get_max_pre;
	int HP_skill_get_max_post;
	int HP_skill_get_range_pre;
	int HP_skill_get_range_post;
	int HP_skill_get_range2_pre;
	int HP_skill_get_range2_post;
	int HP_skill_get_splash_pre;
	int HP_skill_get_splash_post;
	int HP_skill_get_hp_pre;
	int HP_skill_get_hp_post;
	int HP_skill_get_mhp_pre;
	int HP_skill_get_mhp_post;
	int HP_skill_get_sp_pre;
	int HP_skill_get_sp_post;
	int HP_skill_get_state_pre;
	int HP_skill_get_state_post;
	int HP_skill_get_spiritball_pre;
	int HP_skill_get_spiritball_post;
	int HP_skill_get_zeny_pre;
	int HP_skill_get_zeny_post;
	int HP_skill_get_num_pre;
	int HP_skill_get_num_post;
	int HP_skill_get_cast_pre;
	int HP_skill_get_cast_post;
	int HP_skill_get_delay_pre;
	int HP_skill_get_delay_post;
	int HP_skill_get_walkdelay_pre;
	int HP_skill_get_walkdelay_post;
	int HP_skill_get_time_pre;
	int HP_skill_get_time_post;
	int HP_skill_get_time2_pre;
	int HP_skill_get_time2_post;
	int HP_skill_get_castnodex_pre;
	int HP_skill_get_castnodex_post;
	int HP_skill_get_delaynodex_pre;
	int HP_skill_get_delaynodex_post;
	int HP_skill_get_castdef_pre;
	int HP_skill_get_castdef_post;
	int HP_skill_get_weapontype_pre;
	int HP_skill_get_weapontype_post;
	int HP_skill_get_ammotype_pre;
	int HP_skill_get_ammotype_post;
	int HP_skill_get_ammo_qty_pre;
	int HP_skill_get_ammo_qty_post;
	int HP_skill_get_unit_id_pre;
	int HP_skill_get_unit_id_post;
	int HP_skill_get_inf2_pre;
	int HP_skill_get_inf2_post;
	int HP_skill_get_castcancel_pre;
	int HP_skill_get_castcancel_post;
	int HP_skill_get_maxcount_pre;
	int HP_skill_get_maxcount_post;
	int HP_skill_get_blewcount_pre;
	int HP_skill_get_blewcount_post;
	int HP_skill_get_unit_flag_pre;
	int HP_skill_get_unit_flag_post;
	int HP_skill_get_unit_target_pre;
	int HP_skill_get_unit_target_post;
	int HP_skill_get_unit_interval_pre;
	int HP_skill_get_unit_interval_post;
	int HP_skill_get_unit_bl_target_pre;
	int HP_skill_get_unit_bl_target_post;
	int HP_skill_get_unit_layout_type_pre;
	int HP_skill_get_unit_layout_type_post;
	int HP_skill_get_unit_range_pre;
	int HP_skill_get_unit_range_post;
	int HP_skill_get_cooldown_pre;
	int HP_skill_get_cooldown_post;
	int HP_skill_tree_get_max_pre;
	int HP_skill_tree_get_max_post;
	int HP_skill_get_name_pre;
	int HP_skill_get_name_post;
	int HP_skill_get_desc_pre;
	int HP_skill_get_desc_post;
	int HP_skill_chk_pre;
	int HP_skill_chk_post;
	int HP_skill_get_casttype_pre;
	int HP_skill_get_casttype_post;
	int HP_skill_get_casttype2_pre;
	int HP_skill_get_casttype2_post;
	int HP_skill_name2id_pre;
	int HP_skill_name2id_post;
	int HP_skill_isammotype_pre;
	int HP_skill_isammotype_post;
	int HP_skill_castend_id_pre;
	int HP_skill_castend_id_post;
	int HP_skill_castend_pos_pre;
	int HP_skill_castend_pos_post;
	int HP_skill_castend_map_pre;
	int HP_skill_castend_map_post;
	int HP_skill_cleartimerskill_pre;
	int HP_skill_cleartimerskill_post;
	int HP_skill_addtimerskill_pre;
	int HP_skill_addtimerskill_post;
	int HP_skill_additional_effect_pre;
	int HP_skill_additional_effect_post;
	int HP_skill_counter_additional_effect_pre;
	int HP_skill_counter_additional_effect_post;
	int HP_skill_blown_pre;
	int HP_skill_blown_post;
	int HP_skill_break_equip_pre;
	int HP_skill_break_equip_post;
	int HP_skill_strip_equip_pre;
	int HP_skill_strip_equip_post;
	int HP_skill_id2group_pre;
	int HP_skill_id2group_post;
	int HP_skill_unitsetting_pre;
	int HP_skill_unitsetting_post;
	int HP_skill_initunit_pre;
	int HP_skill_initunit_post;
	int HP_skill_delunit_pre;
	int HP_skill_delunit_post;
	int HP_skill_init_unitgroup_pre;
	int HP_skill_init_unitgroup_post;
	int HP_skill_del_unitgroup_pre;
	int HP_skill_del_unitgroup_post;
	int HP_skill_clear_unitgroup_pre;
	int HP_skill_clear_unitgroup_post;
	int HP_skill_clear_group_pre;
	int HP_skill_clear_group_post;
	int HP_skill_unit_onplace_pre;
	int HP_skill_unit_onplace_post;
	int HP_skill_unit_ondamaged_pre;
	int HP_skill_unit_ondamaged_post;
	int HP_skill_cast_fix_pre;
	int HP_skill_cast_fix_post;
	int HP_skill_cast_fix_sc_pre;
	int HP_skill_cast_fix_sc_post;
	int HP_skill_vf_cast_fix_pre;
	int HP_skill_vf_cast_fix_post;
	int HP_skill_delay_fix_pre;
	int HP_skill_delay_fix_post;
	int HP_skill_check_condition_castbegin_pre;
	int HP_skill_check_condition_castbegin_post;
	int HP_skill_check_condition_castend_pre;
	int HP_skill_check_condition_castend_post;
	int HP_skill_consume_requirement_pre;
	int HP_skill_consume_requirement_post;
	int HP_skill_get_requirement_pre;
	int HP_skill_get_requirement_post;
	int HP_skill_check_pc_partner_pre;
	int HP_skill_check_pc_partner_post;
	int HP_skill_unit_move_pre;
	int HP_skill_unit_move_post;
	int HP_skill_unit_onleft_pre;
	int HP_skill_unit_onleft_post;
	int HP_skill_unit_onout_pre;
	int HP_skill_unit_onout_post;
	int HP_skill_unit_move_unit_group_pre;
	int HP_skill_unit_move_unit_group_post;
	int HP_skill_sit_pre;
	int HP_skill_sit_post;
	int HP_skill_brandishspear_pre;
	int HP_skill_brandishspear_post;
	int HP_skill_repairweapon_pre;
	int HP_skill_repairweapon_post;
	int HP_skill_identify_pre;
	int HP_skill_identify_post;
	int HP_skill_weaponrefine_pre;
	int HP_skill_weaponrefine_post;
	int HP_skill_autospell_pre;
	int HP_skill_autospell_post;
	int HP_skill_calc_heal_pre;
	int HP_skill_calc_heal_post;
	int HP_skill_check_cloaking_pre;
	int HP_skill_check_cloaking_post;
	int HP_skill_enchant_elemental_end_pre;
	int HP_skill_enchant_elemental_end_post;
	int HP_skill_not_ok_pre;
	int HP_skill_not_ok_post;
	int HP_skill_not_ok_hom_pre;
	int HP_skill_not_ok_hom_post;
	int HP_skill_not_ok_mercenary_pre;
	int HP_skill_not_ok_mercenary_post;
	int HP_skill_chastle_mob_changetarget_pre;
	int HP_skill_chastle_mob_changetarget_post;
	int HP_skill_can_produce_mix_pre;
	int HP_skill_can_produce_mix_post;
	int HP_skill_produce_mix_pre;
	int HP_skill_produce_mix_post;
	int HP_skill_arrow_create_pre;
	int HP_skill_arrow_create_post;
	int HP_skill_castend_nodamage_id_pre;
	int HP_skill_castend_nodamage_id_post;
	int HP_skill_castend_damage_id_pre;
	int HP_skill_castend_damage_id_post;
	int HP_skill_castend_pos2_pre;
	int HP_skill_castend_pos2_post;
	int HP_skill_blockpc_start_pre;
	int HP_skill_blockpc_start_post;
	int HP_skill_blockhomun_start_pre;
	int HP_skill_blockhomun_start_post;
	int HP_skill_blockmerc_start_pre;
	int HP_skill_blockmerc_start_post;
	int HP_skill_attack_pre;
	int HP_skill_attack_post;
	int HP_skill_attack_area_pre;
	int HP_skill_attack_area_post;
	int HP_skill_area_sub_pre;
	int HP_skill_area_sub_post;
	int HP_skill_area_sub_count_pre;
	int HP_skill_area_sub_count_post;
	int HP_skill_check_unit_range_pre;
	int HP_skill_check_unit_range_post;
	int HP_skill_check_unit_range_sub_pre;
	int HP_skill_check_unit_range_sub_post;
	int HP_skill_check_unit_range2_pre;
	int HP_skill_check_unit_range2_post;
	int HP_skill_check_unit_range2_sub_pre;
	int HP_skill_check_unit_range2_sub_post;
	int HP_skill_toggle_magicpower_pre;
	int HP_skill_toggle_magicpower_post;
	int HP_skill_magic_reflect_pre;
	int HP_skill_magic_reflect_post;
	int HP_skill_onskillusage_pre;
	int HP_skill_onskillusage_post;
	int HP_skill_cell_overlap_pre;
	int HP_skill_cell_overlap_post;
	int HP_skill_timerskill_pre;
	int HP_skill_timerskill_post;
	int HP_skill_trap_splash_pre;
	int HP_skill_trap_splash_post;
	int HP_skill_check_condition_mercenary_pre;
	int HP_skill_check_condition_mercenary_post;
	int HP_skill_locate_element_field_pre;
	int HP_skill_locate_element_field_post;
	int HP_skill_graffitiremover_pre;
	int HP_skill_graffitiremover_post;
	int HP_skill_activate_reverberation_pre;
	int HP_skill_activate_reverberation_post;
	int HP_skill_dance_overlap_sub_pre;
	int HP_skill_dance_overlap_sub_post;
	int HP_skill_dance_overlap_pre;
	int HP_skill_dance_overlap_post;
	int HP_skill_get_unit_layout_pre;
	int HP_skill_get_unit_layout_post;
	int HP_skill_frostjoke_scream_pre;
	int HP_skill_frostjoke_scream_post;
	int HP_skill_greed_pre;
	int HP_skill_greed_post;
	int HP_skill_destroy_trap_pre;
	int HP_skill_destroy_trap_post;
	int HP_skill_icewall_block_pre;
	int HP_skill_icewall_block_post;
	int HP_skill_unitgrouptickset_search_pre;
	int HP_skill_unitgrouptickset_search_post;
	int HP_skill_dance_switch_pre;
	int HP_skill_dance_switch_post;
	int HP_skill_check_condition_char_sub_pre;
	int HP_skill_check_condition_char_sub_post;
	int HP_skill_check_condition_mob_master_sub_pre;
	int HP_skill_check_condition_mob_master_sub_post;
	int HP_skill_brandishspear_first_pre;
	int HP_skill_brandishspear_first_post;
	int HP_skill_brandishspear_dir_pre;
	int HP_skill_brandishspear_dir_post;
	int HP_skill_get_fixed_cast_pre;
	int HP_skill_get_fixed_cast_post;
	int HP_skill_sit_count_pre;
	int HP_skill_sit_count_post;
	int HP_skill_sit_in_pre;
	int HP_skill_sit_in_post;
	int HP_skill_sit_out_pre;
	int HP_skill_sit_out_post;
	int HP_skill_unitsetmapcell_pre;
	int HP_skill_unitsetmapcell_post;
	int HP_skill_unit_onplace_timer_pre;
	int HP_skill_unit_onplace_timer_post;
	int HP_skill_unit_effect_pre;
	int HP_skill_unit_effect_post;
	int HP_skill_unit_timer_sub_onplace_pre;
	int HP_skill_unit_timer_sub_onplace_post;
	int HP_skill_unit_move_sub_pre;
	int HP_skill_unit_move_sub_post;
	int HP_skill_blockpc_end_pre;
	int HP_skill_blockpc_end_post;
	int HP_skill_blockhomun_end_pre;
	int HP_skill_blockhomun_end_post;
	int HP_skill_blockmerc_end_pre;
	int HP_skill_blockmerc_end_post;
	int HP_skill_split_atoi_pre;
	int HP_skill_split_atoi_post;
	int HP_skill_unit_timer_pre;
	int HP_skill_unit_timer_post;
	int HP_skill_unit_timer_sub_pre;
	int HP_skill_unit_timer_sub_post;
	int HP_skill_init_unit_layout_pre;
	int HP_skill_init_unit_layout_post;
	int HP_skill_parse_row_skilldb_pre;
	int HP_skill_parse_row_skilldb_post;
	int HP_skill_parse_row_requiredb_pre;
	int HP_skill_parse_row_requiredb_post;
	int HP_skill_parse_row_castdb_pre;
	int HP_skill_parse_row_castdb_post;
	int HP_skill_parse_row_castnodexdb_pre;
	int HP_skill_parse_row_castnodexdb_post;
	int HP_skill_parse_row_unitdb_pre;
	int HP_skill_parse_row_unitdb_post;
	int HP_skill_parse_row_producedb_pre;
	int HP_skill_parse_row_producedb_post;
	int HP_skill_parse_row_createarrowdb_pre;
	int HP_skill_parse_row_createarrowdb_post;
	int HP_skill_parse_row_abradb_pre;
	int HP_skill_parse_row_abradb_post;
	int HP_skill_parse_row_spellbookdb_pre;
	int HP_skill_parse_row_spellbookdb_post;
	int HP_skill_parse_row_magicmushroomdb_pre;
	int HP_skill_parse_row_magicmushroomdb_post;
	int HP_skill_parse_row_reproducedb_pre;
	int HP_skill_parse_row_reproducedb_post;
	int HP_skill_parse_row_improvisedb_pre;
	int HP_skill_parse_row_improvisedb_post;
	int HP_skill_parse_row_changematerialdb_pre;
	int HP_skill_parse_row_changematerialdb_post;
	int HP_skill_usave_add_pre;
	int HP_skill_usave_add_post;
	int HP_skill_usave_trigger_pre;
	int HP_skill_usave_trigger_post;
	int HP_skill_cooldown_load_pre;
	int HP_skill_cooldown_load_post;
	int HP_skill_spellbook_pre;
	int HP_skill_spellbook_post;
	int HP_skill_block_check_pre;
	int HP_skill_block_check_post;
	int HP_skill_detonator_pre;
	int HP_skill_detonator_post;
	int HP_skill_check_camouflage_pre;
	int HP_skill_check_camouflage_post;
	int HP_skill_magicdecoy_pre;
	int HP_skill_magicdecoy_post;
	int HP_skill_poisoningweapon_pre;
	int HP_skill_poisoningweapon_post;
	int HP_skill_select_menu_pre;
	int HP_skill_select_menu_post;
	int HP_skill_elementalanalysis_pre;
	int HP_skill_elementalanalysis_post;
	int HP_skill_changematerial_pre;
	int HP_skill_changematerial_post;
	int HP_skill_get_elemental_type_pre;
	int HP_skill_get_elemental_type_post;
	int HP_skill_cooldown_save_pre;
	int HP_skill_cooldown_save_post;
	int HP_skill_get_new_group_id_pre;
	int HP_skill_get_new_group_id_post;
	int HP_skill_check_shadowform_pre;
	int HP_skill_check_shadowform_post;
	int HP_status_init_pre;
	int HP_status_init_post;
	int HP_status_final_pre;
	int HP_status_final_post;
	int HP_status_get_refine_chance_pre;
	int HP_status_get_refine_chance_post;
	int HP_status_skill2sc_pre;
	int HP_status_skill2sc_post;
	int HP_status_sc2skill_pre;
	int HP_status_sc2skill_post;
	int HP_status_sc2scb_flag_pre;
	int HP_status_sc2scb_flag_post;
	int HP_status_type2relevant_bl_types_pre;
	int HP_status_type2relevant_bl_types_post;
	int HP_status_get_sc_type_pre;
	int HP_status_get_sc_type_post;
	int HP_status_damage_pre;
	int HP_status_damage_post;
	int HP_status_charge_pre;
	int HP_status_charge_post;
	int HP_status_percent_change_pre;
	int HP_status_percent_change_post;
	int HP_status_set_hp_pre;
	int HP_status_set_hp_post;
	int HP_status_set_sp_pre;
	int HP_status_set_sp_post;
	int HP_status_heal_pre;
	int HP_status_heal_post;
	int HP_status_revive_pre;
	int HP_status_revive_post;
	int HP_status_fixed_revive_pre;
	int HP_status_fixed_revive_post;
	int HP_status_get_regen_data_pre;
	int HP_status_get_regen_data_post;
	int HP_status_get_status_data_pre;
	int HP_status_get_status_data_post;
	int HP_status_get_base_status_pre;
	int HP_status_get_base_status_post;
	int HP_status_get_name_pre;
	int HP_status_get_name_post;
	int HP_status_get_class_pre;
	int HP_status_get_class_post;
	int HP_status_get_lv_pre;
	int HP_status_get_lv_post;
	int HP_status_get_def_pre;
	int HP_status_get_def_post;
	int HP_status_get_speed_pre;
	int HP_status_get_speed_post;
	int HP_status_calc_attack_element_pre;
	int HP_status_calc_attack_element_post;
	int HP_status_get_party_id_pre;
	int HP_status_get_party_id_post;
	int HP_status_get_guild_id_pre;
	int HP_status_get_guild_id_post;
	int HP_status_get_emblem_id_pre;
	int HP_status_get_emblem_id_post;
	int HP_status_get_mexp_pre;
	int HP_status_get_mexp_post;
	int HP_status_get_race2_pre;
	int HP_status_get_race2_post;
	int HP_status_get_viewdata_pre;
	int HP_status_get_viewdata_post;
	int HP_status_set_viewdata_pre;
	int HP_status_set_viewdata_post;
	int HP_status_change_init_pre;
	int HP_status_change_init_post;
	int HP_status_get_sc_pre;
	int HP_status_get_sc_post;
	int HP_status_isdead_pre;
	int HP_status_isdead_post;
	int HP_status_isimmune_pre;
	int HP_status_isimmune_post;
	int HP_status_get_sc_def_pre;
	int HP_status_get_sc_def_post;
	int HP_status_change_start_pre;
	int HP_status_change_start_post;
	int HP_status_change_end__pre;
	int HP_status_change_end__post;
	int HP_status_kaahi_heal_timer_pre;
	int HP_status_kaahi_heal_timer_post;
	int HP_status_change_timer_pre;
	int HP_status_change_timer_post;
	int HP_status_change_timer_sub_pre;
	int HP_status_change_timer_sub_post;
	int HP_status_change_clear_pre;
	int HP_status_change_clear_post;
	int HP_status_change_clear_buffs_pre;
	int HP_status_change_clear_buffs_post;
	int HP_status_calc_bl__pre;
	int HP_status_calc_bl__post;
	int HP_status_calc_mob__pre;
	int HP_status_calc_mob__post;
	int HP_status_calc_pet__pre;
	int HP_status_calc_pet__post;
	int HP_status_calc_pc__pre;
	int HP_status_calc_pc__post;
	int HP_status_calc_homunculus__pre;
	int HP_status_calc_homunculus__post;
	int HP_status_calc_mercenary__pre;
	int HP_status_calc_mercenary__post;
	int HP_status_calc_elemental__pre;
	int HP_status_calc_elemental__post;
	int HP_status_calc_misc_pre;
	int HP_status_calc_misc_post;
	int HP_status_calc_regen_pre;
	int HP_status_calc_regen_post;
	int HP_status_calc_regen_rate_pre;
	int HP_status_calc_regen_rate_post;
	int HP_status_check_skilluse_pre;
	int HP_status_check_skilluse_post;
	int HP_status_check_visibility_pre;
	int HP_status_check_visibility_post;
	int HP_status_change_spread_pre;
	int HP_status_change_spread_post;
	int HP_status_calc_def_pre;
	int HP_status_calc_def_post;
	int HP_status_calc_def2_pre;
	int HP_status_calc_def2_post;
	int HP_status_calc_mdef_pre;
	int HP_status_calc_mdef_post;
	int HP_status_calc_mdef2_pre;
	int HP_status_calc_mdef2_post;
	int HP_status_calc_batk_pre;
	int HP_status_calc_batk_post;
	int HP_status_base_matk_pre;
	int HP_status_base_matk_post;
	int HP_status_get_weapon_atk_pre;
	int HP_status_get_weapon_atk_post;
	int HP_status_get_total_mdef_pre;
	int HP_status_get_total_mdef_post;
	int HP_status_get_total_def_pre;
	int HP_status_get_total_def_post;
	int HP_status_get_matk_pre;
	int HP_status_get_matk_post;
	int HP_status_readdb_pre;
	int HP_status_readdb_post;
	int HP_status_initChangeTables_pre;
	int HP_status_initChangeTables_post;
	int HP_status_initDummyData_pre;
	int HP_status_initDummyData_post;
	int HP_status_base_amotion_pc_pre;
	int HP_status_base_amotion_pc_post;
	int HP_status_base_atk_pre;
	int HP_status_base_atk_post;
	int HP_status_calc_sigma_pre;
	int HP_status_calc_sigma_post;
	int HP_status_base_pc_maxhp_pre;
	int HP_status_base_pc_maxhp_post;
	int HP_status_base_pc_maxsp_pre;
	int HP_status_base_pc_maxsp_post;
	int HP_status_calc_npc__pre;
	int HP_status_calc_npc__post;
	int HP_status_calc_str_pre;
	int HP_status_calc_str_post;
	int HP_status_calc_agi_pre;
	int HP_status_calc_agi_post;
	int HP_status_calc_vit_pre;
	int HP_status_calc_vit_post;
	int HP_status_calc_int_pre;
	int HP_status_calc_int_post;
	int HP_status_calc_dex_pre;
	int HP_status_calc_dex_post;
	int HP_status_calc_luk_pre;
	int HP_status_calc_luk_post;
	int HP_status_calc_watk_pre;
	int HP_status_calc_watk_post;
	int HP_status_calc_matk_pre;
	int HP_status_calc_matk_post;
	int HP_status_calc_hit_pre;
	int HP_status_calc_hit_post;
	int HP_status_calc_critical_pre;
	int HP_status_calc_critical_post;
	int HP_status_calc_flee_pre;
	int HP_status_calc_flee_post;
	int HP_status_calc_flee2_pre;
	int HP_status_calc_flee2_post;
	int HP_status_calc_speed_pre;
	int HP_status_calc_speed_post;
	int HP_status_calc_aspd_rate_pre;
	int HP_status_calc_aspd_rate_post;
	int HP_status_calc_dmotion_pre;
	int HP_status_calc_dmotion_post;
	int HP_status_calc_aspd_pre;
	int HP_status_calc_aspd_post;
	int HP_status_calc_fix_aspd_pre;
	int HP_status_calc_fix_aspd_post;
	int HP_status_calc_maxhp_pre;
	int HP_status_calc_maxhp_post;
	int HP_status_calc_maxsp_pre;
	int HP_status_calc_maxsp_post;
	int HP_status_calc_element_pre;
	int HP_status_calc_element_post;
	int HP_status_calc_element_lv_pre;
	int HP_status_calc_element_lv_post;
	int HP_status_calc_mode_pre;
	int HP_status_calc_mode_post;
	int HP_status_calc_ematk_pre;
	int HP_status_calc_ematk_post;
	int HP_status_calc_bl_main_pre;
	int HP_status_calc_bl_main_post;
	int HP_status_display_add_pre;
	int HP_status_display_add_post;
	int HP_status_display_remove_pre;
	int HP_status_display_remove_post;
	int HP_status_natural_heal_pre;
	int HP_status_natural_heal_post;
	int HP_status_natural_heal_timer_pre;
	int HP_status_natural_heal_timer_post;
	int HP_status_readdb_job1_pre;
	int HP_status_readdb_job1_post;
	int HP_status_readdb_job2_pre;
	int HP_status_readdb_job2_post;
	int HP_status_readdb_sizefix_pre;
	int HP_status_readdb_sizefix_post;
	int HP_status_readdb_refine_pre;
	int HP_status_readdb_refine_post;
	int HP_status_readdb_scconfig_pre;
	int HP_status_readdb_scconfig_post;
	int HP_storage_reconnect_pre;
	int HP_storage_reconnect_post;
	int HP_storage_delitem_pre;
	int HP_storage_delitem_post;
	int HP_storage_open_pre;
	int HP_storage_open_post;
	int HP_storage_add_pre;
	int HP_storage_add_post;
	int HP_storage_get_pre;
	int HP_storage_get_post;
	int HP_storage_additem_pre;
	int HP_storage_additem_post;
	int HP_storage_addfromcart_pre;
	int HP_storage_addfromcart_post;
	int HP_storage_gettocart_pre;
	int HP_storage_gettocart_post;
	int HP_storage_close_pre;
	int HP_storage_close_post;
	int HP_storage_pc_quit_pre;
	int HP_storage_pc_quit_post;
	int HP_storage_comp_item_pre;
	int HP_storage_comp_item_post;
	int HP_storage_sortitem_pre;
	int HP_storage_sortitem_post;
	int HP_storage_reconnect_sub_pre;
	int HP_storage_reconnect_sub_post;
	int HP_trade_request_pre;
	int HP_trade_request_post;
	int HP_trade_ack_pre;
	int HP_trade_ack_post;
	int HP_trade_check_impossible_pre;
	int HP_trade_check_impossible_post;
	int HP_trade_check_pre;
	int HP_trade_check_post;
	int HP_trade_additem_pre;
	int HP_trade_additem_post;
	int HP_trade_addzeny_pre;
	int HP_trade_addzeny_post;
	int HP_trade_ok_pre;
	int HP_trade_ok_post;
	int HP_trade_cancel_pre;
	int HP_trade_cancel_post;
	int HP_trade_commit_pre;
	int HP_trade_commit_post;
	int HP_unit_init_pre;
	int HP_unit_init_post;
	int HP_unit_final_pre;
	int HP_unit_final_post;
	int HP_unit_bl2ud_pre;
	int HP_unit_bl2ud_post;
	int HP_unit_bl2ud2_pre;
	int HP_unit_bl2ud2_post;
	int HP_unit_attack_timer_pre;
	int HP_unit_attack_timer_post;
	int HP_unit_walktoxy_timer_pre;
	int HP_unit_walktoxy_timer_post;
	int HP_unit_walktoxy_sub_pre;
	int HP_unit_walktoxy_sub_post;
	int HP_unit_delay_walktoxy_timer_pre;
	int HP_unit_delay_walktoxy_timer_post;
	int HP_unit_walktoxy_pre;
	int HP_unit_walktoxy_post;
	int HP_unit_walktobl_sub_pre;
	int HP_unit_walktobl_sub_post;
	int HP_unit_walktobl_pre;
	int HP_unit_walktobl_post;
	int HP_unit_run_pre;
	int HP_unit_run_post;
	int HP_unit_wugdash_pre;
	int HP_unit_wugdash_post;
	int HP_unit_escape_pre;
	int HP_unit_escape_post;
	int HP_unit_movepos_pre;
	int HP_unit_movepos_post;
	int HP_unit_setdir_pre;
	int HP_unit_setdir_post;
	int HP_unit_getdir_pre;
	int HP_unit_getdir_post;
	int HP_unit_blown_pre;
	int HP_unit_blown_post;
	int HP_unit_warp_pre;
	int HP_unit_warp_post;
	int HP_unit_stop_walking_pre;
	int HP_unit_stop_walking_post;
	int HP_unit_skilluse_id_pre;
	int HP_unit_skilluse_id_post;
	int HP_unit_is_walking_pre;
	int HP_unit_is_walking_post;
	int HP_unit_can_move_pre;
	int HP_unit_can_move_post;
	int HP_unit_resume_running_pre;
	int HP_unit_resume_running_post;
	int HP_unit_set_walkdelay_pre;
	int HP_unit_set_walkdelay_post;
	int HP_unit_skilluse_id2_pre;
	int HP_unit_skilluse_id2_post;
	int HP_unit_skilluse_pos_pre;
	int HP_unit_skilluse_pos_post;
	int HP_unit_skilluse_pos2_pre;
	int HP_unit_skilluse_pos2_post;
	int HP_unit_set_target_pre;
	int HP_unit_set_target_post;
	int HP_unit_stop_attack_pre;
	int HP_unit_stop_attack_post;
	int HP_unit_unattackable_pre;
	int HP_unit_unattackable_post;
	int HP_unit_attack_pre;
	int HP_unit_attack_post;
	int HP_unit_cancel_combo_pre;
	int HP_unit_cancel_combo_post;
	int HP_unit_can_reach_pos_pre;
	int HP_unit_can_reach_pos_post;
	int HP_unit_can_reach_bl_pre;
	int HP_unit_can_reach_bl_post;
	int HP_unit_calc_pos_pre;
	int HP_unit_calc_pos_post;
	int HP_unit_attack_timer_sub_pre;
	int HP_unit_attack_timer_sub_post;
	int HP_unit_skillcastcancel_pre;
	int HP_unit_skillcastcancel_post;
	int HP_unit_dataset_pre;
	int HP_unit_dataset_post;
	int HP_unit_counttargeted_pre;
	int HP_unit_counttargeted_post;
	int HP_unit_fixdamage_pre;
	int HP_unit_fixdamage_post;
	int HP_unit_changeviewsize_pre;
	int HP_unit_changeviewsize_post;
	int HP_unit_remove_map_pre;
	int HP_unit_remove_map_post;
	int HP_unit_remove_map_pc_pre;
	int HP_unit_remove_map_pc_post;
	int HP_unit_free_pc_pre;
	int HP_unit_free_pc_post;
	int HP_unit_free_pre;
	int HP_unit_free_post;
	int HP_vending_init_pre;
	int HP_vending_init_post;
	int HP_vending_final_pre;
	int HP_vending_final_post;
	int HP_vending_close_pre;
	int HP_vending_close_post;
	int HP_vending_open_pre;
	int HP_vending_open_post;
	int HP_vending_list_pre;
	int HP_vending_list_post;
	int HP_vending_purchase_pre;
	int HP_vending_purchase_post;
	int HP_vending_search_pre;
	int HP_vending_search_post;
	int HP_vending_searchall_pre;
	int HP_vending_searchall_post;
} count;

struct {
	struct atcommand_interface atcommand;
	struct battle_interface battle;
	struct battleground_interface bg;
	struct buyingstore_interface buyingstore;
	struct chat_interface chat;
	struct chrif_interface chrif;
	struct clif_interface clif;
	struct duel_interface duel;
	struct elemental_interface elemental;
	struct guild_interface guild;
	struct guild_storage_interface gstorage;
	struct homunculus_interface homun;
	struct instance_interface instance;
	struct intif_interface intif;
	struct irc_bot_interface ircbot;
	struct itemdb_interface itemdb;
	struct log_interface logs;
	struct mail_interface mail;
	struct map_interface map;
	struct mapit_interface mapit;
	struct mapreg_interface mapreg;
	struct mercenary_interface mercenary;
	struct mob_interface mob;
	struct npc_interface npc;
	struct party_interface party;
	struct path_interface path;
	struct pc_groups_interface pcg;
	struct pc_interface pc;
	struct pet_interface pet;
	struct quest_interface quest;
	struct script_interface script;
	struct searchstore_interface searchstore;
	struct skill_interface skill;
	struct status_interface status;
	struct storage_interface storage;
	struct trade_interface trade;
	struct unit_interface unit;
	struct vending_interface vending;
} source;