summaryrefslogtreecommitdiff
path: root/FS/FS/raddb.pm
blob: a6ed49be639a4503e1f740b650c1fcdb1c758768 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
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
3573
3574
3575
3576
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
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
package FS::raddb;
use vars qw(%attrib);

%attrib = (
  '3com_connect_id'          => '3Com-Connect_Id',
  '3com_encryption_type'     => '3Com-Encryption-Type',
  '3com_end_date'            => '3Com-End-Date',
  '3com_ip_host_addr'        => '3Com-Ip-Host-Addr',
  '3com_mobility_profile'    => '3Com-Mobility-Profile',
  '3com_nas_startup_timesta' => '3Com-NAS-Startup-Timestamp',
  '3com_product_id'          => '3Com-Product-ID',
  '3com_ssid'                => '3Com-SSID',
  '3com_time_of_day'         => '3Com-Time-Of-Day',
  '3com_url'                 => '3Com-URL',
  '3com_user_access_level'   => '3Com-User-Access-Level',
  '3com_vlan_name'           => '3Com-VLAN-Name',
  '3gpp2_accounting_contain' => '3GPP2-Accounting-Container',
  '3gpp2_acct_stop_trigger'  => '3GPP2-Acct-Stop-Trigger',
  '3gpp2_active_time'        => '3GPP2-Active-Time',
  '3gpp2_airlink_priority'   => '3GPP2-Airlink-Priority',
  '3gpp2_airlink_record_typ' => '3GPP2-Airlink-Record-Type',
  '3gpp2_airlink_sequence_n' => '3GPP2-Airlink-Sequence-Number',
  '3gpp2_allowed_diffserv_m' => '3GPP2-Allowed-Diffserv-Marking',
  '3gpp2_allowed_persistent' => '3GPP2-Allowed-Persistent-TFTs',
  '3gpp2_bad_ppp_frame_coun' => '3GPP2-Bad-PPP-Frame-Count',
  '3gpp2_begin_session'      => '3GPP2-Begin-Session',
  '3gpp2_bsid'               => '3GPP2-BSID',
  '3gpp2_carrier_id'         => '3GPP2-Carrier-ID',
  '3gpp2_compulsory_tunnel_' => '3GPP2-Compulsory-Tunnel-Indicator',
  '3gpp2_correlation_id'     => '3GPP2-Correlation-Id',
  '3gpp2_dcch_frame_size'    => '3GPP2-DCCH-Frame-Size',
  '3gpp2_diffserv_class_opt' => '3GPP2-Diffserv-Class-Option',
  '3gpp2_disconnect_reason'  => '3GPP2-Disconnect-Reason',
  '3gpp2_dns_server_ip_addr' => '3GPP2-DNS-Server-IP-Address',
  '3gpp2_dns_update_capabil' => '3GPP2-DNS-Update-Capability',
  '3gpp2_dns_update_require' => '3GPP2-DNS-Update-Required',
  '3gpp2_esn'                => '3GPP2-ESN',
  '3gpp2_fch_frame_size'     => '3GPP2-FCH-Frame-Size',
  '3gpp2_foreign_agent_addr' => '3GPP2-Foreign-Agent-Address',
  '3gpp2_forward_dcch_mux_o' => '3GPP2-Forward-DCCH-Mux-Option',
  '3gpp2_forward_dcch_rc'    => '3GPP2-Forward-DCCH-RC',
  '3gpp2_forward_fch_mux_op' => '3GPP2-Forward-FCH-Mux-Option',
  '3gpp2_forward_fch_rc'     => '3GPP2-Forward-FCH-RC',
  '3gpp2_forward_pdch_rc'    => '3GPP2-Forward-PDCH-RC',
  '3gpp2_forward_traffic_ty' => '3GPP2-Forward-Traffic-Type',
  '3gpp2_gmt_time_zone_offs' => '3GPP2-GMT-Time-Zone-Offset',
  '3gpp2_ha_authorised'      => '3GPP2-HA-Authorised',
  '3gpp2_ha_request'         => '3GPP2-HA-Request',
  '3gpp2_home_agent_ip_addr' => '3GPP2-Home-Agent-IP-Address',
  '3gpp2_ike_preshared_secr' => '3GPP2-Ike-Preshared-Secret-Request',
  '3gpp2_inbound_mobile_ip_' => '3GPP2-Inbound-Mobile-IP-Sig-Octets',
  '3gpp2_ip_qos'             => '3GPP2-IP-QoS',
  '3gpp2_ip_technology'      => '3GPP2-IP-Technology',
  '3gpp2_ip_ver_authorised'  => '3GPP2-IP-Ver-Authorised',
  '3gpp2_keyid'              => '3GPP2-KeyID',
  '3gpp2_last_user_activity' => '3GPP2-Last-User-Activity-Time',
  '3gpp2_meid'               => '3GPP2-MEID',
  '3gpp2_mip_lifetime'       => '3GPP2-MIP-Lifetime',
  '3gpp2_mipv4_mesg_id'      => '3GPP2-MIPv4-Mesg-Id',
  '3gpp2_mn_aaa_removal_ind' => '3GPP2-MN-AAA-Removal-Indication',
  '3gpp2_mn_ha_shared_key'   => '3GPP2-MN-HA-Shared-Key',
  '3gpp2_mn_ha_spi'          => '3GPP2-MN-HA-SPI',
  '3gpp2_module_orig_term_i' => '3GPP2-Module-Orig-Term-Indicator',
  '3gpp2_number_active_tran' => '3GPP2-Number-Active-Transitions',
  '3gpp2_originating_number' => '3GPP2-Originating-Number-SDBs',
  '3gpp2_originating_sdb_oc' => '3GPP2-Originating-SDB-OCtet-Count',
  '3gpp2_outbound_mobile_ip' => '3GPP2-Outbound-Mobile-IP-Sig-Octets',
  '3gpp2_pcf_ip_address'     => '3GPP2-PCF-IP-Address',
  '3gpp2_pre_shared_secret'  => '3GPP2-Pre-Shared-Secret',
  '3gpp2_prepaid_acct_capab' => '3GPP2-Prepaid-acct-Capability',
  '3gpp2_prepaid_acct_quota' => '3GPP2-Prepaid-Acct-Quota',
  '3gpp2_prepaid_tariff_swi' => '3GPP2-PrePaid-Tariff-Switching',
  '3gpp2_received_hdlc_octe' => '3GPP2-Received-HDLC-Octets',
  '3gpp2_release_indicator'  => '3GPP2-Release-Indicator',
  '3gpp2_remote_address_tab' => '3GPP2-Remote-Address-Table-Index',
  '3gpp2_remote_ip_address'  => '3GPP2-Remote-IP-Address',
  '3gpp2_remote_ipv4_addr_o' => '3GPP2-Remote-IPv4-Addr-Octet-Count',
  '3gpp2_remote_ipv6_addres' => '3GPP2-Remote-IPv6-Address',
  '3gpp2_remote_ipv6_octet_' => '3GPP2-Remote-IPv6-Octet-Count',
  '3gpp2_reverse_dcch_mux_o' => '3GPP2-Reverse-DCCH-Mux-Option',
  '3gpp2_reverse_dhhc_rc'    => '3GPP2-Reverse-DHHC-RC',
  '3gpp2_reverse_fch_mux_op' => '3GPP2-Reverse-FCH-Mux-Option',
  '3gpp2_reverse_fch_rc'     => '3GPP2-Reverse-FCH-RC',
  '3gpp2_reverse_traffic_ty' => '3GPP2-Reverse-Traffic-Type',
  '3gpp2_reverse_tunnel_spe' => '3GPP2-Reverse-Tunnel-Spec',
  '3gpp2_rn_packet_data_ina' => '3GPP2-RN-Packet-Data-Inactivity-Timer',
  '3gpp2_s_key'              => '3GPP2-S-Key',
  '3gpp2_s_lifetime'         => '3GPP2-S-Lifetime',
  '3gpp2_s_request'          => '3GPP2-S-Request',
  '3gpp2_security_level'     => '3GPP2-Security-Level',
  '3gpp2_service_option'     => '3GPP2-Service-Option',
  '3gpp2_service_option_pro' => '3GPP2-Service-Option-Profile',
  '3gpp2_service_reference_' => '3GPP2-Service-Reference-Id',
  '3gpp2_session_continue'   => '3GPP2-Session-Continue',
  '3gpp2_session_terminatio' => '3GPP2-Session-Termination-Capability',
  '3gpp2_terminating_number' => '3GPP2-Terminating-Number-SDBs',
  '3gpp2_terminating_sdb_oc' => '3GPP2-Terminating-SDB-Octet-Count',
  '3gpp2_user_id'            => '3GPP2-User-Id',
  '3gpp_allocate_ip_type'    => '3GPP-Allocate-IP-Type',
  '3gpp_camel_charging_info' => '3GPP-Camel-Charging-Info',
  '3gpp_charging_characteri' => '3GPP-Charging-Characteristics',
  '3gpp_charging_gateway_ad' => '3GPP-Charging-Gateway-Address',
  '3gpp_charging_gateway_ip' => '3GPP-Charging-Gateway-IPv6-Address',
  '3gpp_charging_id'         => '3GPP-Charging-ID',
  '3gpp_ggsn_address'        => '3GPP-GGSN-Address',
  '3gpp_ggsn_ipv6_address'   => '3GPP-GGSN-IPv6-Address',
  '3gpp_ggsn_mcc_mnc'        => '3GPP-GGSN-MCC-MNC',
  '3gpp_gprs_negotiated_qos' => '3GPP-GPRS-Negotiated-QoS-profile',
  '3gpp_imeisv'              => '3GPP-IMEISV',
  '3gpp_imsi'                => '3GPP-IMSI',
  '3gpp_imsi_mcc_mnc'        => '3GPP-IMSI-MCC-MNC',
  '3gpp_ipv6_dns_servers'    => '3GPP-IPv6-DNS-Servers',
  '3gpp_location_info'       => '3GPP-Location-Info',
  '3gpp_ms_time_zone'        => '3GPP-MS-Time-Zone',
  '3gpp_negotiated_dscp'     => '3GPP-Negotiated-DSCP',
  '3gpp_nsapi'               => '3GPP-NSAPI',
  '3gpp_packet_filter'       => '3GPP-Packet-Filter',
  '3gpp_pdp_type'            => '3GPP-PDP-Type',
  '3gpp_rat_type'            => '3GPP-RAT-Type',
  '3gpp_selection_mode'      => '3GPP-Selection-Mode',
  '3gpp_session_stop_indica' => '3GPP-Session-Stop-Indicator',
  '3gpp_sgsn_address'        => '3GPP-SGSN-Address',
  '3gpp_sgsn_ipv6_address'   => '3GPP-SGSN-IPv6-Address',
  '3gpp_sgsn_mcc_mnc'        => '3GPP-SGSN-MCC-MNC',
  '3gpp_teardown_indicator'  => '3GPP-Teardown-Indicator',
  'a_al_aaa'                 => 'A-AL-AAA',
  'a_al_alarm'               => 'A-AL-Alarm',
  'a_al_atm'                 => 'A-AL-ATM',
  'a_al_cluster'             => 'A-AL-Cluster',
  'a_al_cpeproxy'            => 'A-AL-CPEProxy',
  'a_al_description'         => 'A-AL-Description',
  'a_al_dhcp'                => 'A-AL-DHCP',
  'a_al_eqp'                 => 'A-AL-EQP',
  'a_al_igmp'                => 'A-AL-IGMP',
  'a_al_ip'                  => 'A-AL-IP',
  'a_al_maintenance'         => 'A-AL-Maintenance',
  'a_al_maintenance_backwar' => 'A-AL-MAINTENANCE-BACKWARD',
  'a_al_pppoe'               => 'A-AL-PPPoE',
  'a_al_prompt'              => 'A-AL-Prompt',
  'a_al_provisioning'        => 'A-AL-Provisioning',
  'a_al_provisioning_backwa' => 'A-AL-PROVISIONING-BACKWARD',
  'a_al_pwd_timeout'         => 'A-AL-Pwd-Timeout',
  'a_al_qos'                 => 'A-AL-QoS',
  'a_al_security'            => 'A-AL-Security',
  'a_al_slot_numbering'      => 'A-AL-SLOT-NUMBERING',
  'a_al_swmgt'               => 'A-AL-SWMgt',
  'a_al_test'                => 'A-AL-Test',
  'a_al_test_backward'       => 'A-AL-TEST-BACKWARD',
  'a_al_tl1_security'        => 'A-AL-TL1-Security',
  'a_al_tl1_security_backwa' => 'A-AL-TL1-SECURITY-BACKWARD',
  'a_al_transport'           => 'A-AL-Transport',
  'a_al_vlan'                => 'A-AL-VLAN',
  'a_al_xdsl'                => 'A-AL-XDSL',
  'a_esam_qos_params'        => 'A-ESAM-QOS-Params',
  'a_esam_qos_profile_name'  => 'A-ESAM-QOS-Profile-Name',
  'a_esam_termination_cause' => 'A-ESAM-Termination-Cause',
  'a_esam_vlan_id'           => 'A-ESAM-Vlan-Id',
  'a_esam_vrf_name'          => 'A-ESAM-VRF-Name',
  'aat_assign_ip_pool'       => 'AAT-Assign-IP-Pool',
  'aat_atm_direct'           => 'AAT-ATM-Direct',
  'aat_atm_traffic_profile'  => 'AAT-ATM-Traffic-Profile',
  'aat_atm_vci'              => 'AAT-ATM-VCI',
  'aat_atm_vpi'              => 'AAT-ATM-VPI',
  'aat_auth_type'            => 'AAT-Auth-Type',
  'aat_client_assign_dns'    => 'AAT-Client-Assign-DNS',
  'aat_client_primary_dns'   => 'AAT-Client-Primary-DNS',
  'aat_client_primary_wins_' => 'AAT-Client-Primary-WINS-NBNS',
  'aat_client_secondary_dns' => 'AAT-Client-Secondary-DNS',
  'aat_client_secondary_win' => 'AAT-Client-Secondary-WINS-NBNS',
  'aat_data_filter'          => 'AAT-Data-Filter',
  'aat_filter'               => 'AAT-Filter',
  'aat_fr_direct'            => 'AAT-FR-Direct',
  'aat_fr_direct_dlci'       => 'AAT-FR-Direct-DLCI',
  'aat_fr_direct_profile'    => 'AAT-FR-Direct-Profile',
  'aat_home_agent_password'  => 'AAT-Home-Agent-Password',
  'aat_home_agent_udp_port'  => 'AAT-Home-Agent-UDP-Port',
  'aat_home_network_name'    => 'AAT-Home-Network-Name',
  'aat_input_octets_diff'    => 'AAT-Input-Octets-Diff',
  'aat_ip_direct'            => 'AAT-IP-Direct',
  'aat_ip_pool_definition'   => 'AAT-IP-Pool-Definition',
  'aat_ip_tos'               => 'AAT-IP-TOS',
  'aat_ip_tos_apply_to'      => 'AAT-IP-TOS-Apply-To',
  'aat_ip_tos_precedence'    => 'AAT-IP-TOS-Precedence',
  'aat_mcast_client'         => 'AAT-MCast-Client',
  'aat_modem_answer_string'  => 'AAT-Modem-Answer-String',
  'aat_modem_port_no'        => 'AAT-Modem-Port-No',
  'aat_modem_shelf_no'       => 'AAT-Modem-Shelf-No',
  'aat_modem_slot_no'        => 'AAT-Modem-Slot-No',
  'aat_output_octets_diff'   => 'AAT-Output-Octets-Diff',
  'aat_ppp_address'          => 'AAT-PPP-Address',
  'aat_ppp_netmask'          => 'AAT-PPP-Netmask',
  'aat_primary_home_agent'   => 'AAT-Primary-Home-Agent',
  'aat_qoa'                  => 'AAT-Qoa',
  'aat_qos'                  => 'AAT-Qos',
  'aat_require_auth'         => 'AAT-Require-Auth',
  'aat_secondary_home_agent' => 'AAT-Secondary-Home-Agent',
  'aat_source_ip_check'      => 'AAT-Source-IP-Check',
  'aat_user_mac_address'     => 'AAT-User-MAC-Address',
  'aat_vrouter_name'         => 'AAT-Vrouter-Name',
  'acc_access_community'     => 'Acc-Access-Community',
  'acc_access_partition'     => 'Acc-Access-Partition',
  'acc_acct_on_off_reason'   => 'Acc-Acct-On-Off-Reason',
  'acc_ace_token'            => 'Acc-Ace-Token',
  'acc_ace_token_ttl'        => 'Acc-Ace-Token-Ttl',
  'acc_apsm_oversubscribed'  => 'Acc-Apsm-Oversubscribed',
  'acc_bridging_support'     => 'Acc-Bridging-Support',
  'acc_callback_cbcp_type'   => 'Acc-Callback-CBCP-Type',
  'acc_callback_delay'       => 'Acc-Callback-Delay',
  'acc_callback_mode'        => 'Acc-Callback-Mode',
  'acc_callback_num_valid'   => 'Acc-Callback-Num-Valid',
  'acc_calling_station_cate' => 'Acc-Calling-Station-Category',
  'acc_ccp_option'           => 'Acc-Ccp-Option',
  'acc_clearing_cause'       => 'Acc-Clearing-Cause',
  'acc_clearing_location'    => 'Acc-Clearing-Location',
  'acc_connect_rx_speed'     => 'Acc-Connect-Rx-Speed',
  'acc_connect_tx_speed'     => 'Acc-Connect-Tx-Speed',
  'acc_customer_id'          => 'Acc-Customer-Id',
  'acc_dial_port_index'      => 'Acc-Dial-Port-Index',
  'acc_dialout_auth_mode'    => 'Acc-Dialout-Auth-Mode',
  'acc_dialout_auth_passwor' => 'Acc-Dialout-Auth-Password',
  'acc_dialout_auth_usernam' => 'Acc-Dialout-Auth-Username',
  'acc_dns_server_pri'       => 'Acc-Dns-Server-Pri',
  'acc_dns_server_sec'       => 'Acc-Dns-Server-Sec',
  'acc_igmp_admin_state'     => 'Acc-Igmp-Admin-State',
  'acc_igmp_version'         => 'Acc-Igmp-Version',
  'acc_input_errors'         => 'Acc-Input-Errors',
  'acc_ip_compression'       => 'Acc-Ip-Compression',
  'acc_ip_gateway_pri'       => 'Acc-Ip-Gateway-Pri',
  'acc_ip_gateway_sec'       => 'Acc-Ip-Gateway-Sec',
  'acc_ip_pool_name'         => 'Acc-Ip-Pool-Name',
  'acc_ipx_compression'      => 'Acc-Ipx-Compression',
  'acc_location_id'          => 'Acc-Location-Id',
  'acc_ml_call_threshold'    => 'Acc-ML-Call-Threshold',
  'acc_ml_clear_threshold'   => 'Acc-ML-Clear-Threshold',
  'acc_ml_damping_factor'    => 'Acc-ML-Damping-Factor',
  'acc_ml_mlx_admin_state'   => 'Acc-ML-MLX-Admin-State',
  'acc_mn_ha_secret'         => 'Acc-MN-HA-Secret',
  'acc_modem_error_protocol' => 'Acc-Modem-Error-Protocol',
  'acc_modem_modulation_typ' => 'Acc-Modem-Modulation-Type',
  'acc_nbns_server_pri'      => 'Acc-Nbns-Server-Pri',
  'acc_nbns_server_sec'      => 'Acc-Nbns-Server-Sec',
  'acc_output_errors'        => 'Acc-Output-Errors',
  'acc_reason_code'          => 'Acc-Reason-Code',
  'acc_request_type'         => 'Acc-Request-Type',
  'acc_route_policy'         => 'Acc-Route-Policy',
  'acc_service_profile'      => 'Acc-Service-Profile',
  'acc_tunnel_port'          => 'Acc-Tunnel-Port',
  'acc_tunnel_secret'        => 'Acc-Tunnel-Secret',
  'acc_vpsm_reject_cause'    => 'Acc-Vpsm-Reject-Cause',
  'access_loop_encapsulatio' => 'Access-Loop-Encapsulation',
  'access_point_id'          => 'Access-Point-Id',
  'access_point_name'        => 'Access-Point-Name',
  'acct_alt_session_id'      => 'Acct-Alt-Session-ID',
  'acct_authentic'           => 'Acct-Authentic',
  'acct_delay_time'          => 'Acct-Delay-Time',
  'acct_dyn_ac_ent'          => 'Acct_Dyn_Ac_Ent',
  'acct_dyn_ac_enu'          => 'Acct-Dyn-Ac-Ent',
  'acct_input_gigawords'     => 'Acct-Input-Gigawords',
  'acct_input_octets'        => 'Acct-Input-Octets',
  'acct_input_octets_64'     => 'Acct_Input_Octets_64',
  'acct_input_octets_65'     => 'Acct-Input-Octets-64',
  'acct_input_packets'       => 'Acct-Input-Packets',
  'acct_input_packets_64'    => 'Acct_Input_Packets_64',
  'acct_input_packets_65'    => 'Acct-Input-Packets-64',
  'acct_interim_interval'    => 'Acct-Interim-Interval',
  'acct_link_count'          => 'Acct-Link-Count',
  'acct_mcast_in_octets'     => 'Acct_Mcast_In_Octets',
  'acct_mcast_in_octets_64'  => 'Acct-Mcast-In-Octets-64',
  'acct_mcast_in_octett'     => 'Acct-Mcast-In-Octets',
  'acct_mcast_in_packets'    => 'Acct_Mcast_In_Packets',
  'acct_mcast_in_packets_64' => 'Acct-Mcast-In-Packets-64',
  'acct_mcast_in_packett'    => 'Acct-Mcast-In-Packets',
  'acct_mcast_out_octets'    => 'Acct_Mcast_Out_Octets',
  'acct_mcast_out_octets_64' => 'Acct-Mcast-Out-Octets-64',
  'acct_mcast_out_octett'    => 'Acct-Mcast-Out-Octets',
  'acct_mcast_out_packets'   => 'Acct_Mcast_Out_Packets',
  'acct_mcast_out_packets_6' => 'Acct-Mcast-Out-Packets-64',
  'acct_mcast_out_packett'   => 'Acct-Mcast-Out-Packets',
  'acct_multi_session_id'    => 'Acct-Multi-Session-Id',
  'acct_output_gigawords'    => 'Acct-Output-Gigawords',
  'acct_output_octets'       => 'Acct-Output-Octets',
  'acct_output_octets_64'    => 'Acct_Output_Octets_64',
  'acct_output_octets_65'    => 'Acct-Output-Octets-64',
  'acct_output_packets'      => 'Acct-Output-Packets',
  'acct_output_packets_64'   => 'Acct_Output_Packets_64',
  'acct_output_packets_65'   => 'Acct-Output-Packets-64',
  'acct_session_gigawords'   => 'Acct-Session-Gigawords',
  'acct_session_id'          => 'Acct-Session-Id',
  'acct_session_input_gigaw' => 'Acct-Session-Input-Gigawords',
  'acct_session_input_octet' => 'Acct-Session-Input-Octets',
  'acct_session_octets'      => 'Acct-Session-Octets',
  'acct_session_output_giga' => 'Acct-Session-Output-Gigawords',
  'acct_session_output_octe' => 'Acct-Session-Output-Octets',
  'acct_session_start_time'  => 'Acct-Session-Start-Time',
  'acct_session_time'        => 'Acct-Session-Time',
  'acct_status_type'         => 'Acct-Status-Type',
  'acct_terminate_cause'     => 'Acct-Terminate-Cause',
  'acct_tunnel_connection'   => 'Acct-Tunnel-Connection',
  'acct_tunnel_packets_lost' => 'Acct-Tunnel-Packets-Lost',
  'acct_type'                => 'Acct-Type',
  'acct_unique_session_id'   => 'Acct-Unique-Session-Id',
  'acct_update_reason'       => 'Acct-Update-Reason',
  'acl_auth_level'           => 'ACL-Auth-Level',
  'acl_definition'           => 'ACL-Definition',
  'acl_definitioo'           => 'ACL-Definition',
  'acme_called_mos'          => 'Acme-Called-MOS',
  'acme_called_octets_fs1'   => 'Acme-Called-Octets_FS1',
  'acme_called_octets_fs2'   => 'Acme-Called-Octets_FS2',
  'acme_called_packets_fs1'  => 'Acme-Called-Packets_FS1',
  'acme_called_packets_fs2'  => 'Acme-Called-Packets_FS2',
  'acme_called_r_factor'     => 'Acme-Called-R-Factor',
  'acme_called_rtcp_avg_jit' => 'Acme-Called-RTCP-Avg-Jitter_FS1',
  'acme_called_rtcp_avg_jiu' => 'Acme-Called-RTCP-Avg-Jitter_FS2',
  'acme_called_rtcp_avg_lat' => 'Acme-Called-RTCP-Avg-Latency_FS1',
  'acme_called_rtcp_avg_lau' => 'Acme-Called-RTCP-Avg-Latency_FS2',
  'acme_called_rtcp_maxjitt' => 'Acme-Called-RTCP-MaxJitter_FS1',
  'acme_called_rtcp_maxjitu' => 'Acme-Called-RTCP-MaxJitter_FS2',
  'acme_called_rtcp_maxlate' => 'Acme-Called-RTCP-MaxLatency_FS1',
  'acme_called_rtcp_maxlatf' => 'Acme-Called-RTCP-MaxLatency_FS2',
  'acme_called_rtcp_packets' => 'Acme-Called-RTCP-Packets-Lost_FS1',
  'acme_called_rtcp_packett' => 'Acme-Called-RTCP-Packets-Lost_FS2',
  'acme_called_rtp_avg_jitt' => 'Acme-Called-RTP-Avg-Jitter_FS1',
  'acme_called_rtp_avg_jitu' => 'Acme-Called-RTP-Avg-Jitter_FS2',
  'acme_called_rtp_maxjitte' => 'Acme-Called-RTP-MaxJitter_FS1',
  'acme_called_rtp_maxjittf' => 'Acme-Called-RTP-MaxJitter_FS2',
  'acme_called_rtp_packets_' => 'Acme-Called-RTP-Packets-Lost_FS1',
  'acme_called_rtp_packetsa' => 'Acme-Called-RTP-Packets-Lost_FS2',
  'acme_calling_mos'         => 'Acme-Calling-MOS',
  'acme_calling_octets_fs1'  => 'Acme-Calling-Octets_FS1',
  'acme_calling_octets_fs2'  => 'Acme-Calling-Octets_FS2',
  'acme_calling_packets_fs1' => 'Acme-Calling-Packets_FS1',
  'acme_calling_packets_fs2' => 'Acme-Calling-Packets_FS2',
  'acme_calling_r_factor'    => 'Acme-Calling-R-Factor',
  'acme_calling_rtcp_avg_ji' => 'Acme-Calling-RTCP-Avg-Jitter_FS1',
  'acme_calling_rtcp_avg_jj' => 'Acme-Calling-RTCP-Avg-Jitter_FS2',
  'acme_calling_rtcp_avg_la' => 'Acme-Calling-RTCP-Avg-Latency_FS1',
  'acme_calling_rtcp_avg_lb' => 'Acme-Calling-RTCP-Avg-Latency_FS2',
  'acme_calling_rtcp_maxjit' => 'Acme-Calling-RTCP-MaxJitter_FS1',
  'acme_calling_rtcp_maxjiu' => 'Acme-Calling-RTCP-MaxJitter_FS2',
  'acme_calling_rtcp_maxlat' => 'Acme-Calling-RTCP-MaxLatency_FS1',
  'acme_calling_rtcp_maxlau' => 'Acme-Calling-RTCP-MaxLatency_FS2',
  'acme_calling_rtcp_packet' => 'Acme-Calling-RTCP-Packets-Lost_FS1',
  'acme_calling_rtcp_packeu' => 'Acme-Calling-RTCP-Packets-Lost_FS2',
  'acme_calling_rtp_avg_jit' => 'Acme-Calling-RTP-Avg-Jitter_FS1',
  'acme_calling_rtp_avg_jiu' => 'Acme-Calling-RTP-Avg-Jitter_FS2',
  'acme_calling_rtp_maxjitt' => 'Acme-Calling-RTP-MaxJitter_FS1',
  'acme_calling_rtp_maxjitu' => 'Acme-Calling-RTP-MaxJitter_FS2',
  'acme_calling_rtp_packets' => 'Acme-Calling-RTP-Packets-Lost_FS1',
  'acme_calling_rtp_packett' => 'Acme-Calling-RTP-Packets-Lost_FS2',
  'acme_cdr_sequence_number' => 'Acme-CDR-Sequence-Number',
  'acme_custom_vsa_200'      => 'Acme-Custom-VSA-200',
  'acme_custom_vsa_201'      => 'Acme-Custom-VSA-201',
  'acme_custom_vsa_202'      => 'Acme-Custom-VSA-202',
  'acme_custom_vsa_203'      => 'Acme-Custom-VSA-203',
  'acme_custom_vsa_204'      => 'Acme-Custom-VSA-204',
  'acme_custom_vsa_205'      => 'Acme-Custom-VSA-205',
  'acme_custom_vsa_206'      => 'Acme-Custom-VSA-206',
  'acme_custom_vsa_207'      => 'Acme-Custom-VSA-207',
  'acme_custom_vsa_208'      => 'Acme-Custom-VSA-208',
  'acme_custom_vsa_209'      => 'Acme-Custom-VSA-209',
  'acme_custom_vsa_210'      => 'Acme-Custom-VSA-210',
  'acme_custom_vsa_211'      => 'Acme-Custom-VSA-211',
  'acme_custom_vsa_212'      => 'Acme-Custom-VSA-212',
  'acme_custom_vsa_213'      => 'Acme-Custom-VSA-213',
  'acme_custom_vsa_214'      => 'Acme-Custom-VSA-214',
  'acme_custom_vsa_215'      => 'Acme-Custom-VSA-215',
  'acme_custom_vsa_216'      => 'Acme-Custom-VSA-216',
  'acme_custom_vsa_217'      => 'Acme-Custom-VSA-217',
  'acme_custom_vsa_218'      => 'Acme-Custom-VSA-218',
  'acme_custom_vsa_219'      => 'Acme-Custom-VSA-219',
  'acme_custom_vsa_220'      => 'Acme-Custom-VSA-220',
  'acme_custom_vsa_221'      => 'Acme-Custom-VSA-221',
  'acme_custom_vsa_222'      => 'Acme-Custom-VSA-222',
  'acme_custom_vsa_223'      => 'Acme-Custom-VSA-223',
  'acme_custom_vsa_224'      => 'Acme-Custom-VSA-224',
  'acme_custom_vsa_225'      => 'Acme-Custom-VSA-225',
  'acme_custom_vsa_226'      => 'Acme-Custom-VSA-226',
  'acme_custom_vsa_227'      => 'Acme-Custom-VSA-227',
  'acme_custom_vsa_228'      => 'Acme-Custom-VSA-228',
  'acme_custom_vsa_229'      => 'Acme-Custom-VSA-229',
  'acme_custom_vsa_230'      => 'Acme-Custom-VSA-230',
  'acme_disconnect_cause'    => 'Acme-Disconnect-Cause',
  'acme_disconnect_initiato' => 'Acme-Disconnect-Initiator',
  'acme_egress_final_routin' => 'Acme-Egress-Final-Routing-Number',
  'acme_egress_local_addr'   => 'Acme-Egress-Local-Addr',
  'acme_egress_network_inte' => 'Acme-Egress-Network-Interface-Id',
  'acme_egress_remote_addr'  => 'Acme-Egress-Remote-Addr',
  'acme_egress_vlan_tag_val' => 'Acme-Egress-Vlan-Tag-Value',
  'acme_firmware_version'    => 'Acme-Firmware-Version',
  'acme_flow_in_dst_addr_fs' => 'Acme-Flow-In-Dst-Addr_FS1_F',
  'acme_flow_in_dst_addr_ft' => 'Acme-Flow-In-Dst-Addr_FS1_R',
  'acme_flow_in_dst_addr_fu' => 'Acme-Flow-In-Dst-Addr_FS2_F',
  'acme_flow_in_dst_addr_fv' => 'Acme-Flow-In-Dst-Addr_FS2_R',
  'acme_flow_in_dst_ipv6_ad' => 'Acme-Flow-In-Dst-IPv6_Addr_FS1_F',
  'acme_flow_in_dst_ipv6_ae' => 'Acme-Flow-In-Dst-IPv6_Addr_FS1_R',
  'acme_flow_in_dst_ipv6_af' => 'Acme-Flow-In-Dst-IPv6_Addr_FS2_F',
  'acme_flow_in_dst_ipv6_ag' => 'Acme-Flow-In-Dst-IPv6_Addr_FS2_R',
  'acme_flow_in_dst_port_fs' => 'Acme-Flow-In-Dst-Port_FS1_F',
  'acme_flow_in_dst_port_ft' => 'Acme-Flow-In-Dst-Port_FS1_R',
  'acme_flow_in_dst_port_fu' => 'Acme-Flow-In-Dst-Port_FS2_F',
  'acme_flow_in_dst_port_fv' => 'Acme-Flow-In-Dst-Port_FS2_R',
  'acme_flow_in_realm_fs1_f' => 'Acme-Flow-In-Realm_FS1_F',
  'acme_flow_in_realm_fs1_r' => 'Acme-Flow-In-Realm_FS1_R',
  'acme_flow_in_realm_fs2_f' => 'Acme-Flow-In-Realm_FS2_F',
  'acme_flow_in_realm_fs2_r' => 'Acme-Flow-In-Realm_FS2_R',
  'acme_flow_in_src_addr_fs' => 'Acme-Flow-In-Src-Addr_FS1_F',
  'acme_flow_in_src_addr_ft' => 'Acme-Flow-In-Src-Addr_FS1_R',
  'acme_flow_in_src_addr_fu' => 'Acme-Flow-In-Src-Addr_FS2_F',
  'acme_flow_in_src_addr_fv' => 'Acme-Flow-In-Src-Addr_FS2_R',
  'acme_flow_in_src_ipv6_ad' => 'Acme-Flow-In-Src-IPv6_Addr_FS1_F',
  'acme_flow_in_src_ipv6_ae' => 'Acme-Flow-In-Src-IPv6_Addr_FS1_R',
  'acme_flow_in_src_ipv6_af' => 'Acme-Flow-In-Src-IPv6_Addr_FS2_F',
  'acme_flow_in_src_ipv6_ag' => 'Acme-Flow-In-Src-IPv6_Addr_FS2_R',
  'acme_flow_in_src_port_fs' => 'Acme-Flow-In-Src-Port_FS1_F',
  'acme_flow_in_src_port_ft' => 'Acme-Flow-In-Src-Port_FS1_R',
  'acme_flow_in_src_port_fu' => 'Acme-Flow-In-Src-Port_FS2_F',
  'acme_flow_in_src_port_fv' => 'Acme-Flow-In-Src-Port_FS2_R',
  'acme_flow_out_dst_addr_f' => 'Acme-Flow-Out-Dst-Addr_FS1_F',
  'acme_flow_out_dst_addr_g' => 'Acme-Flow-Out-Dst-Addr_FS1_R',
  'acme_flow_out_dst_addr_h' => 'Acme-Flow-Out-Dst-Addr_FS2_F',
  'acme_flow_out_dst_addr_i' => 'Acme-Flow-Out-Dst-Addr_FS2_R',
  'acme_flow_out_dst_ipv6_a' => 'Acme-Flow-Out-Dst-IPv6_Addr_FS1_F',
  'acme_flow_out_dst_ipv6_b' => 'Acme-Flow-Out-Dst-IPv6_Addr_FS1_R',
  'acme_flow_out_dst_ipv6_c' => 'Acme-Flow-Out-Dst-IPv6_Addr_FS2_F',
  'acme_flow_out_dst_ipv6_d' => 'Acme-Flow-Out-Dst-IPv6_Addr_FS2_R',
  'acme_flow_out_dst_port_f' => 'Acme-Flow-Out-Dst-Port_FS1_F',
  'acme_flow_out_dst_port_g' => 'Acme-Flow-Out-Dst-Port_FS1_R',
  'acme_flow_out_dst_port_h' => 'Acme-Flow-Out-Dst-Port_FS2_F',
  'acme_flow_out_dst_port_i' => 'Acme-Flow-Out-Dst-Port_FS2_R',
  'acme_flow_out_realm_fs1_' => 'Acme-Flow-Out-Realm_FS1_F',
  'acme_flow_out_realm_fs1a' => 'Acme-Flow-Out-Realm_FS1_R',
  'acme_flow_out_realm_fs2_' => 'Acme-Flow-Out-Realm_FS2_F',
  'acme_flow_out_realm_fs2a' => 'Acme-Flow-Out-Realm_FS2_R',
  'acme_flow_out_src_addr_f' => 'Acme-Flow-Out-Src-Addr_FS1_F',
  'acme_flow_out_src_addr_g' => 'Acme-Flow-Out-Src-Addr_FS1_R',
  'acme_flow_out_src_addr_h' => 'Acme-Flow-Out-Src-Addr_FS2_F',
  'acme_flow_out_src_addr_i' => 'Acme-Flow-Out-Src-Addr_FS2_R',
  'acme_flow_out_src_ipv6_a' => 'Acme-Flow-Out-Src-IPv6_Addr_FS1_F',
  'acme_flow_out_src_ipv6_b' => 'Acme-Flow-Out-Src-IPv6_Addr_FS1_R',
  'acme_flow_out_src_ipv6_c' => 'Acme-Flow-Out-Src-IPv6_Addr_FS2_F',
  'acme_flow_out_src_ipv6_d' => 'Acme-Flow-Out-Src-IPv6_Addr_FS2_R',
  'acme_flow_out_src_port_f' => 'Acme-Flow-Out-Src-Port_FS1_F',
  'acme_flow_out_src_port_g' => 'Acme-Flow-Out-Src-Port_FS1_R',
  'acme_flow_out_src_port_h' => 'Acme-Flow-Out-Src-Port_FS2_F',
  'acme_flow_out_src_port_i' => 'Acme-Flow-Out-Src-Port_FS2_R',
  'acme_flow_ptime_fs1_f'    => 'Acme-Flow-PTime_FS1_F',
  'acme_flow_ptime_fs1_r'    => 'Acme-Flow-PTime_FS1_R',
  'acme_flow_ptime_fs2_f'    => 'Acme-Flow-PTime_FS2_F',
  'acme_flow_ptime_fs2_r'    => 'Acme-Flow-PTime_FS2_R',
  'acme_flowid_fs1_f'        => 'Acme-FlowID_FS1_F',
  'acme_flowid_fs1_r'        => 'Acme-FlowID_FS1_R',
  'acme_flowid_fs2_f'        => 'Acme-FlowID_FS2_F',
  'acme_flowid_fs2_r'        => 'Acme-FlowID_FS2_R',
  'acme_flowmediatype_fs1_f' => 'Acme-FlowMediaType_FS1_F',
  'acme_flowmediatype_fs1_r' => 'Acme-FlowMediaType_FS1_R',
  'acme_flowmediatype_fs2_f' => 'Acme-FlowMediaType_FS2_F',
  'acme_flowmediatype_fs2_r' => 'Acme-FlowMediaType_FS2_R',
  'acme_flowtype_fs1_f'      => 'Acme-FlowType_FS1_F',
  'acme_flowtype_fs1_r'      => 'Acme-FlowType_FS1_R',
  'acme_flowtype_fs2_f'      => 'Acme-FlowType_FS2_F',
  'acme_flowtype_fs2_r'      => 'Acme-FlowType_FS2_R',
  'acme_ingress_local_addr'  => 'Acme-Ingress-Local-Addr',
  'acme_ingress_network_int' => 'Acme-Ingress-Network-Interface-Id',
  'acme_ingress_remote_addr' => 'Acme-Ingress-Remote-Addr',
  'acme_ingress_vlan_tag_va' => 'Acme-Ingress-Vlan-Tag-Value',
  'acme_intermediate_time'   => 'Acme-Intermediate_Time',
  'acme_local_time_zone'     => 'Acme-Local-Time-Zone',
  'acme_originating_trunk_c' => 'Acme-Originating-Trunk-Context',
  'acme_originating_trunk_g' => 'Acme-Originating-Trunk-Group',
  'acme_p_asserted_id'       => 'Acme-P-Asserted-ID',
  'acme_post_dial_delay'     => 'Acme-Post-Dial-Delay',
  'acme_primary_routing_num' => 'Acme-Primary-Routing-Number',
  'acme_refer_call_transfer' => 'Acme-Refer-Call-Transfer-Id',
  'acme_session_charging_fu' => 'Acme-Session-Charging-Function_Address',
  'acme_session_charging_ve' => 'Acme-Session-Charging-Vector',
  'acme_session_disposition' => 'Acme-Session-Disposition',
  'acme_session_egress_call' => 'Acme-Session-Egress-CallId',
  'acme_session_egress_real' => 'Acme-Session-Egress-Realm',
  'acme_session_egress_rph'  => 'Acme-Session-Egress-RPH',
  'acme_session_forked_call' => 'Acme-Session-Forked-Call-Id',
  'acme_session_generic_id'  => 'Acme-Session-Generic-Id',
  'acme_session_ingress_cal' => 'Acme-Session-Ingress-CallId',
  'acme_session_ingress_rea' => 'Acme-Session-Ingress-Realm',
  'acme_session_ingress_rph' => 'Acme-Session-Ingress-RPH',
  'acme_session_media_proce' => 'Acme-Session-Media-Process',
  'acme_session_protocol_ty' => 'Acme-Session-Protocol-Type',
  'acme_sip_diversion'       => 'Acme-SIP-Diversion',
  'acme_sip_status'          => 'Acme-SIP-Status',
  'acme_terminating_trunk_c' => 'Acme-Terminating-Trunk-Context',
  'acme_terminating_trunk_g' => 'Acme-Terminating-Trunk-Group',
  'acme_user_class'          => 'Acme-User-Class',
  'actual_data_rate_downstr' => 'Actual-Data-Rate-Downstream',
  'actual_data_rate_upstrea' => 'Actual-Data-Rate-Upstream',
  'actual_interleaving_dela' => 'Actual-Interleaving-Delay-Upstream',
  'actual_interleaving_delb' => 'Actual-Interleaving-Delay-Downstream',
  'add_prefix'               => 'Add-Prefix',
  'add_suffix'               => 'Add-Suffix',
  'adsl_agent_circuit_id'    => 'ADSL-Agent-Circuit-Id',
  'adsl_agent_remote_id'     => 'ADSL-Agent-Remote-Id',
  'agent_circuit_id'         => 'Agent-Circuit-Id',
  'agent_circuit_ie'         => 'Agent-Circuit-Id',
  'agent_remote_id'          => 'Agent-Remote-Id',
  'agent_remote_ie'          => 'Agent-Remote-Id',
  'ah_hm_admin_group_id'     => 'AH-HM-Admin-Group-Id',
  'airespace_8021p_tag'      => 'Airespace-8021p-Tag',
  'airespace_acl_name'       => 'Airespace-ACL-Name',
  'airespace_dscp'           => 'Airespace-DSCP',
  'airespace_interface_name' => 'Airespace-Interface-Name',
  'airespace_qos_level'      => 'Airespace-QOS-Level',
  'airespace_wlan_id'        => 'Airespace-Wlan-Id',
  'alc_aa_group_partition_i' => 'Alc-AA-Group-Partition-Isa-Id',
  'alc_aa_peer_identifier'   => 'Alc-AA-Peer-Identifier',
  'alc_aa_transit_ip'        => 'Alc-AA-Transit-IP',
  'alc_access_loop_encap_of' => 'Alc-Access-Loop-Encap-Offset',
  'alc_access_loop_rate_dow' => 'Alc-Access-Loop-Rate-Down',
  'alc_acct_i_all_octets_64' => 'Alc-Acct-I-All-Octets_64',
  'alc_acct_i_all_octets_of' => 'Alc-Acct-I-All-Octets-Offer_64',
  'alc_acct_i_all_pack_offe' => 'Alc-Acct-I-All-Pack-Offer_64',
  'alc_acct_i_all_packets_6' => 'Alc-Acct-I-All-Packets_64',
  'alc_acct_i_high_octets_d' => 'Alc-Acct-I-High-Octets-Drop_64',
  'alc_acct_i_high_octets_o' => 'Alc-Acct-I-High-Octets-Offer_64',
  'alc_acct_i_high_pack_dro' => 'Alc-Acct-I-High-Pack-Drop_64',
  'alc_acct_i_high_pack_off' => 'Alc-Acct-I-High-Pack-Offer_64',
  'alc_acct_i_hiprio_octets' => 'Alc-Acct-I-Hiprio-Octets_64',
  'alc_acct_i_hiprio_packet' => 'Alc-Acct-I-Hiprio-Packets_64',
  'alc_acct_i_inprof_octets' => 'Alc-Acct-I-Inprof-Octets-64',
  'alc_acct_i_inprof_pkts_6' => 'Alc-Acct-I-Inprof-Pkts-64',
  'alc_acct_i_low_octets_dr' => 'Alc-Acct-I-Low-Octets-Drop_64',
  'alc_acct_i_low_octets_of' => 'Alc-Acct-I-Low-Octets-Offer_64',
  'alc_acct_i_low_pack_drop' => 'Alc-Acct-I-Low-Pack-Drop_64',
  'alc_acct_i_low_pack_offe' => 'Alc-Acct-I-Low-Pack-Offer_64',
  'alc_acct_i_lowprio_octet' => 'Alc-Acct-I-Lowprio-Octets_64',
  'alc_acct_i_lowprio_packe' => 'Alc-Acct-I-Lowprio-Packets_64',
  'alc_acct_i_outprof_octet' => 'Alc-Acct-I-Outprof-Octets-64',
  'alc_acct_i_outprof_pkts_' => 'Alc-Acct-I-Outprof-Pkts-64',
  'alc_acct_i_statmode'      => 'Alc-Acct-I-statmode',
  'alc_acct_i_unc_octets_of' => 'Alc-Acct-I-Unc-Octets-Offer_64',
  'alc_acct_i_unc_pack_offe' => 'Alc-Acct-I-Unc-Pack-Offer_64',
  'alc_acct_o_all_octets_64' => 'Alc-Acct-O-All-Octets_64',
  'alc_acct_o_all_packets_6' => 'Alc-Acct-O-All-Packets_64',
  'alc_acct_o_hiprio_octets' => 'Alc-Acct-O-Hiprio-Octets_64',
  'alc_acct_o_hiprio_packet' => 'Alc-Acct-O-Hiprio-Packets_64',
  'alc_acct_o_inprof_octets' => 'Alc-Acct-O-Inprof-Octets-64',
  'alc_acct_o_inprof_octs_d' => 'Alc-Acct-O-Inprof-Octs-Drop_64',
  'alc_acct_o_inprof_pack_d' => 'Alc-Acct-O-Inprof-Pack-Drop_64',
  'alc_acct_o_inprof_pkts_6' => 'Alc-Acct-O-Inprof-Pkts-64',
  'alc_acct_o_lowprio_octet' => 'Alc-Acct-O-Lowprio-Octets_64',
  'alc_acct_o_lowprio_packe' => 'Alc-Acct-O-Lowprio-Packets_64',
  'alc_acct_o_outprof_octet' => 'Alc-Acct-O-Outprof-Octets-64',
  'alc_acct_o_outprof_octs_' => 'Alc-Acct-O-Outprof-Octs-Drop_64',
  'alc_acct_o_outprof_pack_' => 'Alc-Acct-O-Outprof-Pack-Drop_64',
  'alc_acct_o_outprof_pkts_' => 'Alc-Acct-O-Outprof-Pkts-64',
  'alc_acct_o_statmode'      => 'Alc-Acct-O-statmode',
  'alc_acct_oc_i_all_octs_o' => 'Alc-Acct-OC-I-All-Octs-Offer_64',
  'alc_acct_oc_i_all_pack_o' => 'Alc-Acct-OC-I-All-Pack-Offer_64',
  'alc_acct_oc_i_inpr_octs_' => 'Alc-Acct-OC-I-Inpr-Octs-Drop_64',
  'alc_acct_oc_i_inpr_pack_' => 'Alc-Acct-OC-I-Inpr-Pack-Drop_64',
  'alc_acct_oc_i_inprof_oct' => 'Alc-Acct-OC-I-Inprof-Octets-64',
  'alc_acct_oc_i_inprof_pkt' => 'Alc-Acct-OC-I-Inprof-Pkts-64',
  'alc_acct_oc_i_outpr_octs' => 'Alc-Acct-OC-I-Outpr-Octs-Drop_64',
  'alc_acct_oc_i_outpr_pack' => 'Alc-Acct-OC-I-Outpr-Pack-Drop_64',
  'alc_acct_oc_i_outprof_oc' => 'Alc-Acct-OC-I-Outprof-Octets-64',
  'alc_acct_oc_i_outprof_pk' => 'Alc-Acct-OC-I-Outprof-Pkts-64',
  'alc_acct_oc_o_inpr_octs_' => 'Alc-Acct-OC-O-Inpr-Octs-Drop_64',
  'alc_acct_oc_o_inpr_pack_' => 'Alc-Acct-OC-O-Inpr-Pack-Drop_64',
  'alc_acct_oc_o_inprof_oct' => 'Alc-Acct-OC-O-Inprof-Octets-64',
  'alc_acct_oc_o_inprof_pkt' => 'Alc-Acct-OC-O-Inprof-Pkts-64',
  'alc_acct_oc_o_outpr_octs' => 'Alc-Acct-OC-O-Outpr-Octs-Drop_64',
  'alc_acct_oc_o_outpr_pack' => 'Alc-Acct-OC-O-Outpr-Pack-Drop_64',
  'alc_acct_oc_o_outprof_oc' => 'Alc-Acct-OC-O-Outprof-Octets-64',
  'alc_acct_oc_o_outprof_pk' => 'Alc-Acct-OC-O-Outprof-Pkts-64',
  'alc_acct_triggered_reaso' => 'Alc-Acct-Triggered-Reason',
  'alc_ancp_str'             => 'Alc-ANCP-Str',
  'alc_apn_name'             => 'Alc-APN-Name',
  'alc_apn_password'         => 'Alc-APN-Password',
  'alc_app_prof_str'         => 'Alc-App-Prof-Str',
  'alc_atm_egress_td_profil' => 'Alc-ATM-Egress-TD-Profile',
  'alc_atm_ingress_td_profi' => 'Alc-ATM-Ingress-TD-Profile',
  'alc_authentication_polic' => 'Alc-Authentication-Policy-Name',
  'alc_bgp_auth_key'         => 'Alc-BGP-Auth-Key',
  'alc_bgp_auth_keychain'    => 'Alc-BGP-Auth-Keychain',
  'alc_bgp_export_policy'    => 'Alc-BGP-Export-Policy',
  'alc_bgp_import_policy'    => 'Alc-BGP-Import-Policy',
  'alc_bgp_peeras'           => 'Alc-BGP-PeerAS',
  'alc_bgp_policy'           => 'Alc-BGP-Policy',
  'alc_charging_prof_id'     => 'Alc-Charging-Prof-ID',
  'alc_client_hardware_addr' => 'Alc-Client-Hardware-Addr',
  'alc_create_host'          => 'Alc-Create-Host',
  'alc_credit_control_categ' => 'Alc-Credit-Control-CategoryMap',
  'alc_credit_control_quota' => 'Alc-Credit-Control-Quota',
  'alc_default_router'       => 'Alc-Default-Router',
  'alc_delegated_ipv6_pool'  => 'Alc-Delegated-IPv6-Pool',
  'alc_dhcp_vendor_class_id' => 'Alc-DHCP-Vendor-Class-Id',
  'alc_force_nak'            => 'Alc-Force-Nak',
  'alc_force_renew'          => 'Alc-Force-Renew',
  'alc_int_dest_id_str'      => 'Alc-Int-Dest-Id-Str',
  'alc_interface'            => 'Alc-Interface',
  'alc_ipsec_interface'      => 'Alc-IPsec-Interface',
  'alc_ipsec_sa_auth_algori' => 'Alc-IPsec-SA-Auth-Algorithm',
  'alc_ipsec_sa_encr_algori' => 'Alc-IPsec-SA-Encr-Algorithm',
  'alc_ipsec_sa_lifetime'    => 'Alc-IPsec-SA-Lifetime',
  'alc_ipsec_sa_pfs_group'   => 'Alc-IPsec-SA-PFS-Group',
  'alc_ipsec_sa_replay_wind' => 'Alc-IPsec-SA-Replay-Window',
  'alc_ipsec_serv_id'        => 'Alc-IPsec-Serv-Id',
  'alc_ipsec_tunnel_templat' => 'Alc-IPsec-Tunnel-Template-Id',
  'alc_ipv6_address'         => 'Alc-Ipv6-Address',
  'alc_ipv6_primary_dns'     => 'Alc-Ipv6-Primary-Dns',
  'alc_ipv6_secondary_dns'   => 'Alc-Ipv6-Secondary-Dns',
  'alc_li_action'            => 'Alc-LI-Action',
  'alc_li_destination'       => 'Alc-LI-Destination',
  'alc_li_direction'         => 'Alc-LI-Direction',
  'alc_li_fc'                => 'Alc-LI-FC',
  'alc_li_intercept_id'      => 'Alc-LI-Intercept-Id',
  'alc_li_session_id'        => 'Alc-LI-Session-Id',
  'alc_mgw_interface_type'   => 'Alc-Mgw-Interface-Type',
  'alc_msap_interface'       => 'Alc-MSAP-Interface',
  'alc_msap_policy'          => 'Alc-MSAP-Policy',
  'alc_msap_serv_id'         => 'Alc-MSAP-Serv-Id',
  'alc_msisdn'               => 'Alc-MsIsdn',
  'alc_nat_outside_ip_addr'  => 'Alc-Nat-Outside-Ip-Addr',
  'alc_nat_outside_serv_id'  => 'Alc-Nat-Outside-Serv-Id',
  'alc_nat_port_range'       => 'Alc-Nat-Port-Range',
  'alc_num_attached_ues'     => 'Alc-Num-Attached-UEs',
  'alc_onetime_http_redirec' => 'Alc-Onetime-Http-Redirection-Filter-Id',
  'alc_ppp_force_ipv6cp'     => 'Alc-PPP-Force-IPv6CP',
  'alc_pppoe_pado_delay'     => 'Alc-PPPoE-PADO-Delay',
  'alc_pppoe_service_name'   => 'Alc-PPPoE-Service-Name',
  'alc_primary_dns'          => 'Alc-Primary-Dns',
  'alc_primary_nbns'         => 'Alc-Primary-Nbns',
  'alc_relative_session_tim' => 'Alc-Relative-Session-Timeout',
  'alc_retail_serv_id'       => 'Alc-Retail-Serv-Id',
  'alc_rssi'                 => 'Alc-RSSI',
  'alc_secondary_dns'        => 'Alc-Secondary-Dns',
  'alc_secondary_nbns'       => 'Alc-Secondary-Nbns',
  'alc_serv_id'              => 'Alc-Serv-Id',
  'alc_sla_prof_str'         => 'Alc-SLA-Prof-Str',
  'alc_subsc_id_str'         => 'Alc-Subsc-ID-Str',
  'alc_subsc_prof_str'       => 'Alc-Subsc-Prof-Str',
  'alc_subscriber_filter'    => 'Alc-Subscriber-Filter',
  'alc_subscriber_qos_overr' => 'Alc-Subscriber-QoS-Override',
  'alc_toclient_dhcp_option' => 'Alc-ToClient-Dhcp-Options',
  'alc_toserver_dhcp_option' => 'Alc-ToServer-Dhcp-Options',
  'alc_tunnel_acct_policy'   => 'Alc-Tunnel-Acct-Policy',
  'alc_tunnel_algorithm'     => 'Alc-Tunnel-Algorithm',
  'alc_tunnel_avp_hiding'    => 'Alc-Tunnel-AVP-Hiding',
  'alc_tunnel_challenge'     => 'Alc-Tunnel-Challenge',
  'alc_tunnel_destruct_time' => 'Alc-Tunnel-Destruct-Timeout',
  'alc_tunnel_group'         => 'Alc-Tunnel-Group',
  'alc_tunnel_hello_interva' => 'Alc-Tunnel-Hello-Interval',
  'alc_tunnel_idle_timeout'  => 'Alc-Tunnel-Idle-Timeout',
  'alc_tunnel_max_retries_e' => 'Alc-Tunnel-Max-Retries-Estab',
  'alc_tunnel_max_retries_n' => 'Alc-Tunnel-Max-Retries-Not-Estab',
  'alc_tunnel_max_sessions'  => 'Alc-Tunnel-Max-Sessions',
  'alc_tunnel_rx_window_siz' => 'Alc-Tunnel-Rx-Window-Size',
  'alc_tunnel_serv_id'       => 'Alc-Tunnel-Serv-Id',
  'alc_wlan_apn_name'        => 'Alc-Wlan-APN-Name',
  'allow_session_resumption' => 'Allow-Session-Resumption',
  'allowed_called_station_i' => 'Allowed-Called-Station-Id',
  'alteon_client_ip_address' => 'Alteon-Client-IP-Address',
  'alteon_client_netmask'    => 'Alteon-Client-Netmask',
  'alteon_domain_name'       => 'Alteon-Domain-Name',
  'alteon_group_mapping'     => 'Alteon-Group-Mapping',
  'alteon_primary_dns_serve' => 'Alteon-Primary-DNS-Server',
  'alteon_primary_nbns_serv' => 'Alteon-Primary-NBNS-Server',
  'alteon_secondary_dns_ser' => 'Alteon-Secondary-DNS-Server',
  'alteon_secondary_nbns_se' => 'Alteon-Secondary-NBNS-Server',
  'alteon_service_type'      => 'Alteon-Service-Type',
  'alteon_vpn_id'            => 'Alteon-VPN-Id',
  'altiga_access_hours_g_u'  => 'Altiga-Access-Hours-G/U',
  'altiga_allow_alpha_only_' => 'Altiga-Allow-Alpha-Only-Passwords-G',
  'altiga_argument_authenti' => 'Altiga-Argument-Authentication-Server-Type',
  'altiga_argument_authentj' => 'Altiga-Argument-Authentication-Server-Priority',
  'altiga_argument_ipsec_gr' => 'Altiga-Argument-IPSec-Group-Name',
  'altiga_group_name'        => 'Altiga-Group-Name',
  'altiga_ipsec_allow_passw' => 'Altiga-IPSec-Allow-Passwd-Store-G/U',
  'altiga_ipsec_authenticat' => 'Altiga-IPSec-Authentication-G',
  'altiga_ipsec_banner_g'    => 'Altiga-IPSec-Banner-G',
  'altiga_ipsec_default_dom' => 'Altiga-IPSec-Default-Domain-G',
  'altiga_ipsec_l2l_keepali' => 'Altiga-IPSec-L2L-Keepalives-G',
  'altiga_ipsec_mode_config' => 'Altiga-IPSec-Mode-Config-G',
  'altiga_ipsec_over_nat_g'  => 'Altiga-IPSec-Over-NAT-G',
  'altiga_ipsec_over_nat_po' => 'Altiga-IPSec-Over-NAT-Port-Num-G',
  'altiga_ipsec_sec_associa' => 'Altiga-IPSec-Sec-Association-G/U',
  'altiga_ipsec_secondary_d' => 'Altiga-IPSec-Secondary-Domains-G',
  'altiga_ipsec_split_tunne' => 'Altiga-IPSec-Split-Tunnel-List-G',
  'altiga_ipsec_tunnel_type' => 'Altiga-IPSec-Tunnel-Type-G',
  'altiga_ipsec_user_group_' => 'Altiga-IPSec-User-Group-Lock-G',
  'altiga_l2tp_encryption_g' => 'Altiga-L2TP-Encryption-G',
  'altiga_l2tp_min_authenti' => 'Altiga-L2TP-Min-Authentication-G/U',
  'altiga_min_password_leng' => 'Altiga-Min-Password-Length-G',
  'altiga_partitioning_grou' => 'Altiga-Partitioning-Group',
  'altiga_partitioning_mobi' => 'Altiga-Partitioning-Mobile-IP-Key',
  'altiga_partitioning_mobj' => 'Altiga-Partitioning-Mobile-IP-Address',
  'altiga_partitioning_mobk' => 'Altiga-Partitioning-Mobile-IP-SPI',
  'altiga_partitioning_part' => 'Altiga-Partitioning-Partition-Max-Sessions',
  'altiga_partitioning_prem' => 'Altiga-Partitioning-Premise-Rout',
  'altiga_partitioning_prim' => 'Altiga-Partitioning-Primary-DHCP',
  'altiga_partitioning_seco' => 'Altiga-Partitioning-Secondary-DHCP',
  'altiga_partitioning_stri' => 'Altiga-Partitioning-Strip-Realm',
  'altiga_pptp_encryption_g' => 'Altiga-PPTP-Encryption-G',
  'altiga_pptp_min_authenti' => 'Altiga-PPTP-Min-Authentication-G/U',
  'altiga_primary_dns_g'     => 'Altiga-Primary-DNS-G',
  'altiga_primary_wins_g'    => 'Altiga-Primary-WINS-G',
  'altiga_priority_on_sep_g' => 'Altiga-Priority-on-SEP-G/U',
  'altiga_secondary_dns_g'   => 'Altiga-Secondary-DNS-G',
  'altiga_secondary_wins_g'  => 'Altiga-Secondary-WINS-G',
  'altiga_sep_card_assignme' => 'Altiga-SEP-Card-Assignment-G/U',
  'altiga_simultaneous_logi' => 'Altiga-Simultaneous-Logins-G/U',
  'altiga_tunneling_protoco' => 'Altiga-Tunneling-Protocols-G/U',
  'altiga_use_client_addres' => 'Altiga-Use-Client-Address-G/U',
  'alu_aaa_access_rule'      => 'ALU-AAA-Access-Rule',
  'alu_aaa_address_0'        => 'ALU-AAA-Address-0',
  'alu_aaa_address_1'        => 'ALU-AAA-Address-1',
  'alu_aaa_address_2'        => 'ALU-AAA-Address-2',
  'alu_aaa_address_3'        => 'ALU-AAA-Address-3',
  'alu_aaa_aka_auts'         => 'ALU-AAA-AKA-AUTS',
  'alu_aaa_aka_quintet'      => 'ALU-AAA-AKA-Quintet',
  'alu_aaa_aka_quintets_nee' => 'ALU-AAA-AKA-Quintets-Needed',
  'alu_aaa_aka_rand'         => 'ALU-AAA-AKA-RAND',
  'alu_aaa_av_pair'          => 'ALU-AAA-AV-Pair',
  'alu_aaa_called_station_i' => 'ALU-AAA-Called-Station-Id',
  'alu_aaa_civic_location'   => 'ALU-AAA-Civic-Location',
  'alu_aaa_client_error_act' => 'ALU-AAA-Client-Error-Action',
  'alu_aaa_client_os'        => 'ALU-AAA-Client-OS',
  'alu_aaa_client_program'   => 'ALU-AAA-Client-Program',
  'alu_aaa_client_version'   => 'ALU-AAA-Client-Version',
  'alu_aaa_delta_session'    => 'ALU-AAA-Delta-Session',
  'alu_aaa_df_cc_address'    => 'ALU-AAA-DF-CC-Address',
  'alu_aaa_df_cc_port'       => 'ALU-AAA-DF-CC-Port',
  'alu_aaa_eval_0'           => 'ALU-AAA-Eval-0',
  'alu_aaa_eval_1'           => 'ALU-AAA-Eval-1',
  'alu_aaa_eval_2'           => 'ALU-AAA-Eval-2',
  'alu_aaa_eval_3'           => 'ALU-AAA-Eval-3',
  'alu_aaa_event'            => 'ALU-AAA-Event',
  'alu_aaa_exec_0'           => 'ALU-AAA-Exec-0',
  'alu_aaa_exec_1'           => 'ALU-AAA-Exec-1',
  'alu_aaa_exec_2'           => 'ALU-AAA-Exec-2',
  'alu_aaa_exec_3'           => 'ALU-AAA-Exec-3',
  'alu_aaa_femto_associated' => 'ALU-AAA-Femto-Associated-User-Name',
  'alu_aaa_femto_public_key' => 'ALU-AAA-Femto-Public-Key-Hash',
  'alu_aaa_geospatial_locat' => 'ALU-AAA-Geospatial-Location',
  'alu_aaa_gsm_triplet'      => 'ALU-AAA-GSM-Triplet',
  'alu_aaa_gsm_triplets_nee' => 'ALU-AAA-GSM-Triplets-Needed',
  'alu_aaa_integer_0'        => 'ALU-AAA-Integer-0',
  'alu_aaa_integer_1'        => 'ALU-AAA-Integer-1',
  'alu_aaa_integer_2'        => 'ALU-AAA-Integer-2',
  'alu_aaa_integer_3'        => 'ALU-AAA-Integer-3',
  'alu_aaa_key_0'            => 'ALU-AAA-Key-0',
  'alu_aaa_key_1'            => 'ALU-AAA-Key-1',
  'alu_aaa_key_2'            => 'ALU-AAA-Key-2',
  'alu_aaa_key_3'            => 'ALU-AAA-Key-3',
  'alu_aaa_lawful_intercept' => 'ALU-AAA-Lawful-Intercept-Status',
  'alu_aaa_nas_ip_address'   => 'ALU-AAA-NAS-IP-Address',
  'alu_aaa_nas_port'         => 'ALU-AAA-NAS-Port',
  'alu_aaa_new_state'        => 'ALU-AAA-New-State',
  'alu_aaa_new_timestamp'    => 'ALU-AAA-New-Timestamp',
  'alu_aaa_nonce'            => 'ALU-AAA-Nonce',
  'alu_aaa_old_state'        => 'ALU-AAA-Old-State',
  'alu_aaa_old_timestamp'    => 'ALU-AAA-Old-Timestamp',
  'alu_aaa_opaque_0'         => 'ALU-AAA-Opaque-0',
  'alu_aaa_opaque_1'         => 'ALU-AAA-Opaque-1',
  'alu_aaa_opaque_2'         => 'ALU-AAA-Opaque-2',
  'alu_aaa_opaque_3'         => 'ALU-AAA-Opaque-3',
  'alu_aaa_original_receipt' => 'ALU-AAA-Original-Receipt-Time',
  'alu_aaa_reply_message'    => 'ALU-AAA-Reply-Message',
  'alu_aaa_service_profile'  => 'ALU-AAA-Service-Profile',
  'alu_aaa_string_0'         => 'ALU-AAA-String-0',
  'alu_aaa_string_1'         => 'ALU-AAA-String-1',
  'alu_aaa_string_2'         => 'ALU-AAA-String-2',
  'alu_aaa_string_3'         => 'ALU-AAA-String-3',
  'alu_aaa_value_0'          => 'ALU-AAA-Value-0',
  'alu_aaa_value_1'          => 'ALU-AAA-Value-1',
  'alu_aaa_value_2'          => 'ALU-AAA-Value-2',
  'alu_aaa_value_3'          => 'ALU-AAA-Value-3',
  'alvarion_vsa_1'           => 'Alvarion-VSA-1',
  'alvarion_vsa_10'          => 'Alvarion-VSA-10',
  'alvarion_vsa_100'         => 'Alvarion-VSA-100',
  'alvarion_vsa_101'         => 'Alvarion-VSA-101',
  'alvarion_vsa_102'         => 'Alvarion-VSA-102',
  'alvarion_vsa_103'         => 'Alvarion-VSA-103',
  'alvarion_vsa_104'         => 'Alvarion-VSA-104',
  'alvarion_vsa_105'         => 'Alvarion-VSA-105',
  'alvarion_vsa_106'         => 'Alvarion-VSA-106',
  'alvarion_vsa_107'         => 'Alvarion-VSA-107',
  'alvarion_vsa_108'         => 'Alvarion-VSA-108',
  'alvarion_vsa_109'         => 'Alvarion-VSA-109',
  'alvarion_vsa_11'          => 'Alvarion-VSA-11',
  'alvarion_vsa_110'         => 'Alvarion-VSA-110',
  'alvarion_vsa_111'         => 'Alvarion-VSA-111',
  'alvarion_vsa_112'         => 'Alvarion-VSA-112',
  'alvarion_vsa_113'         => 'Alvarion-VSA-113',
  'alvarion_vsa_114'         => 'Alvarion-VSA-114',
  'alvarion_vsa_115'         => 'Alvarion-VSA-115',
  'alvarion_vsa_116'         => 'Alvarion-VSA-116',
  'alvarion_vsa_117'         => 'Alvarion-VSA-117',
  'alvarion_vsa_118'         => 'Alvarion-VSA-118',
  'alvarion_vsa_119'         => 'Alvarion-VSA-119',
  'alvarion_vsa_12'          => 'Alvarion-VSA-12',
  'alvarion_vsa_120'         => 'Alvarion-VSA-120',
  'alvarion_vsa_121'         => 'Alvarion-VSA-121',
  'alvarion_vsa_122'         => 'Alvarion-VSA-122',
  'alvarion_vsa_123'         => 'Alvarion-VSA-123',
  'alvarion_vsa_124'         => 'Alvarion-VSA-124',
  'alvarion_vsa_125'         => 'Alvarion-VSA-125',
  'alvarion_vsa_126'         => 'Alvarion-VSA-126',
  'alvarion_vsa_127'         => 'Alvarion-VSA-127',
  'alvarion_vsa_128'         => 'Alvarion-VSA-128',
  'alvarion_vsa_129'         => 'Alvarion-VSA-129',
  'alvarion_vsa_13'          => 'Alvarion-VSA-13',
  'alvarion_vsa_130'         => 'Alvarion-VSA-130',
  'alvarion_vsa_131'         => 'Alvarion-VSA-131',
  'alvarion_vsa_132'         => 'Alvarion-VSA-132',
  'alvarion_vsa_133'         => 'Alvarion-VSA-133',
  'alvarion_vsa_134'         => 'Alvarion-VSA-134',
  'alvarion_vsa_135'         => 'Alvarion-VSA-135',
  'alvarion_vsa_136'         => 'Alvarion-VSA-136',
  'alvarion_vsa_137'         => 'Alvarion-VSA-137',
  'alvarion_vsa_138'         => 'Alvarion-VSA-138',
  'alvarion_vsa_139'         => 'Alvarion-VSA-139',
  'alvarion_vsa_14'          => 'Alvarion-VSA-14',
  'alvarion_vsa_140'         => 'Alvarion-VSA-140',
  'alvarion_vsa_141'         => 'Alvarion-VSA-141',
  'alvarion_vsa_142'         => 'Alvarion-VSA-142',
  'alvarion_vsa_143'         => 'Alvarion-VSA-143',
  'alvarion_vsa_144'         => 'Alvarion-VSA-144',
  'alvarion_vsa_145'         => 'Alvarion-VSA-145',
  'alvarion_vsa_146'         => 'Alvarion-VSA-146',
  'alvarion_vsa_147'         => 'Alvarion-VSA-147',
  'alvarion_vsa_148'         => 'Alvarion-VSA-148',
  'alvarion_vsa_149'         => 'Alvarion-VSA-149',
  'alvarion_vsa_15'          => 'Alvarion-VSA-15',
  'alvarion_vsa_150'         => 'Alvarion-VSA-150',
  'alvarion_vsa_151'         => 'Alvarion-VSA-151',
  'alvarion_vsa_152'         => 'Alvarion-VSA-152',
  'alvarion_vsa_153'         => 'Alvarion-VSA-153',
  'alvarion_vsa_154'         => 'Alvarion-VSA-154',
  'alvarion_vsa_155'         => 'Alvarion-VSA-155',
  'alvarion_vsa_156'         => 'Alvarion-VSA-156',
  'alvarion_vsa_157'         => 'Alvarion-VSA-157',
  'alvarion_vsa_158'         => 'Alvarion-VSA-158',
  'alvarion_vsa_159'         => 'Alvarion-VSA-159',
  'alvarion_vsa_16'          => 'Alvarion-VSA-16',
  'alvarion_vsa_160'         => 'Alvarion-VSA-160',
  'alvarion_vsa_161'         => 'Alvarion-VSA-161',
  'alvarion_vsa_162'         => 'Alvarion-VSA-162',
  'alvarion_vsa_163'         => 'Alvarion-VSA-163',
  'alvarion_vsa_164'         => 'Alvarion-VSA-164',
  'alvarion_vsa_165'         => 'Alvarion-VSA-165',
  'alvarion_vsa_166'         => 'Alvarion-VSA-166',
  'alvarion_vsa_167'         => 'Alvarion-VSA-167',
  'alvarion_vsa_168'         => 'Alvarion-VSA-168',
  'alvarion_vsa_169'         => 'Alvarion-VSA-169',
  'alvarion_vsa_17'          => 'Alvarion-VSA-17',
  'alvarion_vsa_170'         => 'Alvarion-VSA-170',
  'alvarion_vsa_171'         => 'Alvarion-VSA-171',
  'alvarion_vsa_172'         => 'Alvarion-VSA-172',
  'alvarion_vsa_173'         => 'Alvarion-VSA-173',
  'alvarion_vsa_174'         => 'Alvarion-VSA-174',
  'alvarion_vsa_175'         => 'Alvarion-VSA-175',
  'alvarion_vsa_176'         => 'Alvarion-VSA-176',
  'alvarion_vsa_177'         => 'Alvarion-VSA-177',
  'alvarion_vsa_178'         => 'Alvarion-VSA-178',
  'alvarion_vsa_179'         => 'Alvarion-VSA-179',
  'alvarion_vsa_18'          => 'Alvarion-VSA-18',
  'alvarion_vsa_180'         => 'Alvarion-VSA-180',
  'alvarion_vsa_181'         => 'Alvarion-VSA-181',
  'alvarion_vsa_182'         => 'Alvarion-VSA-182',
  'alvarion_vsa_183'         => 'Alvarion-VSA-183',
  'alvarion_vsa_184'         => 'Alvarion-VSA-184',
  'alvarion_vsa_185'         => 'Alvarion-VSA-185',
  'alvarion_vsa_186'         => 'Alvarion-VSA-186',
  'alvarion_vsa_187'         => 'Alvarion-VSA-187',
  'alvarion_vsa_188'         => 'Alvarion-VSA-188',
  'alvarion_vsa_189'         => 'Alvarion-VSA-189',
  'alvarion_vsa_19'          => 'Alvarion-VSA-19',
  'alvarion_vsa_190'         => 'Alvarion-VSA-190',
  'alvarion_vsa_191'         => 'Alvarion-VSA-191',
  'alvarion_vsa_192'         => 'Alvarion-VSA-192',
  'alvarion_vsa_193'         => 'Alvarion-VSA-193',
  'alvarion_vsa_194'         => 'Alvarion-VSA-194',
  'alvarion_vsa_195'         => 'Alvarion-VSA-195',
  'alvarion_vsa_196'         => 'Alvarion-VSA-196',
  'alvarion_vsa_197'         => 'Alvarion-VSA-197',
  'alvarion_vsa_198'         => 'Alvarion-VSA-198',
  'alvarion_vsa_199'         => 'Alvarion-VSA-199',
  'alvarion_vsa_2'           => 'Alvarion-VSA-2',
  'alvarion_vsa_20'          => 'Alvarion-VSA-20',
  'alvarion_vsa_200'         => 'Alvarion-VSA-200',
  'alvarion_vsa_201'         => 'Alvarion-VSA-201',
  'alvarion_vsa_202'         => 'Alvarion-VSA-202',
  'alvarion_vsa_203'         => 'Alvarion-VSA-203',
  'alvarion_vsa_204'         => 'Alvarion-VSA-204',
  'alvarion_vsa_205'         => 'Alvarion-VSA-205',
  'alvarion_vsa_206'         => 'Alvarion-VSA-206',
  'alvarion_vsa_207'         => 'Alvarion-VSA-207',
  'alvarion_vsa_208'         => 'Alvarion-VSA-208',
  'alvarion_vsa_209'         => 'Alvarion-VSA-209',
  'alvarion_vsa_21'          => 'Alvarion-VSA-21',
  'alvarion_vsa_210'         => 'Alvarion-VSA-210',
  'alvarion_vsa_211'         => 'Alvarion-VSA-211',
  'alvarion_vsa_212'         => 'Alvarion-VSA-212',
  'alvarion_vsa_213'         => 'Alvarion-VSA-213',
  'alvarion_vsa_214'         => 'Alvarion-VSA-214',
  'alvarion_vsa_215'         => 'Alvarion-VSA-215',
  'alvarion_vsa_216'         => 'Alvarion-VSA-216',
  'alvarion_vsa_217'         => 'Alvarion-VSA-217',
  'alvarion_vsa_218'         => 'Alvarion-VSA-218',
  'alvarion_vsa_219'         => 'Alvarion-VSA-219',
  'alvarion_vsa_22'          => 'Alvarion-VSA-22',
  'alvarion_vsa_220'         => 'Alvarion-VSA-220',
  'alvarion_vsa_221'         => 'Alvarion-VSA-221',
  'alvarion_vsa_222'         => 'Alvarion-VSA-222',
  'alvarion_vsa_223'         => 'Alvarion-VSA-223',
  'alvarion_vsa_224'         => 'Alvarion-VSA-224',
  'alvarion_vsa_225'         => 'Alvarion-VSA-225',
  'alvarion_vsa_226'         => 'Alvarion-VSA-226',
  'alvarion_vsa_227'         => 'Alvarion-VSA-227',
  'alvarion_vsa_228'         => 'Alvarion-VSA-228',
  'alvarion_vsa_229'         => 'Alvarion-VSA-229',
  'alvarion_vsa_23'          => 'Alvarion-VSA-23',
  'alvarion_vsa_230'         => 'Alvarion-VSA-230',
  'alvarion_vsa_231'         => 'Alvarion-VSA-231',
  'alvarion_vsa_232'         => 'Alvarion-VSA-232',
  'alvarion_vsa_233'         => 'Alvarion-VSA-233',
  'alvarion_vsa_234'         => 'Alvarion-VSA-234',
  'alvarion_vsa_235'         => 'Alvarion-VSA-235',
  'alvarion_vsa_236'         => 'Alvarion-VSA-236',
  'alvarion_vsa_237'         => 'Alvarion-VSA-237',
  'alvarion_vsa_238'         => 'Alvarion-VSA-238',
  'alvarion_vsa_239'         => 'Alvarion-VSA-239',
  'alvarion_vsa_24'          => 'Alvarion-VSA-24',
  'alvarion_vsa_240'         => 'Alvarion-VSA-240',
  'alvarion_vsa_241'         => 'Alvarion-VSA-241',
  'alvarion_vsa_242'         => 'Alvarion-VSA-242',
  'alvarion_vsa_243'         => 'Alvarion-VSA-243',
  'alvarion_vsa_244'         => 'Alvarion-VSA-244',
  'alvarion_vsa_245'         => 'Alvarion-VSA-245',
  'alvarion_vsa_246'         => 'Alvarion-VSA-246',
  'alvarion_vsa_247'         => 'Alvarion-VSA-247',
  'alvarion_vsa_248'         => 'Alvarion-VSA-248',
  'alvarion_vsa_249'         => 'Alvarion-VSA-249',
  'alvarion_vsa_25'          => 'Alvarion-VSA-25',
  'alvarion_vsa_250'         => 'Alvarion-VSA-250',
  'alvarion_vsa_251'         => 'Alvarion-VSA-251',
  'alvarion_vsa_252'         => 'Alvarion-VSA-252',
  'alvarion_vsa_253'         => 'Alvarion-VSA-253',
  'alvarion_vsa_254'         => 'Alvarion-VSA-254',
  'alvarion_vsa_255'         => 'Alvarion-VSA-255',
  'alvarion_vsa_26'          => 'Alvarion-VSA-26',
  'alvarion_vsa_27'          => 'Alvarion-VSA-27',
  'alvarion_vsa_28'          => 'Alvarion-VSA-28',
  'alvarion_vsa_29'          => 'Alvarion-VSA-29',
  'alvarion_vsa_3'           => 'Alvarion-VSA-3',
  'alvarion_vsa_30'          => 'Alvarion-VSA-30',
  'alvarion_vsa_31'          => 'Alvarion-VSA-31',
  'alvarion_vsa_32'          => 'Alvarion-VSA-32',
  'alvarion_vsa_33'          => 'Alvarion-VSA-33',
  'alvarion_vsa_34'          => 'Alvarion-VSA-34',
  'alvarion_vsa_35'          => 'Alvarion-VSA-35',
  'alvarion_vsa_36'          => 'Alvarion-VSA-36',
  'alvarion_vsa_37'          => 'Alvarion-VSA-37',
  'alvarion_vsa_38'          => 'Alvarion-VSA-38',
  'alvarion_vsa_39'          => 'Alvarion-VSA-39',
  'alvarion_vsa_4'           => 'Alvarion-VSA-4',
  'alvarion_vsa_40'          => 'Alvarion-VSA-40',
  'alvarion_vsa_41'          => 'Alvarion-VSA-41',
  'alvarion_vsa_42'          => 'Alvarion-VSA-42',
  'alvarion_vsa_43'          => 'Alvarion-VSA-43',
  'alvarion_vsa_44'          => 'Alvarion-VSA-44',
  'alvarion_vsa_45'          => 'Alvarion-VSA-45',
  'alvarion_vsa_46'          => 'Alvarion-VSA-46',
  'alvarion_vsa_47'          => 'Alvarion-VSA-47',
  'alvarion_vsa_48'          => 'Alvarion-VSA-48',
  'alvarion_vsa_49'          => 'Alvarion-VSA-49',
  'alvarion_vsa_5'           => 'Alvarion-VSA-5',
  'alvarion_vsa_50'          => 'Alvarion-VSA-50',
  'alvarion_vsa_51'          => 'Alvarion-VSA-51',
  'alvarion_vsa_52'          => 'Alvarion-VSA-52',
  'alvarion_vsa_53'          => 'Alvarion-VSA-53',
  'alvarion_vsa_54'          => 'Alvarion-VSA-54',
  'alvarion_vsa_55'          => 'Alvarion-VSA-55',
  'alvarion_vsa_56'          => 'Alvarion-VSA-56',
  'alvarion_vsa_57'          => 'Alvarion-VSA-57',
  'alvarion_vsa_58'          => 'Alvarion-VSA-58',
  'alvarion_vsa_59'          => 'Alvarion-VSA-59',
  'alvarion_vsa_6'           => 'Alvarion-VSA-6',
  'alvarion_vsa_60'          => 'Alvarion-VSA-60',
  'alvarion_vsa_61'          => 'Alvarion-VSA-61',
  'alvarion_vsa_62'          => 'Alvarion-VSA-62',
  'alvarion_vsa_63'          => 'Alvarion-VSA-63',
  'alvarion_vsa_64'          => 'Alvarion-VSA-64',
  'alvarion_vsa_65'          => 'Alvarion-VSA-65',
  'alvarion_vsa_66'          => 'Alvarion-VSA-66',
  'alvarion_vsa_67'          => 'Alvarion-VSA-67',
  'alvarion_vsa_68'          => 'Alvarion-VSA-68',
  'alvarion_vsa_69'          => 'Alvarion-VSA-69',
  'alvarion_vsa_7'           => 'Alvarion-VSA-7',
  'alvarion_vsa_70'          => 'Alvarion-VSA-70',
  'alvarion_vsa_71'          => 'Alvarion-VSA-71',
  'alvarion_vsa_72'          => 'Alvarion-VSA-72',
  'alvarion_vsa_73'          => 'Alvarion-VSA-73',
  'alvarion_vsa_74'          => 'Alvarion-VSA-74',
  'alvarion_vsa_75'          => 'Alvarion-VSA-75',
  'alvarion_vsa_76'          => 'Alvarion-VSA-76',
  'alvarion_vsa_77'          => 'Alvarion-VSA-77',
  'alvarion_vsa_78'          => 'Alvarion-VSA-78',
  'alvarion_vsa_79'          => 'Alvarion-VSA-79',
  'alvarion_vsa_8'           => 'Alvarion-VSA-8',
  'alvarion_vsa_80'          => 'Alvarion-VSA-80',
  'alvarion_vsa_81'          => 'Alvarion-VSA-81',
  'alvarion_vsa_82'          => 'Alvarion-VSA-82',
  'alvarion_vsa_83'          => 'Alvarion-VSA-83',
  'alvarion_vsa_84'          => 'Alvarion-VSA-84',
  'alvarion_vsa_85'          => 'Alvarion-VSA-85',
  'alvarion_vsa_86'          => 'Alvarion-VSA-86',
  'alvarion_vsa_87'          => 'Alvarion-VSA-87',
  'alvarion_vsa_88'          => 'Alvarion-VSA-88',
  'alvarion_vsa_89'          => 'Alvarion-VSA-89',
  'alvarion_vsa_9'           => 'Alvarion-VSA-9',
  'alvarion_vsa_90'          => 'Alvarion-VSA-90',
  'alvarion_vsa_91'          => 'Alvarion-VSA-91',
  'alvarion_vsa_92'          => 'Alvarion-VSA-92',
  'alvarion_vsa_93'          => 'Alvarion-VSA-93',
  'alvarion_vsa_94'          => 'Alvarion-VSA-94',
  'alvarion_vsa_95'          => 'Alvarion-VSA-95',
  'alvarion_vsa_96'          => 'Alvarion-VSA-96',
  'alvarion_vsa_97'          => 'Alvarion-VSA-97',
  'alvarion_vsa_98'          => 'Alvarion-VSA-98',
  'alvarion_vsa_99'          => 'Alvarion-VSA-99',
  'am_http_proxy_port'       => 'AM-HTTP-Proxy-Port',
  'am_interrupt_htmlfile'    => 'AM-Interrupt-HTMLFile',
  'am_interrupt_interval'    => 'AM-Interrupt-Interval',
  'am_interrupt_timeout'     => 'AM-Interrupt-Timeout',
  'am_status_htmlfile'       => 'AM-Status-HTMLFile',
  'annex_acct_servers'       => 'Annex-Acct-Servers',
  'annex_addr_resolution_pr' => 'Annex-Addr-Resolution-Protocol',
  'annex_addr_resolution_se' => 'Annex-Addr-Resolution-Servers',
  'annex_audit_level'        => 'Annex-Audit-Level',
  'annex_authen_servers'     => 'Annex-Authen-Servers',
  'annex_begin_modulation'   => 'Annex-Begin-Modulation',
  'annex_begin_receive_line' => 'Annex-Begin-Receive-Line-Level',
  'annex_callback_portlist'  => 'Annex-Callback-Portlist',
  'annex_cli_command'        => 'Annex-CLI-Command',
  'annex_cli_commands'       => 'Annex-Cli-Commands',
  'annex_cli_filter'         => 'Annex-CLI-Filter',
  'annex_command_access'     => 'Annex-Command-Access',
  'annex_compression_protoc' => 'Annex-Compression-Protocol',
  'annex_connect_progress'   => 'Annex-Connect-Progress',
  'annex_disconnect_reason'  => 'Annex-Disconnect-Reason',
  'annex_domain_name'        => 'Annex-Domain-Name',
  'annex_edo'                => 'Annex-EDO',
  'annex_end_modulation'     => 'Annex-End-Modulation',
  'annex_end_receive_line_l' => 'Annex-End-Receive-Line-Level',
  'annex_error_correction_p' => 'Annex-Error-Correction-Prot',
  'annex_filter'             => 'Annex-Filter',
  'annex_gwy_selection_mode' => 'Annex-Gwy-Selection-Mode',
  'annex_host_allow'         => 'Annex-Host-Allow',
  'annex_host_restrict'      => 'Annex-Host-Restrict',
  'annex_input_filter'       => 'Annex-Input-Filter',
  'annex_keypress_timeout'   => 'Annex-Keypress-Timeout',
  'annex_local_ip_address'   => 'Annex-Local-IP-Address',
  'annex_local_username'     => 'Annex-Local-Username',
  'annex_logical_channel_nu' => 'Annex-Logical-Channel-Number',
  'annex_maximum_call_durat' => 'Annex-Maximum-Call-Duration',
  'annex_modem_disc_reason'  => 'Annex-Modem-Disc-Reason',
  'annex_mrru'               => 'Annex-MRRU',
  'annex_multicast_rate_lim' => 'Annex-Multicast-Rate-Limit',
  'annex_multilink_id'       => 'Annex-Multilink-Id',
  'annex_num_in_multilink'   => 'Annex-Num-In-Multilink',
  'annex_output_filter'      => 'Annex-Output-Filter',
  'annex_pool_id'            => 'Annex-Pool-Id',
  'annex_port'               => 'Annex-Port',
  'annex_ppp_trace_level'    => 'Annex-PPP-Trace-Level',
  'annex_pre_input_octets'   => 'Annex-Pre-Input-Octets',
  'annex_pre_input_packets'  => 'Annex-Pre-Input-Packets',
  'annex_pre_output_octets'  => 'Annex-Pre-Output-Octets',
  'annex_pre_output_packets' => 'Annex-Pre-Output-Packets',
  'annex_primary_dns_server' => 'Annex-Primary-DNS-Server',
  'annex_primary_nbns_serve' => 'Annex-Primary-NBNS-Server',
  'annex_product_name'       => 'Annex-Product-Name',
  'annex_rate_reneg_req_rcv' => 'Annex-Rate-Reneg-Req-Rcvd',
  'annex_rate_reneg_req_sen' => 'Annex-Rate-Reneg-Req-Sent',
  'annex_re_chap_timeout'    => 'Annex-Re-CHAP-Timeout',
  'annex_receive_speed'      => 'Annex-Receive-Speed',
  'annex_retrain_requests_r' => 'Annex-Retrain-Requests-Rcvd',
  'annex_retrain_requests_s' => 'Annex-Retrain-Requests-Sent',
  'annex_retransmitted_pack' => 'Annex-Retransmitted-Packets',
  'annex_sec_profile_index'  => 'Annex-Sec-Profile-Index',
  'annex_secondary_dns_serv' => 'Annex-Secondary-DNS-Server',
  'annex_secondary_nbns_ser' => 'Annex-Secondary-NBNS-Server',
  'annex_secondary_srv_endp' => 'Annex-Secondary-Srv-Endpoint',
  'annex_signal_to_noise_ra' => 'Annex-Signal-to-Noise-Ratio',
  'annex_sw_version'         => 'Annex-SW-Version',
  'annex_syslog_tap'         => 'Annex-Syslog-Tap',
  'annex_system_disc_reason' => 'Annex-System-Disc-Reason',
  'annex_transmit_speed'     => 'Annex-Transmit-Speed',
  'annex_transmitted_packet' => 'Annex-Transmitted-Packets',
  'annex_tunnel_authen_mode' => 'Annex-Tunnel-Authen-Mode',
  'annex_tunnel_authen_type' => 'Annex-Tunnel-Authen-Type',
  'annex_unauthenticated_ti' => 'Annex-Unauthenticated-Time',
  'annex_user_level'         => 'Annex-User-Level',
  'annex_user_server_locati' => 'Annex-User-Server-Location',
  'annex_wan_number'         => 'Annex-Wan-Number',
  'apc_accpx_access1'        => 'APC-ACCPX-Access1',
  'apc_accpx_access2'        => 'APC-ACCPX-Access2',
  'apc_accpx_access3'        => 'APC-ACCPX-Access3',
  'apc_accpx_access4'        => 'APC-ACCPX-Access4',
  'apc_accpx_access5'        => 'APC-ACCPX-Access5',
  'apc_accpx_access6'        => 'APC-ACCPX-Access6',
  'apc_accpx_access7'        => 'APC-ACCPX-Access7',
  'apc_accpx_doors'          => 'APC-ACCPX-Doors',
  'apc_accpx_status'         => 'APC-ACCPX-Status',
  'apc_contact'              => 'APC-Contact',
  'apc_outlets'              => 'APC-Outlets',
  'apc_perms'                => 'APC-Perms',
  'apc_service_type'         => 'APC-Service-Type',
  'apc_username'             => 'APC-Username',
  'arap_challenge_response'  => 'ARAP-Challenge-Response',
  'arap_features'            => 'ARAP-Features',
  'arap_password'            => 'ARAP-Password',
  'arap_security'            => 'ARAP-Security',
  'arap_security_data'       => 'ARAP-Security-Data',
  'arap_zone_access'         => 'ARAP-Zone-Access',
  'aruba_admin_role'         => 'Aruba-Admin-Role',
  'aruba_airgroup_device_ty' => 'Aruba-AirGroup-Device-Type',
  'aruba_airgroup_shared_ro' => 'Aruba-AirGroup-Shared-Role',
  'aruba_airgroup_shared_us' => 'Aruba-AirGroup-Shared-User',
  'aruba_airgroup_user_name' => 'Aruba-AirGroup-User-Name',
  'aruba_ap_group'           => 'Aruba-AP-Group',
  'aruba_as_credential_hash' => 'Aruba-AS-Credential-Hash',
  'aruba_as_user_name'       => 'Aruba-AS-User-Name',
  'aruba_auth_survivability' => 'Aruba-Auth-Survivability',
  'aruba_cppm_role'          => 'Aruba-CPPM-Role',
  'aruba_device_type'        => 'Aruba-Device-Type',
  'aruba_essid_name'         => 'Aruba-Essid-Name',
  'aruba_framed_ipv6_addres' => 'Aruba-Framed-IPv6-Address',
  'aruba_location_id'        => 'Aruba-Location-Id',
  'aruba_mdps_device_iccid'  => 'Aruba-Mdps-Device-Iccid',
  'aruba_mdps_device_imei'   => 'Aruba-Mdps-Device-Imei',
  'aruba_mdps_device_name'   => 'Aruba-Mdps-Device-Name',
  'aruba_mdps_device_produc' => 'Aruba-Mdps-Device-Product',
  'aruba_mdps_device_profil' => 'Aruba-Mdps-Device-Profile',
  'aruba_mdps_device_serial' => 'Aruba-Mdps-Device-Serial',
  'aruba_mdps_device_udid'   => 'Aruba-Mdps-Device-Udid',
  'aruba_mdps_device_versio' => 'Aruba-Mdps-Device-Version',
  'aruba_mdps_max_devices'   => 'Aruba-Mdps-Max-Devices',
  'aruba_mdps_provisioning_' => 'Aruba-Mdps-Provisioning-Settings',
  'aruba_mms_user_template'  => 'Aruba-MMS-User-Template',
  'aruba_named_user_vlan'    => 'Aruba-Named-User-Vlan',
  'aruba_no_dhcp_fingerprin' => 'Aruba-No-DHCP-Fingerprint',
  'aruba_port_identifier'    => 'Aruba-Port-Identifier',
  'aruba_priv_admin_user'    => 'Aruba-Priv-Admin-User',
  'aruba_user_role'          => 'Aruba-User-Role',
  'aruba_user_vlan'          => 'Aruba-User-Vlan',
  'aruba_workspace_app_name' => 'Aruba-WorkSpace-App-Name',
  'ascend_access_intercept_' => 'Ascend-Access-Intercept-LEA',
  'ascend_access_intercepta' => 'Ascend-Access-Intercept-Log',
  'ascend_add_seconds'       => 'Ascend-Add-Seconds',
  'ascend_appletalk_peer_mo' => 'Ascend-Appletalk-Peer-Mode',
  'ascend_appletalk_route'   => 'Ascend-Appletalk-Route',
  'ascend_ara_pw'            => 'Ascend-Ara-PW',
  'ascend_assign_ip_client'  => 'Ascend-Assign-IP-Client',
  'ascend_assign_ip_global_' => 'Ascend-Assign-IP-Global-Pool',
  'ascend_assign_ip_pool'    => 'Ascend-Assign-IP-Pool',
  'ascend_assign_ip_server'  => 'Ascend-Assign-IP-Server',
  'ascend_atm_connect_group' => 'Ascend-ATM-Connect-Group',
  'ascend_atm_connect_vci'   => 'Ascend-ATM-Connect-Vci',
  'ascend_atm_connect_vpi'   => 'Ascend-ATM-Connect-Vpi',
  'ascend_atm_direct'        => 'Ascend-ATM-Direct',
  'ascend_atm_direct_profil' => 'Ascend-ATM-Direct-Profile',
  'ascend_atm_fault_managem' => 'Ascend-ATM-Fault-Management',
  'ascend_atm_group'         => 'Ascend-ATM-Group',
  'ascend_atm_loopback_cell' => 'Ascend-ATM-Loopback-Cell-Loss',
  'ascend_atm_vci'           => 'Ascend-ATM-Vci',
  'ascend_atm_vpi'           => 'Ascend-ATM-Vpi',
  'ascend_auth_delay'        => 'Ascend-Auth-Delay',
  'ascend_auth_type'         => 'Ascend-Auth-Type',
  'ascend_authen_alias'      => 'Ascend-Authen-Alias',
  'ascend_backup'            => 'Ascend-Backup',
  'ascend_bacp_enable'       => 'Ascend-BACP-Enable',
  'ascend_base_channel_coun' => 'Ascend-Base-Channel-Count',
  'ascend_bi_directional_au' => 'Ascend-Bi-Directional-Auth',
  'ascend_billing_number'    => 'Ascend-Billing-Number',
  'ascend_bir_bridge_group'  => 'Ascend-BIR-Bridge-Group',
  'ascend_bir_enable'        => 'Ascend-BIR-Enable',
  'ascend_bir_proxy'         => 'Ascend-BIR-Proxy',
  'ascend_bridge'            => 'Ascend-Bridge',
  'ascend_bridge_address'    => 'Ascend-Bridge-Address',
  'ascend_bridge_non_pppoe'  => 'Ascend-Bridge-Non-PPPoE',
  'ascend_cache_refresh'     => 'Ascend-Cache-Refresh',
  'ascend_cache_time'        => 'Ascend-Cache-Time',
  'ascend_call_attempt_limi' => 'Ascend-Call-Attempt-Limit',
  'ascend_call_block_durati' => 'Ascend-Call-Block-Duration',
  'ascend_call_by_call'      => 'Ascend-Call-By-Call',
  'ascend_call_direction'    => 'Ascend-Call-Direction',
  'ascend_call_filter'       => 'Ascend-Call-Filter',
  'ascend_call_type'         => 'Ascend-Call-Type',
  'ascend_callback'          => 'Ascend-Callback',
  'ascend_callback_delay'    => 'Ascend-Callback-Delay',
  'ascend_calling_id_number' => 'Ascend-Calling-Id-Number-Plan',
  'ascend_calling_id_presen' => 'Ascend-Calling-Id-Presentatn',
  'ascend_calling_id_screen' => 'Ascend-Calling-Id-Screening',
  'ascend_calling_id_type_o' => 'Ascend-Calling-Id-Type-Of-Num',
  'ascend_calling_subaddres' => 'Ascend-Calling-Subaddress',
  'ascend_cbcp_delay'        => 'Ascend-CBCP-Delay',
  'ascend_cbcp_enable'       => 'Ascend-CBCP-Enable',
  'ascend_cbcp_mode'         => 'Ascend-CBCP-Mode',
  'ascend_cbcp_trunk_group'  => 'Ascend-CBCP-Trunk-Group',
  'ascend_cir_timer'         => 'Ascend-CIR-Timer',
  'ascend_ckt_type'          => 'Ascend-Ckt-Type',
  'ascend_client_assign_dns' => 'Ascend-Client-Assign-DNS',
  'ascend_client_assign_win' => 'Ascend-Client-Assign-WINS',
  'ascend_client_gateway'    => 'Ascend-Client-Gateway',
  'ascend_client_primary_dn' => 'Ascend-Client-Primary-DNS',
  'ascend_client_primary_wi' => 'Ascend-Client-Primary-WINS',
  'ascend_client_secondary_' => 'Ascend-Client-Secondary-WINS',
  'ascend_client_secondarya' => 'Ascend-Client-Secondary-DNS',
  'ascend_connect_progress'  => 'Ascend-Connect-Progress',
  'ascend_data_filter'       => 'Ascend-Data-Filter',
  'ascend_data_rate'         => 'Ascend-Data-Rate',
  'ascend_data_svc'          => 'Ascend-Data-Svc',
  'ascend_dba_monitor'       => 'Ascend-DBA-Monitor',
  'ascend_dec_channel_count' => 'Ascend-Dec-Channel-Count',
  'ascend_destination_nas_p' => 'Ascend-Destination-Nas-Port',
  'ascend_dhcp_maximum_leas' => 'Ascend-DHCP-Maximum-Leases',
  'ascend_dhcp_pool_number'  => 'Ascend-DHCP-Pool-Number',
  'ascend_dhcp_reply'        => 'Ascend-DHCP-Reply',
  'ascend_dial_number'       => 'Ascend-Dial-Number',
  'ascend_dialed_number'     => 'Ascend-Dialed-Number',
  'ascend_dialout_allowed'   => 'Ascend-Dialout-Allowed',
  'ascend_disconnect_cause'  => 'Ascend-Disconnect-Cause',
  'ascend_dropped_octets'    => 'Ascend-Dropped-Octets',
  'ascend_dropped_packets'   => 'Ascend-Dropped-Packets',
  'ascend_dsl_cir_recv_limi' => 'Ascend-Dsl-CIR-Recv-Limit',
  'ascend_dsl_cir_xmit_limi' => 'Ascend-Dsl-CIR-Xmit-Limit',
  'ascend_dsl_downstream_li' => 'Ascend-Dsl-Downstream-Limit',
  'ascend_dsl_rate_mode'     => 'Ascend-Dsl-Rate-Mode',
  'ascend_dsl_rate_type'     => 'Ascend-Dsl-Rate-Type',
  'ascend_dsl_upstream_limi' => 'Ascend-Dsl-Upstream-Limit',
  'ascend_egress_enabled'    => 'Ascend-Egress-Enabled',
  'ascend_endpoint_disc'     => 'Ascend-Endpoint-Disc',
  'ascend_event_type'        => 'Ascend-Event-Type',
  'ascend_expect_callback'   => 'Ascend-Expect-Callback',
  'ascend_fcp_parameter'     => 'Ascend-FCP-Parameter',
  'ascend_filter'            => 'Ascend-Filter',
  'ascend_filter_required'   => 'Ascend-Filter-Required',
  'ascend_first_dest'        => 'Ascend-First-Dest',
  'ascend_force_56'          => 'Ascend-Force-56',
  'ascend_fr_08_mode'        => 'Ascend-FR-08-Mode',
  'ascend_fr_circuit_name'   => 'Ascend-FR-Circuit-Name',
  'ascend_fr_dce_n392'       => 'Ascend-FR-DCE-N392',
  'ascend_fr_dce_n393'       => 'Ascend-FR-DCE-N393',
  'ascend_fr_direct'         => 'Ascend-FR-Direct',
  'ascend_fr_direct_dlci'    => 'Ascend-FR-Direct-DLCI',
  'ascend_fr_direct_profile' => 'Ascend-FR-Direct-Profile',
  'ascend_fr_dlci'           => 'Ascend-FR-DLCI',
  'ascend_fr_dte_n392'       => 'Ascend-FR-DTE-N392',
  'ascend_fr_dte_n393'       => 'Ascend-FR-DTE-N393',
  'ascend_fr_link_mgt'       => 'Ascend-FR-Link-Mgt',
  'ascend_fr_link_status_dl' => 'Ascend-FR-Link-Status-DLCI',
  'ascend_fr_linkup'         => 'Ascend-FR-LinkUp',
  'ascend_fr_n391'           => 'Ascend-FR-N391',
  'ascend_fr_nailed_grp'     => 'Ascend-FR-Nailed-Grp',
  'ascend_fr_profile_name'   => 'Ascend-FR-Profile-Name',
  'ascend_fr_svc_addr'       => 'Ascend-FR-SVC-Addr',
  'ascend_fr_t391'           => 'Ascend-FR-T391',
  'ascend_fr_t392'           => 'Ascend-FR-T392',
  'ascend_fr_type'           => 'Ascend-FR-Type',
  'ascend_ft1_caller'        => 'Ascend-FT1-Caller',
  'ascend_global_call_id'    => 'Ascend-Global-Call-Id',
  'ascend_group'             => 'Ascend-Group',
  'ascend_h323_conference_i' => 'Ascend-H323-Conference-Id',
  'ascend_h323_dialed_time'  => 'Ascend-H323-Dialed-Time',
  'ascend_h323_fegw_address' => 'Ascend-H323-Fegw-Address',
  'ascend_h323_gatekeeper'   => 'Ascend-H323-Gatekeeper',
  'ascend_handle_ipx'        => 'Ascend-Handle-IPX',
  'ascend_history_weigh_typ' => 'Ascend-History-Weigh-Type',
  'ascend_home_agent_ip_add' => 'Ascend-Home-Agent-IP-Addr',
  'ascend_home_agent_passwo' => 'Ascend-Home-Agent-Password',
  'ascend_home_agent_udp_po' => 'Ascend-Home-Agent-UDP-Port',
  'ascend_home_network_name' => 'Ascend-Home-Network-Name',
  'ascend_host_info'         => 'Ascend-Host-Info',
  'ascend_idle_limit'        => 'Ascend-Idle-Limit',
  'ascend_if_netmask'        => 'Ascend-IF-Netmask',
  'ascend_inc_channel_count' => 'Ascend-Inc-Channel-Count',
  'ascend_inter_arrival_jit' => 'Ascend-Inter-Arrival-Jitter',
  'ascend_ip_direct'         => 'Ascend-IP-Direct',
  'ascend_ip_pool_chaining'  => 'Ascend-IP-Pool-Chaining',
  'ascend_ip_pool_definitio' => 'Ascend-IP-Pool-Definition',
  'ascend_ip_tos'            => 'Ascend-IP-TOS',
  'ascend_ip_tos_apply_to'   => 'Ascend-IP-TOS-Apply-To',
  'ascend_ip_tos_precedence' => 'Ascend-IP-TOS-Precedence',
  'ascend_ipsec_profile'     => 'Ascend-IPSEC-Profile',
  'ascend_ipx_alias'         => 'Ascend-IPX-Alias',
  'ascend_ipx_header_compre' => 'Ascend-IPX-Header-Compression',
  'ascend_ipx_node_addr'     => 'Ascend-IPX-Node-Addr',
  'ascend_ipx_peer_mode'     => 'Ascend-IPX-Peer-Mode',
  'ascend_ipx_route'         => 'Ascend-IPX-Route',
  'ascend_link_compression'  => 'Ascend-Link-Compression',
  'ascend_max_shared_users'  => 'Ascend-Max-Shared-Users',
  'ascend_maximum_call_dura' => 'Ascend-Maximum-Call-Duration',
  'ascend_maximum_channels'  => 'Ascend-Maximum-Channels',
  'ascend_maximum_time'      => 'Ascend-Maximum-Time',
  'ascend_menu_item'         => 'Ascend-Menu-Item',
  'ascend_menu_selector'     => 'Ascend-Menu-Selector',
  'ascend_metric'            => 'Ascend-Metric',
  'ascend_minimum_channels'  => 'Ascend-Minimum-Channels',
  'ascend_modem_portno'      => 'Ascend-Modem-PortNo',
  'ascend_modem_shelfno'     => 'Ascend-Modem-ShelfNo',
  'ascend_modem_slotno'      => 'Ascend-Modem-SlotNo',
  'ascend_mpp_idle_percent'  => 'Ascend-MPP-Idle-Percent',
  'ascend_mtu'               => 'Ascend-MTU',
  'ascend_multicast_client'  => 'Ascend-Multicast-Client',
  'ascend_multicast_gleave_' => 'Ascend-Multicast-GLeave-Delay',
  'ascend_multicast_rate_li' => 'Ascend-Multicast-Rate-Limit',
  'ascend_multilink_id'      => 'Ascend-Multilink-ID',
  'ascend_nas_port_format'   => 'Ascend-NAS-Port-Format',
  'ascend_netware_timeout'   => 'Ascend-Netware-timeout',
  'ascend_num_in_multilink'  => 'Ascend-Num-In-Multilink',
  'ascend_number_sessions'   => 'Ascend-Number-Sessions',
  'ascend_numbering_plan_id' => 'Ascend-Numbering-Plan-ID',
  'ascend_owner_ip_addr'     => 'Ascend-Owner-IP-Addr',
  'ascend_port_redir_portnu' => 'Ascend-Port-Redir-Portnum',
  'ascend_port_redir_protoc' => 'Ascend-Port-Redir-Protocol',
  'ascend_port_redir_server' => 'Ascend-Port-Redir-Server',
  'ascend_ppp_address'       => 'Ascend-PPP-Address',
  'ascend_ppp_async_map'     => 'Ascend-PPP-Async-Map',
  'ascend_ppp_vj_1172'       => 'Ascend-PPP-VJ-1172',
  'ascend_ppp_vj_slot_comp'  => 'Ascend-PPP-VJ-Slot-Comp',
  'ascend_pppoe_enable'      => 'Ascend-PPPoE-Enable',
  'ascend_pre_input_octets'  => 'Ascend-Pre-Input-Octets',
  'ascend_pre_input_packets' => 'Ascend-Pre-Input-Packets',
  'ascend_pre_output_octets' => 'Ascend-Pre-Output-Octets',
  'ascend_pre_output_packet' => 'Ascend-Pre-Output-Packets',
  'ascend_preempt_limit'     => 'Ascend-Preempt-Limit',
  'ascend_presession_time'   => 'Ascend-PreSession-Time',
  'ascend_pri_number_type'   => 'Ascend-PRI-Number-Type',
  'ascend_primary_home_agen' => 'Ascend-Primary-Home-Agent',
  'ascend_private_route'     => 'Ascend-Private-Route',
  'ascend_private_route_req' => 'Ascend-Private-Route-Required',
  'ascend_private_route_tab' => 'Ascend-Private-Route-Table-ID',
  'ascend_pw_lifetime'       => 'Ascend-PW-Lifetime',
  'ascend_pw_warntime'       => 'Ascend-PW-Warntime',
  'ascend_qos_downstream'    => 'Ascend-QOS-Downstream',
  'ascend_qos_upstream'      => 'Ascend-QOS-Upstream',
  'ascend_receive_secret'    => 'Ascend-Receive-Secret',
  'ascend_recv_name'         => 'Ascend-Recv-Name',
  'ascend_redirect_number'   => 'Ascend-Redirect-Number',
  'ascend_remote_addr'       => 'Ascend-Remote-Addr',
  'ascend_remote_fw'         => 'Ascend-Remote-FW',
  'ascend_remove_seconds'    => 'Ascend-Remove-Seconds',
  'ascend_require_auth'      => 'Ascend-Require-Auth',
  'ascend_route_appletalk'   => 'Ascend-Route-Appletalk',
  'ascend_route_ip'          => 'Ascend-Route-IP',
  'ascend_route_ipx'         => 'Ascend-Route-IPX',
  'ascend_secondary_home_ag' => 'Ascend-Secondary-Home-Agent',
  'ascend_seconds_of_histor' => 'Ascend-Seconds-Of-History',
  'ascend_send_auth'         => 'Ascend-Send-Auth',
  'ascend_send_passwd'       => 'Ascend-Send-Passwd',
  'ascend_send_secret'       => 'Ascend-Send-Secret',
  'ascend_service_type'      => 'Ascend-Service-Type',
  'ascend_session_svr_key'   => 'Ascend-Session-Svr-Key',
  'ascend_session_type'      => 'Ascend-Session-Type',
  'ascend_shared_profile_en' => 'Ascend-Shared-Profile-Enable',
  'ascend_source_auth'       => 'Ascend-Source-Auth',
  'ascend_source_ip_check'   => 'Ascend-Source-IP-Check',
  'ascend_svc_enabled'       => 'Ascend-SVC-Enabled',
  'ascend_target_util'       => 'Ascend-Target-Util',
  'ascend_telnet_profile'    => 'Ascend-Telnet-Profile',
  'ascend_temporary_rtes'    => 'Ascend-Temporary-Rtes',
  'ascend_third_prompt'      => 'Ascend-Third-Prompt',
  'ascend_token_expiry'      => 'Ascend-Token-Expiry',
  'ascend_token_idle'        => 'Ascend-Token-Idle',
  'ascend_token_immediate'   => 'Ascend-Token-Immediate',
  'ascend_traffic_shaper'    => 'Ascend-Traffic-Shaper',
  'ascend_transit_number'    => 'Ascend-Transit-Number',
  'ascend_ts_idle_limit'     => 'Ascend-TS-Idle-Limit',
  'ascend_ts_idle_mode'      => 'Ascend-TS-Idle-Mode',
  'ascend_tunnel_vrouter_na' => 'Ascend-Tunnel-VRouter-Name',
  'ascend_tunneling_protoco' => 'Ascend-Tunneling-Protocol',
  'ascend_user_acct_base'    => 'Ascend-User-Acct-Base',
  'ascend_user_acct_host'    => 'Ascend-User-Acct-Host',
  'ascend_user_acct_key'     => 'Ascend-User-Acct-Key',
  'ascend_user_acct_port'    => 'Ascend-User-Acct-Port',
  'ascend_user_acct_time'    => 'Ascend-User-Acct-Time',
  'ascend_user_acct_type'    => 'Ascend-User-Acct-Type',
  'ascend_uu_info'           => 'Ascend-UU-Info',
  'ascend_vrouter_name'      => 'Ascend-VRouter-Name',
  'ascend_x25_cug'           => 'Ascend-X25-Cug',
  'ascend_x25_nui'           => 'Ascend-X25-Nui',
  'ascend_x25_nui_password_' => 'Ascend-X25-Nui-Password-Prompt',
  'ascend_x25_nui_prompt'    => 'Ascend-X25-Nui-Prompt',
  'ascend_x25_pad_alias_1'   => 'Ascend-X25-Pad-Alias-1',
  'ascend_x25_pad_alias_2'   => 'Ascend-X25-Pad-Alias-2',
  'ascend_x25_pad_alias_3'   => 'Ascend-X25-Pad-Alias-3',
  'ascend_x25_pad_banner'    => 'Ascend-X25-Pad-Banner',
  'ascend_x25_pad_prompt'    => 'Ascend-X25-Pad-Prompt',
  'ascend_x25_pad_x3_parame' => 'Ascend-X25-Pad-X3-Parameters',
  'ascend_x25_pad_x3_profil' => 'Ascend-X25-Pad-X3-Profile',
  'ascend_x25_profile_name'  => 'Ascend-X25-Profile-Name',
  'ascend_x25_reverse_charg' => 'Ascend-X25-Reverse-Charging',
  'ascend_x25_rpoa'          => 'Ascend-X25-Rpoa',
  'ascend_x25_x121_address'  => 'Ascend-X25-X121-Address',
  'ascend_xmit_rate'         => 'Ascend-Xmit-Rate',
  'asn_firewall_available'   => 'ASN-Firewall-Available',
  'asn_firewall_block_ping'  => 'ASN-Firewall-Block-Ping',
  'asn_firewall_open'        => 'ASN-Firewall-Open',
  'asn_firewall_state'       => 'ASN-Firewall-State',
  'asn_ip_pool_name'         => 'ASN-IP-Pool-Name',
  'asn_ip_redirect'          => 'ASN-IP-Redirect',
  'asn_kbps_down'            => 'ASN-Kbps-Down',
  'asn_kbps_down_localmedia' => 'ASN-Kbps-Down-Localmedia',
  'asn_kbps_up'              => 'ASN-Kbps-Up',
  'asn_pps_down'             => 'ASN-Pps-Down',
  'asn_pps_up'               => 'ASN-Pps-Up',
  'asn_qos_available'        => 'ASN-QoS-Available',
  'asn_qos_state'            => 'ASN-QoS-State',
  'asn_tcp_connlimit'        => 'ASN-TCP-Connlimit',
  'asn_webfilter_destinatio' => 'ASN-Webfilter-Destination',
  'asn_webfilter_domain'     => 'ASN-Webfilter-Domain',
  'asn_webfilter_mode'       => 'ASN-Webfilter-Mode',
  'asn_webfilter_redirect'   => 'ASN-Webfilter-Redirect',
  'assigned_ip_address'      => 'Assigned_IP_Address',
  'assigned_ip_addrest'      => 'Assigned-IP-Address',
  'asterisk_acc_code'        => 'Asterisk-Acc-Code',
  'asterisk_ama_flags'       => 'Asterisk-AMA-Flags',
  'asterisk_answer_time'     => 'Asterisk-Answer-Time',
  'asterisk_bill_sec'        => 'Asterisk-Bill-Sec',
  'asterisk_chan'            => 'Asterisk-Chan',
  'asterisk_clid'            => 'Asterisk-Clid',
  'asterisk_disposition'     => 'Asterisk-Disposition',
  'asterisk_dst'             => 'Asterisk-Dst',
  'asterisk_dst_chan'        => 'Asterisk-Dst-Chan',
  'asterisk_dst_ctx'         => 'Asterisk-Dst-Ctx',
  'asterisk_duration'        => 'Asterisk-Duration',
  'asterisk_end_time'        => 'Asterisk-End-Time',
  'asterisk_last_app'        => 'Asterisk-Last-App',
  'asterisk_last_data'       => 'Asterisk-Last-Data',
  'asterisk_src'             => 'Asterisk-Src',
  'asterisk_start_time'      => 'Asterisk-Start-Time',
  'asterisk_unique_id'       => 'Asterisk-Unique-ID',
  'asterisk_user_field'      => 'Asterisk-User-Field',
  'attainable_data_rate_dow' => 'Attainable-Data-Rate-Downstream',
  'attainable_data_rate_ups' => 'Attainable-Data-Rate-Upstream',
  'auth_type'                => 'Auth-Type',
  'autz_type'                => 'Autz-Type',
  'avaya_portpriority_type'  => 'Avaya-PortPriority-Type',
  'avaya_staticvlan_type'    => 'Avaya-StaticVlan-Type',
  'azaire_apn'               => 'Azaire-APN',
  'azaire_apn_oi'            => 'Azaire-APN-OI',
  'azaire_apn_resolution_re' => 'Azaire-APN-Resolution-Req',
  'azaire_auth_type'         => 'Azaire-Auth-Type',
  'azaire_brand_code'        => 'Azaire-Brand-Code',
  'azaire_client_local_ip'   => 'Azaire-Client-Local-IP',
  'azaire_gn_user_name'      => 'Azaire-Gn-User-Name',
  'azaire_imsi'              => 'Azaire-IMSI',
  'azaire_msisdn'            => 'Azaire-MSISDN',
  'azaire_nas_type'          => 'Azaire-NAS-Type',
  'azaire_policy_name'       => 'Azaire-Policy-Name',
  'azaire_qos'               => 'Azaire-QoS',
  'azaire_selection_mode'    => 'Azaire-Selection-Mode',
  'azaire_start_time'        => 'Azaire-Start-Time',
  'azaire_status'            => 'Azaire-Status',
  'azaire_triplets'          => 'Azaire-Triplets',
  'basic_location_policy_ru' => 'Basic-Location-Policy-Rules',
  'bg_aging_time'            => 'BG_Aging_Time',
  'bg_aging_timf'            => 'BG-Aging-Time',
  'bg_cct_addr_max'          => 'BG-Cct-Addr-Max',
  'bg_path_cost'             => 'BG_Path_Cost',
  'bg_path_cosu'             => 'BG-Path-Cost',
  'bg_span_dis'              => 'BG_Span_Dis',
  'bg_span_dit'              => 'BG-Span-Dis',
  'bg_trans_bpdu'            => 'BG_Trans_BPDU',
  'bg_trans_bpdv'            => 'BG-Trans-BPDU',
  'bind_auth_context'        => 'Bind_Auth_Context',
  'bind_auth_contexu'        => 'Bind-Auth-Context',
  'bind_auth_max_sessions'   => 'Bind_Auth_Max_Sessions',
  'bind_auth_max_sessiont'   => 'Bind-Auth-Max-Sessions',
  'bind_auth_protocol'       => 'Bind_Auth_Protocol',
  'bind_auth_protocom'       => 'Bind-Auth-Protocol',
  'bind_auth_service_grp'    => 'Bind_Auth_Service_Grp',
  'bind_auth_service_grq'    => 'Bind-Auth-Service-Grp',
  'bind_auto_sub_context'    => 'Bind-Auto-Sub-Context',
  'bind_auto_sub_contexu'    => 'Bind-Auto-Sub-Context',
  'bind_auto_sub_password'   => 'Bind-Auto-Sub-Password',
  'bind_auto_sub_passwore'   => 'Bind-Auto-Sub-Password',
  'bind_auto_sub_user'       => 'Bind-Auto-Sub-User',
  'bind_auto_sub_uses'       => 'Bind-Auto-Sub-User',
  'bind_bypass_bypass'       => 'Bind_Bypass_Bypass',
  'bind_bypass_bypast'       => 'Bind-Bypass-Bypass',
  'bind_bypass_context'      => 'Bind_Bypass_Context',
  'bind_bypass_contexu'      => 'Bind-Bypass-Context',
  'bind_dhcp_context'        => 'Bind-DHCP-Context',
  'bind_dot1q_port'          => 'Bind_Dot1q_Port',
  'bind_dot1q_poru'          => 'Bind-Dot1q-Port',
  'bind_dot1q_slot'          => 'Bind_Dot1q_Slot',
  'bind_dot1q_slou'          => 'Bind-Dot1q-Slot',
  'bind_dot1q_vlan_tag_id'   => 'Bind_Dot1q_Vlan_Tag_Id',
  'bind_dot1q_vlan_tag_ie'   => 'Bind-Dot1q-Vlan-Tag-Id',
  'bind_int_context'         => 'Bind_Int_Context',
  'bind_int_contexu'         => 'Bind-Int-Context',
  'bind_int_interface_name'  => 'Bind_Int_Interface_Name',
  'bind_int_interface_namf'  => 'Bind-Int-Interface-Name',
  'bind_l2tp_flow_control'   => 'Bind_L2TP_Flow_Control',
  'bind_l2tp_flow_controm'   => 'Bind-L2TP-Flow-Control',
  'bind_l2tp_tunnel_name'    => 'Bind_L2TP_Tunnel_Name',
  'bind_l2tp_tunnel_namf'    => 'Bind-L2TP-Tunnel-Name',
  'bind_ses_context'         => 'Bind_Ses_Context',
  'bind_ses_contexu'         => 'Bind-Ses-Context',
  'bind_sub_password'        => 'Bind_Sub_Password',
  'bind_sub_passwore'        => 'Bind-Sub-Password',
  'bind_sub_user_at_context' => 'Bind_Sub_User_At_Context',
  'bind_sub_user_at_contexu' => 'Bind-Sub-User-At-Context',
  'bind_tun_context'         => 'Bind_Tun_Context',
  'bind_tun_contexu'         => 'Bind-Tun-Context',
  'bind_type'                => 'Bind_Type',
  'bind_typf'                => 'Bind-Type',
  'bintec_bibodialtable'     => 'BinTec-biboDialTable',
  'bintec_biboppptable'      => 'BinTec-biboPPPTable',
  'bintec_ipextiftable'      => 'BinTec-ipExtIfTable',
  'bintec_ipextrttable'      => 'BinTec-ipExtRtTable',
  'bintec_ipfiltertable'     => 'BinTec-ipFilterTable',
  'bintec_ipnatpresettable'  => 'BinTec-ipNatPresetTable',
  'bintec_ipqostable'        => 'BinTec-ipQoSTable',
  'bintec_iproutetable'      => 'BinTec-ipRouteTable',
  'bintec_ipxcirctable'      => 'BinTec-ipxCircTable',
  'bintec_ipxstaticroutetab' => 'BinTec-ipxStaticRouteTable',
  'bintec_ipxstaticservtabl' => 'BinTec-ipxStaticServTable',
  'bintec_ospfiftable'       => 'BinTec-ospfIfTable',
  'bintec_pppextiftable'     => 'BinTec-pppExtIfTable',
  'bintec_qosiftable'        => 'BinTec-qosIfTable',
  'bintec_qospolicytable'    => 'BinTec-qosPolicyTable',
  'bintec_ripcirctable'      => 'BinTec-ripCircTable',
  'bintec_sapcirctable'      => 'BinTec-sapCircTable',
  'blue_coat_authorization'  => 'Blue-Coat-Authorization',
  'blue_coat_group'          => 'Blue-Coat-Group',
  'breezecom_attr1'          => 'Breezecom-Attr1',
  'breezecom_attr10'         => 'Breezecom-Attr10',
  'breezecom_attr11'         => 'Breezecom-Attr11',
  'breezecom_attr2'          => 'Breezecom-Attr2',
  'breezecom_attr3'          => 'Breezecom-Attr3',
  'breezecom_attr4'          => 'Breezecom-Attr4',
  'breezecom_attr5'          => 'Breezecom-Attr5',
  'breezecom_attr6'          => 'Breezecom-Attr6',
  'breezecom_attr7'          => 'Breezecom-Attr7',
  'breezecom_attr8'          => 'Breezecom-Attr8',
  'breezecom_attr9'          => 'Breezecom-Attr9',
  'bridge_group'             => 'Bridge_Group',
  'bridge_grouq'             => 'Bridge-Group',
  'bridge_profile'           => 'Bridge-Profile',
  'broadsoft_attr_255'       => 'BroadSoft-Attr-255',
  'brocade_auth_role'        => 'Brocade-Auth-Role',
  'bwas_acb_act_fac_result'  => 'BWAS-Acb-Act-Fac-Result',
  'bwas_acb_act_invoke_time' => 'BWAS-Acb-Act-Invoke-Time',
  'bwas_acb_deact_fac_resul' => 'BWAS-Acb-Deact-Fac-Result',
  'bwas_acb_deact_invoke_ti' => 'BWAS-Acb-Deact-Invoke-Time',
  'bwas_acc_per_call_fac_re' => 'BWAS-Acc-Per-Call-Fac-Result',
  'bwas_acc_per_call_invoke' => 'BWAS-Acc-Per-Call-Invoke-Time',
  'bwas_access_callid'       => 'BWAS-Access-Callid',
  'bwas_access_device_addre' => 'BWAS-Access-Device-Address',
  'bwas_access_network_info' => 'BWAS-Access-Network-Info',
  'bwas_account_code'        => 'BWAS-Account-Code',
  'bwas_acr_act_fac_result'  => 'BWAS-Acr-Act-Fac-Result',
  'bwas_acr_act_invoke_time' => 'BWAS-Acr-Act-Invoke-Time',
  'bwas_acr_deact_fac_resul' => 'BWAS-Acr-Deact-Fac-Result',
  'bwas_acr_deact_invoke_ti' => 'BWAS-Acr-Deact-Invoke-Time',
  'bwas_ahr_action'          => 'BWAS-AHR-Action',
  'bwas_ahr_invoke_time'     => 'BWAS-AHR-Invoke-Time',
  'bwas_answer_indic'        => 'BWAS-Answer-Indic',
  'bwas_answer_time'         => 'BWAS-Answer-Time',
  'bwas_aoc_activation_time' => 'BWAS-AOC-Activation-Time',
  'bwas_aoc_charge'          => 'BWAS-AOC-Charge',
  'bwas_aoc_currency'        => 'BWAS-AOC-Currency',
  'bwas_aoc_result'          => 'BWAS-AOC-Result',
  'bwas_aoc_sum'             => 'BWAS-AOC-Sum',
  'bwas_aoc_time'            => 'BWAS-AOC-Time',
  'bwas_aoc_type'            => 'BWAS-AOC-Type',
  'bwas_as_call_type'        => 'BWAS-AS-Call-Type',
  'bwas_authorization_code'  => 'BWAS-Authorization-Code',
  'bwas_ba_related_call_id'  => 'BWAS-BA-Related-Call-Id',
  'bwas_body_content_dispos' => 'BWAS-Body-Content-Disposition',
  'bwas_body_content_length' => 'BWAS-Body-Content-Length',
  'bwas_body_content_type'   => 'BWAS-Body-Content-Type',
  'bwas_body_originator'     => 'BWAS-Body-Originator',
  'bwas_call_bridge_result'  => 'BWAS-Call-Bridge-Result',
  'bwas_call_category'       => 'BWAS-Call-Category',
  'bwas_call_center_forced_' => 'BWAS-Call-Center-Forced-Forwarding-Act-Result',
  'bwas_call_center_forceda' => 'BWAS-Call-Center-Forced-Forwarding-Deact-Result',
  'bwas_call_center_night_s' => 'BWAS-Call-Center-Night-Service-Act-Result',
  'bwas_call_center_night_t' => 'BWAS-Call-Center-Night-Service-Deact-Result',
  'bwas_call_center_outgoin' => 'BWAS-Call-Center-Outgoing-Call-Fac-Result',
  'bwas_call_center_outgoio' => 'BWAS-Call-Center-Outgoing-Personal-Call-Fac-Result',
  'bwas_call_center_outgoip' => 'BWAS-Call-Center-Outgoing-Phone-Number',
  'bwas_call_detail_record_' => 'BWAS-Call-Detail-Record-Version',
  'bwas_call_park_fac_resul' => 'BWAS-Call-Park-Fac-Result',
  'bwas_call_park_invoke_ti' => 'BWAS-Call-Park-Invoke-Time',
  'bwas_call_park_retr_fac_' => 'BWAS-Call-Park-Retr-Fac-Result',
  'bwas_call_park_retr_invo' => 'BWAS-Call-Park-Retr-Invoke-Time',
  'bwas_call_parked_invoke_' => 'BWAS-Call-Parked-Invoke-Time',
  'bwas_call_pickup_fac_res' => 'BWAS-Call-Pickup-Fac-Result',
  'bwas_call_pickup_invoke_' => 'BWAS-Call-Pickup-Invoke-Time',
  'bwas_call_retrieve_resul' => 'BWAS-Call-Retrieve-Result',
  'bwas_call_waiting_act_fa' => 'BWAS-Call-Waiting-Act-Fac-Result',
  'bwas_call_waiting_act_in' => 'BWAS-Call-Waiting-Act-Invoke-Time',
  'bwas_call_waiting_deact_' => 'BWAS-Call-Waiting-Deact-Invoke-Time',
  'bwas_call_waiting_deacta' => 'BWAS-Call-Waiting-Deact-Fac-Result',
  'bwas_called_asserted_ide' => 'BWAS-Called-Asserted-Identity',
  'bwas_called_asserted_pre' => 'BWAS-Called-Asserted-Pres-Indicator',
  'bwas_called_number'       => 'BWAS-Called-Number',
  'bwas_called_number_conte' => 'BWAS-Called-Number-Context',
  'bwas_calling_number'      => 'BWAS-Calling-Number',
  'bwas_calling_number_cont' => 'BWAS-Calling-Number-Context',
  'bwas_calling_party_categ' => 'BWAS-Calling-Party-Category',
  'bwas_calling_presentatio' => 'BWAS-Calling-Presentation-Indic',
  'bwas_cancel_cwt_per_call' => 'BWAS-Cancel-Cwt-Per-Call-Invoke-Time',
  'bwas_cancel_cwt_per_calm' => 'BWAS-Cancel-Cwt-Per-Call-Fac-Result',
  'bwas_carrier_identificat' => 'BWAS-Carrier-Identification-Code',
  'bwas_cbf_auth_code'       => 'BWAS-CBF-Auth-Code',
  'bwas_cfa_act_fac_result'  => 'BWAS-Cfa-Act-Fac-Result',
  'bwas_cfa_act_invoke_time' => 'BWAS-Cfa-Act-Invoke-Time',
  'bwas_cfa_deact_fac_resul' => 'BWAS-Cfa-Deact-Fac-Result',
  'bwas_cfa_deact_invoke_ti' => 'BWAS-Cfa-Deact-Invoke-Time',
  'bwas_cfa_inter_fac_resul' => 'BWAS-Cfa-Inter-Fac-Result',
  'bwas_cfa_inter_invoke_ti' => 'BWAS-Cfa-Inter-Invoke-Time',
  'bwas_cfb_act_fac_result'  => 'BWAS-Cfb-Act-Fac-Result',
  'bwas_cfb_act_invoke_time' => 'BWAS-Cfb-Act-Invoke-Time',
  'bwas_cfb_deact_fac_resul' => 'BWAS-Cfb-Deact-Fac-Result',
  'bwas_cfb_deact_invoke_ti' => 'BWAS-Cfb-Deact-Invoke-Time',
  'bwas_cfb_inter_fac_resul' => 'BWAS-Cfb-Inter-Fac-Result',
  'bwas_cfb_inter_invoke_ti' => 'BWAS-Cfb-Inter-Invoke-Time',
  'bwas_cfna_act_fac_result' => 'BWAS-Cfna-Act-Fac-Result',
  'bwas_cfna_act_invoke_tim' => 'BWAS-Cfna-Act-Invoke-Time',
  'bwas_cfna_deact_fac_resu' => 'BWAS-Cfna-Deact-Fac-Result',
  'bwas_cfna_deact_invoke_t' => 'BWAS-Cfna-Deact-Invoke-Time',
  'bwas_cfna_inter_fac_resu' => 'BWAS-Cfna-Inter-Fac-Result',
  'bwas_cfna_inter_invoke_t' => 'BWAS-Cfna-Inter-Invoke-Time',
  'bwas_cfnrc_act_fac_resul' => 'BWAS-Cfnrc-Act-Fac-Result',
  'bwas_cfnrc_act_invoke_ti' => 'BWAS-Cfnrc-Act-Invoke-Time',
  'bwas_cfnrc_deact_fac_res' => 'BWAS-Cfnrc-Deact-Fac-Result',
  'bwas_cfnrc_deact_invoke_' => 'BWAS-Cfnrc-Deact-Invoke-Time',
  'bwas_charge_indic'        => 'BWAS-Charge-Indic',
  'bwas_charge_number'       => 'BWAS-Charge-Number',
  'bwas_charging_function_a' => 'BWAS-Charging-Function-Addresses',
  'bwas_charging_vection_cr' => 'BWAS-Charging-Vection-Creator',
  'bwas_charging_vection_or' => 'BWAS-Charging-Vection-Orig',
  'bwas_charging_vection_te' => 'BWAS-Charging-Vection-Term',
  'bwas_charging_vector_key' => 'BWAS-Charging-Vector-Key',
  'bwas_clear_mwi_fac_resul' => 'BWAS-Clear-Mwi-Fac-Result',
  'bwas_clear_mwi_invoke_ti' => 'BWAS-Clear-Mwi-Invoke-Time',
  'bwas_clid_blocking_act_f' => 'BWAS-Clid-Blocking-Act-Fac-Result',
  'bwas_clid_blocking_act_i' => 'BWAS-Clid-Blocking-Act-Invoke-Time',
  'bwas_clid_blocking_deact' => 'BWAS-Clid-Blocking-Deact-Invoke-Time',
  'bwas_clid_blocking_deacu' => 'BWAS-Clid-Blocking-Deact-Fac-Result',
  'bwas_clid_blocking_per_c' => 'BWAS-Clid-Blocking-Per-Call-Invoke-Time',
  'bwas_clid_blocking_per_d' => 'BWAS-Clid-Blocking-Per-Call-Fac-Result',
  'bwas_clid_delivery_per_c' => 'BWAS-Clid-Delivery-Per-Call-Invoke-Time',
  'bwas_clid_delivery_per_d' => 'BWAS-Clid-Delivery-Per-Call-Fac-Result',
  'bwas_clid_permitted'      => 'BWAS-CLID-Permitted',
  'bwas_codec'               => 'BWAS-Codec',
  'bwas_codec_usage'         => 'BWAS-Codec-Usage',
  'bwas_conf_id'             => 'BWAS-Conf-Id',
  'bwas_conf_start_time'     => 'BWAS-Conf-Start-Time',
  'bwas_conf_stop_time'      => 'BWAS-Conf-Stop-Time',
  'bwas_conf_type'           => 'BWAS-Conf-Type',
  'bwas_conference_bridge'   => 'BWAS-Conference-Bridge',
  'bwas_conference_callid'   => 'BWAS-Conference-Callid',
  'bwas_conference_from'     => 'BWAS-Conference-From',
  'bwas_conference_id'       => 'BWAS-Conference-Id',
  'bwas_conference_invoke_t' => 'BWAS-Conference-Invoke-Time',
  'bwas_conference_owner'    => 'BWAS-Conference-Owner',
  'bwas_conference_owner_dn' => 'BWAS-Conference-Owner-Dn',
  'bwas_conference_project_' => 'BWAS-Conference-Project-Code',
  'bwas_conference_role'     => 'BWAS-Conference-Role',
  'bwas_conference_title'    => 'BWAS-Conference-Title',
  'bwas_conference_to'       => 'BWAS-Conference-To',
  'bwas_configurable_clid'   => 'BWAS-Configurable-CLID',
  'bwas_cot_fac_result'      => 'BWAS-Cot-Fac-Result',
  'bwas_cot_invoke_time'     => 'BWAS-Cot-Invoke-Time',
  'bwas_customringback_invo' => 'BWAS-CustomRingback-Invoke-Time',
  'bwas_customringback_medi' => 'BWAS-CustomRingback-Media-Selection',
  'bwas_department'          => 'BWAS-Department',
  'bwas_dialed_digits'       => 'BWAS-Dialed-Digits',
  'bwas_dialed_digits_conte' => 'BWAS-Dialed-Digits-Context',
  'bwas_direct_vm_xfer_fac_' => 'BWAS-Direct-Vm-Xfer-Fac-Result',
  'bwas_direct_vm_xfer_invo' => 'BWAS-Direct-Vm-Xfer-Invoke-Time',
  'bwas_directed_call_picku' => 'BWAS-Directed-Call-Pickup-Invoke-Time',
  'bwas_directed_call_pickv' => 'BWAS-Directed-Call-Pickup-Fac-Result',
  'bwas_direction'           => 'BWAS-Direction',
  'bwas_diversion_inhibitor' => 'BWAS-Diversion-Inhibitor-Invoke-time',
  'bwas_diversion_inhibitos' => 'BWAS-Diversion-Inhibitor-Fac-Result',
  'bwas_dnd_act_fac_result'  => 'BWAS-Dnd-Act-Fac-Result',
  'bwas_dnd_act_invoke_time' => 'BWAS-Dnd-Act-Invoke-Time',
  'bwas_dnd_deact_fac_resul' => 'BWAS-Dnd-Deact-Fac-Result',
  'bwas_dnd_deact_invoke_ti' => 'BWAS-Dnd-Deact-Invoke-Time',
  'bwas_dpubi_fac_result'    => 'BWAS-Dpubi-Fac-Result',
  'bwas_dpubi_invoke_time'   => 'BWAS-Dpubi-Invoke-Time',
  'bwas_early_media_initiat' => 'BWAS-Early-Media-Initiator-Flag',
  'bwas_early_media_sdp'     => 'BWAS-Early-Media-SDP',
  'bwas_failover_correlatio' => 'BWAS-Failover-Correlation-Id',
  'bwas_fax_messaging'       => 'BWAS-Fax-Messaging',
  'bwas_flash_call_hold_fac' => 'BWAS-Flash-Call-Hold-Fac-Result',
  'bwas_flash_call_hold_inv' => 'BWAS-Flash-Call-Hold-Invoke-Time',
  'bwas_group'               => 'BWAS-Group',
  'bwas_group_number'        => 'BWAS-Group-Number',
  'bwas_hoteling_group'      => 'BWAS-Hoteling-Group',
  'bwas_hoteling_group_numb' => 'BWAS-Hoteling-Group-Number',
  'bwas_hoteling_invoke_tim' => 'BWAS-Hoteling-Invoke-Time',
  'bwas_hoteling_user_numbe' => 'BWAS-Hoteling-User-Number',
  'bwas_hoteling_userid'     => 'BWAS-Hoteling-UserId',
  'bwas_instantgroupcall_in' => 'BWAS-InstantGroupCall-Invoke-Time',
  'bwas_instantgroupcall_pu' => 'BWAS-InstantGroupCall-PushToTalk',
  'bwas_instantgroupcall_re' => 'BWAS-InstantGroupCall-Related-Callid',
  'bwas_last_number_redial_' => 'BWAS-Last-Number-Redial-Invoke-Time',
  'bwas_last_number_rediala' => 'BWAS-Last-Number-Redial-Fac-Result',
  'bwas_local_callid'        => 'BWAS-Local-Callid',
  'bwas_location_control_ac' => 'BWAS-Location-Control-Act-Result',
  'bwas_location_control_de' => 'BWAS-Location-Control-Deact-Result',
  'bwas_media_initiator_fla' => 'BWAS-Media-Initiator-Flag',
  'bwas_moh_deact_fac_resul' => 'BWAS-Moh-Deact-Fac-Result',
  'bwas_network_call_type'   => 'BWAS-Network-Call-Type',
  'bwas_network_callid'      => 'BWAS-Network-Callid',
  'bwas_network_translated_' => 'BWAS-Network-Translated-Number',
  'bwas_network_translateda' => 'BWAS-Network-Translated-Group',
  'bwas_network_translatedb' => 'BWAS-Network-Translated-Number-Context',
  'bwas_network_type'        => 'BWAS-Network-Type',
  'bwas_no_answer_set_fac_r' => 'BWAS-No-Answer-Set-Fac-Result',
  'bwas_no_answer_set_invok' => 'BWAS-No-Answer-Set-Invoke-Time',
  'bwas_original_called_num' => 'BWAS-Original-Called-Number',
  'bwas_original_called_nun' => 'BWAS-Original-Called-Number-Context',
  'bwas_original_called_pre' => 'BWAS-Original-Called-Presentation-Indic',
  'bwas_original_called_rea' => 'BWAS-Original-Called-Reason',
  'bwas_origination_method'  => 'BWAS-Origination-Method',
  'bwas_other_party_name'    => 'BWAS-Other-Party-Name',
  'bwas_other_party_name_pr' => 'BWAS-Other-Party-Name-Pres-Indic',
  'bwas_otherinfoinpcv'      => 'BWAS-OtherInfoInPCV',
  'bwas_outside_access_code' => 'BWAS-Outside-Access-Code',
  'bwas_prepaid_status'      => 'BWAS-Prepaid-Status',
  'bwas_primary_device_line' => 'BWAS-Primary-Device-Line-Port',
  'bwas_push_to_talk_fac_re' => 'BWAS-Push-to-Talk-Fac-Result',
  'bwas_push_to_talk_invoke' => 'BWAS-Push-to-Talk-Invoke-Time',
  'bwas_q850_cause'          => 'BWAS-Q850-Cause',
  'bwas_recall_type'         => 'BWAS-Recall-Type',
  'bwas_received_calling_nu' => 'BWAS-Received-Calling-Number',
  'bwas_record_id'           => 'BWAS-Record-id',
  'bwas_redirecting_number'  => 'BWAS-Redirecting-Number',
  'bwas_redirecting_number_' => 'BWAS-Redirecting-Number-Context',
  'bwas_redirecting_present' => 'BWAS-Redirecting-Presentation-Indic',
  'bwas_redirecting_reason'  => 'BWAS-Redirecting-Reason',
  'bwas_related_callid'      => 'BWAS-Related-CallId',
  'bwas_related_callid_reas' => 'BWAS-Related-CallId-Reason',
  'bwas_release_time'        => 'BWAS-Release-Time',
  'bwas_releasing_party'     => 'BWAS-Releasing-Party',
  'bwas_remote_callid'       => 'BWAS-Remote-Callid',
  'bwas_return_call_fac_res' => 'BWAS-Return-Call-Fac-Result',
  'bwas_return_call_invoke_' => 'BWAS-Return-Call-Invoke-Time',
  'bwas_return_call_number_' => 'BWAS-Return-Call-Number-Deletion-Invoke-Time',
  'bwas_return_call_numbera' => 'BWAS-Return-Call-Number-Deletion-Fac-Result',
  'bwas_route'               => 'BWAS-Route',
  'bwas_routing_number'      => 'BWAS-Routing-Number',
  'bwas_sac_lock_fac_result' => 'BWAS-Sac-Lock-Fac-Result',
  'bwas_sac_lock_invoke_tim' => 'BWAS-Sac-Lock-Invoke-Time',
  'bwas_sac_unlock_fac_resu' => 'BWAS-Sac-Unlock-Fac-Result',
  'bwas_sac_unlock_invoke_t' => 'BWAS-Sac-Unlock-Invoke-Time',
  'bwas_scf_act_fac_result'  => 'BWAS-Scf-Act-Fac-Result',
  'bwas_scf_act_invoke_time' => 'BWAS-Scf-Act-Invoke-Time',
  'bwas_scf_deact_fac_resul' => 'BWAS-Scf-Deact-Fac-Result',
  'bwas_scf_deact_invoke_ti' => 'BWAS-Scf-Deact-Invoke-Time',
  'bwas_sd100_programming_f' => 'BWAS-Sd100-Programming-Fac-Result',
  'bwas_sd100_programming_i' => 'BWAS-Sd100-Programming-Invoke-Time',
  'bwas_sd8_programming_fac' => 'BWAS-Sd8-Programming-Fac-Result',
  'bwas_sd8_programming_inv' => 'BWAS-Sd8-Programming-Invoke-Time',
  'bwas_sdp'                 => 'BWAS-SDP',
  'bwas_sdp_answer_timestam' => 'BWAS-SDP-Answer-Timestamp',
  'bwas_sdp_offer_timestamp' => 'BWAS-SDP-Offer-Timestamp',
  'bwas_service_provider'    => 'BWAS-Service-provider',
  'bwas_sip_error_code'      => 'BWAS-SIP-Error-Code',
  'bwas_spare_136'           => 'BWAS-Spare-136',
  'bwas_spare_29'            => 'BWAS-Spare-29',
  'bwas_spare_31'            => 'BWAS-Spare-31',
  'bwas_start_time'          => 'BWAS-Start-Time',
  'bwas_termination_cause'   => 'BWAS-Termination-Cause',
  'bwas_transfer_invoke_tim' => 'BWAS-Transfer-Invoke-Time',
  'bwas_transfer_related_ca' => 'BWAS-Transfer-Related-CallId',
  'bwas_transfer_result'     => 'BWAS-Transfer-Result',
  'bwas_transfer_type'       => 'BWAS-Transfer-Type',
  'bwas_trunk_group_info'    => 'BWAS-Trunk-Group-Info',
  'bwas_trunk_group_name'    => 'BWAS-Trunk-Group-Name',
  'bwas_tsd_digits'          => 'BWAS-TSD-Digits',
  'bwas_type'                => 'BWAS-Type',
  'bwas_type_of_network'     => 'BWAS-Type-Of-Network',
  'bwas_user_number'         => 'BWAS-User-Number',
  'bwas_user_timezone'       => 'BWAS-User-Timezone',
  'bwas_userid'              => 'BWAS-UserId',
  'bwas_vma_act_fac_result'  => 'BWAS-Vma-Act-Fac-Result',
  'bwas_vma_act_invoke_time' => 'BWAS-Vma-Act-Invoke-Time',
  'bwas_vma_deact_fac_resul' => 'BWAS-Vma-Deact-Fac-Result',
  'bwas_vma_deact_invoke_ti' => 'BWAS-Vma-Deact-Invoke-Time',
  'bwas_vmb_act_fac_result'  => 'BWAS-Vmb-Act-Fac-Result',
  'bwas_vmb_act_invoke_time' => 'BWAS-Vmb-Act-Invoke-Time',
  'bwas_vmb_deact_fac_resul' => 'BWAS-Vmb-Deact-Fac-Result',
  'bwas_vmb_deact_invoke_ti' => 'BWAS-Vmb-Deact-Invoke-Time',
  'bwas_vmna_act_fac_result' => 'BWAS-Vmna-Act-Fac-Result',
  'bwas_vmna_act_invoke_tim' => 'BWAS-Vmna-Act-Invoke-Time',
  'bwas_vmna_deact_fac_resu' => 'BWAS-Vmna-Deact-Fac-Result',
  'bwas_vmna_deact_invoke_t' => 'BWAS-Vmna-Deact-Invoke-Time',
  'bwas_vp_calling_invoke_t' => 'BWAS-VP-Calling-Invoke-Time',
  'cablelabs_account_code'   => 'CableLabs-Account-Code',
  'cablelabs_alerting_signa' => 'CableLabs-Alerting-Signal',
  'cablelabs_am_opaque_data' => 'CableLabs-AM-Opaque-Data',
  'cablelabs_application_ma' => 'CableLabs-Application-Manager-ID',
  'cablelabs_authorization_' => 'CableLabs-Authorization-Code',
  'cablelabs_call_terminati' => 'CableLabs-Call-Termination-Cause',
  'cablelabs_called_party_n' => 'CableLabs-Called-Party-Number',
  'cablelabs_calling_party_' => 'CableLabs-Calling-Party-Number',
  'cablelabs_carrier_identi' => 'CableLabs-Carrier-Identification-Code',
  'cablelabs_ccc_id'         => 'CableLabs-CCC-ID',
  'cablelabs_channel_state'  => 'CableLabs-Channel-State',
  'cablelabs_charge_number'  => 'CableLabs-Charge-Number',
  'cablelabs_database_id'    => 'CableLabs-Database-ID',
  'cablelabs_dial_around_co' => 'CableLabs-Dial-Around-Code',
  'cablelabs_dialed_digits'  => 'CableLabs-Dialed-Digits',
  'cablelabs_direction_indi' => 'CableLabs-Direction-indicator',
  'cablelabs_el_surveillanc' => 'CableLabs-El-Surveillance-DF-Security',
  'cablelabs_electronic_sur' => 'CableLabs-Electronic-Surveillance-Ind',
  'cablelabs_element_reques' => 'CableLabs-Element-Requesting-QoS',
  'cablelabs_error_descript' => 'CableLabs-Error-Description',
  'cablelabs_event_message'  => 'CableLabs-Event-Message',
  'cablelabs_financial_enti' => 'CableLabs-Financial-Entity-ID',
  'cablelabs_first_call_cal' => 'CableLabs-First-Call-Calling-Party-Num',
  'cablelabs_flow_direction' => 'CableLabs-Flow-Direction',
  'cablelabs_forwarded_numb' => 'CableLabs-Forwarded-Number',
  'cablelabs_gate_time_info' => 'CableLabs-Gate-Time-Info',
  'cablelabs_gate_usage_inf' => 'CableLabs-Gate-Usage-Info',
  'cablelabs_intl_code'      => 'CableLabs-Intl-Code',
  'cablelabs_location_routi' => 'CableLabs-Location-Routing-Number',
  'cablelabs_misc_signaling' => 'CableLabs-Misc-Signaling-Information',
  'cablelabs_mta_endpoint_n' => 'CableLabs-MTA-Endpoint-Name',
  'cablelabs_mta_udp_portnu' => 'CableLabs-MTA-UDP-Portnum',
  'cablelabs_policy_decisio' => 'CableLabs-Policy-Decision-Status',
  'cablelabs_policy_deleted' => 'CableLabs-Policy-Deleted-Reason',
  'cablelabs_policy_denied_' => 'CableLabs-Policy-Denied-Reason',
  'cablelabs_policy_update_' => 'CableLabs-Policy-Update-Reason',
  'cablelabs_qos_descriptor' => 'CableLabs-QoS-Descriptor',
  'cablelabs_qos_release_re' => 'CableLabs-QoS-Release-Reason',
  'cablelabs_query_type'     => 'CableLabs-Query-Type',
  'cablelabs_redirected_fro' => 'CableLabs-Redirected-From-Info',
  'cablelabs_redirected_frp' => 'CableLabs-Redirected-From-Party-Number',
  'cablelabs_redirected_to_' => 'CableLabs-Redirected-To-Party-Number',
  'cablelabs_related_call_b' => 'CableLabs-Related-Call-Billing-Crl-ID',
  'cablelabs_reserved'       => 'CableLabs-Reserved',
  'cablelabs_returned_numbe' => 'CableLabs-Returned-Number',
  'cablelabs_routing_number' => 'CableLabs-Routing-Number',
  'cablelabs_sdp_downstream' => 'CableLabs-SDP-Downstream',
  'cablelabs_sdp_upstream'   => 'CableLabs-SDP-Upstream',
  'cablelabs_second_call_ca' => 'CableLabs-Second-Call-Calling-Party-Num',
  'cablelabs_service_name'   => 'CableLabs-Service-Name',
  'cablelabs_sf_id'          => 'CableLabs-SF-ID',
  'cablelabs_signal_type'    => 'CableLabs-Signal-Type',
  'cablelabs_subject_audibl' => 'CableLabs-Subject-Audible-Signal',
  'cablelabs_subscriber_id'  => 'CableLabs-Subscriber-ID',
  'cablelabs_switch_hook_fl' => 'CableLabs-Switch-Hook-Flash',
  'cablelabs_terminal_displ' => 'CableLabs-Terminal-Display-Info',
  'cablelabs_time_adjustmen' => 'CableLabs-Time-Adjustment',
  'cablelabs_time_usage_lim' => 'CableLabs-Time-Usage-Limit',
  'cablelabs_translation_in' => 'CableLabs-Translation-Input',
  'cablelabs_trunk_group_id' => 'CableLabs-Trunk-Group-ID',
  'cablelabs_user_input'     => 'CableLabs-User-Input',
  'cablelabs_volume_usage_l' => 'CableLabs-Volume-Usage-Limit',
  'cabletron_protocol_calla' => 'Cabletron-Protocol-Callable',
  'cabletron_protocol_enabl' => 'Cabletron-Protocol-Enable',
  'cache_delete_cache'       => 'Cache-Delete-Cache',
  'cache_entry_hits'         => 'Cache-Entry-Hits',
  'cache_no_caching'         => 'Cache-No-Caching',
  'cache_status_only'        => 'Cache-Status-Only',
  'cache_ttl'                => 'Cache-TTL',
  'cached_session_policy'    => 'Cached-Session-Policy',
  'cajun_service_type'       => 'Cajun-Service-Type',
  'call_id'                  => 'call-id',
  'callback_id'              => 'Callback-Id',
  'callback_number'          => 'Callback-Number',
  'called_station_id'        => 'Called-Station-Id',
  'caller_id'                => 'Caller-ID',
  'calling_station_id'       => 'Calling-Station-Id',
  'camiant_mi_role'          => 'Camiant-MI-role',
  'camiant_mi_scope'         => 'Camiant-MI-scope',
  'camiant_sui_role'         => 'Camiant-SUI-role',
  'cbbsm_bandwidth'          => 'CBBSM-Bandwidth',
  'ces_group'                => 'CES-Group',
  'challenge_state'          => 'Challenge-State',
  'chap_challenge'           => 'CHAP-Challenge',
  'chap_password'            => 'CHAP-Password',
  'char_noecho'              => 'Char-Noecho',
  'chargeable_user_identity' => 'Chargeable-User-Identity',
  'chillispot_bandwidth_max' => 'ChilliSpot-Bandwidth-Max-Up',
  'chillispot_bandwidth_may' => 'ChilliSpot-Bandwidth-Max-Down',
  'chillispot_config'        => 'ChilliSpot-Config',
  'chillispot_interval'      => 'ChilliSpot-Interval',
  'chillispot_lang'          => 'ChilliSpot-Lang',
  'chillispot_mac_allowed'   => 'ChilliSpot-MAC-Allowed',
  'chillispot_max_input_oct' => 'ChilliSpot-Max-Input-Octets',
  'chillispot_max_output_oc' => 'ChilliSpot-Max-Output-Octets',
  'chillispot_max_total_oct' => 'ChilliSpot-Max-Total-Octets',
  'chillispot_originalurl'   => 'ChilliSpot-OriginalURL',
  'chillispot_uam_allowed'   => 'ChilliSpot-UAM-Allowed',
  'chillispot_version'       => 'ChilliSpot-Version',
  'circuit_protocol_encap'   => 'Circuit-Protocol-Encap',
  'circuit_protocol_encaq'   => 'Circuit-Protocol-Encap',
  'cisco_abort_cause'        => 'Cisco-Abort-Cause',
  'cisco_account_info'       => 'Cisco-Account-Info',
  'cisco_assign_ip_pool'     => 'Cisco-Assign-IP-Pool',
  'cisco_avpair'             => 'Cisco-AVPair',
  'cisco_call_filter'        => 'Cisco-Call-Filter',
  'cisco_call_type'          => 'Cisco-Call-Type',
  'cisco_command_code'       => 'Cisco-Command-Code',
  'cisco_control_info'       => 'Cisco-Control-Info',
  'cisco_data_filter'        => 'Cisco-Data-Filter',
  'cisco_data_rate'          => 'Cisco-Data-Rate',
  'cisco_disconnect_cause'   => 'Cisco-Disconnect-Cause',
  'cisco_email_server_ack_f' => 'Cisco-Email-Server-Ack-Flag',
  'cisco_email_server_addre' => 'Cisco-Email-Server-Address',
  'cisco_fax_account_id_ori' => 'Cisco-Fax-Account-Id-Origin',
  'cisco_fax_auth_status'    => 'Cisco-Fax-Auth-Status',
  'cisco_fax_connect_speed'  => 'Cisco-Fax-Connect-Speed',
  'cisco_fax_coverpage_flag' => 'Cisco-Fax-Coverpage-Flag',
  'cisco_fax_dsn_address'    => 'Cisco-Fax-Dsn-Address',
  'cisco_fax_dsn_flag'       => 'Cisco-Fax-Dsn-Flag',
  'cisco_fax_mdn_address'    => 'Cisco-Fax-Mdn-Address',
  'cisco_fax_mdn_flag'       => 'Cisco-Fax-Mdn-Flag',
  'cisco_fax_modem_time'     => 'Cisco-Fax-Modem-Time',
  'cisco_fax_msg_id'         => 'Cisco-Fax-Msg-Id',
  'cisco_fax_pages'          => 'Cisco-Fax-Pages',
  'cisco_fax_process_abort_' => 'Cisco-Fax-Process-Abort-Flag',
  'cisco_fax_recipient_coun' => 'Cisco-Fax-Recipient-Count',
  'cisco_gateway_id'         => 'Cisco-Gateway-Id',
  'cisco_idle_limit'         => 'Cisco-Idle-Limit',
  'cisco_ip_direct'          => 'Cisco-IP-Direct',
  'cisco_ip_pool_definition' => 'Cisco-IP-Pool-Definition',
  'cisco_link_compression'   => 'Cisco-Link-Compression',
  'cisco_maximum_channels'   => 'Cisco-Maximum-Channels',
  'cisco_maximum_time'       => 'Cisco-Maximum-Time',
  'cisco_multilink_id'       => 'Cisco-Multilink-ID',
  'cisco_nas_port'           => 'Cisco-NAS-Port',
  'cisco_num_in_multilink'   => 'Cisco-Num-In-Multilink',
  'cisco_policy_down'        => 'Cisco-Policy-Down',
  'cisco_policy_up'          => 'Cisco-Policy-Up',
  'cisco_port_used'          => 'Cisco-Port-Used',
  'cisco_ppp_async_map'      => 'Cisco-PPP-Async-Map',
  'cisco_ppp_vj_slot_comp'   => 'Cisco-PPP-VJ-Slot-Comp',
  'cisco_pre_input_octets'   => 'Cisco-Pre-Input-Octets',
  'cisco_pre_input_packets'  => 'Cisco-Pre-Input-Packets',
  'cisco_pre_output_octets'  => 'Cisco-Pre-Output-Octets',
  'cisco_pre_output_packets' => 'Cisco-Pre-Output-Packets',
  'cisco_presession_time'    => 'Cisco-PreSession-Time',
  'cisco_pw_lifetime'        => 'Cisco-PW-Lifetime',
  'cisco_route_ip'           => 'Cisco-Route-IP',
  'cisco_service_info'       => 'Cisco-Service-Info',
  'cisco_subscriber_passwor' => 'Cisco-Subscriber-Password',
  'cisco_target_util'        => 'Cisco-Target-Util',
  'cisco_xmit_rate'          => 'Cisco-Xmit-Rate',
  'citrix_gid'               => 'Citrix-GID',
  'citrix_group_ids'         => 'Citrix-Group-Ids',
  'citrix_group_names'       => 'Citrix-Group-Names',
  'citrix_home'              => 'Citrix-Home',
  'citrix_shell'             => 'Citrix-Shell',
  'citrix_uid'               => 'Citrix-UID',
  'citrix_user_groups'       => 'Citrix-User-Groups',
  'class'                    => 'Class',
  'class_volume_in_counter'  => 'Class-Volume-In-Counter',
  'class_volume_limit'       => 'Class-Volume-limit',
  'class_volume_out_counter' => 'Class-Volume-Out-Counter',
  'clavister_user_group'     => 'Clavister-User-Group',
  'cleartext_password'       => 'Cleartext-Password',
  'client_dns_pri'           => 'Client_DNS_Pri',
  'client_dns_prj'           => 'Client-DNS-Pri',
  'client_dns_sec'           => 'Client_DNS_Sec',
  'client_dns_sed'           => 'Client-DNS-Sec',
  'client_id'                => 'Client-Id',
  'client_ip_address'        => 'Client-IP-Address',
  'client_nbns_pri'          => 'Client-NBNS-Pri',
  'client_nbns_sec'          => 'Client-NBNS-Sec',
  'client_port_dnis'         => 'Client-Port-DNIS',
  'client_port_id'           => 'Client-Port-Id',
  'client_shortname'         => 'Client-Shortname',
  'colubris_avpair'          => 'Colubris-AVPair',
  'colubris_intercept'       => 'Colubris-Intercept',
  'commands'                 => 'Commands',
  'compatible_echo'          => 'Compatible-Echo',
  'compatible_tunnel_delay'  => 'Compatible-Tunnel-Delay',
  'compatible_tunnel_group_' => 'Compatible-Tunnel-Group-Info',
  'compatible_tunnel_ipx'    => 'Compatible-Tunnel-IPX',
  'compatible_tunnel_passwo' => 'Compatible-Tunnel-Password',
  'compatible_tunnel_server' => 'Compatible-Tunnel-Server-Endpoint',
  'compatible_tunnel_throug' => 'Compatible-Tunnel-Throughput',
  'configuration_token'      => 'Configuration-Token',
  'connect_info'             => 'Connect-Info',
  'connect_rate'             => 'Connect-Rate',
  'context_name'             => 'Context_Name',
  'context_namf'             => 'Context-Name',
  'cosine_address_pool_name' => 'Cosine-Address-Pool-Name',
  'cosine_cli_user_permissi' => 'Cosine-CLI-User-Permission-ID',
  'cosine_connection_profil' => 'Cosine-Connection-Profile-Name',
  'cosine_dlci'              => 'Cosine-DLCI',
  'cosine_ds_byte'           => 'Cosine-DS-Byte',
  'cosine_enterprise_id'     => 'Cosine-Enterprise-ID',
  'cosine_lns_ip_address'    => 'Cosine-LNS-IP-Address',
  'cosine_vpi_vci'           => 'Cosine-VPI-VCI',
  'crypt_password'           => 'Crypt-Password',
  'current_time'             => 'Current-Time',
  'cvpn3000_access_hours'    => 'CVPN3000-Access-Hours',
  'cvpn3000_address_pools'   => 'CVPN3000-Address-Pools',
  'cvpn3000_allow_alpha_onl' => 'CVPN3000-Allow-Alpha-Only-Passwords',
  'cvpn3000_allow_network_e' => 'CVPN3000-Allow-Network-Extension-Mode',
  'cvpn3000_auth_server_pas' => 'CVPN3000-Auth-Server-Password',
  'cvpn3000_auth_server_pri' => 'CVPN3000-Auth-Server-Priority',
  'cvpn3000_auth_server_typ' => 'CVPN3000-Auth-Server-Type',
  'cvpn3000_authd_user_idle' => 'CVPN3000-Authd-User-Idle-Timeout',
  'cvpn3000_cisco_ip_phone_' => 'CVPN3000-Cisco-IP-Phone-Bypass',
  'cvpn3000_dhcp_network_sc' => 'CVPN3000-DHCP-Network-Scope',
  'cvpn3000_group_name'      => 'CVPN3000-Group-Name',
  'cvpn3000_ike_keep_alives' => 'CVPN3000-IKE-Keep-Alives',
  'cvpn3000_ipsec_allow_pas' => 'CVPN3000-IPSec-Allow-Passwd-Store',
  'cvpn3000_ipsec_auth_on_r' => 'CVPN3000-IPSec-Auth-On-Rekey',
  'cvpn3000_ipsec_authentic' => 'CVPN3000-IPSec-Authentication',
  'cvpn3000_ipsec_authoriza' => 'CVPN3000-IPSec-Authorization-Type',
  'cvpn3000_ipsec_authorizb' => 'CVPN3000-IPSec-Authorization-Required',
  'cvpn3000_ipsec_backup_se' => 'CVPN3000-IPSec-Backup-Servers',
  'cvpn3000_ipsec_backup_sf' => 'CVPN3000-IPSec-Backup-Server-List',
  'cvpn3000_ipsec_banner1'   => 'CVPN3000-IPSec-Banner1',
  'cvpn3000_ipsec_banner2'   => 'CVPN3000-IPSec-Banner2',
  'cvpn3000_ipsec_client_fw' => 'CVPN3000-IPSec-Client-Fw-Filter-Name',
  'cvpn3000_ipsec_client_fx' => 'CVPN3000-IPSec-Client-Fw-Filter-Opt',
  'cvpn3000_ipsec_confidenc' => 'CVPN3000-IPSec-Confidence-Level',
  'cvpn3000_ipsec_default_d' => 'CVPN3000-IPSec-Default-Domain',
  'cvpn3000_ipsec_dn_field'  => 'CVPN3000-IPSec-DN-Field',
  'cvpn3000_ipsec_group_nam' => 'CVPN3000-IPSec-Group-Name',
  'cvpn3000_ipsec_ike_peer_' => 'CVPN3000-IPSec-IKE-Peer-ID-Check',
  'cvpn3000_ipsec_ip_compre' => 'CVPN3000-IPSec-IP-Compression',
  'cvpn3000_ipsec_ltl_keepa' => 'CVPN3000-IPSec-LTL-Keepalives',
  'cvpn3000_ipsec_mode_conf' => 'CVPN3000-IPSec-Mode-Config',
  'cvpn3000_ipsec_over_udp'  => 'CVPN3000-IPSec-Over-UDP',
  'cvpn3000_ipsec_over_udp_' => 'CVPN3000-IPSec-Over-UDP-Port',
  'cvpn3000_ipsec_reqrd_cli' => 'CVPN3000-IPSec-Reqrd-Client-Fw-Cap',
  'cvpn3000_ipsec_sec_assoc' => 'CVPN3000-IPSec-Sec-Association',
  'cvpn3000_ipsec_split_dns' => 'CVPN3000-IPSec-Split-DNS-Names',
  'cvpn3000_ipsec_split_tun' => 'CVPN3000-IPSec-Split-Tunnel-List',
  'cvpn3000_ipsec_split_tuo' => 'CVPN3000-IPSec-Split-Tunneling-Policy',
  'cvpn3000_ipsec_tunnel_ty' => 'CVPN3000-IPSec-Tunnel-Type',
  'cvpn3000_ipsec_user_grou' => 'CVPN3000-IPSec-User-Group-Lock',
  'cvpn3000_ipv6_address_po' => 'CVPN3000-IPv6-Address-Pools',
  'cvpn3000_ipv6_vpn_filter' => 'CVPN3000-IPv6-VPN-Filter',
  'cvpn3000_l2tp_encryption' => 'CVPN3000-L2TP-Encryption',
  'cvpn3000_l2tp_min_auth_p' => 'CVPN3000-L2TP-Min-Auth-Protocol',
  'cvpn3000_l2tp_mppc_compr' => 'CVPN3000-L2TP-MPPC-Compression',
  'cvpn3000_leap_bypass'     => 'CVPN3000-LEAP-Bypass',
  'cvpn3000_member_of'       => 'CVPN3000-Member-Of',
  'cvpn3000_min_password_le' => 'CVPN3000-Min-Password-Length',
  'cvpn3000_ms_client_icpt_' => 'CVPN3000-MS-Client-Icpt-DHCP-Conf-Msg',
  'cvpn3000_ms_client_subne' => 'CVPN3000-MS-Client-Subnet-Mask',
  'cvpn3000_nac_settings'    => 'CVPN3000-NAC-Settings',
  'cvpn3000_partition_max_s' => 'CVPN3000-Partition-Max-Sessions',
  'cvpn3000_partition_mobil' => 'CVPN3000-Partition-Mobile-IP-Key',
  'cvpn3000_partition_mobim' => 'CVPN3000-Partition-Mobile-IP-Address',
  'cvpn3000_partition_mobin' => 'CVPN3000-Partition-Mobile-IP-SPI',
  'cvpn3000_partition_premi' => 'CVPN3000-Partition-Premise-Router',
  'cvpn3000_partition_prima' => 'CVPN3000-Partition-Primary-DHCP',
  'cvpn3000_partition_secon' => 'CVPN3000-Partition-Secondary-DHCP',
  'cvpn3000_port_forwarding' => 'CVPN3000-Port-Forwarding-Name',
  'cvpn3000_pptp_encryption' => 'CVPN3000-PPTP-Encryption',
  'cvpn3000_pptp_min_auth_p' => 'CVPN3000-PPTP-Min-Auth-Protocol',
  'cvpn3000_pptp_mppc_compr' => 'CVPN3000-PPTP-MPPC-Compression',
  'cvpn3000_primary_dns'     => 'CVPN3000-Primary-DNS',
  'cvpn3000_primary_wins'    => 'CVPN3000-Primary-WINS',
  'cvpn3000_priority_on_sep' => 'CVPN3000-Priority-On-SEP',
  'cvpn3000_privilege_level' => 'CVPN3000-Privilege-Level',
  'cvpn3000_reqrd_client_fw' => 'CVPN3000-Reqrd-Client-Fw-Vendor-Code',
  'cvpn3000_reqrd_client_fx' => 'CVPN3000-Reqrd-Client-Fw-Product-Code',
  'cvpn3000_reqrd_client_fy' => 'CVPN3000-Reqrd-Client-Fw-Description',
  'cvpn3000_request_auth_ve' => 'CVPN3000-Request-Auth-Vector',
  'cvpn3000_require_hw_clie' => 'CVPN3000-Require-HW-Client-Auth',
  'cvpn3000_require_individ' => 'CVPN3000-Require-Individual-User-Auth',
  'cvpn3000_secondary_dns'   => 'CVPN3000-Secondary-DNS',
  'cvpn3000_secondary_wins'  => 'CVPN3000-Secondary-WINS',
  'cvpn3000_sep_card_assign' => 'CVPN3000-SEP-Card-Assignment',
  'cvpn3000_simultaneous_lo' => 'CVPN3000-Simultaneous-Logins',
  'cvpn3000_smart_tunnel_au' => 'CVPN3000-Smart-Tunnel-Auto',
  'cvpn3000_strip_realm'     => 'CVPN3000-Strip-Realm',
  'cvpn3000_tunneling_proto' => 'CVPN3000-Tunneling-Protocols',
  'cvpn3000_use_client_addr' => 'CVPN3000-Use-Client-Address',
  'cvpn3000_user_auth_serve' => 'CVPN3000-User-Auth-Server-Name',
  'cvpn3000_user_auth_servf' => 'CVPN3000-User-Auth-Server-Port',
  'cvpn3000_user_auth_servg' => 'CVPN3000-User-Auth-Server-Secret',
  'cvpn3000_vlan'            => 'CVPN3000-VLAN',
  'cvpn3000_webvpn_content_' => 'CVPN3000-WebVPN-Content-Filter',
  'cvpn3000_webvpn_enable_f' => 'CVPN3000-WebVPN-Enable-functions',
  'cvpn3000_webvpn_exchange' => 'CVPN3000-WebVPN-Exchange-Addr',
  'cvpn3000_webvpn_exchangf' => 'CVPN3000-WebVPN-Exchange-NETBIOS-name',
  'cvpn3000_webvpn_macro_va' => 'CVPN3000-WebVPN-Macro-Value1',
  'cvpn3000_webvpn_macro_vb' => 'CVPN3000-WebVPN-Macro-Value2',
  'cvpn5000_client_assigned' => 'CVPN5000-Client-Assigned-IP',
  'cvpn5000_client_assignee' => 'CVPN5000-Client-Assigned-IPX',
  'cvpn5000_client_real_ip'  => 'CVPN5000-Client-Real-IP',
  'cvpn5000_echo'            => 'CVPN5000-Echo',
  'cvpn5000_tunnel_throughp' => 'CVPN5000-Tunnel-Throughput',
  'cvpn5000_vpn_groupinfo'   => 'CVPN5000-VPN-GroupInfo',
  'cvpn5000_vpn_password'    => 'CVPN5000-VPN-Password',
  'cvx_assign_ip_pool'       => 'CVX-Assign-IP-Pool',
  'cvx_client_assign_dns'    => 'CVX-Client-Assign-DNS',
  'cvx_data_filter'          => 'CVX-Data-Filter',
  'cvx_data_rate'            => 'CVX-Data-Rate',
  'cvx_disconnect_cause'     => 'CVX-Disconnect-Cause',
  'cvx_identification'       => 'CVX-Identification',
  'cvx_idle_limit'           => 'CVX-Idle-Limit',
  'cvx_ipsvc_aznlvl'         => 'CVX-IPSVC-AZNLVL',
  'cvx_ipsvc_mask'           => 'CVX-IPSVC-Mask',
  'cvx_maximum_channels'     => 'CVX-Maximum-Channels',
  'cvx_modem_begin_modulati' => 'CVX-Modem-Begin-Modulation',
  'cvx_modem_begin_recv_lin' => 'CVX-Modem-Begin-Recv-Line-Lvl',
  'cvx_modem_data_compressi' => 'CVX-Modem-Data-Compression',
  'cvx_modem_end_modulation' => 'CVX-Modem-End-Modulation',
  'cvx_modem_end_recv_line_' => 'CVX-Modem-End-Recv-Line-Lvl',
  'cvx_modem_error_correcti' => 'CVX-Modem-Error-Correction',
  'cvx_modem_local_rate_neg' => 'CVX-Modem-Local-Rate-Negs',
  'cvx_modem_local_retrains' => 'CVX-Modem-Local-Retrains',
  'cvx_modem_remote_rate_ne' => 'CVX-Modem-Remote-Rate-Negs',
  'cvx_modem_remote_retrain' => 'CVX-Modem-Remote-Retrains',
  'cvx_modem_retx_packets'   => 'CVX-Modem-ReTx-Packets',
  'cvx_modem_snr'            => 'CVX-Modem-SNR',
  'cvx_modem_tx_packets'     => 'CVX-Modem-Tx-Packets',
  'cvx_multicast_client'     => 'CVX-Multicast-Client',
  'cvx_multicast_rate_limit' => 'CVX-Multicast-Rate-Limit',
  'cvx_multilink_group_numb' => 'CVX-Multilink-Group-Number',
  'cvx_multilink_match_info' => 'CVX-Multilink-Match-Info',
  'cvx_ppp_address'          => 'CVX-PPP-Address',
  'cvx_ppp_log_mask'         => 'CVX-PPP-Log-Mask',
  'cvx_presession_time'      => 'CVX-PreSession-Time',
  'cvx_primary_dns'          => 'CVX-Primary-DNS',
  'cvx_radius_redirect'      => 'CVX-Radius-Redirect',
  'cvx_reject_reason'        => 'CVX-Reject-Reason',
  'cvx_secondary_dns'        => 'CVX-Secondary-DNS',
  'cvx_ss7_session_id_type'  => 'CVX-SS7-Session-ID-Type',
  'cvx_terminate_cause'      => 'CVX-Terminate-Cause',
  'cvx_terminate_component'  => 'CVX-Terminate-Component',
  'cvx_vpop_id'              => 'CVX-VPOP-ID',
  'cvx_xmit_rate'            => 'CVX-Xmit-Rate',
  'cw_account_id'            => 'CW-Account-Id',
  'cw_acct_balance_decr_cur' => 'CW-Acct-Balance-Decr-Curr',
  'cw_acct_balance_start_am' => 'CW-Acct-Balance-Start-Amt',
  'cw_acct_balance_start_cu' => 'CW-Acct-Balance-Start-Curr',
  'cw_acct_balance_start_de' => 'CW-Acct-Balance-Start-Dec',
  'cw_acct_identification_c' => 'CW-Acct-Identification-Code',
  'cw_acct_type'             => 'CW-Acct-Type',
  'cw_arq_token'             => 'CW-ARQ-Token',
  'cw_audio_bytes_in_frame'  => 'CW-Audio-Bytes-In-Frame',
  'cw_audio_packets_in_fram' => 'CW-Audio-Packets-In-Frame',
  'cw_audio_packets_lost'    => 'CW-Audio-Packets-Lost',
  'cw_audio_packets_receive' => 'CW-Audio-Packets-Received',
  'cw_audio_packets_sent'    => 'CW-Audio-Packets-Sent',
  'cw_audio_signal_in_packe' => 'CW-Audio-Signal-In-Packet',
  'cw_authentication_fail_c' => 'CW-Authentication-Fail-Cnt',
  'cw_call_durn_connect_dis' => 'CW-Call-Durn-Connect-Disc',
  'cw_call_end_time_msec'    => 'CW-Call-End-Time-Msec',
  'cw_call_end_time_sec'     => 'CW-Call-End-Time-Sec',
  'cw_call_identifier'       => 'CW-Call-Identifier',
  'cw_call_model'            => 'CW-Call-Model',
  'cw_call_plan_id'          => 'CW-Call-Plan-Id',
  'cw_call_start_ingr_gw_ms' => 'CW-Call-Start-Ingr-GW-Msec',
  'cw_call_start_ingr_gw_se' => 'CW-Call-Start-Ingr-GW-Sec',
  'cw_call_start_time_ans_m' => 'CW-Call-Start-Time-Ans-Msec',
  'cw_call_start_time_ans_s' => 'CW-Call-Start-Time-Ans-Sec',
  'cw_call_termination_caus' => 'CW-Call-Termination-Cause',
  'cw_call_type'             => 'CW-Call-Type',
  'cw_cld_party_e164_number' => 'CW-Cld-Party-E164-Number',
  'cw_cld_party_e164_type'   => 'CW-Cld-Party-E164-Type',
  'cw_cld_party_trans_dns'   => 'CW-Cld-Party-Trans-DNS',
  'cw_cld_party_trans_ip'    => 'CW-Cld-Party-Trans-IP',
  'cw_cld_party_trans_port'  => 'CW-Cld-Party-Trans-Port',
  'cw_cld_party_trans_proto' => 'CW-Cld-Party-Trans-Protocol',
  'cw_clg_party_e164_number' => 'CW-Clg-Party-E164-Number',
  'cw_clg_party_e164_type'   => 'CW-Clg-Party-E164-Type',
  'cw_clg_party_trans_dns'   => 'CW-Clg-Party-Trans-DNS',
  'cw_clg_party_trans_ip'    => 'CW-Clg-Party-Trans-IP',
  'cw_clg_party_trans_port'  => 'CW-Clg-Party-Trans-Port',
  'cw_clg_party_trans_proto' => 'CW-Clg-Party-Trans-Protocol',
  'cw_codec_type'            => 'CW-Codec-Type',
  'cw_egr_gtkpr_trans_dns'   => 'CW-Egr-Gtkpr-Trans-DNS',
  'cw_egr_gtkpr_trans_ip'    => 'CW-Egr-Gtkpr-Trans-IP',
  'cw_egr_gtkpr_trans_port'  => 'CW-Egr-Gtkpr-Trans-Port',
  'cw_egr_gtkpr_trans_proto' => 'CW-Egr-Gtkpr-Trans-Protocol',
  'cw_egr_gway_trans_dns'    => 'CW-Egr-Gway-Trans-DNS',
  'cw_egr_gway_trans_ip'     => 'CW-Egr-Gway-Trans-IP',
  'cw_egr_gway_trans_port'   => 'CW-Egr-Gway-Trans-Port',
  'cw_egr_gway_trans_protoc' => 'CW-Egr-Gway-Trans-Protocol',
  'cw_ingr_gtkpr_trans_dns'  => 'CW-Ingr-Gtkpr-Trans-DNS',
  'cw_ingr_gtkpr_trans_ip'   => 'CW-Ingr-Gtkpr-Trans-IP',
  'cw_ingr_gtkpr_trans_port' => 'CW-Ingr-Gtkpr-Trans-Port',
  'cw_ingr_gtkpr_trans_prot' => 'CW-Ingr-Gtkpr-Trans-Protocol',
  'cw_ingr_gway_e164_number' => 'CW-Ingr-Gway-E164-Number',
  'cw_ingr_gway_e164_type'   => 'CW-Ingr-Gway-E164-Type',
  'cw_ingr_gway_trans_dns'   => 'CW-Ingr-Gway-Trans-DNS',
  'cw_ingr_gway_trans_ip'    => 'CW-Ingr-Gway-Trans-IP',
  'cw_ingr_gway_trans_port'  => 'CW-Ingr-Gway-Trans-Port',
  'cw_ingr_gway_trans_proto' => 'CW-Ingr-Gway-Trans-Protocol',
  'cw_local_mg_rtp_dns'      => 'CW-Local-MG-RTP-DNS',
  'cw_local_mg_rtp_ip'       => 'CW-Local-MG-RTP-IP',
  'cw_local_mg_rtp_port'     => 'CW-Local-MG-RTP-Port',
  'cw_local_mg_rtp_protocol' => 'CW-Local-MG-RTP-Protocol',
  'cw_local_sig_trans_dns'   => 'CW-Local-Sig-Trans-DNS',
  'cw_local_sig_trans_ip'    => 'CW-Local-Sig-Trans-IP',
  'cw_local_sig_trans_port'  => 'CW-Local-Sig-Trans-Port',
  'cw_local_sig_trans_proto' => 'CW-Local-Sig-Trans-Protocol',
  'cw_lrq_token'             => 'CW-LRQ-Token',
  'cw_mg_id'                 => 'CW-MG-Id',
  'cw_mgc_id'                => 'CW-MGC-Id',
  'cw_num_call_attempt_sess' => 'CW-Num-Call-Attempt-Session',
  'cw_orig_line_identifier'  => 'CW-Orig-Line-Identifier',
  'cw_osp_source_device'     => 'CW-OSP-Source-Device',
  'cw_port_id_for_call'      => 'CW-Port-Id-For-Call',
  'cw_protocol_transport'    => 'CW-Protocol-Transport',
  'cw_pstn_interface_number' => 'CW-PSTN-Interface-Number',
  'cw_rate_plan_id'          => 'CW-Rate-Plan-Id',
  'cw_remote_mg_rtp_dns'     => 'CW-Remote-MG-RTP-DNS',
  'cw_remote_mg_rtp_ip'      => 'CW-Remote-MG-RTP-IP',
  'cw_remote_mg_rtp_port'    => 'CW-Remote-MG-RTP-Port',
  'cw_remote_mg_rtp_protoco' => 'CW-Remote-MG-RTP-Protocol',
  'cw_remote_sig_trans_dns'  => 'CW-Remote-Sig-Trans-DNS',
  'cw_remote_sig_trans_ip'   => 'CW-Remote-Sig-Trans-IP',
  'cw_remote_sig_trans_port' => 'CW-Remote-Sig-Trans-Port',
  'cw_remote_sig_trans_prot' => 'CW-Remote-Sig-Trans-Protocol',
  'cw_service_type'          => 'CW-Service-Type',
  'cw_session_id'            => 'CW-Session-Id',
  'cw_session_sequence_end'  => 'CW-Session-Sequence-End',
  'cw_session_sequence_num'  => 'CW-Session-Sequence-Num',
  'cw_signaling_protocol'    => 'CW-Signaling-Protocol',
  'cw_slot_id_for_call'      => 'CW-Slot-Id-For-Call',
  'cw_source_identifier'     => 'CW-Source-Identifier',
  'cw_ss7_cic'               => 'CW-SS7-CIC',
  'cw_ss7_destn_ptcode_addr' => 'CW-SS7-Destn-Ptcode-Address',
  'cw_ss7_destn_ptcode_type' => 'CW-SS7-Destn-Ptcode-Type',
  'cw_ss7_orig_ptcode_addre' => 'CW-SS7-Orig-Ptcode-Address',
  'cw_ss7_orig_ptcode_type'  => 'CW-SS7-Orig-Ptcode-Type',
  'cw_token_status'          => 'CW-Token-Status',
  'cw_trans_cld_party_e164_' => 'CW-Trans-Cld-Party-E164-Type',
  'cw_trans_cld_party_e164a' => 'CW-Trans-Cld-Party-E164-Num',
  'cw_version_id'            => 'CW-Version-Id',
  'deactivate_service_name'  => 'Deactivate-Service-Name',
  'default_ttl'              => 'Default-TTL',
  'delegated_ipv6_prefix'    => 'Delegated-IPv6-Prefix',
  'delegated_ipv6_prefix_po' => 'Delegated-IPv6-Prefix-Pool',
  'dhcp_agent_circuit_id'    => 'DHCP-Agent-Circuit-Id',
  'dhcp_agent_remote_id'     => 'DHCP-Agent-Remote-Id',
  'dhcp_all_subnets_are_loc' => 'DHCP-All-Subnets-Are-Local',
  'dhcp_arp_cache_timeout'   => 'DHCP-ARP-Cache-Timeout',
  'dhcp_associated_ip'       => 'DHCP-associated-ip',
  'dhcp_authentication'      => 'DHCP-Authentication',
  'dhcp_authentication_info' => 'DHCP-Authentication-Information',
  'dhcp_auto_config'         => 'DHCP-Auto-Config',
  'dhcp_boot_file_name'      => 'DHCP-Boot-File-Name',
  'dhcp_boot_file_size'      => 'DHCP-Boot-File-Size',
  'dhcp_boot_filename'       => 'DHCP-Boot-Filename',
  'dhcp_bootp_extensions_pa' => 'DHCP-Bootp-Extensions-Path',
  'dhcp_broadcast_address'   => 'DHCP-Broadcast-Address',
  'dhcp_call_server_ip_addr' => 'DHCP-Call-Server-IP-address',
  'dhcp_ccc'                 => 'DHCP-CCC',
  'dhcp_cisco_tftp_server_i' => 'DHCP-Cisco-TFTP-Server-IP-Addresses',
  'dhcp_classless_static_ro' => 'DHCP-Classless-Static-Route',
  'dhcp_client_fqdn'         => 'DHCP-Client-FQDN',
  'dhcp_client_hardware_add' => 'DHCP-Client-Hardware-Address',
  'dhcp_client_identifier'   => 'DHCP-Client-Identifier',
  'dhcp_client_ip_address'   => 'DHCP-Client-IP-Address',
  'dhcp_client_last_txn_tim' => 'DHCP-Client-Last-Txn-Time',
  'dhcp_client_ndi'          => 'DHCP-Client-NDI',
  'dhcp_client_system'       => 'DHCP-Client-System',
  'dhcp_default_ip_ttl'      => 'DHCP-Default-IP-TTL',
  'dhcp_default_tcp_ttl'     => 'DHCP-Default-TCP-TTL',
  'dhcp_dhcp_error_message'  => 'DHCP-DHCP-Error-Message',
  'dhcp_dhcp_maximum_msg_si' => 'DHCP-DHCP-Maximum-Msg-Size',
  'dhcp_dhcp_server_identif' => 'DHCP-DHCP-Server-Identifier',
  'dhcp_diffserv_code_point' => 'DHCP-Diffserv-Code-Point',
  'dhcp_directory_agent'     => 'DHCP-Directory-Agent',
  'dhcp_docsis_device_class' => 'DHCP-Docsis-Device-Class',
  'dhcp_domain_name'         => 'DHCP-Domain-Name',
  'dhcp_domain_name_server'  => 'DHCP-Domain-Name-Server',
  'dhcp_domain_search'       => 'DHCP-Domain-Search',
  'dhcp_end_of_options'      => 'DHCP-End-Of-Options',
  'dhcp_etherboot'           => 'DHCP-Etherboot',
  'dhcp_ethernet_encapsulat' => 'DHCP-Ethernet-Encapsulation',
  'dhcp_ethernet_interface'  => 'DHCP-Ethernet-Interface',
  'dhcp_field'               => 'DHCP-Field',
  'dhcp_finger_server_addre' => 'DHCP-Finger-Server-Address',
  'dhcp_flags'               => 'DHCP-Flags',
  'dhcp_gateway_ip_address'  => 'DHCP-Gateway-IP-Address',
  'dhcp_geoconf_option'      => 'DHCP-GeoConf-Option',
  'dhcp_hardware_address_le' => 'DHCP-Hardware-Address-Length',
  'dhcp_hardware_type'       => 'DHCP-Hardware-Type',
  'dhcp_home_agent_address'  => 'DHCP-Home-Agent-Address',
  'dhcp_hop_count'           => 'DHCP-Hop-Count',
  'dhcp_hostname'            => 'DHCP-Hostname',
  'dhcp_http_proxy'          => 'DHCP-HTTP-Proxy',
  'dhcp_ieee_802.1p_vlan_id' => 'DHCP-IEEE-802.1P-VLAN-ID',
  'dhcp_ieee_802.1q_l2_prio' => 'DHCP-IEEE-802.1Q-L2-Priority',
  'dhcp_ien_116_name_server' => 'DHCP-IEN-116-Name-Server',
  'dhcp_impress_server'      => 'DHCP-Impress-Server',
  'dhcp_interface_mtu_size'  => 'DHCP-Interface-MTU-Size',
  'dhcp_ip_address_lease_ti' => 'DHCP-IP-Address-Lease-Time',
  'dhcp_ip_forward_enable'   => 'DHCP-IP-Forward-Enable',
  'dhcp_irc_server_address'  => 'DHCP-IRC-Server-Address',
  'dhcp_isns'                => 'DHCP-iSNS',
  'dhcp_keep_alive_garbage'  => 'DHCP-Keep-Alive-Garbage',
  'dhcp_keep_alive_interval' => 'DHCP-Keep-Alive-Interval',
  'dhcp_ldap'                => 'DHCP-LDAP',
  'dhcp_log_server'          => 'DHCP-Log-Server',
  'dhcp_lpr_server'          => 'DHCP-LPR-Server',
  'dhcp_max_datagram_reasse' => 'DHCP-Max-Datagram-Reassembly-Sz',
  'dhcp_max_leases'          => 'DHCP_Max_Leases',
  'dhcp_max_leaset'          => 'DHCP-Max-Leases',
  'dhcp_merit_dump_file'     => 'DHCP-Merit-Dump-File',
  'dhcp_message_type'        => 'DHCP-Message-Type',
  'dhcp_name_service_search' => 'DHCP-Name-Service-Search',
  'dhcp_nds_context'         => 'DHCP-NDS-Context',
  'dhcp_nds_servers'         => 'DHCP-NDS-Servers',
  'dhcp_nds_tree_name'       => 'DHCP-NDS-Tree-Name',
  'dhcp_netbios'             => 'DHCP-NETBIOS',
  'dhcp_netbios_dgm_dist_se' => 'DHCP-NETBIOS-Dgm-Dist-Servers',
  'dhcp_netbios_name_server' => 'DHCP-NETBIOS-Name-Servers',
  'dhcp_netbios_node_type'   => 'DHCP-NETBIOS-Node-Type',
  'dhcp_netinfo_address'     => 'DHCP-Netinfo-Address',
  'dhcp_netinfo_tag'         => 'DHCP-Netinfo-Tag',
  'dhcp_netware_domain_name' => 'DHCP-Netware-Domain-Name',
  'dhcp_netware_sub_options' => 'DHCP-Netware-Sub-Options',
  'dhcp_nis_client_domain_n' => 'DHCP-NIS-Client-Domain-Name',
  'dhcp_nis_domain_name'     => 'DHCP-NIS-Domain-Name',
  'dhcp_nis_server_address'  => 'DHCP-NIS-Server-Address',
  'dhcp_nis_servers'         => 'DHCP-NIS-Servers',
  'dhcp_nntp_server_address' => 'DHCP-NNTP-Server-Address',
  'dhcp_ntp_servers'         => 'DHCP-NTP-Servers',
  'dhcp_number_of_seconds'   => 'DHCP-Number-of-Seconds',
  'dhcp_opcode'              => 'DHCP-Opcode',
  'dhcp_option'              => 'DHCP-Option',
  'dhcp_overload'            => 'DHCP-Overload',
  'dhcp_parameter_request_l' => 'DHCP-Parameter-Request-List',
  'dhcp_path_mtu_aging_time' => 'DHCP-Path-MTU-Aging-Timeout',
  'dhcp_path_mtu_plateau_ta' => 'DHCP-Path-MTU-Plateau-Table',
  'dhcp_perform_mask_discov' => 'DHCP-Perform-Mask-Discovery',
  'dhcp_perform_router_disc' => 'DHCP-Perform-Router-Discovery',
  'dhcp_policy_filter'       => 'DHCP-Policy-Filter',
  'dhcp_pop3_server_address' => 'DHCP-POP3-Server-Address',
  'dhcp_provide_mask_to_oth' => 'DHCP-Provide-Mask-To-Others',
  'dhcp_quotes_server'       => 'DHCP-Quotes-Server',
  'dhcp_radius_attributes'   => 'DHCP-RADIUS-Attributes',
  'dhcp_rapid_commit'        => 'DHCP-Rapid-Commit',
  'dhcp_rebinding_time'      => 'DHCP-Rebinding-Time',
  'dhcp_relay_agent_flags'   => 'DHCP-Relay-Agent-Flags',
  'dhcp_relay_agent_informa' => 'DHCP-Relay-Agent-Information',
  'dhcp_relay_circuit_id'    => 'DHCP-Relay-Circuit-Id',
  'dhcp_relay_ip_address'    => 'DHCP-Relay-IP-Address',
  'dhcp_relay_link_selectio' => 'DHCP-Relay-Link-Selection',
  'dhcp_relay_max_hop_count' => 'DHCP-Relay-Max-Hop-Count',
  'dhcp_relay_remote_id'     => 'DHCP-Relay-Remote-Id',
  'dhcp_relay_to_ip_address' => 'DHCP-Relay-To-IP-Address',
  'dhcp_remote_stats_svr_ip' => 'DHCP-Remote-Stats-Svr-IP-Address',
  'dhcp_renewal_time'        => 'DHCP-Renewal-Time',
  'dhcp_requested_ip_addres' => 'DHCP-Requested-IP-Address',
  'dhcp_rlp_server'          => 'DHCP-RLP-Server',
  'dhcp_root_path'           => 'DHCP-Root-Path',
  'dhcp_router_address'      => 'DHCP-Router-Address',
  'dhcp_router_solicitation' => 'DHCP-Router-Solicitation-Address',
  'dhcp_server_host_name'    => 'DHCP-Server-Host-Name',
  'dhcp_server_identifier_o' => 'DHCP-Server-Identifier-Override',
  'dhcp_server_ip_address'   => 'DHCP-Server-IP-Address',
  'dhcp_service_scope'       => 'DHCP-Service-Scope',
  'dhcp_sip_servers_dhcp_op' => 'DHCP-SIP-Servers-DHCP-Option',
  'dhcp_smtp_server_address' => 'DHCP-SMTP-Server-Address',
  'dhcp_source_route_enable' => 'DHCP-Source-Route-Enable',
  'dhcp_static_routes'       => 'DHCP-Static-Routes',
  'dhcp_stda_server_address' => 'DHCP-STDA-Server-Address',
  'dhcp_streettalk_server_a' => 'DHCP-StreetTalk-Server-Address',
  'dhcp_subnet_mask'         => 'DHCP-Subnet-Mask',
  'dhcp_subnet_selection_op' => 'DHCP-Subnet-Selection-Option',
  'dhcp_subscriber_id'       => 'DHCP-Subscriber-Id',
  'dhcp_swap_server'         => 'DHCP-Swap-Server',
  'dhcp_tftp_server_ip_addr' => 'DHCP-TFTP-Server-IP-Address',
  'dhcp_tftp_server_name'    => 'DHCP-TFTP-Server-Name',
  'dhcp_time_offset'         => 'DHCP-Time-Offset',
  'dhcp_time_server'         => 'DHCP-Time-Server',
  'dhcp_trailer_encapsulati' => 'DHCP-Trailer-Encapsulation',
  'dhcp_transaction_id'      => 'DHCP-Transaction-Id',
  'dhcp_url'                 => 'DHCP-URL',
  'dhcp_user_auth'           => 'DHCP-User-Auth',
  'dhcp_user_class'          => 'DHCP-User-Class',
  'dhcp_uuid_guid'           => 'DHCP-UUID/GUID',
  'dhcp_v_i_vendor_class'    => 'DHCP-V-I-Vendor-Class',
  'dhcp_v_i_vendor_specific' => 'DHCP-V-I-Vendor-Specific',
  'dhcp_vendor'              => 'DHCP-Vendor',
  'dhcp_vendor_class_id'     => 'DHCP-Vendor-Class-ID',
  'dhcp_vendor_class_identi' => 'DHCP-Vendor-Class-Identifier',
  'dhcp_vendor_class_ie'     => 'DHCP-Vendor-Class-ID',
  'dhcp_vendor_discriminati' => 'DHCP-Vendor-Discrimination-Str',
  'dhcp_vendor_encap_option' => 'DHCP-Vendor-Encap-Option',
  'dhcp_vendor_encap_optioo' => 'DHCP-Vendor-Encap-Option',
  'dhcp_vendor_specific_inf' => 'DHCP-Vendor-Specific-Information',
  'dhcp_www_server_address'  => 'DHCP-WWW-Server-Address',
  'dhcp_x_window_display_mg' => 'DHCP-X-Window-Display-Mgr',
  'dhcp_x_window_font_serve' => 'DHCP-X-Window-Font-Server',
  'dhcp_your_ip_address'     => 'DHCP-Your-IP-Address',
  'dialback_name'            => 'Dialback-Name',
  'dialback_no'              => 'Dialback-No',
  'digest_aka_auts'          => 'Digest-AKA-Auts',
  'digest_algorithm'         => 'Digest-Algorithm',
  'digest_algorithn'         => 'Digest-Algorithm',
  'digest_attributes'        => 'Digest-Attributes',
  'digest_auth_param'        => 'Digest-Auth-Param',
  'digest_body_digest'       => 'Digest-Body-Digest',
  'digest_cnonce'            => 'Digest-CNonce',
  'digest_cnoncf'            => 'Digest-CNonce',
  'digest_domain'            => 'Digest-Domain',
  'digest_entity_body_hash'  => 'Digest-Entity-Body-Hash',
  'digest_ha1'               => 'Digest-HA1',
  'digest_ha2'               => 'Digest-HA1',
  'digest_method'            => 'Digest-Method',
  'digest_methoe'            => 'Digest-Method',
  'digest_nextnonce'         => 'Digest-Nextnonce',
  'digest_nonce'             => 'Digest-Nonce',
  'digest_nonce_count'       => 'Digest-Nonce-Count',
  'digest_nonce_counu'       => 'Digest-Nonce-Count',
  'digest_noncf'             => 'Digest-Nonce',
  'digest_opaque'            => 'Digest-Opaque',
  'digest_qop'               => 'Digest-QOP',
  'digest_qoq'               => 'Digest-Qop',
  'digest_realm'             => 'Digest-Realm',
  'digest_realn'             => 'Digest-Realm',
  'digest_response'          => 'Digest-Response',
  'digest_response_auth'     => 'Digest-Response-Auth',
  'digest_responsf'          => 'Digest-Response',
  'digest_stale'             => 'Digest-Stale',
  'digest_uri'               => 'Digest-URI',
  'digest_urj'               => 'Digest-URI',
  'digest_user_name'         => 'Digest-User-Name',
  'digest_username'          => 'Digest-Username',
  'dlink_1p_priority'        => 'Dlink-1p-Priority',
  'dlink_acl_profile'        => 'Dlink-ACL-Profile',
  'dlink_acl_rule'           => 'Dlink-ACL-Rule',
  'dlink_acl_script'         => 'Dlink-ACL-Script',
  'dlink_egress_bandwidth_a' => 'Dlink-Egress-Bandwidth-Assignment',
  'dlink_ingress_bandwidth_' => 'Dlink-Ingress-Bandwidth-Assignment',
  'dlink_user_level'         => 'Dlink-User-Level',
  'dlink_vlan_id'            => 'Dlink-VLAN-ID',
  'dlink_vlan_name'          => 'Dlink-VLAN-Name',
  'dns_server_ipv6_address'  => 'DNS-Server-IPv6-Address',
  'double_authentication'    => 'Double-Authentication',
  'dragonwave_privilege_lev' => 'DragonWave-Privilege-Level',
  'ds_lite_tunnel_name'      => 'DS-Lite-Tunnel-Name',
  'dsl_actual_inter_delay_d' => 'DSL-Actual-Inter-Delay-Down',
  'dsl_actual_inter_delay_u' => 'DSL-Actual-Inter-Delay-Up',
  'dsl_actual_rate_down'     => 'DSL-Actual-Rate-Down',
  'dsl_actual_rate_down_fac' => 'DSL-Actual-Rate-Down-Factor',
  'dsl_actual_rate_up'       => 'DSL-Actual-Rate-Up',
  'dsl_attainable_rate_down' => 'DSL-Attainable-Rate-Down',
  'dsl_attainable_rate_up'   => 'DSL-Attainable-Rate-Up',
  'dsl_combined_line_info'   => 'DSL-Combined-Line-Info',
  'dsl_l2_encapsulation'     => 'DSL-L2-Encapsulation',
  'dsl_line_state'           => 'DSL-Line-State',
  'dsl_max_inter_delay_down' => 'DSL-Max-Inter-Delay-Down',
  'dsl_max_inter_delay_up'   => 'DSL-Max-Inter-Delay-Up',
  'dsl_max_rate_down'        => 'DSL-Max-Rate-Down',
  'dsl_max_rate_up'          => 'DSL-Max-Rate-Up',
  'dsl_min_low_power_rate_d' => 'DSL-Min-Low-Power-Rate-Down',
  'dsl_min_low_power_rate_u' => 'DSL-Min-Low-Power-Rate-Up',
  'dsl_min_rate_down'        => 'DSL-Min-Rate-Down',
  'dsl_min_rate_up'          => 'DSL-Min-Rate-Up',
  'dsl_pppoa_pppoe_inter_wo' => 'DSL-PPPOA-PPPOE-Inter-Work-Flag',
  'dsl_transmission_system'  => 'DSL-Transmission-System',
  'dynamic_policy_filter'    => 'Dynamic-Policy-Filter',
  'dynamic_qos_param'        => 'Dynamic-QoS-Param',
  'eap_code'                 => 'EAP-Code',
  'eap_emsk'                 => 'EAP-EMSK',
  'eap_id'                   => 'EAP-Id',
  'eap_ikev2_authtype'       => 'EAP-IKEv2-AuthType',
  'eap_ikev2_id'             => 'EAP-IKEv2-ID',
  'eap_ikev2_idtype'         => 'EAP-IKEv2-IDType',
  'eap_ikev2_secret'         => 'EAP-IKEv2-Secret',
  'eap_key_name'             => 'EAP-Key-Name',
  'eap_lower_layer'          => 'EAP-Lower-Layer',
  'eap_message'              => 'EAP-Message',
  'eap_msk'                  => 'EAP-MSK',
  'eap_peer_id'              => 'EAP-Peer-Id',
  'eap_server_id'            => 'EAP-Server-Id',
  'eap_session_id'           => 'EAP-Session-Id',
  'eap_session_resumed'      => 'EAP-Session-Resumed',
  'eap_sim_any_id_req'       => 'EAP-Sim-ANY_ID_REQ',
  'eap_sim_checkcode'        => 'EAP-Sim-CHECKCODE',
  'eap_sim_counter'          => 'EAP-Sim-COUNTER',
  'eap_sim_counter_too_smal' => 'EAP-Sim-COUNTER_TOO_SMALL',
  'eap_sim_encr_data'        => 'EAP-Sim-ENCR_DATA',
  'eap_sim_extra'            => 'EAP-Sim-EXTRA',
  'eap_sim_fullauth_id_req'  => 'EAP-Sim-FULLAUTH_ID_REQ',
  'eap_sim_hmac'             => 'EAP-Sim-HMAC',
  'eap_sim_identity'         => 'EAP-Sim-IDENTITY',
  'eap_sim_imsi'             => 'EAP-Sim-IMSI',
  'eap_sim_iv'               => 'EAP-Sim-IV',
  'eap_sim_kc1'              => 'EAP-Sim-KC1',
  'eap_sim_kc2'              => 'EAP-Sim-KC2',
  'eap_sim_kc3'              => 'EAP-Sim-KC3',
  'eap_sim_key'              => 'EAP-Sim-KEY',
  'eap_sim_mac'              => 'EAP-Sim-MAC',
  'eap_sim_next_pseudonum'   => 'EAP-Sim-NEXT_PSEUDONUM',
  'eap_sim_next_reauth_id'   => 'EAP-Sim-NEXT_REAUTH_ID',
  'eap_sim_nonce_mt'         => 'EAP-Sim-NONCE_MT',
  'eap_sim_nonce_s'          => 'EAP-Sim-NONCE_S',
  'eap_sim_notification'     => 'EAP-Sim-NOTIFICATION',
  'eap_sim_padding'          => 'EAP-Sim-PADDING',
  'eap_sim_permanent_id_req' => 'EAP-Sim-PERMANENT_ID_REQ',
  'eap_sim_rand'             => 'EAP-Sim-RAND',
  'eap_sim_rand1'            => 'EAP-Sim-Rand1',
  'eap_sim_rand2'            => 'EAP-Sim-Rand2',
  'eap_sim_rand3'            => 'EAP-Sim-Rand3',
  'eap_sim_selected_version' => 'EAP-Sim-SELECTED_VERSION',
  'eap_sim_sres1'            => 'EAP-Sim-SRES1',
  'eap_sim_sres2'            => 'EAP-Sim-SRES2',
  'eap_sim_sres3'            => 'EAP-Sim-SRES3',
  'eap_sim_state'            => 'EAP-Sim-State',
  'eap_sim_subtype'          => 'EAP-Sim-Subtype',
  'eap_sim_version_list'     => 'EAP-Sim-VERSION_LIST',
  'eap_tls_require_client_c' => 'EAP-TLS-Require-Client-Cert',
  'eap_type'                 => 'EAP-Type',
  'eap_type_airfortress_eap' => 'EAP-Type-AirFortress-EAP',
  'eap_type_aka'             => 'EAP-Type-AKA',
  'eap_type_arcot_systems_e' => 'EAP-Type-Arcot-Systems-EAP',
  'eap_type_cisco_leap'      => 'EAP-Type-Cisco-LEAP',
  'eap_type_cisco_ms_chapv2' => 'EAP-Type-Cisco-MS-CHAPv2',
  'eap_type_cogent_biomentr' => 'EAP-Type-Cogent-Biomentric-EAP',
  'eap_type_cryptocard'      => 'EAP-Type-CRYPTOCard',
  'eap_type_defender_token'  => 'EAP-Type-Defender-Token',
  'eap_type_deviceconnect_e' => 'EAP-Type-DeviceConnect-EAP',
  'eap_type_dss_unilateral'  => 'EAP-Type-DSS-Unilateral',
  'eap_type_dynamid'         => 'EAP-Type-DynamID',
  'eap_type_eap_3com_wirele' => 'EAP-Type-EAP-3Com-Wireless',
  'eap_type_eap_actiontec_w' => 'EAP-Type-EAP-Actiontec-Wireless',
  'eap_type_eap_aka2'        => 'EAP-Type-EAP-AKA2',
  'eap_type_eap_evev1'       => 'EAP-Type-EAP-EVEv1',
  'eap_type_eap_fast'        => 'EAP-Type-EAP-FAST',
  'eap_type_eap_gpsk'        => 'EAP-Type-EAP-GPSK',
  'eap_type_eap_http_digest' => 'EAP-Type-EAP-HTTP-Digest',
  'eap_type_eap_ikev2'       => 'EAP-Type-EAP-IKEv2',
  'eap_type_eap_link'        => 'EAP-Type-EAP-Link',
  'eap_type_eap_mobac'       => 'EAP-Type-EAP-MOBAC',
  'eap_type_eap_mschap_v2'   => 'EAP-Type-EAP-MSCHAP-V2',
  'eap_type_eap_pax'         => 'EAP-Type-EAP-PAX',
  'eap_type_eap_psk'         => 'EAP-Type-EAP-PSK',
  'eap_type_eap_pwd'         => 'EAP-Type-EAP-PWD',
  'eap_type_eap_sake'        => 'EAP-Type-EAP-SAKE',
  'eap_type_eap_speke'       => 'EAP-Type-EAP-SPEKE',
  'eap_type_eap_tls'         => 'EAP-Type-EAP-TLS',
  'eap_type_eap_ttls'        => 'EAP-Type-EAP-TTLS',
  'eap_type_generic_token_c' => 'EAP-Type-Generic-Token-Card',
  'eap_type_identity'        => 'EAP-Type-Identity',
  'eap_type_kea'             => 'EAP-Type-KEA',
  'eap_type_kea_validate'    => 'EAP-Type-KEA-Validate',
  'eap_type_make'            => 'EAP-Type-MAKE',
  'eap_type_md5_challenge'   => 'EAP-Type-MD5-Challenge',
  'eap_type_microsoft_ms_ch' => 'EAP-Type-Microsoft-MS-CHAPv2',
  'eap_type_ms_authenticati' => 'EAP-Type-MS-Authentication-TLV',
  'eap_type_ms_chap_v2'      => 'EAP-Type-MS-CHAP-V2',
  'eap_type_ms_eap_authenti' => 'EAP-Type-MS-EAP-Authentication',
  'eap_type_nak'             => 'EAP-Type-NAK',
  'eap_type_nokia_ip_smart_' => 'EAP-Type-Nokia-IP-Smart-Card',
  'eap_type_none'            => 'EAP-Type-None',
  'eap_type_notification'    => 'EAP-Type-Notification',
  'eap_type_one_time_passwo' => 'EAP-Type-One-Time-Password',
  'eap_type_peap'            => 'EAP-Type-PEAP',
  'eap_type_remote_access_s' => 'EAP-Type-Remote-Access-Service',
  'eap_type_rob_eap'         => 'EAP-Type-Rob-EAP',
  'eap_type_rsa_public_key'  => 'EAP-Type-RSA-Public-Key',
  'eap_type_rsa_securid_eap' => 'EAP-Type-RSA-SecurID-EAP',
  'eap_type_securid_eap'     => 'EAP-Type-SecurID-EAP',
  'eap_type_securisuite_eap' => 'EAP-Type-SecuriSuite-EAP',
  'eap_type_sentrinet'       => 'EAP-Type-SentriNET',
  'eap_type_sim'             => 'EAP-Type-SIM',
  'eap_type_srp_sha1'        => 'EAP-Type-SRP-SHA1',
  'eap_type_value'           => 'EAP-Type-VALUE',
  'eap_type_zonelabs'        => 'EAP-Type-Zonelabs',
  'eapol_announcement'       => 'EAPoL-Announcement',
  'eduroam_monitoring_infla' => 'eduroam-Monitoring-Inflate',
  'eduroam_sp_country'       => 'eduroam-SP-Country',
  'efficientip_admin_group'  => 'EfficientIP-Admin-Group',
  'efficientip_email'        => 'EfficientIP-Email',
  'efficientip_extra_blob'   => 'EfficientIP-Extra-Blob',
  'efficientip_first_login_' => 'EfficientIP-First-Login-Path',
  'efficientip_first_name'   => 'EfficientIP-First-Name',
  'efficientip_groups'       => 'EfficientIP-Groups',
  'efficientip_identity_typ' => 'EfficientIP-Identity-Type',
  'efficientip_ip_host'      => 'EfficientIP-IP-Host',
  'efficientip_last_name'    => 'EfficientIP-Last-Name',
  'efficientip_maintainer_g' => 'EfficientIP-Maintainer-Group',
  'efficientip_pseudonym'    => 'EfficientIP-Pseudonym',
  'efficientip_service_clas' => 'EfficientIP-Service-Class',
  'efficientip_version'      => 'EfficientIP-Version',
  'egress_vlan_name'         => 'Egress-VLAN-Name',
  'egress_vlanid'            => 'Egress-VLANID',
  'eltex_avpair'             => 'Eltex-AVPair',
  'eltex_disconnect_code_lo' => 'Eltex-Disconnect-Code-Local',
  'epygi_accesstype'         => 'Epygi-AccessType',
  'epygi_avpair'             => 'Epygi-AVPair',
  'epygi_calldisconnectreas' => 'Epygi-CallDisconnectReason',
  'epygi_calledpartynumber'  => 'Epygi-CalledPartyNumber',
  'epygi_callinfo'           => 'Epygi-CallInfo',
  'epygi_callingpartynumber' => 'Epygi-CallingPartyNumber',
  'epygi_callredirectreason' => 'Epygi-CallRedirectReason',
  'epygi_calltype'           => 'Epygi-CallType',
  'epygi_datetimeconnect'    => 'Epygi-DateTimeConnect',
  'epygi_datetimedisconnect' => 'Epygi-DateTimeDisconnect',
  'epygi_datetimeoriginatio' => 'Epygi-DateTimeOrigination',
  'epygi_destipaddr'         => 'Epygi-DestIpAddr',
  'epygi_destipport'         => 'Epygi-DestIpPort',
  'epygi_devicename'         => 'Epygi-DeviceName',
  'epygi_duration'           => 'Epygi-Duration',
  'epygi_fiadid'             => 'Epygi-FiadID',
  'epygi_h323_billing_model' => 'Epygi-h323-billing-model',
  'epygi_h323_call_origin'   => 'Epygi-h323-call-origin',
  'epygi_h323_call_type'     => 'Epygi-h323-call-type',
  'epygi_h323_conf_id'       => 'Epygi-h323-conf-id',
  'epygi_h323_connect_time'  => 'Epygi-h323-connect-time',
  'epygi_h323_credit_amount' => 'Epygi-h323-credit-amount',
  'epygi_h323_credit_time'   => 'Epygi-h323-credit-time',
  'epygi_h323_currency'      => 'Epygi-h323-currency',
  'epygi_h323_disconnect_ca' => 'Epygi-h323-disconnect-cause',
  'epygi_h323_disconnect_ti' => 'Epygi-h323-disconnect-time',
  'epygi_h323_gw_id'         => 'Epygi-h323-gw-id',
  'epygi_h323_incoming_conf' => 'Epygi-h323-incoming-conf-id',
  'epygi_h323_preferred_lan' => 'Epygi-h323-preferred-lang',
  'epygi_h323_prompt_id'     => 'Epygi-h323-prompt-id',
  'epygi_h323_redirect_ip_a' => 'Epygi-h323-redirect-ip-address',
  'epygi_h323_redirect_numb' => 'Epygi-h323-redirect-number',
  'epygi_h323_remote_addres' => 'Epygi-h323-remote-address',
  'epygi_h323_return_code'   => 'Epygi-h323-return-code',
  'epygi_h323_setup_time'    => 'Epygi-h323-setup-time',
  'epygi_h323_time_and_day'  => 'Epygi-h323-time-and-day',
  'epygi_h323_voice_quality' => 'Epygi-h323-voice-quality',
  'epygi_indestrtp_ip'       => 'Epygi-InDestRTP_IP',
  'epygi_indestrtp_port'     => 'Epygi-InDestRTP_port',
  'epygi_inrtp_jitter'       => 'Epygi-InRTP_Jitter',
  'epygi_inrtp_latency'      => 'Epygi-InRTP_Latency',
  'epygi_inrtp_octets'       => 'Epygi-InRTP_Octets',
  'epygi_inrtp_packets'      => 'Epygi-InRTP_Packets',
  'epygi_inrtp_packetsdupl'  => 'Epygi-InRTP_PacketsDupl',
  'epygi_inrtp_packetsize'   => 'Epygi-InRTP_PacketSize',
  'epygi_inrtp_packetslost'  => 'Epygi-InRTP_PacketsLost',
  'epygi_inrtp_payload'      => 'Epygi-InRTP_Payload',
  'epygi_insourcertp_ip'     => 'Epygi-InSourceRTP_IP',
  'epygi_insourcertp_port'   => 'Epygi-InSourceRTP_port',
  'epygi_interfacename'      => 'Epygi-InterfaceName',
  'epygi_interfacenumber'    => 'Epygi-InterfaceNumber',
  'epygi_nas_port'           => 'Epygi-NAS-Port',
  'epygi_origcallid'         => 'Epygi-OrigCallID',
  'epygi_origipaddr'         => 'Epygi-OrigIpAddr',
  'epygi_origipport'         => 'Epygi-OrigIpPort',
  'epygi_outdestrtp_ip'      => 'Epygi-OutDestRTP_IP',
  'epygi_outdestrtp_port'    => 'Epygi-OutDestRTP_port',
  'epygi_outrtp_octets'      => 'Epygi-OutRTP_Octets',
  'epygi_outrtp_packets'     => 'Epygi-OutRTP_Packets',
  'epygi_outrtp_packetsize'  => 'Epygi-OutRTP_PacketSize',
  'epygi_outrtp_payload'     => 'Epygi-OutRTP_Payload',
  'epygi_outsourcertp_ip'    => 'Epygi-OutSourceRTP_IP',
  'epygi_outsourcertp_port'  => 'Epygi-OutSourceRTP_port',
  'epygi_parentcallid'       => 'Epygi-ParentCallID',
  'epygi_portid'             => 'Epygi-PortID',
  'epygi_regexpdate'         => 'Epygi-RegExpDate',
  'epygi_timeslotnumber'     => 'Epygi-TimeslotNumber',
  'ericsson_vig_access_agen' => 'Ericsson-ViG-Access-Agent-IP-Address',
  'ericsson_vig_access_ageo' => 'Ericsson-ViG-Access-Agent-name',
  'ericsson_vig_access_grou' => 'Ericsson-ViG-Access-Group-name',
  'ericsson_vig_access_type' => 'Ericsson-ViG-Access-type',
  'ericsson_vig_account_err' => 'Ericsson-ViG-Account-error-reason',
  'ericsson_vig_alive_indic' => 'Ericsson-ViG-Alive-Indicator',
  'ericsson_vig_allowed_ban' => 'Ericsson-ViG-Allowed-bandwidth',
  'ericsson_vig_auth_datare' => 'Ericsson-ViG-Auth-DataRequest',
  'ericsson_vig_authenticat' => 'Ericsson-ViG-Authentication-type',
  'ericsson_vig_balance'     => 'Ericsson-ViG-Balance',
  'ericsson_vig_business_ag' => 'Ericsson-ViG-Business-Agreement-Name',
  'ericsson_vig_call_role'   => 'Ericsson-ViG-Call-Role',
  'ericsson_vig_called_id'   => 'Ericsson-ViG-Called-ID',
  'ericsson_vig_called_usr_' => 'Ericsson-ViG-Called-Usr-Group-ID',
  'ericsson_vig_called_usra' => 'Ericsson-ViG-Called-Usr-Sub-Group-ID',
  'ericsson_vig_calling_e16' => 'Ericsson-ViG-Calling-e164-number',
  'ericsson_vig_calling_ema' => 'Ericsson-ViG-Calling-Email-address',
  'ericsson_vig_calling_h32' => 'Ericsson-ViG-Calling-H323Id',
  'ericsson_vig_calling_id'  => 'Ericsson-ViG-Calling-ID',
  'ericsson_vig_calling_use' => 'Ericsson-ViG-Calling-User-Group-ID',
  'ericsson_vig_calling_usr' => 'Ericsson-ViG-Calling-Usr-Sub-Group-ID',
  'ericsson_vig_charging_ca' => 'Ericsson-ViG-Charging-Case',
  'ericsson_vig_codec'       => 'Ericsson-ViG-Codec',
  'ericsson_vig_cpn_digits'  => 'Ericsson-ViG-CPN-digits',
  'ericsson_vig_cpn_np'      => 'Ericsson-ViG-CPN-NP',
  'ericsson_vig_cpn_pi'      => 'Ericsson-ViG-CPN-PI',
  'ericsson_vig_cpn_si'      => 'Ericsson-ViG-CPN-SI',
  'ericsson_vig_cpn_ton'     => 'Ericsson-ViG-CPN-TON',
  'ericsson_vig_currency'    => 'Ericsson-ViG-Currency',
  'ericsson_vig_currency_qu' => 'Ericsson-ViG-Currency-Quote',
  'ericsson_vig_data_media_' => 'Ericsson-ViG-Data-media-rec-forward',
  'ericsson_vig_data_mediaa' => 'Ericsson-ViG-Data-media-rec-backward',
  'ericsson_vig_dialled_e16' => 'Ericsson-ViG-Dialled-e164-number',
  'ericsson_vig_dialled_ema' => 'Ericsson-ViG-Dialled-Email-address',
  'ericsson_vig_dialled_h32' => 'Ericsson-ViG-Dialled-H323Id',
  'ericsson_vig_dialled_num' => 'Ericsson-ViG-Dialled-num-digits',
  'ericsson_vig_dialled_nun' => 'Ericsson-ViG-Dialled-num-TON',
  'ericsson_vig_dialled_nuo' => 'Ericsson-ViG-Dialled-num-NP',
  'ericsson_vig_digest_attr' => 'Ericsson-ViG-Digest-Attributes',
  'ericsson_vig_digest_resp' => 'Ericsson-ViG-Digest-Response',
  'ericsson_vig_emergency_c' => 'Ericsson-ViG-Emergency-Call-Indicator',
  'ericsson_vig_endpoint_ty' => 'Ericsson-ViG-Endpoint-Type',
  'ericsson_vig_fax_media_r' => 'Ericsson-ViG-Fax-media-rec-forward',
  'ericsson_vig_fax_media_s' => 'Ericsson-ViG-Fax-media-rec-backward',
  'ericsson_vig_global_uniq' => 'Ericsson-ViG-Global-unique-call-ID',
  'ericsson_vig_global_unir' => 'Ericsson-ViG-Global-unique-service-ID',
  'ericsson_vig_interim_int' => 'Ericsson-ViG-Interim-interval',
  'ericsson_vig_internal_re' => 'Ericsson-ViG-Internal-Rel-reason-val',
  'ericsson_vig_internal_rf' => 'Ericsson-ViG-Internal-Rel-reason-orig',
  'ericsson_vig_ipt_time_st' => 'Ericsson-ViG-IPT-Time-Stamp',
  'ericsson_vig_layer_ident' => 'Ericsson-ViG-Layer-identity',
  'ericsson_vig_major_proto' => 'Ericsson-ViG-Major-protocol-version',
  'ericsson_vig_media_chann' => 'Ericsson-ViG-Media-channel-count',
  'ericsson_vig_minor_proto' => 'Ericsson-ViG-Minor-protocol-version',
  'ericsson_vig_proxy_ip_ad' => 'Ericsson-ViG-Proxy-IP-Address',
  'ericsson_vig_qos_class'   => 'Ericsson-ViG-QoS-Class',
  'ericsson_vig_re_selectio' => 'Ericsson-ViG-Re-selection-counter',
  'ericsson_vig_redirecting' => 'Ericsson-ViG-Redirecting-num-digits',
  'ericsson_vig_redirectinh' => 'Ericsson-ViG-Redirecting-num-TON',
  'ericsson_vig_redirectini' => 'Ericsson-ViG-Redirecting-num-NP',
  'ericsson_vig_redirectinj' => 'Ericsson-ViG-Redirecting-num-PI',
  'ericsson_vig_redirectink' => 'Ericsson-ViG-Redirecting-num-RFD',
  'ericsson_vig_rel_cause_c' => 'Ericsson-ViG-Rel-cause-coding-std',
  'ericsson_vig_rel_cause_d' => 'Ericsson-ViG-Rel-cause-class',
  'ericsson_vig_rel_cause_l' => 'Ericsson-ViG-Rel-cause-location',
  'ericsson_vig_rel_cause_v' => 'Ericsson-ViG-Rel-cause-value',
  'ericsson_vig_rel_reason'  => 'Ericsson-ViG-Rel-reason',
  'ericsson_vig_remote_sk_u' => 'Ericsson-ViG-Remote-SK-UA-IP-Address',
  'ericsson_vig_requested_b' => 'Ericsson-ViG-Requested-bandwidth',
  'ericsson_vig_routed_e164' => 'Ericsson-ViG-Routed-e164-number',
  'ericsson_vig_routed_emai' => 'Ericsson-ViG-Routed-Email-address',
  'ericsson_vig_routed_h323' => 'Ericsson-ViG-Routed-H323Id',
  'ericsson_vig_routing_num' => 'Ericsson-ViG-Routing-num-digits',
  'ericsson_vig_routing_nun' => 'Ericsson-ViG-Routing-num-TON',
  'ericsson_vig_routing_nuo' => 'Ericsson-ViG-Routing-num-NP',
  'ericsson_vig_routing_tar' => 'Ericsson-ViG-Routing-tariff',
  'ericsson_vig_sa_ip_addre' => 'Ericsson-ViG-SA-IP-address',
  'ericsson_vig_sequence_nu' => 'Ericsson-ViG-Sequence-Number',
  'ericsson_vig_service_des' => 'Ericsson-ViG-Service-Description',
  'ericsson_vig_service_dur' => 'Ericsson-ViG-Service-Duration',
  'ericsson_vig_service_exe' => 'Ericsson-ViG-Service-Execution-Result',
  'ericsson_vig_service_exf' => 'Ericsson-ViG-Service-Exe-Rslt-Desc',
  'ericsson_vig_service_id'  => 'Ericsson-ViG-Service-ID',
  'ericsson_vig_service_nam' => 'Ericsson-ViG-Service-Name',
  'ericsson_vig_service_spe' => 'Ericsson-ViG-Service-Specific-Info',
  'ericsson_vig_session_rin' => 'Ericsson-ViG-Session-ringing-duration',
  'ericsson_vig_session_rou' => 'Ericsson-ViG-Session-routing-duration',
  'ericsson_vig_site'        => 'Ericsson-ViG-Site',
  'ericsson_vig_sitekeeper_' => 'Ericsson-ViG-SiteKeeper-name',
  'ericsson_vig_sk_ip_addre' => 'Ericsson-ViG-SK-IP-address',
  'ericsson_vig_terminal_ty' => 'Ericsson-ViG-Terminal-Type',
  'ericsson_vig_test_call_i' => 'Ericsson-ViG-Test-Call-Indicator',
  'ericsson_vig_test_call_j' => 'Ericsson-ViG-Test-Call-Indicator',
  'ericsson_vig_time_stamp_' => 'Ericsson-ViG-Time-stamp-UTC',
  'ericsson_vig_time_stampa' => 'Ericsson-ViG-Time-stamp-UTC',
  'ericsson_vig_time_stampb' => 'Ericsson-ViG-Time-stamp-TZ',
  'ericsson_vig_time_stampc' => 'Ericsson-ViG-Time-stamp-DST',
  'ericsson_vig_translated_' => 'Ericsson-ViG-Translated-ID',
  'ericsson_vig_trusted_acc' => 'Ericsson-ViG-Trusted-access',
  'ericsson_vig_ttl_absolut' => 'Ericsson-ViG-TTL-Absolute',
  'ericsson_vig_ttl_relativ' => 'Ericsson-ViG-TTL-relative',
  'ericsson_vig_ttl_start_e' => 'Ericsson-ViG-TTL-Start-Event',
  'ericsson_vig_ua_ip_addre' => 'Ericsson-ViG-UA-IP-address',
  'ericsson_vig_user_agent_' => 'Ericsson-ViG-User-agent-group-name',
  'ericsson_vig_user_agenta' => 'Ericsson-ViG-User-agent-name',
  'ericsson_vig_user_id'     => 'Ericsson-ViG-User-ID',
  'ericsson_vig_user_name'   => 'Ericsson-ViG-User-name',
  'ericsson_vig_user_name_i' => 'Ericsson-ViG-User-Name-Info',
  'ericsson_vig_video_media' => 'Ericsson-ViG-Video-media-rec-forward',
  'ericsson_vig_video_medib' => 'Ericsson-ViG-Video-media-rec-backward',
  'ericsson_vig_voice_media' => 'Ericsson-ViG-Voice-media-rec-forward',
  'ericsson_vig_voice_medib' => 'Ericsson-ViG-Voice-media-rec-backward',
  'error_cause'              => 'Error-Cause',
  'erx_acc_aggr_cir_id_asc'  => 'ERX-Acc-Aggr-Cir-Id-Asc',
  'erx_acc_aggr_cir_id_bin'  => 'ERX-Acc-Aggr-Cir-Id-Bin',
  'erx_acc_loop_cir_id'      => 'ERX-Acc-Loop-Cir-Id',
  'erx_act_data_rate_dn'     => 'ERX-Act-Data-Rate-Dn',
  'erx_act_data_rate_up'     => 'ERX-Act-Data-Rate-Up',
  'erx_act_interlv_delay_dn' => 'ERX-Act-Interlv-Delay-Dn',
  'erx_act_interlv_delay_up' => 'ERX-Act-Interlv-Delay-Up',
  'erx_address_pool_name'    => 'ERX-Address-Pool-Name',
  'erx_alternate_cli_access' => 'ERX-Alternate-Cli-Access-Level',
  'erx_alternate_cli_vroute' => 'ERX-Alternate-Cli-Vrouter-Name',
  'erx_atm_mbs'              => 'ERX-Atm-MBS',
  'erx_atm_pcr'              => 'ERX-Atm-PCR',
  'erx_atm_scr'              => 'ERX-Atm-SCR',
  'erx_atm_service_category' => 'ERX-Atm-Service-Category',
  'erx_att_data_rate_dn'     => 'ERX-Att-Data-Rate-Dn',
  'erx_att_data_rate_up'     => 'ERX-Att-Data-Rate-Up',
  'erx_backup_address_pool'  => 'ERX-Backup-Address-Pool',
  'erx_bearer_type'          => 'ERX-Bearer-Type',
  'erx_cli_allow_all_vr_acc' => 'ERX-Cli-Allow-All-VR-Access',
  'erx_cli_initial_access_l' => 'ERX-Cli-Initial-Access-Level',
  'erx_cos_scheduler_pmt_ty' => 'ERX-CoS-Scheduler-Pmt-Type',
  'erx_cos_shaping_pmt_type' => 'ERX-CoS-Shaping-Pmt-Type',
  'erx_df_bit'               => 'ERX-DF-Bit',
  'erx_dhcp_gi_address'      => 'ERX-Dhcp-Gi-Address',
  'erx_dhcp_guided_relay_se' => 'ERX-DHCP-Guided-Relay-Server',
  'erx_dhcp_mac_addr'        => 'ERX-Dhcp-Mac-Addr',
  'erx_dhcp_option_82'       => 'ERX-Dhcp-Option-82',
  'erx_dhcp_options'         => 'ERX-Dhcp-Options',
  'erx_dial_out_number'      => 'ERX-Dial-Out-Number',
  'erx_downstream_calc_rate' => 'ERX-DownStream-Calc-Rate',
  'erx_dsl_line_state'       => 'ERX-DSL-Line-State',
  'erx_dsl_type'             => 'ERX-DSL-Type',
  'erx_egress_policy_name'   => 'ERX-Egress-Policy-Name',
  'erx_egress_statistics'    => 'ERX-Egress-Statistics',
  'erx_framed_ip_route_tag'  => 'ERX-Framed-Ip-Route-Tag',
  'erx_icr_partition_id'     => 'ERX-ICR-Partition-Id',
  'erx_igmp_access_name'     => 'ERX-IGMP-Access-Name',
  'erx_igmp_access_src_name' => 'ERX-IGMP-Access-Src-Name',
  'erx_igmp_enable'          => 'ERX-Igmp-Enable',
  'erx_igmp_explicit_tracki' => 'ERX-IGMP-Explicit-Tracking',
  'erx_igmp_immediate_leave' => 'ERX-IGMP-Immediate-Leave',
  'erx_igmp_max_resp_time'   => 'ERX-IGMP-Max-Resp-Time',
  'erx_igmp_no_tracking_v2_' => 'ERX-IGMP-No-Tracking-V2-Grps',
  'erx_igmp_oif_map_name'    => 'ERX-IGMP-OIF-Map-Name',
  'erx_igmp_query_interval'  => 'ERX-IGMP-Query-Interval',
  'erx_igmp_version'         => 'ERX-IGMP-Version',
  'erx_ingress_policy_name'  => 'ERX-Ingress-Policy-Name',
  'erx_ingress_statistics'   => 'ERX-Ingress-Statistics',
  'erx_input_gigapkts'       => 'ERX-Input-Gigapkts',
  'erx_interface_desc'       => 'ERX-Interface-Desc',
  'erx_ip_block_multicast'   => 'ERX-IP-Block-Multicast',
  'erx_ip_mcast_adm_bw_limi' => 'ERX-IP-Mcast-Adm-Bw-Limit',
  'erx_ipv6_acct_input_giga' => 'ERX-IPv6-Acct-Input-Gigawords',
  'erx_ipv6_acct_input_octe' => 'ERX-IPv6-Acct-Input-Octets',
  'erx_ipv6_acct_input_pack' => 'ERX-IPv6-Acct-Input-Packets',
  'erx_ipv6_acct_output_gig' => 'ERX-IPv6-Acct-Output-Gigawords',
  'erx_ipv6_acct_output_oct' => 'ERX-IPv6-Acct-Output-Octets',
  'erx_ipv6_acct_output_pac' => 'ERX-IPv6-Acct-Output-Packets',
  'erx_ipv6_delegated_pool_' => 'ERX-IPv6-Delegated-Pool-Name',
  'erx_ipv6_egress_policy_n' => 'ERX-IPv6-Egress-Policy-Name',
  'erx_ipv6_ingress_policy_' => 'ERX-IPv6-Ingress-Policy-Name',
  'erx_ipv6_local_interface' => 'ERX-IpV6-Local-Interface',
  'erx_ipv6_mcast_adm_bw_li' => 'ERX-IPv6-Mcast-Adm-Bw-Limit',
  'erx_ipv6_ndra_pool_name'  => 'ERX-IPv6-NdRa-Pool-Name',
  'erx_ipv6_ndra_prefix'     => 'ERX-IPv6-NdRa-Prefix',
  'erx_ipv6_primary_dns'     => 'ERX-Ipv6-Primary-Dns',
  'erx_ipv6_secondary_dns'   => 'ERX-Ipv6-Secondary-Dns',
  'erx_ipv6_virtual_router'  => 'ERX-IpV6-Virtual-Router',
  'erx_l2c_down_stream_data' => 'ERX-L2c-Down-Stream-Data',
  'erx_l2c_up_stream_data'   => 'ERX-L2c-Up-Stream-Data',
  'erx_l2tp_recv_window_siz' => 'ERX-L2tp-Recv-Window-Size',
  'erx_l2tp_resynch_method'  => 'ERX-L2TP-Resynch-Method',
  'erx_li_action'            => 'ERX-LI-Action',
  'erx_local_loopback_inter' => 'ERX-Local-Loopback-Interface',
  'erx_max_clients_per_inte' => 'ERX-Max-Clients-Per-Interface',
  'erx_max_data_rate_dn'     => 'ERX-Max-Data-Rate-Dn',
  'erx_max_data_rate_up'     => 'ERX-Max-Data-Rate-Up',
  'erx_max_interlv_delay_dn' => 'ERX-Max-Interlv-Delay-Dn',
  'erx_max_interlv_delay_up' => 'ERX-Max-Interlv-Delay-Up',
  'erx_maximum_bps'          => 'ERX-Maximum-BPS',
  'erx_med_dev_handle'       => 'ERX-Med-Dev-Handle',
  'erx_med_ip_address'       => 'ERX-Med-Ip-Address',
  'erx_med_port_number'      => 'ERX-Med-Port-Number',
  'erx_min_data_rate_dn'     => 'ERX-Min-Data-Rate-Dn',
  'erx_min_data_rate_up'     => 'ERX-Min-Data-Rate-Up',
  'erx_min_lp_data_rate_dn'  => 'ERX-Min-LP-Data-Rate-Dn',
  'erx_min_lp_data_rate_up'  => 'ERX-Min-LP-Data-Rate-Up',
  'erx_minimum_bps'          => 'ERX-Minimum-BPS',
  'erx_mld_access_name'      => 'ERX-MLD-Access-Name',
  'erx_mld_access_src_name'  => 'ERX-MLD-Access-Src-Name',
  'erx_mld_explicit_trackin' => 'ERX-MLD-Explicit-Tracking',
  'erx_mld_immediate_leave'  => 'ERX-MLD-Immediate-Leave',
  'erx_mld_max_resp_time'    => 'ERX-MLD-Max-Resp-Time',
  'erx_mld_no_tracking_v1_g' => 'ERX-MLD-No-Tracking-V1-Grps',
  'erx_mld_oif_map_name'     => 'ERX-MLD-OIF-Map-Name',
  'erx_mld_query_interval'   => 'ERX-MLD-Query-Interval',
  'erx_mld_version'          => 'ERX-MLD-Version',
  'erx_mlppp_bundle_name'    => 'ERX-MLPPP-Bundle-Name',
  'erx_mobile_ip_access_con' => 'ERX-Mobile-IP-Access-Control',
  'erx_mobile_ip_algorithm'  => 'ERX-Mobile-IP-Algorithm',
  'erx_mobile_ip_key'        => 'ERX-Mobile-IP-Key',
  'erx_mobile_ip_lifetime'   => 'ERX-Mobile-IP-Lifetime',
  'erx_mobile_ip_replay'     => 'ERX-Mobile-IP-Replay',
  'erx_mobile_ip_spi'        => 'ERX-Mobile-IP-SPI',
  'erx_output_gigapkts'      => 'ERX-Output-Gigapkts',
  'erx_ppp_auth_protocol'    => 'ERX-PPP-Auth-Protocol',
  'erx_ppp_monitor_ingress_' => 'ERX-PPP-Monitor-Ingress-Only',
  'erx_ppp_password'         => 'ERX-PPP-Password',
  'erx_ppp_username'         => 'ERX-PPP-Username',
  'erx_pppoe_description'    => 'ERX-Pppoe-Description',
  'erx_pppoe_max_sessions'   => 'ERX-Pppoe-Max-Sessions',
  'erx_pppoe_padn'           => 'ERX-PppoE-Padn',
  'erx_pppoe_url'            => 'ERX-Pppoe-Url',
  'erx_primary_dns'          => 'ERX-Primary-Dns',
  'erx_primary_wins'         => 'ERX-Primary-Wins',
  'erx_qos_parameters'       => 'ERX-Qos-Parameters',
  'erx_qos_profile_interfac' => 'ERX-Qos-Profile-Interface-Type',
  'erx_qos_profile_name'     => 'ERX-Qos-Profile-Name',
  'erx_qos_set_name'         => 'ERX-Qos-Set-Name',
  'erx_radius_client_addres' => 'ERX-Radius-Client-Address',
  'erx_redirect_vr_name'     => 'ERX-Redirect-VR-Name',
  'erx_sa_validate'          => 'ERX-Sa-Validate',
  'erx_secondary_dns'        => 'ERX-Secondary-Dns',
  'erx_secondary_wins'       => 'ERX-Secondary-Wins',
  'erx_service_acct_interva' => 'ERX-Service-Acct-Interval',
  'erx_service_activate'     => 'ERX-Service-Activate',
  'erx_service_bundle'       => 'ERX-Service-Bundle',
  'erx_service_deactivate'   => 'ERX-Service-Deactivate',
  'erx_service_description'  => 'ERX-Service-Description',
  'erx_service_session'      => 'ERX-Service-Session',
  'erx_service_statistics'   => 'ERX-Service-Statistics',
  'erx_service_timeout'      => 'ERX-Service-Timeout',
  'erx_service_volume'       => 'ERX-Service-Volume',
  'erx_tunnel_group'         => 'ERX-Tunnel-Group',
  'erx_tunnel_interface_id'  => 'ERX-Tunnel-Interface-Id',
  'erx_tunnel_maximum_sessi' => 'ERX-Tunnel-Maximum-Sessions',
  'erx_tunnel_nas_port_meth' => 'ERX-Tunnel-Nas-Port-Method',
  'erx_tunnel_password'      => 'ERX-Tunnel-Password',
  'erx_tunnel_switch_profil' => 'ERX-Tunnel-Switch-Profile',
  'erx_tunnel_tos'           => 'ERX-Tunnel-Tos',
  'erx_tunnel_tx_speed_meth' => 'ERX-Tunnel-Tx-Speed-Method',
  'erx_tunnel_virtual_route' => 'ERX-Tunnel-Virtual-Router',
  'erx_upstream_calc_rate'   => 'ERX-UpStream-Calc-Rate',
  'erx_virtual_router_name'  => 'ERX-Virtual-Router-Name',
  'erx_vlan_map_id'          => 'ERX-Vlan-Map-Id',
  'event_timestamp'          => 'Event-Timestamp',
  'exec_program'             => 'Exec-Program',
  'exec_program_wait'        => 'Exec-Program-Wait',
  'expiration'               => 'Expiration',
  'extended_location_policy' => 'Extended-Location-Policy-Rules',
  'extreme_cli_authorizatio' => 'Extreme-CLI-Authorization',
  'extreme_netlogin_extende' => 'Extreme-Netlogin-Extended-Vlan',
  'extreme_netlogin_only'    => 'Extreme-Netlogin-Only',
  'extreme_netlogin_url'     => 'Extreme-Netlogin-Url',
  'extreme_netlogin_url_des' => 'Extreme-Netlogin-Url-Desc',
  'extreme_netlogin_vlan'    => 'Extreme-Netlogin-Vlan',
  'extreme_netlogin_vlan_ta' => 'Extreme-Netlogin-Vlan-Tag',
  'extreme_security_profile' => 'Extreme-Security-Profile',
  'extreme_shell_command'    => 'Extreme-Shell-Command',
  'extreme_user_location'    => 'Extreme-User-Location',
  'extreme_vm_ip_addr'       => 'Extreme-VM-IP-Addr',
  'extreme_vm_name'          => 'Extreme-VM-Name',
  'extreme_vm_vlan_id'       => 'Extreme-VM-VLAN-ID',
  'extreme_vm_vpp_name'      => 'Extreme-VM-VPP-Name',
  'extreme_vm_vr_name'       => 'Extreme-VM-VR-Name',
  'f5_ltm_audit_msg'         => 'F5-LTM-Audit-Msg',
  'f5_ltm_user_console'      => 'F5-LTM-User-Console',
  'f5_ltm_user_context_1'    => 'F5-LTM-User-Context-1',
  'f5_ltm_user_context_2'    => 'F5-LTM-User-Context-2',
  'f5_ltm_user_info_1'       => 'F5-LTM-User-Info-1',
  'f5_ltm_user_info_2'       => 'F5-LTM-User-Info-2',
  'f5_ltm_user_partition'    => 'F5-LTM-User-Partition',
  'f5_ltm_user_role'         => 'F5-LTM-User-Role',
  'f5_ltm_user_role_univers' => 'F5-LTM-User-Role-Universal',
  'f5_ltm_user_shell'        => 'F5-LTM-User-Shell',
  'fall_through'             => 'Fall-Through',
  'fdxtended_bandwidth_down' => 'fdXtended-Bandwidth-Down',
  'fdxtended_bandwidth_up'   => 'fdXtended-Bandwidth-Up',
  'fdxtended_bytesdown'      => 'fdXtended-BytesDown',
  'fdxtended_bytesup'        => 'fdXtended-BytesUp',
  'fdxtended_contentfilter'  => 'fdXtended-ContentFilter',
  'fdxtended_expiration'     => 'fdXtended-Expiration',
  'fdxtended_networkpolicy'  => 'fdXtended-NetworkPolicy',
  'fdxtended_one2onenat_ip'  => 'fdXtended-One2onenat-IP',
  'fdxtended_postauthurl'    => 'fdXtended-PostAuthURL',
  'fdxtended_sessiontimeout' => 'fdXtended-SessionTimeout',
  'fdxtended_wan_interface'  => 'fdXtended-Wan-Interface',
  'filter_id'                => 'Filter-Id',
  'flow_fac_profile'         => 'Flow-FAC-Profile',
  'flow_fac_profilf'         => 'Flow-FAC-Profile',
  'flow_ip_profile'          => 'Flow-IP-Profile',
  'fortinet_access_profile'  => 'Fortinet-Access-Profile',
  'fortinet_client_ip_addre' => 'Fortinet-Client-IP-Address',
  'fortinet_client_ipv6_add' => 'Fortinet-Client-IPv6-Address',
  'fortinet_group_name'      => 'Fortinet-Group-Name',
  'fortinet_interface_name'  => 'Fortinet-Interface-Name',
  'fortinet_vdom_name'       => 'Fortinet-Vdom-Name',
  'forward_policy'           => 'Forward-Policy',
  'forward_policz'           => 'Forward-Policy',
  'foundry_802.1x_valid_loo' => 'Foundry-802.1x-Valid-Lookup',
  'foundry_access_list'      => 'Foundry-Access-List',
  'foundry_command_exceptio' => 'Foundry-Command-Exception-Flag',
  'foundry_command_string'   => 'Foundry-Command-String',
  'foundry_inm_privilege'    => 'Foundry-INM-Privilege',
  'foundry_inm_role_aor_lis' => 'Foundry-INM-Role-Aor-List',
  'foundry_mac_authent_need' => 'Foundry-MAC-Authent-needs-802.1x',
  'foundry_mac_based_vlan_q' => 'Foundry-MAC-Based-Vlan-QoS',
  'foundry_privilege_level'  => 'Foundry-Privilege-Level',
  'framed_address'           => 'Framed-Address',
  'framed_appletalk_link'    => 'Framed-AppleTalk-Link',
  'framed_appletalk_network' => 'Framed-AppleTalk-Network',
  'framed_appletalk_zone'    => 'Framed-AppleTalk-Zone',
  'framed_callback_id'       => 'Framed-Callback-Id',
  'framed_compression'       => 'Framed-Compression',
  'framed_filter_id'         => 'Framed-Filter-Id',
  'framed_interface_id'      => 'Framed-Interface-Id',
  'framed_ip_address'        => 'Framed-IP-Address',
  'framed_ip_netmask'        => 'Framed-IP-Netmask',
  'framed_ipv6_address'      => 'Framed-IPv6-Address',
  'framed_ipv6_pool'         => 'Framed-IPv6-Pool',
  'framed_ipv6_prefix'       => 'Framed-IPv6-Prefix',
  'framed_ipv6_route'        => 'Framed-IPv6-Route',
  'framed_ipx_network'       => 'Framed-IPX-Network',
  'framed_management'        => 'Framed-Management',
  'framed_mtu'               => 'Framed-MTU',
  'framed_netmask'           => 'Framed-Netmask',
  'framed_pool'              => 'Framed-Pool',
  'framed_protocol'          => 'Framed-Protocol',
  'framed_route'             => 'Framed-Route',
  'framed_routing'           => 'Framed-Routing',
  'freeradius_acct_session_' => 'FreeRADIUS-Acct-Session-Start-Time',
  'freeradius_client_ip_add' => 'FreeRADIUS-Client-IP-Address',
  'freeradius_client_ipv6_a' => 'FreeRADIUS-Client-IPv6-Address',
  'freeradius_client_nas_ty' => 'FreeRADIUS-Client-NAS-Type',
  'freeradius_client_requir' => 'FreeRADIUS-Client-Require-MA',
  'freeradius_client_secret' => 'FreeRADIUS-Client-Secret',
  'freeradius_client_shortn' => 'FreeRADIUS-Client-Shortname',
  'freeradius_client_virtua' => 'FreeRADIUS-Client-Virtual-Server',
  'freeradius_proxied_to'    => 'FreeRADIUS-Proxied-To',
  'freeradius_queue_len_acc' => 'FreeRADIUS-Queue-Len-Acct',
  'freeradius_queue_len_aut' => 'FreeRADIUS-Queue-Len-Auth',
  'freeradius_queue_len_det' => 'FreeRADIUS-Queue-Len-Detail',
  'freeradius_queue_len_int' => 'FreeRADIUS-Queue-Len-Internal',
  'freeradius_queue_len_pro' => 'FreeRADIUS-Queue-Len-Proxy',
  'freeradius_server_ema_us' => 'FreeRADIUS-Server-EMA-USEC-Window-1',
  'freeradius_server_ema_ut' => 'FreeRADIUS-Server-EMA-USEC-Window-10',
  'freeradius_server_ema_wi' => 'FreeRADIUS-Server-EMA-Window',
  'freeradius_statistics_ty' => 'FreeRADIUS-Statistics-Type',
  'freeradius_stats_client_' => 'FreeRADIUS-Stats-Client-IP-Address',
  'freeradius_stats_clienta' => 'FreeRADIUS-Stats-Client-Number',
  'freeradius_stats_clientb' => 'FreeRADIUS-Stats-Client-Netmask',
  'freeradius_stats_hup_tim' => 'FreeRADIUS-Stats-HUP-Time',
  'freeradius_stats_server_' => 'FreeRADIUS-Stats-Server-IP-Address',
  'freeradius_stats_servera' => 'FreeRADIUS-Stats-Server-Port',
  'freeradius_stats_serverb' => 'FreeRADIUS-Stats-Server-Outstanding-Requests',
  'freeradius_stats_serverc' => 'FreeRADIUS-Stats-Server-State',
  'freeradius_stats_serverd' => 'FreeRADIUS-Stats-Server-Time-Of-Death',
  'freeradius_stats_servere' => 'FreeRADIUS-Stats-Server-Time-Of-Life',
  'freeradius_stats_start_t' => 'FreeRADIUS-Stats-Start-Time',
  'freeradius_total_access_' => 'FreeRADIUS-Total-Access-Requests',
  'freeradius_total_accessa' => 'FreeRADIUS-Total-Access-Accepts',
  'freeradius_total_accessb' => 'FreeRADIUS-Total-Access-Rejects',
  'freeradius_total_accessc' => 'FreeRADIUS-Total-Access-Challenges',
  'freeradius_total_account' => 'FreeRADIUS-Total-Accounting-Requests',
  'freeradius_total_accounu' => 'FreeRADIUS-Total-Accounting-Responses',
  'freeradius_total_acct_dr' => 'FreeRADIUS-Total-Acct-Dropped-Requests',
  'freeradius_total_acct_du' => 'FreeRADIUS-Total-Acct-Duplicate-Requests',
  'freeradius_total_acct_in' => 'FreeRADIUS-Total-Acct-Invalid-Requests',
  'freeradius_total_acct_ma' => 'FreeRADIUS-Total-Acct-Malformed-Requests',
  'freeradius_total_acct_un' => 'FreeRADIUS-Total-Acct-Unknown-Types',
  'freeradius_total_auth_dr' => 'FreeRADIUS-Total-Auth-Dropped-Requests',
  'freeradius_total_auth_du' => 'FreeRADIUS-Total-Auth-Duplicate-Requests',
  'freeradius_total_auth_in' => 'FreeRADIUS-Total-Auth-Invalid-Requests',
  'freeradius_total_auth_ma' => 'FreeRADIUS-Total-Auth-Malformed-Requests',
  'freeradius_total_auth_re' => 'FreeRADIUS-Total-Auth-Responses',
  'freeradius_total_auth_un' => 'FreeRADIUS-Total-Auth-Unknown-Types',
  'freeradius_total_proxy_a' => 'FreeRADIUS-Total-Proxy-Access-Requests',
  'freeradius_total_proxy_b' => 'FreeRADIUS-Total-Proxy-Access-Accepts',
  'freeradius_total_proxy_c' => 'FreeRADIUS-Total-Proxy-Access-Rejects',
  'freeradius_total_proxy_d' => 'FreeRADIUS-Total-Proxy-Access-Challenges',
  'freeradius_total_proxy_e' => 'FreeRADIUS-Total-Proxy-Auth-Responses',
  'freeradius_total_proxy_f' => 'FreeRADIUS-Total-Proxy-Auth-Duplicate-Requests',
  'freeradius_total_proxy_g' => 'FreeRADIUS-Total-Proxy-Auth-Malformed-Requests',
  'freeradius_total_proxy_h' => 'FreeRADIUS-Total-Proxy-Auth-Invalid-Requests',
  'freeradius_total_proxy_i' => 'FreeRADIUS-Total-Proxy-Auth-Dropped-Requests',
  'freeradius_total_proxy_j' => 'FreeRADIUS-Total-Proxy-Auth-Unknown-Types',
  'freeradius_total_proxy_k' => 'FreeRADIUS-Total-Proxy-Accounting-Requests',
  'freeradius_total_proxy_l' => 'FreeRADIUS-Total-Proxy-Accounting-Responses',
  'freeradius_total_proxy_m' => 'FreeRADIUS-Total-Proxy-Acct-Duplicate-Requests',
  'freeradius_total_proxy_n' => 'FreeRADIUS-Total-Proxy-Acct-Malformed-Requests',
  'freeradius_total_proxy_o' => 'FreeRADIUS-Total-Proxy-Acct-Invalid-Requests',
  'freeradius_total_proxy_p' => 'FreeRADIUS-Total-Proxy-Acct-Dropped-Requests',
  'freeradius_total_proxy_q' => 'FreeRADIUS-Total-Proxy-Acct-Unknown-Types',
  'freeswitch_amaflags'      => 'Freeswitch-AMAFlags',
  'freeswitch_ani'           => 'Freeswitch-Ani',
  'freeswitch_aniii'         => 'Freeswitch-Aniii',
  'freeswitch_avpair'        => 'Freeswitch-AVPair',
  'freeswitch_billusec'      => 'Freeswitch-Billusec',
  'freeswitch_callanswerdat' => 'Freeswitch-Callanswerdate',
  'freeswitch_callenddate'   => 'Freeswitch-Callenddate',
  'freeswitch_callstartdate' => 'Freeswitch-Callstartdate',
  'freeswitch_calltransferd' => 'Freeswitch-Calltransferdate',
  'freeswitch_clid'          => 'Freeswitch-CLID',
  'freeswitch_context'       => 'Freeswitch-Context',
  'freeswitch_dialplan'      => 'Freeswitch-Dialplan',
  'freeswitch_disposition'   => 'Freeswitch-Disposition',
  'freeswitch_dst'           => 'Freeswitch-Dst',
  'freeswitch_dst_channel'   => 'Freeswitch-Dst-Channel',
  'freeswitch_hangupcause'   => 'Freeswitch-Hangupcause',
  'freeswitch_lastapp'       => 'Freeswitch-Lastapp',
  'freeswitch_lastdata'      => 'Freeswitch-Lastdata',
  'freeswitch_rdnis'         => 'Freeswitch-RDNIS',
  'freeswitch_signalbond'    => 'Freeswitch-Signalbond',
  'freeswitch_source'        => 'Freeswitch-Source',
  'freeswitch_src'           => 'Freeswitch-Src',
  'freeswitch_src_channel'   => 'Freeswitch-Src-Channel',
  'gandalf_around_the_corne' => 'Gandalf-Around-The-Corner',
  'gandalf_authentication_s' => 'Gandalf-Authentication-String',
  'gandalf_calling_line_id_' => 'Gandalf-Calling-Line-ID-1',
  'gandalf_calling_line_ida' => 'Gandalf-Calling-Line-ID-2',
  'gandalf_channel_group_na' => 'Gandalf-Channel-Group-Name-1',
  'gandalf_channel_group_nb' => 'Gandalf-Channel-Group-Name-2',
  'gandalf_compression_stat' => 'Gandalf-Compression-Status',
  'gandalf_dial_prefix_name' => 'Gandalf-Dial-Prefix-Name-1',
  'gandalf_dial_prefix_namf' => 'Gandalf-Dial-Prefix-Name-2',
  'gandalf_fwd_broadcast_in' => 'Gandalf-Fwd-Broadcast-In',
  'gandalf_fwd_broadcast_ou' => 'Gandalf-Fwd-Broadcast-Out',
  'gandalf_fwd_multicast_in' => 'Gandalf-Fwd-Multicast-In',
  'gandalf_fwd_multicast_ou' => 'Gandalf-Fwd-Multicast-Out',
  'gandalf_fwd_unicast_in'   => 'Gandalf-Fwd-Unicast-In',
  'gandalf_fwd_unicast_out'  => 'Gandalf-Fwd-Unicast-Out',
  'gandalf_hunt_group'       => 'Gandalf-Hunt-Group',
  'gandalf_ipx_spoofing_sta' => 'Gandalf-IPX-Spoofing-State',
  'gandalf_ipx_watchdog_spo' => 'Gandalf-IPX-Watchdog-Spoof',
  'gandalf_min_outgoing_bea' => 'Gandalf-Min-Outgoing-Bearer',
  'gandalf_modem_mode'       => 'Gandalf-Modem-Mode',
  'gandalf_modem_required_1' => 'Gandalf-Modem-Required-1',
  'gandalf_modem_required_2' => 'Gandalf-Modem-Required-2',
  'gandalf_operational_mode' => 'Gandalf-Operational-Modes',
  'gandalf_phone_number_1'   => 'Gandalf-Phone-Number-1',
  'gandalf_phone_number_2'   => 'Gandalf-Phone-Number-2',
  'gandalf_ppp_authenticati' => 'Gandalf-PPP-Authentication',
  'gandalf_ppp_ncp_type'     => 'Gandalf-PPP-NCP-Type',
  'gandalf_remote_lan_name'  => 'Gandalf-Remote-LAN-Name',
  'gandalf_sap_group_name_1' => 'Gandalf-SAP-Group-Name-1',
  'gandalf_sap_group_name_2' => 'Gandalf-SAP-Group-Name-2',
  'gandalf_sap_group_name_3' => 'Gandalf-SAP-Group-Name-3',
  'gandalf_sap_group_name_4' => 'Gandalf-SAP-Group-Name-4',
  'gandalf_sap_group_name_5' => 'Gandalf-SAP-Group-Name-5',
  'garderos_location_name'   => 'Garderos-Location-Name',
  'garderos_msisdn'          => 'Garderos-MSISDN',
  'garderos_proxy'           => 'Garderos-Proxy',
  'garderos_service_name'    => 'Garderos-Service-Name',
  'group'                    => 'Group',
  'group_name'               => 'Group-Name',
  'gss_acceptor_host_name'   => 'GSS-Acceptor-Host-Name',
  'gss_acceptor_realm_name'  => 'GSS-Acceptor-Realm-Name',
  'gss_acceptor_service_nam' => 'GSS-Acceptor-Service-Name',
  'gss_acceptor_service_spe' => 'GSS-Acceptor-Service-Specifics',
  'gw_final_xlated_cdn'      => 'gw-final-xlated-cdn',
  'gw_final_xlated_cgn'      => 'gw-final-xlated-cgn',
  'gw_rxd_cdn'               => 'gw-rxd-cdn',
  'gw_rxd_cgn'               => 'gw-rxd-cgn',
  'h323_billing_model'       => 'h323-billing-model',
  'h323_call_origin'         => 'h323-call-origin',
  'h323_call_type'           => 'h323-call-type',
  'h323_conf_id'             => 'h323-conf-id',
  'h323_connect_time'        => 'h323-connect-time',
  'h323_credit_amount'       => 'h323-credit-amount',
  'h323_credit_time'         => 'h323-credit-time',
  'h323_currency'            => 'h323-currency',
  'h323_disconnect_cause'    => 'h323-disconnect-cause',
  'h323_disconnect_time'     => 'h323-disconnect-time',
  'h323_gw_id'               => 'h323-gw-id',
  'h323_incoming_conf_id'    => 'h323-incoming-conf-id',
  'h323_preferred_lang'      => 'h323-preferred-lang',
  'h323_prompt_id'           => 'h323-prompt-id',
  'h323_redirect_ip_address' => 'h323-redirect-ip-address',
  'h323_redirect_number'     => 'h323-redirect-number',
  'h323_remote_address'      => 'h323-remote-address',
  'h323_return_code'         => 'h323-return-code',
  'h323_setup_time'          => 'h323-setup-time',
  'h323_time_and_day'        => 'h323-time-and-day',
  'h323_voice_quality'       => 'h323-voice-quality',
  'h3c_connect_id'           => 'H3C-Connect_Id',
  'h3c_ip_host_addr'         => 'H3C-Ip-Host-Addr',
  'h3c_nas_startup_timestam' => 'H3C-NAS-Startup-Timestamp',
  'h3c_product_id'           => 'H3C-Product-ID',
  'hint'                     => 'Hint',
  'home_server_pool'         => 'Home-Server-Pool',
  'hp_bandwidth_max_egress'  => 'HP-Bandwidth-Max-Egress',
  'hp_bandwidth_max_ingress' => 'HP-Bandwidth-Max-Ingress',
  'hp_capability_advert'     => 'HP-Capability-Advert',
  'hp_command_exception'     => 'HP-Command-Exception',
  'hp_command_string'        => 'HP-Command-String',
  'hp_cos'                   => 'HP-Cos',
  'hp_egress_vlan_name'      => 'HP-Egress-VLAN-Name',
  'hp_egress_vlanid'         => 'HP-Egress-VLANID',
  'hp_ip_filter_raw'         => 'HP-Ip-Filter-Raw',
  'hp_management_protocol'   => 'HP-Management-Protocol',
  'hp_nas_filter_rule'       => 'HP-Nas-Filter-Rule',
  'hp_nas_rules_ipv6'        => 'HP-Nas-Rules-IPv6',
  'hp_port_auth_mode_dot1x'  => 'HP-Port-Auth-Mode-Dot1x',
  'hp_port_client_limit_dot' => 'HP-Port-Client-Limit-Dot1x',
  'hp_port_client_limit_ma'  => 'HP-Port-Client-Limit-MA',
  'hp_port_client_limit_wa'  => 'HP-Port-Client-Limit-WA',
  'hp_port_priority_regener' => 'HP-Port-Priority-Regeneration-Table',
  'hp_privilege_level'       => 'HP-Privilege-Level',
  'http_redirect_profile_na' => 'HTTP-Redirect-Profile-Name',
  'http_redirect_profile_nb' => 'HTTP-Redirect-Profile-Name',
  'http_redirect_url'        => 'HTTP-Redirect-URL',
  'huawei_access_num'        => 'Huawei-Access-Num',
  'huawei_access_service'    => 'Huawei-Access-Service',
  'huawei_acct_connection_t' => 'Huawei-Acct-Connection-Time',
  'huawei_acct_packet_type'  => 'Huawei-Acct-Packet-Type',
  'huawei_acs_url'           => 'Huawei-ACS-Url',
  'huawei_ancp_profile'      => 'Huawei-ANCP-Profile',
  'huawei_application_scene' => 'Huawei-Application-Scene',
  'huawei_application_type'  => 'Huawei-Application-Type',
  'huawei_call_reference'    => 'Huawei-Call-Reference',
  'huawei_codec_type'        => 'Huawei-Codec-Type',
  'huawei_command'           => 'Huawei-Command',
  'huawei_connect_id'        => 'Huawei-Connect-ID',
  'huawei_control_identifie' => 'Huawei-Control-Identifier',
  'huawei_data_filter'       => 'Huawei-Data-Filter',
  'huawei_destnation_ip_add' => 'Huawei-Destnation-IP-Addr',
  'huawei_destnation_volume' => 'Huawei-Destnation-Volume',
  'huawei_dhcp_server_ip'    => 'Huawei-DHCP-Server-IP',
  'huawei_domain_name'       => 'Huawei-Domain-Name',
  'huawei_dst_gk_ipaddr'     => 'Huawei-Dst-GK-ipaddr',
  'huawei_dst_gw_ipaddr'     => 'Huawei-Dst-GW-ipaddr',
  'huawei_error_reason'      => 'Huawei-Error-Reason',
  'huawei_exec_privilege'    => 'Huawei-Exec-Privilege',
  'huawei_flow_id'           => 'Huawei-Flow-Id',
  'huawei_flow_info'         => 'Huawei-Flow-Info',
  'huawei_framed_pool'       => 'Huawei-Framed-Pool',
  'huawei_ftp_directory'     => 'Huawei-FTP-Directory',
  'huawei_gateway_address'   => 'Huawei-Gateway-Address',
  'huawei_http_redirect_url' => 'Huawei-HTTP-Redirect-URL',
  'huawei_hw_accounting_lev' => 'Huawei-HW-Accounting-Level',
  'huawei_hw_dpi_policy_nam' => 'Huawei-HW-DPI-Policy-Name',
  'huawei_hw_l2tp_terminate' => 'Huawei-HW-L2TP-Terminate-Cause',
  'huawei_hw_max_list_num'   => 'Huawei-HW-Max-List-Num',
  'huawei_hw_multi_account_' => 'Huawei-HW-Multi-Account-Mode',
  'huawei_hw_portal_mode'    => 'Huawei-HW-Portal-Mode',
  'huawei_in_kb_after_t_swi' => 'Huawei-In-Kb-After-T-Switch',
  'huawei_in_kb_before_t_sw' => 'Huawei-In-Kb-Before-T-Switch',
  'huawei_in_pkt_after_t_sw' => 'Huawei-In-Pkt-After-T-Switch',
  'huawei_in_pkt_before_t_s' => 'Huawei-In-Pkt-Before-T-Switch',
  'huawei_indication_flag'   => 'Huawei-Indication-Flag',
  'huawei_input_average_rat' => 'Huawei-Input-Average-Rate',
  'huawei_input_burst_size'  => 'Huawei-Input-Burst-Size',
  'huawei_input_peak_burst_' => 'Huawei-Input-Peak-Burst-Size',
  'huawei_input_peak_rate'   => 'Huawei-Input-Peak-Rate',
  'huawei_ip_address'        => 'Huawei-IP-Address',
  'huawei_iphost_addr'       => 'Huawei-IPHost-Addr',
  'huawei_isp_id'            => 'Huawei-ISP-ID',
  'huawei_layer4_session_li' => 'Huawei-Layer4-Session-Limit',
  'huawei_lease_time'        => 'Huawei-Lease-Time',
  'huawei_li_id'             => 'Huawei-LI-ID',
  'huawei_li_md_address'     => 'Huawei-LI-Md-Address',
  'huawei_li_md_port'        => 'Huawei-LI-Md-Port',
  'huawei_li_md_vpninstance' => 'Huawei-LI-Md-VpnInstance',
  'huawei_loopback_address'  => 'Huawei-Loopback-Address',
  'huawei_max_users_per_log' => 'Huawei-Max-Users-Per-Logic-Port',
  'huawei_ms_maximum_mac_st' => 'Huawei-MS-Maximum-MAC-Study-Number',
  'huawei_multicast_profile' => 'Huawei-Multicast-Profile',
  'huawei_multicast_receive' => 'Huawei-Multicast-Receive-Group',
  'huawei_multicast_source_' => 'Huawei-Multicast-Source-Group',
  'huawei_new_user_name'     => 'Huawei-New-User-Name',
  'huawei_only_account_type' => 'Huawei-ONLY-Account-Type',
  'huawei_org_gk_ipaddr'     => 'Huawei-Org-GK-ipaddr',
  'huawei_org_gw_ipaddr'     => 'Huawei-Org-GW-ipaddr',
  'huawei_original_nas_ip_a' => 'Huawei-Original_NAS-IP_Address',
  'huawei_out_kb_after_t_sw' => 'Huawei-Out-Kb-After-T-Switch',
  'huawei_out_kb_before_t_s' => 'Huawei-Out-Kb-Before-T-Switch',
  'huawei_out_pkt_after_t_s' => 'Huawei-Out-Pkt-After-T-Switch',
  'huawei_out_pkt_before_t_' => 'Huawei-Out-Pkt-Before-T-Switch',
  'huawei_output_average_ra' => 'Huawei-Output-Average-Rate',
  'huawei_output_burst_size' => 'Huawei-Output-Burst-Size',
  'huawei_output_peak_burst' => 'Huawei-Output-Peak-Burst-Size',
  'huawei_output_peak_rate'  => 'Huawei-Output-Peak-Rate',
  'huawei_policy_name'       => 'Huawei-Policy-Name',
  'huawei_policy_route'      => 'huawei-Policy-Route',
  'huawei_portalurl'         => 'Huawei-PortalURL',
  'huawei_ppp_ncp_type'      => 'Huawei-PPP-NCP-Type',
  'huawei_primary_dns'       => 'Huawei-Primary-DNS',
  'huawei_primary_wins'      => 'Huawei-Primary-WINS',
  'huawei_priority'          => 'Huawei-Priority',
  'huawei_product_id'        => 'Huawei-Product-ID',
  'huawei_provision_code'    => 'Huawei-Provision-Code',
  'huawei_pstn_port'         => 'Huawei-PSTN-Port',
  'huawei_qos_profile_name'  => 'Huawei-Qos-Profile-Name',
  'huawei_qos_profile_type'  => 'Huawei-QoS-Profile-Type',
  'huawei_queue_profile'     => 'Huawei-Queue-Profile',
  'huawei_reduced_cir'       => 'Huawei-Reduced-CIR',
  'huawei_reduced_pir'       => 'Huawei-Reduced-PIR',
  'huawei_remain_monney'     => 'Huawei-Remain-Monney',
  'huawei_remain_time'       => 'Huawei-Remain-Time',
  'huawei_remanent_volume'   => 'Huawei-Remanent-Volume',
  'huawei_result_code'       => 'Huawei-Result-Code',
  'huawei_secondary_dns'     => 'Huawei-Secondary-DNS',
  'huawei_secondary_wins'    => 'Huawei-Secondary-WINS',
  'huawei_service_chg_cmd'   => 'Huawei-Service-Chg-Cmd',
  'huawei_startup_stamp'     => 'Huawei-Startup-Stamp',
  'huawei_subnet_mask'       => 'Huawei-Subnet-Mask',
  'huawei_tariff_switch_int' => 'Huawei-Tariff-Switch-Interval',
  'huawei_transfer_num'      => 'Huawei-Transfer-Num',
  'huawei_transfer_station_' => 'Huawei-Transfer-Station-Id',
  'huawei_tunnel_group_name' => 'Huawei-Tunnel-Group-Name',
  'huawei_tunnel_session_li' => 'Huawei-Tunnel-Session-Limit',
  'huawei_user_multicast_ty' => 'Huawei-User-Multicast-Type',
  'huawei_user_priority'     => 'Huawei-User-Priority',
  'huawei_version'           => 'Huawei-Version',
  'huawei_voip_service_type' => 'Huawei-Voip-Service-Type',
  'huawei_vpn_instance'      => 'Huawei-VPN-Instance',
  'huawei_vsi_name'          => 'Huawei-VSI-Name',
  'huawei_vt_name'           => 'Huawei-VT-Name',
  'huawei_zone_name'         => 'Huawei-Zone-Name',
  'huntgroup_name'           => 'Huntgroup-Name',
  'idle_timeout'             => 'Idle-Timeout',
  'idle_timeout_threshold'   => 'Idle-Timeout-Threshold',
  'igmp_service_profile'     => 'Igmp-Service-Profile',
  'igmp_service_profile_nam' => 'IGMP-Service-Profile-Name',
  'incoming_req_uri'         => 'incoming-req-uri',
  'infonet_account_number'   => 'Infonet-Account-Number',
  'infonet_config'           => 'Infonet-Config',
  'infonet_loginhost_dest'   => 'Infonet-LoginHost-Dest',
  'infonet_mcs_country'      => 'Infonet-MCS-Country',
  'infonet_mcs_off_peak'     => 'Infonet-MCS-Off-Peak',
  'infonet_mcs_overflow'     => 'Infonet-MCS-Overflow',
  'infonet_mcs_port'         => 'Infonet-MCS-Port',
  'infonet_mcs_port_count'   => 'Infonet-MCS-Port-Count',
  'infonet_mcs_region'       => 'Infonet-MCS-Region',
  'infonet_nas_location'     => 'Infonet-NAS-Location',
  'infonet_pool_request'     => 'Infonet-Pool-Request',
  'infonet_proxy'            => 'Infonet-Proxy',
  'infonet_random_ip_pool'   => 'Infonet-Random-IP-Pool',
  'infonet_realm_type'       => 'Infonet-Realm-Type',
  'infonet_surcharge_type'   => 'Infonet-Surcharge-Type',
  'infonet_tunnel_decision_' => 'Infonet-Tunnel-Decision-IP',
  'infonet_type'             => 'Infonet-Type',
  'ingress_filters'          => 'Ingress-Filters',
  'initial_modulation_type'  => 'Initial-Modulation-Type',
  'inner_tunnel_user_name'   => 'Inner-Tunnel-User-Name',
  'ip_address_pool_name'     => 'Ip_Address_Pool_Name',
  'ip_address_pool_namf'     => 'Ip-Address-Pool-Name',
  'ip_host_addr'             => 'Ip_Host_Addr',
  'ip_host_adds'             => 'Ip-Host-Addr',
  'ip_interface'             => 'IP-Interface',
  'ip_interface_name'        => 'IP-Interface-Name',
  'ip_tos_field'             => 'IP_TOS_Field',
  'ip_tos_fiele'             => 'IP-TOS-Field',
  'ipu_ike_auth'             => 'IPU-IKE-Auth',
  'ipu_ike_cmd'              => 'IPU-IKE-Cmd',
  'ipu_ike_conf_name'        => 'IPU-IKE-Conf-Name',
  'ipu_ike_local_addr'       => 'IPU-IKE-Local-Addr',
  'ipu_ike_remote_addr'      => 'IPU-IKE-Remote-Addr',
  'ipu_mip_alg_mode'         => 'IPU-MIP-Alg-Mode',
  'ipu_mip_alg_type'         => 'IPU-MIP-Alg-Type',
  'ipu_mip_key'              => 'IPU-MIP-Key',
  'ipu_mip_replay_prot'      => 'IPU-MIP-Replay-Prot',
  'ipu_mip_spi'              => 'IPU-MIP-Spi',
  'ipv6_6rd_configuration'   => 'IPv6-6rd-Configuration',
  'issanni_interface_name'   => 'Issanni-Interface-Name',
  'issanni_ip_pool_name'     => 'Issanni-IP-Pool-Name',
  'issanni_nat_support'      => 'Issanni-NAT-Support',
  'issanni_nat_type'         => 'Issanni-NAT-Type',
  'issanni_pppoe_motm'       => 'Issanni-PPPoE-MOTM',
  'issanni_pppoe_url'        => 'Issanni-PPPoE-URL',
  'issanni_pri_dns'          => 'Issanni-Pri-DNS',
  'issanni_pri_nbns'         => 'Issanni-Pri-NBNS',
  'issanni_qos_class'        => 'Issanni-QOS-Class',
  'issanni_routing_context'  => 'Issanni-Routing-Context',
  'issanni_sec_dns'          => 'Issanni-Sec-DNS',
  'issanni_sec_nbns'         => 'Issanni-Sec-NBNS',
  'issanni_service'          => 'Issanni-Service',
  'issanni_softflow_templat' => 'Issanni-SoftFlow-Template',
  'issanni_traffic_class'    => 'Issanni-Traffic-Class',
  'issanni_tunnel_name'      => 'Issanni-Tunnel-Name',
  'issanni_tunnel_type'      => 'Issanni-Tunnel-Type',
  'itk_acct_serv_ip'         => 'ITK-Acct-Serv-IP',
  'itk_acct_serv_prot'       => 'ITK-Acct-Serv-Prot',
  'itk_auth_req_type'        => 'ITK-Auth-Req-Type',
  'itk_auth_serv_ip'         => 'ITK-Auth-Serv-IP',
  'itk_auth_serv_prot'       => 'ITK-Auth-Serv-Prot',
  'itk_banner'               => 'ITK-Banner',
  'itk_channel_binding'      => 'ITK-Channel-Binding',
  'itk_ddi'                  => 'ITK-DDI',
  'itk_dest_no'              => 'ITK-Dest-No',
  'itk_dialout_type'         => 'ITK-Dialout-Type',
  'itk_filter_rule'          => 'ITK-Filter-Rule',
  'itk_ftp_auth_ip'          => 'ITK-Ftp-Auth-IP',
  'itk_ip_pool'              => 'ITK-IP-Pool',
  'itk_isdn_prot'            => 'ITK-ISDN-Prot',
  'itk_modem_init_string'    => 'ITK-Modem-Init-String',
  'itk_modem_pool_id'        => 'ITK-Modem-Pool-Id',
  'itk_nas_name'             => 'ITK-NAS-Name',
  'itk_password_prompt'      => 'ITK-Password-Prompt',
  'itk_ppp_auth_type'        => 'ITK-PPP-Auth-Type',
  'itk_ppp_client_server_mo' => 'ITK-PPP-Client-Server-Mode',
  'itk_ppp_compression_prot' => 'ITK-PPP-Compression-Prot',
  'itk_prompt'               => 'ITK-Prompt',
  'itk_provider_id'          => 'ITK-Provider-Id',
  'itk_start_delay'          => 'ITK-Start-Delay',
  'itk_tunnel_ip'            => 'ITK-Tunnel-IP',
  'itk_tunnel_prot'          => 'ITK-Tunnel-Prot',
  'itk_usergroup'            => 'ITK-Usergroup',
  'itk_username'             => 'ITK-Username',
  'itk_username_prompt'      => 'ITK-Username-Prompt',
  'itk_users_default_entry'  => 'ITK-Users-Default-Entry',
  'itk_users_default_pw'     => 'ITK-Users-Default-Pw',
  'itk_welcome_message'      => 'ITK-Welcome-Message',
  'iwf_session'              => 'IWF-Session',
  'jradius_proxy_client'     => 'JRadius-Proxy-Client',
  'jradius_request_id'       => 'JRadius-Request-Id',
  'jradius_session_id'       => 'JRadius-Session-Id',
  'juniper_allow_commands'   => 'Juniper-Allow-Commands',
  'juniper_allow_configurat' => 'Juniper-Allow-Configuration',
  'juniper_apn_name'         => 'Juniper-APN-Name',
  'juniper_configuration_ch' => 'Juniper-Configuration-Change',
  'juniper_deny_commands'    => 'Juniper-Deny-Commands',
  'juniper_deny_configurati' => 'Juniper-Deny-Configuration',
  'juniper_interactive_comm' => 'Juniper-Interactive-Command',
  'juniper_local_user_name'  => 'Juniper-Local-User-Name',
  'juniper_redirect_gw_addr' => 'Juniper-Redirect-GW-Address',
  'juniper_rx_connect_speed' => 'Juniper-Rx-Connect-Speed',
  'juniper_tx_connect_speed' => 'Juniper-Tx-Connect-Speed',
  'juniper_user_permissions' => 'Juniper-User-Permissions',
  'karlnet_turbocell_name'   => 'KarlNet-TurboCell-Name',
  'karlnet_turbocell_opmode' => 'KarlNet-TurboCell-OpMode',
  'karlnet_turbocell_opstat' => 'KarlNet-TurboCell-OpState',
  'karlnet_turbocell_txrate' => 'KarlNet-TurboCell-TxRate',
  'kineto_billing_rate_indi' => 'Kineto-Billing-Rate-Indicator',
  'kineto_hand_in_control_f' => 'Kineto-Hand-In-Control-Flag',
  'kineto_hand_out_control_' => 'Kineto-Hand-Out-Control-Flag',
  'kineto_location_key'      => 'Kineto-Location-Key',
  'kineto_service_area_code' => 'Kineto-Service-Area-Code',
  'kineto_uma_3g_cell_ident' => 'Kineto-UMA-3G-Cell-Identity',
  'kineto_uma_ap_location'   => 'Kineto-UMA-AP-Location',
  'kineto_uma_ap_radio_iden' => 'Kineto-UMA-AP-Radio-Identity',
  'kineto_uma_ap_service_na' => 'Kineto-UMA-AP-Service-Name',
  'kineto_uma_cell_identity' => 'Kineto-UMA-Cell-Identity',
  'kineto_uma_classmark'     => 'Kineto-UMA-Classmark',
  'kineto_uma_coverage_indi' => 'Kineto-UMA-Coverage-Indicator',
  'kineto_uma_discovery_rej' => 'Kineto-UMA-Discovery-Reject-Cause',
  'kineto_uma_geographical_' => 'Kineto-UMA-Geographical-Location',
  'kineto_uma_location_area' => 'Kineto-UMA-Location-Area-Identification',
  'kineto_uma_location_blac' => 'Kineto-UMA-Location-Blacklist-Indicator',
  'kineto_uma_location_stat' => 'Kineto-UMA-Location-Status',
  'kineto_uma_ms_radio_iden' => 'Kineto-UMA-MS-Radio-Identity',
  'kineto_uma_redirection_c' => 'Kineto-UMA-Redirection-Counter',
  'kineto_uma_register_reje' => 'Kineto-UMA-Register-Reject-Cause',
  'kineto_uma_registration_' => 'Kineto-UMA-Registration-Indicators',
  'kineto_uma_release_indic' => 'Kineto-UMA-Release-Indicator',
  'kineto_uma_required_uma_' => 'Kineto-UMA-Required-UMA-Services',
  'kineto_uma_routing_area_' => 'Kineto-UMA-Routing-Area-Code',
  'kineto_uma_rrc_state'     => 'Kineto-UMA-RRC-State',
  'kineto_uma_service_zone_' => 'Kineto-UMA-Service-Zone-Information',
  'kineto_uma_serving_unc_t' => 'Kineto-UMA-Serving-UNC-Table-Indicator',
  'kineto_uma_sgw_fqdn'      => 'Kineto-UMA-SGW-FQDN',
  'kineto_uma_sgw_ip_addres' => 'Kineto-UMA-SGW-IP-Address',
  'kineto_uma_uma_plmn_list' => 'Kineto-UMA-UMA-PLMN-List',
  'kineto_uma_unc_fqdn'      => 'Kineto-UMA-UNC-FQDN',
  'kineto_uma_unc_ip_addres' => 'Kineto-UMA-UNC-IP-Address',
  'kineto_uma_utran_cell_id' => 'Kineto-UMA-Utran-Cell-Identity',
  'kineto_up_client_remote_' => 'Kineto-UP-Client-Remote-Address',
  'kineto_urr_transaction_t' => 'Kineto-URR-Transaction-Type',
  'kw_hnb_cell_access_mode'  => 'KW-HNB-CELL-ACCESS-MODE',
  'kw_hnb_cell_id'           => 'KW-HNB-CELL-ID',
  'kw_hnb_csg_id'            => 'KW-HNB-CSG-ID',
  'kw_hnb_identity'          => 'KW-HNB-IDENTITY',
  'kw_hnb_lac'               => 'KW-HNB-LAC',
  'kw_hnb_loc_info_altitude' => 'KW-HNB-LOC-INFO-ALTITUDE-Direction',
  'kw_hnb_loc_info_geo_coor' => 'KW-HNB-LOC-INFO-GEO-COORDINATES',
  'kw_hnb_loc_info_geran_ce' => 'KW-HNB-LOC-INFO-GERAN-CELL-ID',
  'kw_hnb_loc_info_ip_addre' => 'KW-HNB-LOC-INFO-IP-ADDRESS',
  'kw_hnb_loc_info_macro_co' => 'KW-HNB-LOC-INFO-MACRO-COVERAGE-IND',
  'kw_hnb_loc_info_utran_ce' => 'KW-HNB-LOC-INFO-UTRAN-CELL-ID',
  'kw_hnb_location_area_ind' => 'KW-HNB-LOCATION-AREA-IND',
  'kw_hnb_location_blacklis' => 'KW-HNB-LOCATION-BLACKLIST-IND',
  'kw_hnb_plmn_id'           => 'KW-HNB-PLMN-ID',
  'kw_hnb_rac'               => 'KW-HNB-RAC',
  'kw_hnb_remote_address'    => 'KW-HNB-REMOTE-ADDRESS',
  'kw_hnb_sac'               => 'KW-HNB-SAC',
  'kw_iuh_billing_rate_indi' => 'KW-IUH-BILLING-RATE-INDICATOR',
  'kw_iuh_message_type'      => 'KW-IUH-MESSAGE-TYPE',
  'kw_registration_reject_c' => 'KW-REGISTRATION-REJECT-CAUSE',
  'kw_ue_capabilities'       => 'KW-UE-Capabilities',
  'kw_ue_membership_status'  => 'KW-UE-MEMBERSHIP-STATUS',
  'lac_port'                 => 'LAC_Port',
  'lac_port_type'            => 'LAC_Port_Type',
  'lac_port_typf'            => 'LAC-Port-Type',
  'lac_poru'                 => 'LAC-Port',
  'lac_real_port'            => 'LAC_Real_Port',
  'lac_real_port_type'       => 'LAC_Real_Port_Type',
  'lac_real_port_typf'       => 'LAC-Real-Port-Type',
  'lac_real_poru'            => 'LAC-Real-Port',
  'lcs_account_end'          => 'LCS-Account-End',
  'lcs_comment'              => 'LCS-Comment',
  'lcs_mac_address'          => 'LCS-Mac-Address',
  'lcs_pbspotusername'       => 'LCS-PbSpotUserName',
  'lcs_redirection_url'      => 'LCS-Redirection-URL',
  'lcs_rxratelimit'          => 'LCS-RxRateLimit',
  'lcs_traffic_limit'        => 'LCS-Traffic-Limit',
  'lcs_txratelimit'          => 'LCS-TxRateLimit',
  'lcs_wpa_passphrase'       => 'LCS-WPA-Passphrase',
  'ldap_group'               => 'Ldap-Group',
  'ldap_userdn'              => 'Ldap-UserDn',
  'le_admin_group'           => 'LE-Admin-Group',
  'le_advice_of_charge'      => 'LE-Advice-of-Charge',
  'le_connect_detail'        => 'LE-Connect-Detail',
  'le_ip_gateway'            => 'LE-IP-Gateway',
  'le_ip_pool'               => 'LE-IP-Pool',
  'le_ipsec_active_profile'  => 'LE-IPSec-Active-Profile',
  'le_ipsec_deny_action'     => 'LE-IPSec-Deny-Action',
  'le_ipsec_log_options'     => 'LE-IPSec-Log-Options',
  'le_ipsec_outsource_profi' => 'LE-IPSec-Outsource-Profile',
  'le_ipsec_passive_profile' => 'LE-IPSec-Passive-Profile',
  'le_modem_info'            => 'LE-Modem-Info',
  'le_multicast_client'      => 'LE-Multicast-Client',
  'le_nat_inmap'             => 'LE-NAT-Inmap',
  'le_nat_log_options'       => 'LE-NAT-Log-Options',
  'le_nat_other_session_tim' => 'LE-NAT-Other-Session-Timeout',
  'le_nat_outmap'            => 'LE-NAT-Outmap',
  'le_nat_outsource_inmap'   => 'LE-NAT-Outsource-Inmap',
  'le_nat_outsource_outmap'  => 'LE-NAT-Outsource-Outmap',
  'le_nat_sess_dir_fail_act' => 'LE-NAT-Sess-Dir-Fail-Action',
  'le_nat_tcp_session_timeo' => 'LE-NAT-TCP-Session-Timeout',
  'le_terminate_detail'      => 'LE-Terminate-Detail',
  'li_action'                => 'LI-Action',
  'li_id'                    => 'LI-Id',
  'li_md_address'            => 'LI-Md-Address',
  'li_md_port'               => 'LI-Md-Port',
  'li_profile'               => 'LI-Profile',
  'lm_password'              => 'LM-Password',
  'load_balance_key'         => 'Load-Balance-Key',
  'local_web_acct_duration'  => 'Local-Web-Acct-Duration',
  'local_web_acct_interim_r' => 'Local-Web-Acct-Interim-Rx-Bytes',
  'local_web_acct_interim_s' => 'Local-Web-Acct-Interim-Rx-Gigawords',
  'local_web_acct_interim_t' => 'Local-Web-Acct-Interim-Tx-Bytes',
  'local_web_acct_interim_u' => 'Local-Web-Acct-Interim-Tx-Gigawords',
  'local_web_acct_interim_v' => 'Local-Web-Acct-Interim-Tx-Mgmt',
  'local_web_acct_interim_w' => 'Local-Web-Acct-Interim-Rx-Mgmt',
  'local_web_acct_rx_mgmt'   => 'Local-Web-Acct-Rx-Mgmt',
  'local_web_acct_time'      => 'Local-Web-Acct-Time',
  'local_web_acct_tx_mgmt'   => 'Local-Web-Acct-Tx-Mgmt',
  'local_web_border_router'  => 'Local-Web-Border-Router',
  'local_web_client_ip'      => 'Local-Web-Client-Ip',
  'local_web_reauth_counter' => 'Local-Web-Reauth-Counter',
  'local_web_rx_limit'       => 'Local-Web-Rx-Limit',
  'local_web_tx_limit'       => 'Local-Web-Tx-Limit',
  'location_capable'         => 'Location-Capable',
  'location_data'            => 'Location-Data',
  'location_information'     => 'Location-Information',
  'login_callback_number'    => 'Login-Callback-Number',
  'login_host'               => 'Login-Host',
  'login_ip_host'            => 'Login-IP-Host',
  'login_ipv6_host'          => 'Login-IPv6-Host',
  'login_lat_group'          => 'Login-LAT-Group',
  'login_lat_node'           => 'Login-LAT-Node',
  'login_lat_port'           => 'Login-LAT-Port',
  'login_lat_service'        => 'Login-LAT-Service',
  'login_port'               => 'Login-Port',
  'login_service'            => 'Login-Service',
  'login_tcp_port'           => 'Login-TCP-Port',
  'login_time'               => 'Login-Time',
  'lucent_absolute_time'     => 'Lucent-Absolute-Time',
  'lucent_access_intercept_' => 'Lucent-Access-Intercept-LEA',
  'lucent_access_intercepta' => 'Lucent-Access-Intercept-Log',
  'lucent_add_seconds'       => 'Lucent-Add-Seconds',
  'lucent_appletalk_peer_mo' => 'Lucent-Appletalk-Peer-Mode',
  'lucent_appletalk_route'   => 'Lucent-Appletalk-Route',
  'lucent_ara_pw'            => 'Lucent-Ara-PW',
  'lucent_assign_ip_client'  => 'Lucent-Assign-IP-Client',
  'lucent_assign_ip_global_' => 'Lucent-Assign-IP-Global-Pool',
  'lucent_assign_ip_pool'    => 'Lucent-Assign-IP-Pool',
  'lucent_assign_ip_server'  => 'Lucent-Assign-IP-Server',
  'lucent_at_answer_string'  => 'Lucent-AT-Answer-String',
  'lucent_atm_circuit_name'  => 'Lucent-ATM-Circuit-Name',
  'lucent_atm_connect_group' => 'Lucent-ATM-Connect-Group',
  'lucent_atm_connect_vci'   => 'Lucent-ATM-Connect-Vci',
  'lucent_atm_connect_vpi'   => 'Lucent-ATM-Connect-Vpi',
  'lucent_atm_direct'        => 'Lucent-ATM-Direct',
  'lucent_atm_direct_profil' => 'Lucent-ATM-Direct-Profile',
  'lucent_atm_fault_managem' => 'Lucent-ATM-Fault-Management',
  'lucent_atm_group'         => 'Lucent-ATM-Group',
  'lucent_atm_loopback_cell' => 'Lucent-ATM-Loopback-Cell-Loss',
  'lucent_atm_vci'           => 'Lucent-ATM-Vci',
  'lucent_atm_vpi'           => 'Lucent-ATM-Vpi',
  'lucent_auth_delay'        => 'Lucent-Auth-Delay',
  'lucent_auth_type'         => 'Lucent-Auth-Type',
  'lucent_authen_alias'      => 'Lucent-Authen-Alias',
  'lucent_backup'            => 'Lucent-Backup',
  'lucent_bacp_enable'       => 'Lucent-BACP-Enable',
  'lucent_base_channel_coun' => 'Lucent-Base-Channel-Count',
  'lucent_bi_directional_au' => 'Lucent-Bi-Directional-Auth',
  'lucent_billing_number'    => 'Lucent-Billing-Number',
  'lucent_bir_bridge_group'  => 'Lucent-BIR-Bridge-Group',
  'lucent_bir_enable'        => 'Lucent-BIR-Enable',
  'lucent_bir_proxy'         => 'Lucent-BIR-Proxy',
  'lucent_bridge'            => 'Lucent-Bridge',
  'lucent_bridge_address'    => 'Lucent-Bridge-Address',
  'lucent_bridge_non_pppoe'  => 'Lucent-Bridge-Non-PPPoE',
  'lucent_cache_refresh'     => 'Lucent-Cache-Refresh',
  'lucent_cache_time'        => 'Lucent-Cache-Time',
  'lucent_call_attempt_limi' => 'Lucent-Call-Attempt-Limit',
  'lucent_call_block_durati' => 'Lucent-Call-Block-Duration',
  'lucent_call_by_call'      => 'Lucent-Call-By-Call',
  'lucent_call_direction'    => 'Lucent-Call-Direction',
  'lucent_call_filter'       => 'Lucent-Call-Filter',
  'lucent_call_type'         => 'Lucent-Call-Type',
  'lucent_callback'          => 'Lucent-Callback',
  'lucent_callback_delay'    => 'Lucent-Callback-Delay',
  'lucent_calling_id_number' => 'Lucent-Calling-Id-Numbering-Plan',
  'lucent_calling_id_presen' => 'Lucent-Calling-Id-Presentation',
  'lucent_calling_id_screen' => 'Lucent-Calling-Id-Screening',
  'lucent_calling_id_type_o' => 'Lucent-Calling-Id-Type-Of-Number',
  'lucent_calling_subaddres' => 'Lucent-Calling-Subaddress',
  'lucent_cbcp_delay'        => 'Lucent-CBCP-Delay',
  'lucent_cbcp_enable'       => 'Lucent-CBCP-Enable',
  'lucent_cbcp_mode'         => 'Lucent-CBCP-Mode',
  'lucent_cbcp_trunk_group'  => 'Lucent-CBCP-Trunk-Group',
  'lucent_cir_timer'         => 'Lucent-CIR-Timer',
  'lucent_ckt_type'          => 'Lucent-Ckt-Type',
  'lucent_client_assign_dns' => 'Lucent-Client-Assign-DNS',
  'lucent_client_assign_win' => 'Lucent-Client-Assign-WINS',
  'lucent_client_gateway'    => 'Lucent-Client-Gateway',
  'lucent_client_primary_dn' => 'Lucent-Client-Primary-DNS',
  'lucent_client_primary_wi' => 'Lucent-Client-Primary-WINS',
  'lucent_client_secondary_' => 'Lucent-Client-Secondary-WINS',
  'lucent_client_secondarya' => 'Lucent-Client-Secondary-DNS',
  'lucent_compression_proto' => 'Lucent-Compression-Protocol',
  'lucent_configured_rate_d' => 'Lucent-Configured-Rate-Dn-Min',
  'lucent_configured_rate_e' => 'Lucent-Configured-Rate-Dn-Max',
  'lucent_configured_rate_u' => 'Lucent-Configured-Rate-Up-Min',
  'lucent_configured_rate_v' => 'Lucent-Configured-Rate-Up-Max',
  'lucent_connect_progress'  => 'Lucent-Connect-Progress',
  'lucent_connection_time'   => 'Lucent-Connection-Time',
  'lucent_cumulative_hold_t' => 'Lucent-Cumulative-Hold-Time',
  'lucent_current_line_qual' => 'Lucent-Current-Line-Quality',
  'lucent_current_recv_leve' => 'Lucent-Current-Recv-Level',
  'lucent_current_snr'       => 'Lucent-Current-SNR',
  'lucent_current_xmit_leve' => 'Lucent-Current-Xmit-Level',
  'lucent_data_filter'       => 'Lucent-Data-Filter',
  'lucent_data_rate'         => 'Lucent-Data-Rate',
  'lucent_data_svc'          => 'Lucent-Data-Svc',
  'lucent_dba_monitor'       => 'Lucent-DBA-Monitor',
  'lucent_dec_channel_count' => 'Lucent-Dec-Channel-Count',
  'lucent_destination_nas_p' => 'Lucent-Destination-NAS-Port',
  'lucent_dhcp_maximum_leas' => 'Lucent-DHCP-Maximum-Leases',
  'lucent_dhcp_pool_number'  => 'Lucent-DHCP-Pool-Number',
  'lucent_dhcp_reply'        => 'Lucent-DHCP-Reply',
  'lucent_dial_number'       => 'Lucent-Dial-Number',
  'lucent_dialed_number'     => 'Lucent-Dialed-Number',
  'lucent_dialout_allowed'   => 'Lucent-Dialout-Allowed',
  'lucent_disconnect_cause'  => 'Lucent-Disconnect-Cause',
  'lucent_dropped_octets'    => 'Lucent-Dropped-Octets',
  'lucent_dropped_packets'   => 'Lucent-Dropped-Packets',
  'lucent_ds3_ccvs'          => 'Lucent-Ds3-CCVs',
  'lucent_ds3_cess'          => 'Lucent-Ds3-CESs',
  'lucent_ds3_csess'         => 'Lucent-Ds3-CSESs',
  'lucent_ds3_f_bit_err'     => 'Lucent-Ds3-F-Bit-Err',
  'lucent_ds3_lcvs'          => 'Lucent-Ds3-LCVs',
  'lucent_ds3_less'          => 'Lucent-Ds3-LESs',
  'lucent_ds3_p_bit_err'     => 'Lucent-Ds3-P-Bit-Err',
  'lucent_ds3_pcvs'          => 'Lucent-Ds3-PCVs',
  'lucent_ds3_pess'          => 'Lucent-Ds3-PESs',
  'lucent_ds3_psess'         => 'Lucent-Ds3-PSESs',
  'lucent_ds3_sefs'          => 'Lucent-Ds3-SEFs',
  'lucent_ds3_uass'          => 'Lucent-Ds3-UASs',
  'lucent_dsl_atuc_chan_cor' => 'Lucent-Dsl-Atuc-Chan-Corrected-Blks',
  'lucent_dsl_atuc_chan_rec' => 'Lucent-Dsl-Atuc-Chan-Recd-Blks',
  'lucent_dsl_atuc_chan_unc' => 'Lucent-Dsl-Atuc-Chan-Uncorrect-Blks',
  'lucent_dsl_atuc_chan_xmi' => 'Lucent-Dsl-Atuc-Chan-Xmit-Blks',
  'lucent_dsl_atuc_curr_atn' => 'Lucent-Dsl-Atuc-Curr-Atn-Up',
  'lucent_dsl_atuc_curr_ato' => 'Lucent-Dsl-Atuc-Curr-Atn-Dn',
  'lucent_dsl_atuc_curr_att' => 'Lucent-Dsl-Atuc-Curr-Attainable-Rate-Dn',
  'lucent_dsl_atuc_curr_atu' => 'Lucent-Dsl-Atuc-Curr-Attainable-Rate-Up',
  'lucent_dsl_atuc_curr_out' => 'Lucent-Dsl-Atuc-Curr-Output-Pwr-Dn',
  'lucent_dsl_atuc_curr_ouu' => 'Lucent-Dsl-Atuc-Curr-Output-Pwr-Up',
  'lucent_dsl_atuc_curr_snr' => 'Lucent-Dsl-Atuc-Curr-Snr-Mgn-Up',
  'lucent_dsl_atuc_curr_sns' => 'Lucent-Dsl-Atuc-Curr-Snr-Mgn-D',
  'lucent_dsl_atuc_perf_ess' => 'Lucent-Dsl-Atuc-Perf-ESs',
  'lucent_dsl_atuc_perf_ini' => 'Lucent-Dsl-Atuc-Perf-Inits',
  'lucent_dsl_atuc_perf_lof' => 'Lucent-Dsl-Atuc-Perf-Lofs',
  'lucent_dsl_atuc_perf_lol' => 'Lucent-Dsl-Atuc-Perf-Lols',
  'lucent_dsl_atuc_perf_los' => 'Lucent-Dsl-Atuc-Perf-Loss',
  'lucent_dsl_atuc_perf_lpr' => 'Lucent-Dsl-Atuc-Perf-Lprs',
  'lucent_dsl_atuc_ps_faile' => 'Lucent-Dsl-Atuc-PS-Failed-Fast-Retrains',
  'lucent_dsl_atuc_ps_fast_' => 'Lucent-Dsl-Atuc-PS-Fast-Retrains',
  'lucent_dsl_cir_recv_limi' => 'Lucent-Dsl-CIR-Recv-Limit',
  'lucent_dsl_cir_xmit_limi' => 'Lucent-Dsl-CIR-Xmit-Limit',
  'lucent_dsl_code_violatio' => 'Lucent-Dsl-Code-Violations',
  'lucent_dsl_curr_dn_rate'  => 'Lucent-Dsl-Curr-Dn-Rate',
  'lucent_dsl_curr_up_rate'  => 'Lucent-Dsl-Curr-Up-Rate',
  'lucent_dsl_downstream_li' => 'Lucent-Dsl-Downstream-Limit',
  'lucent_dsl_if_index'      => 'Lucent-Dsl-If-Index',
  'lucent_dsl_oper_status'   => 'Lucent-Dsl-Oper-Status',
  'lucent_dsl_physical_chan' => 'Lucent-Dsl-Physical-Channel',
  'lucent_dsl_physical_line' => 'Lucent-Dsl-Physical-Line',
  'lucent_dsl_physical_slot' => 'Lucent-Dsl-Physical-Slot',
  'lucent_dsl_rate_mode'     => 'Lucent-Dsl-Rate-Mode',
  'lucent_dsl_rate_type'     => 'Lucent-Dsl-Rate-Type',
  'lucent_dsl_related_if_in' => 'Lucent-Dsl-Related-If-Index',
  'lucent_dsl_related_port'  => 'Lucent-Dsl-Related-Port',
  'lucent_dsl_related_slot'  => 'Lucent-Dsl-Related-Slot',
  'lucent_dsl_sparing_role'  => 'Lucent-Dsl-Sparing-Role',
  'lucent_dsl_upstream_limi' => 'Lucent-Dsl-Upstream-Limit',
  'lucent_egress_enabled'    => 'Lucent-Egress-Enabled',
  'lucent_endpoint_disc'     => 'Lucent-Endpoint-Disc',
  'lucent_error_correction_' => 'Lucent-Error-Correction-Protocol',
  'lucent_event_type'        => 'Lucent-Event-Type',
  'lucent_expect_callback'   => 'Lucent-Expect-Callback',
  'lucent_fcp_parameter'     => 'Lucent-FCP-Parameter',
  'lucent_filter'            => 'Lucent-Filter',
  'lucent_filter_required'   => 'Lucent-Filter-Required',
  'lucent_first_dest'        => 'Lucent-First-Dest',
  'lucent_first_level_user'  => 'Lucent-First-Level-User',
  'lucent_force_56'          => 'Lucent-Force-56',
  'lucent_fr05_enabled'      => 'Lucent-Fr05-Enabled',
  'lucent_fr05_traffic_shap' => 'Lucent-Fr05-Traffic-Shaper',
  'lucent_fr05_vci'          => 'Lucent-Fr05-Vci',
  'lucent_fr05_vpi'          => 'Lucent-Fr05-Vpi',
  'lucent_fr_08_mode'        => 'Lucent-FR-08-Mode',
  'lucent_fr_circuit_name'   => 'Lucent-FR-Circuit-Name',
  'lucent_fr_dce_n392'       => 'Lucent-FR-DCE-N392',
  'lucent_fr_dce_n393'       => 'Lucent-FR-DCE-N393',
  'lucent_fr_direct'         => 'Lucent-FR-Direct',
  'lucent_fr_direct_dlci'    => 'Lucent-FR-Direct-DLCI',
  'lucent_fr_direct_profile' => 'Lucent-FR-Direct-Profile',
  'lucent_fr_dlci'           => 'Lucent-FR-DLCI',
  'lucent_fr_dte_n392'       => 'Lucent-FR-DTE-N392',
  'lucent_fr_dte_n393'       => 'Lucent-FR-DTE-N393',
  'lucent_fr_link_mgt'       => 'Lucent-FR-Link-Mgt',
  'lucent_fr_link_status_dl' => 'Lucent-FR-Link-Status-DLCI',
  'lucent_fr_linkup'         => 'Lucent-FR-LinkUp',
  'lucent_fr_n391'           => 'Lucent-FR-N391',
  'lucent_fr_nailed_grp'     => 'Lucent-FR-Nailed-Grp',
  'lucent_fr_profile_name'   => 'Lucent-FR-Profile-Name',
  'lucent_fr_svc_addr'       => 'Lucent-FR-SVC-Addr',
  'lucent_fr_t391'           => 'Lucent-FR-T391',
  'lucent_fr_t392'           => 'Lucent-FR-T392',
  'lucent_fr_type'           => 'Lucent-FR-Type',
  'lucent_ft1_caller'        => 'Lucent-FT1-Caller',
  'lucent_global_call_id'    => 'Lucent-Global-Call-Id',
  'lucent_group'             => 'Lucent-Group',
  'lucent_h323_conference_i' => 'Lucent-H323-Conference-Id',
  'lucent_h323_destination_' => 'Lucent-H323-Destination-NAS-ID',
  'lucent_h323_dialed_time'  => 'Lucent-H323-Dialed-Time',
  'lucent_h323_gatekeeper'   => 'Lucent-H323-Gatekeeper',
  'lucent_handle_ipx'        => 'Lucent-Handle-IPX',
  'lucent_history_weigh_typ' => 'Lucent-History-Weigh-Type',
  'lucent_home_agent_ip_add' => 'Lucent-Home-Agent-IP-Addr',
  'lucent_home_agent_passwo' => 'Lucent-Home-Agent-Password',
  'lucent_home_agent_udp_po' => 'Lucent-Home-Agent-UDP-Port',
  'lucent_home_network_name' => 'Lucent-Home-Network-Name',
  'lucent_host_info'         => 'Lucent-Host-Info',
  'lucent_http_redirect_por' => 'Lucent-Http-Redirect-Port',
  'lucent_http_redirect_url' => 'Lucent-Http-Redirect-URL',
  'lucent_idle_limit'        => 'Lucent-Idle-Limit',
  'lucent_if_netmask'        => 'Lucent-IF-Netmask',
  'lucent_inc_channel_count' => 'Lucent-Inc-Channel-Count',
  'lucent_inter_arrival_jit' => 'Lucent-Inter-Arrival-Jitter',
  'lucent_ip_direct'         => 'Lucent-IP-Direct',
  'lucent_ip_dscp'           => 'Lucent-IP-DSCP',
  'lucent_ip_outgoing_dscp'  => 'Lucent-IP-OUTGOING-DSCP',
  'lucent_ip_outgoing_tos'   => 'Lucent-IP-OUTGOING-TOS',
  'lucent_ip_outgoing_tos_p' => 'Lucent-IP-OUTGOING-TOS-Precedence',
  'lucent_ip_pool_chaining'  => 'Lucent-IP-Pool-Chaining',
  'lucent_ip_pool_definitio' => 'Lucent-IP-Pool-Definition',
  'lucent_ip_source_if'      => 'Lucent-IP-Source-If',
  'lucent_ip_tos'            => 'Lucent-IP-TOS',
  'lucent_ip_tos_apply_to'   => 'Lucent-IP-TOS-Apply-To',
  'lucent_ip_tos_precedence' => 'Lucent-IP-TOS-Precedence',
  'lucent_ipsec_profile'     => 'Lucent-IPSEC-Profile',
  'lucent_ipx_alias'         => 'Lucent-IPX-Alias',
  'lucent_ipx_header_compre' => 'Lucent-IPX-Header-Compression',
  'lucent_ipx_node_addr'     => 'Lucent-IPX-Node-Addr',
  'lucent_ipx_peer_mode'     => 'Lucent-IPX-Peer-Mode',
  'lucent_ipx_route'         => 'Lucent-IPX-Route',
  'lucent_l2tp_dci_directio' => 'Lucent-L2TP-DCI-Direction',
  'lucent_l2tp_dci_disconne' => 'Lucent-L2TP-DCI-Disconnect-Code',
  'lucent_l2tp_dci_message'  => 'Lucent-L2TP-DCI-Message',
  'lucent_l2tp_dci_protocol' => 'Lucent-L2TP-DCI-Protocol-Number',
  'lucent_l2tp_disconnect_s' => 'Lucent-L2TP-Disconnect-Scenario',
  'lucent_l2tp_peer_connect' => 'Lucent-L2TP-Peer-Connect-Progress',
  'lucent_l2tp_peer_disconn' => 'Lucent-L2TP-Peer-Disconnect-Cause',
  'lucent_l2tp_q931_advisor' => 'Lucent-L2TP-Q931-Advisory-Message',
  'lucent_l2tp_q931_cause_c' => 'Lucent-L2TP-Q931-Cause-Code',
  'lucent_l2tp_q931_cause_m' => 'Lucent-L2TP-Q931-Cause-Message',
  'lucent_l2tp_rc_error_cod' => 'Lucent-L2TP-RC-Error-Code',
  'lucent_l2tp_rc_error_mes' => 'Lucent-L2TP-RC-Error-Message',
  'lucent_l2tp_rc_result_co' => 'Lucent-L2TP-RC-Result-Code',
  'lucent_lcp_keepalive_mis' => 'Lucent-LCP-Keepalive-Missed-Limit',
  'lucent_lcp_keepalive_per' => 'Lucent-LCP-Keepalive-Period',
  'lucent_line_type'         => 'Lucent-Line-Type',
  'lucent_link_compression'  => 'Lucent-Link-Compression',
  'lucent_local_retrain_req' => 'Lucent-Local-Retrain-Requested',
  'lucent_max_recv_rate'     => 'Lucent-Max-Recv-Rate',
  'lucent_max_rtp_delay'     => 'Lucent-Max-RTP-Delay',
  'lucent_max_shared_users'  => 'Lucent-Max-Shared-Users',
  'lucent_max_snr'           => 'Lucent-Max-SNR',
  'lucent_max_xmit_rate'     => 'Lucent-Max-Xmit-Rate',
  'lucent_maximum_call_dura' => 'Lucent-Maximum-Call-Duration',
  'lucent_maximum_channels'  => 'Lucent-Maximum-Channels',
  'lucent_maximum_time'      => 'Lucent-Maximum-Time',
  'lucent_menu_item'         => 'Lucent-Menu-Item',
  'lucent_menu_selector'     => 'Lucent-Menu-Selector',
  'lucent_metric'            => 'Lucent-Metric',
  'lucent_min_recv_rate'     => 'Lucent-Min-Recv-Rate',
  'lucent_min_snr'           => 'Lucent-Min-SNR',
  'lucent_min_xmit_rate'     => 'Lucent-Min-Xmit-Rate',
  'lucent_minimum_channels'  => 'Lucent-Minimum-Channels',
  'lucent_modem_disconnect_' => 'Lucent-Modem-Disconnect-Reason',
  'lucent_modem_modulation'  => 'Lucent-Modem-Modulation',
  'lucent_modem_portno'      => 'Lucent-Modem-PortNo',
  'lucent_modem_shelfno'     => 'Lucent-Modem-ShelfNo',
  'lucent_modem_slotno'      => 'Lucent-Modem-SlotNo',
  'lucent_modulation'        => 'Lucent-Modulation',
  'lucent_moh_timeout'       => 'Lucent-MOH-Timeout',
  'lucent_mpp_idle_percent'  => 'Lucent-MPP-Idle-Percent',
  'lucent_mtu'               => 'Lucent-MTU',
  'lucent_multi_packet_sepa' => 'Lucent-Multi-Packet-Separator',
  'lucent_multicast_client'  => 'Lucent-Multicast-Client',
  'lucent_multicast_filter_' => 'Lucent-Multicast-Filter-Active',
  'lucent_multicast_filtera' => 'Lucent-Multicast-Filter-Address',
  'lucent_multicast_gleave_' => 'Lucent-Multicast-GLeave-Delay',
  'lucent_multicast_max_gro' => 'Lucent-Multicast-Max-Groups',
  'lucent_multicast_rate_li' => 'Lucent-Multicast-Rate-Limit',
  'lucent_multicast_service' => 'Lucent-Multicast-Service-Profile-Name',
  'lucent_multicast_servicf' => 'Lucent-Multicast-Service-Name',
  'lucent_multicast_servicg' => 'Lucent-Multicast-Service-Active',
  'lucent_multicast_servich' => 'Lucent-Multicast-Service-Snmp-Trap',
  'lucent_multicast_servici' => 'Lucent-Multicast-Service-Filter-Type',
  'lucent_multilink_id'      => 'Lucent-Multilink-ID',
  'lucent_nas_port_format'   => 'Lucent-NAS-Port-Format',
  'lucent_netware_timeout'   => 'Lucent-Netware-timeout',
  'lucent_no_high_prio_pkt_' => 'Lucent-No-High-Prio-Pkt-Duratio',
  'lucent_num_in_multilink'  => 'Lucent-Num-In-Multilink',
  'lucent_num_moh_sessions'  => 'Lucent-Num-Moh-Sessions',
  'lucent_number_sessions'   => 'Lucent-Number-Sessions',
  'lucent_numbering_plan_id' => 'Lucent-Numbering-Plan-ID',
  'lucent_owner_ip_addr'     => 'Lucent-Owner-IP-Addr',
  'lucent_packet_classifica' => 'Lucent-Packet-Classification',
  'lucent_port_redir_portnu' => 'Lucent-Port-Redir-Portnum',
  'lucent_port_redir_protoc' => 'Lucent-Port-Redir-Protocol',
  'lucent_port_redir_server' => 'Lucent-Port-Redir-Server',
  'lucent_ppp_address'       => 'Lucent-PPP-Address',
  'lucent_ppp_async_map'     => 'Lucent-PPP-Async-Map',
  'lucent_ppp_circuit'       => 'Lucent-PPP-Circuit',
  'lucent_ppp_circuit_name'  => 'Lucent-PPP-Circuit-Name',
  'lucent_ppp_vj_1172'       => 'Lucent-PPP-VJ-1172',
  'lucent_ppp_vj_slot_comp'  => 'Lucent-PPP-VJ-Slot-Comp',
  'lucent_pppoe_enable'      => 'Lucent-PPPoE-Enable',
  'lucent_pre_input_octets'  => 'Lucent-Pre-Input-Octets',
  'lucent_pre_input_packets' => 'Lucent-Pre-Input-Packets',
  'lucent_pre_output_octets' => 'Lucent-Pre-Output-Octets',
  'lucent_pre_output_packet' => 'Lucent-Pre-Output-Packets',
  'lucent_preempt_limit'     => 'Lucent-Preempt-Limit',
  'lucent_presession_time'   => 'Lucent-PreSession-Time',
  'lucent_pri_number_type'   => 'Lucent-PRI-Number-Type',
  'lucent_primary_home_agen' => 'Lucent-Primary-Home-Agent',
  'lucent_priority_for_ppp'  => 'Lucent-Priority-For-PPP',
  'lucent_private_route'     => 'Lucent-Private-Route',
  'lucent_private_route_req' => 'Lucent-Private-Route-Required',
  'lucent_private_route_tab' => 'Lucent-Private-Route-Table-ID',
  'lucent_pw_lifetime'       => 'Lucent-PW-Lifetime',
  'lucent_pw_warntime'       => 'Lucent-PW-Warntime',
  'lucent_qos_downstream'    => 'Lucent-QOS-Downstream',
  'lucent_qos_upstream'      => 'Lucent-QOS-Upstream',
  'lucent_quickconnect_atte' => 'Lucent-QuickConnect-Attempted',
  'lucent_receive_secret'    => 'Lucent-Receive-Secret',
  'lucent_recv_name'         => 'Lucent-Recv-Name',
  'lucent_recv_symbol_rate'  => 'Lucent-Recv-Symbol-Rate',
  'lucent_redirect_number'   => 'Lucent-Redirect-Number',
  'lucent_remote_addr'       => 'Lucent-Remote-Addr',
  'lucent_remote_fw'         => 'Lucent-Remote-FW',
  'lucent_remote_retrain_re' => 'Lucent-Remote-Retrain-Requested',
  'lucent_remove_seconds'    => 'Lucent-Remove-Seconds',
  'lucent_require_auth'      => 'Lucent-Require-Auth',
  'lucent_retrain_reason'    => 'Lucent-Retrain-Reason',
  'lucent_reverse_path_chec' => 'Lucent-Reverse-Path-Check',
  'lucent_route_appletalk'   => 'Lucent-Route-Appletalk',
  'lucent_route_ip'          => 'Lucent-Route-IP',
  'lucent_route_ipx'         => 'Lucent-Route-IPX',
  'lucent_route_preference'  => 'Lucent-Route-Preference',
  'lucent_rtp_local_bytes_s' => 'Lucent-Rtp-Local-Bytes-Sent',
  'lucent_rtp_local_delay_m' => 'Lucent-Rtp-Local-Delay-Minimum',
  'lucent_rtp_local_delay_n' => 'Lucent-Rtp-Local-Delay-Maximum',
  'lucent_rtp_local_delay_o' => 'Lucent-Rtp-Local-Delay-Mean',
  'lucent_rtp_local_delay_v' => 'Lucent-Rtp-Local-Delay-Variance',
  'lucent_rtp_local_jitter_' => 'Lucent-Rtp-Local-Jitter-Minimum',
  'lucent_rtp_local_jittera' => 'Lucent-Rtp-Local-Jitter-Maximum',
  'lucent_rtp_local_jitterb' => 'Lucent-Rtp-Local-Jitter-Mean',
  'lucent_rtp_local_jitterc' => 'Lucent-Rtp-Local-Jitter-Variance',
  'lucent_rtp_local_number_' => 'Lucent-Rtp-Local-Number-Of-Samples',
  'lucent_rtp_local_packets' => 'Lucent-Rtp-Local-Packets-Sent',
  'lucent_rtp_local_packett' => 'Lucent-Rtp-Local-Packets-Lost',
  'lucent_rtp_local_packetu' => 'Lucent-Rtp-Local-Packets-Late',
  'lucent_rtp_local_silence' => 'Lucent-Rtp-Local-Silence-Percent',
  'lucent_rtp_port_range'    => 'Lucent-RTP-Port-Range',
  'lucent_rtp_remote_bytes_' => 'Lucent-Rtp-Remote-Bytes-Sent',
  'lucent_rtp_remote_delay_' => 'Lucent-Rtp-Remote-Delay-Minimum',
  'lucent_rtp_remote_delaya' => 'Lucent-Rtp-Remote-Delay-Maximum',
  'lucent_rtp_remote_delayb' => 'Lucent-Rtp-Remote-Delay-Mean',
  'lucent_rtp_remote_delayc' => 'Lucent-Rtp-Remote-Delay-Variance',
  'lucent_rtp_remote_jitter' => 'Lucent-Rtp-Remote-Jitter-Minimum',
  'lucent_rtp_remote_jittes' => 'Lucent-Rtp-Remote-Jitter-Maximum',
  'lucent_rtp_remote_jittet' => 'Lucent-Rtp-Remote-Jitter-Mean',
  'lucent_rtp_remote_jitteu' => 'Lucent-Rtp-Remote-Jitter-Variance',
  'lucent_rtp_remote_number' => 'Lucent-Rtp-Remote-Number-Of-Samples',
  'lucent_rtp_remote_packet' => 'Lucent-Rtp-Remote-Packets-Sent',
  'lucent_rtp_remote_packeu' => 'Lucent-Rtp-Remote-Packets-Lost',
  'lucent_rtp_remote_packev' => 'Lucent-Rtp-Remote-Packets-Late',
  'lucent_rtp_remote_silenc' => 'Lucent-Rtp-Remote-Silence-Percent',
  'lucent_secondary_home_ag' => 'Lucent-Secondary-Home-Agent',
  'lucent_seconds_of_histor' => 'Lucent-Seconds-Of-History',
  'lucent_send_auth'         => 'Lucent-Send-Auth',
  'lucent_send_passwd'       => 'Lucent-Send-Passwd',
  'lucent_send_secret'       => 'Lucent-Send-Secret',
  'lucent_service_type'      => 'Lucent-Service-Type',
  'lucent_session_svr_key'   => 'Lucent-Session-Svr-Key',
  'lucent_session_type'      => 'Lucent-Session-Type',
  'lucent_shared_profile_en' => 'Lucent-Shared-Profile-Enable',
  'lucent_sonet_line_cvs_fa' => 'Lucent-Sonet-Line-CVs-Far',
  'lucent_sonet_line_cvs_ne' => 'Lucent-Sonet-Line-CVs-Near',
  'lucent_sonet_line_ess_fa' => 'Lucent-Sonet-Line-ESs-Far',
  'lucent_sonet_line_ess_ne' => 'Lucent-Sonet-Line-ESs-Near',
  'lucent_sonet_line_sess_f' => 'Lucent-Sonet-Line-SESs-Far',
  'lucent_sonet_line_sess_n' => 'Lucent-Sonet-Line-SESs-Near',
  'lucent_sonet_line_uss_fa' => 'Lucent-Sonet-Line-USs-Far',
  'lucent_sonet_line_uss_ne' => 'Lucent-Sonet-Line-USs-Near',
  'lucent_sonet_path_cvs_fa' => 'Lucent-Sonet-Path-CVs-Far',
  'lucent_sonet_path_cvs_ne' => 'Lucent-Sonet-Path-CVs-Near',
  'lucent_sonet_path_ess_fa' => 'Lucent-Sonet-Path-ESs-Far',
  'lucent_sonet_path_ess_ne' => 'Lucent-Sonet-Path-ESs-Near',
  'lucent_sonet_path_sess_f' => 'Lucent-Sonet-Path-SESs-Far',
  'lucent_sonet_path_sess_n' => 'Lucent-Sonet-Path-SESs-Near',
  'lucent_sonet_path_uss_fa' => 'Lucent-Sonet-Path-USs-Far',
  'lucent_sonet_path_uss_ne' => 'Lucent-Sonet-Path-USs-Near',
  'lucent_sonet_section_cvs' => 'Lucent-Sonet-Section-CVs',
  'lucent_sonet_section_ess' => 'Lucent-Sonet-Section-ESs',
  'lucent_sonet_section_sef' => 'Lucent-Sonet-Section-SEFSs',
  'lucent_sonet_section_ses' => 'Lucent-Sonet-Section-SESs',
  'lucent_source_auth'       => 'Lucent-Source-Auth',
  'lucent_source_ip_check'   => 'Lucent-Source-IP-Check',
  'lucent_svc_enabled'       => 'Lucent-SVC-Enabled',
  'lucent_target_util'       => 'Lucent-Target-Util',
  'lucent_telnet_profile'    => 'Lucent-Telnet-Profile',
  'lucent_termsrv_login_pro' => 'Lucent-TermSrv-Login-Prompt',
  'lucent_third_prompt'      => 'Lucent-Third-Prompt',
  'lucent_token_expiry'      => 'Lucent-Token-Expiry',
  'lucent_token_idle'        => 'Lucent-Token-Idle',
  'lucent_token_immediate'   => 'Lucent-Token-Immediate',
  'lucent_tos_copying'       => 'Lucent-TOS-Copying',
  'lucent_traffic_shaper'    => 'Lucent-Traffic-Shaper',
  'lucent_transit_number'    => 'Lucent-Transit-Number',
  'lucent_ts_idle_limit'     => 'Lucent-TS-Idle-Limit',
  'lucent_ts_idle_mode'      => 'Lucent-TS-Idle-Mode',
  'lucent_tunnel_auth_type'  => 'Lucent-Tunnel-Auth-Type',
  'lucent_tunnel_auth_type2' => 'Lucent-Tunnel-Auth-Type2',
  'lucent_tunnel_dscp'       => 'Lucent-Tunnel-DSCP',
  'lucent_tunnel_tos'        => 'Lucent-Tunnel-TOS',
  'lucent_tunnel_tos_copy'   => 'Lucent-Tunnel-TOS-Copy',
  'lucent_tunnel_tos_filter' => 'Lucent-Tunnel-TOS-Filter',
  'lucent_tunnel_tos_preced' => 'Lucent-Tunnel-TOS-Precedence',
  'lucent_tunnel_vrouter_na' => 'Lucent-Tunnel-VRouter-Name',
  'lucent_tunneling_protoco' => 'Lucent-Tunneling-Protocol',
  'lucent_user_acct_base'    => 'Lucent-User-Acct-Base',
  'lucent_user_acct_expirat' => 'Lucent-User-Acct-Expiration',
  'lucent_user_acct_host'    => 'Lucent-User-Acct-Host',
  'lucent_user_acct_key'     => 'Lucent-User-Acct-Key',
  'lucent_user_acct_port'    => 'Lucent-User-Acct-Port',
  'lucent_user_acct_time'    => 'Lucent-User-Acct-Time',
  'lucent_user_acct_type'    => 'Lucent-User-Acct-Type',
  'lucent_user_login_level'  => 'Lucent-User-Login-Level',
  'lucent_user_priority'     => 'Lucent-User-Priority',
  'lucent_uu_info'           => 'Lucent-UU-Info',
  'lucent_vrouter_name'      => 'Lucent-VRouter-Name',
  'lucent_x25_cug'           => 'Lucent-X25-Cug',
  'lucent_x25_nui'           => 'Lucent-X25-Nui',
  'lucent_x25_nui_password_' => 'Lucent-X25-Nui-Password-Prompt',
  'lucent_x25_nui_prompt'    => 'Lucent-X25-Nui-Prompt',
  'lucent_x25_pad_alias_1'   => 'Lucent-X25-Pad-Alias-1',
  'lucent_x25_pad_alias_2'   => 'Lucent-X25-Pad-Alias-2',
  'lucent_x25_pad_alias_3'   => 'Lucent-X25-Pad-Alias-3',
  'lucent_x25_pad_banner'    => 'Lucent-X25-Pad-Banner',
  'lucent_x25_pad_prompt'    => 'Lucent-X25-Pad-Prompt',
  'lucent_x25_pad_x3_parame' => 'Lucent-X25-Pad-X3-Parameters',
  'lucent_x25_pad_x3_profil' => 'Lucent-X25-Pad-X3-Profile',
  'lucent_x25_profile_name'  => 'Lucent-X25-Profile-Name',
  'lucent_x25_reverse_charg' => 'Lucent-X25-Reverse-Charging',
  'lucent_x25_rpoa'          => 'Lucent-X25-Rpoa',
  'lucent_x25_x121_address'  => 'Lucent-X25-X121-Address',
  'lucent_x25_x121_source_a' => 'Lucent-X25-X121-Source-Address',
  'lucent_xmit_rate'         => 'Lucent-Xmit-Rate',
  'lucent_xmit_symbol_rate'  => 'Lucent-Xmit-Symbol-Rate',
  'mac_addr'                 => 'Mac-Addr',
  'management_policy_id'     => 'Management-Policy-Id',
  'management_privilege_lev' => 'Management-Privilege-Level',
  'management_transport_pro' => 'Management-Transport-Protection',
  'manzara_ecp_session_key'  => 'Manzara-ECP-Session-Key',
  'manzara_full_login_strin' => 'Manzara-Full-Login-String',
  'manzara_map_error'        => 'Manzara-Map-Error',
  'manzara_map_key'          => 'Manzara-Map-Key',
  'manzara_map_name'         => 'Manzara-Map-Name',
  'manzara_map_value'        => 'Manzara-Map-Value',
  'manzara_ppp_addr_string'  => 'Manzara-PPP-Addr-String',
  'manzara_service_type'     => 'Manzara-Service-Type',
  'manzara_tariff_type'      => 'Manzara-Tariff-Type',
  'manzara_tariff_units'     => 'Manzara-Tariff-Units',
  'manzara_user_gid'         => 'Manzara-User-GID',
  'manzara_user_home'        => 'Manzara-User-Home',
  'manzara_user_shell'       => 'Manzara-User-Shell',
  'manzara_user_uid'         => 'Manzara-User-UID',
  'maximum_data_rate_downst' => 'Maximum-Data-Rate-Downstream',
  'maximum_data_rate_upstre' => 'Maximum-Data-Rate-Upstream',
  'maximum_interleaving_del' => 'Maximum-Interleaving-Delay-Upstream',
  'maximum_interleaving_dem' => 'Maximum-Interleaving-Delay-Downstream',
  'mcast_maxgroups'          => 'Mcast_MaxGroups',
  'mcast_maxgroupt'          => 'Mcast-MaxGroups',
  'mcast_receive'            => 'Mcast_Receive',
  'mcast_receivf'            => 'Mcast-Receive',
  'mcast_send'               => 'Mcast_Send',
  'mcast_sene'               => 'Mcast-Send',
  'md5_password'             => 'MD5-Password',
  'medium_type'              => 'Medium_Type',
  'medium_typf'              => 'Medium-Type',
  'menu'                     => 'Menu',
  'merit_proxy_action'       => 'Merit-Proxy-Action',
  'merit_user_id'            => 'Merit-User-Id',
  'merit_user_realm'         => 'Merit-User-Realm',
  'message_authenticator'    => 'Message-Authenticator',
  'method'                   => 'method',
  'mikrotik_address_list'    => 'Mikrotik-Address-List',
  'mikrotik_advertise_inter' => 'Mikrotik-Advertise-Interval',
  'mikrotik_advertise_url'   => 'Mikrotik-Advertise-URL',
  'mikrotik_delegated_ipv6_' => 'Mikrotik-Delegated-IPv6-Pool',
  'mikrotik_group'           => 'Mikrotik-Group',
  'mikrotik_host_ip'         => 'Mikrotik-Host-IP',
  'mikrotik_mark_id'         => 'Mikrotik-Mark-Id',
  'mikrotik_rate_limit'      => 'Mikrotik-Rate-Limit',
  'mikrotik_realm'           => 'Mikrotik-Realm',
  'mikrotik_recv_limit'      => 'Mikrotik-Recv-Limit',
  'mikrotik_recv_limit_giga' => 'Mikrotik-Recv-Limit-Gigawords',
  'mikrotik_total_limit'     => 'Mikrotik-Total-Limit',
  'mikrotik_total_limit_gig' => 'Mikrotik-Total-Limit-Gigawords',
  'mikrotik_wireless_commen' => 'Mikrotik-Wireless-Comment',
  'mikrotik_wireless_enc_al' => 'Mikrotik-Wireless-Enc-Algo',
  'mikrotik_wireless_enc_ke' => 'Mikrotik-Wireless-Enc-Key',
  'mikrotik_wireless_forwar' => 'Mikrotik-Wireless-Forward',
  'mikrotik_wireless_mpkey'  => 'Mikrotik-Wireless-MPKey',
  'mikrotik_wireless_psk'    => 'Mikrotik-Wireless-PSK',
  'mikrotik_wireless_skip_d' => 'Mikrotik-Wireless-Skip-Dot1x',
  'mikrotik_xmit_limit'      => 'Mikrotik-Xmit-Limit',
  'mikrotik_xmit_limit_giga' => 'Mikrotik-Xmit-Limit-Gigawords',
  'minimum_data_rate_downst' => 'Minimum-Data-Rate-Downstream',
  'minimum_data_rate_downsu' => 'Minimum-Data-Rate-Downstream-Low-Power',
  'minimum_data_rate_upstre' => 'Minimum-Data-Rate-Upstream',
  'minimum_data_rate_upstrf' => 'Minimum-Data-Rate-Upstream-Low-Power',
  'mip6_feature_vector'      => 'MIP6-Feature-Vector',
  'mip6_home_link_prefix'    => 'MIP6-Home-Link-Prefix',
  'mobile_node_identifier'   => 'Mobile-Node-Identifier',
  'mobility_domain_id'       => 'Mobility-Domain-Id',
  'module_failure_message'   => 'Module-Failure-Message',
  'module_return_code'       => 'Module-Return-Code',
  'module_success_message'   => 'Module-Success-Message',
  'motorola_canopy_bcastmir' => 'Motorola-Canopy-BCASTMIR',
  'motorola_canopy_cirenabl' => 'Motorola-Canopy-CIRENABLE',
  'motorola_canopy_dlba'     => 'Motorola-Canopy-DLBA',
  'motorola_canopy_dlbl'     => 'Motorola-Canopy-DLBL',
  'motorola_canopy_dlbr'     => 'Motorola-Canopy-DLBR',
  'motorola_canopy_enable'   => 'Motorola-Canopy-Enable',
  'motorola_canopy_higherbw' => 'Motorola-Canopy-HIGHERBW',
  'motorola_canopy_hpcenabl' => 'Motorola-Canopy-HPCENABLE',
  'motorola_canopy_hpdlcir'  => 'Motorola-Canopy-HPDLCIR',
  'motorola_canopy_hpenable' => 'Motorola-Canopy-HPENABLE',
  'motorola_canopy_hpsdldr'  => 'Motorola-Canopy-HPSDLDR',
  'motorola_canopy_hpsuldr'  => 'Motorola-Canopy-HPSULDR',
  'motorola_canopy_hpulcir'  => 'Motorola-Canopy-HPULCIR',
  'motorola_canopy_lpdlcir'  => 'Motorola-Canopy-LPDLCIR',
  'motorola_canopy_lpsdldr'  => 'Motorola-Canopy-LPSDLDR',
  'motorola_canopy_lpsuldr'  => 'Motorola-Canopy-LPSULDR',
  'motorola_canopy_lpulcir'  => 'Motorola-Canopy-LPULCIR',
  'motorola_canopy_sdldr'    => 'Motorola-Canopy-SDLDR',
  'motorola_canopy_shared_s' => 'Motorola-Canopy-Shared-Secret',
  'motorola_canopy_suldr'    => 'Motorola-Canopy-SULDR',
  'motorola_canopy_ulba'     => 'Motorola-Canopy-ULBA',
  'motorola_canopy_ulbl'     => 'Motorola-Canopy-ULBL',
  'motorola_canopy_ulbr'     => 'Motorola-Canopy-ULBR',
  'motorola_canopy_userleve' => 'Motorola-Canopy-UserLevel',
  'motorola_canopy_vlageto'  => 'Motorola-Canopy-VLAGETO',
  'motorola_canopy_vlframes' => 'Motorola-Canopy-VLFRAMES',
  'motorola_canopy_vlidset'  => 'Motorola-Canopy-VLIDSET',
  'motorola_canopy_vligvid'  => 'Motorola-Canopy-VLIGVID',
  'motorola_canopy_vllearne' => 'Motorola-Canopy-VLLEARNEN',
  'motorola_canopy_vlmgvid'  => 'Motorola-Canopy-VLMGVID',
  'motorola_canopy_vlsmmgpa' => 'Motorola-Canopy-VLSMMGPASS',
  'motorola_wimax_convergen' => 'Motorola-WiMAX-Convergence-Sublayer',
  'motorola_wimax_dns_serve' => 'Motorola-WiMAX-DNS-Server-IP-Address',
  'motorola_wimax_ems_addre' => 'Motorola-WiMAX-EMS-Address',
  'motorola_wimax_ho_svc_cl' => 'Motorola-WiMAX-HO-SVC-CLASS',
  'motorola_wimax_home_bts'  => 'Motorola-WiMAX-Home-BTS',
  'motorola_wimax_maximum_c' => 'Motorola-WiMAX-Maximum-Commit-Bandwidth',
  'motorola_wimax_maximum_t' => 'Motorola-WiMAX-Maximum-Total-Bandwidth',
  'motorola_wimax_mip_key'   => 'Motorola-WiMAX-MIP-KEY',
  'motorola_wimax_mip_mn_ho' => 'Motorola-WiMAX-MIP-MN-HOME-ADDRESS',
  'motorola_wimax_mip_spi'   => 'Motorola-WiMAX-MIP-SPI',
  'motorola_wimax_mn_ha'     => 'Motorola-WiMAX-MN-HA',
  'motorola_wimax_network_d' => 'Motorola-WiMAX-Network-Domain-Name',
  'motorola_wimax_ntp_serve' => 'Motorola-WiMAX-NTP-Server',
  'motorola_wimax_provision' => 'Motorola-WiMAX-Provisioning-Server',
  'motorola_wimax_service_f' => 'Motorola-WiMAX-Service-Flows',
  'motorola_wimax_user_nai'  => 'Motorola-WiMAX-User-NAI',
  'motorola_wimax_vlan_id'   => 'Motorola-WiMAX-VLAN-ID',
  'ms_acct_auth_type'        => 'MS-Acct-Auth-Type',
  'ms_acct_eap_type'         => 'MS-Acct-EAP-Type',
  'ms_afw_protection_level'  => 'MS-AFW-Protection-Level',
  'ms_afw_zone'              => 'MS-AFW-Zone',
  'ms_arap_pw_change_reason' => 'MS-ARAP-PW-Change-Reason',
  'ms_bap_usage'             => 'MS-BAP-Usage',
  'ms_chap2_cpw'             => 'MS-CHAP2-CPW',
  'ms_chap2_response'        => 'MS-CHAP2-Response',
  'ms_chap2_success'         => 'MS-CHAP2-Success',
  'ms_chap_challenge'        => 'MS-CHAP-Challenge',
  'ms_chap_cpw_1'            => 'MS-CHAP-CPW-1',
  'ms_chap_cpw_2'            => 'MS-CHAP-CPW-2',
  'ms_chap_domain'           => 'MS-CHAP-Domain',
  'ms_chap_error'            => 'MS-CHAP-Error',
  'ms_chap_lm_enc_pw'        => 'MS-CHAP-LM-Enc-PW',
  'ms_chap_mppe_keys'        => 'MS-CHAP-MPPE-Keys',
  'ms_chap_nt_enc_pw'        => 'MS-CHAP-NT-Enc-PW',
  'ms_chap_password'         => 'MS-CHAP-Password',
  'ms_chap_response'         => 'MS-CHAP-Response',
  'ms_chap_use_ntlm_auth'    => 'MS-CHAP-Use-NTLM-Auth',
  'ms_chap_user_name'        => 'MS-CHAP-User-Name',
  'ms_extended_quarantine_s' => 'MS-Extended-Quarantine-State',
  'ms_filter'                => 'MS-Filter',
  'ms_hcap_location_group_n' => 'MS-HCAP-Location-Group-Name',
  'ms_hcap_user_groups'      => 'MS-HCAP-User-Groups',
  'ms_hcap_user_name'        => 'MS-HCAP-User-Name',
  'ms_identity_type'         => 'MS-Identity-Type',
  'ms_ipv4_remediation_serv' => 'MS-IPv4-Remediation-Servers',
  'ms_ipv6_filter'           => 'MS-IPv6-Filter',
  'ms_ipv6_remediation_serv' => 'MS-IPv6-Remediation-Servers',
  'ms_link_drop_time_limit'  => 'MS-Link-Drop-Time-Limit',
  'ms_link_utilization_thre' => 'MS-Link-Utilization-Threshold',
  'ms_machine_name'          => 'MS-Machine-Name',
  'ms_mppe_encryption_polic' => 'MS-MPPE-Encryption-Policy',
  'ms_mppe_encryption_type'  => 'MS-MPPE-Encryption-Type',
  'ms_mppe_encryption_types' => 'MS-MPPE-Encryption-Types',
  'ms_mppe_recv_key'         => 'MS-MPPE-Recv-Key',
  'ms_mppe_send_key'         => 'MS-MPPE-Send-Key',
  'ms_network_access_server' => 'MS-Network-Access-Server-Type',
  'ms_new_arap_password'     => 'MS-New-ARAP-Password',
  'ms_old_arap_password'     => 'MS-Old-ARAP-Password',
  'ms_primary_dns_server'    => 'MS-Primary-DNS-Server',
  'ms_primary_nbns_server'   => 'MS-Primary-NBNS-Server',
  'ms_quarantine_grace_time' => 'MS-Quarantine-Grace-Time',
  'ms_quarantine_ipfilter'   => 'MS-Quarantine-IPFilter',
  'ms_quarantine_session_ti' => 'MS-Quarantine-Session-Timeout',
  'ms_quarantine_soh'        => 'MS-Quarantine-SOH',
  'ms_quarantine_state'      => 'MS-Quarantine-State',
  'ms_quarantine_user_class' => 'MS-Quarantine-User-Class',
  'ms_ras_client_name'       => 'MS-RAS-Client-Name',
  'ms_ras_client_version'    => 'MS-RAS-Client-Version',
  'ms_ras_correlation'       => 'MS-RAS-Correlation',
  'ms_ras_vendor'            => 'MS-RAS-Vendor',
  'ms_ras_version'           => 'MS-RAS-Version',
  'ms_rnap_not_quarantine_c' => 'MS-RNAP-Not-Quarantine-Capable',
  'ms_secondary_dns_server'  => 'MS-Secondary-DNS-Server',
  'ms_secondary_nbns_server' => 'MS-Secondary-NBNS-Server',
  'ms_service_class'         => 'MS-Service-Class',
  'ms_tsg_device_redirectio' => 'MS-TSG-Device-Redirection',
  'ms_user_ipv4_address'     => 'MS-User-IPv4-Address',
  'ms_user_ipv6_address'     => 'MS-User-IPv6-Address',
  'ms_user_security_identit' => 'MS-User-Security-Identity',
  'multi_link_flag'          => 'Multi-Link-Flag',
  'nas_filter_rule'          => 'NAS-Filter-Rule',
  'nas_identifier'           => 'NAS-Identifier',
  'nas_ip_address'           => 'NAS-IP-Address',
  'nas_ipv6_address'         => 'NAS-IPv6-Address',
  'nas_port'                 => 'NAS-Port',
  'nas_port_id'              => 'NAS-Port-Id',
  'nas_port_type'            => 'NAS-Port-Type',
  'nas_real_port'            => 'NAS_Real_Port',
  'nas_real_poru'            => 'NAS-Real-Port',
  'nat_policy_name'          => 'NAT-Policy-Name',
  'nat_policy_namf'          => 'NAT-Policy-Name',
  'navini_avpair'            => 'Navini-AVPair',
  'netsensory_privilege'     => 'NetSensory-Privilege',
  'network_id_name'          => 'Network-Id-Name',
  'nexans_port_default_vlan' => 'Nexans-Port-Default-VLAN-ID',
  'nexans_port_voice_vlan_i' => 'Nexans-Port-Voice-VLAN-ID',
  'next_hop_dn'              => 'next-hop-dn',
  'next_hop_ip'              => 'next-hop-ip',
  'nn_data_rate'             => 'NN-Data-Rate',
  'nn_data_rate_ceiling'     => 'NN-Data-Rate-Ceiling',
  'nn_homenode'              => 'NN-Homenode',
  'nn_homeservice'           => 'NN-Homeservice',
  'nn_homeservice_name'      => 'NN-Homeservice-Name',
  'no_such_attribute'        => 'No-Such-Attribute',
  'nokia_avpair'             => 'Nokia-AVPair',
  'nokia_charging_id'        => 'Nokia-Charging-Id',
  'nokia_ggsn_ip_address'    => 'Nokia-GGSN-IP-Address',
  'nokia_imsi'               => 'Nokia-IMSI',
  'nokia_ocs_id1'            => 'Nokia-OCS-ID1',
  'nokia_ocs_id2'            => 'Nokia-OCS-ID2',
  'nokia_prepaid_ind'        => 'Nokia-Prepaid-Ind',
  'nokia_primary_dns_server' => 'Nokia-Primary-DNS-Server',
  'nokia_requested_apn'      => 'Nokia-Requested-APN',
  'nokia_secondary_dns_serv' => 'Nokia-Secondary-DNS-Server',
  'nokia_service_charging_t' => 'Nokia-Service-Charging-Type',
  'nokia_service_encrypted_' => 'Nokia-Service-Encrypted-Password',
  'nokia_service_id'         => 'Nokia-Service-Id',
  'nokia_service_name'       => 'Nokia-Service-Name',
  'nokia_service_password'   => 'Nokia-Service-Password',
  'nokia_service_primary_in' => 'Nokia-Service-Primary-Indicator',
  'nokia_service_username'   => 'Nokia-Service-Username',
  'nokia_session_access_met' => 'Nokia-Session-Access-Method',
  'nokia_session_charging_t' => 'Nokia-Session-Charging-Type',
  'nokia_sgsn_ip_address'    => 'Nokia-SGSN-IP-Address',
  'nokia_trec_index'         => 'Nokia-TREC-Index',
  'nokia_user_profile'       => 'Nokia-User-Profile',
  'nomadix_bw_down'          => 'Nomadix-Bw-Down',
  'nomadix_bw_up'            => 'Nomadix-Bw-Up',
  'nomadix_config_url'       => 'Nomadix-Config-URL',
  'nomadix_endofsession'     => 'Nomadix-EndofSession',
  'nomadix_expiration'       => 'Nomadix-Expiration',
  'nomadix_goodbye_url'      => 'Nomadix-Goodbye-URL',
  'nomadix_group_bw_max_dow' => 'Nomadix-Group-Bw-Max-Down',
  'nomadix_group_bw_max_up'  => 'Nomadix-Group-Bw-Max-Up',
  'nomadix_group_policy_id'  => 'Nomadix-Group-Policy-Id',
  'nomadix_ip_upsell'        => 'Nomadix-IP-Upsell',
  'nomadix_logoff_url'       => 'Nomadix-Logoff-URL',
  'nomadix_maxbytesdown'     => 'Nomadix-MaxBytesDown',
  'nomadix_maxbytesup'       => 'Nomadix-MaxBytesUp',
  'nomadix_net_vlan'         => 'Nomadix-Net-VLAN',
  'nomadix_subnet'           => 'Nomadix-Subnet',
  'nomadix_url_redirection'  => 'Nomadix-URL-Redirection',
  'nortel_privilege_level'   => 'Nortel-Privilege-Level',
  'nortel_user_role'         => 'Nortel-User-Role',
  'ns_admin_privilege'       => 'NS-Admin-Privilege',
  'ns_mta_md5_password'      => 'NS-MTA-MD5-Password',
  'ns_nsm_user_domain_name'  => 'NS-NSM-User-Domain-Name',
  'ns_nsm_user_role_mapping' => 'NS-NSM-User-Role-Mapping',
  'ns_primary_dns'           => 'NS-Primary-DNS',
  'ns_primary_wins'          => 'NS-Primary-WINS',
  'ns_secondary_dns'         => 'NS-Secondary-DNS',
  'ns_secondary_wins'        => 'NS-Secondary-WINS',
  'ns_user_group'            => 'NS-User-Group',
  'ns_vsys_name'             => 'NS-VSYS-Name',
  'nt_password'              => 'NT-Password',
  'ntlm_user_name'           => 'NTLM-User-Name',
  'old_password'             => 'Old-Password',
  'operator_name'            => 'Operator-Name',
  'originating_line_info'    => 'Originating-Line-Info',
  'os_version'               => 'OS-Version',
  'os_versioo'               => 'OS-Version',
  'outgoing_req_uri'         => 'outgoing-req-uri',
  'packet_authentication_ve' => 'Packet-Authentication-Vector',
  'packet_dst_ip_address'    => 'Packet-Dst-IP-Address',
  'packet_dst_ipv6_address'  => 'Packet-Dst-IPv6-Address',
  'packet_dst_port'          => 'Packet-Dst-Port',
  'packet_original_timestam' => 'Packet-Original-Timestamp',
  'packet_src_ip_address'    => 'Packet-Src-IP-Address',
  'packet_src_ipv6_address'  => 'Packet-Src-IPv6-Address',
  'packet_src_port'          => 'Packet-Src-Port',
  'packet_transmit_counter'  => 'Packet-Transmit-Counter',
  'packet_type'              => 'Packet-Type',
  'packeteer_avpair'         => 'Packeteer-AVPair',
  'paloalto_admin_access_do' => 'PaloAlto-Admin-Access-Domain',
  'paloalto_admin_role'      => 'PaloAlto-Admin-Role',
  'paloalto_panorama_admin_' => 'PaloAlto-Panorama-Admin-Role',
  'paloalto_panorama_admina' => 'PaloAlto-Panorama-Admin-Access-Domain',
  'paloalto_user_group'      => 'PaloAlto-User-Group',
  'pam_auth'                 => 'Pam-Auth',
  'passport_access_priority' => 'Passport-Access-Priority',
  'passport_allowed_access'  => 'Passport-Allowed-Access',
  'passport_allowedout_acce' => 'Passport-AllowedOut-Access',
  'passport_command_impact'  => 'Passport-Command-Impact',
  'passport_command_scope'   => 'Passport-Command-Scope',
  'passport_customer_identi' => 'Passport-Customer-Identifier',
  'passport_login_directory' => 'Passport-Login-Directory',
  'passport_role'            => 'Passport-Role',
  'passport_timeout_protoco' => 'Passport-Timeout-Protocol',
  'password'                 => 'Password',
  'password_retry'           => 'Password-Retry',
  'password_with_header'     => 'Password-With-Header',
  'patton_called_codec'      => 'Patton-Called-Codec',
  'patton_called_ip_address' => 'Patton-Called-IP-Address',
  'patton_called_mos'        => 'Patton-Called-MOS',
  'patton_called_name'       => 'Patton-Called-Name',
  'patton_called_numbering_' => 'Patton-Called-Numbering-Plan',
  'patton_called_round_trip' => 'Patton-Called-Round-Trip-Time',
  'patton_called_rx_jitter'  => 'Patton-Called-Rx-Jitter',
  'patton_called_rx_lost_pa' => 'Patton-Called-Rx-Lost-Packets',
  'patton_called_rx_octets'  => 'Patton-Called-Rx-Octets',
  'patton_called_rx_packets' => 'Patton-Called-Rx-Packets',
  'patton_called_tx_jitter'  => 'Patton-Called-Tx-Jitter',
  'patton_called_tx_lost_pa' => 'Patton-Called-Tx-Lost-Packets',
  'patton_called_tx_octets'  => 'Patton-Called-Tx-Octets',
  'patton_called_tx_packets' => 'Patton-Called-Tx-Packets',
  'patton_called_type_of_nu' => 'Patton-Called-Type-Of-Number',
  'patton_called_unique_id'  => 'Patton-Called-Unique-Id',
  'patton_calling_codec'     => 'Patton-Calling-Codec',
  'patton_calling_ip_addres' => 'Patton-Calling-IP-Address',
  'patton_calling_lost_rx_p' => 'Patton-Calling-Lost-Rx-Packets',
  'patton_calling_lost_tx_p' => 'Patton-Calling-Lost-Tx-Packets',
  'patton_calling_mos'       => 'Patton-Calling-MOS',
  'patton_calling_name'      => 'Patton-Calling-Name',
  'patton_calling_numbering' => 'Patton-Calling-Numbering-Plan',
  'patton_calling_presentat' => 'Patton-Calling-Presentation-Indicator',
  'patton_calling_round_tri' => 'Patton-Calling-Round-Trip-Time',
  'patton_calling_rx_jitter' => 'Patton-Calling-Rx-Jitter',
  'patton_calling_rx_octets' => 'Patton-Calling-Rx-Octets',
  'patton_calling_rx_packet' => 'Patton-Calling-Rx-Packets',
  'patton_calling_screening' => 'Patton-Calling-Screening-Indicator',
  'patton_calling_tx_jitter' => 'Patton-Calling-Tx-Jitter',
  'patton_calling_tx_octets' => 'Patton-Calling-Tx-Octets',
  'patton_calling_tx_packet' => 'Patton-Calling-Tx-Packets',
  'patton_calling_type_of_n' => 'Patton-Calling-Type-Of-Number',
  'patton_calling_unique_id' => 'Patton-Calling-Unique-Id',
  'patton_connect_time'      => 'Patton-Connect-Time',
  'patton_disconnect_cause'  => 'Patton-Disconnect-Cause',
  'patton_disconnect_source' => 'Patton-Disconnect-Source',
  'patton_disconnect_time'   => 'Patton-Disconnect-Time',
  'patton_setup_time'        => 'Patton-Setup-Time',
  'peap_version'             => 'PEAP-Version',
  'pkm_auth_key'             => 'PKM-Auth-Key',
  'pkm_ca_cert'              => 'PKM-CA-Cert',
  'pkm_config_settings'      => 'PKM-Config-Settings',
  'pkm_cryptosuite_list'     => 'PKM-Cryptosuite-List',
  'pkm_sa_descriptor'        => 'PKM-SA-Descriptor',
  'pkm_said'                 => 'PKM-SAID',
  'pkm_ss_cert'              => 'PKM-SS-Cert',
  'platform_type'            => 'Platform-Type',
  'platform_typf'            => 'Platform-Type',
  'pmip6_home_dhcp4_server_' => 'PMIP6-Home-DHCP4-Server-Address',
  'pmip6_home_dhcp6_server_' => 'PMIP6-Home-DHCP6-Server-Address',
  'pmip6_home_hn_prefix'     => 'PMIP6-Home-HN-Prefix',
  'pmip6_home_interface_id'  => 'PMIP6-Home-Interface-ID',
  'pmip6_home_ipv4_gateway'  => 'PMIP6-Home-IPv4-Gateway',
  'pmip6_home_ipv4_hoa'      => 'PMIP6-Home-IPv4-HoA',
  'pmip6_home_lma_ipv4_addr' => 'PMIP6-Home-LMA-IPv4-Address',
  'pmip6_home_lma_ipv6_addr' => 'PMIP6-Home-LMA-IPv6-Address',
  'pmip6_visited_dhcp4_serv' => 'PMIP6-Visited-DHCP4-Server-Address',
  'pmip6_visited_dhcp6_serv' => 'PMIP6-Visited-DHCP6-Server-Address',
  'pmip6_visited_hn_prefix'  => 'PMIP6-Visited-HN-Prefix',
  'pmip6_visited_interface_' => 'PMIP6-Visited-Interface-ID',
  'pmip6_visited_ipv4_gatew' => 'PMIP6-Visited-IPv4-Gateway',
  'pmip6_visited_ipv4_hoa'   => 'PMIP6-Visited-IPv4-HoA',
  'pmip6_visited_lma_ipv4_a' => 'PMIP6-Visited-LMA-IPv4-Address',
  'pmip6_visited_lma_ipv6_a' => 'PMIP6-Visited-LMA-IPv6-Address',
  'police_burst'             => 'Police_Burst',
  'police_bursu'             => 'Police-Burst',
  'police_excess_burst'      => 'Police-Excess-Burst',
  'police_rate'              => 'Police_Rate',
  'police_ratf'              => 'Police-Rate',
  'pool_name'                => 'Pool-Name',
  'port_limit'               => 'Port-Limit',
  'port_message'             => 'Port-Message',
  'post_auth_type'           => 'Post-Auth-Type',
  'post_proxy_type'          => 'Post-Proxy-Type',
  'ppp_compression'          => 'PPP-Compression',
  'ppp_compressioo'          => 'PPP-Compression',
  'pppoe_ip_route_add'       => 'PPPoE-IP-Route-Add',
  'pppoe_ip_route_ade'       => 'PPPoE-IP-Route-Add',
  'pppoe_motm'               => 'PPPOE_MOTM',
  'pppoe_motn'               => 'PPPOE-MOTM',
  'pppoe_url'                => 'PPPOE_URL',
  'pppoe_urm'                => 'PPPOE-URL',
  'pre_acct_type'            => 'Pre-Acct-Type',
  'pre_proxy_type'           => 'Pre-Proxy-Type',
  'preauth_timeout'          => 'Preauth-Timeout',
  'prefix'                   => 'Prefix',
  'prev_hop_ip'              => 'prev-hop-ip',
  'prev_hop_via'             => 'prev-hop-via',
  'prompt'                   => 'Prompt',
  'propel_accelerate'        => 'Propel-Accelerate',
  'propel_client_ip_address' => 'Propel-Client-IP-Address',
  'propel_client_nas_ip_add' => 'Propel-Client-NAS-IP-Address',
  'propel_client_source_id'  => 'Propel-Client-Source-ID',
  'propel_content_filter_id' => 'Propel-Content-Filter-ID',
  'propel_dialed_digits'     => 'Propel-Dialed-Digits',
  'prosoft_atm_interface'    => 'Prosoft-ATM-Interface',
  'prosoft_atm_vci'          => 'Prosoft-ATM-VCI',
  'prosoft_atm_vpi'          => 'Prosoft-ATM-VPI',
  'prosoft_auth_role'        => 'Prosoft-Auth-Role',
  'prosoft_authentication_r' => 'Prosoft-Authentication-Reason',
  'prosoft_default_gateway'  => 'Prosoft-Default-Gateway',
  'prosoft_home_agent_addre' => 'Prosoft-Home-Agent-Address',
  'prosoft_mac_address'      => 'Prosoft-MAC-Address',
  'prosoft_npm_identifier'   => 'Prosoft-NPM-Identifier',
  'prosoft_npm_ip'           => 'Prosoft-NPM-IP',
  'prosoft_primary_dns'      => 'Prosoft-Primary-DNS',
  'prosoft_rsc_identifier'   => 'Prosoft-RSC-Identifier',
  'prosoft_secondary_dns'    => 'Prosoft-Secondary-DNS',
  'prosoft_sector_id'        => 'Prosoft-Sector-ID',
  'prosoft_security_key'     => 'Prosoft-Security-Key',
  'prosoft_security_paramet' => 'Prosoft-Security-Parameter-Index',
  'proxim_e1_access_vlan_id' => 'Proxim_E1_Access_VLAN_ID',
  'proxim_e1_access_vlan_pr' => 'Proxim_E1_Access_VLAN_Pri',
  'proxim_e1_allow_untag'    => 'Proxim_E1_Allow_Untag',
  'proxim_e1_port_vlan_id'   => 'Proxim_E1_Port_VLAN_ID',
  'proxim_e1_port_vlan_pri'  => 'Proxim_E1_Port_VLAN_Pri',
  'proxim_e1_su_allow_untag' => 'Proxim_E1_SU_Allow_Untag_Mgmt',
  'proxim_e1_trunkid_01'     => 'Proxim_E1_TrunkID_01',
  'proxim_e1_trunkid_02'     => 'Proxim_E1_TrunkID_02',
  'proxim_e1_trunkid_03'     => 'Proxim_E1_TrunkID_03',
  'proxim_e1_trunkid_04'     => 'Proxim_E1_TrunkID_04',
  'proxim_e1_trunkid_05'     => 'Proxim_E1_TrunkID_05',
  'proxim_e1_trunkid_06'     => 'Proxim_E1_TrunkID_06',
  'proxim_e1_trunkid_07'     => 'Proxim_E1_TrunkID_07',
  'proxim_e1_trunkid_08'     => 'Proxim_E1_TrunkID_08',
  'proxim_e1_trunkid_09'     => 'Proxim_E1_TrunkID_09',
  'proxim_e1_trunkid_10'     => 'Proxim_E1_TrunkID_10',
  'proxim_e1_trunkid_11'     => 'Proxim_E1_TrunkID_11',
  'proxim_e1_trunkid_12'     => 'Proxim_E1_TrunkID_12',
  'proxim_e1_trunkid_13'     => 'Proxim_E1_TrunkID_13',
  'proxim_e1_trunkid_14'     => 'Proxim_E1_TrunkID_14',
  'proxim_e1_trunkid_15'     => 'Proxim_E1_TrunkID_15',
  'proxim_e1_trunkid_16'     => 'Proxim_E1_TrunkID_16',
  'proxim_e1_vlan_mode'      => 'Proxim_E1_VLAN_MODE',
  'proxim_e2_access_vlan_id' => 'Proxim_E2_Access_VLAN_ID',
  'proxim_e2_access_vlan_pr' => 'Proxim_E2_Access_VLAN_Pri',
  'proxim_e2_allow_untag'    => 'Proxim_E2_Allow_Untag',
  'proxim_e2_port_vlan_id'   => 'Proxim_E2_Port_VLAN_ID',
  'proxim_e2_port_vlan_pri'  => 'Proxim_E2_Port_VLAN_Pri',
  'proxim_e2_su_allow_untag' => 'Proxim_E2_SU_Allow_Untag_Mgmt',
  'proxim_e2_trunkid_01'     => 'Proxim_E2_TrunkID_01',
  'proxim_e2_trunkid_02'     => 'Proxim_E2_TrunkID_02',
  'proxim_e2_trunkid_03'     => 'Proxim_E2_TrunkID_03',
  'proxim_e2_trunkid_04'     => 'Proxim_E2_TrunkID_04',
  'proxim_e2_trunkid_05'     => 'Proxim_E2_TrunkID_05',
  'proxim_e2_trunkid_06'     => 'Proxim_E2_TrunkID_06',
  'proxim_e2_trunkid_07'     => 'Proxim_E2_TrunkID_07',
  'proxim_e2_trunkid_08'     => 'Proxim_E2_TrunkID_08',
  'proxim_e2_trunkid_09'     => 'Proxim_E2_TrunkID_09',
  'proxim_e2_trunkid_10'     => 'Proxim_E2_TrunkID_10',
  'proxim_e2_trunkid_11'     => 'Proxim_E2_TrunkID_11',
  'proxim_e2_trunkid_12'     => 'Proxim_E2_TrunkID_12',
  'proxim_e2_trunkid_13'     => 'Proxim_E2_TrunkID_13',
  'proxim_e2_trunkid_14'     => 'Proxim_E2_TrunkID_14',
  'proxim_e2_trunkid_15'     => 'Proxim_E2_TrunkID_15',
  'proxim_e2_trunkid_16'     => 'Proxim_E2_TrunkID_16',
  'proxim_e2_vlan_mode'      => 'Proxim_E2_VLAN_MODE',
  'proxim_mgmt_vlan_id'      => 'Proxim_Mgmt_VLAN_ID',
  'proxim_mgmt_vlan_pri'     => 'Proxim_Mgmt_VLAN_Pri',
  'proxim_qinq_status'       => 'Proxim_QinQ_Status',
  'proxim_qos_class_index'   => 'Proxim_QoS_Class_Index',
  'proxim_qos_class_su_stat' => 'Proxim_QoS_Class_SU_Status',
  'proxim_service_vlan_id'   => 'Proxim_Service_VLAN_ID',
  'proxim_service_vlan_pri'  => 'Proxim_Service_VLAN_Pri',
  'proxim_service_vlan_tpid' => 'Proxim_Service_VLAN_TPID',
  'proxim_su_vlan_name'      => 'Proxim_SU_VLAN_NAME',
  'proxim_su_vlan_table_sta' => 'Proxim_SU_VLAN_Table_Status',
  'proxy_state'              => 'Proxy-State',
  'proxy_to_realm'           => 'Proxy-To-Realm',
  'purewave_client_profile'  => 'Purewave-Client-Profile',
  'purewave_cs_type'         => 'Purewave-CS-Type',
  'purewave_ip_address'      => 'Purewave-IP-Address',
  'purewave_ip_netmask'      => 'Purewave-IP-Netmask',
  'purewave_max_downlink_ra' => 'Purewave-Max-Downlink-Rate',
  'purewave_max_uplink_rate' => 'Purewave-Max-Uplink-Rate',
  'purewave_service_enable'  => 'Purewave-Service-Enable',
  'pvc_circuit_padding'      => 'PVC_Circuit_Padding',
  'pvc_circuit_paddinh'      => 'PVC-Circuit-Padding',
  'pvc_encapsulation_type'   => 'PVC_Encapsulation_Type',
  'pvc_encapsulation_typf'   => 'PVC-Encapsulation-Type',
  'pvc_profile_name'         => 'PVC_Profile_Name',
  'pvc_profile_namf'         => 'PVC-Profile-Name',
  'qos_metering_profile_nam' => 'Qos-Metering-Profile-Name',
  'qos_policing_profile_nam' => 'Qos-Policing-Profile-Name',
  'qos_policy_metering'      => 'Qos-Policy-Metering',
  'qos_policy_policing'      => 'Qos-Policy-Policing',
  'qos_policy_queuing'       => 'Qos-Policy-Queuing',
  'qos_policy_queuinh'       => 'Qos-Policy-Queuing',
  'qos_profile_overhead'     => 'Qos-Profile-Overhead',
  'qos_rate'                 => 'Qos-Rate',
  'qos_rate_inbound'         => 'QOS-Rate-Inbound',
  'qos_rate_outbound'        => 'QOS-Rate-Outbound',
  'qos_ratf'                 => 'Qos-Rate',
  'qos_reference'            => 'QOS-Reference',
  'qos_referencf'            => 'QOS-Reference',
  'quiconnect_avpair'        => 'Quiconnect-AVPair',
  'quiconnect_hsp_informati' => 'Quiconnect-HSP-Information',
  'quiconnect_vnp_informati' => 'Quiconnect-VNP-Information',
  'quintum_avpair'           => 'Quintum-AVPair',
  'quintum_h323_billing_mod' => 'Quintum-h323-billing-model',
  'quintum_h323_call_origin' => 'Quintum-h323-call-origin',
  'quintum_h323_call_type'   => 'Quintum-h323-call-type',
  'quintum_h323_conf_id'     => 'Quintum-h323-conf-id',
  'quintum_h323_connect_tim' => 'Quintum-h323-connect-time',
  'quintum_h323_credit_amou' => 'Quintum-h323-credit-amount',
  'quintum_h323_credit_time' => 'Quintum-h323-credit-time',
  'quintum_h323_currency_ty' => 'Quintum-h323-currency-type',
  'quintum_h323_disconnect_' => 'Quintum-h323-disconnect-time',
  'quintum_h323_disconnecta' => 'Quintum-h323-disconnect-cause',
  'quintum_h323_gw_id'       => 'Quintum-h323-gw-id',
  'quintum_h323_incoming_co' => 'Quintum-h323-incoming-conf-id',
  'quintum_h323_preferred_l' => 'Quintum-h323-preferred-lang',
  'quintum_h323_prompt_id'   => 'Quintum-h323-prompt-id',
  'quintum_h323_redirect_ip' => 'Quintum-h323-redirect-ip-address',
  'quintum_h323_redirect_nu' => 'Quintum-h323-redirect-number',
  'quintum_h323_remote_addr' => 'Quintum-h323-remote-address',
  'quintum_h323_return_code' => 'Quintum-h323-return-code',
  'quintum_h323_setup_time'  => 'Quintum-h323-setup-time',
  'quintum_h323_time_and_da' => 'Quintum-h323-time-and-day',
  'quintum_h323_voice_quali' => 'Quintum-h323-voice-quality',
  'quintum_nas_port'         => 'Quintum-NAS-Port',
  'quintum_trunkid_in'       => 'Quintum-Trunkid-In',
  'quintum_trunkid_out'      => 'Quintum-Trunkid-Out',
  'radius_throttle_watermar' => 'Radius-Throttle-Watermark',
  'rate_limit_burst'         => 'Rate_Limit_Burst',
  'rate_limit_bursu'         => 'Rate-Limit-Burst',
  'rate_limit_excess_burst'  => 'Rate-Limit-Excess-Burst',
  'rate_limit_rate'          => 'Rate_Limit_Rate',
  'rate_limit_ratf'          => 'Rate-Limit-Rate',
  'raw_attribute'            => 'Raw-Attribute',
  'rb_client_nbns_pri'       => 'RB-Client-NBNS-Pri',
  'rb_client_nbns_sec'       => 'RB-Client-NBNS-Sec',
  'rb_npm_service_id'        => 'RB-NPM-Service-Id',
  'rb_npm_service_ie'        => 'RB-NPM-Service-Id',
  'realm'                    => 'Realm',
  'reauth'                   => 'Reauth',
  'reauth_more'              => 'Reauth-More',
  'reauth_morf'              => 'Reauth-More',
  'reauth_service_name'      => 'Reauth-Service-Name',
  'reauth_session_id'        => 'Reauth-Session-Id',
  'reauth_string'            => 'Reauth-String',
  'recv_coa_type'            => 'Recv-CoA-Type',
  'redback_reason'           => 'Redback-Reason',
  'redback_reasoo'           => 'Redback-Reason',
  'redcreek_tunneled_dns_se' => 'RedCreek-Tunneled-DNS-Server',
  'redcreek_tunneled_domain' => 'RedCreek-Tunneled-DomainName',
  'redcreek_tunneled_gatewa' => 'RedCreek-Tunneled-Gateway',
  'redcreek_tunneled_hostna' => 'RedCreek-Tunneled-HostName',
  'redcreek_tunneled_ip_add' => 'RedCreek-Tunneled-IP-Addr',
  'redcreek_tunneled_ip_net' => 'RedCreek-Tunneled-IP-Netmask',
  'redcreek_tunneled_search' => 'RedCreek-Tunneled-Search-List',
  'redcreek_tunneled_wins_s' => 'RedCreek-Tunneled-WINS-Server1',
  'redcreek_tunneled_wins_t' => 'RedCreek-Tunneled-WINS-Server2',
  'relax_filter'             => 'Relax-Filter',
  'release_source'           => 'release-source',
  'remote_media_address'     => 'remote-media-address',
  'remote_port'              => 'Remote-Port',
  'remote_poru'              => 'Remote-Port',
  'replicate_to_realm'       => 'Replicate-To-Realm',
  'reply_message'            => 'Reply-Message',
  'request_processing_stage' => 'Request-Processing-Stage',
  'requested_location_info'  => 'Requested-Location-Info',
  'response_packet_type'     => 'Response-Packet-Type',
  'rewrite_rule'             => 'Rewrite-Rule',
  'riverbed_local_user'      => 'Riverbed-Local-User',
  'riverstone_command'       => 'Riverstone-Command',
  'riverstone_snmp_config_c' => 'Riverstone-SNMP-Config-Change',
  'riverstone_system_event'  => 'Riverstone-System-Event',
  'riverstone_user_level'    => 'Riverstone-User-Level',
  'route_ipv6_information'   => 'Route-IPv6-Information',
  'route_tag'                => 'Route-Tag',
  'rp_downstream_speed_limi' => 'RP-Downstream-Speed-Limit',
  'rp_hurl'                  => 'RP-HURL',
  'rp_max_sessions_per_user' => 'RP-Max-Sessions-Per-User',
  'rp_motm'                  => 'RP-MOTM',
  'rp_upstream_speed_limit'  => 'RP-Upstream-Speed-Limit',
  'ruckus_acct_status'       => 'Ruckus-Acct-Status',
  'ruckus_grace_period'      => 'Ruckus-Grace-Period',
  'ruckus_location'          => 'Ruckus-Location',
  'ruckus_scg_cblade_ip'     => 'Ruckus-SCG-CBlade-IP',
  'ruckus_scg_dblade_ip'     => 'Ruckus-SCG-DBlade-IP',
  'ruckus_session_type'      => 'Ruckus-Session-Type',
  'ruckus_ssid'              => 'Ruckus-SSID',
  'ruckus_sta_rssi'          => 'Ruckus-Sta-RSSI',
  'ruckus_user_groups'       => 'Ruckus-User-Groups',
  'ruckus_wlanid'            => 'Ruckus-WlanID',
  'saml_aaa_assertion'       => 'SAML-AAA-Assertion',
  'sbc_adjacency'            => 'SBC-Adjacency',
  'sdx_service_name'         => 'Sdx-Service-Name',
  'sdx_session_volume_quota' => 'Sdx-Session-Volume-Quota',
  'sdx_tunnel_disconnect_ca' => 'Sdx-Tunnel-Disconnect-Cause-Info',
  'security_service'         => 'Security-Service',
  'send_coa_request'         => 'Send-CoA-Request',
  'send_coa_type'            => 'Send-CoA-Type',
  'send_disconnect_request'  => 'Send-Disconnect-Request',
  'service_action'           => 'Service-Action',
  'service_error_cause'      => 'Service-Error-Cause',
  'service_name'             => 'Service-Name',
  'service_parameter'        => 'Service-Parameter',
  'service_selection'        => 'Service-Selection',
  'service_type'             => 'Service-Type',
  'session_error_code'       => 'Session_Error_Code',
  'session_error_codf'       => 'Session-Error-Code',
  'session_error_msg'        => 'Session_Error_Msg',
  'session_error_msh'        => 'Session-Error-Msg',
  'session_protocol'         => 'session-protocol',
  'session_timeout'          => 'Session-Timeout',
  'session_traffic_limit'    => 'Session-Traffic-Limit',
  'session_traffic_limiu'    => 'Session-Traffic-Limit',
  'session_type'             => 'Session-Type',
  'sg_accounting'            => 'SG-Accounting',
  'sg_acl_data_quota'        => 'SG-Acl-Data-Quota',
  'sg_acl_data_quota_used'   => 'SG-Acl-Data-Quota-Used',
  'sg_acl_down_mean_rate'    => 'SG-Acl-Down-Mean-Rate',
  'sg_acl_eds_action'        => 'SG-Acl-Eds-Action',
  'sg_acl_idle_ignore'       => 'SG-Acl-Idle-Ignore',
  'sg_acl_next_hop'          => 'SG-Acl-Next-Hop',
  'sg_acl_packet_quota'      => 'SG-Acl-Packet-Quota',
  'sg_acl_packet_quota_used' => 'SG-Acl-Packet-Quota-Used',
  'sg_acl_priority'          => 'SG-Acl-Priority',
  'sg_acl_tcp_nat_redirect'  => 'SG-Acl-Tcp-Nat-Redirect',
  'sg_acl_up_mean_rate'      => 'SG-Acl-Up-Mean-Rate',
  'sg_action'                => 'SG-Action',
  'sg_advertise_protocol'    => 'SG-Advertise-Protocol',
  'sg_auth_source'           => 'SG-Auth-Source',
  'sg_auth_type'             => 'SG-Auth-Type',
  'sg_auto_service_name'     => 'SG-Auto-Service-Name',
  'sg_burst_size'            => 'SG-Burst-Size',
  'sg_class'                 => 'SG-Class',
  'sg_cos'                   => 'SG-Cos',
  'sg_data_quota'            => 'SG-Data-Quota',
  'sg_data_quota_used'       => 'SG-Data-Quota-Used',
  'sg_dhcp_server'           => 'SG-Dhcp-Server',
  'sg_discover_action'       => 'SG-Discover-Action',
  'sg_down_mean_rate'        => 'SG-Down-Mean-Rate',
  'sg_eds_cookie'            => 'SG-Eds-Cookie',
  'sg_eds_enc_key'           => 'SG-Eds-Enc-Key',
  'sg_filter_redirect_gw'    => 'SG-Filter-Redirect-Gw',
  'sg_fixed_ip_address'      => 'SG-Fixed-Ip-Address',
  'sg_forward_addr'          => 'SG-Forward-Addr',
  'sg_ip_address'            => 'SG-Ip-Address',
  'sg_ip_primary'            => 'SG-Ip-Primary',
  'sg_ip_secondary'          => 'SG-Ip-Secondary',
  'sg_ip_tunnel'             => 'SG-Ip-Tunnel',
  'sg_l2tp_tunnel_password'  => 'SG-L2tp-Tunnel-Password',
  'sg_lease_time'            => 'SG-Lease-Time',
  'sg_mac_address'           => 'SG-Mac-Address',
  'sg_max_allowed_nodes'     => 'SG-Max-Allowed-Nodes',
  'sg_max_allowed_sessions'  => 'SG-Max-Allowed-Sessions',
  'sg_nativeip'              => 'SG-Nativeip',
  'sg_next_hop'              => 'SG-Next-Hop',
  'sg_next_service_name'     => 'SG-Next-Service-Name',
  'sg_nip_pipe_next_hop'     => 'SG-Nip-Pipe-Next-Hop',
  'sg_node_acct_username'    => 'SG-Node-Acct-Username',
  'sg_node_default_service'  => 'SG-Node-Default-Service',
  'sg_node_dynamic_service'  => 'SG-Node-Dynamic-Service',
  'sg_node_fixed_ip_address' => 'SG-Node-Fixed-Ip-Address',
  'sg_node_group'            => 'SG-Node-Group',
  'sg_opt82_relay_remote_id' => 'SG-Opt82-Relay-Remote-Id',
  'sg_orig_name'             => 'SG-Orig-Name',
  'sg_original_url_prefix'   => 'SG-Original-Url-Prefix',
  'sg_parent_user_name'      => 'SG-Parent-User-Name',
  'sg_personal_site'         => 'SG-Personal-Site',
  'sg_protocol_type'         => 'SG-Protocol-Type',
  'sg_release_action'        => 'SG-Release-Action',
  'sg_remote_filter_redirec' => 'SG-Remote-Filter-Redirect-Gw',
  'sg_roaming'               => 'SG-Roaming',
  'sg_service_acl_quota_ign' => 'SG-Service-Acl-Quota-Ignore',
  'sg_service_acl_quota_ind' => 'SG-Service-Acl-Quota-Indication',
  'sg_service_cache'         => 'SG-Service-Cache',
  'sg_service_name'          => 'SG-Service-Name',
  'sg_service_quota_ignore'  => 'SG-Service-Quota-Ignore',
  'sg_service_timeout'       => 'SG-Service-Timeout',
  'sg_ssc_host'              => 'SG-SSC-Host',
  'sg_tunnel_assignment_id'  => 'SG-Tunnel-Assignment-Id',
  'sg_tunnel_client_ip_addr' => 'SG-Tunnel-Client-Ip-Address',
  'sg_tunnel_id'             => 'SG-Tunnel-Id',
  'sg_up_mean_rate'          => 'SG-Up-Mean-Rate',
  'sg_user_group'            => 'SG-User-Group',
  'sg_wimax_acl_arq_enable'  => 'SG-Wimax-Acl-ARQ-Enable',
  'sg_wimax_acl_maximum_lat' => 'SG-Wimax-Acl-Maximum-Latency',
  'sg_wimax_acl_maximum_tra' => 'SG-Wimax-Acl-Maximum-Traffic-Burst',
  'sg_wimax_acl_min_reserve' => 'SG-Wimax-Acl-Min-Reserved-Traffic-Rate',
  'sg_wimax_acl_schedule_ty' => 'SG-Wimax-Acl-Schedule-Type',
  'sg_wimax_acl_sdu_size'    => 'SG-Wimax-Acl-Sdu-Size',
  'sg_wimax_acl_tolerated_j' => 'SG-Wimax-Acl-Tolerated-Jitter',
  'sg_wimax_acl_unsolicited' => 'SG-Wimax-Acl-Unsolicited-Grant-Int',
  'sg_wimax_acl_unsolicitee' => 'SG-Wimax-Acl-Unsolicited-Polling-Int',
  'sg_wimax_bsid_next_hop'   => 'SG-Wimax-Bsid-Next-Hop',
  'sg_wimax_dm_action_code'  => 'SG-Wimax-DM-Action-Code',
  'sg_wimax_mobility_featur' => 'SG-Wimax-Mobility-Features-Supported',
  'sg_wimax_msk_lifetime'    => 'SG-Wimax-MSK-Lifetime',
  'sg_wimax_node_disconnect' => 'SG-Wimax-Node-Disconnect',
  'sg_wimax_reduced_resourc' => 'SG-Wimax-Reduced-Resources',
  'sg_wimax_service_flow_do' => 'SG-Wimax-Service-Flow-Down',
  'sg_wimax_service_flow_mo' => 'SG-Wimax-Service-Flow-Modification',
  'sha1_password'            => 'SHA1-Password',
  'sha_password'             => 'SHA-Password',
  'shaping_profile_name'     => 'Shaping-Profile-Name',
  'shaping_profile_namf'     => 'Shaping-Profile-Name',
  'shasta_service_profile'   => 'Shasta-Service-Profile',
  'shasta_user_privilege'    => 'Shasta-User-Privilege',
  'shasta_vpn_name'          => 'Shasta-VPN-Name',
  'shiva_acct_serv_switch'   => 'Shiva-Acct-Serv-Switch',
  'shiva_bak_key'            => 'Shiva-Bak-Key',
  'shiva_bandwidth_trap'     => 'Shiva-Bandwidth-Trap',
  'shiva_break_key'          => 'Shiva-Break-Key',
  'shiva_call_durn_trap'     => 'Shiva-Call-Durn-Trap',
  'shiva_called_number'      => 'Shiva-Called-Number',
  'shiva_calling_number'     => 'Shiva-Calling-Number',
  'shiva_circuit_type'       => 'Shiva-Circuit-Type',
  'shiva_compression'        => 'Shiva-Compression',
  'shiva_compression_type'   => 'Shiva-Compression-Type',
  'shiva_connect_reason'     => 'Shiva-Connect-Reason',
  'shiva_customer_id'        => 'Shiva-Customer-Id',
  'shiva_default_host'       => 'Shiva-Default-Host',
  'shiva_dhcp_leasetime'     => 'Shiva-DHCP-Leasetime',
  'shiva_dial_timeout'       => 'Shiva-Dial-Timeout',
  'shiva_dialback_delay'     => 'Shiva-Dialback-Delay',
  'shiva_disconnect_reason'  => 'Shiva-Disconnect-Reason',
  'shiva_event_flags'        => 'Shiva-Event-Flags',
  'shiva_function'           => 'Shiva-Function',
  'shiva_fwd_key'            => 'Shiva-Fwd-Key',
  'shiva_lat_groups'         => 'Shiva-LAT-Groups',
  'shiva_lat_port'           => 'Shiva-LAT-Port',
  'shiva_link_protocol'      => 'Shiva-Link-Protocol',
  'shiva_link_speed'         => 'Shiva-Link-Speed',
  'shiva_links_in_bundle'    => 'Shiva-Links-In-Bundle',
  'shiva_max_vcs'            => 'Shiva-Max-VCs',
  'shiva_menu_name'          => 'Shiva-Menu-Name',
  'shiva_minimum_call'       => 'Shiva-Minimum-Call',
  'shiva_network_protocols'  => 'Shiva-Network-Protocols',
  'shiva_rtc_timestamp'      => 'Shiva-RTC-Timestamp',
  'shiva_session_id'         => 'Shiva-Session-Id',
  'shiva_termtype'           => 'Shiva-Termtype',
  'shiva_type_of_service'    => 'Shiva-Type-Of-Service',
  'shiva_user_attributes'    => 'Shiva-User-Attributes',
  'shiva_user_flags'         => 'Shiva-User-Flags',
  'sid_auth'                 => 'SID-Auth',
  'siemens_ap_name'          => 'Siemens-AP-Name',
  'siemens_ap_serial'        => 'Siemens-AP-Serial',
  'siemens_bss_mac'          => 'Siemens-BSS-MAC',
  'siemens_egress_rc_name'   => 'Siemens-Egress-RC-Name',
  'siemens_ingress_rc_name'  => 'Siemens-Ingress-RC-Name',
  'siemens_policy_name'      => 'Siemens-Policy-Name',
  'siemens_ssid'             => 'Siemens-SSID',
  'siemens_topology_name'    => 'Siemens-Topology-Name',
  'siemens_url_redirection'  => 'Siemens-URL-Redirection',
  'siemens_vns_name'         => 'Siemens-VNS-Name',
  'simultaneous_use'         => 'Simultaneous-Use',
  'sip_aor'                  => 'SIP-AOR',
  'sip_avp'                  => 'SIP-AVP',
  'sip_conf_id'              => 'sip-conf-id',
  'sip_cseq'                 => 'Sip-Cseq',
  'sip_from'                 => 'Sip-From',
  'sip_from_tag'             => 'Sip-From-Tag',
  'sip_group'                => 'Sip-Group',
  'sip_hdr'                  => 'sip-hdr',
  'sip_method'               => 'Sip-Method',
  'sip_methoe'               => 'Sip-Method',
  'sip_response_code'        => 'Sip-Response-Code',
  'sip_rpid'                 => 'Sip-Rpid',
  'sip_src_ip'               => 'Sip-Src-IP',
  'sip_src_port'             => 'Sip-Src-Port',
  'sip_to'                   => 'Sip-To',
  'sip_to_tag'               => 'Sip-To-Tag',
  'sip_translated_request_u' => 'Sip-Translated-Request-URI',
  'sip_translated_request_v' => 'Sip-Translated-Request-URI',
  'sip_uri_user'             => 'Sip-Uri-User',
  'sky_wifi_ap_id'           => 'Sky-Wifi-AP-ID',
  'sky_wifi_billing_class'   => 'Sky-Wifi-Billing-Class',
  'sky_wifi_credentials'     => 'Sky-Wifi-Credentials',
  'sky_wifi_filter_profile'  => 'Sky-Wifi-Filter-Profile',
  'sky_wifi_provider_id'     => 'Sky-Wifi-Provider-ID',
  'sky_wifi_service_id'      => 'Sky-Wifi-Service-ID',
  'slipstream_auth'          => 'Slipstream-Auth',
  'smb_account_ctrl'         => 'SMB-Account-CTRL',
  'smb_account_ctrl_text'    => 'SMB-Account-CTRL-TEXT',
  'smd5_password'            => 'SMD5-Password',
  'sn1_access_link_ip_frag'  => 'SN1-Access-link-IP-Frag',
  'sn1_acct_input_giga_drop' => 'SN1-Acct-Input-Giga-Dropped',
  'sn1_acct_input_octets_dr' => 'SN1-Acct-Input-Octets-Dropped',
  'sn1_acct_input_packets_d' => 'SN1-Acct-Input-Packets-Dropped',
  'sn1_acct_output_giga_dro' => 'SN1-Acct-Output-Giga-Dropped',
  'sn1_acct_output_octets_d' => 'SN1-Acct-Output-Octets-Dropped',
  'sn1_acct_output_packets_' => 'SN1-Acct-Output-Packets-Dropped',
  'sn1_admin_expiry'         => 'SN1-Admin-Expiry',
  'sn1_admin_permission'     => 'SN1-Admin-Permission',
  'sn1_anid'                 => 'SN1-ANID',
  'sn1_assigned_vlan_id'     => 'SN1-Assigned-VLAN-ID',
  'sn1_call_id'              => 'SN1-Call-Id',
  'sn1_cause_for_rec_closin' => 'SN1-Cause-For-Rec-Closing',
  'sn1_cfpolicy_id'          => 'SN1-CFPolicy-ID',
  'sn1_change_condition'     => 'SN1-Change-Condition',
  'sn1_charging_vpn_name'    => 'SN1-Charging-VPN-Name',
  'sn1_chrg_char_selection_' => 'SN1-Chrg-Char-Selection-Mode',
  'sn1_data_tunnel_ignore_d' => 'SN1-Data-Tunnel-Ignore-DF-Bit',
  'sn1_dhcp_lease_expiry_po' => 'SN1-DHCP-Lease-Expiry-Policy',
  'sn1_direction'            => 'SN1-Direction',
  'sn1_disconnect_reason'    => 'SN1-Disconnect-Reason',
  'sn1_dns_proxy_intercept_' => 'SN1-DNS-Proxy-Intercept-List',
  'sn1_dns_proxy_use_subscr' => 'SN1-DNS-Proxy-Use-Subscr-Addr',
  'sn1_dynamic_addr_alloc_i' => 'SN1-Dynamic-Addr-Alloc-Ind-Flag',
  'sn1_ecs_data_volume'      => 'SN1-Ecs-Data-Volume',
  'sn1_enable_qos_renegotia' => 'SN1-Enable-QoS-Renegotiation',
  'sn1_event'                => 'SN1-Event',
  'sn1_ext_inline_srvr_cont' => 'SN1-Ext-Inline-Srvr-Context',
  'sn1_ext_inline_srvr_down' => 'SN1-Ext-Inline-Srvr-Down-Addr',
  'sn1_ext_inline_srvr_dowo' => 'SN1-Ext-Inline-Srvr-Down-VLAN',
  'sn1_ext_inline_srvr_pref' => 'SN1-Ext-Inline-Srvr-Preference',
  'sn1_ext_inline_srvr_up_a' => 'SN1-Ext-Inline-Srvr-Up-Addr',
  'sn1_ext_inline_srvr_up_v' => 'SN1-Ext-Inline-Srvr-Up-VLAN',
  'sn1_firewall_enabled'     => 'SN1-Firewall-Enabled',
  'sn1_firewall_policy'      => 'SN1-Firewall-Policy',
  'sn1_fmc_location'         => 'SN1-FMC-Location',
  'sn1_ggsn1_mip_required'   => 'SN1-GGSN1-MIP-Required',
  'sn1_gratuitous_arp_aggre' => 'SN1-Gratuitous-ARP-Aggressive',
  'sn1_gtp_version'          => 'SN1-GTP-Version',
  'sn1_ha_send_dns_address'  => 'SN1-HA-Send-DNS-ADDRESS',
  'sn1_home_behavior'        => 'SN1-Home-Behavior',
  'sn1_home_profile'         => 'SN1-Home-Profile',
  'sn1_home_sub_use_ggsn'    => 'SN1-Home-Sub-Use-GGSN',
  'sn1_ims_am_address'       => 'SN1-IMS-AM-Address',
  'sn1_ims_am_domain_name'   => 'SN1-IMS-AM-Domain-Name',
  'sn1_imsi'                 => 'SN1-IMSI',
  'sn1_internal_sm_index'    => 'SN1-Internal-SM-Index',
  'sn1_ip_alloc_method'      => 'SN1-IP-Alloc-Method',
  'sn1_ip_filter_in'         => 'SN1-IP-Filter-In',
  'sn1_ip_filter_out'        => 'SN1-IP-Filter-Out',
  'sn1_ip_header_compressio' => 'SN1-IP-Header-Compression',
  'sn1_ip_hide_service_addr' => 'SN1-IP-Hide-Service-Address',
  'sn1_ip_in_acl'            => 'SN1-IP-In-ACL',
  'sn1_ip_in_plcy_grp'       => 'SN1-IP-In-Plcy-Grp',
  'sn1_ip_out_acl'           => 'SN1-IP-Out-ACL',
  'sn1_ip_out_plcy_grp'      => 'SN1-IP-Out-Plcy-Grp',
  'sn1_ip_pool_name'         => 'SN1-IP-Pool-Name',
  'sn1_ip_source_validation' => 'SN1-IP-Source-Validation',
  'sn1_ip_source_violate_no' => 'SN1-IP-Source-Violate-No-Acct',
  'sn1_ip_src_validation_dr' => 'SN1-IP-Src-Validation-Drop-Limit',
  'sn1_ipv6_dns_proxy'       => 'SN1-IPv6-DNS-Proxy',
  'sn1_ipv6_egress_filterin' => 'SN1-IPv6-Egress-Filtering',
  'sn1_ipv6_min_link_mtu'    => 'SN1-IPv6-Min-Link-MTU',
  'sn1_ipv6_num_rtr_advt'    => 'SN1-IPv6-num-rtr-advt',
  'sn1_ipv6_primary_dns'     => 'SN1-IPv6-Primary-DNS',
  'sn1_ipv6_rtr_advt_interv' => 'SN1-IPv6-rtr-advt-interval',
  'sn1_ipv6_sec_pool'        => 'SN1-IPv6-Sec-Pool',
  'sn1_ipv6_sec_prefix'      => 'SN1-IPv6-Sec-Prefix',
  'sn1_ipv6_secondary_dns'   => 'SN1-IPv6-Secondary-DNS',
  'sn1_l3_to_l2_tun_addr_po' => 'SN1-L3-to-L2-Tun-Addr-Policy',
  'sn1_local_ip_address'     => 'SN1-Local-IP-Address',
  'sn1_long_duration_action' => 'SN1-Long-Duration-Action',
  'sn1_long_duration_notifi' => 'SN1-Long-Duration-Notification',
  'sn1_long_duration_timeou' => 'SN1-Long-Duration-Timeout',
  'sn1_mediation_acct_rsp_a' => 'SN1-Mediation-Acct-Rsp-Action',
  'sn1_mediation_enabled'    => 'SN1-Mediation-Enabled',
  'sn1_mediation_no_interim' => 'SN1-Mediation-No-Interims',
  'sn1_mediation_vpn_name'   => 'SN1-Mediation-VPN-Name',
  'sn1_min_compress_size'    => 'SN1-Min-Compress-Size',
  'sn1_mip_aaa_assign_addr'  => 'SN1-MIP-AAA-Assign-Addr',
  'sn1_mip_ancid'            => 'SN1-MIP-ANCID',
  'sn1_mip_dual_anchor'      => 'SN1-MIP-Dual-Anchor',
  'sn1_mip_ha_assignment_ta' => 'SN1-MIP-HA-Assignment-Table',
  'sn1_mip_match_aaa_assign' => 'SN1-MIP-Match-AAA-Assign-Addr',
  'sn1_mip_reg_lifetime_rea' => 'SN1-MIP-Reg-Lifetime-Realm',
  'sn1_mip_send_ancid'       => 'SN1-MIP-Send-Ancid',
  'sn1_mip_send_correlation' => 'SN1-MIP-Send-Correlation-Info',
  'sn1_mip_send_imsi'        => 'SN1-MIP-Send-Imsi',
  'sn1_mip_send_term_verifi' => 'SN1-MIP-Send-Term-Verification',
  'sn1_mn_ha_hash_algorithm' => 'SN1-MN-HA-Hash-Algorithm',
  'sn1_mn_ha_timestamp_tole' => 'SN1-MN-HA-Timestamp-Tolerance',
  'sn1_mode'                 => 'SN1-Mode',
  'sn1_ms_isdn'              => 'SN1-MS-ISDN',
  'sn1_nai_construction_dom' => 'SN1-NAI-Construction-Domain',
  'sn1_npu_qos_priority'     => 'SN1-NPU-Qos-Priority',
  'sn1_ntk_initiated_ctx_in' => 'SN1-Ntk-Initiated-Ctx-Ind-Flag',
  'sn1_ntk_session_disconne' => 'SN1-Ntk-Session-Disconnect-Flag',
  'sn1_nw_reachability_serv' => 'SN1-Nw-Reachability-Server-Name',
  'sn1_overload_disc_connec' => 'SN1-Overload-Disc-Connect-Time',
  'sn1_overload_disconnect'  => 'SN1-Overload-Disconnect',
  'sn1_pdif_mip_release_tia' => 'SN1-PDIF-MIP-Release-TIA',
  'sn1_pdif_mip_required'    => 'SN1-PDIF-MIP-Required',
  'sn1_pdif_mip_simple_ip_f' => 'SN1-PDIF-MIP-Simple-IP-Fallback',
  'sn1_pdsn1_correlation_id' => 'SN1-PDSN1-Correlation-Id',
  'sn1_pdsn1_handoff_req_ip' => 'SN1-PDSN1-Handoff-Req-IP-Addr',
  'sn1_pdsn1_nas_id'         => 'SN1-PDSN1-NAS-Id',
  'sn1_pdsn1_nas_ip_address' => 'SN1-PDSN1-NAS-IP-Address',
  'sn1_permit_user_mcast_pd' => 'SN1-Permit-User-Mcast-PDUs',
  'sn1_ppp_accept_peer_v6if' => 'SN1-PPP-Accept-Peer-v6Ifid',
  'sn1_ppp_always_on_vse'    => 'SN1-PPP-Always-On-Vse',
  'sn1_ppp_data_compression' => 'SN1-PPP-Data-Compression',
  'sn1_ppp_data_compressioo' => 'SN1-PPP-Data-Compression-Mode',
  'sn1_ppp_keepalive'        => 'SN1-PPP-Keepalive',
  'sn1_ppp_nw_layer_ipv4'    => 'SN1-PPP-NW-Layer-IPv4',
  'sn1_ppp_nw_layer_ipv6'    => 'SN1-PPP-NW-Layer-IPv6',
  'sn1_ppp_outbound_passwor' => 'SN1-PPP-Outbound-Password',
  'sn1_ppp_outbound_usernam' => 'SN1-PPP-Outbound-Username',
  'sn1_ppp_progress_code'    => 'SN1-PPP-Progress-Code',
  'sn1_ppp_reneg_disc'       => 'SN1-PPP-Reneg-Disc',
  'sn1_prepaid'              => 'SN1-Prepaid',
  'sn1_prepaid_compressed_c' => 'SN1-Prepaid-Compressed-Count',
  'sn1_prepaid_final_durati' => 'SN1-Prepaid-Final-Duration-Alg',
  'sn1_prepaid_inbound_octe' => 'SN1-Prepaid-Inbound-Octets',
  'sn1_prepaid_outbound_oct' => 'SN1-Prepaid-Outbound-Octets',
  'sn1_prepaid_preference'   => 'SN1-Prepaid-Preference',
  'sn1_prepaid_timeout'      => 'SN1-Prepaid-Timeout',
  'sn1_prepaid_total_octets' => 'SN1-Prepaid-Total-Octets',
  'sn1_prepaid_watermark'    => 'SN1-Prepaid-Watermark',
  'sn1_primary_dcca_peer'    => 'SN1-Primary-DCCA-Peer',
  'sn1_primary_dns_server'   => 'SN1-Primary-DNS-Server',
  'sn1_primary_nbns_server'  => 'SN1-Primary-NBNS-Server',
  'sn1_proxy_mip'            => 'SN1-Proxy-MIP',
  'sn1_qos_background_class' => 'SN1-QoS-Background-Class',
  'sn1_qos_class_background' => 'SN1-QoS-Class-Background-PHB',
  'sn1_qos_class_conversati' => 'SN1-QoS-Class-Conversational-PHB',
  'sn1_qos_class_interactiv' => 'SN1-QoS-Class-Interactive-1-PHB',
  'sn1_qos_class_interactiw' => 'SN1-QoS-Class-Interactive-2-PHB',
  'sn1_qos_class_interactix' => 'SN1-QoS-Class-Interactive-3-PHB',
  'sn1_qos_class_streaming_' => 'SN1-QoS-Class-Streaming-PHB',
  'sn1_qos_conversation_cla' => 'SN1-QoS-Conversation-Class',
  'sn1_qos_interactive1_cla' => 'SN1-QoS-Interactive1-Class',
  'sn1_qos_interactive2_cla' => 'SN1-QoS-Interactive2-Class',
  'sn1_qos_interactive3_cla' => 'SN1-QoS-Interactive3-Class',
  'sn1_qos_negotiated'       => 'SN1-QoS-Negotiated',
  'sn1_qos_renegotiation_ti' => 'SN1-QoS-Renegotiation-Timeout',
  'sn1_qos_streaming_class'  => 'SN1-QoS-Streaming-Class',
  'sn1_qos_tp_dnlk'          => 'SN1-QoS-Tp-Dnlk',
  'sn1_qos_tp_uplk'          => 'SN1-QoS-Tp-Uplk',
  'sn1_qos_traffic_policy'   => 'SN1-QoS-Traffic-Policy',
  'sn1_rad_apn_name'         => 'SN1-Rad-APN-Name',
  'sn1_radius_returned_user' => 'SN1-Radius-Returned-Username',
  'sn1_re_chap_interval'     => 'SN1-Re-CHAP-Interval',
  'sn1_roaming_behavior'     => 'SN1-Roaming-Behavior',
  'sn1_roaming_profile'      => 'SN1-Roaming-Profile',
  'sn1_roaming_sub_use_ggsn' => 'SN1-Roaming-Sub-Use-GGSN',
  'sn1_rohc_profile_name'    => 'SN1-ROHC-Profile-Name',
  'sn1_routing_area_id'      => 'SN1-Routing-Area-Id',
  'sn1_secondary_dcca_peer'  => 'SN1-Secondary-DCCA-Peer',
  'sn1_secondary_dns_server' => 'SN1-Secondary-DNS-Server',
  'sn1_secondary_nbns_serve' => 'SN1-Secondary-NBNS-Server',
  'sn1_service_address'      => 'SN1-Service-Address',
  'sn1_service_type'         => 'SN1-Service-Type',
  'sn1_simultaneous_sip_mip' => 'SN1-Simultaneous-SIP-MIP',
  'sn1_sip_method'           => 'SN1-SIP-Method',
  'sn1_subs_acc_flow_traffi' => 'SN1-Subs-Acc-Flow-Traffic-Valid',
  'sn1_subs_imsa_service_na' => 'SN1-Subs-IMSA-Service-Name',
  'sn1_subs_vj_slotid_cmp_n' => 'SN1-Subs-VJ-Slotid-Cmp-Neg-Mode',
  'sn1_subscriber_accountin' => 'SN1-Subscriber-Accounting',
  'sn1_subscriber_acct_inte' => 'SN1-Subscriber-Acct-Interim',
  'sn1_subscriber_acct_mode' => 'SN1-Subscriber-Acct-Mode',
  'sn1_subscriber_acct_rsp_' => 'SN1-Subscriber-Acct-Rsp-Action',
  'sn1_subscriber_acct_star' => 'SN1-Subscriber-Acct-Start',
  'sn1_subscriber_acct_stop' => 'SN1-Subscriber-Acct-Stop',
  'sn1_subscriber_class'     => 'SN1-Subscriber-Class',
  'sn1_subscriber_ip_hdr_ne' => 'SN1-Subscriber-IP-Hdr-Neg-Mode',
  'sn1_subscriber_ip_tos_co' => 'SN1-Subscriber-IP-TOS-Copy',
  'sn1_subscriber_nexthop_a' => 'SN1-Subscriber-Nexthop-Address',
  'sn1_subscriber_no_interi' => 'SN1-Subscriber-No-Interims',
  'sn1_subscriber_permissio' => 'SN1-Subscriber-Permission',
  'sn1_subscriber_template_' => 'SN1-Subscriber-Template-Name',
  'sn1_tp_dnlk_burst_size'   => 'SN1-Tp-Dnlk-Burst-Size',
  'sn1_tp_dnlk_committed_da' => 'SN1-Tp-Dnlk-Committed-Data-Rate',
  'sn1_tp_dnlk_exceed_actio' => 'SN1-Tp-Dnlk-Exceed-Action',
  'sn1_tp_dnlk_peak_data_ra' => 'SN1-Tp-Dnlk-Peak-Data-Rate',
  'sn1_tp_dnlk_violate_acti' => 'SN1-Tp-Dnlk-Violate-Action',
  'sn1_tp_uplk_burst_size'   => 'SN1-Tp-Uplk-Burst-Size',
  'sn1_tp_uplk_committed_da' => 'SN1-Tp-Uplk-Committed-Data-Rate',
  'sn1_tp_uplk_exceed_actio' => 'SN1-Tp-Uplk-Exceed-Action',
  'sn1_tp_uplk_peak_data_ra' => 'SN1-Tp-Uplk-Peak-Data-Rate',
  'sn1_tp_uplk_violate_acti' => 'SN1-Tp-Uplk-Violate-Action',
  'sn1_traffic_group'        => 'SN1-Traffic-Group',
  'sn1_transparent_data'     => 'SN1-Transparent-Data',
  'sn1_tun_addr_policy'      => 'SN1-Tun-Addr-Policy',
  'sn1_tunnel_gn'            => 'SN1-Tunnel-Gn',
  'sn1_tunnel_isakmp_crypto' => 'SN1-Tunnel-ISAKMP-Crypto-Map',
  'sn1_tunnel_isakmp_secret' => 'SN1-Tunnel-ISAKMP-Secret',
  'sn1_tunnel_load_balancin' => 'SN1-Tunnel-Load-Balancing',
  'sn1_tunnel_password'      => 'SN1-Tunnel-Password',
  'sn1_unclassify_list_name' => 'SN1-Unclassify-List-Name',
  'sn1_virtual_apn_name'     => 'SN1-Virtual-APN-Name',
  'sn1_visiting_behavior'    => 'SN1-Visiting-Behavior',
  'sn1_visiting_profile'     => 'SN1-Visiting-Profile',
  'sn1_visiting_sub_use_ggs' => 'SN1-Visiting-Sub-Use-GGSN',
  'sn1_voice_push_list_name' => 'SN1-Voice-Push-List-Name',
  'sn1_vpn_id'               => 'SN1-VPN-ID',
  'sn1_vpn_name'             => 'SN1-VPN-Name',
  'sn_access_link_ip_frag'   => 'SN-Access-link-IP-Frag',
  'sn_acct_input_giga_dropp' => 'SN-Acct-Input-Giga-Dropped',
  'sn_acct_input_octets_dro' => 'SN-Acct-Input-Octets-Dropped',
  'sn_acct_input_packets_dr' => 'SN-Acct-Input-Packets-Dropped',
  'sn_acct_output_giga_drop' => 'SN-Acct-Output-Giga-Dropped',
  'sn_acct_output_octets_dr' => 'SN-Acct-Output-Octets-Dropped',
  'sn_acct_output_packets_d' => 'SN-Acct-Output-Packets-Dropped',
  'sn_acs_credit_control_gr' => 'SN-Acs-Credit-Control-Group',
  'sn_admin_expiry'          => 'SN-Admin-Expiry',
  'sn_admin_permission'      => 'SN-Admin-Permission',
  'sn_anid'                  => 'SN-ANID',
  'sn_assigned_vlan_id'      => 'SN-Assigned-VLAN-ID',
  'sn_authorised_qos'        => 'SN-Authorised-Qos',
  'sn_bandwidth_policy'      => 'SN-Bandwidth-Policy',
  'sn_call_id'               => 'SN-Call-Id',
  'sn_cause_code'            => 'SN-Cause-Code',
  'sn_cause_for_rec_closing' => 'SN-Cause-For-Rec-Closing',
  'sn_cbb_policy'            => 'SN-CBB-Policy',
  'sn_cf_call_international' => 'SN-CF-Call-International',
  'sn_cf_call_local'         => 'SN-CF-Call-Local',
  'sn_cf_call_longdistance'  => 'SN-CF-Call-LongDistance',
  'sn_cf_call_premium'       => 'SN-CF-Call-Premium',
  'sn_cf_call_roamingintern' => 'SN-CF-Call-RoamingInternatnl',
  'sn_cf_call_transfer'      => 'SN-CF-Call-Transfer',
  'sn_cf_call_waiting'       => 'SN-CF-Call-Waiting',
  'sn_cf_cid_display'        => 'SN-CF-CId-Display',
  'sn_cf_cid_display_blocke' => 'SN-CF-CId-Display-Blocked',
  'sn_cf_follow_me'          => 'SN-CF-Follow-Me',
  'sn_cf_forward_busy_line'  => 'SN-CF-Forward-Busy-Line',
  'sn_cf_forward_no_answer'  => 'SN-CF-Forward-No-Answer',
  'sn_cf_forward_not_regd'   => 'SN-CF-Forward-Not-Regd',
  'sn_cf_forward_unconditio' => 'SN-CF-Forward-Unconditional',
  'sn_cfpolicy_id'           => 'SN-CFPolicy-ID',
  'sn_change_condition'      => 'SN-Change-Condition',
  'sn_charging_vpn_name'     => 'SN-Charging-VPN-Name',
  'sn_chrg_char_selection_m' => 'SN-Chrg-Char-Selection-Mode',
  'sn_content_disposition'   => 'SN-Content-Disposition',
  'sn_content_length'        => 'SN-Content-Length',
  'sn_content_type'          => 'SN-Content-Type',
  'sn_cr_international_cid'  => 'SN-CR-International-Cid',
  'sn_cr_longdistance_cid'   => 'SN-CR-LongDistance-Cid',
  'sn_cscf_app_server_info'  => 'SN-CSCF-App-Server-Info',
  'sn_cscf_rf_sdp_media_com' => 'SN-CSCF-Rf-SDP-Media-Components',
  'sn_cscf_subscriber_ip_ad' => 'SN-Cscf-Subscriber-Ip-Address',
  'sn_data_tunnel_ignore_df' => 'SN-Data-Tunnel-Ignore-DF-Bit',
  'sn_dhcp_lease_expiry_pol' => 'SN-DHCP-Lease-Expiry-Policy',
  'sn_dhcp_options'          => 'SN-DHCP-Options',
  'sn_direction'             => 'SN-Direction',
  'sn_disconnect_reason'     => 'SN-Disconnect-Reason',
  'sn_dns_proxy_intercept_l' => 'SN-DNS-Proxy-Intercept-List',
  'sn_dns_proxy_use_subscr_' => 'SN-DNS-Proxy-Use-Subscr-Addr',
  'sn_dynamic_addr_alloc_in' => 'SN-Dynamic-Addr-Alloc-Ind-Flag',
  'sn_ecs_data_volume'       => 'SN-Ecs-Data-Volume',
  'sn_enable_qos_renegotiat' => 'SN-Enable-QoS-Renegotiation',
  'sn_event'                 => 'SN-Event',
  'sn_ext_inline_srvr_conte' => 'SN-Ext-Inline-Srvr-Context',
  'sn_ext_inline_srvr_down_' => 'SN-Ext-Inline-Srvr-Down-Addr',
  'sn_ext_inline_srvr_downa' => 'SN-Ext-Inline-Srvr-Down-VLAN',
  'sn_ext_inline_srvr_prefe' => 'SN-Ext-Inline-Srvr-Preference',
  'sn_ext_inline_srvr_up_ad' => 'SN-Ext-Inline-Srvr-Up-Addr',
  'sn_ext_inline_srvr_up_vl' => 'SN-Ext-Inline-Srvr-Up-VLAN',
  'sn_fast_reauth_username'  => 'SN-Fast-Reauth-Username',
  'sn_firewall_enabled'      => 'SN-Firewall-Enabled',
  'sn_firewall_policy'       => 'SN-Firewall-Policy',
  'sn_fmc_location'          => 'SN-FMC-Location',
  'sn_ggsn_address'          => 'SN-GGSN-Address',
  'sn_ggsn_mip_required'     => 'SN-GGSN-MIP-Required',
  'sn_gratuitous_arp_aggres' => 'SN-Gratuitous-ARP-Aggressive',
  'sn_gtp_version'           => 'SN-GTP-Version',
  'sn_ha_send_dns_address'   => 'SN-HA-Send-DNS-ADDRESS',
  'sn_handoff_indicator'     => 'SN-Handoff-Indicator',
  'sn_home_behavior'         => 'SN-Home-Behavior',
  'sn_home_profile'          => 'SN-Home-Profile',
  'sn_home_sub_use_ggsn'     => 'SN-Home-Sub-Use-GGSN',
  'sn_ims_am_address'        => 'SN-IMS-AM-Address',
  'sn_ims_am_domain_name'    => 'SN-IMS-AM-Domain-Name',
  'sn_ims_charging_identifi' => 'SN-IMS-Charging-Identifier',
  'sn_imsi'                  => 'SN-IMSI',
  'sn_internal_sm_index'     => 'SN-Internal-SM-Index',
  'sn_ip_alloc_method'       => 'SN-IP-Alloc-Method',
  'sn_ip_filter_in'          => 'SN-IP-Filter-In',
  'sn_ip_filter_out'         => 'SN-IP-Filter-Out',
  'sn_ip_header_compression' => 'SN-IP-Header-Compression',
  'sn_ip_hide_service_addre' => 'SN-IP-Hide-Service-Address',
  'sn_ip_in_acl'             => 'SN-IP-In-ACL',
  'sn_ip_in_plcy_grp'        => 'SN-IP-In-Plcy-Grp',
  'sn_ip_out_acl'            => 'SN-IP-Out-ACL',
  'sn_ip_out_plcy_grp'       => 'SN-IP-Out-Plcy-Grp',
  'sn_ip_pool_name'          => 'SN-IP-Pool-Name',
  'sn_ip_source_validation'  => 'SN-IP-Source-Validation',
  'sn_ip_source_violate_no_' => 'SN-IP-Source-Violate-No-Acct',
  'sn_ip_src_validation_dro' => 'SN-IP-Src-Validation-Drop-Limit',
  'sn_ipv6_dns_proxy'        => 'SN-IPv6-DNS-Proxy',
  'sn_ipv6_egress_filtering' => 'SN-IPv6-Egress-Filtering',
  'sn_ipv6_min_link_mtu'     => 'SN-IPv6-Min-Link-MTU',
  'sn_ipv6_num_rtr_advt'     => 'SN-IPv6-num-rtr-advt',
  'sn_ipv6_primary_dns'      => 'SN-IPv6-Primary-DNS',
  'sn_ipv6_rtr_advt_interva' => 'SN-IPv6-rtr-advt-interval',
  'sn_ipv6_sec_pool'         => 'SN-IPv6-Sec-Pool',
  'sn_ipv6_sec_prefix'       => 'SN-IPv6-Sec-Prefix',
  'sn_ipv6_secondary_dns'    => 'SN-IPv6-Secondary-DNS',
  'sn_is_unregistered_subsc' => 'SN-Is-Unregistered-Subscriber',
  'sn_isc_template_name'     => 'SN-ISC-Template-Name',
  'sn_l3_to_l2_tun_addr_pol' => 'SN-L3-to-L2-Tun-Addr-Policy',
  'sn_local_ip_address'      => 'SN-Local-IP-Address',
  'sn_long_duration_action'  => 'SN-Long-Duration-Action',
  'sn_long_duration_notific' => 'SN-Long-Duration-Notification',
  'sn_long_duration_timeout' => 'SN-Long-Duration-Timeout',
  'sn_max_sec_contexts_per_' => 'SN-Max-Sec-Contexts-Per-Subs',
  'sn_mediation_acct_rsp_ac' => 'SN-Mediation-Acct-Rsp-Action',
  'sn_mediation_enabled'     => 'SN-Mediation-Enabled',
  'sn_mediation_no_interims' => 'SN-Mediation-No-Interims',
  'sn_mediation_vpn_name'    => 'SN-Mediation-VPN-Name',
  'sn_min_compress_size'     => 'SN-Min-Compress-Size',
  'sn_mip_aaa_assign_addr'   => 'SN-MIP-AAA-Assign-Addr',
  'sn_mip_ancid'             => 'SN-MIP-ANCID',
  'sn_mip_dual_anchor'       => 'SN-MIP-Dual-Anchor',
  'sn_mip_ha_assignment_tab' => 'SN-MIP-HA-Assignment-Table',
  'sn_mip_match_aaa_assign_' => 'SN-MIP-Match-AAA-Assign-Addr',
  'sn_mip_reg_lifetime_real' => 'SN-MIP-Reg-Lifetime-Realm',
  'sn_mip_send_ancid'        => 'SN-MIP-Send-Ancid',
  'sn_mip_send_correlation_' => 'SN-MIP-Send-Correlation-Info',
  'sn_mip_send_imsi'         => 'SN-MIP-Send-Imsi',
  'sn_mip_send_term_verific' => 'SN-MIP-Send-Term-Verification',
  'sn_mn_ha_hash_algorithm'  => 'SN-MN-HA-Hash-Algorithm',
  'sn_mn_ha_timestamp_toler' => 'SN-MN-HA-Timestamp-Tolerance',
  'sn_mode'                  => 'SN-Mode',
  'sn_ms_isdn'               => 'SN-MS-ISDN',
  'sn_nai_construction_doma' => 'SN-NAI-Construction-Domain',
  'sn_nat_ip_address'        => 'SN-NAT-IP-Address',
  'sn_node_functionality'    => 'SN-Node-Functionality',
  'sn_npu_qos_priority'      => 'SN-NPU-Qos-Priority',
  'sn_ntk_initiated_ctx_ind' => 'SN-Ntk-Initiated-Ctx-Ind-Flag',
  'sn_ntk_session_disconnec' => 'SN-Ntk-Session-Disconnect-Flag',
  'sn_nw_reachability_serve' => 'SN-Nw-Reachability-Server-Name',
  'sn_originating_ioi'       => 'SN-Originating-IOI',
  'sn_overload_disc_connect' => 'SN-Overload-Disc-Connect-Time',
  'sn_overload_disconnect'   => 'SN-Overload-Disconnect',
  'sn_pdg_ttg_required'      => 'SN-PDG-TTG-Required',
  'sn_pdif_mip_release_tia'  => 'SN-PDIF-MIP-Release-TIA',
  'sn_pdif_mip_required'     => 'SN-PDIF-MIP-Required',
  'sn_pdif_mip_simple_ip_fa' => 'SN-PDIF-MIP-Simple-IP-Fallback',
  'sn_pdsn_correlation_id'   => 'SN-PDSN-Correlation-Id',
  'sn_pdsn_handoff_req_ip_a' => 'SN-PDSN-Handoff-Req-IP-Addr',
  'sn_pdsn_nas_id'           => 'SN-PDSN-NAS-Id',
  'sn_pdsn_nas_ip_address'   => 'SN-PDSN-NAS-IP-Address',
  'sn_permit_user_mcast_pdu' => 'SN-Permit-User-Mcast-PDUs',
  'sn_ppp_accept_peer_v6ifi' => 'SN-PPP-Accept-Peer-v6Ifid',
  'sn_ppp_always_on_vse'     => 'SN-PPP-Always-On-Vse',
  'sn_ppp_data_compression'  => 'SN-PPP-Data-Compression',
  'sn_ppp_data_compression_' => 'SN-PPP-Data-Compression-Mode',
  'sn_ppp_keepalive'         => 'SN-PPP-Keepalive',
  'sn_ppp_nw_layer_ipv4'     => 'SN-PPP-NW-Layer-IPv4',
  'sn_ppp_nw_layer_ipv6'     => 'SN-PPP-NW-Layer-IPv6',
  'sn_ppp_outbound_password' => 'SN-PPP-Outbound-Password',
  'sn_ppp_outbound_username' => 'SN-PPP-Outbound-Username',
  'sn_ppp_progress_code'     => 'SN-PPP-Progress-Code',
  'sn_ppp_reneg_disc'        => 'SN-PPP-Reneg-Disc',
  'sn_prepaid'               => 'SN-Prepaid',
  'sn_prepaid_compressed_co' => 'SN-Prepaid-Compressed-Count',
  'sn_prepaid_final_duratio' => 'SN-Prepaid-Final-Duration-Alg',
  'sn_prepaid_inbound_octet' => 'SN-Prepaid-Inbound-Octets',
  'sn_prepaid_outbound_octe' => 'SN-Prepaid-Outbound-Octets',
  'sn_prepaid_preference'    => 'SN-Prepaid-Preference',
  'sn_prepaid_timeout'       => 'SN-Prepaid-Timeout',
  'sn_prepaid_total_octets'  => 'SN-Prepaid-Total-Octets',
  'sn_prepaid_watermark'     => 'SN-Prepaid-Watermark',
  'sn_primary_dcca_peer'     => 'SN-Primary-DCCA-Peer',
  'sn_primary_dns_server'    => 'SN-Primary-DNS-Server',
  'sn_primary_nbns_server'   => 'SN-Primary-NBNS-Server',
  'sn_proxy_mip'             => 'SN-Proxy-MIP',
  'sn_proxy_mipv6'           => 'SN-Proxy-MIPV6',
  'sn_pseudonym_username'    => 'SN-Pseudonym-Username',
  'sn_qos_background_class'  => 'SN-QoS-Background-Class',
  'sn_qos_class_background_' => 'SN-QoS-Class-Background-PHB',
  'sn_qos_class_conversatio' => 'SN-QoS-Class-Conversational-PHB',
  'sn_qos_class_interactive' => 'SN-QoS-Class-Interactive-1-PHB',
  'sn_qos_class_interactivf' => 'SN-QoS-Class-Interactive-2-PHB',
  'sn_qos_class_interactivg' => 'SN-QoS-Class-Interactive-3-PHB',
  'sn_qos_class_streaming_p' => 'SN-QoS-Class-Streaming-PHB',
  'sn_qos_conversation_clas' => 'SN-QoS-Conversation-Class',
  'sn_qos_hlr_profile'       => 'SN-QOS-HLR-Profile',
  'sn_qos_interactive1_clas' => 'SN-QoS-Interactive1-Class',
  'sn_qos_interactive2_clas' => 'SN-QoS-Interactive2-Class',
  'sn_qos_interactive3_clas' => 'SN-QoS-Interactive3-Class',
  'sn_qos_negotiated'        => 'SN-QoS-Negotiated',
  'sn_qos_renegotiation_tim' => 'SN-QoS-Renegotiation-Timeout',
  'sn_qos_streaming_class'   => 'SN-QoS-Streaming-Class',
  'sn_qos_tp_dnlk'           => 'SN-QoS-Tp-Dnlk',
  'sn_qos_tp_uplk'           => 'SN-QoS-Tp-Uplk',
  'sn_qos_traffic_policy'    => 'SN-QoS-Traffic-Policy',
  'sn_rad_apn_name'          => 'SN-Rad-APN-Name',
  'sn_radius_returned_usern' => 'SN-Radius-Returned-Username',
  'sn_re_chap_interval'      => 'SN-Re-CHAP-Interval',
  'sn_roaming_behavior'      => 'SN-Roaming-Behavior',
  'sn_roaming_profile'       => 'SN-Roaming-Profile',
  'sn_roaming_sub_use_ggsn'  => 'SN-Roaming-Sub-Use-GGSN',
  'sn_rohc_flow_marking_mod' => 'SN-ROHC-Flow-Marking-Mode',
  'sn_rohc_profile_name'     => 'SN-ROHC-Profile-Name',
  'sn_role_of_node'          => 'SN-Role-Of-Node',
  'sn_routing_area_id'       => 'SN-Routing-Area-Id',
  'sn_sdp_session_descripti' => 'SN-SDP-Session-Description',
  'sn_sec_ip_pool_name'      => 'SN-Sec-IP-Pool-Name',
  'sn_secondary_dcca_peer'   => 'SN-Secondary-DCCA-Peer',
  'sn_secondary_dns_server'  => 'SN-Secondary-DNS-Server',
  'sn_secondary_nbns_server' => 'SN-Secondary-NBNS-Server',
  'sn_service_address'       => 'SN-Service-Address',
  'sn_service_type'          => 'SN-Service-Type',
  'sn_session_id'            => 'SN-Session-Id',
  'sn_simultaneous_sip_mip'  => 'SN-Simultaneous-SIP-MIP',
  'sn_sip_method'            => 'SN-SIP-Method',
  'sn_sip_request_time_stam' => 'SN-SIP-Request-Time-Stamp',
  'sn_sip_response_time_sta' => 'SN-SIP-Response-Time-Stamp',
  'sn_software_version'      => 'SN-Software-Version',
  'sn_subs_acc_flow_traffic' => 'SN-Subs-Acc-Flow-Traffic-Valid',
  'sn_subs_imsa_service_nam' => 'SN-Subs-IMSA-Service-Name',
  'sn_subs_vj_slotid_cmp_ne' => 'SN-Subs-VJ-Slotid-Cmp-Neg-Mode',
  'sn_subscriber_accounting' => 'SN-Subscriber-Accounting',
  'sn_subscriber_acct_inter' => 'SN-Subscriber-Acct-Interim',
  'sn_subscriber_acct_mode'  => 'SN-Subscriber-Acct-Mode',
  'sn_subscriber_acct_rsp_a' => 'SN-Subscriber-Acct-Rsp-Action',
  'sn_subscriber_acct_start' => 'SN-Subscriber-Acct-Start',
  'sn_subscriber_acct_stop'  => 'SN-Subscriber-Acct-Stop',
  'sn_subscriber_class'      => 'SN-Subscriber-Class',
  'sn_subscriber_ip_hdr_neg' => 'SN-Subscriber-IP-Hdr-Neg-Mode',
  'sn_subscriber_ip_tos_cop' => 'SN-Subscriber-IP-TOS-Copy',
  'sn_subscriber_nexthop_ad' => 'SN-Subscriber-Nexthop-Address',
  'sn_subscriber_no_interim' => 'SN-Subscriber-No-Interims',
  'sn_subscriber_permission' => 'SN-Subscriber-Permission',
  'sn_subscriber_template_n' => 'SN-Subscriber-Template-Name',
  'sn_terminating_ioi'       => 'SN-Terminating-IOI',
  'sn_tp_dnlk_burst_size'    => 'SN-Tp-Dnlk-Burst-Size',
  'sn_tp_dnlk_committed_dat' => 'SN-Tp-Dnlk-Committed-Data-Rate',
  'sn_tp_dnlk_exceed_action' => 'SN-Tp-Dnlk-Exceed-Action',
  'sn_tp_dnlk_peak_data_rat' => 'SN-Tp-Dnlk-Peak-Data-Rate',
  'sn_tp_dnlk_violate_actio' => 'SN-Tp-Dnlk-Violate-Action',
  'sn_tp_uplk_burst_size'    => 'SN-Tp-Uplk-Burst-Size',
  'sn_tp_uplk_committed_dat' => 'SN-Tp-Uplk-Committed-Data-Rate',
  'sn_tp_uplk_exceed_action' => 'SN-Tp-Uplk-Exceed-Action',
  'sn_tp_uplk_peak_data_rat' => 'SN-Tp-Uplk-Peak-Data-Rate',
  'sn_tp_uplk_violate_actio' => 'SN-Tp-Uplk-Violate-Action',
  'sn_traffic_group'         => 'SN-Traffic-Group',
  'sn_trafficselector_class' => 'SN-TrafficSelector-Class',
  'sn_transparent_data'      => 'SN-Transparent-Data',
  'sn_tun_addr_policy'       => 'SN-Tun-Addr-Policy',
  'sn_tunnel_gn'             => 'SN-Tunnel-Gn',
  'sn_tunnel_isakmp_crypto_' => 'SN-Tunnel-ISAKMP-Crypto-Map',
  'sn_tunnel_isakmp_secret'  => 'SN-Tunnel-ISAKMP-Secret',
  'sn_tunnel_load_balancing' => 'SN-Tunnel-Load-Balancing',
  'sn_tunnel_password'       => 'SN-Tunnel-Password',
  'sn_unclassify_list_name'  => 'SN-Unclassify-List-Name',
  'sn_virtual_apn_name'      => 'SN-Virtual-APN-Name',
  'sn_visiting_behavior'     => 'SN-Visiting-Behavior',
  'sn_visiting_profile'      => 'SN-Visiting-Profile',
  'sn_visiting_sub_use_ggsn' => 'SN-Visiting-Sub-Use-GGSN',
  'sn_voice_push_list_name'  => 'SN-Voice-Push-List-Name',
  'sn_vpn_id'                => 'SN-VPN-ID',
  'sn_vpn_name'              => 'SN-VPN-Name',
  'sn_wimax_auth_only'       => 'SN-WiMAX-Auth-Only',
  'sna_input_gigawords'      => 'SNA-Input-Gigawords',
  'sna_input_gigawordt'      => 'SNA-Input-Gigawords',
  'sna_output_gigawords'     => 'SNA-Output-Gigawords',
  'sna_output_gigawordt'     => 'SNA-Output-Gigawords',
  'sna_ppp_bad_addr'         => 'SNA-PPP-Bad-Addr',
  'sna_ppp_bad_ctrl'         => 'SNA-PPP-Bad-Ctrl',
  'sna_ppp_bad_fcs'          => 'SNA-PPP-Bad-FCS',
  'sna_ppp_ctrl_input_octet' => 'SNA-PPP-Ctrl-Input-Octets',
  'sna_ppp_ctrl_input_packe' => 'SNA-PPP-Ctrl-Input-Packets',
  'sna_ppp_ctrl_output_octe' => 'SNA-PPP-Ctrl-Output-Octets',
  'sna_ppp_ctrl_output_pack' => 'SNA-PPP-Ctrl-Output-Packets',
  'sna_ppp_discards_input'   => 'SNA-PPP-Discards-Input',
  'sna_ppp_discards_output'  => 'SNA-PPP-Discards-Output',
  'sna_ppp_echo_req_input'   => 'SNA-PPP-Echo-Req-Input',
  'sna_ppp_echo_req_output'  => 'SNA-PPP-Echo-Req-Output',
  'sna_ppp_echo_rsp_input'   => 'SNA-PPP-Echo-Rsp-Input',
  'sna_ppp_echo_rsp_output'  => 'SNA-PPP-Echo-Rsp-Output',
  'sna_ppp_errors_input'     => 'SNA-PPP-Errors-Input',
  'sna_ppp_errors_output'    => 'SNA-PPP-Errors-Output',
  'sna_ppp_framed_input_oct' => 'SNA-PPP-Framed-Input-Octets',
  'sna_ppp_framed_output_oc' => 'SNA-PPP-Framed-Output-Octets',
  'sna_ppp_packet_too_long'  => 'SNA-PPP-Packet-Too-Long',
  'sna_ppp_unfr_data_in_gig' => 'SNA-PPP-Unfr-Data-In-Gig',
  'sna_ppp_unfr_data_in_gih' => 'SNA-PPP-Unfr-Data-In-Gig',
  'sna_ppp_unfr_data_in_oct' => 'SNA-PPP-Unfr-data-In-Oct',
  'sna_ppp_unfr_data_in_ocu' => 'SNA-PPP-Unfr-data-In-Oct',
  'sna_ppp_unfr_data_out_gi' => 'SNA-PPP-Unfr-Data-Out-Gig',
  'sna_ppp_unfr_data_out_gj' => 'SNA-PPP-Unfr-Data-Out-Gig',
  'sna_ppp_unfr_data_out_oc' => 'SNA-PPP-Unfr-data-Out-Oct',
  'sna_ppp_unfr_data_out_od' => 'SNA-PPP-Unfr-data-Out-Oct',
  'sna_rp_reg_reply_sent_ac' => 'SNA-RP-Reg-Reply-Sent-Acc-Reg',
  'sna_rp_reg_reply_sent_ad' => 'SNA-RP-Reg-Reply-Sent-Acc-Dereg',
  'sna_rp_reg_reply_sent_ba' => 'SNA-RP-Reg-Reply-Sent-Bad-Req',
  'sna_rp_reg_reply_sent_de' => 'SNA-RP-Reg-Reply-Sent-Denied',
  'sna_rp_reg_reply_sent_mi' => 'SNA-RP-Reg-Reply-Sent-Mis-ID',
  'sna_rp_reg_reply_sent_se' => 'SNA-RP-Reg-Reply-Sent-Send-Err',
  'sna_rp_reg_reply_sent_to' => 'SNA-RP-Reg-Reply-Sent-Total',
  'sna_rp_reg_upd_re_sent'   => 'SNA-RP-Reg-Upd-Re-Sent',
  'sna_rp_reg_upd_send_err'  => 'SNA-RP-Reg-Upd-Send-Err',
  'sna_rp_reg_upd_sent'      => 'SNA-RP-Reg-Upd-Sent',
  'sna_rprak_rcvd_acc_ack'   => 'SNA-RPRAK-Rcvd-Acc-Ack',
  'sna_rprak_rcvd_mis_id'    => 'SNA-RPRAK-Rcvd-Mis-ID',
  'sna_rprak_rcvd_msg_auth_' => 'SNA-RPRAK-Rcvd-Msg-Auth-Fail',
  'sna_rprak_rcvd_total'     => 'SNA-RPRAK-Rcvd-Total',
  'sna_rprrq_rcvd_acc_dereg' => 'SNA-RPRRQ-Rcvd-Acc-Dereg',
  'sna_rprrq_rcvd_acc_reg'   => 'SNA-RPRRQ-Rcvd-Acc-Reg',
  'sna_rprrq_rcvd_badly_for' => 'SNA-RPRRQ-Rcvd-Badly-Formed',
  'sna_rprrq_rcvd_mis_id'    => 'SNA-RPRRQ-Rcvd-Mis-ID',
  'sna_rprrq_rcvd_msg_auth_' => 'SNA-RPRRQ-Rcvd-Msg-Auth-Fail',
  'sna_rprrq_rcvd_t_bit_not' => 'SNA-RPRRQ-Rcvd-T-Bit-Not-Set',
  'sna_rprrq_rcvd_total'     => 'SNA-RPRRQ-Rcvd-Total',
  'sna_rprrq_rcvd_vid_unsup' => 'SNA-RPRRQ-Rcvd-VID-Unsupported',
  'sofaware_admin'           => 'SofaWare-Admin',
  'sofaware_hotspot'         => 'SofaWare-Hotspot',
  'sofaware_ufp'             => 'SofaWare-UFP',
  'sofaware_vpn'             => 'SofaWare-VPN',
  'soh_ms_correlation_id'    => 'SoH-MS-Correlation-Id',
  'soh_ms_health_other'      => 'SoH-MS-Health-Other',
  'soh_ms_machine_name'      => 'SoH-MS-Machine-Name',
  'soh_ms_machine_os_build'  => 'SoH-MS-Machine-OS-build',
  'soh_ms_machine_os_releas' => 'SoH-MS-Machine-OS-release',
  'soh_ms_machine_os_vendor' => 'SoH-MS-Machine-OS-vendor',
  'soh_ms_machine_os_versio' => 'SoH-MS-Machine-OS-version',
  'soh_ms_machine_processor' => 'SoH-MS-Machine-Processor',
  'soh_ms_machine_role'      => 'SoH-MS-Machine-Role',
  'soh_ms_machine_sp_releas' => 'SoH-MS-Machine-SP-release',
  'soh_ms_machine_sp_versio' => 'SoH-MS-Machine-SP-version',
  'soh_ms_windows_health_st' => 'SoH-MS-Windows-Health-Status',
  'soh_supported'            => 'SoH-Supported',
  'sonicwall_user_group'     => 'SonicWall-User-Group',
  'sonicwall_user_privilege' => 'SonicWall-User-Privilege',
  'source_validation'        => 'Source_Validation',
  'source_validatioo'        => 'Source-Validation',
  'sql_group'                => 'Sql-Group',
  'sql_table_name'           => 'SQL-Table-Name',
  'sql_user_name'            => 'SQL-User-Name',
  'ss3_firewall_user_privil' => 'SS3-Firewall-User-Privilege',
  'ssha1_password'           => 'SSHA1-Password',
  'ssha_password'            => 'SSHA-Password',
  'st_acct_vc_connection_id' => 'ST-Acct-VC-Connection-Id',
  'st_ipsec_client_firewall' => 'ST-IPSec-Client-Firewall',
  'st_ipsec_client_subnet'   => 'ST-IPSec-Client-Subnet',
  'st_ipsec_pfs_group'       => 'ST-IPSec-Pfs-Group',
  'st_physical_port'         => 'ST-Physical-Port',
  'st_physical_slot'         => 'ST-Physical-Slot',
  'st_policy_name'           => 'ST-Policy-Name',
  'st_primary_dns_server'    => 'ST-Primary-DNS-Server',
  'st_primary_nbns_server'   => 'ST-Primary-NBNS-Server',
  'st_realm_name'            => 'ST-Realm-Name',
  'st_secondary_dns_server'  => 'ST-Secondary-DNS-Server',
  'st_secondary_nbns_server' => 'ST-Secondary-NBNS-Server',
  'st_service_domain'        => 'ST-Service-Domain',
  'st_service_name'          => 'ST-Service-Name',
  'st_virtual_circuit_id'    => 'ST-Virtual-Circuit-ID',
  'st_virtual_path_id'       => 'ST-Virtual-Path-ID',
  'state'                    => 'State',
  'stateful_ipv6_address_po' => 'Stateful-IPv6-Address-Pool',
  'strip_user_name'          => 'Strip-User-Name',
  'stripped_user_name'       => 'Stripped-User-Name',
  'sub_profile_name'         => 'Sub-Profile-Name',
  'subscriber'               => 'subscriber',
  'subscriber_profile_name'  => 'Subscriber-Profile-Name',
  'suffix'                   => 'Suffix',
  'suggested_rule_space'     => 'Suggested-Rule-Space',
  'suggested_secondary_rule' => 'Suggested-Secondary-Rule-Space',
  'symbol_admin_role'        => 'Symbol-Admin-Role',
  'symbol_allowed_essid'     => 'Symbol-Allowed-ESSID',
  'symbol_allowed_radio'     => 'Symbol-Allowed-Radio',
  'symbol_current_essid'     => 'Symbol-Current-ESSID',
  'symbol_downlink_limit'    => 'Symbol-Downlink-Limit',
  'symbol_expiry_date_time'  => 'Symbol-Expiry-Date-Time',
  'symbol_login_source'      => 'Symbol-Login-Source',
  'symbol_posture_status'    => 'Symbol-Posture-Status',
  'symbol_qos_profile'       => 'Symbol-QoS-Profile',
  'symbol_start_date_time'   => 'Symbol-Start-Date-Time',
  'symbol_uplink_limit'      => 'Symbol-Uplink-Limit',
  'symbol_user_group'        => 'Symbol-User-Group',
  'symbol_wlan_index'        => 'Symbol-WLAN-Index',
  't_systems_nova_bandwidth' => 'T-Systems-Nova-Bandwidth-Min-Up',
  't_systems_nova_bandwidti' => 'T-Systems-Nova-Bandwidth-Min-Down',
  't_systems_nova_bandwidtj' => 'T-Systems-Nova-Bandwidth-Max-Up',
  't_systems_nova_bandwidtk' => 'T-Systems-Nova-Bandwidth-Max-Down',
  't_systems_nova_billing_c' => 'T-Systems-Nova-Billing-Class-Of-Service',
  't_systems_nova_location_' => 'T-Systems-Nova-Location-ID',
  't_systems_nova_locationa' => 'T-Systems-Nova-Location-Name',
  't_systems_nova_logoff_ur' => 'T-Systems-Nova-Logoff-URL',
  't_systems_nova_price_of_' => 'T-Systems-Nova-Price-Of-Service',
  't_systems_nova_redirecti' => 'T-Systems-Nova-Redirection-URL',
  't_systems_nova_service_n' => 'T-Systems-Nova-Service-Name',
  't_systems_nova_session_t' => 'T-Systems-Nova-Session-Terminate-Time',
  't_systems_nova_session_u' => 'T-Systems-Nova-Session-Terminate-EoD',
  't_systems_nova_unknownav' => 'T-Systems-Nova-UnknownAVP',
  't_systems_nova_visiting_' => 'T-Systems-Nova-Visiting-Provider-Code',
  'telebit_accounting_info'  => 'Telebit-Accounting-Info',
  'telebit_activate_command' => 'Telebit-Activate-Command',
  'telebit_login_command'    => 'Telebit-Login-Command',
  'telebit_login_option'     => 'Telebit-Login-Option',
  'telebit_port_name'        => 'Telebit-Port-Name',
  'telkom_access_type'       => 'Telkom-Access-Type',
  'telkom_degrade_token'     => 'Telkom-Degrade-Token',
  'telkom_service_type'      => 'Telkom-Service-Type',
  'termination_action'       => 'Termination-Action',
  'termination_menu'         => 'Termination-Menu',
  'time_of_day'              => 'Time-Of-Day',
  'timetra_access'           => 'Timetra-Access',
  'timetra_action'           => 'Timetra-Action',
  'timetra_cmd'              => 'Timetra-Cmd',
  'timetra_default_action'   => 'Timetra-Default-Action',
  'timetra_exec_file'        => 'Timetra-Exec-File',
  'timetra_home_directory'   => 'Timetra-Home-Directory',
  'timetra_profile'          => 'Timetra-Profile',
  'timetra_restrict_to_home' => 'Timetra-Restrict-To-Home',
  'tls_cert_common_name'     => 'TLS-Cert-Common-Name',
  'tls_cert_expiration'      => 'TLS-Cert-Expiration',
  'tls_cert_issuer'          => 'TLS-Cert-Issuer',
  'tls_cert_serial'          => 'TLS-Cert-Serial',
  'tls_cert_subject'         => 'TLS-Cert-Subject',
  'tls_cert_subject_alt_nam' => 'TLS-Cert-Subject-Alt-Name-Email',
  'tls_client_cert_common_n' => 'TLS-Client-Cert-Common-Name',
  'tls_client_cert_expirati' => 'TLS-Client-Cert-Expiration',
  'tls_client_cert_filename' => 'TLS-Client-Cert-Filename',
  'tls_client_cert_issuer'   => 'TLS-Client-Cert-Issuer',
  'tls_client_cert_serial'   => 'TLS-Client-Cert-Serial',
  'tls_client_cert_subject'  => 'TLS-Client-Cert-Subject',
  'tls_client_cert_subject_' => 'TLS-Client-Cert-Subject-Alt-Name-Email',
  'tls_client_cert_x509v3_a' => 'TLS-Client-Cert-X509v3-Authority-Key-Identifier',
  'tls_client_cert_x509v3_b' => 'TLS-Client-Cert-X509v3-Basic-Constraints',
  'tls_client_cert_x509v3_e' => 'TLS-Client-Cert-X509v3-Extended-Key-Usage',
  'tls_client_cert_x509v3_s' => 'TLS-Client-Cert-X509v3-Subject-Key-Identifier',
  'tmp_integer_0'            => 'Tmp-Integer-0',
  'tmp_integer_1'            => 'Tmp-Integer-1',
  'tmp_integer_2'            => 'Tmp-Integer-2',
  'tmp_integer_3'            => 'Tmp-Integer-3',
  'tmp_integer_4'            => 'Tmp-Integer-4',
  'tmp_integer_5'            => 'Tmp-Integer-5',
  'tmp_integer_6'            => 'Tmp-Integer-6',
  'tmp_integer_7'            => 'Tmp-Integer-7',
  'tmp_integer_8'            => 'Tmp-Integer-8',
  'tmp_integer_9'            => 'Tmp-Integer-9',
  'tmp_ip_address_0'         => 'Tmp-IP-Address-0',
  'tmp_ip_address_1'         => 'Tmp-IP-Address-1',
  'tmp_ip_address_2'         => 'Tmp-IP-Address-2',
  'tmp_ip_address_3'         => 'Tmp-IP-Address-3',
  'tmp_ip_address_4'         => 'Tmp-IP-Address-4',
  'tmp_ip_address_5'         => 'Tmp-IP-Address-5',
  'tmp_ip_address_6'         => 'Tmp-IP-Address-6',
  'tmp_ip_address_7'         => 'Tmp-IP-Address-7',
  'tmp_ip_address_8'         => 'Tmp-IP-Address-8',
  'tmp_ip_address_9'         => 'Tmp-IP-Address-9',
  'tmp_octets_0'             => 'Tmp-Octets-0',
  'tmp_octets_1'             => 'Tmp-Octets-1',
  'tmp_octets_2'             => 'Tmp-Octets-2',
  'tmp_octets_3'             => 'Tmp-Octets-3',
  'tmp_octets_4'             => 'Tmp-Octets-4',
  'tmp_octets_5'             => 'Tmp-Octets-5',
  'tmp_octets_6'             => 'Tmp-Octets-6',
  'tmp_octets_7'             => 'Tmp-Octets-7',
  'tmp_octets_8'             => 'Tmp-Octets-8',
  'tmp_octets_9'             => 'Tmp-Octets-9',
  'tmp_string_0'             => 'Tmp-String-0',
  'tmp_string_1'             => 'Tmp-String-1',
  'tmp_string_2'             => 'Tmp-String-2',
  'tmp_string_3'             => 'Tmp-String-3',
  'tmp_string_4'             => 'Tmp-String-4',
  'tmp_string_5'             => 'Tmp-String-5',
  'tmp_string_6'             => 'Tmp-String-6',
  'tmp_string_7'             => 'Tmp-String-7',
  'tmp_string_8'             => 'Tmp-String-8',
  'tmp_string_9'             => 'Tmp-String-9',
  'tnc_vlan_access'          => 'TNC-VLAN-Access',
  'tnc_vlan_isolate'         => 'TNC-VLAN-Isolate',
  'trapeze_audit'            => 'Trapeze-Audit',
  'trapeze_coa_username'     => 'Trapeze-CoA-Username',
  'trapeze_encryption_type'  => 'Trapeze-Encryption-Type',
  'trapeze_end_date'         => 'Trapeze-End-Date',
  'trapeze_mobility_profile' => 'Trapeze-Mobility-Profile',
  'trapeze_qos_profile'      => 'Trapeze-QoS-Profile',
  'trapeze_simultaneous_log' => 'Trapeze-Simultaneous-Logins',
  'trapeze_ssid'             => 'Trapeze-SSID',
  'trapeze_start_date'       => 'Trapeze-Start-Date',
  'trapeze_time_of_day'      => 'Trapeze-Time-Of-Day',
  'trapeze_url'              => 'Trapeze-URL',
  'trapeze_user_group_name'  => 'Trapeze-User-Group-Name',
  'trapeze_vlan_name'        => 'Trapeze-VLAN-Name',
  'tropos_average_rssi'      => 'Tropos-Average-RSSI',
  'tropos_capability_info'   => 'Tropos-Capability-Info',
  'tropos_cell_location'     => 'Tropos-Cell-Location',
  'tropos_cell_name'         => 'Tropos-Cell-Name',
  'tropos_channel'           => 'Tropos-Channel',
  'tropos_class_mult'        => 'Tropos-Class-Mult',
  'tropos_input_cap'         => 'Tropos-Input-Cap',
  'tropos_latitude'          => 'Tropos-Latitude',
  'tropos_layer2_input_drop' => 'Tropos-Layer2-Input-Drops',
  'tropos_layer2_input_fram' => 'Tropos-Layer2-Input-Frames',
  'tropos_layer2_input_octe' => 'Tropos-Layer2-Input-Octets',
  'tropos_layer2_output_fra' => 'Tropos-Layer2-Output-Frames',
  'tropos_layer2_output_oct' => 'Tropos-Layer2-Output-Octets',
  'tropos_longitude'         => 'Tropos-Longitude',
  'tropos_noise_floor'       => 'Tropos-Noise-Floor',
  'tropos_noise_upper_bound' => 'Tropos-Noise-Upper-Bound',
  'tropos_output_cap'        => 'Tropos-Output-Cap',
  'tropos_rates_received'    => 'Tropos-Rates-Received',
  'tropos_rates_sent'        => 'Tropos-Rates-Sent',
  'tropos_release'           => 'Tropos-Release',
  'tropos_retries_sent'      => 'Tropos-Retries-Sent',
  'tropos_retry_bits'        => 'Tropos-Retry-Bits',
  'tropos_routed_time'       => 'Tropos-Routed-Time',
  'tropos_routless_since'    => 'Tropos-Routless-Since',
  'tropos_secondary_ip'      => 'Tropos-Secondary-IP',
  'tropos_serial_number'     => 'Tropos-Serial-Number',
  'tropos_terminate_cause'   => 'Tropos-Terminate-Cause',
  'tropos_unicast_cipher'    => 'Tropos-Unicast-Cipher',
  'tty_level_max'            => 'TTY_Level_Max',
  'tty_level_may'            => 'TTY-Level-Max',
  'tty_level_start'          => 'TTY_Level_Start',
  'tty_level_staru'          => 'TTY-Level-Start',
  'tunnel_algorithm'         => 'Tunnel_Algorithm',
  'tunnel_algorithn'         => 'Tunnel-Algorithm',
  'tunnel_assignment_id'     => 'Tunnel-Assignment-Id',
  'tunnel_checksum'          => 'Tunnel-Checksum',
  'tunnel_client_auth_id'    => 'Tunnel-Client-Auth-Id',
  'tunnel_client_endpoint'   => 'Tunnel-Client-Endpoint',
  'tunnel_client_int_addr'   => 'Tunnel-Client-Int-Addr',
  'tunnel_client_rhost'      => 'Tunnel-Client-Rhost',
  'tunnel_client_vpn'        => 'Tunnel-Client-VPN',
  'tunnel_client_vpo'        => 'Tunnel-Client-VPN',
  'tunnel_cmd_timeout'       => 'Tunnel_Cmd_Timeout',
  'tunnel_cmd_timeouu'       => 'Tunnel-Cmd-Timeout',
  'tunnel_context'           => 'Tunnel_Context',
  'tunnel_contexu'           => 'Tunnel-Context',
  'tunnel_deadtime'          => 'Tunnel_Deadtime',
  'tunnel_deadtimf'          => 'Tunnel-Deadtime',
  'tunnel_dnis'              => 'Tunnel_DNIS',
  'tunnel_dnit'              => 'Tunnel-DNIS',
  'tunnel_domain'            => 'Tunnel_Domain',
  'tunnel_domaio'            => 'Tunnel-Domain',
  'tunnel_flow_control'      => 'Tunnel-Flow-Control',
  'tunnel_flow_controm'      => 'Tunnel-Flow-Control',
  'tunnel_function'          => 'Tunnel_Function',
  'tunnel_functioo'          => 'Tunnel-Function',
  'tunnel_group'             => 'Tunnel_Group',
  'tunnel_grouq'             => 'Tunnel-Group',
  'tunnel_hello_timer'       => 'Tunnel-Hello-Timer',
  'tunnel_hello_times'       => 'Tunnel-Hello-Timer',
  'tunnel_l2f_second_passwo' => 'Tunnel_L2F_Second_Password',
  'tunnel_l2f_second_passwp' => 'Tunnel-L2F-Second-Password',
  'tunnel_local_name'        => 'Tunnel_Local_Name',
  'tunnel_local_namf'        => 'Tunnel-Local-Name',
  'tunnel_max_sessions'      => 'Tunnel_Max_Sessions',
  'tunnel_max_sessiont'      => 'Tunnel-Max-Sessions',
  'tunnel_max_tunnels'       => 'Tunnel_Max_Tunnels',
  'tunnel_max_tunnelt'       => 'Tunnel-Max-Tunnels',
  'tunnel_medium_type'       => 'Tunnel-Medium-Type',
  'tunnel_mobil_group'       => 'Tunnel-Mobil-Group',
  'tunnel_password'          => 'Tunnel-Password',
  'tunnel_police_burst'      => 'Tunnel_Police_Burst',
  'tunnel_police_bursu'      => 'Tunnel-Police-Burst',
  'tunnel_police_excess_bur' => 'Tunnel-Police-Excess-Burst',
  'tunnel_police_rate'       => 'Tunnel_Police_Rate',
  'tunnel_police_ratf'       => 'Tunnel-Police-Rate',
  'tunnel_preference'        => 'Tunnel-Preference',
  'tunnel_private_group_id'  => 'Tunnel-Private-Group-Id',
  'tunnel_profile'           => 'Tunnel-Profile',
  'tunnel_rate_limit_burst'  => 'Tunnel_Rate_Limit_Burst',
  'tunnel_rate_limit_bursu'  => 'Tunnel-Rate-Limit-Burst',
  'tunnel_rate_limit_excess' => 'Tunnel-Rate-Limit-Excess-Burst',
  'tunnel_rate_limit_rate'   => 'Tunnel_Rate_Limit_Rate',
  'tunnel_rate_limit_ratf'   => 'Tunnel-Rate-Limit-Rate',
  'tunnel_remote_name'       => 'Tunnel_Remote_Name',
  'tunnel_remote_namf'       => 'Tunnel-Remote-Name',
  'tunnel_retransmit'        => 'Tunnel_Retransmit',
  'tunnel_retransmiu'        => 'Tunnel-Retransmit',
  'tunnel_server_auth_id'    => 'Tunnel-Server-Auth-Id',
  'tunnel_server_endpoint'   => 'Tunnel-Server-Endpoint',
  'tunnel_server_int_addr'   => 'Tunnel-Server-Int-Addr',
  'tunnel_server_rhost'      => 'Tunnel-Server-Rhost',
  'tunnel_server_vpn'        => 'Tunnel-Server-VPN',
  'tunnel_server_vpo'        => 'Tunnel-Server-VPN',
  'tunnel_session_auth'      => 'Tunnel_Session_Auth',
  'tunnel_session_auth_ctx'  => 'Tunnel_Session_Auth_Ctx',
  'tunnel_session_auth_cty'  => 'Tunnel-Session-Auth-Ctx',
  'tunnel_session_auth_serv' => 'Tunnel_Session_Auth_Service_Grp',
  'tunnel_session_auth_serw' => 'Tunnel-Session-Auth-Service-Grp',
  'tunnel_session_auti'      => 'Tunnel-Session-Auth',
  'tunnel_static'            => 'Tunnel-Static',
  'tunnel_statid'            => 'Tunnel-Static',
  'tunnel_type'              => 'Tunnel-Type',
  'tunnel_window'            => 'Tunnel_Window',
  'tunnel_windox'            => 'Tunnel-Window',
  'unisphere_client_profile' => 'Unisphere-Client-Profile-Name',
  'unix_ftp_gid'             => 'Unix-FTP-GID',
  'unix_ftp_group_ids'       => 'Unix-FTP-Group-Ids',
  'unix_ftp_group_names'     => 'Unix-FTP-Group-Names',
  'unix_ftp_home'            => 'Unix-FTP-Home',
  'unix_ftp_shell'           => 'Unix-FTP-Shell',
  'unix_ftp_uid'             => 'Unix-FTP-UID',
  'user_category'            => 'User-Category',
  'user_name'                => 'User-Name',
  'user_password'            => 'User-Password',
  'user_priority_table'      => 'User-Priority-Table',
  'user_profile'             => 'User-Profile',
  'user_service_type'        => 'User-Service-Type',
  'userlogon_acct_terminate' => 'UserLogon-Acct-TerminateCause',
  'userlogon_drivenames'     => 'UserLogon-DriveNames',
  'userlogon_expiration'     => 'UserLogon-Expiration',
  'userlogon_gid'            => 'UserLogon-Gid',
  'userlogon_groupnames'     => 'UserLogon-GroupNames',
  'userlogon_homedir'        => 'UserLogon-HomeDir',
  'userlogon_logofftask'     => 'UserLogon-LogoffTask',
  'userlogon_logontask'      => 'UserLogon-LogonTask',
  'userlogon_quotabytes'     => 'UserLogon-QuotaBytes',
  'userlogon_quotafiles'     => 'UserLogon-QuotaFiles',
  'userlogon_restriction'    => 'UserLogon-Restriction',
  'userlogon_shell'          => 'UserLogon-Shell',
  'userlogon_type'           => 'UserLogon-Type',
  'userlogon_uid'            => 'UserLogon-Uid',
  'userlogon_userdescriptio' => 'UserLogon-UserDescription',
  'userlogon_userdomain'     => 'UserLogon-UserDomain',
  'userlogon_userfullname'   => 'UserLogon-UserFullName',
  'userlogon_userprofile'    => 'UserLogon-UserProfile',
  'usr_accm_type'            => 'USR-ACCM-Type',
  'usr_acct_reason_code'     => 'USR-Acct-Reason-Code',
  'usr_actual_voltage'       => 'USR-Actual-Voltage',
  'usr_agent'                => 'USR-Agent',
  'usr_appletalk'            => 'USR-Appletalk',
  'usr_appletalk_network_ra' => 'USR-Appletalk-Network-Range',
  'usr_at_call_input_filter' => 'USR-AT-Call-Input-Filter',
  'usr_at_call_output_filte' => 'USR-AT-Call-Output-Filter',
  'usr_at_input_filter'      => 'USR-AT-Input-Filter',
  'usr_at_output_filter'     => 'USR-AT-Output-Filter',
  'usr_at_rtmp_input_filter' => 'USR-AT-RTMP-Input-Filter',
  'usr_at_rtmp_output_filte' => 'USR-AT-RTMP-Output-Filter',
  'usr_at_zip_input_filter'  => 'USR-AT-Zip-Input-Filter',
  'usr_at_zip_output_filter' => 'USR-AT-Zip-Output-Filter',
  'usr_auth_mode'            => 'USR-Auth-Mode',
  'usr_auth_next_server_add' => 'USR-Auth-Next-Server-Address',
  'usr_back_channel_data_ra' => 'USR-Back-Channel-Data-Rate',
  'usr_bearer_capabilities'  => 'USR-Bearer-Capabilities',
  'usr_block_error_count_li' => 'USR-Block-Error-Count-Limit',
  'usr_blocks_received'      => 'USR-Blocks-Received',
  'usr_blocks_resent'        => 'USR-Blocks-Resent',
  'usr_blocks_sent'          => 'USR-Blocks-Sent',
  'usr_bridging'             => 'USR-Bridging',
  'usr_bytes_rx_remain'      => 'USR-Bytes-RX-Remain',
  'usr_bytes_tx_remain'      => 'USR-Bytes-TX-Remain',
  'usr_call_arrival_in_gmt'  => 'USR-Call-Arrival-in-GMT',
  'usr_call_arrival_time'    => 'USR-Call-Arrival-Time',
  'usr_call_connect_in_gmt'  => 'USR-Call-Connect-in-GMT',
  'usr_call_connecting_time' => 'USR-Call-Connecting-Time',
  'usr_call_end_date_time'   => 'USR-Call-End-Date-Time',
  'usr_call_end_time'        => 'USR-Call-End-Time',
  'usr_call_error_code'      => 'USR-Call-Error-Code',
  'usr_call_event_code'      => 'USR-Call-Event-Code',
  'usr_call_reference_numbe' => 'USR-Call-Reference-Number',
  'usr_call_start_date_time' => 'USR-Call-Start-Date-Time',
  'usr_call_terminate_in_gm' => 'USR-Call-Terminate-in-GMT',
  'usr_call_type'            => 'USR-Call-Type',
  'usr_callback_type'        => 'USR-Callback-Type',
  'usr_called_party_number'  => 'USR-Called-Party-Number',
  'usr_calling_party_number' => 'USR-Calling-Party-Number',
  'usr_card_type'            => 'USR-Card-Type',
  'usr_ccp_algorithm'        => 'USR-CCP-Algorithm',
  'usr_cdma_call_reference_' => 'USR-CDMA-Call-Reference-Number',
  'usr_cdma_pktdata_network' => 'USR-CDMA-PktData-Network-ID',
  'usr_channel'              => 'USR-Channel',
  'usr_channel_connected_to' => 'USR-Channel-Connected-To',
  'usr_channel_decrement'    => 'USR-Channel-Decrement',
  'usr_channel_expansion'    => 'USR-Channel-Expansion',
  'usr_characters_received'  => 'USR-Characters-Received',
  'usr_characters_sent'      => 'USR-Characters-Sent',
  'usr_chassis_call_channel' => 'USR-Chassis-Call-Channel',
  'usr_chassis_call_slot'    => 'USR-Chassis-Call-Slot',
  'usr_chassis_call_span'    => 'USR-Chassis-Call-Span',
  'usr_chassis_slot'         => 'USR-Chassis-Slot',
  'usr_chassis_temp_thresho' => 'USR-Chassis-Temp-Threshold',
  'usr_chassis_temperature'  => 'USR-Chassis-Temperature',
  'usr_chat_script_name'     => 'USR-Chat-Script-Name',
  'usr_compression_algorith' => 'USR-Compression-Algorithm',
  'usr_compression_reset_mo' => 'USR-Compression-Reset-Mode',
  'usr_compression_type'     => 'USR-Compression-Type',
  'usr_connect_speed'        => 'USR-Connect-Speed',
  'usr_connect_term_reason'  => 'USR-Connect-Term-Reason',
  'usr_connect_time'         => 'USR-Connect-Time',
  'usr_connect_time_limit'   => 'USR-Connect-Time-Limit',
  'usr_cusr_hat_script_rule' => 'USR-CUSR-hat-Script-Rules',
  'usr_default_dte_data_rat' => 'USR-Default-DTE-Data-Rate',
  'usr_device_connected_to'  => 'USR-Device-Connected-To',
  'usr_disconnect_cause_ind' => 'USR-Disconnect-Cause-Indicator',
  'usr_dnis_reauthenticatio' => 'USR-DNIS-ReAuthentication',
  'usr_ds0'                  => 'USR-DS0',
  'usr_ds0s'                 => 'USR-DS0s',
  'usr_dte_data_idle_timout' => 'USR-DTE-Data-Idle-Timout',
  'usr_dte_ring_no_answer_l' => 'USR-DTE-Ring-No-Answer-Limit',
  'usr_dtr_false_timeout'    => 'USR-DTR-False-Timeout',
  'usr_dtr_true_timeout'     => 'USR-DTR-True-Timeout',
  'usr_dvmrp_advertised_met' => 'USR-Dvmrp-Advertised-Metric',
  'usr_dvmrp_initial_floodi' => 'USR-Dvmrp-Initial-Flooding',
  'usr_dvmrp_input_filter'   => 'USR-Dvmrp-Input-Filter',
  'usr_dvmrp_non_pruners'    => 'USR-Dvmrp-Non-Pruners',
  'usr_dvmrp_output_filter'  => 'USR-Dvmrp-Output-Filter',
  'usr_dvmrp_prune_lifetime' => 'USR-Dvmrp-Prune-Lifetime',
  'usr_dvmrp_retransmit_pru' => 'USR-Dvmrp-Retransmit-Prunes',
  'usr_dvmrp_route_transit'  => 'USR-Dvmrp-Route-Transit',
  'usr_end_time'             => 'USR-End-Time',
  'usr_equalization_type'    => 'USR-Equalization-Type',
  'usr_esn'                  => 'USR-ESN',
  'usr_et_bridge_call_outpu' => 'USR-ET-Bridge-Call-Output-Filte',
  'usr_et_bridge_input_filt' => 'USR-ET-Bridge-Input-Filter',
  'usr_et_bridge_output_fil' => 'USR-ET-Bridge-Output-Filter',
  'usr_event_date_time'      => 'USR-Event-Date-Time',
  'usr_event_id'             => 'USR-Event-Id',
  'usr_expansion_algorithm'  => 'USR-Expansion-Algorithm',
  'usr_expected_voltage'     => 'USR-Expected-Voltage',
  'usr_failure_to_connect_r' => 'USR-Failure-to-Connect-Reason',
  'usr_fallback_enabled'     => 'USR-Fallback-Enabled',
  'usr_fallback_limit'       => 'USR-Fallback-Limit',
  'usr_filter_zones'         => 'USR-Filter-Zones',
  'usr_final_rx_link_data_r' => 'USR-Final-Rx-Link-Data-Rate',
  'usr_final_tx_link_data_r' => 'USR-Final-Tx-Link-Data-Rate',
  'usr_fq_default_priority'  => 'USR-FQ-Default-Priority',
  'usr_framed_ip_address_po' => 'USR-Framed_IP_Address_Pool_Name',
  'usr_framed_ipx_route'     => 'USR-Framed-IPX-Route',
  'usr_gateway_ip_address'   => 'USR-Gateway-IP-Address',
  'usr_harc_disconnect_code' => 'USR-HARC-Disconnect-Code',
  'usr_host_type'            => 'USR-Host-Type',
  'usr_ids0_call_type'       => 'USR-IDS0-Call-Type',
  'usr_igmp_maximum_respons' => 'USR-IGMP-Maximum-Response-Time',
  'usr_igmp_query_interval'  => 'USR-IGMP-Query-Interval',
  'usr_igmp_robustness'      => 'USR-IGMP-Robustness',
  'usr_igmp_routing'         => 'USR-IGMP-Routing',
  'usr_igmp_version'         => 'USR-IGMP-Version',
  'usr_imsi'                 => 'USR-IMSI',
  'usr_init_reg_server_addr' => 'USR-Init-Reg-Server-Addr',
  'usr_initial_rx_link_data' => 'USR-Initial-Rx-Link-Data-Rate',
  'usr_initial_tx_link_data' => 'USR-Initial-Tx-Link-Data-Rate',
  'usr_interface_index'      => 'USR-Interface-Index',
  'usr_ip'                   => 'USR-IP',
  'usr_ip_call_input_filter' => 'USR-IP-Call-Input-Filter',
  'usr_ip_call_output_filte' => 'USR-IP-Call-Output-Filter',
  'usr_ip_default_route_opt' => 'USR-IP-Default-Route-Option',
  'usr_ip_rip_input_filter'  => 'USR-IP-RIP-Input-Filter',
  'usr_ip_rip_output_filter' => 'USR-IP-RIP-Output-Filter',
  'usr_ip_rip_policies'      => 'USR-IP-RIP-Policies',
  'usr_ip_rip_simple_auth_p' => 'USR-IP-RIP-Simple-Auth-Password',
  'usr_ip_saa_filter'        => 'USR-IP-SAA-Filter',
  'usr_ipp_enable'           => 'USR-IPP-Enable',
  'usr_ipx'                  => 'USR-IPX',
  'usr_ipx_call_input_filte' => 'USR-IPX-Call-Input-Filter',
  'usr_ipx_call_output_filt' => 'USR-IPX-Call-Output-Filter',
  'usr_ipx_rip_input_filter' => 'USR-IPX-RIP-Input-Filter',
  'usr_ipx_rip_output_filte' => 'USR-IPX-RIP-Output-Filter',
  'usr_ipx_routing'          => 'USR-IPX-Routing',
  'usr_ipx_wan'              => 'USR-IPX-WAN',
  'usr_iwf_call_identifier'  => 'USR-IWF-Call-Identifier',
  'usr_iwf_ip_address'       => 'USR-IWF-IP-Address',
  'usr_keep_alive_interval'  => 'USR-Keep-Alive-Interval',
  'usr_keypress_timeout'     => 'USR-Keypress-Timeout',
  'usr_last_callers_number_' => 'USR-Last-Callers-Number-ANI',
  'usr_last_number_dialed_i' => 'USR-Last-Number-Dialed-In-DNIS',
  'usr_last_number_dialed_o' => 'USR-Last-Number-Dialed-Out',
  'usr_line_reversals'       => 'USR-Line-Reversals',
  'usr_local_framed_ip_addr' => 'USR-Local-Framed-IP-Addr',
  'usr_local_ip_address'     => 'USR-Local-IP-Address',
  'usr_log_filter_packets'   => 'USR-Log-Filter-Packets',
  'usr_max_channels'         => 'USR-Max-Channels',
  'usr_mbi_ct_bchannel_used' => 'USR-Mbi_Ct_BChannel_Used',
  'usr_mbi_ct_pri_card_slot' => 'USR-Mbi_Ct_PRI_Card_Slot',
  'usr_mbi_ct_pri_card_span' => 'USR-Mbi_Ct_PRI_Card_Span_Line',
  'usr_mbi_ct_tdm_time_slot' => 'USR-Mbi_Ct_TDM_Time_Slot',
  'usr_mic'                  => 'USR-MIC',
  'usr_min_compression_size' => 'USR-Min-Compression-Size',
  'usr_mip_nai'              => 'USR-MIP-NAI',
  'usr_mlppp_fragmentation_' => 'USR-MLPPP-Fragmentation-Threshld',
  'usr_mobile_accounting_ty' => 'USR-Mobile-Accounting-Type',
  'usr_mobile_ip_address'    => 'USR-Mobile-IP-Address',
  'usr_mobile_numbytes_rxed' => 'USR-Mobile-NumBytes-Rxed',
  'usr_mobile_numbytes_txed' => 'USR-Mobile-NumBytes-Txed',
  'usr_mobile_service_optio' => 'USR-Mobile-Service-Option',
  'usr_mobile_session_id'    => 'USR-Mobile-Session-ID',
  'usr_mobileip_home_agent_' => 'USR-MobileIP-Home-Agent-Address',
  'usr_modem_group'          => 'USR-Modem-Group',
  'usr_modem_setup_time'     => 'USR-Modem-Setup-Time',
  'usr_modem_training_time'  => 'USR-Modem-Training-Time',
  'usr_modulation_type'      => 'USR-Modulation-Type',
  'usr_mp_edo'               => 'USR-MP-EDO',
  'usr_mp_edo_hiper'         => 'USR-MP-EDO-HIPER',
  'usr_mp_mrru'              => 'USR-MP-MRRU',
  'usr_mpip_tunnel_originat' => 'USR-MPIP-Tunnel-Originator',
  'usr_multicast_forwarding' => 'USR-Multicast-Forwarding',
  'usr_multicast_proxy'      => 'USR-Multicast-Proxy',
  'usr_multicast_receive'    => 'USR-Multicast-Receive',
  'usr_nailed_b_channel_ind' => 'USR-Nailed-B-Channel-Indicator',
  'usr_nas_type'             => 'USR-NAS-Type',
  'usr_nfas_id'              => 'USR-NFAS-ID',
  'usr_num_fax_pages_proces' => 'USR-Num-Fax-Pages-Processed',
  'usr_number_of_blers'      => 'USR-Number-of-Blers',
  'usr_number_of_characters' => 'USR-Number-Of-Characters-Lost',
  'usr_number_of_fallbacks'  => 'USR-Number-of-Fallbacks',
  'usr_number_of_link_naks'  => 'USR-Number-of-Link-NAKs',
  'usr_number_of_link_timeo' => 'USR-Number-of-Link-Timeouts',
  'usr_number_of_rings_limi' => 'USR-Number-of-Rings-Limit',
  'usr_number_of_upshifts'   => 'USR-Number-of-Upshifts',
  'usr_orig_nas_type'        => 'USR-Orig-NAS-Type',
  'usr_originate_answer_mod' => 'USR-Originate-Answer-Mode',
  'usr_ospf_addressless_ind' => 'USR-OSPF-Addressless-Index',
  'usr_packet_bus_session'   => 'USR-Packet-Bus-Session',
  'usr_physical_state'       => 'USR-Physical-State',
  'usr_policy_access'        => 'USR-Policy-Access',
  'usr_policy_configuration' => 'USR-Policy-Configuration',
  'usr_policy_filename'      => 'USR-Policy-Filename',
  'usr_policy_type'          => 'USR-Policy-Type',
  'usr_port_tap'             => 'USR-Port-Tap',
  'usr_port_tap_address'     => 'USR-Port-Tap-Address',
  'usr_port_tap_facility'    => 'USR-Port-Tap-Facility',
  'usr_port_tap_format'      => 'USR-Port-Tap-Format',
  'usr_port_tap_output'      => 'USR-Port-Tap-Output',
  'usr_port_tap_priority'    => 'USR-Port-Tap-Priority',
  'usr_power_supply_number'  => 'USR-Power-Supply-Number',
  'usr_pq_default_priority'  => 'USR-PQ-Default-Priority',
  'usr_pq_parameters'        => 'USR-PQ-Parameters',
  'usr_pre_paid_enabled'     => 'USR-Pre-Paid-Enabled',
  'usr_pre_shared_mn_key'    => 'USR-Pre-Shared-MN-Key',
  'usr_primary_dns_server'   => 'USR-Primary_DNS_Server',
  'usr_primary_nbns_server'  => 'USR-Primary_NBNS_Server',
  'usr_pw_cutoff'            => 'USR-PW_Cutoff',
  'usr_pw_framed_routing_v2' => 'USR-PW_Framed_Routing_V2',
  'usr_pw_index'             => 'USR-PW_Index',
  'usr_pw_packet'            => 'USR-PW_Packet',
  'usr_pw_tunnel_authentica' => 'USR-PW_Tunnel_Authentication',
  'usr_pw_usr_ifilter_ip'    => 'USR-PW_USR_IFilter_IP',
  'usr_pw_usr_ifilter_ipx'   => 'USR-PW_USR_IFilter_IPX',
  'usr_pw_usr_ofilter_ip'    => 'USR-PW_USR_OFilter_IP',
  'usr_pw_usr_ofilter_ipx'   => 'USR-PW_USR_OFilter_IPX',
  'usr_pw_usr_ofilter_sap'   => 'USR-PW_USR_OFilter_SAP',
  'usr_pw_vpn_gateway'       => 'USR-PW_VPN_Gateway',
  'usr_pw_vpn_id'            => 'USR-PW_VPN_ID',
  'usr_pw_vpn_name'          => 'USR-PW_VPN_Name',
  'usr_pw_vpn_neighbor'      => 'USR-PW_VPN_Neighbor',
  'usr_q931_call_reference_' => 'USR-Q931-Call-Reference-Value',
  'usr_qnc1_service_destina' => 'USR-QNC1-Service-Destination',
  'usr_qos_queuing_mehtod'   => 'USR-QoS-Queuing-Mehtod',
  'usr_rad_dvmrp_metric'     => 'USR-Rad-Dvmrp-Metric',
  'usr_rad_ip_pool_definiti' => 'USR-Rad-IP-Pool-Definition',
  'usr_rad_location_type'    => 'USR-Rad-Location-Type',
  'usr_rad_multicast_routin' => 'USR-Rad-Multicast-Routing-Ttl',
  'usr_rad_multicast_routio' => 'USR-Rad-Multicast-Routing-RtLim',
  'usr_rad_multicast_routip' => 'USR-Rad-Multicast-Routing-Proto',
  'usr_rad_multicast_routiq' => 'USR-Rad-Multicast-Routing-Bound',
  'usr_rad_nmc_blocks_rx'    => 'USR-Rad-NMC-Blocks_RX',
  'usr_rad_nmc_call_progres' => 'USR-Rad-NMC-Call-Progress-Status',
  'usr_re_chap_timeout'      => 'USR-Re-Chap-Timeout',
  'usr_re_reg_server_addr'   => 'USR-Re-Reg-Server-Addr',
  'usr_receive_acc_map'      => 'USR-Receive-Acc-Map',
  'usr_redirect'             => 'USR-Redirect',
  'usr_reg_server_prov_time' => 'USR-Reg-Server-Prov-Timeout',
  'usr_reply_script1'        => 'USR-Reply-Script1',
  'usr_reply_script2'        => 'USR-Reply-Script2',
  'usr_reply_script3'        => 'USR-Reply-Script3',
  'usr_reply_script4'        => 'USR-Reply-Script4',
  'usr_reply_script5'        => 'USR-Reply-Script5',
  'usr_reply_script6'        => 'USR-Reply-Script6',
  'usr_request_type'         => 'USR-Request-Type',
  'usr_retrains_granted'     => 'USR-Retrains-Granted',
  'usr_retrains_requested'   => 'USR-Retrains-Requested',
  'usr_rmmie_firmware_build' => 'USR-RMMIE-Firmware-Build-Date',
  'usr_rmmie_firmware_versi' => 'USR-RMMIE-Firmware-Version',
  'usr_rmmie_last_update_ev' => 'USR-RMMIE-Last-Update-Event',
  'usr_rmmie_last_update_ti' => 'USR-RMMIE-Last-Update-Time',
  'usr_rmmie_manufacturer_i' => 'USR-RMMIE-Manufacturer-ID',
  'usr_rmmie_num_of_updates' => 'USR-RMMIE-Num-Of-Updates',
  'usr_rmmie_planned_discon' => 'USR-RMMIE-Planned-Disconnect',
  'usr_rmmie_product_code'   => 'USR-RMMIE-Product-Code',
  'usr_rmmie_pwrlvl_farecho' => 'USR-RMMIE-PwrLvl-FarEcho-Canc',
  'usr_rmmie_pwrlvl_nearech' => 'USR-RMMIE-PwrLvl-NearEcho-Canc',
  'usr_rmmie_pwrlvl_noise_l' => 'USR-RMMIE-PwrLvl-Noise-Lvl',
  'usr_rmmie_pwrlvl_xmit_lv' => 'USR-RMMIE-PwrLvl-Xmit-Lvl',
  'usr_rmmie_rcv_pwrlvl_330' => 'USR-RMMIE-Rcv-PwrLvl-3300Hz',
  'usr_rmmie_rcv_pwrlvl_375' => 'USR-RMMIE-Rcv-PwrLvl-3750Hz',
  'usr_rmmie_rcv_tot_pwrlvl' => 'USR-RMMIE-Rcv-Tot-PwrLvl',
  'usr_rmmie_serial_number'  => 'USR-RMMIE-Serial-Number',
  'usr_rmmie_status'         => 'USR-RMMIE-Status',
  'usr_rmmie_x2_status'      => 'USR-RMMIE-x2-Status',
  'usr_routing_protocol'     => 'USR-Routing-Protocol',
  'usr_sap_filter_in'        => 'USR-SAP-Filter-In',
  'usr_secondary_dns_server' => 'USR-Secondary_DNS_Server',
  'usr_secondary_nbns_serve' => 'USR-Secondary_NBNS_Server',
  'usr_security_login_limit' => 'USR-Security-Login-Limit',
  'usr_security_resp_limit'  => 'USR-Security-Resp-Limit',
  'usr_send_name'            => 'USR-Send-Name',
  'usr_send_password'        => 'USR-Send-Password',
  'usr_send_script1'         => 'USR-Send-Script1',
  'usr_send_script2'         => 'USR-Send-Script2',
  'usr_send_script3'         => 'USR-Send-Script3',
  'usr_send_script4'         => 'USR-Send-Script4',
  'usr_send_script5'         => 'USR-Send-Script5',
  'usr_send_script6'         => 'USR-Send-Script6',
  'usr_server_time'          => 'USR-Server-Time',
  'usr_service_option'       => 'USR-Service-Option',
  'usr_session_time_remain'  => 'USR-Session-Time-Remain',
  'usr_simplified_mnp_level' => 'USR-Simplified-MNP-Levels',
  'usr_simplified_v42bis_us' => 'USR-Simplified-V42bis-Usage',
  'usr_slot_connected_to'    => 'USR-Slot-Connected-To',
  'usr_special_xon_xoff_flo' => 'USR-Special-Xon-Xoff-Flow',
  'usr_speed_of_connection'  => 'USR-Speed-Of-Connection',
  'usr_spoofing'             => 'USR-Spoofing',
  'usr_start_time'           => 'USR-Start-Time',
  'usr_supports_tags'        => 'USR-Supports-Tags',
  'usr_sync_async_mode'      => 'USR-Sync-Async-Mode',
  'usr_syslog_tap'           => 'USR-Syslog-Tap',
  'usr_telnet_options'       => 'USR-Telnet-Options',
  'usr_terminal_type'        => 'USR-Terminal-Type',
  'usr_traffic_threshold'    => 'USR-Traffic-Threshold',
  'usr_transmit_acc_map'     => 'USR-Transmit-Acc-Map',
  'usr_tunnel_auth_hostname' => 'USR-Tunnel-Auth-Hostname',
  'usr_tunnel_challenge_out' => 'USR-Tunnel-Challenge-Outgoing',
  'usr_tunnel_security'      => 'USR-Tunnel-Security',
  'usr_tunnel_switch_endpoi' => 'USR-Tunnel-Switch-Endpoint',
  'usr_tunneled_mlpp'        => 'USR-Tunneled-MLPP',
  'usr_unauthenticated_time' => 'USR-Unauthenticated-Time',
  'usr_unnumbered_local_ip_' => 'USR-Unnumbered-Local-IP-Address',
  'usr_user_ppp_aodi_type'   => 'USR-User-PPP-AODI-Type',
  'usr_vlan_tag'             => 'USR-VLAN-Tag',
  'usr_vpn_encrypter'        => 'USR-VPN-Encrypter',
  'usr_vpn_gw_location_id'   => 'USR-VPN-GW-Location-Id',
  'usr_vts_session_key'      => 'USR-VTS-Session-Key',
  'usr_wallclock_timestamp'  => 'USR-Wallclock-Timestamp',
  'usr_x25_acct_input_segme' => 'USR-X25-Acct-Input-Segment-Count',
  'usr_x25_acct_output_segm' => 'USR-X25-Acct-Output-Segment-Coun',
  'usr_x25_acct_segment_siz' => 'USR-X25-Acct-Segment-Size',
  'usr_x25_acct_termination' => 'USR-X25-Acct-Termination-Code',
  'usr_x25_svc_call_attribu' => 'USR-X25-SVC-Call-Attributes',
  'usr_x25_svc_logical_chan' => 'USR-X25-SVC-Logical-Channel-Numb',
  'usr_x25_trunk_profile'    => 'USR-X25-Trunk-Profile',
  'utstarcom_act_input_fram' => 'UTStarcom-Act-Input-Frames',
  'utstarcom_act_input_octe' => 'UTStarcom-Act-Input-Octets',
  'utstarcom_act_output_fra' => 'UTStarcom-Act-Output-Frames',
  'utstarcom_act_output_oct' => 'UTStarcom-Act-Output-Octets',
  'utstarcom_cli_access_lev' => 'UTStarcom-CLI-Access-Level',
  'utstarcom_committedbandw' => 'UTStarcom-CommittedBandwidth',
  'utstarcom_default_gatewa' => 'UTStarcom-Default-Gateway',
  'utstarcom_deviceid'       => 'UTStarcom-DeviceId',
  'utstarcom_error_reason'   => 'UTStarcom-Error-Reason',
  'utstarcom_logical_port_n' => 'UTStarcom-Logical-Port-No',
  'utstarcom_maxbandwidth'   => 'UTStarcom-MaxBandwidth',
  'utstarcom_maxburstsize'   => 'UTStarcom-MaxBurstSize',
  'utstarcom_maxdelay'       => 'UTStarcom-MaxDelay',
  'utstarcom_maxjitter'      => 'UTStarcom-MaxJitter',
  'utstarcom_module_id'      => 'UTStarcom-Module-Id',
  'utstarcom_onu_admin_stat' => 'UTStarcom-ONU-Admin_status',
  'utstarcom_onu_fw_sc_upgr' => 'UTStarcom-ONU-FW-SC-Upgrade',
  'utstarcom_onu_mc_filter_' => 'UTStarcom-Onu-MC-Filter-Enable',
  'utstarcom_port_no'        => 'UTStarcom-Port-No',
  'utstarcom_primarydns'     => 'UTStarcom-PrimaryDNS',
  'utstarcom_priority'       => 'UTStarcom-Priority',
  'utstarcom_secondarydns'   => 'UTStarcom-SecondaryDNS',
  'utstarcom_uni_auto_negot' => 'UTStarcom-UNI-Auto-Negotiation',
  'utstarcom_uni_duplex'     => 'UTStarcom-UNI-Duplex',
  'utstarcom_uni_max_mac'    => 'UTStarcom-UNI-MAX-MAC',
  'utstarcom_uni_speed'      => 'UTStarcom-UNI-Speed',
  'utstarcom_vlan_id'        => 'UTStarcom-VLAN-ID',
  'vendor_specific'          => 'Vendor-Specific',
  'versanet_termination_cau' => 'Versanet-Termination-Cause',
  'virtual_server'           => 'Virtual-Server',
  'vlan_source_info'         => 'Vlan-Source-Info',
  'vmps_client_ip_address'   => 'VMPS-Client-IP-Address',
  'vmps_cookie'              => 'VMPS-Cookie',
  'vmps_domain_name'         => 'VMPS-Domain-Name',
  'vmps_error_code'          => 'VMPS-Error-Code',
  'vmps_ethernet_frame'      => 'VMPS-Ethernet-Frame',
  'vmps_mac'                 => 'VMPS-MAC',
  'vmps_packet_type'         => 'VMPS-Packet-Type',
  'vmps_port_name'           => 'VMPS-Port-Name',
  'vmps_sequence_number'     => 'VMPS-Sequence-Number',
  'vmps_unknown'             => 'VMPS-Unknown',
  'vmps_vlan_name'           => 'VMPS-VLAN-Name',
  'vnc_pppoe_cbq_rx'         => 'VNC-PPPoE-CBQ-RX',
  'vnc_pppoe_cbq_rx_fallbac' => 'VNC-PPPoE-CBQ-RX-Fallback',
  'vnc_pppoe_cbq_tx'         => 'VNC-PPPoE-CBQ-TX',
  'vnc_pppoe_cbq_tx_fallbac' => 'VNC-PPPoE-CBQ-TX-Fallback',
  'vnc_splash'               => 'VNC-Splash',
  'vqp_client_ip_address'    => 'VQP-Client-IP-Address',
  'vqp_cookie'               => 'VQP-Cookie',
  'vqp_domain_name'          => 'VQP-Domain-Name',
  'vqp_error_code'           => 'VQP-Error-Code',
  'vqp_ethernet_frame'       => 'VQP-Ethernet-Frame',
  'vqp_mac'                  => 'VQP-MAC',
  'vqp_packet_type'          => 'VQP-Packet-Type',
  'vqp_port_name'            => 'VQP-Port-Name',
  'vqp_sequence_number'      => 'VQP-Sequence-Number',
  'vqp_unknown'              => 'VQP-Unknown',
  'vqp_vlan_name'            => 'VQP-VLAN-Name',
  'waverider_authentication' => 'Waverider-Authentication-Key',
  'waverider_current_passwo' => 'Waverider-Current-Password',
  'waverider_grade_of_servi' => 'Waverider-Grade-Of-Service',
  'waverider_max_customers'  => 'Waverider-Max-Customers',
  'waverider_new_password'   => 'Waverider-New-Password',
  'waverider_priority_enabl' => 'Waverider-Priority-Enabled',
  'waverider_radio_frequenc' => 'Waverider-Radio-Frequency',
  'waverider_rf_power'       => 'Waverider-Rf-Power',
  'waverider_snmp_contact'   => 'Waverider-SNMP-Contact',
  'waverider_snmp_location'  => 'Waverider-SNMP-Location',
  'waverider_snmp_name'      => 'Waverider-SNMP-Name',
  'waverider_snmp_read_comm' => 'Waverider-SNMP-Read-Community',
  'waverider_snmp_trap_serv' => 'Waverider-SNMP-Trap-Server',
  'waverider_snmp_write_com' => 'Waverider-SNMP-Write-Community',
  'wb_auth_accum_bw'         => 'WB-Auth-Accum-BW',
  'wb_auth_bw_count'         => 'WB-Auth-BW-Count',
  'wb_auth_bw_quota'         => 'WB-Auth-BW-Quota',
  'wb_auth_bw_usage'         => 'WB-Auth-BW-Usage',
  'wb_auth_download_limit'   => 'WB-Auth-Download-Limit',
  'wb_auth_login_time'       => 'WB-Auth-Login-Time',
  'wb_auth_logout_time'      => 'WB-Auth-Logout-Time',
  'wb_auth_time_diff'        => 'WB-Auth-Time-Diff',
  'wb_auth_time_left'        => 'WB-AUTH-Time-Left',
  'wb_auth_upload_limit'     => 'WB-Auth-Upload-Limit',
  'wichorus_policy_name'     => 'Wichorus-Policy-Name',
  'wichorus_user_privilege'  => 'Wichorus-User-Privilege',
  'wimax_aaa_session_id'     => 'WiMAX-AAA-Session-Id',
  'wimax_aaa_session_ie'     => 'WiMAX-AAA-Session-Id',
  'wimax_accounting_capabil' => 'WiMAX-Accounting-Capabilities',
  'wimax_accounting_capabim' => 'WiMAX-Accounting-Capabilities',
  'wimax_acct_input_packets' => 'WiMAX-Acct-Input-Packets-Gigaword',
  'wimax_acct_input_packett' => 'WiMAX-Acct-Input-Packets-Gigaword',
  'wimax_acct_output_packet' => 'WiMAX-Acct-Output-Packets-Gigaword',
  'wimax_acct_output_packeu' => 'WiMAX-Acct-Output-Packets-Gigaword',
  'wimax_activation_trigger' => 'WiMAX-Activation-Trigger',
  'wimax_activation_trigges' => 'WiMAX-Activation-Trigger',
  'wimax_active_time_durati' => 'WiMAX-Active-Time-Duration',
  'wimax_active_time_duratj' => 'WiMAX-Active-Time-Duration',
  'wimax_asn_network_servic' => 'WiMAX-ASN-Network-Service-Capabilities',
  'wimax_authorized_ip_serv' => 'WiMAX-Authorized-IP-Services',
  'wimax_available_in_clien' => 'WiMAX-Available-In-Client',
  'wimax_available_in_clieo' => 'WiMAX-Available-In-Client',
  'wimax_beginning_of_sessi' => 'WiMAX-Beginning-Of-Session',
  'wimax_beginning_of_sessj' => 'WiMAX-Beginning-Of-Session',
  'wimax_blu_coa_ipv6'       => 'WiMAX-Blu-Coa-IPv6',
  'wimax_bs_id'              => 'WiMAX-BS-Id',
  'wimax_bs_ie'              => 'WiMAX-BS-Id',
  'wimax_bu_coa_ipv6'        => 'WiMAX-BU-CoA-IPv6',
  'wimax_capability'         => 'WiMAX-Capability',
  'wimax_capabilitz'         => 'WiMAX-Capability',
  'wimax_check_balance_resu' => 'WiMAX-Check-Balance-Result',
  'wimax_check_balance_resv' => 'WiMAX-Check-Balance-Result',
  'wimax_control_octets_in'  => 'WiMAX-Control-Octets-In',
  'wimax_control_octets_io'  => 'WiMAX-Control-Octets-In',
  'wimax_control_octets_out' => 'WiMAX-Control-Octets-Out',
  'wimax_control_octets_ouu' => 'WiMAX-Control-Octets-Out',
  'wimax_control_packets_in' => 'WiMAX-Control-Packets-In',
  'wimax_control_packets_io' => 'WiMAX-Control-Packets-In',
  'wimax_control_packets_ou' => 'WiMAX-Control-Packets-Out',
  'wimax_control_packets_ov' => 'WiMAX-Control-Packets-Out',
  'wimax_cost_information_a' => 'WiMAX-Cost-Information-AVP',
  'wimax_cost_information_b' => 'WiMAX-Cost-Information-AVP',
  'wimax_count_type'         => 'WiMAX-Count-Type',
  'wimax_count_typf'         => 'WiMAX-Count-Type',
  'wimax_device_authenticat' => 'WiMAX-Device-Authentication-Indicator',
  'wimax_device_authenticau' => 'WiMAX-Device-Authentication-Indicator',
  'wimax_dhcp_msg_server_ip' => 'WiMAX-DHCP-Msg-Server-IP',
  'wimax_dhcp_msg_server_iq' => 'WiMAX-DHCP-Msg-Server-IP',
  'wimax_dhcp_rk'            => 'WiMAX-DHCP-RK',
  'wimax_dhcp_rk_key_id'     => 'WiMAX-DHCP-RK-Key-Id',
  'wimax_dhcp_rk_key_ie'     => 'WiMAX-DHCP-RK-Key-Id',
  'wimax_dhcp_rk_lifetime'   => 'WiMAX-DHCP-RK-Lifetime',
  'wimax_dhcp_rk_lifetimf'   => 'WiMAX-DHCP-RK-Lifetime',
  'wimax_dhcp_rl'            => 'WiMAX-DHCP-RK',
  'wimax_dhcpv4_server'      => 'WiMAX-DHCPv4-Server',
  'wimax_dhcpv4_serves'      => 'WiMAX-DHCPv4-Server',
  'wimax_dhcpv6_server'      => 'WiMAX-DHCPv6-Server',
  'wimax_dhcpv6_serves'      => 'WiMAX-DHCPv6-Server',
  'wimax_direction'          => 'WiMAX-Direction',
  'wimax_directioo'          => 'WiMAX-Direction',
  'wimax_dm_action_code'     => 'WiMAX-DM-Action-Code',
  'wimax_dm_action_codf'     => 'WiMAX-DM-Action-Code',
  'wimax_dns_server'         => 'WiMAX-DNS-Server',
  'wimax_dns_serves'         => 'WiMAX-DNS-Server',
  'wimax_downlink_classifie' => 'WiMAX-Downlink-Classifier',
  'wimax_downlink_classifif' => 'WiMAX-Downlink-Classifier',
  'wimax_downlink_flow_desc' => 'WiMAX-Downlink-Flow-Description',
  'wimax_downlink_flow_desd' => 'WiMAX-Downlink-Flow-Description',
  'wimax_downlink_granted_q' => 'WiMAX-Downlink-Granted-QoS',
  'wimax_downlink_granted_r' => 'WiMAX-Downlink-Granted-QoS',
  'wimax_downlink_qos_id'    => 'WiMAX-Downlink-QOS-Id',
  'wimax_downlink_qos_ie'    => 'WiMAX-Downlink-QOS-Id',
  'wimax_duration_quota'     => 'WiMAX-Duration-Quota',
  'wimax_duration_quotb'     => 'WiMAX-Duration-Quota',
  'wimax_duration_threshold' => 'WiMAX-Duration-Threshold',
  'wimax_duration_threshole' => 'WiMAX-Duration-Threshold',
  'wimax_fa_rk_key'          => 'WiMAX-FA-RK-Key',
  'wimax_fa_rk_kez'          => 'WiMAX-FA-RK-Key',
  'wimax_fa_rk_spi'          => 'WiMAX-FA-RK-SPI',
  'wimax_fa_rk_spj'          => 'WiMAX-FA-RK-SPI',
  'wimax_global_service_cla' => 'WiMAX-Global-Service-Class-Name',
  'wimax_global_service_clb' => 'WiMAX-Global-Service-Class-Name',
  'wimax_gmt_timezone_offse' => 'WiMAX-GMT-Timezone-offset',
  'wimax_gmt_timezone_offsf' => 'WiMAX-GMT-Timezone-offset',
  'wimax_ha_rk_key'          => 'WiMAX-HA-RK-Key',
  'wimax_ha_rk_key_requeste' => 'WiMAX-HA-RK-Key-Requested',
  'wimax_ha_rk_key_requestf' => 'WiMAX-HA-RK-Key-Requested',
  'wimax_ha_rk_kez'          => 'WiMAX-HA-RK-Key',
  'wimax_ha_rk_lifetime'     => 'WiMAX-HA-RK-Lifetime',
  'wimax_ha_rk_lifetimf'     => 'WiMAX-HA-RK-Lifetime',
  'wimax_ha_rk_spi'          => 'WiMAX-HA-RK-SPI',
  'wimax_ha_rk_spj'          => 'WiMAX-HA-RK-SPI',
  'wimax_hha_ip_mip4'        => 'WiMAX-hHA-IP-MIP4',
  'wimax_hha_ip_mip5'        => 'WiMAX-hHA-IP-MIP4',
  'wimax_hha_ip_mip6'        => 'WiMAX-hHA-IP-MIP6',
  'wimax_hha_ip_mip7'        => 'WiMAX-hHA-IP-MIP6',
  'wimax_hotline_indicator'  => 'WiMAX-Hotline-Indicator',
  'wimax_hotline_indicatos'  => 'WiMAX-Hotline-Indicator',
  'wimax_hotline_profile_id' => 'WiMAX-Hotline-Profile-Id',
  'wimax_hotline_profile_ie' => 'WiMAX-Hotline-Profile-Id',
  'wimax_hotline_session_ti' => 'WiMAX-Hotline-Session-Timer',
  'wimax_hotline_session_tj' => 'WiMAX-Hotline-Session-Timer',
  'wimax_hotlining_capabili' => 'WiMAX-Hotlining-Capabilities',
  'wimax_hotlining_capabilj' => 'WiMAX-Hotlining-Capabilities',
  'wimax_hour'               => 'WiMAX-Hour',
  'wimax_http_redirection_r' => 'WiMAX-HTTP-Redirection-Rule',
  'wimax_http_redirection_s' => 'WiMAX-HTTP-Redirection-Rule',
  'wimax_idle_mode_notifica' => 'WiMAX-Idle-Mode-Notification-Cap',
  'wimax_idle_mode_notificb' => 'WiMAX-Idle-Mode-Notification-Cap',
  'wimax_idle_mode_transiti' => 'WiMAX-Idle-Mode-Transition',
  'wimax_idle_mode_transitj' => 'WiMAX-Idle-Mode-Transition',
  'wimax_ip_redirection_rul' => 'WiMAX-IP-Redirection-Rule',
  'wimax_ip_redirection_rum' => 'WiMAX-IP-Redirection-Rule',
  'wimax_ip_technology'      => 'WiMAX-IP-Technology',
  'wimax_ip_technologz'      => 'WiMAX-IP-Technology',
  'wimax_location'           => 'WiMAX-Location',
  'wimax_locatioo'           => 'WiMAX-Location',
  'wimax_maximum_latency'    => 'WiMAX-Maximum-Latency',
  'wimax_maximum_latencz'    => 'WiMAX-Maximum-Latency',
  'wimax_maximum_sustained_' => 'WiMAX-Maximum-Sustained-Traffic-Rate',
  'wimax_maximum_sustaineda' => 'WiMAX-Maximum-Sustained-Traffic-Rate',
  'wimax_maximum_traffic_bu' => 'WiMAX-Maximum-Traffic-Burst',
  'wimax_maximum_traffic_bv' => 'WiMAX-Maximum-Traffic-Burst',
  'wimax_media_flow_descrip' => 'WiMAX-Media-Flow-Description-SDP',
  'wimax_media_flow_descriq' => 'WiMAX-Media-Flow-Description-SDP',
  'wimax_media_flow_type'    => 'WiMAX-Media-Flow-Type',
  'wimax_media_flow_typf'    => 'WiMAX-Media-Flow-Type',
  'wimax_minimum_reserved_t' => 'WiMAX-Minimum-Reserved-Traffic-Rate',
  'wimax_minimum_reserved_u' => 'WiMAX-Minimum-Reserved-Traffic-Rate',
  'wimax_minute'             => 'WiMAX-Minute',
  'wimax_mn_hha_mip4_key'    => 'WiMAX-MN-hHA-MIP4-Key',
  'wimax_mn_hha_mip4_kez'    => 'WiMAX-MN-hHA-MIP4-Key',
  'wimax_mn_hha_mip4_spi'    => 'WiMAX-MN-hHA-MIP4-SPI',
  'wimax_mn_hha_mip4_spj'    => 'WiMAX-MN-hHA-MIP4-SPI',
  'wimax_mn_hha_mip6_key'    => 'WiMAX-MN-hHA-MIP6-Key',
  'wimax_mn_hha_mip6_kez'    => 'WiMAX-MN-hHA-MIP6-Key',
  'wimax_mn_hha_mip6_spi'    => 'WiMAX-MN-hHA-MIP6-SPI',
  'wimax_mn_hha_mip6_spj'    => 'WiMAX-MN-hHA-MIP6-SPI',
  'wimax_mn_nai'             => 'WiMAX-MN-NAI',
  'wimax_mn_vha_mip4_spi'    => 'WiMAX-MN-vHA-MIP4-SPI',
  'wimax_mn_vha_mip4_spj'    => 'WiMAX-MN-vHA-MIP4-SPI',
  'wimax_mn_vha_mip6_key'    => 'WiMAX-MN-vHA-MIP6-Key',
  'wimax_mn_vha_mip6_kez'    => 'WiMAX-MN-vHA-MIP6-Key',
  'wimax_mn_vha_mip6_spi'    => 'WiMAX-MN-vHA-MIP6-SPI',
  'wimax_mn_vha_mip6_spj'    => 'WiMAX-MN-vHA-MIP6-SPI',
  'wimax_msk'                => 'WiMAX-MSK',
  'wimax_msl'                => 'WiMAX-MSK',
  'wimax_nap_id'             => 'WiMAX-NAP-Id',
  'wimax_nap_ie'             => 'WiMAX-NAP-Id',
  'wimax_nsp_id'             => 'WiMAX-NSP-Id',
  'wimax_nsp_ie'             => 'WiMAX-NSP-Id',
  'wimax_packet_data_flow_i' => 'WiMAX-Packet-Data-Flow-Id',
  'wimax_packet_data_flow_j' => 'WiMAX-Packet-Data-Flow-Id',
  'wimax_packet_flow_descri' => 'WiMAX-Packet-Flow-Descriptor',
  'wimax_packet_flow_descrj' => 'WiMAX-Packet-Flow-Descriptor-Capabilities',
  'wimax_packet_flow_descrk' => 'WiMAX-Packet-Flow-Descriptor',
  'wimax_pdfid'              => 'WiMAX-PDFID',
  'wimax_pdfie'              => 'WiMAX-PDFID',
  'wimax_pool_id'            => 'WiMAX-Pool-Id',
  'wimax_pool_ie'            => 'WiMAX-Pool-Id',
  'wimax_pool_multiplier'    => 'WiMAX-Pool-Multiplier',
  'wimax_pool_multiplies'    => 'WiMAX-Pool-Multiplier',
  'wimax_ppac'               => 'WiMAX-PPAC',
  'wimax_ppad'               => 'WiMAX-PPAC',
  'wimax_ppaq'               => 'WiMAX-PPAQ',
  'wimax_ppaq_quota_identif' => 'WiMAX-PPAQ-Quota-Identifier',
  'wimax_ppaq_quota_identig' => 'WiMAX-PPAQ-Quota-Identifier',
  'wimax_ppar'               => 'WiMAX-PPAQ',
  'wimax_prepaid_indicator'  => 'WiMAX-Prepaid-Indicator',
  'wimax_prepaid_indicatos'  => 'WiMAX-Prepaid-Indicator',
  'wimax_prepaid_quota_iden' => 'WiMAX-Prepaid-Quota-Identifier',
  'wimax_prepaid_quota_ideo' => 'WiMAX-Prepaid-Quota-Identifier',
  'wimax_prepaid_server'     => 'WiMAX-Prepaid-Server',
  'wimax_prepaid_serves'     => 'WiMAX-Prepaid-Server',
  'wimax_prepaid_tariff_swi' => 'WiMAX-Prepaid-Tariff-Switching',
  'wimax_prepaid_tariff_swj' => 'WiMAX-Prepaid-Tariff-Switching',
  'wimax_qos_descriptor'     => 'WiMAX-QoS-Descriptor',
  'wimax_qos_descriptos'     => 'WiMAX-QoS-Descriptor',
  'wimax_qos_id'             => 'WiMAX-QoS-Id',
  'wimax_qos_ie'             => 'WiMAX-QoS-Id',
  'wimax_rating_group_id'    => 'WiMAX-Rating-Group-Id',
  'wimax_rating_group_ie'    => 'WiMAX-Rating-Group-Id',
  'wimax_reduced_resources_' => 'WiMAX-Reduced-Resources-Code',
  'wimax_reduced_resourcesa' => 'WiMAX-Reduced-Resources-Code',
  'wimax_release'            => 'WiMAX-Release',
  'wimax_releasf'            => 'WiMAX-Release',
  'wimax_requested_action'   => 'WiMAX-Requested-Action',
  'wimax_requested_actioo'   => 'WiMAX-Requested-Action',
  'wimax_resource_quota'     => 'WiMAX-Resource-Quota',
  'wimax_resource_quotb'     => 'WiMAX-Resource-Quota',
  'wimax_resource_threshold' => 'WiMAX-Resource-Threshold',
  'wimax_resource_threshole' => 'WiMAX-Resource-Threshold',
  'wimax_rrq_ha_ip'          => 'WiMAX-RRQ-HA-IP',
  'wimax_rrq_ha_iq'          => 'WiMAX-RRQ-HA-IP',
  'wimax_rrq_mn_ha_key'      => 'WiMAX-RRQ-MN-HA-Key',
  'wimax_rrq_mn_ha_kez'      => 'WiMAX-RRQ-MN-HA-Key',
  'wimax_rrq_mn_ha_spi'      => 'WiMAX-RRQ-MN-HA-SPI',
  'wimax_schedule_type'      => 'WiMAX-Schedule-Type',
  'wimax_schedule_typf'      => 'WiMAX-Schedule-Type',
  'wimax_sdfid'              => 'WiMAX-SDFID',
  'wimax_sdfie'              => 'WiMAX-SDFID',
  'wimax_sdu_size'           => 'WiMAX-SDU-Size',
  'wimax_sdu_sizf'           => 'WiMAX-SDU-Size',
  'wimax_service_class_name' => 'WiMAX-Service-Class-Name',
  'wimax_service_class_namf' => 'WiMAX-Service-Class-Name',
  'wimax_service_data_flow_' => 'WiMAX-Service-Data-Flow-Id',
  'wimax_service_data_flowa' => 'WiMAX-Service-Data-Flow-Id',
  'wimax_service_id'         => 'WiMAX-Service-Id',
  'wimax_service_ie'         => 'WiMAX-Service-Id',
  'wimax_service_profile_id' => 'WiMAX-Service-Profile-Id',
  'wimax_service_profile_ie' => 'WiMAX-Service-Profile-Id',
  'wimax_session_continue'   => 'WiMAX-Session-Continue',
  'wimax_session_continuf'   => 'WiMAX-Session-Continue',
  'wimax_session_terminatio' => 'WiMAX-Session-Termination-Capability',
  'wimax_session_terminatip' => 'WiMAX-Session-Termination-Capability',
  'wimax_tariff_switch_inte' => 'WiMAX-Tariff-Switch-Interval',
  'wimax_tariff_switch_intf' => 'WiMAX-Tariff-Switch-Interval',
  'wimax_termination_action' => 'WiMAX-Termination-Action',
  'wimax_termination_actioo' => 'WiMAX-Termination-Action',
  'wimax_time_interval_afte' => 'WiMAX-Time-Interval-After',
  'wimax_time_interval_aftf' => 'WiMAX-Time-Interval-After',
  'wimax_time_of_day_time'   => 'WiMAX-Time-Of-Day-Time',
  'wimax_tolerated_jitter'   => 'WiMAX-Tolerated-Jitter',
  'wimax_tolerated_jittes'   => 'WiMAX-Tolerated-Jitter',
  'wimax_traffic_priority'   => 'WiMAX-Traffic-Priority',
  'wimax_traffic_prioritz'   => 'WiMAX-Traffic-Priority',
  'wimax_transport_type'     => 'WiMAX-Transport-Type',
  'wimax_transport_typf'     => 'WiMAX-Transport-Type',
  'wimax_unsolicited_grant_' => 'WiMAX-Unsolicited-Grant-Interval',
  'wimax_unsolicited_granta' => 'WiMAX-Unsolicited-Grant-Interval',
  'wimax_unsolicited_pollin' => 'WiMAX-Unsolicited-Polling-Interval',
  'wimax_unsolicited_pollio' => 'WiMAX-Unsolicited-Polling-Interval',
  'wimax_update_reason'      => 'WiMAX-Update-Reason',
  'wimax_update_reasoo'      => 'WiMAX-Update-Reason',
  'wimax_uplink_classifier'  => 'WiMAX-Uplink-Classifier',
  'wimax_uplink_classifies'  => 'WiMAX-Uplink-Classifier',
  'wimax_uplink_flow_descri' => 'WiMAX-Uplink-Flow-Description',
  'wimax_uplink_flow_descrj' => 'WiMAX-Uplink-Flow-Description',
  'wimax_uplink_granted_qos' => 'WiMAX-Uplink-Granted-QoS',
  'wimax_uplink_granted_qot' => 'WiMAX-Uplink-Granted-QoS',
  'wimax_uplink_qos_id'      => 'WiMAX-Uplink-QOS-Id',
  'wimax_uplink_qos_ie'      => 'WiMAX-Uplink-QOS-Id',
  'wimax_utc_offset'         => 'WiMAX-UTC-Offset',
  'wimax_vdhcp_rk'           => 'WiMAX-vDHCP-RK',
  'wimax_vdhcp_rk_key_id'    => 'WiMAX-vDHCP-RK-Key-ID',
  'wimax_vdhcp_rk_key_ie'    => 'WiMAX-vDHCP-RK-Key-ID',
  'wimax_vdhcp_rk_lifetime'  => 'WiMAX-vDHCP-RK-Lifetime',
  'wimax_vdhcp_rk_lifetimf'  => 'WiMAX-vDHCP-RK-Lifetime',
  'wimax_vdhcp_rl'           => 'WiMAX-vDHCP-RK',
  'wimax_vdhcpv4_server'     => 'WiMAX-vDHCPv4-Server',
  'wimax_vdhcpv4_serves'     => 'WiMAX-vDHCPv4-Server',
  'wimax_vdhcpv6_server'     => 'WiMAX-vDHCPv6-Server',
  'wimax_vdhcpv6_serves'     => 'WiMAX-vDHCPv6-Server',
  'wimax_vha_ip_mip4'        => 'WiMAX-vHA-IP-MIP4',
  'wimax_vha_ip_mip5'        => 'WiMAX-vHA-IP-MIP4',
  'wimax_vha_ip_mip6'        => 'WiMAX-vHA-IP-MIP6',
  'wimax_vha_ip_mip7'        => 'WiMAX-vHA-IP-MIP6',
  'wimax_vha_mip4_key'       => 'WiMAX-vHA-MIP4-Key',
  'wimax_vha_mip4_kez'       => 'WiMAX-vHA-MIP4-Key',
  'wimax_vha_rk_key'         => 'WiMAX-vHA-RK-Key',
  'wimax_vha_rk_kez'         => 'WiMAX-vHA-RK-Key',
  'wimax_vha_rk_lifetime'    => 'WiMAX-vHA-RK-Lifetime',
  'wimax_vha_rk_lifetimf'    => 'WiMAX-vHA-RK-Lifetime',
  'wimax_vha_rk_spi'         => 'WiMAX-vHA-RK-SPI',
  'wimax_vha_rk_spj'         => 'WiMAX-vHA-RK-SPI',
  'wimax_volume_quota'       => 'WiMAX-Volume-Quota',
  'wimax_volume_quotb'       => 'WiMAX-Volume-Quota',
  'wimax_volume_threshold'   => 'WiMAX-Volume-Threshold',
  'wimax_volume_threshole'   => 'WiMAX-Volume-Threshold',
  'wimax_volume_used_after'  => 'WiMAX-Volume-Used-After',
  'wimax_volume_used_aftes'  => 'WiMAX-Volume-Used-After',
  'wispr_bandwidth_max_down' => 'WISPr-Bandwidth-Max-Down',
  'wispr_bandwidth_max_up'   => 'WISPr-Bandwidth-Max-Up',
  'wispr_bandwidth_min_down' => 'WISPr-Bandwidth-Min-Down',
  'wispr_bandwidth_min_up'   => 'WISPr-Bandwidth-Min-Up',
  'wispr_billing_class_of_s' => 'WISPr-Billing-Class-Of-Service',
  'wispr_location_id'        => 'WISPr-Location-ID',
  'wispr_location_name'      => 'WISPr-Location-Name',
  'wispr_logoff_url'         => 'WISPr-Logoff-URL',
  'wispr_redirection_url'    => 'WISPr-Redirection-URL',
  'wispr_session_terminate_' => 'WISPr-Session-Terminate-Time',
  'wispr_session_terminatea' => 'WISPr-Session-Terminate-End-Of-Day',
  'wlan_akm_suite'           => 'WLAN-AKM-Suite',
  'wlan_group_cipher'        => 'WLAN-Group-Cipher',
  'wlan_group_mgmt_cipher'   => 'WLAN-Group-Mgmt-Cipher',
  'wlan_hessid'              => 'WLAN-HESSID',
  'wlan_pairwise_cipher'     => 'WLAN-Pairwise-Cipher',
  'wlan_reason_code'         => 'WLAN-Reason-Code',
  'wlan_rf_band'             => 'WLAN-RF-Band',
  'wlan_venue_info'          => 'WLAN-Venue-Info',
  'wlan_venue_language'      => 'WLAN-Venue-Language',
  'wlan_venue_name'          => 'WLAN-Venue-Name',
  'x_ascend_add_seconds'     => 'X-Ascend-Add-Seconds',
  'x_ascend_ara_pw'          => 'X-Ascend-Ara-PW',
  'x_ascend_assign_ip_clien' => 'X-Ascend-Assign-IP-Client',
  'x_ascend_assign_ip_globa' => 'X-Ascend-Assign-IP-Global-Pool',
  'x_ascend_assign_ip_pool'  => 'X-Ascend-Assign-IP-Pool',
  'x_ascend_assign_ip_serve' => 'X-Ascend-Assign-IP-Server',
  'x_ascend_authen_alias'    => 'X-Ascend-Authen-Alias',
  'x_ascend_backup'          => 'X-Ascend-Backup',
  'x_ascend_bacp_enable'     => 'X-Ascend-BACP-Enable',
  'x_ascend_base_channel_co' => 'X-Ascend-Base-Channel-Count',
  'x_ascend_billing_number'  => 'X-Ascend-Billing-Number',
  'x_ascend_bridge'          => 'X-Ascend-Bridge',
  'x_ascend_bridge_address'  => 'X-Ascend-Bridge-Address',
  'x_ascend_call_attempt_li' => 'X-Ascend-Call-Attempt-Limit',
  'x_ascend_call_block_dura' => 'X-Ascend-Call-Block-Duration',
  'x_ascend_call_by_call'    => 'X-Ascend-Call-By-Call',
  'x_ascend_call_filter'     => 'X-Ascend-Call-Filter',
  'x_ascend_call_type'       => 'X-Ascend-Call-Type',
  'x_ascend_callback'        => 'X-Ascend-Callback',
  'x_ascend_client_assign_d' => 'X-Ascend-Client-Assign-DNS',
  'x_ascend_client_gateway'  => 'X-Ascend-Client-Gateway',
  'x_ascend_client_primary_' => 'X-Ascend-Client-Primary-DNS',
  'x_ascend_client_secondar' => 'X-Ascend-Client-Secondary-DNS',
  'x_ascend_connect_progres' => 'X-Ascend-Connect-Progress',
  'x_ascend_data_filter'     => 'X-Ascend-Data-Filter',
  'x_ascend_data_rate'       => 'X-Ascend-Data-Rate',
  'x_ascend_data_svc'        => 'X-Ascend-Data-Svc',
  'x_ascend_dba_monitor'     => 'X-Ascend-DBA-Monitor',
  'x_ascend_dec_channel_cou' => 'X-Ascend-Dec-Channel-Count',
  'x_ascend_dhcp_maximum_le' => 'X-Ascend-DHCP-Maximum-Leases',
  'x_ascend_dhcp_pool_numbe' => 'X-Ascend-DHCP-Pool-Number',
  'x_ascend_dhcp_reply'      => 'X-Ascend-DHCP-Reply',
  'x_ascend_dial_number'     => 'X-Ascend-Dial-Number',
  'x_ascend_dialout_allowed' => 'X-Ascend-Dialout-Allowed',
  'x_ascend_disconnect_caus' => 'X-Ascend-Disconnect-Cause',
  'x_ascend_event_type'      => 'X-Ascend-Event-Type',
  'x_ascend_expect_callback' => 'X-Ascend-Expect-Callback',
  'x_ascend_fcp_parameter'   => 'X-Ascend-FCP-Parameter',
  'x_ascend_first_dest'      => 'X-Ascend-First-Dest',
  'x_ascend_force_56'        => 'X-Ascend-Force-56',
  'x_ascend_fr_circuit_name' => 'X-Ascend-FR-Circuit-Name',
  'x_ascend_fr_dce_n392'     => 'X-Ascend-FR-DCE-N392',
  'x_ascend_fr_dce_n393'     => 'X-Ascend-FR-DCE-N393',
  'x_ascend_fr_direct'       => 'X-Ascend-FR-Direct',
  'x_ascend_fr_direct_dlci'  => 'X-Ascend-FR-Direct-DLCI',
  'x_ascend_fr_direct_profi' => 'X-Ascend-FR-Direct-Profile',
  'x_ascend_fr_dlci'         => 'X-Ascend-FR-DLCI',
  'x_ascend_fr_dte_n392'     => 'X-Ascend-FR-DTE-N392',
  'x_ascend_fr_dte_n393'     => 'X-Ascend-FR-DTE-N393',
  'x_ascend_fr_link_mgt'     => 'X-Ascend-FR-Link-Mgt',
  'x_ascend_fr_linkup'       => 'X-Ascend-FR-LinkUp',
  'x_ascend_fr_n391'         => 'X-Ascend-FR-N391',
  'x_ascend_fr_nailed_grp'   => 'X-Ascend-FR-Nailed-Grp',
  'x_ascend_fr_profile_name' => 'X-Ascend-FR-Profile-Name',
  'x_ascend_fr_t391'         => 'X-Ascend-FR-T391',
  'x_ascend_fr_t392'         => 'X-Ascend-FR-T392',
  'x_ascend_fr_type'         => 'X-Ascend-FR-Type',
  'x_ascend_ft1_caller'      => 'X-Ascend-FT1-Caller',
  'x_ascend_group'           => 'X-Ascend-Group',
  'x_ascend_handle_ipx'      => 'X-Ascend-Handle-IPX',
  'x_ascend_history_weigh_t' => 'X-Ascend-History-Weigh-Type',
  'x_ascend_home_agent_ip_a' => 'X-Ascend-Home-Agent-IP-Addr',
  'x_ascend_home_agent_pass' => 'X-Ascend-Home-Agent-Password',
  'x_ascend_home_agent_udp_' => 'X-Ascend-Home-Agent-UDP-Port',
  'x_ascend_home_network_na' => 'X-Ascend-Home-Network-Name',
  'x_ascend_host_info'       => 'X-Ascend-Host-Info',
  'x_ascend_idle_limit'      => 'X-Ascend-Idle-Limit',
  'x_ascend_if_netmask'      => 'X-Ascend-IF-Netmask',
  'x_ascend_inc_channel_cou' => 'X-Ascend-Inc-Channel-Count',
  'x_ascend_ip_direct'       => 'X-Ascend-IP-Direct',
  'x_ascend_ip_pool_definit' => 'X-Ascend-IP-Pool-Definition',
  'x_ascend_ipx_alias'       => 'X-Ascend-IPX-Alias',
  'x_ascend_ipx_node_addr'   => 'X-Ascend-IPX-Node-Addr',
  'x_ascend_ipx_peer_mode'   => 'X-Ascend-IPX-Peer-Mode',
  'x_ascend_ipx_route'       => 'X-Ascend-IPX-Route',
  'x_ascend_link_compressio' => 'X-Ascend-Link-Compression',
  'x_ascend_maximum_call_du' => 'X-Ascend-Maximum-Call-Duration',
  'x_ascend_maximum_channel' => 'X-Ascend-Maximum-Channels',
  'x_ascend_maximum_time'    => 'X-Ascend-Maximum-Time',
  'x_ascend_menu_item'       => 'X-Ascend-Menu-Item',
  'x_ascend_menu_selector'   => 'X-Ascend-Menu-Selector',
  'x_ascend_metric'          => 'X-Ascend-Metric',
  'x_ascend_minimum_channel' => 'X-Ascend-Minimum-Channels',
  'x_ascend_modem_portno'    => 'X-Ascend-Modem-PortNo',
  'x_ascend_modem_shelfno'   => 'X-Ascend-Modem-ShelfNo',
  'x_ascend_modem_slotno'    => 'X-Ascend-Modem-SlotNo',
  'x_ascend_mpp_idle_percen' => 'X-Ascend-MPP-Idle-Percent',
  'x_ascend_multicast_clien' => 'X-Ascend-Multicast-Client',
  'x_ascend_multicast_rate_' => 'X-Ascend-Multicast-Rate-Limit',
  'x_ascend_multilink_id'    => 'X-Ascend-Multilink-ID',
  'x_ascend_netware_timeout' => 'X-Ascend-Netware-timeout',
  'x_ascend_num_in_multilin' => 'X-Ascend-Num-In-Multilink',
  'x_ascend_number_sessions' => 'X-Ascend-Number-Sessions',
  'x_ascend_ppp_address'     => 'X-Ascend-PPP-Address',
  'x_ascend_ppp_async_map'   => 'X-Ascend-PPP-Async-Map',
  'x_ascend_ppp_vj_1172'     => 'X-Ascend-PPP-VJ-1172',
  'x_ascend_ppp_vj_slot_com' => 'X-Ascend-PPP-VJ-Slot-Comp',
  'x_ascend_pre_input_octet' => 'X-Ascend-Pre-Input-Octets',
  'x_ascend_pre_input_packe' => 'X-Ascend-Pre-Input-Packets',
  'x_ascend_pre_output_octe' => 'X-Ascend-Pre-Output-Octets',
  'x_ascend_pre_output_pack' => 'X-Ascend-Pre-Output-Packets',
  'x_ascend_preempt_limit'   => 'X-Ascend-Preempt-Limit',
  'x_ascend_presession_time' => 'X-Ascend-PreSession-Time',
  'x_ascend_pri_number_type' => 'X-Ascend-PRI-Number-Type',
  'x_ascend_primary_home_ag' => 'X-Ascend-Primary-Home-Agent',
  'x_ascend_pw_lifetime'     => 'X-Ascend-PW-Lifetime',
  'x_ascend_pw_warntime'     => 'X-Ascend-PW-Warntime',
  'x_ascend_receive_secret'  => 'X-Ascend-Receive-Secret',
  'x_ascend_remote_addr'     => 'X-Ascend-Remote-Addr',
  'x_ascend_remove_seconds'  => 'X-Ascend-Remove-Seconds',
  'x_ascend_require_auth'    => 'X-Ascend-Require-Auth',
  'x_ascend_route_ip'        => 'X-Ascend-Route-IP',
  'x_ascend_route_ipx'       => 'X-Ascend-Route-IPX',
  'x_ascend_secondary_home_' => 'X-Ascend-Secondary-Home-Agent',
  'x_ascend_seconds_of_hist' => 'X-Ascend-Seconds-Of-History',
  'x_ascend_send_auth'       => 'X-Ascend-Send-Auth',
  'x_ascend_send_passwd'     => 'X-Ascend-Send-Passwd',
  'x_ascend_send_secret'     => 'X-Ascend-Send-Secret',
  'x_ascend_session_svr_key' => 'X-Ascend-Session-Svr-Key',
  'x_ascend_shared_profile_' => 'X-Ascend-Shared-Profile-Enable',
  'x_ascend_target_util'     => 'X-Ascend-Target-Util',
  'x_ascend_temporary_rtes'  => 'X-Ascend-Temporary-Rtes',
  'x_ascend_third_prompt'    => 'X-Ascend-Third-Prompt',
  'x_ascend_token_expiry'    => 'X-Ascend-Token-Expiry',
  'x_ascend_token_idle'      => 'X-Ascend-Token-Idle',
  'x_ascend_token_immediate' => 'X-Ascend-Token-Immediate',
  'x_ascend_transit_number'  => 'X-Ascend-Transit-Number',
  'x_ascend_ts_idle_limit'   => 'X-Ascend-TS-Idle-Limit',
  'x_ascend_ts_idle_mode'    => 'X-Ascend-TS-Idle-Mode',
  'x_ascend_tunneling_proto' => 'X-Ascend-Tunneling-Protocol',
  'x_ascend_user_acct_base'  => 'X-Ascend-User-Acct-Base',
  'x_ascend_user_acct_host'  => 'X-Ascend-User-Acct-Host',
  'x_ascend_user_acct_key'   => 'X-Ascend-User-Acct-Key',
  'x_ascend_user_acct_port'  => 'X-Ascend-User-Acct-Port',
  'x_ascend_user_acct_time'  => 'X-Ascend-User-Acct-Time',
  'x_ascend_user_acct_type'  => 'X-Ascend-User-Acct-Type',
  'x_ascend_xmit_rate'       => 'X-Ascend-Xmit-Rate',
  'xedia_address_pool'       => 'Xedia-Address-Pool',
  'xedia_client_access_netw' => 'Xedia-Client-Access-Network',
  'xedia_client_firewall_se' => 'Xedia-Client-Firewall-Setting',
  'xedia_dns_server'         => 'Xedia-DNS-Server',
  'xedia_netbios_server'     => 'Xedia-NetBios-Server',
  'xedia_ppp_echo_interval'  => 'Xedia-PPP-Echo-Interval',
  'xedia_save_password'      => 'Xedia-Save-Password',
  'xedia_ssh_privileges'     => 'Xedia-SSH-Privileges',
  'xylan_acce_priv_f_r1'     => 'Xylan-Acce-Priv-F-R1',
  'xylan_acce_priv_f_r2'     => 'Xylan-Acce-Priv-F-R2',
  'xylan_acce_priv_f_w1'     => 'Xylan-Acce-Priv-F-W1',
  'xylan_acce_priv_f_w2'     => 'Xylan-Acce-Priv-F-W2',
  'xylan_acce_priv_g1'       => 'Xylan-Acce-Priv-G1',
  'xylan_acce_priv_g2'       => 'Xylan-Acce-Priv-G2',
  'xylan_acce_priv_r1'       => 'Xylan-Acce-Priv-R1',
  'xylan_acce_priv_r2'       => 'Xylan-Acce-Priv-R2',
  'xylan_acce_priv_w1'       => 'Xylan-Acce-Priv-W1',
  'xylan_acce_priv_w2'       => 'Xylan-Acce-Priv-W2',
  'xylan_access_priv'        => 'Xylan-Access-Priv',
  'xylan_asa_access'         => 'Xylan-Asa-Access',
  'xylan_auth_group'         => 'Xylan-Auth-Group',
  'xylan_auth_group_protoco' => 'Xylan-Auth-Group-Protocol',
  'xylan_client_ip_addr'     => 'Xylan-Client-IP-Addr',
  'xylan_group_desc'         => 'Xylan-Group-Desc',
  'xylan_port_desc'          => 'Xylan-Port-Desc',
  'xylan_profil_numb'        => 'Xylan-Profil-Numb',
  'xylan_slot_port'          => 'Xylan-Slot-Port',
  'xylan_time_of_day'        => 'Xylan-Time-of-Day',
  'zeus_zxtm_group'          => 'Zeus-ZXTM-Group',
  'zte_access_domain'        => 'ZTE-Access-Domain',
  'zte_access_type'          => 'ZTE-Access-Type',
  'zte_client_dns_pri'       => 'ZTE-Client-DNS-Pri',
  'zte_client_dns_sec'       => 'ZTE-Client-DNS-Sec',
  'zte_context_name'         => 'ZTE-Context-Name',
  'zte_igmp_service_profile' => 'ZTE-IGMP-Service-Profile-Num',
  'zte_mcast_maxgroups'      => 'ZTE-Mcast-MaxGroups',
  'zte_mcast_receive'        => 'ZTE-Mcast-Receive',
  'zte_mcast_send'           => 'ZTE-Mcast-Send',
  'zte_ppp_sservice_type'    => 'ZTE-PPP-Sservice-Type',
  'zte_pppoe_motm'           => 'ZTE-PPPOE-MOTM',
  'zte_pppoe_url'            => 'ZTE-PPPOE-URL',
  'zte_priority_level'       => 'ZTE-Priority-Level',
  'zte_qos_profile_down'     => 'ZTE-QoS-Profile-Down',
  'zte_qos_profile_down_v6'  => 'ZTE-QoS-Profile-Down-v6',
  'zte_qos_profile_up'       => 'ZTE-QOS-Profile-Up',
  'zte_qos_profile_up_v6'    => 'ZTE-QoS-Profile-Up-v6',
  'zte_qos_type'             => 'ZTE-QoS-Type',
  'zte_rate_bust_dpir'       => 'ZTE_Rate-Bust-DPIR',
  'zte_rate_bust_upir'       => 'ZTE_Rate-Bust-UPIR',
  'zte_rate_ctrl_burst_down' => 'ZTE-Rate-Ctrl-Burst-Down',
  'zte_rate_ctrl_burst_dowo' => 'ZTE-Rate-Ctrl-Burst-Down-v6',
  'zte_rate_ctrl_burst_max_' => 'ZTE-Rate-Ctrl-Burst-Max-Down',
  'zte_rate_ctrl_burst_maxa' => 'ZTE-Rate-Ctrl-Burst-Max-Up',
  'zte_rate_ctrl_burst_maxb' => 'ZTE-Rate-Ctrl-Burst-Max-Up-v6',
  'zte_rate_ctrl_burst_maxc' => 'ZTE-Rate-Ctrl-Burst-Max-Down-v6',
  'zte_rate_ctrl_burst_up'   => 'ZTE-Rate-Ctrl-Burst-Up',
  'zte_rate_ctrl_burst_up_v' => 'ZTE-Rate-Ctrl-Burst-Up-v6',
  'zte_rate_ctrl_pbs_down'   => 'ZTE-Rate-Ctrl-PBS-Down',
  'zte_rate_ctrl_pbs_down_v' => 'ZTE-Rate-Ctrl-PBS-Down-v6',
  'zte_rate_ctrl_pbs_up'     => 'ZTE-Rate-Ctrl-PBS-Up',
  'zte_rate_ctrl_pbs_up_v6'  => 'ZTE-Rate-Ctrl-PBS-Up-v6',
  'zte_rate_ctrl_pcr'        => 'ZTE-Rate-Ctrl-PCR',
  'zte_rate_ctrl_scr_down'   => 'ZTE-Rate-Ctrl-SCR-Down',
  'zte_rate_ctrl_scr_down_v' => 'ZTE-Rate-Ctrl-SCR-Down-v6',
  'zte_rate_ctrl_scr_up'     => 'ZTE-Rate-Ctrl-SCR-Up',
  'zte_rate_ctrl_scr_up_v6'  => 'ZTE-Rate-Ctrl-SCR-Up-v6',
  'zte_tcp_limit_mode'       => 'ZTE-TCP-Limit-Mode',
  'zte_tcp_limit_num'        => 'ZTE-TCP-Limit-Num',
  'zte_tcp_syn_rate'         => 'ZTE-TCP-Syn-Rate',
  'zte_tunnel_algorithm'     => 'ZTE-Tunnel-Algorithm',
  'zte_tunnel_cmd_timeout'   => 'ZTE-Tunnel-Cmd-Timeout',
  'zte_tunnel_deadtime'      => 'ZTE-Tunnel-Deadtime',
  'zte_tunnel_max_sessions'  => 'ZTE-Tunnel-Max-Sessions',
  'zte_tunnel_max_tunnels'   => 'ZTE-Tunnel-Max-Tunnels',
  'zte_tunnel_retransmit'    => 'ZTE-Tunnel-Retransmit',
  'zte_tunnel_window'        => 'ZTE-Tunnel-Window',
  'zte_vpn_id'               => 'ZTE-VPN-ID',
  'zyxel_callback_option'    => 'Zyxel-Callback-Option',
  'zyxel_callback_phone_sou' => 'Zyxel-Callback-Phone-Source',
  'zyxel_privilege_avpair'   => 'Zyxel-Privilege-AVPair',

  #(RADIATOR?)
  #'authentication_type'      => 'Authentication-Type',

  #Canopy? (Kellin)
  'motorola_canopy_gateway'   => 'Motorola-Canopy-Gateway',

);

1;