summaryrefslogblamecommitdiff
path: root/src/common/packets/packets2010_len_re.h
blob: c1adcfd47cc741efc19e2330ea3042abb7faf736 (plain) (tree)
1
2
3
4
5
6
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
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
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166



                                                         

                                               




















                                                                        
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    


                         
                      
                           
                      
                           
                      
                           
                      


                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                      

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     




                     
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     




                    
                    

                 
                    


                         
                    
                           
                    


                 
                    

                 
                    

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                    

                 
                    

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                    

                 
                     

                 
                    

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                     

                 
                    

                 
                    

                 
                    

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                    

                 
                     

                 
                    

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                    

                 
                     

                 
                    

                 
                     

                 
                     

                 
                    

                 
                     

                 
                    

                 
                    

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                    

                 
                    

                 
                    

                 
                      

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    




                           
                     


                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                      

                 
                      

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                    

                 
                      

                 
                     

                 
                    

                 
                    

                 
                    

                 
                     

                 
                    

                 
                    

                 
                     

                 
                     

                 
                    

                 
                    

                 
                      

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                      

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                    

                 
                     

                 
                    

                 
                    

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                      

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                     

                 
                     

                 
                    

                 
                    

                 
                    

                 
                     

                 
                    

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                    

                 
                     

                 
                     

                 
                    

                 
                    

                 
                     

                 
                    

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                      

                 
                      

                 
                     

                 
                     

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                     

                 
                    

                 
                      

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                    

                 
                     

                 
                     

                 
                    

                 
                     

                 
                    

                 
                     

                 
                     

                 
                    

                 
                      

                 
                     

                 
                    

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                    

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                    

                 
                     

                 
                    

                 
                    

                 
                     

                 
                    

                 
                     

                 
                    

                 
                     

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                    

                 
                      

                 
                    

                 
                     

                 
                    

                 
                    

                 
                     


                         
                     
                           
                     


                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                      

                 
                    

                 
                     

                 
                    

                 
                    

                 
                     

                 
                      

                 
                     

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                    

                 
                    

                 
                     

                 
                    

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                    

                 
                    




                           
                     





                           
                     





                           
                     





                           
                     





































































































































































































































































































































































































































































































































































































































































































































                           
                    

                 
                     

                 
                    


                         
                    
                           
                     



                         
                    
                           
                     



                         
                    
                           
                     



                         
                    
                           
                     



                         
                    
                           
                     



                         
                    
                           
                     



                         
                    
                           
                     



                         
                     
                           
                     



                         
                     
                           
                     



                         
                    
                           
                     



                         
                    
                           
                     







































































































































































































































































































































































































































































































































































































































































































































































































































                           
                     

                 
                     













































































































































































































































































































































































































































































































































































































                           
                     

                 
                    

                 
                     

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    


                         
                     
                           
                    


                 
                    

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                    

                 
                    




                           
                    





                           
                    





                           
                     





                           
                    





                           
                    





                           
                    





                           
                    


                 
                    

                 
                    

                 
                      

                 
                    

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                    

                 
                     


                         
                    
                           
                    


                 
                    

                 
                     

                 
                     

                 
                    

                 
                    

                 
                     

                 
                    

                 
                     

                 
                    

                 
                    


                         
                    
                           
                    



                         
                     
                           
                     



                         
                    
                           
                    



                         
                    
                           
                    


                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                     

                 
                    

                 
                     

                 
                     

                 
                    

                 
                    

                 
                     

                 
                     

                 
                     

                 
                    


                         
                    



                         
                    



                         
                     



                         
                     



                         
                    



                         
                     



                         
                    
                           
                     



                         
                     
                           
                    



                         
                     
                           
                    
                           
                    



                         
                    
                           
                    
                           
                     



                         
                    



                         
                    
                           
                     



                         
                     
                           
                    



                         
                     
                           
                     
                           
                    



                         
                    
                           
                     
                           
                    
                           
                    



                         
                     
                           
                    
                           
                    



                         
                     
                           
                    



                         
                     



                         
                    



                         
                     



                         
                     



                         
                    



                         
                    



                         
                     



                         
                    



                         
                     





                           
                    



                         
                    



                         
                     



                         
                     
                           
                    



                         
                     



                         
                    



                         
                     
                           
                     



                         
                     



                         
                     



                         
                     



                         
                    



                         
                    
                           
                    



                         
                     



                         
                    
                           
                    



                         
                    



                         
                     



                         
                    



                         
                     





                           
                     



                         
                     



                         
                    
                           
                     



                         
                    



                         
                    



                         
                    



                         
                     



                         
                    



                         
                     



                         
                     



                         
                     
                           
                     



                         
                    



                         
                     



                         
                     



                         
                     



                         
                    



                         
                    



                         
                    



                         
                     



                         
                    



                         
                     



                         
                     



                         
                    



                         
                     



                         
                     



                         
                     



                         
                     



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    








                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                    



                         
                     



                         
                     



                         
                     



                                        
/**
 * This file is part of Hercules.
 * http://herc.ws - http://github.com/HerculesWS/Hercules
 *
 * Copyright (C) 2018-2019  Hercules Dev Team
 * Copyright (C) 2018-2019  Andrei Karas (4144)
 *
 * Hercules is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef COMMON_PACKETS2010_LEN_RE_H
#define COMMON_PACKETS2010_LEN_RE_H

/* This file is autogenerated, please do not commit manual changes */

// Packet: 0x0064
packetLen(0x0064, 55)

// Packet: 0x0065
packetLen(0x0065, 17)

// Packet: 0x0066
packetLen(0x0066, 3)

// Packet: 0x0067
packetLen(0x0067, 37)

// Packet: 0x0068
packetLen(0x0068, 46)

// Packet: 0x0069
packetLen(0x0069, -1)

// Packet: 0x006a
packetLen(0x006a, 23)

// Packet: 0x006b
packetLen(0x006b, -1)

// Packet: 0x006c
packetLen(0x006c, 3)

// Packet: 0x006d
#if PACKETVER >= 20100803
packetLen(0x006d, 134)
#elif PACKETVER >= 20100728
packetLen(0x006d, 114)
#elif PACKETVER >= 20100720
packetLen(0x006d, 130)
#elif PACKETVER >= 20100105
packetLen(0x006d, 114)
#endif

// Packet: 0x006e
packetLen(0x006e, 3)

// Packet: 0x006f
packetLen(0x006f, 2)

// Packet: 0x0070
packetLen(0x0070, 3)

// Packet: 0x0071
packetLen(0x0071, 28)

// Packet: 0x0072
packetLen(0x0072, 22)

// Packet: 0x0073
packetLen(0x0073, 11)

// Packet: 0x0074
packetLen(0x0074, 3)

// Packet: 0x0075
packetLen(0x0075, -1)

// Packet: 0x0076
packetLen(0x0076, 9)

// Packet: 0x0077
packetLen(0x0077, 5)

// Packet: 0x0078
packetLen(0x0078, 55)

// Packet: 0x0079
packetLen(0x0079, 53)

// Packet: 0x007a
packetLen(0x007a, 58)

// Packet: 0x007b
packetLen(0x007b, 60)

// Packet: 0x007c
packetLen(0x007c, 44)

// Packet: 0x007d
packetLen(0x007d, 2)

// Packet: 0x007e
packetLen(0x007e, 105)

// Packet: 0x007f
packetLen(0x007f, 6)

// Packet: 0x0080
packetLen(0x0080, 7)

// Packet: 0x0081
packetLen(0x0081, 3)

// Packet: 0x0082
packetLen(0x0082, 2)

// Packet: 0x0083
packetLen(0x0083, 2)

// Packet: 0x0084
packetLen(0x0084, 2)

// Packet: 0x0085
packetLen(0x0085, 10)

// Packet: 0x0086
packetLen(0x0086, 16)

// Packet: 0x0087
packetLen(0x0087, 12)

// Packet: 0x0088
packetLen(0x0088, 10)

// Packet: 0x0089
packetLen(0x0089, 11)

// Packet: 0x008a
packetLen(0x008a, 29)

// Packet: 0x008b
packetLen(0x008b, 23)

// Packet: 0x008c
packetLen(0x008c, 14)

// Packet: 0x008d
packetLen(0x008d, -1)

// Packet: 0x008e
packetLen(0x008e, -1)

// Packet: 0x0090
packetLen(0x0090, 7)

// Packet: 0x0091
packetLen(0x0091, 22)

// Packet: 0x0092
packetLen(0x0092, 28)

// Packet: 0x0093
packetLen(0x0093, 2)

// Packet: 0x0094
packetLen(0x0094, 19)

// Packet: 0x0095
packetLen(0x0095, 30)

// Packet: 0x0096
packetLen(0x0096, -1)

// Packet: 0x0097
packetLen(0x0097, -1)

// Packet: 0x0098
packetLen(0x0098, 3)

// Packet: 0x0099
packetLen(0x0099, -1)

// Packet: 0x009a
packetLen(0x009a, -1)

// Packet: 0x009b
packetLen(0x009b, 34)

// Packet: 0x009c
packetLen(0x009c, 9)

// Packet: 0x009d
packetLen(0x009d, 17)

// Packet: 0x009e
packetLen(0x009e, 17)

// Packet: 0x009f
packetLen(0x009f, 20)

// Packet: 0x00a0
packetLen(0x00a0, 23)

// Packet: 0x00a1
packetLen(0x00a1, 6)

// Packet: 0x00a2
packetLen(0x00a2, 14)

// Packet: 0x00a3
packetLen(0x00a3, -1)

// Packet: 0x00a4
packetLen(0x00a4, -1)

// Packet: 0x00a5
packetLen(0x00a5, -1)

// Packet: 0x00a6
packetLen(0x00a6, -1)

// Packet: 0x00a7
packetLen(0x00a7, 9)

// Packet: 0x00a8
packetLen(0x00a8, 7)

// Packet: 0x00a9
packetLen(0x00a9, 6)

// Packet: 0x00aa
#if PACKETVER >= 20100629
packetLen(0x00aa, 9)
#elif PACKETVER >= 20100105
packetLen(0x00aa, 7)
#endif

// Packet: 0x00ab
packetLen(0x00ab, 4)

// Packet: 0x00ac
packetLen(0x00ac, 7)

// Packet: 0x00ae
packetLen(0x00ae, -1)

// Packet: 0x00af
packetLen(0x00af, 6)

// Packet: 0x00b0
packetLen(0x00b0, 8)

// Packet: 0x00b1
packetLen(0x00b1, 8)

// Packet: 0x00b2
packetLen(0x00b2, 3)

// Packet: 0x00b3
packetLen(0x00b3, 3)

// Packet: 0x00b4
packetLen(0x00b4, -1)

// Packet: 0x00b5
packetLen(0x00b5, 6)

// Packet: 0x00b6
packetLen(0x00b6, 6)

// Packet: 0x00b7
packetLen(0x00b7, -1)

// Packet: 0x00b8
packetLen(0x00b8, 7)

// Packet: 0x00b9
packetLen(0x00b9, 6)

// Packet: 0x00ba
packetLen(0x00ba, 2)

// Packet: 0x00bb
packetLen(0x00bb, 5)

// Packet: 0x00bc
packetLen(0x00bc, 6)

// Packet: 0x00bd
packetLen(0x00bd, 44)

// Packet: 0x00be
packetLen(0x00be, 5)

// Packet: 0x00bf
packetLen(0x00bf, 3)

// Packet: 0x00c0
packetLen(0x00c0, 7)

// Packet: 0x00c1
packetLen(0x00c1, 2)

// Packet: 0x00c2
packetLen(0x00c2, 6)

// Packet: 0x00c3
packetLen(0x00c3, 8)

// Packet: 0x00c4
packetLen(0x00c4, 6)

// Packet: 0x00c5
packetLen(0x00c5, 7)

// Packet: 0x00c6
packetLen(0x00c6, -1)

// Packet: 0x00c7
packetLen(0x00c7, -1)

// Packet: 0x00c8
packetLen(0x00c8, -1)

// Packet: 0x00c9
packetLen(0x00c9, -1)

// Packet: 0x00ca
packetLen(0x00ca, 3)

// Packet: 0x00cb
packetLen(0x00cb, 3)

// Packet: 0x00cc
packetLen(0x00cc, 6)

// Packet: 0x00cd
packetLen(0x00cd, 3)

// Packet: 0x00ce
packetLen(0x00ce, 2)

// Packet: 0x00cf
packetLen(0x00cf, 27)

// Packet: 0x00d0
packetLen(0x00d0, 3)

// Packet: 0x00d1
packetLen(0x00d1, 4)

// Packet: 0x00d2
packetLen(0x00d2, 4)

// Packet: 0x00d3
packetLen(0x00d3, 2)

// Packet: 0x00d4
packetLen(0x00d4, -1)

// Packet: 0x00d5
packetLen(0x00d5, -1)

// Packet: 0x00d6
packetLen(0x00d6, 3)

// Packet: 0x00d7
packetLen(0x00d7, -1)

// Packet: 0x00d8
packetLen(0x00d8, 6)

// Packet: 0x00d9
packetLen(0x00d9, 14)

// Packet: 0x00da
packetLen(0x00da, 3)

// Packet: 0x00db
packetLen(0x00db, -1)

// Packet: 0x00dc
packetLen(0x00dc, 28)

// Packet: 0x00dd
packetLen(0x00dd, 29)

// Packet: 0x00de
packetLen(0x00de, -1)

// Packet: 0x00df
packetLen(0x00df, -1)

// Packet: 0x00e0
packetLen(0x00e0, 30)

// Packet: 0x00e1
packetLen(0x00e1, 30)

// Packet: 0x00e2
packetLen(0x00e2, 26)

// Packet: 0x00e3
packetLen(0x00e3, 2)

// Packet: 0x00e4
packetLen(0x00e4, 6)

// Packet: 0x00e5
packetLen(0x00e5, 26)

// Packet: 0x00e6
packetLen(0x00e6, 3)

// Packet: 0x00e7
packetLen(0x00e7, 3)

// Packet: 0x00e8
packetLen(0x00e8, 8)

// Packet: 0x00e9
packetLen(0x00e9, 19)

// Packet: 0x00ea
packetLen(0x00ea, 5)

// Packet: 0x00eb
packetLen(0x00eb, 2)

// Packet: 0x00ec
packetLen(0x00ec, 3)

// Packet: 0x00ed
packetLen(0x00ed, 2)

// Packet: 0x00ee
packetLen(0x00ee, 2)

// Packet: 0x00ef
packetLen(0x00ef, 2)

// Packet: 0x00f0
packetLen(0x00f0, 3)

// Packet: 0x00f1
packetLen(0x00f1, 2)

// Packet: 0x00f2
packetLen(0x00f2, 6)

// Packet: 0x00f3
packetLen(0x00f3, -1)

// Packet: 0x00f4
packetLen(0x00f4, 21)

// Packet: 0x00f5
packetLen(0x00f5, 11)

// Packet: 0x00f6
packetLen(0x00f6, 8)

// Packet: 0x00f7
packetLen(0x00f7, 17)

// Packet: 0x00f8
packetLen(0x00f8, 2)

// Packet: 0x00f9
packetLen(0x00f9, 26)

// Packet: 0x00fa
packetLen(0x00fa, 3)

// Packet: 0x00fb
packetLen(0x00fb, -1)

// Packet: 0x00fc
packetLen(0x00fc, 6)

// Packet: 0x00fd
packetLen(0x00fd, 27)

// Packet: 0x00fe
packetLen(0x00fe, 30)

// Packet: 0x00ff
packetLen(0x00ff, 10)

// Packet: 0x0100
packetLen(0x0100, 2)

// Packet: 0x0101
packetLen(0x0101, 6)

// Packet: 0x0102
packetLen(0x0102, 6)

// Packet: 0x0103
packetLen(0x0103, 30)

// Packet: 0x0104
packetLen(0x0104, 79)

// Packet: 0x0105
packetLen(0x0105, 31)

// Packet: 0x0106
packetLen(0x0106, 10)

// Packet: 0x0107
packetLen(0x0107, 10)

// Packet: 0x0108
packetLen(0x0108, -1)

// Packet: 0x0109
packetLen(0x0109, -1)

// Packet: 0x010a
packetLen(0x010a, 4)

// Packet: 0x010b
packetLen(0x010b, 6)

// Packet: 0x010c
packetLen(0x010c, 6)

// Packet: 0x010d
packetLen(0x010d, 2)

// Packet: 0x010e
packetLen(0x010e, 11)

// Packet: 0x010f
packetLen(0x010f, -1)

// Packet: 0x0110
packetLen(0x0110, 10)

// Packet: 0x0111
packetLen(0x0111, 39)

// Packet: 0x0112
packetLen(0x0112, 4)

// Packet: 0x0113
packetLen(0x0113, 25)

// Packet: 0x0114
packetLen(0x0114, 31)

// Packet: 0x0115
packetLen(0x0115, 35)

// Packet: 0x0116
packetLen(0x0116, 17)

// Packet: 0x0117
packetLen(0x0117, 18)

// Packet: 0x0118
packetLen(0x0118, 2)

// Packet: 0x0119
packetLen(0x0119, 13)

// Packet: 0x011a
packetLen(0x011a, 15)

// Packet: 0x011b
packetLen(0x011b, 20)

// Packet: 0x011c
packetLen(0x011c, 68)

// Packet: 0x011d
packetLen(0x011d, 2)

// Packet: 0x011e
packetLen(0x011e, 3)

// Packet: 0x011f
packetLen(0x011f, 16)

// Packet: 0x0120
packetLen(0x0120, 6)

// Packet: 0x0121
packetLen(0x0121, 14)

// Packet: 0x0122
packetLen(0x0122, -1)

// Packet: 0x0123
packetLen(0x0123, -1)

// Packet: 0x0124
packetLen(0x0124, 21)

// Packet: 0x0125
packetLen(0x0125, 8)

// Packet: 0x0126
packetLen(0x0126, 8)

// Packet: 0x0127
packetLen(0x0127, 8)

// Packet: 0x0128
packetLen(0x0128, 8)

// Packet: 0x0129
packetLen(0x0129, 8)

// Packet: 0x012a
packetLen(0x012a, 2)

// Packet: 0x012b
packetLen(0x012b, 2)

// Packet: 0x012c
packetLen(0x012c, 3)

// Packet: 0x012d
packetLen(0x012d, 4)

// Packet: 0x012e
packetLen(0x012e, 2)

// Packet: 0x012f
packetLen(0x012f, -1)

// Packet: 0x0130
packetLen(0x0130, 6)

// Packet: 0x0131
packetLen(0x0131, 86)

// Packet: 0x0132
packetLen(0x0132, 6)

// Packet: 0x0133
packetLen(0x0133, -1)

// Packet: 0x0134
packetLen(0x0134, -1)

// Packet: 0x0135
packetLen(0x0135, 7)

// Packet: 0x0136
packetLen(0x0136, -1)

// Packet: 0x0137
packetLen(0x0137, 6)

// Packet: 0x0138
packetLen(0x0138, 3)

// Packet: 0x0139
packetLen(0x0139, 16)

// Packet: 0x013a
packetLen(0x013a, 4)

// Packet: 0x013b
packetLen(0x013b, 4)

// Packet: 0x013c
packetLen(0x013c, 4)

// Packet: 0x013d
packetLen(0x013d, 6)

// Packet: 0x013e
packetLen(0x013e, 24)

// Packet: 0x013f
packetLen(0x013f, 26)

// Packet: 0x0140
packetLen(0x0140, 22)

// Packet: 0x0141
packetLen(0x0141, 14)

// Packet: 0x0142
packetLen(0x0142, 6)

// Packet: 0x0143
packetLen(0x0143, 10)

// Packet: 0x0144
packetLen(0x0144, 23)

// Packet: 0x0145
packetLen(0x0145, 19)

// Packet: 0x0146
packetLen(0x0146, 6)

// Packet: 0x0147
packetLen(0x0147, 39)

// Packet: 0x0148
packetLen(0x0148, 8)

// Packet: 0x0149
packetLen(0x0149, 9)

// Packet: 0x014a
packetLen(0x014a, 6)

// Packet: 0x014b
packetLen(0x014b, 27)

// Packet: 0x014c
packetLen(0x014c, -1)

// Packet: 0x014d
packetLen(0x014d, 2)

// Packet: 0x014e
packetLen(0x014e, 6)

// Packet: 0x014f
packetLen(0x014f, 6)

// Packet: 0x0150
packetLen(0x0150, 110)

// Packet: 0x0151
packetLen(0x0151, 6)

// Packet: 0x0152
packetLen(0x0152, -1)

// Packet: 0x0153
packetLen(0x0153, -1)

// Packet: 0x0154
packetLen(0x0154, -1)

// Packet: 0x0155
packetLen(0x0155, -1)

// Packet: 0x0156
packetLen(0x0156, -1)

// Packet: 0x0157
packetLen(0x0157, 6)

// Packet: 0x0158
#if PACKETVER >= 20100817
// removed
#elif PACKETVER >= 20100105
packetLen(0x0158, -1)
#endif

// Packet: 0x0159
packetLen(0x0159, 54)

// Packet: 0x015a
packetLen(0x015a, 66)

// Packet: 0x015b
packetLen(0x015b, 54)

// Packet: 0x015c
packetLen(0x015c, 90)

// Packet: 0x015d
packetLen(0x015d, 42)

// Packet: 0x015e
packetLen(0x015e, 6)

// Packet: 0x015f
packetLen(0x015f, 42)

// Packet: 0x0160
packetLen(0x0160, -1)

// Packet: 0x0161
packetLen(0x0161, -1)

// Packet: 0x0162
packetLen(0x0162, -1)

// Packet: 0x0163
packetLen(0x0163, -1)

// Packet: 0x0164
packetLen(0x0164, -1)

// Packet: 0x0165
packetLen(0x0165, 30)

// Packet: 0x0166
packetLen(0x0166, -1)

// Packet: 0x0167
packetLen(0x0167, 3)

// Packet: 0x0168
packetLen(0x0168, 14)

// Packet: 0x0169
packetLen(0x0169, 3)

// Packet: 0x016a
packetLen(0x016a, 30)

// Packet: 0x016b
packetLen(0x016b, 10)

// Packet: 0x016c
packetLen(0x016c, 43)

// Packet: 0x016d
packetLen(0x016d, 14)

// Packet: 0x016e
packetLen(0x016e, 186)

// Packet: 0x016f
packetLen(0x016f, 182)

// Packet: 0x0170
packetLen(0x0170, 14)

// Packet: 0x0171
packetLen(0x0171, 30)

// Packet: 0x0172
packetLen(0x0172, 10)

// Packet: 0x0173
packetLen(0x0173, 3)

// Packet: 0x0174
packetLen(0x0174, -1)

// Packet: 0x0175
packetLen(0x0175, 6)

// Packet: 0x0176
packetLen(0x0176, 106)

// Packet: 0x0177
packetLen(0x0177, -1)

// Packet: 0x0178
packetLen(0x0178, 4)

// Packet: 0x0179
packetLen(0x0179, 5)

// Packet: 0x017a
packetLen(0x017a, 4)

// Packet: 0x017b
packetLen(0x017b, -1)

// Packet: 0x017c
packetLen(0x017c, 6)

// Packet: 0x017d
packetLen(0x017d, 7)

// Packet: 0x017e
packetLen(0x017e, -1)

// Packet: 0x017f
packetLen(0x017f, -1)

// Packet: 0x0180
packetLen(0x0180, 6)

// Packet: 0x0181
packetLen(0x0181, 3)

// Packet: 0x0182
packetLen(0x0182, 106)

// Packet: 0x0183
packetLen(0x0183, 10)

// Packet: 0x0184
packetLen(0x0184, 10)

// Packet: 0x0185
packetLen(0x0185, 34)

// Packet: 0x0187
packetLen(0x0187, 6)

// Packet: 0x0188
packetLen(0x0188, 8)

// Packet: 0x0189
packetLen(0x0189, 4)

// Packet: 0x018a
packetLen(0x018a, 4)

// Packet: 0x018b
packetLen(0x018b, 4)

// Packet: 0x018c
packetLen(0x018c, 29)

// Packet: 0x018d
packetLen(0x018d, -1)

// Packet: 0x018e
packetLen(0x018e, 10)

// Packet: 0x018f
packetLen(0x018f, 6)

// Packet: 0x0190
packetLen(0x0190, 23)

// Packet: 0x0191
packetLen(0x0191, 86)

// Packet: 0x0192
packetLen(0x0192, 24)

// Packet: 0x0193
packetLen(0x0193, 2)

// Packet: 0x0194
packetLen(0x0194, 30)

// Packet: 0x0195
packetLen(0x0195, 102)

// Packet: 0x0196
packetLen(0x0196, 9)

// Packet: 0x0197
packetLen(0x0197, 4)

// Packet: 0x0198
packetLen(0x0198, 8)

// Packet: 0x0199
packetLen(0x0199, 4)

// Packet: 0x019a
packetLen(0x019a, 14)

// Packet: 0x019b
packetLen(0x019b, 10)

// Packet: 0x019c
packetLen(0x019c, -1)

// Packet: 0x019d
packetLen(0x019d, 6)

// Packet: 0x019e
packetLen(0x019e, 2)

// Packet: 0x019f
packetLen(0x019f, 6)

// Packet: 0x01a0
packetLen(0x01a0, 3)

// Packet: 0x01a1
packetLen(0x01a1, 3)

// Packet: 0x01a2
packetLen(0x01a2, 37)

// Packet: 0x01a3
packetLen(0x01a3, 5)

// Packet: 0x01a4
packetLen(0x01a4, 11)

// Packet: 0x01a5
packetLen(0x01a5, 26)

// Packet: 0x01a6
packetLen(0x01a6, -1)

// Packet: 0x01a7
packetLen(0x01a7, 4)

// Packet: 0x01a8
packetLen(0x01a8, 4)

// Packet: 0x01a9
packetLen(0x01a9, 6)

// Packet: 0x01aa
packetLen(0x01aa, 10)

// Packet: 0x01ab
packetLen(0x01ab, 12)

// Packet: 0x01ac
packetLen(0x01ac, 6)

// Packet: 0x01ad
packetLen(0x01ad, -1)

// Packet: 0x01ae
packetLen(0x01ae, 4)

// Packet: 0x01af
packetLen(0x01af, 4)

// Packet: 0x01b0
packetLen(0x01b0, 11)

// Packet: 0x01b1
packetLen(0x01b1, 7)

// Packet: 0x01b2
packetLen(0x01b2, -1)

// Packet: 0x01b3
packetLen(0x01b3, 67)

// Packet: 0x01b4
packetLen(0x01b4, 12)

// Packet: 0x01b5
packetLen(0x01b5, 18)

// Packet: 0x01b6
packetLen(0x01b6, 114)

// Packet: 0x01b7
packetLen(0x01b7, 6)

// Packet: 0x01b8
packetLen(0x01b8, 3)

// Packet: 0x01b9
packetLen(0x01b9, 6)

// Packet: 0x01ba
packetLen(0x01ba, 26)

// Packet: 0x01bb
packetLen(0x01bb, 26)

// Packet: 0x01bc
packetLen(0x01bc, 26)

// Packet: 0x01bd
packetLen(0x01bd, 26)

// Packet: 0x01be
packetLen(0x01be, 2)

// Packet: 0x01bf
packetLen(0x01bf, 3)

// Packet: 0x01c0
packetLen(0x01c0, 2)

// Packet: 0x01c1
packetLen(0x01c1, 14)

// Packet: 0x01c2
packetLen(0x01c2, 10)

// Packet: 0x01c3
packetLen(0x01c3, -1)

// Packet: 0x01c4
packetLen(0x01c4, 22)

// Packet: 0x01c5
packetLen(0x01c5, 22)

// Packet: 0x01c6
packetLen(0x01c6, 4)

// Packet: 0x01c7
packetLen(0x01c7, 2)

// Packet: 0x01c8
packetLen(0x01c8, 13)

// Packet: 0x01c9
packetLen(0x01c9, 97)

// Packet: 0x01ca
packetLen(0x01ca, 3)

// Packet: 0x01cb
packetLen(0x01cb, 9)

// Packet: 0x01cc
packetLen(0x01cc, 9)

// Packet: 0x01cd
packetLen(0x01cd, 30)

// Packet: 0x01ce
packetLen(0x01ce, 6)

// Packet: 0x01cf
packetLen(0x01cf, 28)

// Packet: 0x01d0
packetLen(0x01d0, 8)

// Packet: 0x01d1
packetLen(0x01d1, 14)

// Packet: 0x01d2
packetLen(0x01d2, 10)

// Packet: 0x01d3
packetLen(0x01d3, 35)

// Packet: 0x01d4
packetLen(0x01d4, 6)

// Packet: 0x01d5
packetLen(0x01d5, -1)

// Packet: 0x01d6
packetLen(0x01d6, 4)

// Packet: 0x01d7
packetLen(0x01d7, 11)

// Packet: 0x01d8
packetLen(0x01d8, 54)

// Packet: 0x01d9
packetLen(0x01d9, 53)

// Packet: 0x01da
packetLen(0x01da, 60)

// Packet: 0x01db
packetLen(0x01db, 2)

// Packet: 0x01dc
packetLen(0x01dc, -1)

// Packet: 0x01dd
packetLen(0x01dd, 47)

// Packet: 0x01de
packetLen(0x01de, 33)

// Packet: 0x01df
packetLen(0x01df, 6)

// Packet: 0x01e0
packetLen(0x01e0, 30)

// Packet: 0x01e1
packetLen(0x01e1, 8)

// Packet: 0x01e2
packetLen(0x01e2, 34)

// Packet: 0x01e3
packetLen(0x01e3, 14)

// Packet: 0x01e4
packetLen(0x01e4, 2)

// Packet: 0x01e5
packetLen(0x01e5, 6)

// Packet: 0x01e6
packetLen(0x01e6, 26)

// Packet: 0x01e7
packetLen(0x01e7, 2)

// Packet: 0x01e8
packetLen(0x01e8, 28)

// Packet: 0x01e9
packetLen(0x01e9, 81)

// Packet: 0x01ea
packetLen(0x01ea, 6)

// Packet: 0x01eb
packetLen(0x01eb, 10)

// Packet: 0x01ec
packetLen(0x01ec, 26)

// Packet: 0x01ed
packetLen(0x01ed, 2)

// Packet: 0x01ee
packetLen(0x01ee, -1)

// Packet: 0x01ef
packetLen(0x01ef, -1)

// Packet: 0x01f0
packetLen(0x01f0, -1)

// Packet: 0x01f1
packetLen(0x01f1, -1)

// Packet: 0x01f2
packetLen(0x01f2, 20)

// Packet: 0x01f3
packetLen(0x01f3, 10)

// Packet: 0x01f4
packetLen(0x01f4, 32)

// Packet: 0x01f5
packetLen(0x01f5, 9)

// Packet: 0x01f6
packetLen(0x01f6, 34)

// Packet: 0x01f7
packetLen(0x01f7, 14)

// Packet: 0x01f8
packetLen(0x01f8, 2)

// Packet: 0x01f9
packetLen(0x01f9, 6)

// Packet: 0x01fa
packetLen(0x01fa, 48)

// Packet: 0x01fb
packetLen(0x01fb, 56)

// Packet: 0x01fc
packetLen(0x01fc, -1)

// Packet: 0x01fd
packetLen(0x01fd, 15)

// Packet: 0x01fe
packetLen(0x01fe, 5)

// Packet: 0x01ff
packetLen(0x01ff, 10)

// Packet: 0x0200
packetLen(0x0200, 26)

// Packet: 0x0201
packetLen(0x0201, -1)

// Packet: 0x0202
packetLen(0x0202, 26)

// Packet: 0x0203
packetLen(0x0203, 10)

// Packet: 0x0204
packetLen(0x0204, 18)

// Packet: 0x0205
packetLen(0x0205, 26)

// Packet: 0x0206
packetLen(0x0206, 11)

// Packet: 0x0207
packetLen(0x0207, 34)

// Packet: 0x0208
packetLen(0x0208, 14)

// Packet: 0x0209
packetLen(0x0209, 36)

// Packet: 0x020a
packetLen(0x020a, 10)

// Packet: 0x020d
packetLen(0x020d, -1)

// Packet: 0x020e
packetLen(0x020e, 32)

// Packet: 0x020f
packetLen(0x020f, 10)

// Packet: 0x0210
packetLen(0x0210, 22)

// Packet: 0x0212
packetLen(0x0212, 26)

// Packet: 0x0213
packetLen(0x0213, 26)

// Packet: 0x0214
packetLen(0x0214, 42)

// Packet: 0x0215
packetLen(0x0215, 6)

// Packet: 0x0216
packetLen(0x0216, 6)

// Packet: 0x0217
packetLen(0x0217, 2)

// Packet: 0x0218
packetLen(0x0218, 2)

// Packet: 0x0219
packetLen(0x0219, 282)

// Packet: 0x021a
packetLen(0x021a, 282)

// Packet: 0x021b
packetLen(0x021b, 10)

// Packet: 0x021c
packetLen(0x021c, 10)

// Packet: 0x021d
packetLen(0x021d, 6)

// Packet: 0x021e
packetLen(0x021e, 6)

// Packet: 0x021f
packetLen(0x021f, 66)

// Packet: 0x0220
packetLen(0x0220, 10)

// Packet: 0x0221
packetLen(0x0221, -1)

// Packet: 0x0222
packetLen(0x0222, 6)

// Packet: 0x0223
packetLen(0x0223, 8)

// Packet: 0x0224
packetLen(0x0224, 10)

// Packet: 0x0225
packetLen(0x0225, 2)

// Packet: 0x0226
packetLen(0x0226, 282)

// Packet: 0x0227
packetLen(0x0227, 18)

// Packet: 0x0228
packetLen(0x0228, 18)

// Packet: 0x0229
packetLen(0x0229, 15)

// Packet: 0x022a
packetLen(0x022a, 58)

// Packet: 0x022b
packetLen(0x022b, 57)

// Packet: 0x022c
packetLen(0x022c, 65)

// Packet: 0x022d
packetLen(0x022d, 5)

// Packet: 0x022e
packetLen(0x022e, 71)

// Packet: 0x022f
packetLen(0x022f, 5)

// Packet: 0x0230
packetLen(0x0230, 12)

// Packet: 0x0231
packetLen(0x0231, 26)

// Packet: 0x0232
packetLen(0x0232, 9)

// Packet: 0x0233
packetLen(0x0233, 11)

// Packet: 0x0234
packetLen(0x0234, 6)

// Packet: 0x0235
packetLen(0x0235, -1)

// Packet: 0x0236
packetLen(0x0236, 10)

// Packet: 0x0237
packetLen(0x0237, 2)

// Packet: 0x0238
packetLen(0x0238, 282)

// Packet: 0x0239
packetLen(0x0239, 11)

// Packet: 0x023a
packetLen(0x023a, 4)

// Packet: 0x023b
packetLen(0x023b, 36)

// Packet: 0x023c
packetLen(0x023c, 6)

// Packet: 0x023d
packetLen(0x023d, 6)

// Packet: 0x023e
packetLen(0x023e, 8)

// Packet: 0x023f
packetLen(0x023f, 2)

// Packet: 0x0240
packetLen(0x0240, -1)

// Packet: 0x0241
packetLen(0x0241, 6)

// Packet: 0x0242
packetLen(0x0242, -1)

// Packet: 0x0243
packetLen(0x0243, 6)

// Packet: 0x0244
packetLen(0x0244, 6)

// Packet: 0x0245
packetLen(0x0245, 3)

// Packet: 0x0246
packetLen(0x0246, 4)

// Packet: 0x0247
packetLen(0x0247, 8)

// Packet: 0x0248
packetLen(0x0248, -1)

// Packet: 0x0249
packetLen(0x0249, 3)

// Packet: 0x024a
packetLen(0x024a, 70)

// Packet: 0x024b
packetLen(0x024b, 4)

// Packet: 0x024c
packetLen(0x024c, 8)

// Packet: 0x024d
packetLen(0x024d, 12)

// Packet: 0x024e
packetLen(0x024e, 6)

// Packet: 0x024f
packetLen(0x024f, 10)

// Packet: 0x0250
packetLen(0x0250, 3)

// Packet: 0x0251
packetLen(0x0251, 34)

// Packet: 0x0252
packetLen(0x0252, -1)

// Packet: 0x0253
packetLen(0x0253, 3)

// Packet: 0x0254
packetLen(0x0254, 3)

// Packet: 0x0255
packetLen(0x0255, 5)

// Packet: 0x0256
packetLen(0x0256, 5)

// Packet: 0x0257
packetLen(0x0257, 8)

// Packet: 0x0258
packetLen(0x0258, 2)

// Packet: 0x0259
packetLen(0x0259, 3)

// Packet: 0x025a
packetLen(0x025a, -1)

// Packet: 0x025b
packetLen(0x025b, 6)

// Packet: 0x025c
packetLen(0x025c, 4)

// Packet: 0x025d
packetLen(0x025d, 6)

// Packet: 0x025e
packetLen(0x025e, 4)

// Packet: 0x025f
packetLen(0x025f, 6)

// Packet: 0x0260
packetLen(0x0260, 6)

// Packet: 0x0261
packetLen(0x0261, 11)

// Packet: 0x0262
packetLen(0x0262, 11)

// Packet: 0x0263
packetLen(0x0263, 11)

// Packet: 0x0264
packetLen(0x0264, 20)

// Packet: 0x0265
packetLen(0x0265, 20)

// Packet: 0x0266
packetLen(0x0266, 30)

// Packet: 0x0267
packetLen(0x0267, 4)

// Packet: 0x0268
packetLen(0x0268, 4)

// Packet: 0x0269
packetLen(0x0269, 4)

// Packet: 0x026a
packetLen(0x026a, 4)

// Packet: 0x026b
packetLen(0x026b, 4)

// Packet: 0x026c
packetLen(0x026c, 4)

// Packet: 0x026d
packetLen(0x026d, 4)

// Packet: 0x026f
packetLen(0x026f, 2)

// Packet: 0x0270
packetLen(0x0270, 2)

// Packet: 0x0271
packetLen(0x0271, 40)

// Packet: 0x0272
packetLen(0x0272, 44)

// Packet: 0x0273
packetLen(0x0273, 30)

// Packet: 0x0274
packetLen(0x0274, 8)

// Packet: 0x0275
packetLen(0x0275, 37)

// Packet: 0x0276
packetLen(0x0276, -1)

// Packet: 0x0277
packetLen(0x0277, 84)

// Packet: 0x0278
packetLen(0x0278, 2)

// Packet: 0x0279
packetLen(0x0279, 2)

// Packet: 0x027a
packetLen(0x027a, -1)

// Packet: 0x027b
packetLen(0x027b, 14)

// Packet: 0x027c
packetLen(0x027c, 60)

// Packet: 0x027d
packetLen(0x027d, 62)

// Packet: 0x027e
packetLen(0x027e, -1)

// Packet: 0x027f
packetLen(0x027f, 8)

// Packet: 0x0280
packetLen(0x0280, 12)

// Packet: 0x0281
packetLen(0x0281, 4)

// Packet: 0x0282
packetLen(0x0282, 284)

// Packet: 0x0283
packetLen(0x0283, 6)

// Packet: 0x0284
packetLen(0x0284, 14)

// Packet: 0x0285
packetLen(0x0285, 6)

// Packet: 0x0286
packetLen(0x0286, 4)

// Packet: 0x0287
packetLen(0x0287, -1)

// Packet: 0x0288
#if PACKETVER >= 20100803
packetLen(0x0288, -1)
#elif PACKETVER >= 20100105
packetLen(0x0288, 10)
#endif

// Packet: 0x0289
packetLen(0x0289, 12)

// Packet: 0x028a
packetLen(0x028a, 18)

// Packet: 0x028b
packetLen(0x028b, -1)

// Packet: 0x028c
packetLen(0x028c, 46)

// Packet: 0x028d
packetLen(0x028d, 34)

// Packet: 0x028e
packetLen(0x028e, 4)

// Packet: 0x028f
packetLen(0x028f, 6)

// Packet: 0x0290
packetLen(0x0290, 4)

// Packet: 0x0291
packetLen(0x0291, 4)

// Packet: 0x0292
packetLen(0x0292, 2)

// Packet: 0x0293
packetLen(0x0293, 70)

// Packet: 0x0294
packetLen(0x0294, 10)

// Packet: 0x0295
packetLen(0x0295, -1)

// Packet: 0x0296
packetLen(0x0296, -1)

// Packet: 0x0297
packetLen(0x0297, -1)

// Packet: 0x0298
packetLen(0x0298, 8)

// Packet: 0x0299
packetLen(0x0299, 6)

// Packet: 0x029a
packetLen(0x029a, 27)

// Packet: 0x029b
packetLen(0x029b, 80)

// Packet: 0x029c
packetLen(0x029c, 66)

// Packet: 0x029d
packetLen(0x029d, -1)

// Packet: 0x029e
packetLen(0x029e, 11)

// Packet: 0x029f
packetLen(0x029f, 3)

// Packet: 0x02a2
packetLen(0x02a2, 8)

// Packet: 0x02a5
packetLen(0x02a5, 8)

// Packet: 0x02aa
packetLen(0x02aa, 4)

// Packet: 0x02ab
packetLen(0x02ab, 36)

// Packet: 0x02ac
packetLen(0x02ac, 6)

// Packet: 0x02ad
packetLen(0x02ad, 8)

// Packet: 0x02b0
packetLen(0x02b0, 85)

// Packet: 0x02b1
packetLen(0x02b1, -1)

// Packet: 0x02b2
packetLen(0x02b2, -1)

// Packet: 0x02b3
packetLen(0x02b3, 107)

// Packet: 0x02b4
packetLen(0x02b4, 6)

// Packet: 0x02b5
packetLen(0x02b5, -1)

// Packet: 0x02b6
packetLen(0x02b6, 7)

// Packet: 0x02b7
packetLen(0x02b7, 7)

// Packet: 0x02b8
packetLen(0x02b8, 22)

// Packet: 0x02b9
packetLen(0x02b9, 191)

// Packet: 0x02ba
packetLen(0x02ba, 11)

// Packet: 0x02bb
packetLen(0x02bb, 8)

// Packet: 0x02bc
packetLen(0x02bc, 6)

// Packet: 0x02c1
packetLen(0x02c1, -1)

// Packet: 0x02c2
packetLen(0x02c2, -1)

// Packet: 0x02c4
packetLen(0x02c4, 26)

// Packet: 0x02c5
packetLen(0x02c5, 30)

// Packet: 0x02c6
packetLen(0x02c6, 30)

// Packet: 0x02c7
packetLen(0x02c7, 7)

// Packet: 0x02c8
packetLen(0x02c8, 3)

// Packet: 0x02c9
packetLen(0x02c9, 3)

// Packet: 0x02ca
packetLen(0x02ca, 3)

// Packet: 0x02cb
packetLen(0x02cb, 65)

// Packet: 0x02cc
packetLen(0x02cc, 4)

// Packet: 0x02cd
packetLen(0x02cd, 71)

// Packet: 0x02ce
packetLen(0x02ce, 10)

// Packet: 0x02cf
packetLen(0x02cf, 6)

// Packet: 0x02d0
packetLen(0x02d0, -1)

// Packet: 0x02d1
packetLen(0x02d1, -1)

// Packet: 0x02d2
packetLen(0x02d2, -1)

// Packet: 0x02d3
packetLen(0x02d3, 4)

// Packet: 0x02d4
packetLen(0x02d4, 29)

// Packet: 0x02d5
packetLen(0x02d5, 2)

// Packet: 0x02d6
packetLen(0x02d6, 6)

// Packet: 0x02d7
packetLen(0x02d7, -1)

// Packet: 0x02d8
packetLen(0x02d8, 10)

// Packet: 0x02d9
packetLen(0x02d9, 10)

// Packet: 0x02da
packetLen(0x02da, 3)

// Packet: 0x02db
packetLen(0x02db, -1)

// Packet: 0x02dc
packetLen(0x02dc, -1)

// Packet: 0x02dd
packetLen(0x02dd, 32)

// Packet: 0x02de
packetLen(0x02de, 6)

// Packet: 0x02df
packetLen(0x02df, 36)

// Packet: 0x02e0
packetLen(0x02e0, 34)

// Packet: 0x02e1
packetLen(0x02e1, 33)

// Packet: 0x02e2
packetLen(0x02e2, 20)

// Packet: 0x02e3
packetLen(0x02e3, 22)

// Packet: 0x02e4
packetLen(0x02e4, 11)

// Packet: 0x02e5
packetLen(0x02e5, 9)

// Packet: 0x02e6
packetLen(0x02e6, 6)

// Packet: 0x02e7
packetLen(0x02e7, -1)

// Packet: 0x02e8
packetLen(0x02e8, -1)

// Packet: 0x02e9
packetLen(0x02e9, -1)

// Packet: 0x02ea
packetLen(0x02ea, -1)

// Packet: 0x02eb
packetLen(0x02eb, 13)

// Packet: 0x02ec
packetLen(0x02ec, 67)

// Packet: 0x02ed
packetLen(0x02ed, 59)

// Packet: 0x02ee
packetLen(0x02ee, 60)

// Packet: 0x02ef
packetLen(0x02ef, 8)

// Packet: 0x02f0
packetLen(0x02f0, 10)

// Packet: 0x02f1
packetLen(0x02f1, 2)

// Packet: 0x02f2
packetLen(0x02f2, 2)

// Packet: 0x02f3
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x02f3, -1)
#endif

// Packet: 0x02f4
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x02f4, -1)
#endif

// Packet: 0x02f5
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x02f5, -1)
#endif

// Packet: 0x02f6
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x02f6, -1)
#endif

// Packet: 0x02f7
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x02f7, -1)
#endif

// Packet: 0x02f8
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x02f8, -1)
#endif

// Packet: 0x02f9
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x02f9, -1)
#endif

// Packet: 0x02fa
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x02fa, -1)
#endif

// Packet: 0x02fb
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x02fb, -1)
#endif

// Packet: 0x02fc
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x02fc, -1)
#endif

// Packet: 0x02fd
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x02fd, -1)
#endif

// Packet: 0x02fe
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x02fe, -1)
#endif

// Packet: 0x02ff
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x02ff, -1)
#endif

// Packet: 0x0300
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0300, -1)
#endif

// Packet: 0x0301
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0301, -1)
#endif

// Packet: 0x0302
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0302, -1)
#endif

// Packet: 0x0303
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0303, -1)
#endif

// Packet: 0x0304
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0304, -1)
#endif

// Packet: 0x0305
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0305, -1)
#endif

// Packet: 0x0306
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0306, -1)
#endif

// Packet: 0x0307
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0307, -1)
#endif

// Packet: 0x0308
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0308, -1)
#endif

// Packet: 0x0309
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0309, -1)
#endif

// Packet: 0x030a
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x030a, -1)
#endif

// Packet: 0x030b
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x030b, -1)
#endif

// Packet: 0x030c
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x030c, -1)
#endif

// Packet: 0x030d
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x030d, -1)
#endif

// Packet: 0x030e
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x030e, -1)
#endif

// Packet: 0x030f
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x030f, -1)
#endif

// Packet: 0x0310
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0310, -1)
#endif

// Packet: 0x0311
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0311, -1)
#endif

// Packet: 0x0312
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0312, -1)
#endif

// Packet: 0x0313
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0313, -1)
#endif

// Packet: 0x0314
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0314, -1)
#endif

// Packet: 0x0315
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0315, -1)
#endif

// Packet: 0x0316
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0316, -1)
#endif

// Packet: 0x0317
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0317, -1)
#endif

// Packet: 0x0318
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0318, -1)
#endif

// Packet: 0x0319
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0319, -1)
#endif

// Packet: 0x031a
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x031a, -1)
#endif

// Packet: 0x031b
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x031b, -1)
#endif

// Packet: 0x031c
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x031c, -1)
#endif

// Packet: 0x031d
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x031d, -1)
#endif

// Packet: 0x031e
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x031e, -1)
#endif

// Packet: 0x031f
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x031f, -1)
#endif

// Packet: 0x0320
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0320, -1)
#endif

// Packet: 0x0321
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0321, -1)
#endif

// Packet: 0x0322
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0322, -1)
#endif

// Packet: 0x0323
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0323, -1)
#endif

// Packet: 0x0324
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0324, -1)
#endif

// Packet: 0x0325
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0325, -1)
#endif

// Packet: 0x0326
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0326, -1)
#endif

// Packet: 0x0327
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0327, -1)
#endif

// Packet: 0x0328
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0328, -1)
#endif

// Packet: 0x0329
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0329, -1)
#endif

// Packet: 0x032a
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x032a, -1)
#endif

// Packet: 0x032b
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x032b, -1)
#endif

// Packet: 0x032c
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x032c, -1)
#endif

// Packet: 0x032d
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x032d, -1)
#endif

// Packet: 0x032e
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x032e, -1)
#endif

// Packet: 0x032f
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x032f, -1)
#endif

// Packet: 0x0330
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0330, -1)
#endif

// Packet: 0x0331
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0331, -1)
#endif

// Packet: 0x0332
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0332, -1)
#endif

// Packet: 0x0333
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0333, -1)
#endif

// Packet: 0x0334
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0334, -1)
#endif

// Packet: 0x0335
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0335, -1)
#endif

// Packet: 0x0336
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0336, -1)
#endif

// Packet: 0x0337
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0337, -1)
#endif

// Packet: 0x0338
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0338, -1)
#endif

// Packet: 0x0339
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0339, -1)
#endif

// Packet: 0x033a
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x033a, -1)
#endif

// Packet: 0x033b
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x033b, -1)
#endif

// Packet: 0x033c
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x033c, -1)
#endif

// Packet: 0x033d
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x033d, -1)
#endif

// Packet: 0x033e
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x033e, -1)
#endif

// Packet: 0x033f
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x033f, -1)
#endif

// Packet: 0x0340
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0340, -1)
#endif

// Packet: 0x0341
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0341, -1)
#endif

// Packet: 0x0342
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0342, -1)
#endif

// Packet: 0x0343
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0343, -1)
#endif

// Packet: 0x0344
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0344, -1)
#endif

// Packet: 0x0345
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0345, -1)
#endif

// Packet: 0x0346
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0346, -1)
#endif

// Packet: 0x0347
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0347, -1)
#endif

// Packet: 0x0348
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0348, -1)
#endif

// Packet: 0x0349
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0349, -1)
#endif

// Packet: 0x034a
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x034a, -1)
#endif

// Packet: 0x034b
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x034b, -1)
#endif

// Packet: 0x034c
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x034c, -1)
#endif

// Packet: 0x034d
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x034d, -1)
#endif

// Packet: 0x034e
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x034e, -1)
#endif

// Packet: 0x034f
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x034f, -1)
#endif

// Packet: 0x0350
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0350, -1)
#endif

// Packet: 0x0351
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0351, -1)
#endif

// Packet: 0x0352
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0352, -1)
#endif

// Packet: 0x0353
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0353, -1)
#endif

// Packet: 0x0354
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0354, -1)
#endif

// Packet: 0x0355
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0355, -1)
#endif

// Packet: 0x0356
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0356, -1)
#endif

// Packet: 0x0357
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0357, -1)
#endif

// Packet: 0x0358
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0358, -1)
#endif

// Packet: 0x0359
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0359, -1)
#endif

// Packet: 0x035a
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x035a, -1)
#endif

// Packet: 0x035b
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x035b, -1)
#endif

// Packet: 0x035c
packetLen(0x035c, 2)

// Packet: 0x035d
packetLen(0x035d, -1)

// Packet: 0x035e
packetLen(0x035e, 2)

// Packet: 0x035f
#if PACKETVER >= 20101123
packetLen(0x035f, 5)
#elif PACKETVER >= 20100105
packetLen(0x035f, -1)
#endif

// Packet: 0x0360
#if PACKETVER >= 20101123
packetLen(0x0360, 6)
#elif PACKETVER >= 20100105
packetLen(0x0360, -1)
#endif

// Packet: 0x0361
#if PACKETVER >= 20101123
packetLen(0x0361, 5)
#elif PACKETVER >= 20100105
packetLen(0x0361, -1)
#endif

// Packet: 0x0362
#if PACKETVER >= 20101123
packetLen(0x0362, 6)
#elif PACKETVER >= 20100105
packetLen(0x0362, -1)
#endif

// Packet: 0x0363
#if PACKETVER >= 20101123
packetLen(0x0363, 6)
#elif PACKETVER >= 20100105
packetLen(0x0363, -1)
#endif

// Packet: 0x0364
#if PACKETVER >= 20101123
packetLen(0x0364, 8)
#elif PACKETVER >= 20100105
packetLen(0x0364, -1)
#endif

// Packet: 0x0365
#if PACKETVER >= 20101123
packetLen(0x0365, 8)
#elif PACKETVER >= 20100105
packetLen(0x0365, -1)
#endif

// Packet: 0x0366
#if PACKETVER >= 20101123
packetLen(0x0366, 10)
#elif PACKETVER >= 20100105
packetLen(0x0366, -1)
#endif

// Packet: 0x0367
#if PACKETVER >= 20101123
packetLen(0x0367, 90)
#elif PACKETVER >= 20100105
packetLen(0x0367, -1)
#endif

// Packet: 0x0368
#if PACKETVER >= 20101123
packetLen(0x0368, 6)
#elif PACKETVER >= 20100105
packetLen(0x0368, -1)
#endif

// Packet: 0x0369
#if PACKETVER >= 20101123
packetLen(0x0369, 6)
#elif PACKETVER >= 20100105
packetLen(0x0369, -1)
#endif

// Packet: 0x036a
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x036a, -1)
#endif

// Packet: 0x036b
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x036b, -1)
#endif

// Packet: 0x036c
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x036c, -1)
#endif

// Packet: 0x036d
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x036d, -1)
#endif

// Packet: 0x036e
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x036e, -1)
#endif

// Packet: 0x036f
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x036f, -1)
#endif

// Packet: 0x0370
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0370, -1)
#endif

// Packet: 0x0371
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0371, -1)
#endif

// Packet: 0x0372
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0372, -1)
#endif

// Packet: 0x0373
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0373, -1)
#endif

// Packet: 0x0374
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0374, -1)
#endif

// Packet: 0x0375
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0375, -1)
#endif

// Packet: 0x0376
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0376, -1)
#endif

// Packet: 0x0377
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0377, -1)
#endif

// Packet: 0x0378
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0378, -1)
#endif

// Packet: 0x0379
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0379, -1)
#endif

// Packet: 0x037a
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x037a, -1)
#endif

// Packet: 0x037b
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x037b, -1)
#endif

// Packet: 0x037c
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x037c, -1)
#endif

// Packet: 0x037d
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x037d, -1)
#endif

// Packet: 0x037e
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x037e, -1)
#endif

// Packet: 0x037f
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x037f, -1)
#endif

// Packet: 0x0380
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0380, -1)
#endif

// Packet: 0x0381
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0381, -1)
#endif

// Packet: 0x0382
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0382, -1)
#endif

// Packet: 0x0383
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0383, -1)
#endif

// Packet: 0x0384
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0384, -1)
#endif

// Packet: 0x0385
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0385, -1)
#endif

// Packet: 0x0386
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0386, -1)
#endif

// Packet: 0x0387
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0387, -1)
#endif

// Packet: 0x0388
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0388, -1)
#endif

// Packet: 0x0389
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0389, -1)
#endif

// Packet: 0x038a
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x038a, -1)
#endif

// Packet: 0x038b
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x038b, -1)
#endif

// Packet: 0x038c
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x038c, -1)
#endif

// Packet: 0x038d
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x038d, -1)
#endif

// Packet: 0x038e
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x038e, -1)
#endif

// Packet: 0x038f
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x038f, -1)
#endif

// Packet: 0x0390
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0390, -1)
#endif

// Packet: 0x0391
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0391, -1)
#endif

// Packet: 0x0392
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0392, -1)
#endif

// Packet: 0x0393
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0393, -1)
#endif

// Packet: 0x0394
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0394, -1)
#endif

// Packet: 0x0395
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0395, -1)
#endif

// Packet: 0x0396
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0396, -1)
#endif

// Packet: 0x0397
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0397, -1)
#endif

// Packet: 0x0398
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0398, -1)
#endif

// Packet: 0x0399
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0399, -1)
#endif

// Packet: 0x039a
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x039a, -1)
#endif

// Packet: 0x039b
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x039b, -1)
#endif

// Packet: 0x039c
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x039c, -1)
#endif

// Packet: 0x039d
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x039d, -1)
#endif

// Packet: 0x039e
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x039e, -1)
#endif

// Packet: 0x039f
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x039f, -1)
#endif

// Packet: 0x03a0
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03a0, -1)
#endif

// Packet: 0x03a1
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03a1, -1)
#endif

// Packet: 0x03a2
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03a2, -1)
#endif

// Packet: 0x03a3
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03a3, -1)
#endif

// Packet: 0x03a4
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03a4, -1)
#endif

// Packet: 0x03a5
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03a5, -1)
#endif

// Packet: 0x03a6
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03a6, -1)
#endif

// Packet: 0x03a7
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03a7, -1)
#endif

// Packet: 0x03a8
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03a8, -1)
#endif

// Packet: 0x03a9
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03a9, -1)
#endif

// Packet: 0x03aa
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03aa, -1)
#endif

// Packet: 0x03ab
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03ab, -1)
#endif

// Packet: 0x03ac
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03ac, -1)
#endif

// Packet: 0x03ad
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03ad, -1)
#endif

// Packet: 0x03ae
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03ae, -1)
#endif

// Packet: 0x03af
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03af, -1)
#endif

// Packet: 0x03b0
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03b0, -1)
#endif

// Packet: 0x03b1
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03b1, -1)
#endif

// Packet: 0x03b2
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03b2, -1)
#endif

// Packet: 0x03b3
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03b3, -1)
#endif

// Packet: 0x03b4
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03b4, -1)
#endif

// Packet: 0x03b5
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03b5, -1)
#endif

// Packet: 0x03b6
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03b6, -1)
#endif

// Packet: 0x03b7
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03b7, -1)
#endif

// Packet: 0x03b8
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03b8, -1)
#endif

// Packet: 0x03b9
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03b9, -1)
#endif

// Packet: 0x03ba
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03ba, -1)
#endif

// Packet: 0x03bb
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03bb, -1)
#endif

// Packet: 0x03bc
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03bc, -1)
#endif

// Packet: 0x03bd
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03bd, -1)
#endif

// Packet: 0x03be
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03be, -1)
#endif

// Packet: 0x03bf
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03bf, -1)
#endif

// Packet: 0x03c0
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03c0, -1)
#endif

// Packet: 0x03c1
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03c1, -1)
#endif

// Packet: 0x03c2
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03c2, -1)
#endif

// Packet: 0x03c3
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03c3, -1)
#endif

// Packet: 0x03c4
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03c4, -1)
#endif

// Packet: 0x03c5
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03c5, -1)
#endif

// Packet: 0x03c6
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03c6, -1)
#endif

// Packet: 0x03c7
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03c7, -1)
#endif

// Packet: 0x03c8
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03c8, -1)
#endif

// Packet: 0x03c9
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03c9, -1)
#endif

// Packet: 0x03ca
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03ca, -1)
#endif

// Packet: 0x03cb
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03cb, -1)
#endif

// Packet: 0x03cc
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03cc, -1)
#endif

// Packet: 0x03cd
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03cd, -1)
#endif

// Packet: 0x03ce
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03ce, -1)
#endif

// Packet: 0x03cf
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03cf, -1)
#endif

// Packet: 0x03d0
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03d0, -1)
#endif

// Packet: 0x03d1
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03d1, -1)
#endif

// Packet: 0x03d2
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03d2, -1)
#endif

// Packet: 0x03d3
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03d3, -1)
#endif

// Packet: 0x03d4
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03d4, -1)
#endif

// Packet: 0x03d5
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03d5, -1)
#endif

// Packet: 0x03d6
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03d6, -1)
#endif

// Packet: 0x03d7
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03d7, -1)
#endif

// Packet: 0x03d8
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03d8, -1)
#endif

// Packet: 0x03d9
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03d9, -1)
#endif

// Packet: 0x03da
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03da, -1)
#endif

// Packet: 0x03db
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03db, -1)
#endif

// Packet: 0x03dc
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03dc, -1)
#endif

// Packet: 0x03dd
packetLen(0x03dd, 18)

// Packet: 0x03de
packetLen(0x03de, 18)

// Packet: 0x03e2
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03e2, -1)
#endif

// Packet: 0x03e3
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03e3, -1)
#endif

// Packet: 0x03e4
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03e4, -1)
#endif

// Packet: 0x03e5
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03e5, -1)
#endif

// Packet: 0x03e6
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03e6, -1)
#endif

// Packet: 0x03e7
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03e7, -1)
#endif

// Packet: 0x03e8
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03e8, -1)
#endif

// Packet: 0x03e9
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03e9, -1)
#endif

// Packet: 0x03ea
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03ea, -1)
#endif

// Packet: 0x03eb
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03eb, -1)
#endif

// Packet: 0x03ec
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03ec, -1)
#endif

// Packet: 0x03ed
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03ed, -1)
#endif

// Packet: 0x03ee
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03ee, -1)
#endif

// Packet: 0x03ef
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03ef, -1)
#endif

// Packet: 0x03f0
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03f0, -1)
#endif

// Packet: 0x03f1
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03f1, -1)
#endif

// Packet: 0x03f2
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03f2, -1)
#endif

// Packet: 0x03f3
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03f3, -1)
#endif

// Packet: 0x03f4
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03f4, -1)
#endif

// Packet: 0x03f5
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03f5, -1)
#endif

// Packet: 0x03f6
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03f6, -1)
#endif

// Packet: 0x03f7
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03f7, -1)
#endif

// Packet: 0x03f8
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03f8, -1)
#endif

// Packet: 0x03f9
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03f9, -1)
#endif

// Packet: 0x03fa
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03fa, -1)
#endif

// Packet: 0x03fb
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03fb, -1)
#endif

// Packet: 0x03fc
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03fc, -1)
#endif

// Packet: 0x03fd
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03fd, -1)
#endif

// Packet: 0x03fe
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03fe, -1)
#endif

// Packet: 0x03ff
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x03ff, -1)
#endif

// Packet: 0x0400
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0400, -1)
#endif

// Packet: 0x0401
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0401, -1)
#endif

// Packet: 0x0402
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0402, -1)
#endif

// Packet: 0x0403
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0403, -1)
#endif

// Packet: 0x0404
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0404, -1)
#endif

// Packet: 0x0405
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0405, -1)
#endif

// Packet: 0x0406
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0406, -1)
#endif

// Packet: 0x0407
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0407, -1)
#endif

// Packet: 0x0408
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0408, -1)
#endif

// Packet: 0x0409
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0409, -1)
#endif

// Packet: 0x040a
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x040a, -1)
#endif

// Packet: 0x040b
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x040b, -1)
#endif

// Packet: 0x040c
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x040c, -1)
#endif

// Packet: 0x040d
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x040d, -1)
#endif

// Packet: 0x040e
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x040e, -1)
#endif

// Packet: 0x040f
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x040f, -1)
#endif

// Packet: 0x0410
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0410, -1)
#endif

// Packet: 0x0411
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0411, -1)
#endif

// Packet: 0x0412
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0412, -1)
#endif

// Packet: 0x0413
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0413, -1)
#endif

// Packet: 0x0414
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0414, -1)
#endif

// Packet: 0x0415
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0415, -1)
#endif

// Packet: 0x0416
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0416, -1)
#endif

// Packet: 0x0417
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0417, -1)
#endif

// Packet: 0x0418
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0418, -1)
#endif

// Packet: 0x0419
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0419, -1)
#endif

// Packet: 0x041a
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x041a, -1)
#endif

// Packet: 0x041b
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x041b, -1)
#endif

// Packet: 0x041c
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x041c, -1)
#endif

// Packet: 0x041d
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x041d, -1)
#endif

// Packet: 0x041e
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x041e, -1)
#endif

// Packet: 0x041f
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x041f, -1)
#endif

// Packet: 0x0420
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0420, -1)
#endif

// Packet: 0x0421
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0421, -1)
#endif

// Packet: 0x0422
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0422, -1)
#endif

// Packet: 0x0423
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0423, -1)
#endif

// Packet: 0x0424
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0424, -1)
#endif

// Packet: 0x0425
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0425, -1)
#endif

// Packet: 0x0426
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0426, -1)
#endif

// Packet: 0x0427
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0427, -1)
#endif

// Packet: 0x0428
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0428, -1)
#endif

// Packet: 0x0429
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0429, -1)
#endif

// Packet: 0x042a
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x042a, -1)
#endif

// Packet: 0x042b
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x042b, -1)
#endif

// Packet: 0x042c
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x042c, -1)
#endif

// Packet: 0x042d
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x042d, -1)
#endif

// Packet: 0x042e
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x042e, -1)
#endif

// Packet: 0x042f
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x042f, -1)
#endif

// Packet: 0x0430
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0430, -1)
#endif

// Packet: 0x0431
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0431, -1)
#endif

// Packet: 0x0432
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0432, -1)
#endif

// Packet: 0x0433
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0433, -1)
#endif

// Packet: 0x0434
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0434, -1)
#endif

// Packet: 0x0435
#if PACKETVER >= 20101123
// removed
#elif PACKETVER >= 20100105
packetLen(0x0435, -1)
#endif

// Packet: 0x0436
packetLen(0x0436, 19)

// Packet: 0x0437
packetLen(0x0437, 7)

// Packet: 0x0438
packetLen(0x0438, 10)

// Packet: 0x0439
packetLen(0x0439, 8)

// Packet: 0x043d
packetLen(0x043d, 8)

// Packet: 0x043e
packetLen(0x043e, -1)

// Packet: 0x043f
packetLen(0x043f, 25)

// Packet: 0x0440
packetLen(0x0440, 10)

// Packet: 0x0441
packetLen(0x0441, 4)

// Packet: 0x0442
#if PACKETVER >= 20100817
packetLen(0x0442, -1)
#elif PACKETVER >= 20100105
packetLen(0x0442, 8)
#endif

// Packet: 0x0443
packetLen(0x0443, 8)

// Packet: 0x0444
packetLen(0x0444, -1)

// Packet: 0x0445
packetLen(0x0445, 10)

// Packet: 0x0446
packetLen(0x0446, 14)

// Packet: 0x0447
packetLen(0x0447, 2)

// Packet: 0x0448
packetLen(0x0448, -1)

// Packet: 0x044a
packetLen(0x044a, 6)

// Packet: 0x044b
packetLen(0x044b, 2)

// Packet: 0x07d0
#if PACKETVER >= 20100701
// removed
#elif PACKETVER >= 20100105
packetLen(0x07d0, 6)
#endif

// Packet: 0x07d1
#if PACKETVER >= 20100701
// removed
#elif PACKETVER >= 20100105
packetLen(0x07d1, 2)
#endif

// Packet: 0x07d2
#if PACKETVER >= 20100701
// removed
#elif PACKETVER >= 20100105
packetLen(0x07d2, -1)
#endif

// Packet: 0x07d3
#if PACKETVER >= 20100701
// removed
#elif PACKETVER >= 20100105
packetLen(0x07d3, 4)
#endif

// Packet: 0x07d4
#if PACKETVER >= 20100701
// removed
#elif PACKETVER >= 20100105
packetLen(0x07d4, 4)
#endif

// Packet: 0x07d5
#if PACKETVER >= 20100701
// removed
#elif PACKETVER >= 20100105
packetLen(0x07d5, 4)
#endif

// Packet: 0x07d6
#if PACKETVER >= 20100701
// removed
#elif PACKETVER >= 20100105
packetLen(0x07d6, 4)
#endif

// Packet: 0x07d7
packetLen(0x07d7, 8)

// Packet: 0x07d8
packetLen(0x07d8, 8)

// Packet: 0x07d9
packetLen(0x07d9, 268)

// Packet: 0x07da
packetLen(0x07da, 6)

// Packet: 0x07db
packetLen(0x07db, 8)

// Packet: 0x07dc
packetLen(0x07dc, 6)

// Packet: 0x07dd
packetLen(0x07dd, 54)

// Packet: 0x07de
packetLen(0x07de, 30)

// Packet: 0x07df
packetLen(0x07df, 54)

// Packet: 0x07e0
packetLen(0x07e0, 58)

// Packet: 0x07e1
packetLen(0x07e1, 15)

// Packet: 0x07e2
packetLen(0x07e2, 8)

// Packet: 0x07e3
packetLen(0x07e3, 6)

// Packet: 0x07e4
packetLen(0x07e4, -1)

// Packet: 0x07e5
#if PACKETVER >= 20101012
packetLen(0x07e5, 4)
#elif PACKETVER >= 20100105
packetLen(0x07e5, 8)
#endif

// Packet: 0x07e6
packetLen(0x07e6, 8)

// Packet: 0x07e7
packetLen(0x07e7, 32)

// Packet: 0x07e8
packetLen(0x07e8, -1)

// Packet: 0x07e9
packetLen(0x07e9, 5)

// Packet: 0x07ea
packetLen(0x07ea, 2)

// Packet: 0x07eb
packetLen(0x07eb, -1)

// Packet: 0x07ec
packetLen(0x07ec, 8)

// Packet: 0x07ed
packetLen(0x07ed, 10)

// Packet: 0x07ee
packetLen(0x07ee, 6)

// Packet: 0x07ef
packetLen(0x07ef, 8)

// Packet: 0x07f0
#if PACKETVER >= 20100209
packetLen(0x07f0, 6)
#elif PACKETVER >= 20100105
packetLen(0x07f0, 8)
#endif

// Packet: 0x07f1
#if PACKETVER >= 20100629
packetLen(0x07f1, 18)
#elif PACKETVER >= 20100105
packetLen(0x07f1, 15)
#endif

// Packet: 0x07f2
#if PACKETVER >= 20100629
packetLen(0x07f2, 8)
#elif PACKETVER >= 20100105
packetLen(0x07f2, 6)
#endif

// Packet: 0x07f3
#if PACKETVER >= 20100629
packetLen(0x07f3, 6)
#elif PACKETVER >= 20100105
packetLen(0x07f3, 4)
#endif

// Packet: 0x07f4
packetLen(0x07f4, 3)

// Packet: 0x07f5
packetLen(0x07f5, 6)

// Packet: 0x07f6
packetLen(0x07f6, 14)

// Packet: 0x07f7
packetLen(0x07f7, -1)

// Packet: 0x07f8
packetLen(0x07f8, -1)

// Packet: 0x07f9
packetLen(0x07f9, -1)

// Packet: 0x07fa
packetLen(0x07fa, 8)

// Packet: 0x07fb
packetLen(0x07fb, 25)

// Packet: 0x07fc
packetLen(0x07fc, 10)

// Packet: 0x07fd
packetLen(0x07fd, -1)

// Packet: 0x07fe
packetLen(0x07fe, 26)

// Packet: 0x07ff
packetLen(0x07ff, -1)

// Packet: 0x0800
packetLen(0x0800, -1)

// Packet: 0x0801
packetLen(0x0801, -1)

// Packet: 0x0802
packetLen(0x0802, 18)

// Packet: 0x0803
packetLen(0x0803, 4)

// Packet: 0x0804
packetLen(0x0804, 14)

// Packet: 0x0805
packetLen(0x0805, -1)

// Packet: 0x0806
packetLen(0x0806, 2)

// Packet: 0x0807
packetLen(0x0807, 4)

// Packet: 0x0808
packetLen(0x0808, 14)

// Packet: 0x0809
packetLen(0x0809, 50)

// Packet: 0x080a
packetLen(0x080a, 18)

// Packet: 0x080b
packetLen(0x080b, 6)

// Packet: 0x080c
#if PACKETVER >= 20100113
packetLen(0x080c, 2)
#endif

// Packet: 0x080d
#if PACKETVER >= 20100113
packetLen(0x080d, 3)
#endif

// Packet: 0x080e
#if PACKETVER >= 20100119
packetLen(0x080e, 14)
#endif

// Packet: 0x080f
#if PACKETVER >= 20100223
packetLen(0x080f, 20)
#endif

// Packet: 0x0810
#if PACKETVER >= 20100303
packetLen(0x0810, 3)
#endif

// Packet: 0x0811
#if PACKETVER >= 20100303
packetLen(0x0811, -1)
#endif

// Packet: 0x0812
#if PACKETVER >= 20100420
packetLen(0x0812, 8)
#elif PACKETVER >= 20100303
packetLen(0x0812, 86)
#endif

// Packet: 0x0813
#if PACKETVER >= 20100309
packetLen(0x0813, -1)
#elif PACKETVER >= 20100303
packetLen(0x0813, 6)
#endif

// Packet: 0x0814
#if PACKETVER >= 20100420
packetLen(0x0814, 86)
#elif PACKETVER >= 20100309
packetLen(0x0814, 2)
#elif PACKETVER >= 20100303
packetLen(0x0814, 6)
#endif

// Packet: 0x0815
#if PACKETVER >= 20100420
packetLen(0x0815, 2)
#elif PACKETVER >= 20100309
packetLen(0x0815, 6)
#elif PACKETVER >= 20100303
packetLen(0x0815, -1)
#endif

// Packet: 0x0816
#if PACKETVER >= 20100309
packetLen(0x0816, 6)
#endif

// Packet: 0x0817
#if PACKETVER >= 20100420
packetLen(0x0817, 6)
#elif PACKETVER >= 20100303
packetLen(0x0817, -1)
#endif

// Packet: 0x0818
#if PACKETVER >= 20100309
packetLen(0x0818, -1)
#elif PACKETVER >= 20100303
packetLen(0x0818, 6)
#endif

// Packet: 0x0819
#if PACKETVER >= 20100420
packetLen(0x0819, -1)
#elif PACKETVER >= 20100309
packetLen(0x0819, 10)
#elif PACKETVER >= 20100303
packetLen(0x0819, 4)
#endif

// Packet: 0x081a
#if PACKETVER >= 20100420
packetLen(0x081a, 4)
#elif PACKETVER >= 20100413
packetLen(0x081a, 10)
#elif PACKETVER >= 20100406
packetLen(0x081a, 6)
#elif PACKETVER >= 20100309
packetLen(0x081a, 4)
#endif

// Packet: 0x081b
#if PACKETVER >= 20100420
packetLen(0x081b, 10)
#elif PACKETVER >= 20100414
packetLen(0x081b, 8)
#elif PACKETVER >= 20100309
packetLen(0x081b, 4)
#endif

// Packet: 0x081c
#if PACKETVER >= 20100420
packetLen(0x081c, 10)
#elif PACKETVER >= 20100309
packetLen(0x081c, 6)
#endif

// Packet: 0x081d
#if PACKETVER >= 20100309
packetLen(0x081d, 22)
#endif

// Packet: 0x081e
#if PACKETVER >= 20100309
packetLen(0x081e, 8)
#endif

// Packet: 0x081f
#if PACKETVER >= 20100323
packetLen(0x081f, -1)
#endif

// Packet: 0x0820
#if PACKETVER >= 20100413
packetLen(0x0820, 11)
#endif

// Packet: 0x0821
#if PACKETVER >= 20100413
packetLen(0x0821, 2)
#endif

// Packet: 0x0822
#if PACKETVER >= 20100413
packetLen(0x0822, 9)
#endif

// Packet: 0x0823
#if PACKETVER >= 20100413
packetLen(0x0823, -1)
#endif

// Packet: 0x0824
#if PACKETVER >= 20100420
packetLen(0x0824, 6)
#endif

// Packet: 0x0825
#if PACKETVER >= 20100601
packetLen(0x0825, -1)
#endif

// Packet: 0x0826
#if PACKETVER >= 20101019
// removed
#elif PACKETVER >= 20100601
packetLen(0x0826, 4)
#endif

// Packet: 0x0827
#if PACKETVER >= 20100713
packetLen(0x0827, 6)
#endif

// Packet: 0x0828
#if PACKETVER >= 20100713
packetLen(0x0828, 14)
#endif

// Packet: 0x0829
#if PACKETVER >= 20100728
packetLen(0x0829, 12)
#elif PACKETVER >= 20100713
packetLen(0x0829, 6)
#endif

// Packet: 0x082a
#if PACKETVER >= 20100713
packetLen(0x082a, 10)
#endif

// Packet: 0x082b
#if PACKETVER >= 20100713
packetLen(0x082b, 6)
#endif

// Packet: 0x082c
#if PACKETVER >= 20100720
packetLen(0x082c, 10)
#elif PACKETVER >= 20100713
packetLen(0x082c, 14)
#endif

// Packet: 0x082d
#if PACKETVER >= 20101221
packetLen(0x082d, -1)
#endif

// Packet: 0x0835
#if PACKETVER >= 20100601
packetLen(0x0835, -1)
#endif

// Packet: 0x0836
#if PACKETVER >= 20100601
packetLen(0x0836, -1)
#endif

// Packet: 0x0837
#if PACKETVER >= 20100601
packetLen(0x0837, 3)
#endif

// Packet: 0x0838
#if PACKETVER >= 20100608
packetLen(0x0838, 2)
#elif PACKETVER >= 20100601
packetLen(0x0838, 3)
#endif

// Packet: 0x0839
#if PACKETVER >= 20100608
packetLen(0x0839, 66)
#endif

// Packet: 0x083a
#if PACKETVER >= 20100701
packetLen(0x083a, 5)
#elif PACKETVER >= 20100608
packetLen(0x083a, 4)
#endif

// Packet: 0x083b
#if PACKETVER >= 20100608
packetLen(0x083b, 2)
#endif

// Packet: 0x083c
#if PACKETVER >= 20100608
packetLen(0x083c, 12)
#endif

// Packet: 0x083d
#if PACKETVER >= 20100608
packetLen(0x083d, 6)
#endif

// Packet: 0x083e
#if PACKETVER >= 20100615
packetLen(0x083e, 26)
#endif

// Packet: 0x083f
#if PACKETVER >= 20100629
// removed
#elif PACKETVER >= 20100622
packetLen(0x083f, 22)
#endif

// Packet: 0x0840
#if PACKETVER >= 20100713
packetLen(0x0840, -1)
#endif

// Packet: 0x0841
#if PACKETVER >= 20100714
packetLen(0x0841, 4)
#elif PACKETVER >= 20100713
packetLen(0x0841, 19)
#endif

// Packet: 0x0842
#if PACKETVER >= 20100720
packetLen(0x0842, 6)
#endif

// Packet: 0x0843
#if PACKETVER >= 20100720
packetLen(0x0843, 6)
#endif

// Packet: 0x0844
#if PACKETVER >= 20100824
packetLen(0x0844, 2)
#endif

// Packet: 0x0845
#if PACKETVER >= 20100824
packetLen(0x0845, 10)
#endif

// Packet: 0x0846
#if PACKETVER >= 20100824
packetLen(0x0846, 4)
#endif

// Packet: 0x0847
#if PACKETVER >= 20100824
packetLen(0x0847, -1)
#endif

// Packet: 0x0848
#if PACKETVER >= 20100824
packetLen(0x0848, -1)
#endif

// Packet: 0x0849
#if PACKETVER >= 20100914
packetLen(0x0849, 16)
#elif PACKETVER >= 20100824
packetLen(0x0849, 12)
#endif

// Packet: 0x084a
#if PACKETVER >= 20101019
packetLen(0x084a, 2)
#endif

// Packet: 0x084b
#if PACKETVER >= 20101019
packetLen(0x084b, 19)
#endif

// Packet: 0x084c
#if PACKETVER >= 20101026
packetLen(0x084c, 10)
#endif

// Packet: 0x084d
#if PACKETVER >= 20101026
packetLen(0x084d, 10)
#endif

// Packet: 0x084e
#if PACKETVER >= 20101026
packetLen(0x084e, 5)
#endif

// Packet: 0x084f
#if PACKETVER >= 20101026
packetLen(0x084f, 6)
#endif

// Packet: 0x0850
#if PACKETVER >= 20101026
packetLen(0x0850, 7)
#endif

// Packet: 0x0851
#if PACKETVER >= 20101102
packetLen(0x0851, -1)
#endif

// Packet: 0x0852
#if PACKETVER >= 20101102
packetLen(0x0852, 2)
#endif

// Packet: 0x0853
#if PACKETVER >= 20101102
packetLen(0x0853, -1)
#endif

// Packet: 0x0854
#if PACKETVER >= 20101102
packetLen(0x0854, -1)
#endif

// Packet: 0x0855
#if PACKETVER >= 20101102
packetLen(0x0855, 6)
#endif

// Packet: 0x0856
#if PACKETVER >= 20101123
packetLen(0x0856, -1)
#endif

// Packet: 0x0857
#if PACKETVER >= 20101123
packetLen(0x0857, -1)
#endif

// Packet: 0x0858
#if PACKETVER >= 20101123
packetLen(0x0858, -1)
#endif

// Packet: 0x0859
#if PACKETVER >= 20101123
packetLen(0x0859, -1)
#endif

// Packet: 0x085a
#if PACKETVER >= 20101123
packetLen(0x085a, 2)
#endif

// Packet: 0x085b
#if PACKETVER >= 20101123
packetLen(0x085b, 2)
#endif

// Packet: 0x085c
#if PACKETVER >= 20101123
packetLen(0x085c, 2)
#endif

// Packet: 0x085d
#if PACKETVER >= 20101123
packetLen(0x085d, 2)
#endif

// Packet: 0x085e
#if PACKETVER >= 20101123
packetLen(0x085e, 2)
#endif

// Packet: 0x085f
#if PACKETVER >= 20101123
packetLen(0x085f, 2)
#endif

// Packet: 0x0860
#if PACKETVER >= 20101123
packetLen(0x0860, 2)
#endif

// Packet: 0x0861
#if PACKETVER >= 20101123
packetLen(0x0861, 2)
#endif

// Packet: 0x0862
#if PACKETVER >= 20101123
packetLen(0x0862, 2)
#endif

// Packet: 0x0863
#if PACKETVER >= 20101123
packetLen(0x0863, 2)
#endif

// Packet: 0x0864
#if PACKETVER >= 20101123
packetLen(0x0864, 2)
#endif

// Packet: 0x0865
#if PACKETVER >= 20101123
packetLen(0x0865, 2)
#endif

// Packet: 0x0866
#if PACKETVER >= 20101123
packetLen(0x0866, 2)
#endif

// Packet: 0x0867
#if PACKETVER >= 20101123
packetLen(0x0867, 2)
#endif

// Packet: 0x0868
#if PACKETVER >= 20101123
packetLen(0x0868, 2)
#endif

// Packet: 0x0869
#if PACKETVER >= 20101123
packetLen(0x0869, 2)
#endif

// Packet: 0x086a
#if PACKETVER >= 20101123
packetLen(0x086a, 2)
#endif

// Packet: 0x086b
#if PACKETVER >= 20101123
packetLen(0x086b, 2)
#endif

// Packet: 0x086c
#if PACKETVER >= 20101123
packetLen(0x086c, 2)
#endif

// Packet: 0x086d
#if PACKETVER >= 20101123
packetLen(0x086d, 2)
#endif

// Packet: 0x086e
#if PACKETVER >= 20101123
packetLen(0x086e, 2)
#endif

// Packet: 0x086f
#if PACKETVER >= 20101123
packetLen(0x086f, 2)
#endif

// Packet: 0x0870
#if PACKETVER >= 20101123
packetLen(0x0870, 2)
#endif

// Packet: 0x0871
#if PACKETVER >= 20101123
packetLen(0x0871, 2)
#endif

// Packet: 0x0872
#if PACKETVER >= 20101123
packetLen(0x0872, 2)
#endif

// Packet: 0x0873
#if PACKETVER >= 20101123
packetLen(0x0873, 2)
#endif

// Packet: 0x0874
#if PACKETVER >= 20101123
packetLen(0x0874, 2)
#endif

// Packet: 0x0875
#if PACKETVER >= 20101123
packetLen(0x0875, 2)
#endif

// Packet: 0x0876
#if PACKETVER >= 20101123
packetLen(0x0876, 2)
#endif

// Packet: 0x0877
#if PACKETVER >= 20101123
packetLen(0x0877, 2)
#endif

// Packet: 0x0878
#if PACKETVER >= 20101123
packetLen(0x0878, 2)
#endif

// Packet: 0x0879
#if PACKETVER >= 20101123
packetLen(0x0879, 2)
#endif

// Packet: 0x087a
#if PACKETVER >= 20101123
packetLen(0x087a, 2)
#endif

// Packet: 0x087b
#if PACKETVER >= 20101123
packetLen(0x087b, 2)
#endif

// Packet: 0x087c
#if PACKETVER >= 20101123
packetLen(0x087c, 2)
#endif

// Packet: 0x087d
#if PACKETVER >= 20101123
packetLen(0x087d, 2)
#endif

// Packet: 0x087e
#if PACKETVER >= 20101123
packetLen(0x087e, 2)
#endif

// Packet: 0x087f
#if PACKETVER >= 20101123
packetLen(0x087f, 2)
#endif

// Packet: 0x0880
#if PACKETVER >= 20101123
packetLen(0x0880, 2)
#endif

// Packet: 0x0881
#if PACKETVER >= 20101123
packetLen(0x0881, 2)
#endif

// Packet: 0x0882
#if PACKETVER >= 20101123
packetLen(0x0882, 2)
#endif

// Packet: 0x0883
#if PACKETVER >= 20101123
packetLen(0x0883, 2)
#endif

// Packet: 0x0884
#if PACKETVER >= 20101123
packetLen(0x0884, 2)
#endif

// Packet: 0x0885
#if PACKETVER >= 20101123
packetLen(0x0885, 2)
#endif

// Packet: 0x0886
#if PACKETVER >= 20101123
packetLen(0x0886, 2)
#endif

// Packet: 0x0887
#if PACKETVER >= 20101123
packetLen(0x0887, 2)
#endif

// Packet: 0x0888
#if PACKETVER >= 20101123
packetLen(0x0888, 2)
#endif

// Packet: 0x0889
#if PACKETVER >= 20101123
packetLen(0x0889, 2)
#endif

// Packet: 0x088a
#if PACKETVER >= 20101123
packetLen(0x088a, 2)
#endif

// Packet: 0x088b
#if PACKETVER >= 20101123
packetLen(0x088b, 2)
#endif

// Packet: 0x088c
#if PACKETVER >= 20101123
packetLen(0x088c, 2)
#endif

// Packet: 0x088d
#if PACKETVER >= 20101123
packetLen(0x088d, 2)
#endif

// Packet: 0x088e
#if PACKETVER >= 20101123
packetLen(0x088e, 2)
#endif

// Packet: 0x088f
#if PACKETVER >= 20101123
packetLen(0x088f, 2)
#endif

// Packet: 0x0890
#if PACKETVER >= 20101123
packetLen(0x0890, 2)
#endif

// Packet: 0x0891
#if PACKETVER >= 20101123
packetLen(0x0891, 2)
#endif

// Packet: 0x0892
#if PACKETVER >= 20101123
packetLen(0x0892, 2)
#endif

// Packet: 0x0893
#if PACKETVER >= 20101123
packetLen(0x0893, 2)
#endif

// Packet: 0x0894
#if PACKETVER >= 20101123
packetLen(0x0894, 2)
#endif

// Packet: 0x0895
#if PACKETVER >= 20101123
packetLen(0x0895, 2)
#endif

// Packet: 0x0896
#if PACKETVER >= 20101123
packetLen(0x0896, 2)
#endif

// Packet: 0x0897
#if PACKETVER >= 20101123
packetLen(0x0897, 2)
#endif

// Packet: 0x0898
#if PACKETVER >= 20101123
packetLen(0x0898, 2)
#endif

// Packet: 0x0899
#if PACKETVER >= 20101123
packetLen(0x0899, 2)
#endif

// Packet: 0x089a
#if PACKETVER >= 20101123
packetLen(0x089a, 2)
#endif

// Packet: 0x089b
#if PACKETVER >= 20101123
packetLen(0x089b, 2)
#endif

// Packet: 0x089c
#if PACKETVER >= 20101123
packetLen(0x089c, 2)
#endif

// Packet: 0x089d
#if PACKETVER >= 20101123
packetLen(0x089d, 2)
#endif

// Packet: 0x089e
#if PACKETVER >= 20101123
packetLen(0x089e, 2)
#endif

// Packet: 0x089f
#if PACKETVER >= 20101123
packetLen(0x089f, 2)
#endif

// Packet: 0x08a0
#if PACKETVER >= 20101123
packetLen(0x08a0, 2)
#endif

// Packet: 0x08a1
#if PACKETVER >= 20101123
packetLen(0x08a1, 2)
#endif

// Packet: 0x08a2
#if PACKETVER >= 20101123
packetLen(0x08a2, 2)
#endif

// Packet: 0x08a3
#if PACKETVER >= 20101123
packetLen(0x08a3, 2)
#endif

// Packet: 0x08a4
#if PACKETVER >= 20101123
packetLen(0x08a4, 2)
#endif

// Packet: 0x08a5
#if PACKETVER >= 20101123
packetLen(0x08a5, 2)
#endif

// Packet: 0x08a6
#if PACKETVER >= 20101123
packetLen(0x08a6, 2)
#endif

// Packet: 0x08a7
#if PACKETVER >= 20101123
packetLen(0x08a7, 2)
#endif

// Packet: 0x08a8
#if PACKETVER >= 20101123
packetLen(0x08a8, 2)
#endif

// Packet: 0x08a9
#if PACKETVER >= 20101123
packetLen(0x08a9, 2)
#endif

// Packet: 0x08aa
#if PACKETVER >= 20101123
packetLen(0x08aa, 2)
#endif

// Packet: 0x08ab
#if PACKETVER >= 20101123
packetLen(0x08ab, 2)
#endif

// Packet: 0x08ac
#if PACKETVER >= 20101123
packetLen(0x08ac, 2)
#endif

// Packet: 0x08ad
#if PACKETVER >= 20101123
packetLen(0x08ad, 2)
#endif

// Packet: 0x08af
#if PACKETVER >= 20101228
packetLen(0x08af, 10)
#endif

// Packet: 0x08b1
#if PACKETVER >= 20101221
packetLen(0x08b1, -1)
#endif

// Packet: 0x08b2
#if PACKETVER >= 20101228
packetLen(0x08b2, -1)
#endif


#endif /* COMMON_PACKETS2010_LEN_RE_H */