summaryrefslogtreecommitdiffstats
path: root/epan/dissectors/asn1/lte-rrc/lte-rrc.cnf
blob: 96c5ba5ed2abafd9a8a505e9c19bdf90c8fe6fcb (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
# lte-rrc.cnf
# lte-rrc conformation file
# Copyright 2008 Vincent Helfre, 2009-2024 Pascal Quantin

#.OPT
PER
UNALIGNED
PROTO_ROOT_NAME    proto_lte_rrc
#.END

#.FIELD_RENAME
UERadioAccessCapabilityInformation-r8-IEs/ue-RadioAccessCapabilityInfo  uERadioAccessCapabilityInformation-r8-IEs_ue-RadioAccessCapabilityInfo
RRCConnectionResumeRequest-r13-IEs/resumeIdentity-r13                   rRCConnectionResumeRequest-r13-IEs_resumeIdentity-r13
UEAssistanceInformation-r11-IEs/powerPrefIndication-r11                 uEAssistanceInformation-r11-IEs_powerPrefIndication-r11
RRC-InactiveConfig-r15/dummy                                            rRC-InactiveConfig-r15_dummy
SystemInformationBlockType2-v9i0-IEs/dummy                              systemInformationBlockType2-v9i0-IEs_dummy
SystemInformationBlockType10/dummy                                      systemInformationBlockType10_dummy
SystemInformationBlockType20-r13/eag_1/br-BCCH-Config-r14/dummy         systemInformationBlockType20-r13_eag_1_br-BCCH-Config-r14_dummy
CSI-Process-r11/eag_3/dummy                                             cSI-Process-r11_eag_3_dummy
CSI-RS-Config-v1430/dummy                                               cSI-RS-Config-v1430_dummy
FreqHoppingParameters-r13/dummy                                         freqHoppingParameters-r13_dummy
RadioResourceConfigDedicated/eag_7/dummy                                radioResourceConfigDedicated_eag_7_dummy
SPUCCH-Config-r15/setup/dummy                                           sPUCCH-Config-r15_setup_dummy
NPRACH-ConfigSIB-NB-v1530/tdd-Parameters-r15/dummy                      nPRACH-ConfigSIB-NB-v1530_tdd-Parameters-r15_dummy
UE-Capability-NB-r13/dummy                                              uE-Capability-NB-r13_dummy
PUR-PUSCH-Config-r16/pur-GrantInfo-r16/ce-ModeA/numRUs-r16              pUR-PUSCH-Config-r16_pur-GrantInfo-r16_ce-ModeA_numRUs-r16
RadioResourceConfigDedicatedPSCell-r12/eag_3/crs-IntfMitigEnabled-r15   eag_3_crs-IntfMitigEnabled-r15
RadioResourceConfigDedicatedSCell-r10/eag_5/crs-IntfMitigEnabled-r15    eag_5_crs-IntfMitigEnabled-r15
CRS-AssistanceInfo-r15/crs-IntfMitigEnabled-r15                         cRS-AssistanceInfo-r15_crs-IntfMitigEnabled-r15
MeasObjectEUTRA/offsetFreq                                              measObjectEUTRA_offsetFreq
CarrierFreqInfoUTRA-v1250/reducedMeasPerformance-r12                    carrierFreqInfoUTRA-v1250_reducedMeasPerformance-r12
CarrierFreqUTRA-FDD-Ext-r12/reducedMeasPerformance-r12                  carrierFreqUTRA-FDD-Ext-r12_reducedMeasPerformance-r12
CarrierFreqUTRA-TDD-r12/reducedMeasPerformance-r12                      carrierFreqUTRA-TDD-r12_reducedMeasPerformance-r12
MeasObjectEUTRA/eag_3/reducedMeasPerformance-r12                        measObjectEUTRA_eag_3_reducedMeasPerformance-r12
MeasObjectUTRA/eag_2/reducedMeasPerformance-r12                         measObjectUTRA_eag_2_reducedMeasPerformance-r12
MeasResultNR-r15/rsrqResult-r15                                         measResultNR-r15_rsrqResult-r15

RRCConnectionReconfiguration-v1250-IEs/wlan-OffloadInfo-r12/setup       rRCConnectionReconfiguration-v1250-IEs_wlan-OffloadInfo-r12_setup
RRCConnectionReconfiguration-v1510-IEs/nr-Config-r15/setup              rRCConnectionReconfiguration-v1510-IEs_nr-Config-r15_setup
SCG-Configuration-r12/setup                                             sCG-Configuration-r12_setup
SCG-Configuration-v12f0/setup                                           sCG-Configuration-v12f0_setup
SCG-Configuration-v13c0/setup                                           sCG-Configuration-v13c0_setup
RRCConnectionRelease-v1610-IEs/pur-Config-r16/setup                     rRCConnectionRelease-v1610-IEs_pur-Config-r16_setup
AntennaInfoDedicated/ue-TransmitAntennaSelection/setup                  antennaInfoDedicated_ue-TransmitAntennaSelection_setup
AntennaInfoDedicated-r10/ue-TransmitAntennaSelection/setup              antennaInfoDedicated-r10_ue-TransmitAntennaSelection_setup
AntennaInfoDedicatedSTTI-r15/setup                                      antennaInfoDedicatedSTTI-r15_setup
AntennaInfoDedicated-v1530/setup                                        antennaInfoDedicated-v1530_setup
AUL-Config-r15/setup                                                    aUL-Config-r15_setup
CQI-ReportAperiodic-r10/setup                                           cQI-ReportAperiodic-r10_setup
CQI-ReportAperiodic-v1250/setup                                         cQI-ReportAperiodic-v1250_setup
CQI-ReportAperiodic-v1310/setup                                         cQI-ReportAperiodic-v1310_setup
CQI-ReportAperiodic-v1310/setup/aperiodicCSI-Trigger2-r13/setup         cQI-ReportAperiodic-v1310_setup_aperiodicCSI-Trigger2-r13_setup
CQI-ReportConfig-r10/csi-SubframePatternConfig-r10/setup                cQI-ReportConfig-r10_csi-SubframePatternConfig-r10_setup
CQI-ReportConfig-v1250/csi-SubframePatternConfig-r12/setup              cQI-ReportConfig-v1250_csi-SubframePatternConfig-r12_setup
CQI-ReportConfig-r15/setup                                              cQI-ReportConfig-r15_setup
CQI-ReportPeriodic/setup                                                cQI-ReportPeriodic_setup
CQI-ReportPeriodic-r10/setup                                            cQI-ReportPeriodic-r10_setup
CQI-ReportPeriodic-r10/setup/csi-ConfigIndex-r10/setup                  cQI-ReportPeriodic-r10_setup_csi-ConfigIndex-r10_setup
CQI-ReportPeriodicSCell-r15/setup                                       cQI-ReportPeriodicSCell-r15_setup
CQI-ReportPeriodicSCell-r15/setup/csi-SubframePatternDormant-r15/setup  cQI-ReportPeriodicSCell-r15_setup_csi-SubframePatternDormant-r15_setup
CQI-ReportPeriodicProcExt-r11/csi-ConfigIndex-r11/setup                 cQI-ReportPeriodicProcExt-r11_csi-ConfigIndex-r11_setup
CQI-ShortConfigSCell-r15/setup                                          cQI-ShortConfigSCell-r15_setup
CRI-ReportConfig-r13/setup                                              cRI-ReportConfig-r13_setup
CSI-Process-r11/eag_1/csi-IM-ConfigIdList-r12/setup                     cSI-Process-r11_eag_1_csi-IM-ConfigIdList-r12_setup
CSI-Process-r11/eag_1/cqi-ReportAperiodicProc2-r12/setup                cSI-Process-r11_eag_1_cqi-ReportAperiodicProc2-r12_setup
CSI-Process-r11/eag_2/cqi-ReportAperiodicProc2-v1310/setup                               cSI-Process-r11_eag_2_cqi-ReportAperiodicProc2-v1310_setup
CSI-RS-Config-r10/csi-RS-r10/setup                                                       cSI-RS-Config-r10_csi-RS-r10_setup
CSI-RS-Config-v1250/ds-ZeroTxPowerCSI-RS-r12/setup                                       cSI-RS-Config-v1250_ds-ZeroTxPowerCSI-RS-r12_setup
CSI-RS-Config-r15/setup                                                                  cSI-RS-Config-r15_setup
ZeroTxPowerCSI-RS-Conf-r12/setup                                                         zeroTxPowerCSI-RS-Conf-r12_setup
CSI-RS-ConfigEMIMO-r13/setup                                                             cSI-RS-ConfigEMIMO-r13_setup
CSI-RS-ConfigEMIMO-v1430/setup                                                           cSI-RS-ConfigEMIMO-v1430_setup
CSI-RS-ConfigEMIMO-v1480/setup                                                           cSI-RS-ConfigEMIMO-v1480_setup
CSI-RS-ConfigEMIMO-v1530/setup                                                           cSI-RS-ConfigEMIMO-v1530_setup
CSI-RS-ConfigEMIMO2-r14/setup                                                            cSI-RS-ConfigEMIMO2-r14_setup
CSI-RS-ConfigEMIMO-Hybrid-r14/setup                                                      cSI-RS-ConfigEMIMO-Hybrid-r14_setup
CSI-RS-ConfigNZP-r11/qcl-CRS-Info-r11/mbsfn-SubframeConfigList-r11/setup                 cSI-RS-ConfigNZP-r11_qcl-CRS-Info-r11_mbsfn-SubframeConfigList-r11_setup
CSI-RS-ConfigNZP-r11/eag_3/mbsfn-SubframeConfigList-v1430/setup                          cSI-RS-ConfigNZP-r11_eag_3_mbsfn-SubframeConfigList-v1430_setup
CSI-RS-ConfigNZP-EMIMO-r13/setup                                                         cSI-RS-ConfigNZP-EMIMO-r13_setup
CSI-RS-ConfigZP-ApList-r14/setup                                                         cSI-RS-ConfigZP-ApList-r14_setup
DMRS-Config-r11/setup                                                                    dMRS-Config-r11_setup
EPDCCH-Config-r11/config-r11/setup                                                       ePDCCH-Config-r11_config-r11_setup
EPDCCH-Config-r11/config-r11/setup/subframePatternConfig-r11/setup                       ePDCCH-Config-r11_config-r11_setup_subframePatternConfig-r11_setup
EPDCCH-SetConfig-r11/eag_1/csi-RS-ConfigZPId2-r12/setup                                  ePDCCH-SetConfig-r11_eag_1_csi-RS-ConfigZPId2-r12_setup
EPDCCH-SetConfig-r11/eag_2/numberPRB-Pairs-v1310/setup                                   ePDCCH-SetConfig-r11_eag_2_numberPRB-Pairs-v1310_setup
EPDCCH-SetConfig-r11/eag_2/mpdcch-config-r13/setup                                       ePDCCH-SetConfig-r11_eag_2_mpdcch-config-r13_setup
EIMTA-MainConfig-r12/setup                                                               eIMTA-MainConfig-r12_setup
EIMTA-MainConfigServCell-r12/setup                                                       eIMTA-MainConfigServCell-r12_setup
EIMTA-MainConfigServCell-r12/setup/mbsfn-SubframeConfigList-v1250/setup                  eIMTA-MainConfigServCell-r12_setup_mbsfn-SubframeConfigList-v1250_setup
LogicalChannelConfig/eag_4/allowedTTI-Lengths-r15/setup                                  logicalChannelConfig_eag_4_allowedTTI-Lengths-r15_setup
LogicalChannelConfig/eag_4/logicalChannelSR-Restriction-r15/setup                        logicalChannelConfig_eag_4_logicalChannelSR-Restriction-r15_setup
LogicalChannelConfig/eag_4/channelAccessPriority-r15/setup                               logicalChannelConfig_eag_4_channelAccessPriority-r15_setup
LWA-Configuration-r13/setup                                                              lWA-Configuration-r13_setup
LWIP-Configuration-r13/setup                                                             lWIP-Configuration-r13_setup
MAC-MainConfig/phr-Config/setup                                                          mAC-MainConfig_phr-Config_setup
MAC-MainConfig/eag_4/dualConnectivityPHR/setup                                           mAC-MainConfig_eag_4_dualConnectivityPHR_setup
MAC-MainConfig/eag_4/logicalChannelSR-Config-r12/setup                                   mAC-MainConfig_eag_4_logicalChannelSR-Config-r12_setup
MAC-MainConfig/eag_5/eDRX-Config-CycleStartOffset-r13/setup                              mAC-MainConfig_eag_5_eDRX-Config-CycleStartOffset-r13_setup
MAC-MainConfig/eag_6/drx-Config-r13/setup                                                mainConfig_eag_6_drx-Config-r13_setup
MAC-MainConfig/eag_7/skipUplinkTx-r14/setup                                              mAC-MainConfig_eag_7_skipUplinkTx-r14_setup
MAC-MainConfig/eag_7/dataInactivityTimerConfig-r14/setup                                 mAC-MainConfig_eag_7_dataInactivityTimerConfig-r14_setup
MAC-MainConfig/eag_9/shortTTI-AndSPT-r15/setup                                           mAC-MainConfig_eag_9_shortTTI-AndSPT-r15_setup
MAC-MainConfig/eag_9/dormantStateTimers-r15/setup                                        mAC-MainConfig_eag_9_dormantStateTimers-r15_setup
DRX-Config/setup                                                                         dRX-Config_setup
PDCCH-CandidateReductions-r13/setup                                                      pDCCH-CandidateReductions-r13_setup
PDCCH-CandidateReductionsLAA-UL-r14/setup                                                pDCCH-CandidateReductionsLAA-UL-r14_setup
PDCP-Config/eag_4/ul-DataSplitThreshold-r13/setup                                        pDCP-Config_eag_4_ul-DataSplitThreshold-r13_setup
PDCP-Config/eag_4/statusFeedback-r13/setup                                               pDCP-Config_eag_4_statusFeedback-r13_setup
PDCP-Config/eag_5/ul-LWA-Config-r14/setup                                                pDCP-Config_eag_5_ul-LWA-Config-r14_setup
PDCP-Config/eag_6/pdcp-DuplicationConfig-r15/setup                                       pDCP-Config_eag_6_pdcp-DuplicationConfig-r15_setup
PDCP-Config/eag_7/ethernetHeaderCompression-r16/setup                                    pDCP-Config_eag_7_ethernetHeaderCompression-r16_setup
PDSCH-ConfigDedicated-v1610/ce-PDSCH-MultiTB-Config-r16/setup                            pDSCH-ConfigDedicated-v1610_ce-PDSCH-MultiTB-Config-r16_setup
PDSCH-RE-MappingQCL-Config-r11/optionalSetOfFields-r11/mbsfn-SubframeConfigList-r11/setup pDSCH-RE-MappingQCL-Config-r11_optionalSetOfFields-r11_mbsfn-SubframeConfigList-r11_setup
PDSCH-RE-MappingQCL-Config-r11/eag_1/mbsfn-SubframeConfigList-v1430/setup                 pDSCH-RE-MappingQCL-Config-r11_eag_1_mbsfn-SubframeConfigList-v1430_setup
PDSCH-RE-MappingQCL-Config-r11/eag_2/codewordOneConfig-v1530/setup                        pDSCH-RE-MappingQCL-Config-r11_eag_2_codewordOneConfig-v1530_setup
PhysicalConfigDedicated/eag_3/additionalSpectrumEmissionCA-r10/setup                      physicalConfigDedicated_eag_3_additionalSpectrumEmissionCA-r10_setup
PhysicalConfigDedicated/eag_7/ce-Mode-r13/setup                                           physicalConfigDedicated_eag_7_ce-Mode-r13_setup
PhysicalConfigDedicated/eag_9/typeA-SRS-TPC-PDCCH-Group-r14/setup                         physicalConfigDedicated_eag_7_ce-Mode-r13_setup
PhysicalConfigDedicated/eag_9/must-Config-r14/setup                                       physicalConfigDedicated_eag_9_must-Config-r14_setup
PhysicalConfigDedicated/eag_11/semiStaticCFI-Config-r15/setup                             physicalConfigDedicated_eag_11_semiStaticCFI-Config-r15_setup
PhysicalConfigDedicated/eag_11/blindPDSCH-Repetition-Config-r15/setup                     physicalConfigDedicated_eag_11_blindPDSCH-Repetition-Config-r15_setup
PhysicalConfigDedicated/eag_13/resourceReservationConfigDedicatedDL-r16/setup                  physicalConfigDedicated_eag_13_resourceReservationConfigDedicatedDL-r16_setup
PhysicalConfigDedicated/eag_13/resourceReservationConfigDedicatedUL-r16/setup                  physicalConfigDedicated_eag_13_resourceReservationConfigDedicatedUL-r16_setup
PhysicalConfigDedicated/eag_13/soundingRS-UL-ConfigDedicatedAdd-r16/setup                      physicalConfigDedicated_eag_13_soundingRS-UL-ConfigDedicatedAdd-r16_setup
PhysicalConfigDedicatedSCell-r10/eag_10/soundingRS-UL-ConfigDedicatedAdd-r16/setup             physicalConfigDedicatedSCell-r10_eag_10_soundingRS-UL-ConfigDedicatedAdd-r16_setup
PhysicalConfigDedicated/eag_13/uplinkPowerControlAddSRS-r16/setup                              physicalConfigDedicated_eag_13_uplinkPowerControlAddSRS-r16_setup
PhysicalConfigDedicatedSCell-r10/eag_10/uplinkPowerControlAddSRS-r16/setup                     physicalConfigDedicatedSCell-r10_eag_10_uplinkPowerControlAddSRS-r16_setup
PhysicalConfigDedicated/eag_13/soundingRS-VirtualCellID-r16/setup                              physicalConfigDedicated_eag_13_soundingRS-VirtualCellID-r16_setup
PhysicalConfigDedicatedSCell-r10/eag_10/soundingRS-VirtualCellID-r16/setup                     physicalConfigDedicatedSCell-r10_eag_10_soundingRS-VirtualCellID-r16_setup
PhysicalConfigDedicated/eag_13/widebandPRG-r16/setup                                           physicalConfigDedicated_eag_13_widebandPRG-r16_setup
PhysicalConfigDedicatedSCell-r10/eag_10/widebandPRG-r16/setup                                  physicalConfigDedicatedSCell-r10_eag_10_widebandPRG-r16_setup
PhysicalConfigDedicatedSCell-r10/eag_4/pucch-SCell/setup                                       physicalConfigDedicatedSCell-r10_eag_4_pucch-SCell_setup
PhysicalConfigDedicatedSCell-r10/eag_6/must-Config-r14/setup                                   physicalConfigDedicatedSCell-r10_eag_6_must-Config-r14_setup
PhysicalConfigDedicatedSCell-r10/eag_8/semiStaticCFI-Config-r15/setup                          physicalConfigDedicatedSCell-r10_eag_8_semiStaticCFI-Config-r15_setup
PhysicalConfigDedicatedSCell-r10/eag_8/blindPDSCH-Repetition-Config-r15/setup                  physicalConfigDedicatedSCell-r10_eag_8_blindPDSCH-Repetition-Config-r15_setup
PhysicalConfigDedicatedSCell-v1370/pucch-SCell-v1370/setup                                     physicalConfigDedicatedSCell-v1370_pucch-SCell-v1370_setup
PhysicalConfigDedicatedSCell-v13c0/pucch-SCell-v13c0/setup                                     physicalConfigDedicatedSCell-v13c0_pucch-SCell-v13c0_setup
LAA-SCellConfiguration-v1430/crossCarrierSchedulingConfig-UL-r14/setup                         lAA-SCellConfiguration-v1430_crossCarrierSchedulingConfig-UL-r14_setup
PhysicalConfigDedicatedSTTI-r15/setup                                                          physicalConfigDedicatedSTTI-r15_setup
PUCCH-ConfigDedicated/ackNackRepetition/setup                                                  pUCCH-ConfigDedicated_ackNackRepetition_setup
PUCCH-ConfigDedicated-v1020/pucch-Format-r10/channelSelection-r10/n1PUCCH-AN-CS-r10/setup      pUCCH-ConfigDedicated-v1020_pucch-Format-r10_channelSelection-r10_n1PUCCH-AN-CS-r10_setup
PUCCH-ConfigDedicated-v1130/n1PUCCH-AN-CS-v1130/setup                                          pUCCH-ConfigDedicated-v1130_n1PUCCH-AN-CS-v1130_setup
PUCCH-ConfigDedicated-v1130/nPUCCH-Param-r11/setup                                             pUCCH-ConfigDedicated-v1130_nPUCCH-Param-r11_setup
PUCCH-ConfigDedicated-v1250/nkaPUCCH-Param-r12/setup                                           pUCCH-ConfigDedicated-v1250_nkaPUCCH-Param-r12_setup
PUCCH-ConfigDedicated-r13/ackNackRepetition-r13/setup                                          pUCCH-ConfigDedicated-r13_ackNackRepetition-r13_setup
PUCCH-ConfigDedicated-r13/pucch-Format-r13/format3-r13/twoAntennaPortActivatedPUCCH-Format3-r13/setup pUCCH-ConfigDedicated-r13_pucch-Format-r13_format3-r13_twoAntennaPortActivatedPUCCH-Format3-r13_setup
PUCCH-ConfigDedicated-r13/pucch-Format-r13/channelSelection-r13/n1PUCCH-AN-CS-r13/setup        pUCCH-ConfigDedicated-r13_pucch-Format-r13_channelSelection-r13_n1PUCCH-AN-CS-r13_setup
PUCCH-ConfigDedicated-r13/nPUCCH-Param-r13/setup                                               pUCCH-ConfigDedicated-r13_nPUCCH-Param-r13_setup
PUCCH-ConfigDedicated-r13/nkaPUCCH-Param-r13/setup                                             pUCCH-ConfigDedicated-r13_nkaPUCCH-Param-r13_setup
PUCCH-ConfigDedicated-r13/pucch-NumRepetitionCE-r13/setup                                      pUCCH-ConfigDedicated-r13_pucch-NumRepetitionCE-r13_setup
PUCCH-ConfigDedicated-v1370/pucch-Format-v1370/setup                                           pUCCH-ConfigDedicated-v1370_pucch-Format-v1370_setup
PUCCH-ConfigDedicated-v13c0/channelSelection-v13c0/n1PUCCH-AN-CS-v13c0/setup                   pUCCH-ConfigDedicated-v13c0_channelSelection-v13c0_n1PUCCH-AN-CS-v13c0_setup
PUCCH-Format3-Conf-r13/twoAntennaPortActivatedPUCCH-Format3-r13/setup                          pUCCH-Format3-Conf-r13_twoAntennaPortActivatedPUCCH-Format3-r13_setup
PUR-Config-r16/pur-RSRP-ChangeThreshold-r16/setup                                              pUR-Config-r16_pur-RSRP-ChangeThreshold-r16_setup
PUSCH-ConfigDedicated-v1130/pusch-DMRS-r11/setup                                               pUSCH-ConfigDedicated-v1130_pusch-DMRS-r11_setup
PUSCH-ConfigDedicated-v1250/uciOnPUSCH/setup                                                   pUSCH-ConfigDedicated-v1250_uciOnPUSCH_setup
PUSCH-ConfigDedicated-r13/pusch-DMRS-r11/setup                                                 pUSCH-ConfigDedicated-r13_pusch-DMRS-r11_setup
PUSCH-ConfigDedicated-r13/uciOnPUSCH/setup                                                     pUSCH-ConfigDedicated-r13_uciOnPUSCH_setup
PUSCH-ConfigDedicated-v1530/ce-PUSCH-FlexibleStartPRB-AllocConfig-r15/setup                    pUSCH-ConfigDedicated-v1530_ce-PUSCH-FlexibleStartPRB-AllocConfig-r15_setup
PUSCH-ConfigDedicated-v1530/ce-PUSCH-SubPRB-Config-r15/setup                                   pUSCH-ConfigDedicated-v1530_ce-PUSCH-SubPRB-Config-r15_setup
PUSCH-ConfigDedicated-v1610/ce-PUSCH-MultiTB-Config-r16/setup                                  pUSCH-ConfigDedicated-v1610_ce-PUSCH-MultiTB-Config-r16_setup
PUSCH-ConfigDedicatedScell-v1530/uci-OnPUSCH-r15/setup                                         pUSCH-ConfigDedicatedScell-v1530_uci-OnPUSCH-r15_setup
TDD-PUSCH-UpPTS-r14/setup                                                                      tDD-PUSCH-UpPTS-r14_setup
Enable256QAM-r14/setup                                                                         enable256QAM-r14_setup
PUSCH-EnhancementsConfig-r14/setup                                                             pUSCH-EnhancementsConfig-r14_setup
RadioResourceConfigDedicated/eag_7/crs-IntfMitigConfig-r15/setup                               radioResourceConfigDedicated_eag_7_crs-IntfMitigConfig-r15_setup
RadioResourceConfigDedicated/eag_9/crs-ChEstMPDCCH-ConfigDedicated-r16/setup                   radioResourceConfigDedicated_eag_9_crs-ChEstMPDCCH-ConfigDedicated-r16_setup
MeasSubframePatternPCell-r10/setup                                                             measSubframePatternPCell-r10_setup
NeighCellsCRS-Info-r11/setup                                                                   neighCellsCRS-Info-r11_setup
NeighCellsCRS-Info-r13/setup                                                                   neighCellsCRS-Info-r13_setup
NeighCellsCRS-Info-r15/setup                                                                   neighCellsCRS-Info-r15_setup
NAICS-AssistanceInfo-r12/setup                                                                 nAICS-AssistanceInfo-r12_setup
RLC-BearerConfig-r15/setup                                                                     rLC-BearerConfig-r15_setup
RCLWI-Configuration-r13/setup                                                                  rCLWI-Configuration-r13_setup
RLC-Config-v1430/setup                                                                         rLC-Config-v1430_setup
RLC-Config-v1530/setup                                                                         rLC-Config-v1530_setup
RLF-TimersAndConstants-r9/setup                                                                rLF-TimersAndConstants-r9_setup
RLF-TimersAndConstants-r13/setup                                                               rLF-TimersAndConstants-r13_setup
RLF-TimersAndConstantsSCG-r12/setup                                                            rLF-TimersAndConstantsSCG-r12_setup
RLF-TimersAndConstantsMCG-Failure-r16/setup                                                    rLF-TimersAndConstantsMCG-Failure-r16_setup
SchedulingRequestConfig/setup                                                                  schedulingRequestConfig_setup
SchedulingRequestConfigSCell-r13/setup                                                         schedulingRequestConfigSCell-r13_setup
SchedulingRequestConfig-v1530/setup                                                            schedulingRequestConfig-v1530_setup
SlotOrSubslotPDSCH-Config-r15/setup                                                            slotOrSubslotPDSCH-Config-r15_setup
SlotOrSubslotPUSCH-Config-r15/setup                                                            slotOrSubslotPUSCH-Config-r15_setup
SoundingRS-UL-ConfigCommon/setup                                                               soundingRS-UL-ConfigCommon_setup
SoundingRS-UL-ConfigDedicated/setup                                                            soundingRS-UL-ConfigDedicated_setup
SoundingRS-UL-ConfigDedicated-v1310/setup                                                      soundingRS-UL-ConfigDedicated-v1310_setup
SoundingRS-UL-ConfigDedicatedUpPTsExt-r13/setup                                                soundingRS-UL-ConfigDedicatedUpPTsExt-r13_setup
SoundingRS-UL-ConfigDedicatedAperiodic-r10/setup                                               soundingRS-UL-ConfigDedicatedAperiodic-r10_setup
SoundingRS-UL-ConfigDedicatedAperiodic-v1310/setup                                             soundingRS-UL-ConfigDedicatedAperiodic-v1310_setup
SoundingRS-UL-ConfigDedicatedAperiodic-v1310/setup/srs-ActivateAp-v1310/setup                  soundingRS-UL-ConfigDedicatedAperiodic-v1310_setup_srs-ActivateAp-v1310_setup
SoundingRS-UL-ConfigDedicatedAperiodicUpPTsExt-r13/setup                                       soundingRS-UL-ConfigDedicatedAperiodicUpPTsExt-r13_setup
SoundingRS-UL-ConfigDedicatedAperiodicUpPTsExt-r13/setup/srs-ActivateAp-r13/setup              soundingRS-UL-ConfigDedicatedAperiodicUpPTsExt-r13_setup_srs-ActivateAp-r13_setup
SoundingRS-UL-ConfigDedicatedAperiodic-v1430/setup                                             soundingRS-UL-ConfigDedicatedAperiodic-v1430_setup
SoundingRS-UL-ConfigDedicatedAdd-r16/srs-ActivateAp-r13/setup                                  soundingRS-UL-ConfigDedicatedAdd-r16_srs-ActivateAp-r13_setup
SPDCCH-Config-r15/setup                                                                        sPDCCH-Config-r15_setup
SPDCCH-Elements-r15/setup                                                                      sPDCCH-Elements-r15_setup
SPS-ConfigDL/setup                                                                             sPS-ConfigDL_setup
SPS-ConfigDL/setup/eag_1/twoAntennaPortActivated-r10/setup                                     sPS-ConfigDL_setup_eag_1_twoAntennaPortActivated-r10_setup
SPS-ConfigUL/setup                                                                             sPS-ConfigUL_setup
SPS-ConfigUL/setup/eag_1/p0-PersistentSubframeSet2-r12/setup                                   sPS-ConfigUL_setup_eag_1_p0-PersistentSubframeSet2-r12_setup
SPS-ConfigDL-STTI-r15/setup                                                                    sPS-ConfigDL-STTI-r15_setup
SPS-ConfigDL-STTI-r15/setup/twoAntennaPortActivated-r15/setup                                  sPS-ConfigDL-STTI-r15_setup_twoAntennaPortActivated-r15_setup
SPS-ConfigUL-STTI-r15/setup                                                                    sPS-ConfigUL-STTI-r15_setup
SPS-ConfigUL-STTI-r15/setup/p0-PersistentSubframeSet2-r15/setup                                sPS-ConfigUL-STTI-r15_setup_p0-PersistentSubframeSet2-r15_setup
SPUCCH-Config-r15/setup                                                                        sPUCCH-Config-r15_setup
SPUCCH-Config-v1550/setup                                                                      sPUCCH-Config-v1550_setup
SPUCCH-Elements-r15/setup                                                                      sPUCCH-Elements-r15_setup
SRS-TPC-PDCCH-Config-r14/setup                                                                 sRS-TPC-PDCCH-Config-r14_setup
TDM-PatternConfig-r15/setup                                                                    tDM-PatternConfig-r15_setup
TPC-PDCCH-Config/setup                                                                         tPC-PDCCH-Config_setup
TPC-PDCCH-ConfigSCell-r13/setup                                                                tPC-PDCCH-ConfigSCell-r13_setup
UplinkPowerControlDedicated-v1250/set2PowerControlParameter/setup                              uplinkPowerControlDedicated-v1250_set2PowerControlParameter_setup
DeltaFList-SPUCCH-r15/setup                                                                    deltaFList-SPUCCH-r15_setup
BT-NameListConfig-r15/setup                                                                    bT-NameListConfig-r15_setup
MeasConfig/speedStatePars/setup                                                                measConfig_speedStatePars_setup
MeasConfig/eag_3/measScaleFactor-r12/setup                                                     measConfig_eag_3_measScaleFactor-r12_setup
MeasConfig/eag_7/heightThreshRef-r15/setup                                                     measConfig_eag_7_heightThreshRef-r15_setup
MeasDS-Config-r12/setup                                                                        measDS-Config-r12_setup
MeasGapConfig/setup                                                                            measGapConfig_setup
MeasGapConfigDensePRS-r15/setup                                                                measGapConfigDensePRS-r15_setup
MeasGapConfigPerCC-List-r14/setup                                                              measGapConfigPerCC-List-r14_setup
MeasGapSharingConfig-r14/setup                                                                 measGapSharingConfig-r14_setup
MeasObjectEUTRA/eag_3/t312-r12/setup                                                           measObjectEUTRA_eag_3_t312-r12_setup
MeasObjectEUTRA/eag_7/measRSS-DedicatedConfig-r16/setup                                        measObjectEUTRA_eag_7_measRSS-DedicatedConfig-r16_setup
MeasSubframePatternConfigNeigh-r10/setup                                                       measSubframePatternConfigNeigh-r10_setup
RMTC-Config-r13/setup                                                                          rMTC-Config-r13_setup
MeasObjectNR-r15/eag_1/bandNR-r15/setup                                                        measObjectNR-r15_eag_1_bandNR-r15_setup
MeasObjectNR-r15/eag_2/rmtc-ConfigNR-r16/setup                                                 measObjectNR-r15_eag_2_rmtc-ConfigNR-r16_setup
RS-ConfigSSB-NR-r15/eag_1/ssb-ToMeasure-r15/setup                                              rS-ConfigSSB-NR-r15_eag_1_ssb-ToMeasure-r15_setup
ReportConfigEUTRA/eag_3/alternativeTimeToTrigger-r12/setup                                     reportConfigEUTRA_eag_3_alternativeTimeToTrigger-r12_setup
ReportConfigEUTRA/eag_4/rs-sinr-Config-r13/setup                                               reportConfigEUTRA_eag_4_rs-sinr-Config-r13_setup
ReportConfigInterRAT/eag_4/b2-Threshold1-v1250/setup                                           reportConfigInterRAT_eag_4_b2-Threshold1-v1250_setup
UL-DelayConfig-r13/setup                                                                       uL-DelayConfig-r13_setup
UL-DelayValueConfig-r16/setup                                                                  uL-DelayValueConfig-r16_setup
WLAN-NameListConfig-r15/setup                                                                  wLAN-NameListConfig-r15_setup
OtherConfig-r9/eag_2/delayBudgetReportingConfig-r14/setup                                      otherConfig-r9_eag_2_delayBudgetReportingConfig-r14_setup
OtherConfig-r9/eag_2/rlm-ReportConfig-r14/setup                                                otherConfig-r9_eag_2_rlm-ReportConfig-r14_setup
OtherConfig-r9/eag_3/overheatingAssistanceConfig-r14/setup                                     otherConfig-r9_eag_3_overheatingAssistanceConfig-r14_setup
OtherConfig-r9/eag_4/measConfigAppLayer-r15/setup                                              otherConfig-r9_eag_4_measConfigAppLayer-r15_setup
IDC-Config-r11/eag_3/idc-Indication-MRDC-r15/setup                                             iDC-Config-r11_eag_3_idc-Indication-MRDC-r15_setup
PowerPrefIndicationConfig-r11/setup                                                            powerPrefIndicationConfig-r11_setup
SL-CommConfig-r12/commTxResources-r12/setup                                                    sL-CommConfig-r12_commTxResources-r12_setup
SL-CommConfig-r12/eag_1/commTxResources-v1310/setup                                            sL-CommConfig-r12_eag_1_commTxResources-v1310_setup
SL-DiscConfig-r12/discTxResources-r12/setup                                                    sL-DiscConfig-r12_discTxResources-r12_setup
SL-DiscConfig-r12/eag_1/discTF-IndexList-v1260/setup                                           sL-DiscConfig-r12_eag_1_discTF-IndexList-v1260_setup
SL-DiscConfig-r12/eag_2/discTxResourcesPS-r13/setup                                            sL-DiscConfig-r12_eag_2_discTxResourcesPS-r13_setup
SL-DiscConfig-r12/eag_2/discTxInterFreqInfo-r13/setup                                          sL-DiscConfig-r12_eag_2_discTxInterFreqInfo-r13_setup
SL-DiscConfig-r12/eag_2/discRxGapConfig-r13/setup                                              sL-DiscConfig-r12_eag_2_discRxGapConfig-r13_setup
SL-DiscConfig-r12/eag_2/discTxGapConfig-r13/setup                                              sL-DiscConfig-r12_eag_2_discTxGapConfig-r13_setup
SL-DiscConfig-r12/eag_2/discSysInfoToReportConfig-r13/setup                                    sL-DiscConfig-r12_eag_2_discSysInfoToReportConfig-r13_setup
SL-DiscTxResource-r13/setup                                                                    sL-DiscTxResource-r13_setup
SL-DiscResourcePool-r12/eag_1/discPeriod-v1310/setup                                           sL-DiscResourcePool-r12_eag_1_discPeriod-v1310_setup
SL-DiscResourcePool-r12/eag_1/rxParamsAddNeighFreq-r13/setup                                   sL-DiscResourcePool-r12_eag_1_rxParamsAddNeighFreq-r13_setup
SL-DiscResourcePool-r12/eag_1/txParamsAddNeighFreq-r13/setup                                   sL-DiscResourcePool-r12_eag_1_txParamsAddNeighFreq-r13_setup
SL-DiscResourcePool-r12/eag_2/txParamsAddNeighFreq-v1370/setup                                 sL-DiscResourcePool-r12_eag_2_txParamsAddNeighFreq-v1370_setup
SL-V2X-ConfigDedicated-r14/commTxResources-r14/setup                                           sL-V2X-ConfigDedicated-r14_commTxResources-r14_setup
SL-V2X-ConfigDedicated-r14/eag_1/commTxResources-v1530/setup                                   sL-V2X-ConfigDedicated-r14_eag_1_commTxResources-v1530_setup
RRCConnectionRelease-NB-v1610-IEs/pur-Config-r16/setup                                         rRCConnectionRelease-NB-v1610-IEs_pur-Config-r16_setup
MAC-MainConfig-NB-r13/logicalChannelSR-Config-r13/setup                                        mAC-MainConfig-NB-r13_logicalChannelSR-Config-r13_setup
MAC-MainConfig-NB-r13/eag_1/dataInactivityTimerConfig-r14/setup                                mAC-MainConfig-NB-r13_eag_1_dataInactivityTimerConfig-r14_setup
DRX-Config-NB-r13/setup                                                                        dRX-Config-NB-r13_setup
PhysicalConfigDedicated-NB-r13/eag_5/resourceReservationConfigDL-r16/setup                     physicalConfigDedicated-NB-r13_eag_5_resourceReservationConfigDL-r16_setup
PhysicalConfigDedicated-NB-r13/eag_5/resourceReservationConfigUL-r16/setup                     physicalConfigDedicated-NB-r13_eag_5_resourceReservationConfigUL-r16_setup
PUR-Config-NB-r16/pur-NRSRP-ChangeThreshold-r16/setup                                          pUR-Config-NB-r16_pur-NRSRP-ChangeThreshold-r16_setup
RLF-TimersAndConstants-NB-r13/setup                                                            rLF-TimersAndConstants-NB-r13_setup
SR-WithoutHARQ-ACK-Config-NB-r15/setup                                                         sR-WithoutHARQ-ACK-Config-NB-r15_setup
SR-SPS-BSR-Config-NB-r15/setup                                                                 sR-SPS-BSR-Config-NB-r15_setup
RSRQ-RangeConfig-r12/setup                                                                     rSRQ-RangeConfig-r12_setup

CSI-Process-r11/eag_1/csi-IM-ConfigIdList-r12/setup/_item                                      csi-IM-ConfigIdList-r12_setup_item
CSI-RS-ConfigZP-ApList-r14/setup/_item                                                         cSI-RS-ConfigZP-ApList-r14_setup_item
PhysicalConfigDedicated/eag_9/typeA-SRS-TPC-PDCCH-Group-r14/setup/_item                        typeA-SRS-TPC-PDCCH-Group-r14_setup_item

IDC-Config-r11/idc-Indication-r11                                                              iDC-Config-r11_idc-Indication-r11
WidebandPRG-r16/widebandPRG-Subframe-r16                                                       widebandPRG-r16_widebandPRG-Subframe-r16
PhyLayerParameters-v1610/widebandPRG-Subframe-r16                                              phyLayerParameters-v1610_widebandPRG-Subframe-r16

CSI-IM-Config-r11/eag_1/interferenceMeasRestriction-r13                                        cSI-IM-Config-r11_eag_1_interferenceMeasRestriction-r13
CSI-IM-ConfigExt-r12/eag_1/interferenceMeasRestriction-r13                                     cSI-IM-ConfigExt-r12_eag_1_interferenceMeasRestriction-r13
MIMO-UE-Parameters-r13/interferenceMeasRestriction-r13                                         mIMO-UE-Parameters-r13_interferenceMeasRestriction-r13

RRCConnectionReestablishmentComplete-NB-v1610-IEs/anr-InfoAvailable-r16                        rRCConnectionReestablishmentComplete-NB-v1610-IEs_anr-InfoAvailable-r16
RRCConnectionResumeComplete-NB-v1610-IEs/anr-InfoAvailable-r16                                 rRCConnectionResumeComplete-NB-v1610-IEs_anr-InfoAvailable-r16
RRCConnectionResumeRequest-NB-r13-IEs/anr-InfoAvailable-r16                                    rRCConnectionResumeRequest-NB-r13-IEs_anr-InfoAvailable-r16

MasterInformationBlock-NB/additionalTransmissionSIB1-r15                                       masterInformationBlock-NB_additionalTransmissionSIB1-r15
PhyLayerParameters-NB-v1530/additionalTransmissionSIB1-r15                                     phyLayerParameters-NB-v1530_additionalTransmissionSIB1-r15

BCCH-BCH-Message/message                                                                       bCCH-BCH-Message_message
BCCH-BCH-Message-MBMS/message                                                                  bCCH-BCH-Message-MBMS_message
BCCH-DL-SCH-Message/message                                                                    bCCH-DL-SCH-Message_message
BCCH-DL-SCH-Message-BR/message                                                                 bCCH-DL-SCH-Message-BR_message
BCCH-DL-SCH-Message-MBMS/message                                                               bCCH-DL-SCH-Message-MBMS_message
MCCH-Message/message                                                                           mCCH-Message_message
PCCH-Message/message                                                                           pCCH-Message_message
DL-CCCH-Message/message                                                                        dL-CCCH-Message_message
DL-DCCH-Message/message                                                                        dL-DCCH-Message_message
UL-CCCH-Message/message                                                                        uL-CCCH-Message_message
UL-DCCH-Message/message                                                                        uL-DCCH-Message_message
SC-MCCH-Message-r13/message                                                                    sC-MCCH-Message-r13_message
SBCCH-SL-BCH-Message/message                                                                   sBCCH-SL-BCH-Message_message
SBCCH-SL-BCH-Message-V2X-r14/message                                                           sBCCH-SL-BCH-Message-V2X-r14_message
BCCH-BCH-Message-NB/message                                                                    bCCH-BCH-Message-NB_message
BCCH-BCH-Message-TDD-NB/message                                                                bCCH-BCH-Message-TDD-NB_message
BCCH-DL-SCH-Message-NB/message                                                                 bCCH-DL-SCH-Message-NB_message
PCCH-Message-NB/message                                                                        pCCH-Message-NB_message
DL-CCCH-Message-NB/message                                                                     dL-CCCH-Message-NB_message
DL-DCCH-Message-NB/message                                                                     dL-DCCH-Message-NB_message
UL-CCCH-Message-NB/message                                                                     uL-CCCH-Message-NB_message
SC-MCCH-Message-NB/message                                                                     sC-MCCH-Message-NB_message
UL-DCCH-Message-NB/message                                                                     uL-DCCH-Message-NB_message
DRX-Config/release                                                                             dRX-Config_release

#.FIELD_ATTR
UERadioAccessCapabilityInformation-r8-IEs/ue-RadioAccessCapabilityInfo  ABBREV=uERadioAccessCapabilityInformation_r8_IEs.ue_RadioAccessCapabilityInfo
RRCConnectionResumeRequest-r13-IEs/resumeIdentity-r13                   ABBREV=rRCConnectionResumeRequest_r13_IEs.resumeIdentity_r13
UEAssistanceInformation-r11-IEs/powerPrefIndication-r11                 ABBREV=uEAssistanceInformation_r11_IEs.powerPrefIndication_r11
RRC-InactiveConfig-r15/dummy                                            ABBREV=rRC_InactiveConfig_r15.dummy
SystemInformationBlockType2-v9i0-IEs/dummy                              ABBREV=systemInformationBlockType2_v9i0_IEs.dummy
SystemInformationBlockType10/dummy                                      ABBREV=systemInformationBlockType10.dummy
SystemInformationBlockType20-r13/eag_1/br-BCCH-Config-r14/dummy         ABBREV=systemInformationBlockType20_r13.eag_1.br_BCCH_Config_r14.dummy
CSI-Process-r11/eag_3/dummy                                             ABBREV=cSI_Process_r11.eag_3.dummy
CSI-RS-Config-v1430/dummy                                               ABBREV=cSI_RS_Config_v1430.dummy
FreqHoppingParameters-r13/dummy                                         ABBREV=freqHoppingParameters_r13.dummy
RadioResourceConfigDedicated/eag_7/dummy                                ABBREV=radioResourceConfigDedicated.eag_7.dummy
SPUCCH-Config-r15/setup/dummy                                           ABBREV=sPUCCH_Config_r15.setup.dummy
NPRACH-ConfigSIB-NB-v1530/tdd-Parameters-r15/dummy                      ABBREV=nPRACH_ConfigSIB_NB_v1530.tdd_Parameters_r15.dummy
UE-Capability-NB-r13/dummy                                              ABBREV=uE_Capability_NB_r13.dummy
PUR-PUSCH-Config-r16/pur-GrantInfo-r16/ce-ModeA/numRUs-r16              ABBREV=pUR_PUSCH_Config_r16.pur_GrantInfo_r16.ce_ModeA.numRUs_r16
RadioResourceConfigDedicatedPSCell-r12/eag_3/crs-IntfMitigEnabled-r15   ABBREV=eag_3.crs_IntfMitigEnabled_r15
RadioResourceConfigDedicatedSCell-r10/eag_5/crs-IntfMitigEnabled-r15    ABBREV=eag_5.crs_IntfMitigEnabled_r15
CRS-AssistanceInfo-r15/crs-IntfMitigEnabled-r15                         ABBREV=cRS_AssistanceInfo_r15.crs_IntfMitigEnabled_r15
MeasObjectEUTRA/offsetFreq                                              ABBREV=measObjectEUTRA_offsetFreq
InterFreqCarrierFreqInfo-r12/reducedMeasPerformance-r12                 ABBREV=interFreqCarrierFreqInfo_r12.reducedMeasPerformance_r12
CarrierFreqInfoUTRA-v1250/reducedMeasPerformance-r12                    ABBREV=carrierFreqInfoUTRA_v1250.reducedMeasPerformance_r12
CarrierFreqUTRA-FDD-Ext-r12/reducedMeasPerformance-r12                  ABBREV=carrierFreqUTRA_FDD_Ext_r12.reducedMeasPerformance_r12
CarrierFreqUTRA-TDD-r12/reducedMeasPerformance-r12                      ABBREV=carrierFreqUTRA_TDD_r12.reducedMeasPerformance_r12
MeasObjectEUTRA/eag_3/reducedMeasPerformance-r12                        ABBREV=measObjectEUTRA.eag_3.reducedMeasPerformance_r12
MeasObjectUTRA/eag_2/reducedMeasPerformance-r12                         ABBREV=measObjectUTRA.eag_2.reducedMeasPerformance_r12
MeasResultNR-r15/rsrqResult-r15                                         ABBREV=measResultNR_r15.rsrqResult_r15

RRCConnectionReconfiguration-v1250-IEs/wlan-OffloadInfo-r12/setup       ABBREV=rRCConnectionReconfiguration_v1250_IEs_wlan_OffloadInfo_r12.setup
RRCConnectionReconfiguration-v1510-IEs/nr-Config-r15/setup              ABBREV=rRCConnectionReconfiguration_v1510_IEs_nr_Config_r15.setup
SCG-Configuration-r12/setup                                             ABBREV=sCG_Configuration_r12.setup
SCG-Configuration-v12f0/setup                                           ABBREV=sCG_Configuration_v12f0.setup
SCG-Configuration-v13c0/setup                                           ABBREV=sCG_Configuration_v13c0.setup
RRCConnectionRelease-v1610-IEs/pur-Config-r16/setup                     ABBREV=rRCConnectionRelease_v1610_IEs_pur_Config_r16.setup
AntennaInfoDedicated/ue-TransmitAntennaSelection/setup                  ABBREV=antennaInfoDedicated_ue_TransmitAntennaSelection_setup
AntennaInfoDedicated-r10/ue-TransmitAntennaSelection/setup              ABBREV=antennaInfoDedicated_r10_ue_TransmitAntennaSelection.setup
AntennaInfoDedicatedSTTI-r15/setup                                      ABBREV=antennaInfoDedicatedSTTI_r15.setup
AntennaInfoDedicated-v1530/setup                                        ABBREV=antennaInfoDedicated_v1530.setup
AUL-Config-r15/setup                                                    ABBREV=aUL_Config_r15.setup
CQI-ReportAperiodic-r10/setup                                           ABBREV=cQI_ReportAperiodic_r10.setup
CQI-ReportAperiodic-v1250/setup                                         ABBREV=cQI_ReportAperiodic_v1250.setup
CQI-ReportAperiodic-v1310/setup                                         ABBREV=cQI_ReportAperiodic_v1310.setup
CQI-ReportAperiodic-v1310/setup/aperiodicCSI-Trigger2-r13/setup         ABBREV=cQI_ReportAperiodic_v1310_setup.aperiodicCSI_Trigger2_r13.setup
CQI-ReportConfig-r10/csi-SubframePatternConfig-r10/setup                ABBREV=cQI_ReportConfig_r10_csi_SubframePatternConfig_r10.setup
CQI-ReportConfig-v1250/csi-SubframePatternConfig-r12/setup              ABBREV=cQI_ReportConfig_v1250.csi_SubframePatternConfig_r12.setup
CQI-ReportConfig-r15/setup                                              ABBREV=cQI_ReportConfig_r15.setup
CQI-ReportPeriodic/setup                                                ABBREV=cQI_ReportPeriodic.setup
CQI-ReportPeriodic-r10/setup                                            ABBREV=cQI_ReportPeriodic_r10.setup
CQI-ReportPeriodic-r10/setup/csi-ConfigIndex-r10/setup                  ABBREV=cQI_ReportPeriodic_r10.setup.csi_ConfigIndex_r10.setup
CQI-ReportPeriodicSCell-r15/setup                                       ABBREV=cQI_ReportPeriodicSCell_r15.setup
CQI-ReportPeriodicSCell-r15/setup/csi-SubframePatternDormant-r15/setup  ABBREV=cQI_ReportPeriodicSCell_r15.setup.csi_SubframePatternDormant_r15.setup
CQI-ReportPeriodicProcExt-r11/csi-ConfigIndex-r11/setup                 ABBREV=cQI_ReportPeriodicProcExt_r11.csi_ConfigIndex_r11.setup
CQI-ShortConfigSCell-r15/setup                                          ABBREV=cQI_ShortConfigSCell_r15.setup
CRI-ReportConfig-r13/setup                                              ABBREV=cRI_ReportConfig_r13.setup
CSI-Process-r11/eag_1/csi-IM-ConfigIdList-r12/setup                     ABBREV=cSI_Process_r11.eag_1.csi_IM_ConfigIdList_r12.setup
CSI-Process-r11/eag_1/cqi-ReportAperiodicProc2-r12/setup                ABBREV=cSI_Process_r11.eag_1.cqi_ReportAperiodicProc2_r12.setup
CSI-Process-r11/eag_2/cqi-ReportAperiodicProc2-v1310/setup                               ABBREV=cSI_Process_r11.eag_2.cqi_ReportAperiodicProc2_v1310.setup
CSI-RS-Config-r10/csi-RS-r10/setup                                                       ABBREV=cSI_RS_Config_r10.csi_RS_r10.setup
CSI-RS-Config-v1250/ds-ZeroTxPowerCSI-RS-r12/setup                                       ABBREV=cSI_RS_Config_v1250.ds_ZeroTxPowerCSI_RS_r12.setup
CSI-RS-Config-r15/setup                                                                  ABBREV=cSI_RS_Config_r15.setup
ZeroTxPowerCSI-RS-Conf-r12/setup                                                         ABBREV=zeroTxPowerCSI_RS_Conf_r12.setup
CSI-RS-ConfigEMIMO-r13/setup                                                             ABBREV=cSI_RS_ConfigEMIMO_r13.setup
CSI-RS-ConfigEMIMO-v1430/setup                                                           ABBREV=cSI_RS_ConfigEMIMO_v1430.setup
CSI-RS-ConfigEMIMO-v1480/setup                                                           ABBREV=cSI_RS_ConfigEMIMO_v1480.setup
CSI-RS-ConfigEMIMO-v1530/setup                                                           ABBREV=cSI_RS_ConfigEMIMO_v1530.setup
CSI-RS-ConfigEMIMO2-r14/setup                                                            ABBREV=cSI_RS_ConfigEMIMO2_r14.setup
CSI-RS-ConfigEMIMO-Hybrid-r14/setup                                                      ABBREV=cSI_RS_ConfigEMIMO_Hybrid_r14.setup
CSI-RS-ConfigNZP-r11/qcl-CRS-Info-r11/mbsfn-SubframeConfigList-r11/setup                 ABBREV=cSI_RS_ConfigNZP_r11.qcl_CRS_Info_r11.mbsfn_SubframeConfigList_r11.setup
CSI-RS-ConfigNZP-r11/eag_3/mbsfn-SubframeConfigList-v1430/setup                          ABBREV=cSI_RS_ConfigNZP_r11.eag_3.mbsfn_SubframeConfigList_v1430.setup
CSI-RS-ConfigNZP-EMIMO-r13/setup                                                         ABBREV=cSI_RS_ConfigNZP_EMIMO_r13.setup
CSI-RS-ConfigZP-ApList-r14/setup                                                         ABBREV=cSI_RS_ConfigZP_ApList_r14.setup
DMRS-Config-r11/setup                                                                    ABBREV=dMRS_Config_r11.setup
EPDCCH-Config-r11/config-r11/setup                                                       ABBREV=ePDCCH_Config_r11.config_r11.setup
EPDCCH-Config-r11/config-r11/setup/subframePatternConfig-r11/setup                       ABBREV=ePDCCH_Config_r11.config_r11.setup.subframePatternConfig_r11.setup
EPDCCH-SetConfig-r11/eag_1/csi-RS-ConfigZPId2-r12/setup                                  ABBREV=ePDCCH_SetConfig_r11.eag_1.csi_RS_ConfigZPId2_r12.setup
EPDCCH-SetConfig-r11/eag_2/numberPRB-Pairs-v1310/setup                                   ABBREV=ePDCCH_SetConfig_r11.eag_2.numberPRB_Pairs_v1310.setup
EPDCCH-SetConfig-r11/eag_2/mpdcch-config-r13/setup                                       ABBREV=ePDCCH_SetConfig_r11.eag_2.mpdcch_config_r13.setup
EIMTA-MainConfig-r12/setup                                                               ABBREV=eIMTA_MainConfig_r12.setup
EIMTA-MainConfigServCell-r12/setup                                                       ABBREV=eIMTA_MainConfigServCell_r12.setup
EIMTA-MainConfigServCell-r12/setup/mbsfn-SubframeConfigList-v1250/setup                  ABBREV=eIMTA_MainConfigServCell_r12.setup.mbsfn_SubframeConfigList_v1250.setup
LogicalChannelConfig/eag_4/allowedTTI-Lengths-r15/setup                                  ABBREV=logicalChannelConfig.eag_4.allowedTTI_Lengths_r15.setup
LogicalChannelConfig/eag_4/logicalChannelSR-Restriction-r15/setup                        ABBREV=logicalChannelConfig.eag_4.logicalChannelSR_Restriction_r15.setup
LogicalChannelConfig/eag_4/channelAccessPriority-r15/setup                               ABBREV=logicalChannelConfig.eag_4.channelAccessPriority_r15.setup
LWA-Configuration-r13/setup                                                              ABBREV=lWA_Configuration_r13.setup
LWIP-Configuration-r13/setup                                                             ABBREV=lWIP_Configuration_r13.setup
MAC-MainConfig/phr-Config/setup                                                          ABBREV=mAC_MainConfig.phr_Config.setup
MAC-MainConfig/eag_4/dualConnectivityPHR/setup                                           ABBREV=mAC_MainConfig.eag_4.dualConnectivityPHR.setup
MAC-MainConfig/eag_4/logicalChannelSR-Config-r12/setup                                   ABBREV=mAC_MainConfig.eag_4.logicalChannelSR_Config_r12.setup
MAC-MainConfig/eag_5/eDRX-Config-CycleStartOffset-r13/setup                              ABBREV=mAC_MainConfig.eag_5.eDRX_Config_CycleStartOffset_r13.setup
MAC-MainConfig/eag_6/drx-Config-r13/setup                                                ABBREV=mainConfig.eag_6.drx_Config_r13.setup
MAC-MainConfig/eag_7/skipUplinkTx-r14/setup                                              ABBREV=mAC_MainConfig.eag_7.skipUplinkTx_r14.setup
MAC-MainConfig/eag_7/dataInactivityTimerConfig-r14/setup                                 ABBREV=mAC_MainConfig.eag_7.dataInactivityTimerConfig_r14.setup
MAC-MainConfig/eag_9/shortTTI-AndSPT-r15/setup                                           ABBREV=mAC_MainConfig.eag_9.shortTTI_AndSPT_r15.setup
MAC-MainConfig/eag_9/dormantStateTimers-r15/setup                                        ABBREV=mAC_MainConfig.eag_9.dormantStateTimers_r15.setup
DRX-Config/setup                                                                         ABBREV=dRX_Config.setup
PDCCH-CandidateReductions-r13/setup                                                      ABBREV=pDCCH_CandidateReductions_r13.setup
PDCCH-CandidateReductionsLAA-UL-r14/setup                                                ABBREV=pDCCH_CandidateReductionsLAA_UL_r14.setup
PDCP-Config/eag_4/ul-DataSplitThreshold-r13/setup                                        ABBREV=pDCP_Config.eag_4.ul_DataSplitThreshold_r13.setup
PDCP-Config/eag_4/statusFeedback-r13/setup                                               ABBREV=pDCP_Config.eag_4.statusFeedback_r13.setup
PDCP-Config/eag_5/ul-LWA-Config-r14/setup                                                ABBREV=pDCP_Config.eag_5.ul_LWA_Config_r14.setup
PDCP-Config/eag_6/pdcp-DuplicationConfig-r15/setup                                       ABBREV=pDCP_Config.eag_6.pdcp_DuplicationConfig_r15.setup
PDCP-Config/eag_7/ethernetHeaderCompression-r16/setup                                    ABBREV=pDCP_Config.eag_7.ethernetHeaderCompression_r16.setup
PDSCH-ConfigDedicated-v1610/ce-PDSCH-MultiTB-Config-r16/setup                            ABBREV=pDSCH_ConfigDedicated_v1610.ce_PDSCH_MultiTB_Config_r16.setup
PDSCH-RE-MappingQCL-Config-r11/optionalSetOfFields-r11/mbsfn-SubframeConfigList-r11/setup ABBREV=pDSCH_RE_MappingQCL_Config_r11.optionalSetOfFields_r11.mbsfn_SubframeConfigList_r11.setup
PDSCH-RE-MappingQCL-Config-r11/eag_1/mbsfn-SubframeConfigList-v1430/setup                 ABBREV=pDSCH_RE_MappingQCL_Config_r11.eag_1.mbsfn_SubframeConfigList_v1430.setup
PDSCH-RE-MappingQCL-Config-r11/eag_2/codewordOneConfig-v1530/setup                        ABBREV=pDSCH_RE_MappingQCL_Config_r11.eag_2.codewordOneConfig_v1530.setup
PhysicalConfigDedicated/eag_3/additionalSpectrumEmissionCA-r10/setup                      ABBREV=physicalConfigDedicated.eag_3.additionalSpectrumEmissionCA_r10.setup
PhysicalConfigDedicated/eag_7/ce-Mode-r13/setup                                           ABBREV=physicalConfigDedicated.eag_7.ce_Mode_r13.setup
PhysicalConfigDedicated/eag_9/typeA-SRS-TPC-PDCCH-Group-r14/setup                         ABBREV=physicalConfigDedicated.eag_7.ce_Mode_r13.setup
PhysicalConfigDedicated/eag_9/must-Config-r14/setup                                       ABBREV=physicalConfigDedicated.eag_9.must_Config_r14.setup
PhysicalConfigDedicated/eag_11/semiStaticCFI-Config-r15/setup                             ABBREV=physicalConfigDedicated.eag_11.semiStaticCFI_Config_r15.setup
PhysicalConfigDedicated/eag_11/blindPDSCH-Repetition-Config-r15/setup                     ABBREV=physicalConfigDedicated.eag_11.blindPDSCH_Repetition_Config_r15.setup
PhysicalConfigDedicated/eag_13/resourceReservationConfigDedicatedDL-r16/setup                  ABBREV=physicalConfigDedicated.eag_13.resourceReservationConfigDedicatedDL_r16.setup
PhysicalConfigDedicated/eag_13/resourceReservationConfigDedicatedUL-r16/setup                  ABBREV=physicalConfigDedicated.eag_13.resourceReservationConfigDedicatedUL_r16.setup
PhysicalConfigDedicated/eag_13/soundingRS-UL-ConfigDedicatedAdd-r16/setup                      ABBREV=physicalConfigDedicated.eag_13.soundingRS_UL_ConfigDedicatedAdd_r16.setup
PhysicalConfigDedicatedSCell-r10/eag_10/soundingRS-UL-ConfigDedicatedAdd-r16/setup             ABBREV=physicalConfigDedicatedSCell_r10.eag_10.soundingRS_UL_ConfigDedicatedAdd_r16.setup
PhysicalConfigDedicated/eag_13/uplinkPowerControlAddSRS-r16/setup                              ABBREV=physicalConfigDedicated.eag_13.uplinkPowerControlAddSRS_r16.setup
PhysicalConfigDedicatedSCell-r10/eag_10/uplinkPowerControlAddSRS-r16/setup                     ABBREV=physicalConfigDedicatedSCell_r10.eag_10.uplinkPowerControlAddSRS_r16.setup
PhysicalConfigDedicated/eag_13/soundingRS-VirtualCellID-r16/setup                              ABBREV=physicalConfigDedicated.eag_13.soundingRS_VirtualCellID_r16.setup
PhysicalConfigDedicatedSCell-r10/eag_10/soundingRS-VirtualCellID-r16/setup                     ABBREV=physicalConfigDedicatedSCell_r10.eag_10.soundingRS_VirtualCellID_r16.setup
PhysicalConfigDedicated/eag_13/widebandPRG-r16/setup                                           ABBREV=physicalConfigDedicated.eag_13.widebandPRG_r16.setup
PhysicalConfigDedicatedSCell-r10/eag_10/widebandPRG-r16/setup                                  ABBREV=physicalConfigDedicatedSCell_r10.eag_10.widebandPRG_r16.setup
PhysicalConfigDedicatedSCell-r10/eag_4/pucch-SCell/setup                                       ABBREV=physicalConfigDedicatedSCell_r10.eag_4.pucch_SCell.setup
PhysicalConfigDedicatedSCell-r10/eag_6/must-Config-r14/setup                                   ABBREV=physicalConfigDedicatedSCell_r10.eag_6.must_Config_r14.setup
PhysicalConfigDedicatedSCell-r10/eag_8/semiStaticCFI-Config-r15/setup                          ABBREV=physicalConfigDedicatedSCell_r10.eag_8.semiStaticCFI_Config_r15.setup
PhysicalConfigDedicatedSCell-r10/eag_8/blindPDSCH-Repetition-Config-r15/setup                  ABBREV=physicalConfigDedicatedSCell_r10.eag_8.blindPDSCH_Repetition_Config_r15.setup
PhysicalConfigDedicatedSCell-v1370/pucch-SCell-v1370/setup                                     ABBREV=physicalConfigDedicatedSCell_v1370.pucch_SCell_v1370.setup
PhysicalConfigDedicatedSCell-v13c0/pucch-SCell-v13c0/setup                                     ABBREV=physicalConfigDedicatedSCell_v13c0.pucch_SCell_v13c0.setup
LAA-SCellConfiguration-v1430/crossCarrierSchedulingConfig-UL-r14/setup                         ABBREV=lAA_SCellConfiguration_v1430.crossCarrierSchedulingConfig_UL_r14.setup
PhysicalConfigDedicatedSTTI-r15/setup                                                          ABBREV=physicalConfigDedicatedSTTI_r15.setup
PUCCH-ConfigDedicated/ackNackRepetition/setup                                                  ABBREV=pUCCH_ConfigDedicated.ackNackRepetition.setup
PUCCH-ConfigDedicated-v1020/pucch-Format-r10/channelSelection-r10/n1PUCCH-AN-CS-r10/setup      ABBREV=pUCCH_ConfigDedicated_v1020.pucch_Format_r10.channelSelection_r10.n1PUCCH_AN_CS_r10.setup
PUCCH-ConfigDedicated-v1130/n1PUCCH-AN-CS-v1130/setup                                          ABBREV=pUCCH_ConfigDedicated_v1130.n1PUCCH_AN_CS_v1130.setup
PUCCH-ConfigDedicated-v1130/nPUCCH-Param-r11/setup                                             ABBREV=pUCCH_ConfigDedicated_v1130.nPUCCH_Param_r11.setup
PUCCH-ConfigDedicated-v1250/nkaPUCCH-Param-r12/setup                                           ABBREV=pUCCH_ConfigDedicated_v1250.nkaPUCCH_Param_r12.setup
PUCCH-ConfigDedicated-r13/ackNackRepetition-r13/setup                                          ABBREV=pUCCH_ConfigDedicated_r13.ackNackRepetition_r13.setup
PUCCH-ConfigDedicated-r13/pucch-Format-r13/format3-r13/twoAntennaPortActivatedPUCCH-Format3-r13/setup ABBREV=pUCCH_ConfigDedicated_r13.pucch_Format_r13.format3_r13.twoAntennaPortActivatedPUCCH_Format3_r13.setup
PUCCH-ConfigDedicated-r13/pucch-Format-r13/channelSelection-r13/n1PUCCH-AN-CS-r13/setup        ABBREV=pUCCH_ConfigDedicated_r13.pucch_Format_r13.channelSelection_r13.n1PUCCH_AN_CS_r13.setup
PUCCH-ConfigDedicated-r13/nPUCCH-Param-r13/setup                                               ABBREV=pUCCH_ConfigDedicated_r13.nPUCCH_Param_r13.setup
PUCCH-ConfigDedicated-r13/nkaPUCCH-Param-r13/setup                                             ABBREV=pUCCH_ConfigDedicated_r13.nkaPUCCH_Param_r13.setup
PUCCH-ConfigDedicated-r13/pucch-NumRepetitionCE-r13/setup                                      ABBREV=pUCCH_ConfigDedicated_r13.pucch_NumRepetitionCE_r13.setup
PUCCH-ConfigDedicated-v1370/pucch-Format-v1370/setup                                           ABBREV=pUCCH_ConfigDedicated_v1370.pucch_Format_v1370.setup
PUCCH-ConfigDedicated-v13c0/channelSelection-v13c0/n1PUCCH-AN-CS-v13c0/setup                   ABBREV=pUCCH_ConfigDedicated_v13c0.channelSelection_v13c0.n1PUCCH_AN_CS_v13c0.setup
PUCCH-Format3-Conf-r13/twoAntennaPortActivatedPUCCH-Format3-r13/setup                          ABBREV=pUCCH_Format3_Conf_r13.twoAntennaPortActivatedPUCCH_Format3_r13.setup
PUR-Config-r16/pur-RSRP-ChangeThreshold-r16/setup                                              ABBREV=pUR_Config_r16.pur_RSRP_ChangeThreshold_r16.setup
PUSCH-ConfigDedicated-v1130/pusch-DMRS-r11/setup                                               ABBREV=pUSCH_ConfigDedicated_v1130.pusch_DMRS_r11.setup
PUSCH-ConfigDedicated-v1250/uciOnPUSCH/setup                                                   ABBREV=pUSCH_ConfigDedicated_v1250.uciOnPUSCH.setup
PUSCH-ConfigDedicated-r13/pusch-DMRS-r11/setup                                                 ABBREV=pUSCH_ConfigDedicated_r13.pusch_DMRS_r11.setup
PUSCH-ConfigDedicated-r13/uciOnPUSCH/setup                                                     ABBREV=pUSCH_ConfigDedicated_r13.uciOnPUSCH.setup
PUSCH-ConfigDedicated-v1530/ce-PUSCH-FlexibleStartPRB-AllocConfig-r15/setup                    ABBREV=pUSCH_ConfigDedicated_v1530.ce_PUSCH_FlexibleStartPRB_AllocConfig_r15.setup
PUSCH-ConfigDedicated-v1530/ce-PUSCH-SubPRB-Config-r15/setup                                   ABBREV=pUSCH_ConfigDedicated_v1530.ce_PUSCH_SubPRB_Config_r15.setup
PUSCH-ConfigDedicated-v1610/ce-PUSCH-MultiTB-Config-r16/setup                                  ABBREV=pUSCH_ConfigDedicated_v1610.ce_PUSCH_MultiTB_Config_r16.setup
PUSCH-ConfigDedicatedScell-v1530/uci-OnPUSCH-r15/setup                                         ABBREV=pUSCH_ConfigDedicatedScell_v1530.uci_OnPUSCH_r15.setup
TDD-PUSCH-UpPTS-r14/setup                                                                      ABBREV=tDD_PUSCH_UpPTS_r14.setup
Enable256QAM-r14/setup                                                                         ABBREV=enable256QAM_r14.setup
PUSCH-EnhancementsConfig-r14/setup                                                             ABBREV=pUSCH_EnhancementsConfig_r14.setup
RadioResourceConfigDedicated/eag_7/crs-IntfMitigConfig-r15/setup                               ABBREV=radioResourceConfigDedicated.eag_7.crs_IntfMitigConfig_r15.setup
RadioResourceConfigDedicated/eag_9/crs-ChEstMPDCCH-ConfigDedicated-r16/setup                   ABBREV=radioResourceConfigDedicated.eag_9.crs_ChEstMPDCCH_ConfigDedicated_r16.setup
MeasSubframePatternPCell-r10/setup                                                             ABBREV=measSubframePatternPCell_r10.setup
NeighCellsCRS-Info-r11/setup                                                                   ABBREV=neighCellsCRS_Info_r11.setup
NeighCellsCRS-Info-r13/setup                                                                   ABBREV=neighCellsCRS_Info_r13.setup
NeighCellsCRS-Info-r15/setup                                                                   ABBREV=neighCellsCRS_Info_r15.setup
NAICS-AssistanceInfo-r12/setup                                                                 ABBREV=nAICS_AssistanceInfo_r12.setup
RLC-BearerConfig-r15/setup                                                                     ABBREV=rLC_BearerConfig_r15.setup
RCLWI-Configuration-r13/setup                                                                  ABBREV=rCLWI_Configuration_r13.setup
RLC-Config-v1430/setup                                                                         ABBREV=rLC_Config_v1430.setup
RLC-Config-v1530/setup                                                                         ABBREV=rLC_Config_v1530.setup
RLF-TimersAndConstants-r9/setup                                                                ABBREV=rLF_TimersAndConstants_r9.setup
RLF-TimersAndConstants-r13/setup                                                               ABBREV=rLF_TimersAndConstants_r13.setup
RLF-TimersAndConstantsSCG-r12/setup                                                            ABBREV=rLF_TimersAndConstantsSCG_r12.setup
RLF-TimersAndConstantsMCG-Failure-r16/setup                                                    ABBREV=rLF_TimersAndConstantsMCG_Failure_r16.setup
SchedulingRequestConfig/setup                                                                  ABBREV=schedulingRequestConfig.setup
SchedulingRequestConfigSCell-r13/setup                                                         ABBREV=schedulingRequestConfigSCell_r13.setup
SchedulingRequestConfig-v1530/setup                                                            ABBREV=schedulingRequestConfig_v1530.setup
SlotOrSubslotPDSCH-Config-r15/setup                                                            ABBREV=slotOrSubslotPDSCH_Config_r15.setup
SlotOrSubslotPUSCH-Config-r15/setup                                                            ABBREV=slotOrSubslotPUSCH_Config_r15.setup
SoundingRS-UL-ConfigCommon/setup                                                               ABBREV=soundingRS_UL_ConfigCommon.setup
SoundingRS-UL-ConfigDedicated/setup                                                            ABBREV=soundingRS_UL_ConfigDedicated.setup
SoundingRS-UL-ConfigDedicated-v1310/setup                                                      ABBREV=soundingRS_UL_ConfigDedicated_v1310.setup
SoundingRS-UL-ConfigDedicatedUpPTsExt-r13/setup                                                ABBREV=soundingRS_UL_ConfigDedicatedUpPTsExt_r13.setup
SoundingRS-UL-ConfigDedicatedAperiodic-r10/setup                                               ABBREV=soundingRS_UL_ConfigDedicatedAperiodic_r10.setup
SoundingRS-UL-ConfigDedicatedAperiodic-r10/setup/srs-ActivateAp-r10/setup                      ABBREV=soundingRS_UL_ConfigDedicatedAperiodic_r10.setup.srs_ActivateAp_r10.setup
SoundingRS-UL-ConfigDedicatedAperiodic-v1310/setup                                             ABBREV=soundingRS_UL_ConfigDedicatedAperiodic_v1310.setup
SoundingRS-UL-ConfigDedicatedAperiodic-v1310/setup/srs-ActivateAp-v1310/setup                  ABBREV=soundingRS_UL_ConfigDedicatedAperiodic_v1310.setup.srs_ActivateAp_v1310.setup
SoundingRS-UL-ConfigDedicatedAperiodicUpPTsExt-r13/setup                                       ABBREV=soundingRS_UL_ConfigDedicatedAperiodicUpPTsExt_r13.setup
SoundingRS-UL-ConfigDedicatedAperiodicUpPTsExt-r13/setup/srs-ActivateAp-r13/setup              ABBREV=soundingRS_UL_ConfigDedicatedAperiodicUpPTsExt_r13.setup.srs_ActivateAp_r13.setup
SoundingRS-UL-ConfigDedicatedAperiodic-v1430/setup                                             ABBREV=soundingRS_UL_ConfigDedicatedAperiodic_v1430.setup
SoundingRS-UL-ConfigDedicatedAdd-r16/srs-ActivateAp-r13/setup                                  ABBREV=soundingRS_UL_ConfigDedicatedAdd_r16.srs_ActivateAp_r13.setup
SPDCCH-Config-r15/setup                                                                        ABBREV=sPDCCH_Config_r15.setup
SPDCCH-Elements-r15/setup                                                                      ABBREV=sPDCCH_Elements_r15.setup
SPS-ConfigDL/setup                                                                             ABBREV=sPS_ConfigDL.setup
SPS-ConfigDL/setup/eag_1/twoAntennaPortActivated-r10/setup                                     ABBREV=sPS_ConfigDL.setup.eag_1.twoAntennaPortActivated_r10.setup
SPS-ConfigUL/setup                                                                             ABBREV=sPS_ConfigUL.setup
SPS-ConfigUL/setup/eag_1/p0-PersistentSubframeSet2-r12/setup                                   ABBREV=sPS_ConfigUL.setup.eag_1.p0_PersistentSubframeSet2_r12.setup
SPS-ConfigDL-STTI-r15/setup                                                                    ABBREV=sPS_ConfigDL_STTI_r15.setup
SPS-ConfigDL-STTI-r15/setup/twoAntennaPortActivated-r15/setup                                  ABBREV=sPS_ConfigDL_STTI_r15.setup.twoAntennaPortActivated_r15.setup
SPS-ConfigUL-STTI-r15/setup                                                                    ABBREV=sPS_ConfigUL_STTI_r15.setup
SPS-ConfigUL-STTI-r15/setup/p0-PersistentSubframeSet2-r15/setup                                ABBREV=sPS_ConfigUL_STTI_r15_setup.p0_PersistentSubframeSet2_r15.setup
SPUCCH-Config-r15/setup                                                                        ABBREV=sPUCCH_Config_r15.setup
SPUCCH-Config-v1550/setup                                                                      ABBREV=sPUCCH_Config_v1550.setup
SPUCCH-Elements-r15/setup                                                                      ABBREV=sPUCCH_Elements_r15.setup
SRS-TPC-PDCCH-Config-r14/setup                                                                 ABBREV=sRS_TPC_PDCCH_Config_r14.setup
TDM-PatternConfig-r15/setup                                                                    ABBREV=tDM_PatternConfig_r15.setup
TPC-PDCCH-Config/setup                                                                         ABBREV=tPC_PDCCH_Config.setup
TPC-PDCCH-ConfigSCell-r13/setup                                                                ABBREV=tPC_PDCCH_ConfigSCell_r13.setup
UplinkPowerControlDedicated-v1250/set2PowerControlParameter/setup                              ABBREV=uplinkPowerControlDedicated_v1250.set2PowerControlParameter.setup
DeltaFList-SPUCCH-r15/setup                                                                    ABBREV=deltaFList_SPUCCH_r15.setup
BT-NameListConfig-r15/setup                                                                    ABBREV=bT_NameListConfig_r15.setup
MeasConfig/speedStatePars/setup                                                                ABBREV=measConfig.speedStatePars.setup
MeasConfig/eag_3/measScaleFactor-r12/setup                                                     ABBREV=measConfig.eag_3.measScaleFactor_r12.setup
MeasConfig/eag_7/heightThreshRef-r15/setup                                                     ABBREV=measConfig.eag_7.heightThreshRef_r15.setup
MeasDS-Config-r12/setup                                                                        ABBREV=measDS_Config_r12.setup
MeasGapConfig/setup                                                                            ABBREV=measGapConfig.setup
MeasGapConfigDensePRS-r15/setup                                                                ABBREV=measGapConfigDensePRS_r15.setup
MeasGapConfigPerCC-List-r14/setup                                                              ABBREV=measGapConfigPerCC_List_r14.setup
MeasGapSharingConfig-r14/setup                                                                 ABBREV=measGapSharingConfig_r14.setup
MeasObjectEUTRA/eag_3/t312-r12/setup                                                           ABBREV=measObjectEUTRA.eag_3.t312_r12.setup
MeasObjectEUTRA/eag_7/measRSS-DedicatedConfig-r16/setup                                        ABBREV=measObjectEUTRA.eag_7.measRSS_DedicatedConfig_r16.setup
MeasSubframePatternConfigNeigh-r10/setup                                                       ABBREV=measSubframePatternConfigNeigh_r10.setup
RMTC-Config-r13/setup                                                                          ABBREV=rMTC_Config_r13.setup
MeasObjectNR-r15/eag_1/bandNR-r15/setup                                                        ABBREV=measObjectNR_r15.eag_1.bandNR_r15.setup
MeasObjectNR-r15/eag_2/rmtc-ConfigNR-r16/setup                                                 ABBREV=measObjectNR_r15.eag_2.rmtc_ConfigNR_r16.setup
RS-ConfigSSB-NR-r15/eag_1/ssb-ToMeasure-r15/setup                                              ABBREV=rS_ConfigSSB_NR_r15.eag_1.ssb_ToMeasure_r15.setup
ReportConfigEUTRA/eag_3/alternativeTimeToTrigger-r12/setup                                     ABBREV=reportConfigEUTRA.eag_3.alternativeTimeToTrigger_r12.setup
ReportConfigEUTRA/eag_4/rs-sinr-Config-r13/setup                                               ABBREV=reportConfigEUTRA.eag_4.rs_sinr_Config_r13.setup
ReportConfigInterRAT/eag_4/b2-Threshold1-v1250/setup                                           ABBREV=reportConfigInterRAT.eag_4.b2_Threshold1_v1250.setup
UL-DelayConfig-r13/setup                                                                       ABBREV=uL_DelayConfig_r13.setup
UL-DelayValueConfig-r16/setup                                                                  ABBREV=uL_DelayValueConfig_r16.setup
WLAN-NameListConfig-r15/setup                                                                  ABBREV=wLAN_NameListConfig_r15.setup
OtherConfig-r9/eag_2/delayBudgetReportingConfig-r14/setup                                      ABBREV=otherConfig_r9.eag_2.delayBudgetReportingConfig_r14.setup
OtherConfig-r9/eag_2/rlm-ReportConfig-r14/setup                                                ABBREV=otherConfig_r9.eag_2.rlm_ReportConfig_r14.setup
OtherConfig-r9/eag_3/overheatingAssistanceConfig-r14/setup                                     ABBREV=otherConfig_r9.eag_3.overheatingAssistanceConfig_r14.setup
OtherConfig-r9/eag_4/measConfigAppLayer-r15/setup                                              ABBREV=otherConfig_r9.eag_4.measConfigAppLayer_r15.setup
IDC-Config-r11/eag_3/idc-Indication-MRDC-r15/setup                                             ABBREV=iDC_Config_r11.eag_3.idc_Indication_MRDC_r15.setup
PowerPrefIndicationConfig-r11/setup                                                            ABBREV=powerPrefIndicationConfig_r11.setup
SL-CommConfig-r12/commTxResources-r12/setup                                                    ABBREV=sL_CommConfig_r12.commTxResources_r12.setup
SL-CommConfig-r12/eag_1/commTxResources-v1310/setup                                            ABBREV=sL_CommConfig_r12.eag_1.commTxResources_v1310.setup
SL-DiscConfig-r12/discTxResources-r12/setup                                                    ABBREV=sL_DiscConfig_r12.discTxResources_r12.setup
SL-DiscConfig-r12/eag_1/discTF-IndexList-v1260/setup                                           ABBREV=sL_DiscConfig_r12.eag_1.discTF_IndexList_v1260.setup
SL-DiscConfig-r12/eag_2/discTxResourcesPS-r13/setup                                            ABBREV=sL_DiscConfig_r12.eag_2.discTxResourcesPS_r13.setup
SL-DiscConfig-r12/eag_2/discTxInterFreqInfo-r13/setup                                          ABBREV=sL_DiscConfig_r12.eag_2.discTxInterFreqInfo_r13.setup
SL-DiscConfig-r12/eag_2/discRxGapConfig-r13/setup                                              ABBREV=sL_DiscConfig_r12.eag_2.discRxGapConfig_r13.setup
SL-DiscConfig-r12/eag_2/discTxGapConfig-r13/setup                                              ABBREV=sL_DiscConfig_r12.eag_2.discTxGapConfig_r13.setup
SL-DiscConfig-r12/eag_2/discSysInfoToReportConfig-r13/setup                                    ABBREV=sL_DiscConfig_r12.eag_2.discSysInfoToReportConfig_r13.setup
SL-DiscTxResource-r13/setup                                                                    ABBREV=sL_DiscTxResource_r13.setup
SL-DiscResourcePool-r12/eag_1/discPeriod-v1310/setup                                           ABBREV=sL_DiscResourcePool_r12.eag_1.discPeriod_v1310.setup
SL-DiscResourcePool-r12/eag_1/rxParamsAddNeighFreq-r13/setup                                   ABBREV=sL_DiscResourcePool_r12.eag_1.rxParamsAddNeighFreq_r13.setup
SL-DiscResourcePool-r12/eag_1/txParamsAddNeighFreq-r13/setup                                   ABBREV=sL_DiscResourcePool_r12.eag_1.txParamsAddNeighFreq_r13.setup
SL-DiscResourcePool-r12/eag_2/txParamsAddNeighFreq-v1370/setup                                 ABBREV=sL_DiscResourcePool_r12.eag_2.txParamsAddNeighFreq_v1370.setup
SL-V2X-ConfigDedicated-r14/commTxResources-r14/setup                                           ABBREV=sL_V2X_ConfigDedicated_r14.commTxResources_r14.setup
SL-V2X-ConfigDedicated-r14/eag_1/commTxResources-v1530/setup                                   ABBREV=sL_V2X_ConfigDedicated_r14.eag_1.commTxResources_v1530.setup
RRCConnectionRelease-NB-v1610-IEs/pur-Config-r16/setup                                         ABBREV=rRCConnectionRelease_NB_v1610_IEs.pur_Config_r16.setup
MAC-MainConfig-NB-r13/logicalChannelSR-Config-r13/setup                                        ABBREV=mAC_MainConfig_NB_r13.logicalChannelSR_Config_r13.setup
MAC-MainConfig-NB-r13/eag_1/dataInactivityTimerConfig-r14/setup                                ABBREV=mAC_MainConfig_NB_r13.eag_1.dataInactivityTimerConfig_r14.setup
DRX-Config-NB-r13/setup                                                                        ABBREV=dRX_Config_NB_r13.setup
PhysicalConfigDedicated-NB-r13/eag_5/resourceReservationConfigDL-r16/setup                     ABBREV=physicalConfigDedicated_NB_r13.eag_5.resourceReservationConfigDL_r16.setup
PhysicalConfigDedicated-NB-r13/eag_5/resourceReservationConfigUL-r16/setup                     ABBREV=physicalConfigDedicated_NB_r13.eag_5.resourceReservationConfigUL_r16.setup
PUR-Config-NB-r16/pur-NRSRP-ChangeThreshold-r16/setup                                          ABBREV=pUR_Config_NB_r16.pur_NRSRP_ChangeThreshold_r16.setup
RLF-TimersAndConstants-NB-r13/setup                                                            ABBREV=rLF_TimersAndConstants_NB_r13.setup
SR-WithoutHARQ-ACK-Config-NB-r15/setup                                                         ABBREV=sR_WithoutHARQ_ACK_Config_NB_r15.setup
SR-SPS-BSR-Config-NB-r15/setup                                                                 ABBREV=sR_SPS_BSR_Config_NB_r15.setup
RSRQ-RangeConfig-r12/setup                                                                     ABBREV=rSRQ_RangeConfig_r12.setup

CSI-Process-r11/eag_1/csi-IM-ConfigIdList-r12/setup/_item                                      ABBREV=csi_IM_ConfigIdList_r12.setup_item
CSI-RS-ConfigZP-ApList-r14/setup/_item                                                         ABBREV=cSI_RS_ConfigZP_ApList_r14.setup_item
PhysicalConfigDedicated/eag_9/typeA-SRS-TPC-PDCCH-Group-r14/setup/_item                        ABBREV=typeA_SRS_TPC_PDCCH_Group_r14.setup_item

IDC-Config-r11/idc-Indication-r11                                                              ABBREV=iDC_Config_r11.idc_Indication_r11
WidebandPRG-r16/widebandPRG-Subframe-r16                                                       ABBREV=widebandPRG_r16.widebandPRG_Subframe_r16
PhyLayerParameters-v1610/widebandPRG-Subframe-r16                                              ABBREV=phyLayerParameters_v1610.widebandPRG_Subframe_r16

CSI-IM-Config-r11/eag_1/interferenceMeasRestriction-r13                                        ABBREV=cSI_IM_Config_r11.eag_1.interferenceMeasRestriction_r13
CSI-IM-ConfigExt-r12/eag_1/interferenceMeasRestriction-r13                                     ABBREV=cSI_IM_ConfigExt_r12.eag_1.interferenceMeasRestriction_r13
MIMO-UE-Parameters-r13/interferenceMeasRestriction-r13                                         ABBREV=mIMO_UE_Parameters_r13.interferenceMeasRestriction_r13

RRCConnectionReestablishmentComplete-NB-v1610-IEs/anr-InfoAvailable-r16                        ABBREV=rRCConnectionReestablishmentComplete_NB_v1610_IEs.anr_InfoAvailable_r16
RRCConnectionResumeComplete-NB-v1610-IEs/anr-InfoAvailable-r16                                 ABBREV=rRCConnectionResumeComplete_NB_v1610_IEs.anr_InfoAvailable_r16
RRCConnectionResumeRequest-NB-r13-IEs/anr-InfoAvailable-r16                                    ABBREV=rRCConnectionResumeRequest_NB_r13_IEs.anr_InfoAvailable_r16
MasterInformationBlock-NB/additionalTransmissionSIB1-r15                                       ABBREV=masterInformationBlock_NB.additionalTransmissionSIB1_r15
PhyLayerParameters-NB-v1530/additionalTransmissionSIB1-r15                                     ABBREV=phyLayerParameters_NB_v1530.additionalTransmissionSIB1_r15
BCCH-BCH-Message/message                                                                       ABBREV=bCCH_BCH_Message.message
BCCH-BCH-Message-MBMS/message                                                                  ABBREV=bCCH_BCH_Message_MBMS.message
BCCH-DL-SCH-Message/message                                                                    ABBREV=bCCH_DL_SCH_Message.message
BCCH-DL-SCH-Message-BR/message                                                                 ABBREV=bCCH_DL_SCH_Message_BR.message
BCCH-DL-SCH-Message-MBMS/message                                                               ABBREV=bCCH_DL_SCH_Message_MBMS.message
MCCH-Message/message                                                                           ABBREV=mCCH_Message.message
PCCH-Message/message                                                                           ABBREV=pCCH_Message.message
DL-CCCH-Message/message                                                                        ABBREV=dL_CCCH_Message.message
DL-DCCH-Message/message                                                                        ABBREV=dL_DCCH_Message.message
UL-CCCH-Message/message                                                                        ABBREV=uL_CCCH_Message.message
UL-DCCH-Message/message                                                                        ABBREV=uL_DCCH_Message.message
SC-MCCH-Message-r13/message                                                                    ABBREV=sC_MCCH_Message_r13.message
SBCCH-SL-BCH-Message/message                                                                   ABBREV=sBCCH_SL_BCH_Message.message
SBCCH-SL-BCH-Message-V2X-r14/message                                                           ABBREV=sBCCH_SL_BCH_Message_V2X_r14.message
BCCH-BCH-Message-NB/message                                                                    ABBREV=bCCH_BCH_Message_NB.message
BCCH-BCH-Message-TDD-NB/message                                                                ABBREV=bCCH_BCH_Message_TDD_NB.message
BCCH-DL-SCH-Message-NB/message                                                                 ABBREV=bCCH_DL_SCH_Message_NB.message
PCCH-Message-NB/message                                                                        ABBREV=pCCH_Message_NB.message
DL-CCCH-Message-NB/message                                                                     ABBREV=dL_CCCH_Message_NB.message
DL-DCCH-Message-NB/message                                                                     ABBREV=dL_DCCH_Message_NB.message
UL-CCCH-Message-NB/message                                                                     ABBREV=uL_CCCH_Message_NB.message
SC-MCCH-Message-NB/message                                                                     ABBREV=sC_MCCH_Message_NB.message
UL-DCCH-Message-NB/message                                                                     ABBREV=uL_DCCH_Message_NB.message
DRX-Config/release                                                                             ABBREV=dRX_Config.release

#.USE_VALS_EXT
AUL-Config-r15/setup/aul-RetransmissionTimer-r15
BandclassCDMA2000
CarrierFreq-NB-r13/carrierFreqOffset-r13
CarrierFreqNBIOT-r16/carrierFreqOffset-r16
DelayBudgetReport-r14/type1
DelayBudgetReport-r14/type2
DRX-Config/setup/drx-InactivityTimer
DRX-Config-r13/drx-ULRetransmissionTimer-r13
DRX-Config-r15/drx-UL-RetransmissionTimerShortTTI-r15
DRX-Config-NB-r13/setup/drx-ULRetransmissionTimer-r13
MeasGapConfig/setup/gapOffset
MeasGapConfigDensePRS-r15/setup/gapOffsetDensePRS-r15
PDCP-Config/eag_3/t-Reordering-r12
PDCP-Config/eag_4/statusFeedback-r13/setup/statusPDU-Periodicity-Type1-r13
PDCP-Config/eag_4/statusFeedback-r13/setup/statusPDU-Periodicity-Type2-r13
PollByte-r14
PosSIB-Type-r15/posSibType-r15
#PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15
PowerRampingParameters-NB-v1450/powerRampingParametersCE1-r14/preambleInitialReceivedTargetPowerCE1-r14
PUR-ConfigRequest-NB-r16/pur-SetupRequest/requestedTBS-r16
PURConfigurationRequest-r16-IEs/pur-ConfigRequest-r16/pur-SetupRequest/requestedTBS-r16
Q-OffsetRange
RRM-Config/ue-InactiveTime
RRM-Config-NB/ue-InactiveTime
RSTD-InterFreqInfo-r10/eag_2/measPRS-Offset-r15
SIB-Type
SL-CommResourcePoolV2X-r14/sizeSubchannel-r14
SL-PeriodComm-r12
SupportedBandUTRA-FDD
#SystemInformation-r8-IEs/sib-TypeAndInfo
T-PollRetransmit
T-Reordering
T-StatusProhibit
WLAN-backhaulRate-r12

#.EXPORTS
CellIdListNR-r18_PDU
CellsToAddModListNR-r15_PDU
DL-CarrierConfigCommon-NB-r14_PDU
DL-DCCH-Message_PDU
HandoverCommand_PDU
HandoverPreparationInformation_PDU
HandoverPreparationInformation-NB_PDU
MeasResultSCG-FailureMRDC-r15_PDU
MeasResultList3EUTRA-r15_PDU
MeasurementReport_PDU
MTC-SSB-NR-r15_PDU
NPRACH-ParametersList-NB-r13_PDU
NPRACH-ParametersList-NB-r14_PDU
NPRACH-ParametersListFmt2-NB-r15_PDU
NPRACH-ParametersListTDD-NB-r15_PDU
QuantityConfigNR-r15_PDU
RLF-Report-NB-r16_PDU
RLF-Report-r9_PDU
RLF-Report-v9e0_PDU
RRCConnectionReconfigurationComplete_PDU
SCG-Config-r12_PDU
SCG-ConfigInfo-r12_PDU
SidelinkUEInformation-r12_PDU
SL-Parameters-v1430_PDU
SL-Parameters-v1530_PDU
SL-Parameters-v1540_PDU
SS-RSSI-Measurement-r15_PDU
SSB-ToMeasure-r15_PDU
SystemInformationBlockType21-r14_PDU
TDD-Config_PDU
ThresholdListNR-r15_PDU
UEAssistanceInformation-r11_PDU
UECapabilityEnquiry_PDU
UEPagingCoverageInformation_PDU
UEPagingCoverageInformation-NB_PDU
UERadioAccessCapabilityInformation_PDU
UERadioPagingInformation_PDU
UE-EUTRA-Capability_PDU
UL-ConfigCommonList-NB-r14_PDU
UL-ConfigCommonList-NB-v1530_PDU
UL-ConfigCommonListTDD-NB-r15_PDU
UL-DCCH-Message_PDU
V2X-BandParameters-r14_PDU
V2X-BandParameters-v1530_PDU
VisitedCellInfo-r12_PDU
VisitedCellInfoList-r12_PDU
#.END

#.PDU
CellIdListNR-r18
CellsToAddModListNR-r15
DL-CarrierConfigCommon-NB-r14
HandoverCommand
HandoverPreparationInformation
HandoverPreparationInformation-NB
MTC-SSB-NR-r15
MeasResultSCG-FailureMRDC-r15
MeasResultList3EUTRA-r15
MeasurementReport
NPRACH-ParametersList-NB-r13
NPRACH-ParametersList-NB-r14
NPRACH-ParametersListFmt2-NB-r15
NPRACH-ParametersListTDD-NB-r15
QuantityConfigNR-r15
RLF-Report-NB-r16
RLF-Report-r9
RLF-Report-v9e0
RRCConnectionReconfiguration @rrc_conn_reconf
RRCConnectionReconfigurationComplete @rrc_conn_reconf_compl
SCG-Config-r12
SCG-ConfigInfo-r12
SidelinkUEInformation-r12
SL-Parameters-v1430
SL-Parameters-v1530
SL-Parameters-v1540
SS-RSSI-Measurement-r15
SSB-ToMeasure-r15
SystemInformationBlockType21-r14
TDD-Config
ThresholdListNR-r15
UEAssistanceInformation-r11
UECapabilityEnquiry
UEPagingCoverageInformation           @ue_paging_coverage_info
UEPagingCoverageInformation-NB        @ue_paging_coverage_info.nb
UERadioAccessCapabilityInformation    @ue_radio_access_cap_info
UERadioAccessCapabilityInformation-NB @ue_radio_access_cap_info.nb
UERadioPagingInformation              @ue_radio_paging_info
UERadioPagingInformation-NB           @ue_radio_paging_info.nb
UL-ConfigCommonList-NB-r14
UL-ConfigCommonList-NB-v1530
UL-ConfigCommonListTDD-NB-r15
V2X-BandParameters-r14
V2X-BandParameters-v1530
VisitedCellInfo-r12
VisitedCellInfoList-r12
BCCH-BCH-Message             @bcch.bch
BCCH-DL-SCH-Message          @bcch.dl.sch
BCCH-DL-SCH-Message-BR       @bcch.dl.sch.br
MCCH-Message                 @mcch
PCCH-Message                 @pcch
DL-CCCH-Message              @dl.ccch
DL-DCCH-Message              @dl.dcch
UL-CCCH-Message              @ul.ccch
UL-DCCH-Message              @ul.dcch
SC-MCCH-Message-r13          @sc.mcch
UECapabilityInformation      @ue_cap_info
UE-EUTRA-Capability          @ue_eutra_cap
SBCCH-SL-BCH-Message         @sbcch.sl.bch
SBCCH-SL-BCH-Message-V2X-r14 @sbcch.sl.bch.v2x
BCCH-BCH-Message-NB          @bcch.bch.nb
BCCH-BCH-Message-TDD-NB      @bcch.bch.nb.tdd
BCCH-DL-SCH-Message-NB       @bcch.dl.sch.nb
PCCH-Message-NB              @pcch.nb
DL-CCCH-Message-NB           @dl.ccch.nb
DL-DCCH-Message-NB           @dl.dcch.nb
UL-CCCH-Message-NB           @ul.ccch.nb
UL-DCCH-Message-NB           @ul.dcch.nb
SC-MCCH-Message-NB           @sc.mcch.nb
BCCH-BCH-Message-MBMS        @bcch.bch.mbms
BCCH-DL-SCH-Message-MBMS     @bcch.dl.sch.mbms
#.END

#.OMIT_ASSIGNMENT
# Get rid of unused code warnings
RSRP-RangeSL3-r12

#.NO_EMIT ONLY_VALS
EAB-Config-r11/eab-Category-r11
AB-Config-NB-r13/ab-Category-r13

#.MAKE_ENUM
RAT-Type TYPE_PREFIX
Handover/targetRAT-Type TYPE_PREFIX
SI-OrPSI-GERAN TYPE_PREFIX

#
# EUTRA-RRC-Definitions.asn
#

#.FN_HDR UL-CCCH-Message
  actx->pinfo->link_dir = P2P_DIR_UL;

#.FN_HDR UL-DCCH-Message
  actx->pinfo->link_dir = P2P_DIR_UL;

#.FN_HDR DL-CCCH-Message
  actx->pinfo->link_dir = P2P_DIR_DL;

#.FN_HDR DL-DCCH-Message
  actx->pinfo->link_dir = P2P_DIR_DL;

#.FN_BODY DedicatedInfoNAS VAL_PTR = &nas_eps_tvb
  tvbuff_t *nas_eps_tvb=NULL;
%(DEFAULT_BODY)s
  if (nas_eps_tvb) {
    proto_tree *nas_tree;
    dissector_handle_t handle;
    if (lte_rrc_nas_in_root_tree) {
      nas_tree = proto_tree_get_root(tree);
    } else {
      nas_tree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_dedicatedInfoNAS);
    }
    handle = (tvb_get_bits8(nas_eps_tvb, 4, 4) == 0x0e) ? nas_5gs_handle : nas_eps_handle;
    if (handle) {
      lte_rrc_call_dissector(handle, nas_eps_tvb, actx->pinfo, nas_tree);
    }
  }

#.FN_BODY UECapabilityEnquiry-v1510-IEs/requestedFreqBandsNR-MRDC-r15 VAL_PTR = &freq_band_list_tvb
  tvbuff_t *freq_band_list_tvb = NULL;
%(DEFAULT_BODY)s
  if (freq_band_list_tvb) {
    proto_tree *subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_requestedFreqBandsNR_MRDC_r15);
    dissect_nr_rrc_FreqBandList_PDU(freq_band_list_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY UECapabilityEnquiry-v1550-IEs/requestedCapabilityNR-r15 VAL_PTR = &ue_cap_req_filter_nr_tvb
  tvbuff_t *ue_cap_req_filter_nr_tvb = NULL;
%(DEFAULT_BODY)s
  if (ue_cap_req_filter_nr_tvb) {
    proto_tree *subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_requestedFreqBandsNR_MRDC_r15);
    dissect_nr_rrc_UE_CapabilityRequestFilterNR_PDU(ue_cap_req_filter_nr_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY UECapabilityEnquiry-v1560-IEs/requestedCapabilityCommon-r15 VAL_PTR = &ue_cap_req_filter_common_tvb
  tvbuff_t *ue_cap_req_filter_common_tvb = NULL;
%(DEFAULT_BODY)s
  if (ue_cap_req_filter_common_tvb) {
    proto_tree *subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_requestedCapabilityCommon_r15);
    dissect_nr_rrc_UE_CapabilityRequestFilterCommon_PDU(ue_cap_req_filter_common_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY UE-CapabilityRAT-Container
  /* Initialise to invalid value */
  private_data_set_rat_type(actx, 0xFF);
%(DEFAULT_BODY)s

#.FN_BODY RAT-Type VAL_PTR = &rat_type
  uint32_t rat_type;
%(DEFAULT_BODY)s
  private_data_set_rat_type(actx, (uint8_t)rat_type);

#RAT-Type ::=						ENUMERATED {
#										eutra, utra, geran-cs, geran-ps, cdma2000-1XRTT,
#										nr, eutra-nr, spare1, ...}
# ueCapabilityRAT-Container
# Container for the UE capabilities of the indicated RAT. The encoding is defined in the specification of each RAT:
# For E-UTRA: the encoding of UE capabilities is defined in IE UE-EUTRA-Capability.
# For UTRA: the octet string contains the INTER RAT HANDOVER INFO message defined in TS 25.331 [19].
# For GERAN CS: the octet string contains the concatenated string of the Mobile Station Classmark 2 and Mobile
# Station Classmark 3. The first 5 octets correspond to Mobile Station Classmark 2 and the following octets correspond
# to Mobile Station Classmark 3. The Mobile Station Classmark 2 is formatted as 'TLV' and is coded in the same way as
# the Mobile Station Classmark 2 information element in TS 24.008 [49]. The first octet is the Mobile station classmark 2
# IEI and its value shall be set to 33H. The second octet is the Length of mobile station classmark 2 and its value shall
# be set to 3. The octet 3 contains the first octet of the value part of the Mobile Station Classmark 2 information element,
# the octet 4 contains the second octet of the value part of the Mobile Station Classmark 2 information element and so
# on. For each of these octets, the first/ leftmost/ most significant bit of the octet contains b8 of the corresponding octet
# of the Mobile Station Classmark 2. The Mobile Station Classmark 3 is formatted as 'V' and is coded in the same way
# as the value part in the Mobile station classmark 3 information element in TS 24.008 [49]. The sixth octet of this octet
# string contains octet 1 of the value part of Mobile station classmark 3, the seventh of octet of this octet string contains
# octet 2 of the value part of Mobile station classmark 3 and so on. Note.
# For GERAN PS: the encoding of UE capabilities is formatted as 'V' and is coded in the same way as the value part in
# the MS Radio Access Capability information element in TS 24.008 [49].
# For CDMA2000-1XRTT: the octet string contains the A21 Mobile Subscription Information and the encoding of this is
# defined in A.S0008 [33]. The A21 Mobile Subscription Information contains the supported CDMA2000 1xRTT band
# class and band sub-class information.
# For NR: The octet string contains the IE UE-NR-Capability as defined in TS 38.331 [82].
# For EUTRA-NR: The octet string contains the IE UE-MRDC-Capability as defined in TS 38.331 [82]

#.FN_BODY UE-CapabilityRAT-Container/ueCapabilityRAT-Container VAL_PTR = &ue_cap_tvb
  tvbuff_t *ue_cap_tvb=NULL;
%(DEFAULT_BODY)s

#.FN_FTR UE-CapabilityRAT-Container/ueCapabilityRAT-Container
if(ue_cap_tvb){
  uint32_t length;
  proto_item *item;
  proto_tree *subtree, *subtree2;
  uint8_t byte;
  subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_UE_CapabilityRAT_Container);
  switch(private_data_get_rat_type(actx)){
  case RAT_Type_eutra:
    /* eutra */
    dissect_lte_rrc_UE_EUTRA_Capability_PDU(ue_cap_tvb, actx->pinfo, subtree, NULL);
    break;
  case RAT_Type_utra:
    /* utra */
    dissect_rrc_InterRATHandoverInfo_PDU(ue_cap_tvb, actx->pinfo, subtree, NULL);
    break;
  case RAT_Type_geran_cs:
    /* geran-cs */
    /* Mobile Station Classmark 2 is formatted as TLV with the two first bytes set to 0x33 0x03 */
    subtree2 = proto_tree_add_subtree(subtree, ue_cap_tvb, 0, 5,
                       ett_lte_rrc_UE_CapabilityRAT_Container, &item, "Mobile Station Classmark 2");
    byte = tvb_get_uint8(ue_cap_tvb, 0);
    if (byte != 0x33) {
      expert_add_info_format(actx->pinfo, item, &ei_lte_rrc_unexpected_type_value,
                             "Unexpected type value (found 0x%02X)", byte);
    }
    byte = tvb_get_uint8(ue_cap_tvb, 1);
    if (byte != 0x03) {
      expert_add_info_format(actx->pinfo, item, &ei_lte_rrc_unexpected_length_value,
                             "Unexpected length value (found %d)", byte);
    }
    de_ms_cm_2(ue_cap_tvb, subtree2, actx->pinfo, 2, 3, NULL, 0);
    /* Mobile Station Classmark 3 is formatted as V */
    length = tvb_reported_length_remaining(ue_cap_tvb, 5);
    subtree2 = proto_tree_add_subtree(subtree, ue_cap_tvb, 5, length,
                   ett_lte_rrc_UE_CapabilityRAT_Container, NULL, "Mobile Station Classmark 3");
    de_ms_cm_3(ue_cap_tvb, subtree2, actx->pinfo, 5, length, NULL, 0);
    break;
  case RAT_Type_geran_ps:
    /* geran-ps */
    /* MS Radio Access Capability is formatted as V */
    length = tvb_reported_length(ue_cap_tvb);
    subtree2 = proto_tree_add_subtree(subtree, ue_cap_tvb, 0, length,
                     ett_lte_rrc_UE_CapabilityRAT_Container, NULL, "MS Radio Access Capability");
    de_gmm_ms_radio_acc_cap(ue_cap_tvb, subtree2, actx->pinfo, 0, length, NULL, 0);
    break;
  case RAT_Type_cdma2000_1XRTT:
    /* cdma2000-1XRTT */
    /* dissection of "A21 Mobile Subscription Information" could be added to packet-ansi_a.c */
    break;
  case RAT_Type_nr:
    /* nr */
    dissect_nr_rrc_UE_NR_Capability_PDU(ue_cap_tvb, actx->pinfo, subtree, NULL);
    break;
  case RAT_Type_eutra_nr:
    /* eutra-nr */
    dissect_nr_rrc_UE_MRDC_Capability_PDU(ue_cap_tvb, actx->pinfo, subtree, NULL);
    break;
  default:
    break;
  }
}

#.FN_BODY UE-EUTRA-Capability/featureGroupIndicators VAL_PTR = &featureGroupIndicators_tvb
  tvbuff_t *featureGroupIndicators_tvb=NULL;
%(DEFAULT_BODY)s
  if(featureGroupIndicators_tvb){
    /* Dissect featureGroupIndicators */
    dissect_lte_rrc_featureGroupIndicators(featureGroupIndicators_tvb, actx);
  }

#.FN_BODY UE-EUTRA-Capability-v1020-IEs/featureGroupIndRel10-r10 VAL_PTR = &featureGroupIndRel10_tvb
  tvbuff_t *featureGroupIndRel10_tvb=NULL;
%(DEFAULT_BODY)s
  if(featureGroupIndRel10_tvb){
    /* Dissect featureGroupIndRel10-r10 */
    dissect_lte_rrc_featureGroupIndRel10(featureGroupIndRel10_tvb, actx);
  }

#.FN_BODY UE-EUTRA-Capability-v9a0-IEs/featureGroupIndRel9Add-r9 VAL_PTR = &featureGroupIndRel9Add_tvb
  tvbuff_t *featureGroupIndRel9Add_tvb=NULL;
%(DEFAULT_BODY)s
  if(featureGroupIndRel9Add_tvb){
    /* Dissect featureGroupIndRel9Add-r9 */
    dissect_lte_rrc_featureGroupIndRel9Add(featureGroupIndRel9Add_tvb, actx);
  }

#.FN_BODY UE-EUTRA-Capability-v1560-IEs/appliedCapabilityFilterCommon-r15 VAL_PTR = &ue_cap_req_filter_common_tvb
  tvbuff_t *ue_cap_req_filter_common_tvb = NULL;
%(DEFAULT_BODY)s
  if (ue_cap_req_filter_common_tvb) {
    proto_tree *subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_requestedCapabilityCommon_r15);
    dissect_nr_rrc_UE_CapabilityRequestFilterCommon_PDU(ue_cap_req_filter_common_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY UE-EUTRA-CapabilityAddXDD-Mode-r9/featureGroupIndicators-r9 VAL_PTR = &featureGroupIndicators_tvb
  tvbuff_t *featureGroupIndicators_tvb=NULL;
%(DEFAULT_BODY)s
  if(featureGroupIndicators_tvb){
    /* Dissect featureGroupIndicators-r9 */
    dissect_lte_rrc_featureGroupIndicators(featureGroupIndicators_tvb, actx);
  }

#.FN_BODY UE-EUTRA-CapabilityAddXDD-Mode-r9/featureGroupIndRel9Add-r9 VAL_PTR = &featureGroupIndRel9Add_tvb
  tvbuff_t *featureGroupIndRel9Add_tvb=NULL;
%(DEFAULT_BODY)s
  if(featureGroupIndRel9Add_tvb){
    /* Dissect featureGroupIndRel9Add-r9 */
    dissect_lte_rrc_featureGroupIndRel9Add(featureGroupIndRel9Add_tvb, actx);
  }

#.FN_BODY UE-EUTRA-CapabilityAddXDD-Mode-v1060/featureGroupIndRel10-v1060 VAL_PTR = &featureGroupIndRel10_tvb
  tvbuff_t *featureGroupIndRel10_tvb=NULL;
%(DEFAULT_BODY)s
  if(featureGroupIndRel10_tvb){
    /* Dissect featureGroupIndRel10-v1060 */
    dissect_lte_rrc_featureGroupIndRel10(featureGroupIndRel10_tvb, actx);
  }

#.FN_BODY PhyLayerParameters-v1170/interBandTDD-CA-WithDifferentConfig-r11 VAL_PTR = &inter_band_tdd_ca_tvb
  tvbuff_t *inter_band_tdd_ca_tvb=NULL;
  proto_tree *subtree;
%(DEFAULT_BODY)s
  if (inter_band_tdd_ca_tvb) {
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_interBandTDD_CA_WithDifferentConfig);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_interBandTDD_CA_WithDifferentConfig_bit1, inter_band_tdd_ca_tvb, 0, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_interBandTDD_CA_WithDifferentConfig_bit2, inter_band_tdd_ca_tvb, 1, 1, ENC_BIG_ENDIAN);
  }

#.FN_BODY PhyLayerParameters-v1250/tdd-FDD-CA-PCellDuplex-r12 VAL_PTR = &pcellduplex_tvb
  tvbuff_t *pcellduplex_tvb=NULL;
  proto_tree *subtree;
%(DEFAULT_BODY)s
  if (pcellduplex_tvb) {
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_tdd_FDD_CA_PCellDuplex_r12);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_tdd_FDD_CA_PCellDuplex_r12_bit1, pcellduplex_tvb, 0, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_tdd_FDD_CA_PCellDuplex_r12_bit2, pcellduplex_tvb, 1, 1, ENC_BIG_ENDIAN);
  }

#.FN_BODY PhyLayerParameters-v1310/aperiodicCSI-Reporting-r13 VAL_PTR = &aperiodicCSI_tvb
  tvbuff_t *aperiodicCSI_tvb=NULL;
  proto_tree *subtree;
%(DEFAULT_BODY)s
  if (aperiodicCSI_tvb) {
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_aperiodicCSI_Reporting_r13);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_aperiodicCSI_Reporting_r13_bit1, aperiodicCSI_tvb, 0, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_aperiodicCSI_Reporting_r13_bit2, aperiodicCSI_tvb, 1, 1, ENC_BIG_ENDIAN);
  }

#.FN_BODY PhyLayerParameters-v1310/codebook-HARQ-ACK-r13 VAL_PTR = &codebook_tvb
  tvbuff_t *codebook_tvb=NULL;
  proto_tree *subtree;
%(DEFAULT_BODY)s
  if (codebook_tvb) {
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_codebook_HARQ_ACK_r13);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_codebook_HARQ_ACK_r13_bit1, codebook_tvb, 0, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_codebook_HARQ_ACK_r13_bit2, codebook_tvb, 1, 1, ENC_BIG_ENDIAN);
  }

#.FN_BODY RF-Parameters-v10f0/modifiedMPR-Behavior-r10 VAL_PTR = &modifiedMPR_Behavior_r10_tvb
  tvbuff_t *modifiedMPR_Behavior_r10_tvb=NULL;
  proto_tree *subtree;
%(DEFAULT_BODY)s
  if (modifiedMPR_Behavior_r10_tvb) {
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_modifiedMPR_Behavior_r10);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_0, modifiedMPR_Behavior_r10_tvb, 0, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_1, modifiedMPR_Behavior_r10_tvb, 1, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_2, modifiedMPR_Behavior_r10_tvb, 2, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_3, modifiedMPR_Behavior_r10_tvb, 3, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_4, modifiedMPR_Behavior_r10_tvb, 4, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_5, modifiedMPR_Behavior_r10_tvb, 5, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_6, modifiedMPR_Behavior_r10_tvb, 6, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_7, modifiedMPR_Behavior_r10_tvb, 7, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_8, modifiedMPR_Behavior_r10_tvb, 8, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_9, modifiedMPR_Behavior_r10_tvb, 9, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_10, modifiedMPR_Behavior_r10_tvb, 10, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_11, modifiedMPR_Behavior_r10_tvb, 11, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_12, modifiedMPR_Behavior_r10_tvb, 12, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_13, modifiedMPR_Behavior_r10_tvb, 13, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_14, modifiedMPR_Behavior_r10_tvb, 14, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_15, modifiedMPR_Behavior_r10_tvb, 15, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_16, modifiedMPR_Behavior_r10_tvb, 16, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_17, modifiedMPR_Behavior_r10_tvb, 17, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_18, modifiedMPR_Behavior_r10_tvb, 18, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_19, modifiedMPR_Behavior_r10_tvb, 19, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_20, modifiedMPR_Behavior_r10_tvb, 20, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_21, modifiedMPR_Behavior_r10_tvb, 21, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_22, modifiedMPR_Behavior_r10_tvb, 22, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_23, modifiedMPR_Behavior_r10_tvb, 23, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_24, modifiedMPR_Behavior_r10_tvb, 24, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_25, modifiedMPR_Behavior_r10_tvb, 25, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_26, modifiedMPR_Behavior_r10_tvb, 26, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_27, modifiedMPR_Behavior_r10_tvb, 27, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_28, modifiedMPR_Behavior_r10_tvb, 28, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_29, modifiedMPR_Behavior_r10_tvb, 29, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_30, modifiedMPR_Behavior_r10_tvb, 30, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_modifiedMPR_Behavior_r10_mpr_ampr_31, modifiedMPR_Behavior_r10_tvb, 31, 1, ENC_BIG_ENDIAN);
  }

#.TYPE_ATTR
RF-Parameters-v1570/dl-1024QAM-TotalWeightedLayers-r15 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_dl_1024QAM_TotalWeightedLayers_r15_fmt)

#.TYPE_RENAME
IRAT-ParametersWLAN-r13/supportedBandListWLAN-r13 SupportedBandListWLAN_r13

#.TYPE_ATTR
MasterInformationBlock/schedulingInfoSIB1-BR-r13 TYPE=FT_UINT32 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_schedulingInfoSIB1_BR_r13_vals_ext

#.FN_BODY Handover
  /* Initialise to invalid value */
  private_data_set_rat_target_type(actx, 0xFF);
%(DEFAULT_BODY)s

#.FN_BODY Handover/targetRAT-Type VAL_PTR = &target_rat_type
  uint32_t target_rat_type;
%(DEFAULT_BODY)s
  private_data_set_rat_target_type(actx, (uint8_t)target_rat_type);

#.FN_BODY Handover/targetRAT-MessageContainer VAL_PTR = &target_rat_msg_cont_tvb
  tvbuff_t *target_rat_msg_cont_tvb = NULL;
%(DEFAULT_BODY)s
  if(target_rat_msg_cont_tvb){
    uint8_t byte;
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_targetRAT_MessageContainer);
    switch (private_data_get_rat_target_type(actx)){
    case T_targetRAT_Type_utra:
      /* utra */
      if (rrc_irat_ho_to_utran_cmd_handle)
        lte_rrc_call_dissector(rrc_irat_ho_to_utran_cmd_handle, target_rat_msg_cont_tvb, actx->pinfo, subtree);
      break;
    case T_targetRAT_Type_geran:
      /* geran */
      byte = tvb_get_uint8(target_rat_msg_cont_tvb, 0);
      if (byte == 0x06) {
        if (gsm_a_dtap_handle) {
          lte_rrc_call_dissector(gsm_a_dtap_handle, target_rat_msg_cont_tvb, actx->pinfo, subtree);
        }
      } else {
        if (gsm_rlcmac_dl_handle) {
          tvbuff_t *gsm_rlcmac_dl_tvb = tvb_new_composite();
          uint8_t *pd = (uint8_t *) wmem_alloc(actx->pinfo->pool, 1);
          pd[0] = 0x40;
          tvb_composite_append(gsm_rlcmac_dl_tvb, tvb_new_child_real_data(tvb, pd, 1, 1));
          tvb_composite_append(gsm_rlcmac_dl_tvb, target_rat_msg_cont_tvb);
          tvb_composite_finalize(gsm_rlcmac_dl_tvb);
          add_new_data_source(actx->pinfo, gsm_rlcmac_dl_tvb, "GPRS DL control block");
          lte_rrc_call_dissector(gsm_rlcmac_dl_handle, gsm_rlcmac_dl_tvb, actx->pinfo, subtree);
        }
      }
      break;
    case T_targetRAT_Type_cdma2000_1XRTT:
      /* cdma2000-1XRTT */
      break;
    case T_targetRAT_Type_cdma2000_HRPD:
      /* cdma2000-HRPD */
      break;
    case T_targetRAT_Type_nr:
      /* nr */
      if (nr_rrc_reconf_handle)
        lte_rrc_call_dissector(nr_rrc_reconf_handle, target_rat_msg_cont_tvb, actx->pinfo, subtree);
      break;
    case T_targetRAT_Type_eutra:
      /* eutra */
      if (lte_rrc_conn_reconf_handle)
        lte_rrc_call_dissector(lte_rrc_conn_reconf_handle, target_rat_msg_cont_tvb, actx->pinfo, subtree);
      break;
    default:
      break;
    }
  }

#.FN_BODY Handover/nas-SecurityParamFromEUTRA VAL_PTR = &nas_sec_param_from_eutra_tvb
  tvbuff_t *nas_sec_param_from_eutra_tvb = NULL;
  uint32_t length;
  proto_tree *subtree;

%(DEFAULT_BODY)s
  if (nas_sec_param_from_eutra_tvb) {
    length = tvb_reported_length(nas_sec_param_from_eutra_tvb);
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_nas_SecurityParam);
    if (private_data_get_rat_target_type(actx) == T_targetRAT_Type_eutra)
      de_nas_5gs_n1_mode_to_s1_mode_nas_transparent_cont(nas_sec_param_from_eutra_tvb, subtree, actx->pinfo);
    else
      de_emm_sec_par_from_eutra(nas_sec_param_from_eutra_tvb, subtree, actx->pinfo, 0, length, NULL, 0);
  }

#.FN_BODY SecurityConfigHO/handoverType/interRAT/nas-SecurityParamToEUTRA VAL_PTR = &nas_sec_param_to_eutra_tvb
  tvbuff_t *nas_sec_param_to_eutra_tvb = NULL;
  uint32_t length;
  proto_tree *subtree;

%(DEFAULT_BODY)s
  if (nas_sec_param_to_eutra_tvb) {
    length = tvb_reported_length(nas_sec_param_to_eutra_tvb);
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_nas_SecurityParam);
    de_emm_sec_par_to_eutra(nas_sec_param_to_eutra_tvb, subtree, actx->pinfo, 0, length, NULL, 0);
  }

#.FN_BODY SecurityConfigHO-v1530/handoverType-v1530/intra5GC/nas-Container-r15 VAL_PTR = &nas_cont_tvb
  tvbuff_t *nas_cont_tvb = NULL;

%(DEFAULT_BODY)s
  if (nas_cont_tvb) {
    proto_tree *subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_nas_Container_r15);
    de_nas_5gs_intra_n1_mode_nas_transparent_cont(nas_cont_tvb, subtree, actx->pinfo);
  }

#.FN_BODY SecurityConfigHO-v1530/handoverType-v1530/epc-To5GC/nas-Container-r15 VAL_PTR = &nas_cont_tvb
  tvbuff_t *nas_cont_tvb = NULL;

%(DEFAULT_BODY)s
  if (nas_cont_tvb) {
    proto_tree *subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_nas_Container_r15);
    de_nas_5gs_s1_mode_to_n1_mode_nas_transparent_cont(nas_cont_tvb, subtree, actx->pinfo);
  }

#.FN_BODY SI-OrPSI-GERAN/si
  private_data_set_si_or_psi_geran(actx, (uint8_t)SI_OrPSI_GERAN_si); /* SI message */
%(DEFAULT_BODY)s

#.FN_BODY SI-OrPSI-GERAN/psi
  private_data_set_si_or_psi_geran(actx, (uint8_t)SI_OrPSI_GERAN_psi); /* PSI message */
%(DEFAULT_BODY)s

#.FN_BODY CellInfoGERAN-r9/systemInformation-r9
  private_data_set_si_or_psi_geran(actx, (uint8_t)SI_OrPSI_GERAN_si); /* SI message */
%(DEFAULT_BODY)s

#.FN_BODY SystemInfoListGERAN/_item VAL_PTR = &sys_info_list_tvb
  tvbuff_t *sys_info_list_tvb = NULL;
  proto_tree *subtree;
%(DEFAULT_BODY)s
  if (sys_info_list_tvb) {
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_siPsiSibContainer);
    switch (private_data_get_si_or_psi_geran(actx)) {
    case SI_OrPSI_GERAN_si:
      /* SI message */
      if (gsm_a_dtap_handle) {
        tvbuff_t *si_tvb = tvb_new_composite();
        uint8_t *pd = (uint8_t *) wmem_alloc(actx->pinfo->pool, 1);
        pd[0] = 0x06;
        tvb_composite_append(si_tvb, tvb_new_child_real_data(tvb, pd, 1, 1));
        tvb_composite_append(si_tvb, sys_info_list_tvb);
        tvb_composite_finalize(si_tvb);
        add_new_data_source(actx->pinfo, si_tvb, "System Information");
        lte_rrc_call_dissector(gsm_a_dtap_handle, si_tvb, actx->pinfo, subtree);
      }
      break;
    case SI_OrPSI_GERAN_psi:
      /* PSI message */
      if (gsm_rlcmac_dl_handle) {
        tvbuff_t *gsm_rlcmac_dl_tvb = tvb_new_composite();
        uint8_t *pd = (uint8_t *) wmem_alloc(actx->pinfo->pool, 1);
        pd[0] = 0x40;
        tvb_composite_append(gsm_rlcmac_dl_tvb, tvb_new_child_real_data(tvb, pd, 1, 1));
        tvb_composite_append(gsm_rlcmac_dl_tvb, sys_info_list_tvb);
        tvb_composite_finalize(gsm_rlcmac_dl_tvb);
        add_new_data_source(actx->pinfo, gsm_rlcmac_dl_tvb, "GPRS DL control block");
        lte_rrc_call_dissector(gsm_rlcmac_dl_handle, sys_info_list_tvb, actx->pinfo, subtree);
      }
      break;
    default:
      break;
    }
  }

#.FN_BODY SystemTimeInfoCDMA2000/cdma-SystemTime/asynchronousSystemTime VAL_PTR=&async_system_time_tvb
  tvbuff_t *async_system_time_tvb = NULL;
%(DEFAULT_BODY)s

#.FN_FTR SystemTimeInfoCDMA2000/cdma-SystemTime/asynchronousSystemTime
  if (async_system_time_tvb) {
    uint64_t bits;
    nstime_t ts;
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_timeInfo);
    bits = tvb_get_bits64(async_system_time_tvb, 0, 49, ENC_BIG_ENDIAN);
    ts.secs = (time_t)((bits*8)/1228800) + 315964800; /* CDMA2000 epoch is 00:00:00 (midnight) UTC on 1980-01-06 */
    ts.nsecs = (int)(((bits%153600)*8*1000000000)/1228800);
    proto_tree_add_time(subtree, hf_lte_rrc_cdma_time, async_system_time_tvb, 0, 7, &ts);
    proto_tree_add_time(subtree, hf_lte_rrc_local_time, async_system_time_tvb, 0, 7,&ts);
  }

#.FN_BODY SystemTimeInfoCDMA2000/cdma-SystemTime/synchronousSystemTime VAL_PTR=&sync_system_time_tvb
  tvbuff_t *sync_system_time_tvb = NULL;
%(DEFAULT_BODY)s

#.FN_FTR SystemTimeInfoCDMA2000/cdma-SystemTime/synchronousSystemTime
  if (sync_system_time_tvb) {
    uint64_t bits;
    nstime_t ts;
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_timeInfo);
    bits = tvb_get_bits64(sync_system_time_tvb, 0, 39, ENC_BIG_ENDIAN);
    ts.secs = (time_t)(bits/100) + 315964800; /* CDMA2000 epoch is 00:00:00 (midnight) UTC on 1980-01-06 */
    ts.nsecs = (int)(bits%100)*10000000;
    proto_tree_add_time(subtree, hf_lte_rrc_cdma_time, sync_system_time_tvb, 0, 5, &ts);
    proto_tree_add_time(subtree, hf_lte_rrc_local_time, sync_system_time_tvb, 0, 5, &ts);
  }

#.FN_BODY CellInfoUTRA-FDD-r9/utra-BCCH-Container-r9 VAL_PTR = &utra_bcch_cont_tvb
  tvbuff_t *utra_bcch_cont_tvb = NULL;
  proto_tree *subtree;
%(DEFAULT_BODY)s
  if (utra_bcch_cont_tvb && rrc_sys_info_cont_handle) {
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_siPsiSibContainer);
    lte_rrc_call_dissector(rrc_sys_info_cont_handle, utra_bcch_cont_tvb, actx->pinfo, subtree);
  }

#.FN_BODY CellInfoUTRA-TDD-r9/utra-BCCH-Container-r9 VAL_PTR = &utra_bcch_cont_tvb
  tvbuff_t *utra_bcch_cont_tvb = NULL;
  proto_tree *subtree;
%(DEFAULT_BODY)s
  if (utra_bcch_cont_tvb && rrc_sys_info_cont_handle) {
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_siPsiSibContainer);
    lte_rrc_call_dissector(rrc_sys_info_cont_handle, utra_bcch_cont_tvb, actx->pinfo, subtree);
  }

#.FN_BODY CellInfoUTRA-TDD-r10/utra-BCCH-Container-r10 VAL_PTR = &utra_bcch_cont_tvb
  tvbuff_t *utra_bcch_cont_tvb = NULL;
  proto_tree *subtree;
%(DEFAULT_BODY)s
  if (utra_bcch_cont_tvb && rrc_sys_info_cont_handle) {
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_siPsiSibContainer);
    lte_rrc_call_dissector(rrc_sys_info_cont_handle, utra_bcch_cont_tvb, actx->pinfo, subtree);
  }

#.TYPE_ATTR
NeighCellConfig TYPE=FT_UINT8 DISPLAY=BASE_DEC STRINGS=VALS(lte_rrc_neighCellConfig_vals)

#.FN_BODY NeighCellConfig VAL_PTR = &neigh_cell_config_tvb HF_INDEX=-1
  tvbuff_t *neigh_cell_config_tvb = NULL;
%(DEFAULT_BODY)s

#.FN_FTR NeighCellConfig
  if (neigh_cell_config_tvb) {
    unsigned bitvalue = tvb_get_bits8(neigh_cell_config_tvb, 0, 2);
    actx->created_item = proto_tree_add_uint(tree, hf_index, neigh_cell_config_tvb, 0, 1, bitvalue);
  }

#.FN_BODY LocationInfo-r10/locationCoordinates-r10/ellipsoid-Point-r10 VAL_PTR = &ellipsoid_point_tvb
  tvbuff_t *ellipsoid_point_tvb = NULL;
%(DEFAULT_BODY)s
  if (ellipsoid_point_tvb) {
    dissect_lpp_Ellipsoid_Point_PDU(ellipsoid_point_tvb, actx->pinfo, tree, NULL);
  }

#.FN_BODY LocationInfo-r10/locationCoordinates-r10/ellipsoidPointWithAltitude-r10 VAL_PTR = &ellipsoid_point_with_alt_tvb
  tvbuff_t *ellipsoid_point_with_alt_tvb = NULL;
%(DEFAULT_BODY)s
  if (ellipsoid_point_with_alt_tvb) {
    dissect_lpp_EllipsoidPointWithAltitude_PDU(ellipsoid_point_with_alt_tvb, actx->pinfo, tree, NULL);
  }

#.FN_BODY LocationInfo-r10/locationCoordinates-r10/ellipsoidPointWithUncertaintyCircle-r11 VAL_PTR = &ellipsoid_point_with_uncert_circ_tvb
  tvbuff_t *ellipsoid_point_with_uncert_circ_tvb = NULL;
%(DEFAULT_BODY)s
  if (ellipsoid_point_with_uncert_circ_tvb) {
    dissect_lpp_Ellipsoid_PointWithUncertaintyCircle_PDU(ellipsoid_point_with_uncert_circ_tvb, actx->pinfo, tree, NULL);
  }

#.FN_BODY LocationInfo-r10/locationCoordinates-r10/ellipsoidPointWithUncertaintyEllipse-r11 VAL_PTR = &ellipsoid_point_with_uncert_ellipse_tvb
  tvbuff_t *ellipsoid_point_with_uncert_ellipse_tvb = NULL;
%(DEFAULT_BODY)s
  if (ellipsoid_point_with_uncert_ellipse_tvb) {
    dissect_lpp_EllipsoidPointWithUncertaintyEllipse_PDU(ellipsoid_point_with_uncert_ellipse_tvb, actx->pinfo, tree, NULL);
  }

#.FN_BODY LocationInfo-r10/locationCoordinates-r10/ellipsoidPointWithAltitudeAndUncertaintyEllipsoid-r11 VAL_PTR = &ellipsoid_point_with_alt_uncert_ellipsoid_tvb
  tvbuff_t *ellipsoid_point_with_alt_uncert_ellipsoid_tvb = NULL;
%(DEFAULT_BODY)s
  if (ellipsoid_point_with_alt_uncert_ellipsoid_tvb) {
    dissect_lpp_EllipsoidPointWithAltitudeAndUncertaintyEllipsoid_PDU(ellipsoid_point_with_alt_uncert_ellipsoid_tvb, actx->pinfo, tree, NULL);
  }

#.FN_BODY LocationInfo-r10/locationCoordinates-r10/ellipsoidArc-r11 VAL_PTR = &ellipsoid_arc_tvb
  tvbuff_t *ellipsoid_arc_tvb = NULL;
%(DEFAULT_BODY)s
  if (ellipsoid_arc_tvb) {
    dissect_lpp_EllipsoidArc_PDU(ellipsoid_arc_tvb, actx->pinfo, tree, NULL);
  }

#.FN_BODY LocationInfo-r10/locationCoordinates-r10/polygon-r11 VAL_PTR = &polygon_tvb
  tvbuff_t *polygon_tvb = NULL;
%(DEFAULT_BODY)s
  if (polygon_tvb) {
    dissect_lpp_Polygon_PDU(polygon_tvb, actx->pinfo, tree, NULL);
  }

#.FN_BODY LocationInfo-r10/horizontalVelocity-r10 VAL_PTR = &horizontal_velocity_tvb
  tvbuff_t *horizontal_velocity_tvb = NULL;
%(DEFAULT_BODY)s
  if (horizontal_velocity_tvb) {
    dissect_lpp_HorizontalVelocity_PDU(horizontal_velocity_tvb, actx->pinfo, tree, NULL);
  }

#.FN_BODY LocationInfo-r10/gnss-TOD-msec-r10 VAL_PTR = &gnss_tod_msec_tvb
  tvbuff_t *gnss_tod_msec_tvb = NULL;
%(DEFAULT_BODY)s
  if (gnss_tod_msec_tvb) {
    asn1_ctx_t asn1_ctx;
    asn1_ctx_init(&asn1_ctx, ASN1_ENC_PER, false, actx->pinfo);
    dissect_per_constrained_integer(gnss_tod_msec_tvb, 0, &asn1_ctx, tree, hf_index, 0U, 3599999U, NULL, false);
  }

#.TYPE_ATTR
LocationInfo-r10/gnss-TOD-msec-r10 TYPE=FT_UINT24 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_milliseconds)

#.FN_BODY LocationInfo-r10/eag_1/verticalVelocityInfo-r15/verticalVelocity-r15 VAL_PTR = &vertical_velocity_tvb
  tvbuff_t *vertical_velocity_tvb = NULL;
%(DEFAULT_BODY)s
  if (vertical_velocity_tvb) {
    dissect_lpp_HorizontalWithVerticalVelocity_PDU(vertical_velocity_tvb, actx->pinfo, tree, NULL);
  }

#.FN_BODY LocationInfo-r10/eag_1/verticalVelocityInfo-r15/verticalVelocityAndUncertainty-r15 VAL_PTR = &vertical_velocity_tvb
  tvbuff_t *vertical_velocity_tvb = NULL;
%(DEFAULT_BODY)s
  if (vertical_velocity_tvb) {
    dissect_lpp_HorizontalVelocityWithUncertainty_PDU(vertical_velocity_tvb, actx->pinfo, tree, NULL);
  }

#.TYPE_ATTR
LogMeasResultBT-r15/bt-Addr-r15 TYPE=FT_ETHER DISPLAY=BASE_NONE

#.FN_BODY LogMeasResultBT-r15/bt-Addr-r15 VAL_PTR=&bt_Addr_tvb HF_INDEX=-1
  tvbuff_t *bt_Addr_tvb = NULL;

%(DEFAULT_BODY)s
  actx->created_item = proto_tree_add_item(tree, hf_index, bt_Addr_tvb, 0, 6, ENC_NA);

#.TYPE_ATTR
LogMeasResultBT-r15/rssi-BT-r15 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.FN_BODY AbsoluteTimeInfo-r10 VAL_PTR = &abs_time_info_tvb
  tvbuff_t *abs_time_info_tvb = NULL;
%(DEFAULT_BODY)s
#.FN_FTR AbsoluteTimeInfo-r10
  if (abs_time_info_tvb) {
    const char *str, *hf_str;
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_absTimeInfo);
    str = tvb_bcd_dig_to_str(actx->pinfo->pool, abs_time_info_tvb, 0, 6, NULL, false);
    hf_str = wmem_strdup_printf(actx->pinfo->pool, "%c%c-%c%c-%c%c %c%c:%c%c:%c%c", str[0], str[1],
                        str[2], str[3], str[4], str[5], str[6], str[7], str[8], str[9], str[10], str[11]);
    proto_tree_add_string(subtree, hf_lte_rrc_absolute_time, abs_time_info_tvb, 0, 6, hf_str);
  }

#.TYPE_RENAME
CarrierFreqUTRA-FDD-Ext-r12/multiBandInfoList-r12 FreqBandIndicator_UTRA_FDD_r12

#.TYPE_ATTR
SystemInformationBlockType9/hnb-Name TYPE=FT_STRING DISPLAY=BASE_NONE

#.FN_BODY SystemInformationBlockType9/hnb-Name VAL_PTR=&hnb_name_tvb HF_INDEX=-1
  tvbuff_t *hnb_name_tvb = NULL;

%(DEFAULT_BODY)s
  actx->created_item = proto_tree_add_item(tree, hf_index, hnb_name_tvb, 0, -1, ENC_UTF_8|ENC_NA);

#.TYPE_ATTR
SystemInformationBlockType10/messageIdentifier TYPE=FT_UINT16 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_messageIdentifier_vals_ext

#.FN_BODY SystemInformationBlockType10/messageIdentifier VAL_PTR=&msg_id_tvb HF_INDEX=-1
  tvbuff_t *msg_id_tvb = NULL;
%(DEFAULT_BODY)s

#.FN_FTR SystemInformationBlockType10/messageIdentifier
  if (msg_id_tvb) {
    actx->created_item = proto_tree_add_item(tree, hf_index, msg_id_tvb, 0, 2, ENC_BIG_ENDIAN);
  }

#.FN_BODY SystemInformationBlockType10/serialNumber VAL_PTR=&serial_nb_tvb
  tvbuff_t *serial_nb_tvb = NULL;
%(DEFAULT_BODY)s

#.FN_FTR SystemInformationBlockType10/serialNumber
  if (serial_nb_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_serialNumber);
    proto_tree_add_item(subtree, hf_lte_rrc_serialNumber_gs, serial_nb_tvb, 0, 2, ENC_BIG_ENDIAN);
    proto_tree_add_item(subtree, hf_lte_rrc_serialNumber_msg_code, serial_nb_tvb, 0, 2, ENC_BIG_ENDIAN);
    proto_tree_add_item(subtree, hf_lte_rrc_serialNumber_upd_nb, serial_nb_tvb, 0, 2, ENC_BIG_ENDIAN);
  }

#.FN_BODY SystemInformationBlockType10/warningType VAL_PTR=&warning_type_tvb
  tvbuff_t *warning_type_tvb = NULL;
%(DEFAULT_BODY)s

#.FN_FTR SystemInformationBlockType10/warningType
  if (warning_type_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_warningType);
    proto_tree_add_item(subtree, hf_lte_rrc_warningType_value, warning_type_tvb, 0, 2, ENC_BIG_ENDIAN);
    proto_tree_add_item(subtree, hf_lte_rrc_warningType_emergency_user_alert, warning_type_tvb, 0, 2, ENC_BIG_ENDIAN);
    proto_tree_add_item(subtree, hf_lte_rrc_warningType_popup, warning_type_tvb, 0, 2, ENC_BIG_ENDIAN);
  }

#.TYPE_ATTR
SystemInformationBlockType11/messageIdentifier TYPE=FT_UINT16 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_messageIdentifier_vals_ext

#.FN_BODY SystemInformationBlockType11/messageIdentifier VAL_PTR=&msg_id_tvb HF_INDEX=-1
  tvbuff_t *msg_id_tvb = NULL;
%(DEFAULT_BODY)s

#.FN_FTR SystemInformationBlockType11/messageIdentifier
  if (msg_id_tvb) {
    private_data_set_message_identifier(actx, tvb_get_ntohs(msg_id_tvb, 0) << 16);
    actx->created_item = proto_tree_add_item(tree, hf_index, msg_id_tvb, 0, 2, ENC_BIG_ENDIAN);
  }

#.FN_BODY SystemInformationBlockType11/serialNumber VAL_PTR=&serial_nb_tvb
  tvbuff_t *serial_nb_tvb = NULL;
%(DEFAULT_BODY)s

#.FN_FTR SystemInformationBlockType11/serialNumber
  if (serial_nb_tvb) {
    proto_tree *subtree;
    private_data_set_message_identifier(actx,
                                        private_data_get_message_identifier(actx) | tvb_get_ntohs(serial_nb_tvb, 0));
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_serialNumber);
    proto_tree_add_item(subtree, hf_lte_rrc_serialNumber_gs, serial_nb_tvb, 0, 2, ENC_BIG_ENDIAN);
    proto_tree_add_item(subtree, hf_lte_rrc_serialNumber_msg_code, serial_nb_tvb, 0, 2, ENC_BIG_ENDIAN);
    proto_tree_add_item(subtree, hf_lte_rrc_serialNumber_upd_nb, serial_nb_tvb, 0, 2, ENC_BIG_ENDIAN);
  }

#.FN_BODY SystemInformationBlockType11/warningMessageSegmentType VAL_PTR=&segment_type
  uint32_t segment_type;
%(DEFAULT_BODY)s
  private_data_set_warning_message_segment_type(actx, (uint8_t)segment_type);

#.FN_BODY SystemInformationBlockType11/warningMessageSegmentNumber VAL_PTR=&segment_number
  uint32_t segment_number;
%(DEFAULT_BODY)s
  private_data_set_warning_message_segment_number(actx, (uint8_t)segment_number);

#.FN_BODY SystemInformationBlockType11/dataCodingScheme VAL_PTR=&data_coding_scheme_tvb
  tvbuff_t *data_coding_scheme_tvb = NULL;
%(DEFAULT_BODY)s

#.FN_FTR SystemInformationBlockType11/dataCodingScheme
  if (data_coding_scheme_tvb) {
    proto_tree *subtree;
    uint32_t dataCodingScheme;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_dataCodingScheme);
    dataCodingScheme = dissect_cbs_data_coding_scheme(data_coding_scheme_tvb, actx->pinfo, subtree, 0);
    wmem_map_insert(lte_rrc_etws_cmas_dcs_hash, GUINT_TO_POINTER((unsigned)private_data_get_message_identifier(actx)),
                        GUINT_TO_POINTER(dataCodingScheme));
  }

#.FN_BODY SystemInformationBlockType11/warningMessageSegment VAL_PTR=&warning_msg_seg_tvb
  tvbuff_t *warning_msg_seg_tvb = NULL;
%(DEFAULT_BODY)s

#.FN_FTR SystemInformationBlockType11/warningMessageSegment
  if (warning_msg_seg_tvb) {
    proto_tree *subtree;
    tvbuff_t *frag_tvb;
    void *p_dcs;
    fragment_head *frag_data = fragment_add_seq_check(&lte_rrc_sib11_reassembly_table, warning_msg_seg_tvb, 0, actx->pinfo,
                                                      private_data_get_message_identifier(actx), NULL,
                                                      private_data_get_warning_message_segment_number(actx),
                                                      tvb_reported_length(warning_msg_seg_tvb),
                                                      private_data_get_warning_message_segment_type(actx) ? false : true);
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_warningMessageSegment);
    frag_tvb = process_reassembled_data(warning_msg_seg_tvb, 0, actx->pinfo, "Reassembled SIB11 warning message",
                                        frag_data, &lte_rrc_sib11_frag_items, NULL, subtree);
    p_dcs = wmem_map_lookup(lte_rrc_etws_cmas_dcs_hash, GUINT_TO_POINTER((unsigned)private_data_get_message_identifier(actx)));
    if (frag_tvb && p_dcs) {
      dissect_lte_rrc_warningMessageSegment(frag_tvb, subtree, actx->pinfo, GPOINTER_TO_UINT(p_dcs));
    }
  }

#.TYPE_ATTR
SystemInformationBlockType12-r9/messageIdentifier-r9 TYPE=FT_UINT16 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_messageIdentifier_vals_ext

#.FN_BODY SystemInformationBlockType12-r9/messageIdentifier-r9 VAL_PTR=&msg_id_tvb HF_INDEX=-1
  tvbuff_t *msg_id_tvb = NULL;
%(DEFAULT_BODY)s

#.FN_FTR SystemInformationBlockType12-r9/messageIdentifier-r9
  if (msg_id_tvb) {
    private_data_set_message_identifier(actx, tvb_get_ntohs(msg_id_tvb, 0) << 16);
    actx->created_item = proto_tree_add_item(tree, hf_index, msg_id_tvb, 0, 2, ENC_BIG_ENDIAN);
  }

#.FN_BODY SystemInformationBlockType12-r9/serialNumber-r9 VAL_PTR=&serial_nb_tvb
  tvbuff_t *serial_nb_tvb = NULL;
%(DEFAULT_BODY)s

#.FN_FTR SystemInformationBlockType12-r9/serialNumber-r9
  if (serial_nb_tvb) {
    proto_tree *subtree;
    private_data_set_message_identifier(actx,
                                        private_data_get_message_identifier(actx) | tvb_get_ntohs(serial_nb_tvb, 0));
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_serialNumber);
    proto_tree_add_item(subtree, hf_lte_rrc_serialNumber_gs, serial_nb_tvb, 0, 2, ENC_BIG_ENDIAN);
    proto_tree_add_item(subtree, hf_lte_rrc_serialNumber_msg_code, serial_nb_tvb, 0, 2, ENC_BIG_ENDIAN);
    proto_tree_add_item(subtree, hf_lte_rrc_serialNumber_upd_nb, serial_nb_tvb, 0, 2, ENC_BIG_ENDIAN);
  }

#.FN_BODY SystemInformationBlockType12-r9/warningMessageSegmentType-r9 VAL_PTR=&segment_type
  uint32_t segment_type;
%(DEFAULT_BODY)s
  private_data_set_warning_message_segment_type(actx, (uint8_t)segment_type);

#.FN_BODY SystemInformationBlockType12-r9/warningMessageSegmentNumber-r9 VAL_PTR=&segment_number
  uint32_t segment_number;
%(DEFAULT_BODY)s
  private_data_set_warning_message_segment_number(actx, (uint8_t)segment_number);

#.FN_BODY SystemInformationBlockType12-r9/dataCodingScheme-r9 VAL_PTR=&data_coding_scheme_tvb
  tvbuff_t *data_coding_scheme_tvb = NULL;
%(DEFAULT_BODY)s

#.FN_FTR SystemInformationBlockType12-r9/dataCodingScheme-r9
  if (data_coding_scheme_tvb) {
    proto_tree *subtree;
    uint32_t dataCodingScheme;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_dataCodingScheme);
    dataCodingScheme = dissect_cbs_data_coding_scheme(data_coding_scheme_tvb, actx->pinfo, subtree, 0);
    wmem_map_insert(lte_rrc_etws_cmas_dcs_hash, GUINT_TO_POINTER((unsigned)private_data_get_message_identifier(actx)),
                        GUINT_TO_POINTER(dataCodingScheme));
  }

#.FN_BODY SystemInformationBlockType12-r9/warningMessageSegment-r9 VAL_PTR=&warning_msg_seg_tvb
  tvbuff_t *warning_msg_seg_tvb = NULL;
%(DEFAULT_BODY)s

#.FN_FTR SystemInformationBlockType12-r9/warningMessageSegment-r9
  if (warning_msg_seg_tvb) {
    proto_tree *subtree;
    tvbuff_t *frag_tvb;
    void *p_dcs;
    fragment_head *frag_data = fragment_add_seq_check(&lte_rrc_sib12_reassembly_table, warning_msg_seg_tvb, 0, actx->pinfo,
                                                      private_data_get_message_identifier(actx), NULL,
                                                      private_data_get_warning_message_segment_number(actx),
                                                      tvb_reported_length(warning_msg_seg_tvb),
                                                      private_data_get_warning_message_segment_type(actx) ? false : true);
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_warningMessageSegment);
    frag_tvb = process_reassembled_data(warning_msg_seg_tvb, 0, actx->pinfo, "Reassembled SIB12 warning message",
                                        frag_data, &lte_rrc_sib12_frag_items, NULL, subtree);
    p_dcs = wmem_map_lookup(lte_rrc_etws_cmas_dcs_hash, GUINT_TO_POINTER((unsigned)private_data_get_message_identifier(actx)));
    if (frag_tvb && p_dcs) {
      dissect_lte_rrc_warningMessageSegment(frag_tvb, subtree, actx->pinfo, GPOINTER_TO_UINT(p_dcs));
    }
  }

#.TYPE_ATTR
EAB-Config-r11/eab-Category-r11 STRINGS=VALS(lte_rrc_eab_category_vals)

#.TYPE_ATTR
SystemInformationBlockType16-r11/timeInfo-r11/dayLightSavingTime-r11 TYPE=FT_UINT8 DISPLAY=BASE_DEC STRINGS=VALS(lte_rrc_daylightSavingTime_vals)

#.FN_BODY SystemInformationBlockType16-r11/timeInfo-r11/dayLightSavingTime-r11 VAL_PTR=&daylight_saving_time_tvb HF_INDEX=-1
  tvbuff_t *daylight_saving_time_tvb = NULL;
%(DEFAULT_BODY)s

#.FN_FTR SystemInformationBlockType16-r11/timeInfo-r11/dayLightSavingTime-r11
  if (daylight_saving_time_tvb) {
    unsigned bitvalue = tvb_get_bits8(daylight_saving_time_tvb, 0, 2);
    actx->created_item = proto_tree_add_uint(tree, hf_index, daylight_saving_time_tvb, 0, 1, bitvalue);
  }

#.TYPE_ATTR
SystemInformationBlockType16-r11/timeInfo-r11/leapSeconds-r11 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.TYPE_ATTR
SystemInformationBlockType16-r11/timeInfo-r11/localTimeOffset-r11 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_localTimeOffset_fmt)

#.FN_BODY SystemInformationBlockType16-r11/timeInfo-r11/timeInfoUTC-r11 VAL_PTR=&timeInfo
  uint64_t timeInfo;
  proto_tree *subtree;
  nstime_t ts;
  uint32_t old_offset = offset;
%(DEFAULT_BODY)s

#.FN_FTR SystemInformationBlockType16-r11/timeInfo-r11/timeInfoUTC-r11
  subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_timeInfo);
  ts.secs = (time_t)(timeInfo/100)-EPOCH_DELTA_1900_01_01_00_00_00_UTC; /* epoch is 00:00:00 (midnight) UTC on 1900-01-01 */
  ts.nsecs = (int)(timeInfo%100)*10000000;
  proto_tree_add_time(subtree, hf_lte_rrc_utc_time, tvb, old_offset>>3, (old_offset&0x07) ? 6 : 5, &ts);
  proto_tree_add_time(subtree, hf_lte_rrc_local_time, tvb, old_offset>>3, (old_offset&0x07) ? 6 : 5, &ts);

#.TYPE_ATTR
SystemInformationBlockType26-r15/threshS-RSSI-CBR-r14 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_threshS_RSSI_CBR_r14_fmt)

#.TYPE_ATTR
WLAN-Identifiers-r12/ssid-r12 TYPE=FT_STRING DISPLAY=BASE_NONE

#.FN_BODY WLAN-Identifiers-r12/ssid-r12 VAL_PTR=&ssid_tvb HF_INDEX=-1
  tvbuff_t *ssid_tvb = NULL;

%(DEFAULT_BODY)s
  actx->created_item = proto_tree_add_item(tree, hf_index, ssid_tvb, 0, -1, ENC_ASCII|ENC_NA);

#.TYPE_ATTR
WLAN-Identifiers-r12/bssid-r12 TYPE=FT_ETHER

#.TYPE_ATTR
WLAN-Identifiers-r12/hessid-r12 TYPE=FT_ETHER

#.TYPE_ATTR
RRCConnectionReject-r8-IEs/waitTime DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.TYPE_ATTR
RRCConnectionReject-v1020-IEs/extendedWaitTime-r10 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.TYPE_ATTR
RRCConnectionRelease-v1020-IEs/extendedWaitTime-r10 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.TYPE_ATTR
RRCConnectionRelease-v1540-IEs/waitTime DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.TYPE_ATTR
RRCEarlyDataComplete-r15-IEs/extendedWaitTime-r15 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.TYPE_ATTR
SystemInformationBlockType1/cellSelectionInfo/q-RxLevMinOffset STRINGS=VALS(lte_rrc_q_RxLevMinOffset_vals)

#.TYPE_ATTR
CellSelectionInfoCE1-v1360/delta-RxLevMinCE1-v1360 STRINGS=VALS(lte_rrc_delta_RxLevMin_vals)

#.TYPE_ATTR
CellSelectionInfo-v920/q-QualMinOffset-r9 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
MobilityControlInfo/eag_4/schedulingInfoSIB1-BR-r14 TYPE=FT_UINT32 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_schedulingInfoSIB1_BR_r13_vals_ext

#.TYPE_ATTR
TrafficPatternInfo-r14/timingOffset-r14 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_milliseconds)

#.FN_BODY TrafficPatternInfo-r14/messageSize-r14 VAL_PTR = &messageSize_r14_tvb HF_INDEX = -1
  tvbuff_t *messageSize_r14_tvb = NULL;
%(DEFAULT_BODY)s
  if (messageSize_r14_tvb) {
    unsigned bitvalue = tvb_get_bits8(messageSize_r14_tvb, 0, 6);
    actx->created_item = proto_tree_add_uint(tree, hf_index, messageSize_r14_tvb, 0, 1, bitvalue);
  }

#.TYPE_ATTR
TrafficPatternInfo-r14/messageSize-r14 TYPE=FT_UINT8 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_messageSize_r14_vals_ext

#.TYPE_ATTR
RLF-Report-r9/eag_1/timeConnFailure-r10 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_timeConnFailure_r10_fmt)

#.TYPE_ATTR
LogMeasInfo-r10/relativeTimeStamp-r10 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.FN_BODY LogMeasInfo-r10/eag_9/uncomBarPreMeasResult-r17 VAL_PTR = &sensor_meas_info_tvb
  tvbuff_t *sensor_meas_info_tvb = NULL;
%(DEFAULT_BODY)s
  if (sensor_meas_info_tvb) {
    dissect_lpp_Sensor_MeasurementInformation_r13_PDU(sensor_meas_info_tvb, actx->pinfo, tree, NULL);
  }

#.FN_BODY MeasResults/eag_10/uncomBarPreMeasResult-r17 VAL_PTR = &sensor_meas_info_tvb
  tvbuff_t *sensor_meas_info_tvb = NULL;
%(DEFAULT_BODY)s
  if (sensor_meas_info_tvb) {
    dissect_lpp_Sensor_MeasurementInformation_r13_PDU(sensor_meas_info_tvb, actx->pinfo, tree, NULL);
  }

#.FN_BODY BLER-Result-r12/blocksReceived-r12/n-r12 VAL_PTR = &n_r12_tvb HF_INDEX = -1
  tvbuff_t *n_r12_tvb = NULL;
%(DEFAULT_BODY)s
  if (n_r12_tvb) {
    unsigned bitvalue = tvb_get_bits8(n_r12_tvb, 0, 3);
    actx->created_item = proto_tree_add_uint(tree, hf_index, n_r12_tvb, 0, 1, bitvalue);
  }

#.TYPE_ATTR
BLER-Result-r12/blocksReceived-r12/n-r12 TYPE=FT_UINT8 DISPLAY=BASE_DEC STRINGS=VALS(lte_rrc_n_r12_vals)

#.FN_BODY BLER-Result-r12/blocksReceived-r12/m-r12 VAL_PTR = &m_r12_tvb HF_INDEX = -1
  tvbuff_t *m_r12_tvb = NULL;
%(DEFAULT_BODY)s
  if (m_r12_tvb) {
    actx->created_item = proto_tree_add_item(tree, hf_index, m_r12_tvb, 0, 1, ENC_BIG_ENDIAN);
  }

#.TYPE_ATTR
BLER-Result-r12/blocksReceived-r12/m-r12 TYPE=FT_UINT8 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_m_r12_fmt)

#.TYPE_ATTR
BLER-Range-r12 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_BLER_Range_r12_vals_ext

#.TYPE_ATTR
TimeSinceFailure-r11 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.TYPE_ATTR
TimeUntilReconnection-r16 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.FIELD_ATTR
CarrierFreqUTRA-FDD/q-RxLevMin ABBREV=utra_q_RxLevMin

#.TYPE_ATTR
CarrierFreqUTRA-FDD/q-RxLevMin DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_utra_q_RxLevMin_vals_ext

#.FIELD_ATTR
CarrierFreqUTRA-FDD-Ext-r12/q-RxLevMin-r12 ABBREV=utra_q_RxLevMin_r12

#.TYPE_ATTR
CarrierFreqUTRA-FDD-Ext-r12/q-RxLevMin-r12 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_utra_q_RxLevMin_vals_ext

#.FIELD_ATTR
CarrierFreqUTRA-TDD/q-RxLevMin ABBREV=utra_q_RxLevMin

#.TYPE_ATTR
CarrierFreqUTRA-TDD/q-RxLevMin DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_utra_q_RxLevMin_vals_ext

#.FIELD_ATTR
CarrierFreqUTRA-TDD-r12/q-RxLevMin-r12 ABBREV=utra_q_RxLevMin_r12

#.TYPE_ATTR
CarrierFreqUTRA-TDD-r12/q-RxLevMin-r12 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_utra_q_RxLevMin_vals_ext

#.TYPE_ATTR
CarrierFreqUTRA-FDD/p-MaxUTRA DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
CarrierFreqUTRA-FDD-Ext-r12/p-MaxUTRA-r12 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
CarrierFreqUTRA-TDD/p-MaxUTRA DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
CarrierFreqUTRA-TDD-r12/p-MaxUTRA-r12 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
CarrierFreqUTRA-FDD/q-QualMin DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
CarrierFreqUTRA-FDD-Ext-r12/q-QualMin-r12 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.FIELD_ATTR
CarrierFreqsInfoGERAN/commonInfo/q-RxLevMin ABBREV=geran_q_RxLevMin

#.TYPE_ATTR
CarrierFreqsInfoGERAN/commonInfo/q-RxLevMin DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_geran_q_RxLevMin_vals_ext

#.TYPE_ATTR
CarrierFreqsInfoGERAN/commonInfo/p-MaxGERAN DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
CQI-ReportConfig/nomPDSCH-RS-EPRE-Offset STRINGS=VALS(lte_rrc_nomPDSCH_RS_EPRE_Offset_vals)

#.TYPE_ATTR
CQI-ReportConfig-r10/nomPDSCH-RS-EPRE-Offset STRINGS=VALS(lte_rrc_nomPDSCH_RS_EPRE_Offset_vals)

#.TYPE_ATTR
CQI-ReportConfigSCell-r10/nomPDSCH-RS-EPRE-Offset-r10 STRINGS=VALS(lte_rrc_nomPDSCH_RS_EPRE_Offset_vals)

#.TYPE_ATTR
P-C-AndCBSR-r11/p-C-r11 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
P-C-AndCBSR-r13/p-C-r13 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
P-C-AndCBSR-r15 /p-C-r15 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
CSI-RS-Config-r10/csi-RS-r10/setup/p-C-r10 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.FN_BODY IP-Address-r13/ipv4-r13 VAL_PTR=&ipv4_tvb HF_INDEX=-1
  tvbuff_t *ipv4_tvb = NULL;
%(DEFAULT_BODY)s
  if (ipv4_tvb) {
    actx->created_item = proto_tree_add_item(tree, hf_index, ipv4_tvb, 0, 4, ENC_BIG_ENDIAN);
  }

#.TYPE_ATTR
IP-Address-r13/ipv4-r13 TYPE=FT_IPv4 DISPLAY=BASE_NONE

#.FN_BODY IP-Address-r13/ipv6-r13 VAL_PTR=&ipv6_tvb HF_INDEX=-1
  tvbuff_t *ipv6_tvb = NULL;
%(DEFAULT_BODY)s
  if (ipv6_tvb) {
    actx->created_item = proto_tree_add_item(tree, hf_index, ipv6_tvb, 0, 16, ENC_BIG_ENDIAN);
  }

#.TYPE_ATTR
IP-Address-r13/ipv6-r13 TYPE=FT_IPv6 DISPLAY=BASE_NONE

#.FN_BODY MAC-MainConfig
  /* Accumulate values in drx_config while dissecting DRX config.
     Do this here rather than down in DRX-Config so that we will see
     fields overwritten in the R11 extension */
  drx_config_t *drx_config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  if (drx_config->configured) {
    mac_lte_info* p_mac_lte_info;

    /* Verify that config is valid */
    drx_check_config_sane(drx_config, actx);

    /* Look for UE identifier */
    p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0);
    if (p_mac_lte_info != NULL) {
      /* If found, configure MAC with DRX config */
      set_mac_lte_drx_config(p_mac_lte_info->ueid, drx_config, actx->pinfo);
    }

    /* Clear out state */
    drx_config->configured = false;
  }


#.FN_BODY MAC-MainConfig/eag_1/sr-ProhibitTimer-r9 VAL_PTR=&timer
  uint32_t timer;
%(DEFAULT_BODY)s

#.TYPE_ATTR
MAC-MainConfig/eag_1/sr-ProhibitTimer-r9 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_sr_periods)

#.TYPE_ATTR
MAC-MainConfig/eag_9/shortTTI-AndSPT-r15/setup/ssr-ProhibitTimer-r15 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_sr_periods)

#.FN_BODY MAC-MainConfig/eag_2/mac-MainConfig-v1020/extendedBSR-Sizes-r10
  mac_lte_info* p_mac_lte_info;

%(DEFAULT_BODY)s
  /* Look for UE identifier */
  p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0);
  if (p_mac_lte_info != NULL) {
    /* Tell MAC to use extended BSR sizes configuration */
    set_mac_lte_extended_bsr_sizes(p_mac_lte_info->ueid, true, actx->pinfo);
  }

#.TYPE_ATTR
PDSCH-ConfigCommon/referenceSignalPower DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
P-Max DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
P-MaxNR-r15 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
SPS-ConfigUL/setup/p0-Persistent/p0-NominalPUSCH-Persistent DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
SPS-ConfigUL/setup/p0-Persistent/p0-UE-PUSCH-Persistent DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
SPS-ConfigUL/setup/eag_1/p0-PersistentSubframeSet2-r12/setup/p0-NominalPUSCH-PersistentSubframeSet2-r12 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
SPS-ConfigUL/setup/eag_1/p0-PersistentSubframeSet2-r12/setup/p0-UE-PUSCH-PersistentSubframeSet2-r12 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
UplinkPowerControlCommon/deltaPreambleMsg3 STRINGS=VALS(lte_rrc_deltaPreambleMsg3_vals)

#.TYPE_ATTR
UplinkPowerControlCommon/p0-NominalPUSCH DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
UplinkPowerControlCommonSCell-v1130/deltaPreambleMsg3-r11 STRINGS=VALS(lte_rrc_deltaPreambleMsg3_vals)

#.TYPE_ATTR
UplinkPowerControlCommon/p0-NominalPUCCH DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
UplinkPowerControlCommon-v1610/p0-NominalSRS-Add-r16 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
UplinkPowerControlCommonPSCell-r12/p0-NominalPUCCH-r12 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
UplinkPowerControlCommonSCell-v1310/p0-NominalPUCCH DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
UplinkPowerControlCommonSCell-r10/p0-NominalPUSCH-r10 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
UplinkPowerControlCommonPUSCH-LessCell-v1430/p0-Nominal-PeriodicSRS-r14 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
UplinkPowerControlCommonPUSCH-LessCell-v1430/p0-Nominal-AperiodicSRS-r14 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
UplinkPowerControlDedicated/p0-UE-PUSCH DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
UplinkPowerControlDedicated/p0-UE-PUCCH DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
UplinkPowerControlDedicated-v1250/set2PowerControlParameter/setup/p0-NominalPUSCH-SubframeSet2-r12 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
UplinkPowerControlDedicated-v1250/set2PowerControlParameter/setup/p0-UE-PUSCH-SubframeSet2-r12 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
UplinkPowerControlDedicated-v1530/p0-UE-PUSCH-r15 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
UplinkPUSCH-LessPowerControlDedicated-v1430/p0-UE-PeriodicSRS-r14 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
UplinkPUSCH-LessPowerControlDedicated-v1430/p0-UE-AperiodicSRS-r14 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
UplinkPowerControlAddSRS-r16/p0-UE-SRS-Add-r16 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
UplinkPowerControlDedicatedSCell-r10/p0-UE-PUSCH-r10 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
UplinkPowerControlDedicatedSCell-v1310/p0-UE-PUCCH DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
CellSelectionInfoNFreq-r13/q-RxLevMinOffset STRINGS=VALS(lte_rrc_q_RxLevMinOffset_vals)

#.TYPE_ATTR
Q-QualMin-r9 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
Q-RxLevMin DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_q_RxLevMin_vals_ext

#.TYPE_ATTR
CarrierFreqNR-r15/q-RxLevMin-r15 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_q_RxLevMin_vals_ext

#.TYPE_ATTR
CarrierFreqNR-r15/q-RxLevMinSUL-r15 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_q_RxLevMin_vals_ext

#.TYPE_ATTR
CarrierFreqNR-r15/q-QualMin-r15 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
Q-OffsetRangeInterRAT DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
ReselectionThreshold DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_ReselectionThreshold_vals_ext

#.TYPE_ATTR
ReselectionThresholdQ-r9 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
T-Reselection DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.TYPE_ATTR
T-ReselectionEUTRA-CE-r13 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.TYPE_ATTR
Hysteresis DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_Hysteresis_vals_ext

#.TYPE_ATTR
CSI-RSRP-Range-r12 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_RSRP_Range_vals_ext

#.TYPE_ATTR
MBSFN-RSRQ-Range-r12 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_MBSFN_RSRQ_Range_vals_ext

#.TYPE_RENAME
MeasConfig/s-Measure S_Measure

#.TYPE_ATTR
MeasConfig/s-Measure DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_s_Measure_vals_ext

#.TYPE_ATTR
MeasResultGERAN/measResult/rssi DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&gsm_a_rr_rxlev_vals_ext

#.TYPE_ATTR
MeasResultUTRA/measResult/utra-EcN0 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_utra_EcN0_vals_ext

#.TYPE_ATTR
MeasResultUTRA/measResult/utra-RSCP DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_utra_RSCP_vals_ext

#.TYPE_ATTR
ReportConfigEUTRA/triggerType/event/eventId/eventA3/a3-Offset DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_a3_a6_c2_Offset_vals_ext

#.TYPE_ATTR
ReportConfigEUTRA/triggerType/event/eventId/eventA6-r10/a6-Offset-r10 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_a3_a6_c2_Offset_vals_ext

#.TYPE_ATTR
ReportConfigEUTRA/triggerType/event/eventId/eventC2-r12/c2-Offset-r12 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_a3_a6_c2_Offset_vals_ext

#.TYPE_ATTR
CondReconfigurationTriggerEUTRA-r16/condEventId-r16/a3-Offset-r16 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_a3_a6_c2_Offset_vals_ext

#.TYPE_RENAME
ThresholdEUTRA/threshold-RSRP Threshold_RSRP_Range

#.TYPE_ATTR
ThresholdEUTRA/threshold-RSRP DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_threshold_RSRP_vals_ext

#.TYPE_RENAME
ThresholdEUTRA/threshold-RSRQ Threshold_RSRQ_Range

#.TYPE_ATTR
ThresholdEUTRA/threshold-RSRQ DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_threshold_RSRQ_vals_ext

#.TYPE_ATTR
ThresholdGERAN DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_thresholdGERAN_vals_ext

#.TYPE_RENAME
ThresholdUTRA/utra-RSCP Threshold_utra_RSRP

#.TYPE_ATTR
ThresholdUTRA/utra-RSCP DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_thresholdUTRA_RSCP_vals_ext

#.TYPE_RENAME
ThresholdUTRA/utra-EcN0 Threshold_utra_EcN0

#.TYPE_ATTR
ThresholdUTRA/utra-EcN0 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_thresholdUTRA_EcN0_vals_ext

#.TYPE_ATTR
RSRP-Range DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_RSRP_Range_vals_ext

#.TYPE_ATTR
RSRP-Range-v1360 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_RSRP_Range_v1360_vals_ext

#.TYPE_ATTR
RSRP-RangeSL-r12 DISPLAY=BASE_DEC STRINGS=VALS(lte_rrc_RSRP_RangeSL_vals)

#.TYPE_ATTR
RSRP-RangeSL2-r12 DISPLAY=BASE_DEC STRINGS=VALS(lte_rrc_RSRP_RangeSL2_vals)

#.TYPE_ATTR
RSRP-RangeSL3-r12 DISPLAY=BASE_DEC STRINGS=VALS(lte_rrc_RSRP_RangeSL3_vals)

#.TYPE_ATTR
RSRP-RangeSL4-r13 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_RSRP_RangeSL4_vals_ext

#.TYPE_ATTR
RSRP-RangeNR-r15 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_RSRP_RangeNR_r15_fmt)

#.TYPE_ATTR
RSRQ-Range DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_RSRQ_Range_vals_ext

#.TYPE_ATTR
RSRQ-Range-v1250 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_RSRQ_Range_vals_ext

#.TYPE_ATTR
RSRQ-Range-r13 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_RSRQ_Range_vals_ext

#.TYPE_ATTR
RSRQ-RangeNR-r15 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_RSRQ_RangeNR_r15_fmt)

#.TYPE_ATTR
RS-SINR-Range-r13 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_RS_SINR_Range_r13_fmt)

#.TYPE_ATTR
RS-SINR-RangeNR-r15 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_RS_SINR_RangeNR_r15_fmt)

#.TYPE_ATTR
RSSI-Range-r13 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_RSSI_Range_r13_fmt)

#.TYPE_ATTR
MeasResultWLAN-r13/availableAdmissionCapacityWLAN-r13 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_availableAdmissionCapacityWLAN_fmt)

#.TYPE_ATTR
MeasResultForECID-r9/ue-RxTxTimeDiffResult-r9 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_ue_RxTxTimeDiffResult_fmt)

#.TYPE_ATTR
MeasResultForRSSI-r13/channelOccupancy-r13 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_percent)

#.TYPE_ATTR
MeasResultForRSSI-NR-r16/channelOccupancyNR-r16 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_percent)

#.TYPE_ATTR
UL-PDCP-DelayResult-r13/excessDelay-r13 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_excessDelay_r13_vals_ext

#.TYPE_ATTR
UL-PDCP-DelayValueResult-r16/averageDelay-r16 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_averageDelay_r16_fmt)

#.TYPE_ATTR
MeasResultSSTD-r13/subframeBoundaryOffsetResult-r13 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_subframeBoundaryOffsetResult_r13_fmt)

#.FN_BODY SoundingRS-UL-ConfigDedicated/setup/duration
  actx->created_item = proto_tree_add_bits_item(tree, hf_index, tvb, offset, 1, ENC_BIG_ENDIAN);
  offset++;

#.TYPE_ATTR
SoundingRS-UL-ConfigDedicated/setup/duration STRINGS=TFS(&lte_rrc_duration_val)

#.FN_FTR DLDedicatedMessageSegment-r16-IEs
  if (lte_rrc_reassemble_dcch_segments) {
    uint32_t ueid, id, count;
    rlc_lte_info *p_rlc_lte_info;
    pdcp_lte_info *p_pdcp_lte_info;
    mac_lte_info *p_mac_lte_info;
    fragment_head *frag_data;
    tvbuff_t *frag_tvb, *reassembled_tvb;
    wmem_tree_key_t key[3];

    if ((p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0)) != NULL) {
      ueid = p_mac_lte_info->ueid;
    } else if ((p_rlc_lte_info = (rlc_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_rlc_lte, 0)) != NULL) {
      ueid = p_rlc_lte_info->ueid;
    } else if ((p_pdcp_lte_info = (pdcp_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_pdcp_lte, 0)) != NULL) {
      ueid = p_pdcp_lte_info->ueid;
    } else {
      ueid = 0;
    }
    key[0].length = 1;
    key[0].key = &ueid;
    key[1].length = 1;
    key[1].key = &actx->pinfo->num;
    key[2].length = 0;
    key[2].key = NULL;
    if (!PINFO_FD_VISITED(actx->pinfo)) {
      void *value;

      if (wmem_map_lookup_extended(lte_rrc_dcch_segment_ueid_count_hash, GUINT_TO_POINTER((ueid<<16)|(1<<15)), NULL, &value)) {
        count = GPOINTER_TO_UINT(value);
      } else {
        count = 0;
      }
      if (private_data_get_dcch_segment_number(actx) == 0) {
        /* new segmented message */
        count++;
        wmem_map_insert(lte_rrc_dcch_segment_ueid_count_hash, GUINT_TO_POINTER((ueid<<16)|(1<<15)), GUINT_TO_POINTER(count));
      }
      id = (ueid<<16)|(1<<15)|(count&0x7fff);
      wmem_tree_insert32_array(lte_rrc_dcch_segment_id_tree, key, GUINT_TO_POINTER(id));
    } else {
      id = GPOINTER_TO_UINT(wmem_tree_lookup32_array(lte_rrc_dcch_segment_id_tree, key));
    }
    if ((frag_tvb = private_data_get_dcch_segment(actx)) != NULL) {
      frag_data = fragment_add_seq_check(&lte_rrc_dcch_segment_reassembly_table, frag_tvb, 0, actx->pinfo,
                                         id, NULL, private_data_get_dcch_segment_number(actx),
                                         tvb_reported_length(frag_tvb),
                                         !private_data_get_dcch_segment_last(actx));
      reassembled_tvb = process_reassembled_data(frag_tvb, 0, actx->pinfo, "Reassembled DL Dedicated Message",
                                                 frag_data, &lte_rrc_dcch_segment_frag_items, NULL, tree);
      if (reassembled_tvb) {
        dissect_lte_rrc_DL_DCCH_Message_PDU(reassembled_tvb, actx->pinfo, tree, NULL);
      }
    }
  }

#.FN_BODY DLDedicatedMessageSegment-r16-IEs/segmentNumber-r16 VAL_PTR=&value
  uint32_t value;
%(DEFAULT_BODY)s
  private_data_set_dcch_segment_number(actx, (uint8_t)value);

#.FN_BODY DLDedicatedMessageSegment-r16-IEs/rrc-MessageSegmentContainer-r16 VAL_PTR=&segment
  tvbuff_t *segment;
%(DEFAULT_BODY)s
  private_data_set_dcch_segment(actx, segment);

#.FN_BODY DLDedicatedMessageSegment-r16-IEs/rrc-MessageSegmentType-r16 VAL_PTR=&value
  uint32_t value;
%(DEFAULT_BODY)s
  private_data_set_dcch_segment_last(actx, (value > 0) ? true : false);

#.FN_FTR ULDedicatedMessageSegment-r16-IEs
  if (lte_rrc_reassemble_dcch_segments) {
    uint32_t ueid, id, count;
    rlc_lte_info *p_rlc_lte_info;
    pdcp_lte_info *p_pdcp_lte_info;
    mac_lte_info *p_mac_lte_info;
    fragment_head *frag_data;
    tvbuff_t *frag_tvb, *reassembled_tvb;
    wmem_tree_key_t key[3];

    if ((p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0)) != NULL) {
      ueid = p_mac_lte_info->ueid;
    } else if ((p_rlc_lte_info = (rlc_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_rlc_lte, 0)) != NULL) {
      ueid = p_rlc_lte_info->ueid;
    } else if ((p_pdcp_lte_info = (pdcp_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_pdcp_lte, 0)) != NULL) {
      ueid = p_pdcp_lte_info->ueid;
    } else {
      ueid = 0;
    }
    key[0].length = 1;
    key[0].key = &ueid;
    key[1].length = 1;
    key[1].key = &actx->pinfo->num;
    key[2].length = 0;
    key[2].key = NULL;
    if (!PINFO_FD_VISITED(actx->pinfo)) {
      void *value;

      if (wmem_map_lookup_extended(lte_rrc_dcch_segment_ueid_count_hash, GUINT_TO_POINTER(ueid<<16), NULL, &value)) {
        count = GPOINTER_TO_UINT(value);
      } else {
        count = 0;
      }
      if (private_data_get_dcch_segment_number(actx) == 0) {
        /* new segmented message */
        count++;
        wmem_map_insert(lte_rrc_dcch_segment_ueid_count_hash, GUINT_TO_POINTER(ueid<<16), GUINT_TO_POINTER(count));
      }
      id = (ueid<<16)|(count&0x7fff);
      wmem_tree_insert32_array(lte_rrc_dcch_segment_id_tree, key, GUINT_TO_POINTER(id));
    } else {
      id = GPOINTER_TO_UINT(wmem_tree_lookup32_array(lte_rrc_dcch_segment_id_tree, key));
    }
    if ((frag_tvb = private_data_get_dcch_segment(actx)) != NULL) {
      frag_data = fragment_add_seq_check(&lte_rrc_dcch_segment_reassembly_table, frag_tvb, 0, actx->pinfo,
                                         id, NULL, private_data_get_dcch_segment_number(actx),
                                         tvb_reported_length(frag_tvb),
                                         !private_data_get_dcch_segment_last(actx));
      reassembled_tvb = process_reassembled_data(frag_tvb, 0, actx->pinfo, "Reassembled UL Dedicated Message",
                                                 frag_data, &lte_rrc_dcch_segment_frag_items, NULL, tree);
      if (reassembled_tvb) {
        dissect_lte_rrc_UL_DCCH_Message_PDU(reassembled_tvb, actx->pinfo, tree, NULL);
      }
    }
  }

#.FN_BODY ULDedicatedMessageSegment-r16-IEs/segmentNumber-r16 VAL_PTR=&value
  uint32_t value;
%(DEFAULT_BODY)s
  private_data_set_dcch_segment_number(actx, (uint8_t)value);

#.FN_BODY ULDedicatedMessageSegment-r16-IEs/rrc-MessageSegmentContainer-r16 VAL_PTR=&segment
  tvbuff_t *segment;
%(DEFAULT_BODY)s
  private_data_set_dcch_segment(actx, segment);

#.FN_BODY ULDedicatedMessageSegment-r16-IEs/rrc-MessageSegmentType-r16 VAL_PTR=&value
  uint32_t value;
%(DEFAULT_BODY)s
  private_data_set_dcch_segment_last(actx, (value > 0) ? true : false);

#.FN_HDR MasterInformationBlock

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "MasterInformationBlock");

#.FN_HDR SystemInformation

  if (private_data_get_bcch_dl_sch_msg(actx) == false) {
    col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "SystemInformation [");
  }

#.FN_BODY SystemInformation

%(DEFAULT_BODY)s
  if (private_data_get_bcch_dl_sch_msg(actx) == false) {
    col_append_str(actx->pinfo->cinfo, COL_INFO, " ]");
  }

#.FN_HDR SystemInformationBlockType1

  if (private_data_get_bcch_dl_sch_msg(actx) == false) {
    col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "SystemInformationBlockType1");
  }

#.FN_HDR SystemInformation-BR-r13

  private_data_set_bcch_dl_sch_msg(actx, true);
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "SystemInformation-BR-r13 [");

#.FN_BODY SystemInformation-BR-r13

%(DEFAULT_BODY)s
  col_append_str(actx->pinfo->cinfo, COL_INFO, " ]");

#.FN_HDR SystemInformationBlockType1-BR-r13

  private_data_set_bcch_dl_sch_msg(actx, true);
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "SystemInformationBlockType1-BR-r13");

#.FN_HDR SystemInformation-MBMS-r14

  private_data_set_bcch_dl_sch_msg(actx, true);
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "SystemInformation-MBMS-r14 [");

#.FN_BODY SystemInformation-MBMS-r14

%(DEFAULT_BODY)s
  col_append_str(actx->pinfo->cinfo, COL_INFO, " ]");

#.FN_HDR SystemInformationBlockType1-MBMS-r14

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "SystemInformationBlockType1-MBMS-r14");

#.FN_HDR SystemInformationBlockType2

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB2");

#.FN_HDR SystemInformationBlockType3

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB3");

#.FN_HDR SystemInformationBlockType4

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB4");

#.FN_HDR SystemInformationBlockType5

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB5");

#.FN_HDR SystemInformationBlockType6

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB6");

#.FN_HDR SystemInformationBlockType7

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB7");

#.FN_HDR SystemInformationBlockType8

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB8");

#.FN_HDR SystemInformationBlockType9

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB9");

#.FN_HDR SystemInformationBlockType10

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB10");

#.FN_HDR SystemInformationBlockType11

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB11");

#.FN_HDR SystemInformationBlockType12-r9

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB12");

#.FN_HDR SystemInformationBlockType13-r9

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB13");

#.FN_HDR SystemInformationBlockType14-r11

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB14");

#.FN_HDR SystemInformationBlockType15-r11

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB15");

#.FN_HDR SystemInformationBlockType16-r11

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB16");

#.FN_HDR SystemInformationBlockType17-r12

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB17");

#.FN_HDR SystemInformationBlockType18-r12

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB18");

#.FN_HDR SystemInformationBlockType19-r12

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB19");

#.FN_HDR SystemInformationBlockType20-r13

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB20");

#.FN_HDR SystemInformationBlockType21-r14

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB21");

#.FN_HDR SystemInformationBlockType24-r15

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB24");

#.FN_HDR SystemInformationBlockType25-r15

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB25");

#.FN_HDR SystemInformationBlockType26-r15

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB26");

#.FN_HDR SystemInformationBlockType26a-r16

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB26a");

#.FN_HDR SystemInformationBlockType27-r16

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB27");

#.FN_HDR SystemInformationBlockType28-r16

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB28");

#.FN_HDR SystemInformationBlockType29-r16

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB29");

#.FN_HDR SystemInformationBlockType30-r17

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB30");

#.FN_HDR SystemInformationBlockType31-r17

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB31");

#.FN_HDR SystemInformationBlockType32-r17

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB32");

#.FN_HDR SystemInformationBlockType33-r18

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB33");

#.FN_HDR SystemInformationBlockPos-r15

  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIBPos");

#.FN_HDR MBSFNAreaConfiguration-r9

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "MBSFNAreaConfiguration-r9");

#.FN_HDR MBMSCountingRequest-r10

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "MBMSCountingRequest-r10");

#.FN_HDR Paging

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "Paging");

#.FN_HDR RRCConnectionReestablishment

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionReestablishment");

#.FN_HDR RRCConnectionReestablishmentReject

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionReestablishmentReject");

#.FN_HDR RRCConnectionReject

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionReject");

#.FN_HDR RRCConnectionSetup
  mac_lte_info* p_mac_lte_info;

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionSetup");

#.FN_HDR RRCEarlyDataComplete-r15

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCEarlyDataComplete-r15");

#.FN_HDR CSFBParametersResponseCDMA2000

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "CSFBParametersResponseCDMA2000");

#.FN_HDR DLInformationTransfer

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "DLInformationTransfer");

#.FN_HDR HandoverFromEUTRAPreparationRequest

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "HandoverFromEUTRAPreparationRequest");

#.FN_HDR MobilityFromEUTRACommand

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "MobilityFromEUTRACommand");

#.FN_HDR RRCConnectionReconfiguration

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionReconfiguration");

#.FN_HDR RRCConnectionRelease

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionRelease");

#.FN_HDR SecurityModeCommand

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "SecurityModeCommand");

#.FN_HDR UECapabilityEnquiry

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "UECapabilityEnquiry");

#.FN_HDR CounterCheck

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "CounterCheck");

#.FN_HDR UEInformationRequest-r9

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "UEInformationRequest-r9");

#.FN_HDR LoggedMeasurementConfiguration-r10

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "LoggedMeasurementConfiguration-r10");

#.FN_HDR RNReconfiguration-r10

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RNReconfiguration-r10");

#.FN_HDR RRCConnectionResume-r13

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionResume-r13");

#.FN_HDR DLDedicatedMessageSegment-r16

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "DLDedicatedMessageSegment-r16");

#.FN_HDR RRCConnectionReestablishmentRequest
  /* Inform RLC & PDCP - need UE identifier */
  mac_lte_info *p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0);
  if (p_mac_lte_info) {
    /* Tell RLC this UE is trying to (re)connect */
    rlc_lte_reset_ue_bearers(actx->pinfo, p_mac_lte_info->ueid);
    /* And PDCP. Only SRBs and UM (not AM) DRBs */
    pdcp_lte_reset_ue_bearers(actx->pinfo, p_mac_lte_info->ueid, true);
  }
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionReestablishmentRequest");

#.FN_HDR RRCConnectionRequest
  /* Inform RLC & PDCP - need UE identifier */
  mac_lte_info *p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0);
  if (p_mac_lte_info) {
    /* Tell RLC this UE is trying to (re)connect */
    rlc_lte_reset_ue_bearers(actx->pinfo, p_mac_lte_info->ueid);
    /* And PDCP */
    pdcp_lte_reset_ue_bearers(actx->pinfo, p_mac_lte_info->ueid, true);
  }
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionRequest");

#.FN_HDR RRCConnectionResumeRequest-r13
  /* Inform RLC & PDCP - need UE identifier */
  mac_lte_info *p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0);
  if (p_mac_lte_info) {
    /* Tell RLC this UE is trying to (re)connect */
    rlc_lte_reset_ue_bearers(actx->pinfo, p_mac_lte_info->ueid);
    /* And PDCP */
    /* TODO: more complicated, skip PDCP reset for now */
    // pdcp_lte_reset_ue_bearers(actx->pinfo, p_mac_lte_info->ueid, true);
  }
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionResumeRequest-r13");

#.FN_HDR RRCEarlyDataRequest-r15
  /* Inform RLC & PDCP - need UE identifier */
  mac_lte_info *p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0);
  if (p_mac_lte_info) {
    /* Tell RLC this UE is trying to (re)connect */
    rlc_lte_reset_ue_bearers(actx->pinfo, p_mac_lte_info->ueid);
    /* And PDCP */
    pdcp_lte_reset_ue_bearers(actx->pinfo, p_mac_lte_info->ueid, false);
  }
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCEarlyDataRequest-r15");

#.FN_HDR CSFBParametersRequestCDMA2000

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "CSFBParametersRequestCDMA2000");

#.FN_HDR MeasurementReport

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "MeasurementReport");

#.FN_HDR RRCConnectionReconfigurationComplete

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionReconfigurationComplete");

#.FN_HDR RRCConnectionReestablishmentComplete

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionReestablishmentComplete");

#.FN_HDR RRCConnectionSetupComplete

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionSetupComplete");

#.FN_HDR SecurityModeComplete

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "SecurityModeComplete");

#.FN_BODY SecurityModeFailure
  mac_lte_info *p_mac_lte_info;
%(DEFAULT_BODY)s
  /* Look for UE identifier */
  p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0);

  if (p_mac_lte_info != NULL) {
    /* Inform PDCP that the UE failed to execute the securityModeCommand */
    set_pdcp_lte_security_algorithms_failed(p_mac_lte_info->ueid);
  }

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "SecurityModeFailure");


#.FN_HDR UECapabilityInformation

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "UECapabilityInformation");

#.FN_HDR ULHandoverPreparationTransfer

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "ULHandoverPreparationTransfer");

#.FN_HDR ULInformationTransfer

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "ULInformationTransfer");

#.FN_HDR CounterCheckResponse

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "CounterCheckResponse");

#.FN_HDR UEInformationResponse-r9

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "UEInformationResponse-r9");

#.FN_HDR ProximityIndication-r9

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "ProximityIndication-r9");

#.FN_HDR RNReconfigurationComplete-r10

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RNReconfigurationComplete-r10");

#.FN_HDR MBMSCountingResponse-r10

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "MBMSCountingResponse-r10");

#.FN_HDR InterFreqRSTDMeasurementIndication-r10

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "InterFreqRSTDMeasurementIndication-r10");

#.FN_HDR UEAssistanceInformation-r11

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "UEAssistanceInformation-r11");

#.FN_HDR InDeviceCoexIndication-r11

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "InDeviceCoexIndication-r11");

#.FN_HDR MBMSInterestIndication-r11

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "MBMSInterestIndication-r11");

#.FN_HDR SCGFailureInformation-r12

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "SCGFailureInformation-r12");

#.FN_HDR SidelinkUEInformation-r12

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "SidelinkUEInformation-r12");

#.FN_HDR WLANConnectionStatusReport-r13

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "WLANConnectionStatusReport-r13");

#.FN_HDR RRCConnectionResumeComplete-r13

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionResumeComplete-r13");

#.FN_HDR ULInformationTransferMRDC-r15

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "ULInformationTransferMRDC-r15");

#.FN_HDR SCGFailureInformationNR-r15

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "SCGFailureInformationNR-r15");

#.FN_HDR MeasReportAppLayer-r15

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "MeasReportAppLayer-r15");

#.FN_HDR FailureInformation-r15

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "FailureInformation-r15");

#.FN_HDR ULDedicatedMessageSegment-r16

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "ULDedicatedMessageSegment-r16");

#.FN_HDR PURConfigurationRequest-r16

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "PURConfigurationRequest-r16");

#.FN_HDR FailureInformation-r16

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "FailureInformation-r16");

#.FN_HDR MCGFailureInformation-r16

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "MCGFailureInformation-r16");

#.FN_HDR ULInformationTransferIRAT-r16

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "ULInformationTransferIRAT-r16");

#.FN_HDR SCPTMConfiguration-r13

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "SCPTMConfiguration-r13");

#.FN_HDR SCPTMConfiguration-BR-r14

  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "SCPTMConfiguration-BR-r14");

#.FN_BODY Paging/systemInfoModification
%(DEFAULT_BODY)s
  col_append_str(actx->pinfo->cinfo, COL_INFO, " (systemInfoModification)");
  expert_add_info(actx->pinfo, actx->created_item, &ei_lte_rrc_sibs_changing);

#.FN_BODY Paging/pagingRecordList
  /* Number of items is (last 3 bits of first byte and first bit of second) + 1 */
  uint16_t number_of_records = ((tvb_get_ntohs(tvb, 0) >> 7) & 0x0f) + 1;
%(DEFAULT_BODY)s
  col_append_fstr(actx->pinfo->cinfo, COL_INFO, " (%%u PagingRecord%%s)", number_of_records, plurality(number_of_records, "", "s"));

#.FN_BODY Paging-v1310-IEs/systemInfoModification-eDRX-r13
%(DEFAULT_BODY)s
  col_append_str(actx->pinfo->cinfo, COL_INFO, " (systemInfoModification-eDRX-r13)");
  expert_add_info(actx->pinfo, actx->created_item, &ei_lte_rrc_sibs_changing_edrx);

#.FN_BODY MasterInformationBlock/systemFrameNumber VAL_PTR=&value_tvb
  tvbuff_t *value_tvb = NULL;
  uint32_t sfn;
%(DEFAULT_BODY)s
  /* Show SFN in info column */
  sfn = tvb_get_uint8(value_tvb, 0);
  col_append_fstr(actx->pinfo->cinfo, COL_INFO, " (SFN=%%u)", sfn);

#.FN_BODY SystemInformationBlockType1/systemInfoValueTag VAL_PTR=&value
  uint32_t value;
%(DEFAULT_BODY)s
  /* Track whether systemInfoValue has changed since last seen, indicating new SI config
     TODO: add link back to previous config and (if known) time since previous config
     was first seen */
  if (!actx->pinfo->fd->visited) {
    if (system_info_value_current_set && (value != system_info_value_current)) {
      /* Add entry to the hash table.  Offset by one to distinguish 0 from lookup failure */
      wmem_map_insert(lte_rrc_system_info_value_changed_hash, GUINT_TO_POINTER(actx->pinfo->num),
                          GUINT_TO_POINTER(system_info_value_current+1));
    }
    system_info_value_current_set = true;
    system_info_value_current = value;
  }
  else {
    /* Look up indication of changed info value from hash table */
    void *p_previous = wmem_map_lookup(lte_rrc_system_info_value_changed_hash, GUINT_TO_POINTER(actx->pinfo->num));
    if (p_previous != NULL) {
      /* Subtract one from stored result to get previous value */
      uint32_t previous = GPOINTER_TO_UINT(p_previous) - 1;
      expert_add_info_format(actx->pinfo, actx->created_item, &ei_lte_rrc_si_info_value_changed,
                             "SI Info Value changed (now %%u, was %%u)", value, previous);
    }
  }

#.TYPE_ATTR
SystemInformationBlockType5/eag_6/scptm-FreqOffset-r14 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_scptm_FreqOffset_r14_fmt)

#.TYPE_ATTR
SL-V2X-ConfigCommon-r14/offsetDFN-r14 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_offsetDFN_r14_fmt)

#.FN_BODY Paging/etws-Indication
%(DEFAULT_BODY)s
  col_append_str(actx->pinfo->cinfo, COL_INFO, " (ETWS)");
  expert_add_info(actx->pinfo, actx->created_item, &ei_lte_rrc_earthquake_warning_sys);

#.FN_BODY Paging-v920-IEs/cmas-Indication-r9
%(DEFAULT_BODY)s
  col_append_str(actx->pinfo->cinfo, COL_INFO, " (CMAS)");
  expert_add_info(actx->pinfo, actx->created_item, &ei_lte_rrc_commercial_mobile_alert_sys);

#.FN_BODY RadioResourceConfigDedicated
  private_data_set_simult_pucch_pusch_cell_type(actx, SIMULT_PUCCH_PUSCH_PCELL);
%(DEFAULT_BODY)s

#.FN_BODY RadioResourceConfigDedicatedPSCell-r12
  private_data_set_simult_pucch_pusch_cell_type(actx, SIMULT_PUCCH_PUSCH_PSCELL);
%(DEFAULT_BODY)s

#.FN_BODY DRB-ToAddMod
  struct mac_lte_info *p_mac_lte_info;
  struct rlc_lte_info *p_rlc_lte_info;
  /* Get the struct and clear it out */
  drb_mapping_t *drb_mapping = private_data_get_drb_mapping(actx);
  memset(drb_mapping, 0, sizeof(*drb_mapping));
%(DEFAULT_BODY)s
  /* Need UE identifier */
  p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0);
  if (p_mac_lte_info) {
    drb_mapping->ueid = p_mac_lte_info->ueid;
    /* Tell MAC about this mapping */
    set_mac_lte_channel_mapping(drb_mapping);
  }

  /* Also tell RLC how many PDCP sequence number bits and whether it should use extended LI */
  p_rlc_lte_info = (rlc_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_rlc_lte, 0);
  if (p_rlc_lte_info) {
    if (drb_mapping->pdcp_sn_size_present) {
      set_rlc_lte_drb_pdcp_seqnum_length(actx->pinfo,
                                         p_rlc_lte_info->ueid,
                                         drb_mapping->drbid,
                                         drb_mapping->pdcp_sn_size);
    }
    if (drb_mapping->rlcMode_present) {
      set_rlc_lte_drb_li_field(actx->pinfo,
                               p_rlc_lte_info->ueid,
                               drb_mapping->drbid,
                               drb_mapping->rlc_ul_ext_li_field,
                               drb_mapping->rlc_dl_ext_li_field);
    }
  }

  /* Clear out the struct again */
  memset(&drb_mapping, 0, sizeof(drb_mapping));


#.FN_BODY DRB-Identity VAL_PTR=&value
  uint32_t value;
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->drbid = (uint8_t)value;
  }

#.FN_BODY RLC-Config VAL_PTR=&value
  uint32_t value;
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->rlcMode = (value==0) ? RLC_AM_MODE : RLC_UM_MODE;
    mapping->rlcMode_present = true;

    if (mapping->rlcMode == RLC_AM_MODE) {
        mapping->pdcp_sn_size = 12;
        mapping->pdcp_sn_size_present = true;
    }
  }

#.FN_BODY RLC-Config-v1250/ul-extended-RLC-LI-Field-r12 VAL_PTR=&ext_li_field
  bool ext_li_field;
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->rlc_ul_ext_li_field = ext_li_field;
  }

#.FN_BODY RLC-Config-v1250/dl-extended-RLC-LI-Field-r12 VAL_PTR=&ext_li_field
  bool ext_li_field;
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->rlc_dl_ext_li_field = ext_li_field;
  }

#.FN_BODY RLC-Config-v1310/ul-extended-RLC-AM-SN-r13 VAL_PTR=&ext_am_sn
  bool ext_am_sn;
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->rlc_ul_ext_am_sn = ext_am_sn;
  }

#.FN_BODY RLC-Config-v1310/dl-extended-RLC-AM-SN-r13 VAL_PTR=&ext_am_sn
  bool ext_am_sn;
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->rlc_dl_ext_am_sn = ext_am_sn;
  }

#.FN_BODY DRB-ToAddMod/logicalChannelIdentity VAL_PTR=&value
  uint32_t value;
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->lcid = (uint8_t)value;
    mapping->lcid_present = true;
  }

#.FN_BODY DRB-ToAddMod/eag_5/logicalChannelIdentity-r15 VAL_PTR=&value
  uint32_t value;
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->lcid = (uint8_t)value;
    mapping->lcid_present = true;
  }

#.FN_BODY SN-FieldLength VAL_PTR=&value
  uint32_t value;
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->um_sn_length = (value==0) ? 5 : 10;
    mapping->um_sn_length_present = true;
  }

#.FN_BODY LogicalChannelConfig/ul-SpecificParameters/priority VAL_PTR=&value
  uint32_t value;
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->ul_priority = value;
    mapping->ul_priority_present = true;
  }

#.TYPE_ATTR
LWA-Config-r13/eag_1/wt-MAC-Address-r14 TYPE=FT_ETHER

#.FN_BODY PDCP-Config/rlc-UM/pdcp-SN-Size VAL_PTR=&value
  uint32_t value;
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->pdcp_sn_size = (value==0) ? 7 : 12;
    mapping->pdcp_sn_size_present = true;
  }

#.FN_BODY PDCP-Config/eag_2/pdcp-SN-Size-v1130
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->pdcp_sn_size = 15;
    mapping->pdcp_sn_size_present = true;
  }

#.FN_BODY PDCP-Config/eag_4/pdcp-SN-Size-v1310
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->pdcp_sn_size = 18;
    mapping->pdcp_sn_size_present = true;
  }

#.TYPE_ATTR
LBT-Config-r14/maxEnergyDetectionThreshold-r14 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
LBT-Config-r14/energyDetectionThresholdOffset-r14 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.FN_BODY NeighCellsInfo-r12/transmissionModeList-r12 VAL_PTR=&tm_list_tvb
  tvbuff_t *tm_list_tvb=NULL;
  proto_tree *subtree;
%(DEFAULT_BODY)s
  if (tm_list_tvb) {
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_transmissionModeList_r12);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_transmissionModeList_r12_tm1, tm_list_tvb, 0, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_transmissionModeList_r12_tm2, tm_list_tvb, 1, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_transmissionModeList_r12_tm3, tm_list_tvb, 2, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_transmissionModeList_r12_tm4, tm_list_tvb, 3, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_transmissionModeList_r12_tm6, tm_list_tvb, 4, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_transmissionModeList_r12_tm8, tm_list_tvb, 5, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_transmissionModeList_r12_tm9, tm_list_tvb, 6, 1, ENC_BIG_ENDIAN);
    proto_tree_add_bits_item(subtree, hf_lte_rrc_transmissionModeList_r12_tm10, tm_list_tvb, 7, 1, ENC_BIG_ENDIAN);
  }

#.FN_BODY PUCCH-ConfigDedicated-v1020/simultaneousPUCCH-PUSCH-r10
  mac_lte_info* p_mac_lte_info;

%(DEFAULT_BODY)s
  /* Look for UE identifier */
  p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0);
  if (p_mac_lte_info != NULL) {
    /* Tell MAC to use simultaneous PUCCH/PUSCH configuration */
    set_mac_lte_simult_pucch_pusch(p_mac_lte_info->ueid, private_data_get_simult_pucch_pusch_cell_type(actx), true, actx->pinfo);
  }

#.TYPE_RENAME
PUCCH-ConfigDedicated-r13/pucch-Format-r13/channelSelection-r13/n1PUCCH-AN-CS-r13/setup/n1PUCCH-AN-CS-List-r13 N1PUCCH_AN_CS_List_r13

#.FN_BODY RACH-ConfigCommon/preambleInfo
%(DEFAULT_BODY)s
  /* Initialise to invalid value */
  private_data_set_ra_preambles(actx, 0);

#.FN_BODY RACH-ConfigCommon/preambleInfo/numberOfRA-Preambles VAL_PTR=&value
  unsigned value;
%(DEFAULT_BODY)s
  /* This is mandatory, store value */
  private_data_set_ra_preambles(actx, value);

#.FN_BODY RACH-ConfigCommon/preambleInfo/preamblesGroupAConfig/sizeOfRA-PreamblesGroupA VAL_PTR=&value
  unsigned ra_value, value;
%(DEFAULT_BODY)s
  /* Retrived stored value for RA (both Group A & Group B) */
  ra_value = private_data_get_ra_preambles(actx);
  if (value > ra_value) {
    /* Something is wrong if A has more RAPIDs than A & B combined! */
    expert_add_info_format(actx->pinfo, actx->created_item, &ei_lte_rrc_too_many_group_a_rapids,
                                "Group A size (%%s) > Total RA size (%%s)!",
                                val_to_str_const(value, lte_rrc_T_sizeOfRA_PreamblesGroupA_vals, "Unknown"),
                                val_to_str_const(ra_value, lte_rrc_T_numberOfRA_Preambles_vals, "Unknown"));

  }
  /* Tell MAC dissector so that it can say for RAPIDs whether A, B, non-RA */
  set_mac_lte_rapid_ranges((value+1)*4, (ra_value+1)*4);
  /* Reset again */
  private_data_set_ra_preambles(actx, 0);

#.TYPE_ATTR
RACH-ConfigCommon-v1250/txFailParams-r12/connEstFailOffset-r12 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.FN_BODY DRX-Config/setup/onDurationTimer VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  /* Set 'configured' state so that config can be examine once complete! */
  config->configured = true;
  config->onDurationTimer = drx_lookup_onDurationTimer(value);

#.FN_BODY DRX-Config/setup/drx-InactivityTimer VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->inactivityTimer = drx_lookup_inactivityTimer(value);

#.FN_BODY DRX-Config/setup/drx-RetransmissionTimer VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->retransmissionTimer = drx_lookup_retransmissionTimer(value);

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->longCycle = drx_lookup_longCycle(value);

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset/sf10 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset/sf20 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset/sf32 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset/sf40 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset/sf64 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset/sf80 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset/sf128 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset/sf160 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset/sf256 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset/sf320 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset/sf512 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset/sf640 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset/sf1024 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset/sf1280 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset/sf2048 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/setup/longDRX-CycleStartOffset/sf2560 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/setup/shortDRX/shortDRX-Cycle VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->shortCycleConfigured = true;
  config->shortCycle = drx_lookup_shortCycle(value);

#.FN_BODY DRX-Config/setup/shortDRX/drxShortCycleTimer VAL_PTR=&timer
  uint32_t timer;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->shortCycleTimer = timer;

#.TYPE_ATTR
DRX-Config/setup/shortDRX/drxShortCycleTimer DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_short_drx_cycles)

#.FN_BODY DRX-Config-v1130/drx-RetransmissionTimer-v1130 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->retransmissionTimer = 0;

#.FN_BODY DRX-Config-v1130/longDRX-CycleStartOffset-v1130 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->longCycle = drx_lookup_longCycle_v1130(value);

#.FN_BODY DRX-Config-v1130/longDRX-CycleStartOffset-v1130/sf60-v1130 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config-v1130/longDRX-CycleStartOffset-v1130/sf70-v1130 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config-v1130/shortDRX-Cycle-v1130 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  /* Presumably config->shortCycleConfigured will be set... */
  config->shortCycle = 4;

#.FN_BODY DRX-Config-v1310/longDRX-CycleStartOffset-v1310
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->longCycle = 60;

#.FN_BODY DRX-Config-v1310/longDRX-CycleStartOffset-v1310/sf60-v1310 VAL_PTR=&value
  uint32_t value;
  drx_config_t* config = private_data_get_drx_config(actx);
%(DEFAULT_BODY)s
  config->cycleOffset = value;

#.FN_BODY DRX-Config/release
  mac_lte_info* p_mac_lte_info;
%(DEFAULT_BODY)s
  /* Look for UE identifier */
  p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0);
  if (p_mac_lte_info != NULL) {
    /* If found, tell MAC to release DRX config */
    set_mac_lte_drx_config_release(p_mac_lte_info->ueid, actx->pinfo);
  }

#.FN_BODY RRCConnectionSetup
  /* Look for UE identifier */
  p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0);
  if (p_mac_lte_info != NULL) {
    /* If found, tell MAC to release DRX config coming from a previous RRC connection */
    /* We do release the configuration here instead of RRC Connection Release message */
    /* as the UE could have locally dropped the previous RRC Connection */
    set_mac_lte_drx_config_release(p_mac_lte_info->ueid, actx->pinfo);
    /* Also tell MAC to release extended BSR sizes configuration */
    set_mac_lte_extended_bsr_sizes(p_mac_lte_info->ueid, false, actx->pinfo);
    /* Also tell MAC to release simutaneous PUCCH/PUSCH configuration */
    set_mac_lte_simult_pucch_pusch(p_mac_lte_info->ueid, SIMULT_PUCCH_PUSCH_PCELL, false, actx->pinfo);
    set_mac_lte_simult_pucch_pusch(p_mac_lte_info->ueid, SIMULT_PUCCH_PUSCH_PSCELL, false, actx->pinfo);
    /* TODO: also release PDCP security config here */
  }
%(DEFAULT_BODY)s


#.FN_BODY SecurityAlgorithmConfig
  pdcp_lte_info *p_pdcp_lte_info;
  pdcp_lte_security_info_t *p_security_algorithms;
%(DEFAULT_BODY)s
  p_security_algorithms = private_data_pdcp_security_algorithms(actx);
  p_security_algorithms->configuration_frame = actx->pinfo->num;
  p_security_algorithms->previous_configuration_frame = 0;
  p_security_algorithms->previous_integrity = eia0;
  p_security_algorithms->previous_ciphering = eea0;

  /* Look for UE identifier */
  p_pdcp_lte_info = (pdcp_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_pdcp_lte, 0);
  if (p_pdcp_lte_info != NULL) {
    /* Configure algorithms */
    set_pdcp_lte_security_algorithms(p_pdcp_lte_info->ueid, p_security_algorithms);
  }

#.FN_BODY CipheringAlgorithm-r12 VAL_PTR=&value
  uint32_t value;
  pdcp_lte_security_info_t *p_security_algorithms;
%(DEFAULT_BODY)s
  p_security_algorithms = private_data_pdcp_security_algorithms(actx);
  p_security_algorithms->ciphering = (enum lte_security_ciphering_algorithm_e)value;

#.FN_BODY SecurityAlgorithmConfig/integrityProtAlgorithm VAL_PTR=&value
  uint32_t value;
  pdcp_lte_security_info_t *p_security_algorithms;
%(DEFAULT_BODY)s
  p_security_algorithms = private_data_pdcp_security_algorithms(actx);
  p_security_algorithms->integrity = (enum lte_security_integrity_algorithm_e)value;

#.FN_BODY SchedulingRequestConfig/setup/sr-ConfigIndex VAL_PTR=&value
  uint32_t value;
  uint16_t periodicity, subframe_offset;
  proto_item *ti;
  proto_tree *subtree;
  int index_offset = offset;
%(DEFAULT_BODY)s
  /* Break config index into its parts */
  sr_lookup_configindex(value, &periodicity, &subframe_offset);
  /* Show parts as generated fields */
  subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_sr_ConfigIndex);
  ti = proto_tree_add_uint(subtree, hf_lte_rrc_sr_config_periodicity, tvb, index_offset>>3, 1, periodicity);
  proto_item_set_generated(ti);
  ti = proto_tree_add_uint(subtree, hf_lte_rrc_sr_config_subframe_offset, tvb, index_offset>>3, 1, subframe_offset);
  proto_item_set_generated(ti);

#.FN_BODY SchedulingRequestConfigSCell-r13/setup/sr-ConfigIndex-r13 VAL_PTR=&value
  uint32_t value;
  uint16_t periodicity, subframe_offset;
  proto_item *ti;
  proto_tree *subtree;
  int index_offset = offset;
%(DEFAULT_BODY)s
  /* Break config index into its parts */
  sr_lookup_configindex(value, &periodicity, &subframe_offset);
  /* Show parts as generated fields */
  subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_sr_ConfigIndex);
  ti = proto_tree_add_uint(subtree, hf_lte_rrc_sr_config_periodicity, tvb, index_offset>>3, 1, periodicity);
  proto_item_set_generated(ti);
  ti = proto_tree_add_uint(subtree, hf_lte_rrc_sr_config_subframe_offset, tvb, index_offset>>3, 1, subframe_offset);
  proto_item_set_generated(ti);

#.FN_BODY FreqBandIndicator VAL_PTR=&value
  uint32_t value;
%(DEFAULT_BODY)s
  set_freq_band_indicator(value, actx);

#.FN_FTR BandParameters-r10/bandEUTRA-r10
  remove_last_freq_band_indicator(actx);

#.FN_BODY InterFreqBandInfo
  meas_capabilities_item_band_mappings_t *mappings;
  proto_item *it;
%(DEFAULT_BODY)s
  mappings = private_data_meas_capabilities_item_band_mappings(actx);
  if (mappings->number_of_interfreq_serving_read < mappings->number_of_bands_set) {
    uint16_t serving_band = mappings->band_by_item[mappings->number_of_interfreq_serving_read];
    uint16_t target_band = mappings->band_by_item[mappings->number_of_interfreq_target_read++];
    if (mappings->number_of_interfreq_target_read == mappings->number_of_bands_set) {
      mappings->number_of_interfreq_target_read = 0;
      mappings->number_of_interfreq_serving_read++;
    }

    /* Add a generated item showing serving & target band for this entry */
    it = proto_tree_add_uint(tree, hf_lte_rrc_bandEUTRA, tvb, 0, 0, serving_band);
    proto_item_append_text(it, " -> band %%u", target_band);
    proto_item_set_generated(it);
  }

#.FN_BODY UE-EUTRA-Capability/measParameters
  meas_capabilities_item_band_mappings_t *mappings;
%(DEFAULT_BODY)s
  /* Clear band mapping once measParameters IE has been decoded */
  mappings = private_data_meas_capabilities_item_band_mappings(actx);
  mappings->number_of_bands_set = 0;

#.FN_BODY ReleaseCause VAL_PTR=&value
  uint32_t value;
%(DEFAULT_BODY)s
  col_append_fstr(actx->pinfo->cinfo, COL_INFO, " [cause=%%s]",
                  val_to_str_const(value, lte_rrc_ReleaseCause_vals, "Unknown"));

#.TYPE_ATTR
LWA-Parameters-r13/wlan-MAC-Address-r13 TYPE=FT_ETHER

#.TYPE_ATTR
VisitedCellInfo-r12/timeSpent-r12 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.FN_BODY WLAN-OffloadConfig-r12/thresholdChannelUtilization-r12/thresholdChannelUtilizationLow-r12
%(DEFAULT_BODY)s
  proto_item_append_text(actx->created_item, " (BSS load)");

#.FN_BODY WLAN-OffloadConfig-r12/thresholdChannelUtilization-r12/thresholdChannelUtilizationHigh-r12
%(DEFAULT_BODY)s
  proto_item_append_text(actx->created_item, " (BSS load)");

#.TYPE_ATTR
WLAN-OffloadConfig-r12/thresholdWLAN-RSSI-r12/thresholdWLAN-RSSI-Low-r12 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_thresholdWLAN_RSSI_fmt)

#.TYPE_ATTR
WLAN-OffloadConfig-r12/thresholdWLAN-RSSI-r12/thresholdWLAN-RSSI-High-r12 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_thresholdWLAN_RSSI_fmt)

#.FN_BODY MeasParameters-v1520/measGapPatterns-r15 VAL_PTR = &meas_gap_pattern_tvb
  tvbuff_t *meas_gap_pattern_tvb = NULL;
  proto_tree *subtree;

%(DEFAULT_BODY)s

#.FN_BODY MeasParameters-v1520/measGapPatterns-r15
  if (meas_gap_pattern_tvb) {
    static int * const lte_rrc_meas_gap_pattern_flags[] = {
      &hf_lte_rrc_measGapPatterns_r15_bit1,
      &hf_lte_rrc_measGapPatterns_r15_bit2,
      &hf_lte_rrc_measGapPatterns_r15_bit3,
      &hf_lte_rrc_measGapPatterns_r15_bit4,
      &hf_lte_rrc_measGapPatterns_r15_bit5,
      &hf_lte_rrc_measGapPatterns_r15_bit6,
      &hf_lte_rrc_measGapPatterns_r15_bit7,
      &hf_lte_rrc_measGapPatterns_r15_bit8,
      NULL
    };
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_measGapPatterns_r15);
    proto_tree_add_bitmask_list(subtree, meas_gap_pattern_tvb, 0, 1, lte_rrc_meas_gap_pattern_flags, ENC_NA);
  }

#.TYPE_ATTR
MBMS-Parameters-v1470/mbms-MaxBW-r14/explicitValue DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_mbms_MaxBW_r14_fmt)

#.FN_BODY WLAN-backhaulRate-r12
%(DEFAULT_BODY)s
  proto_item_append_text(actx->created_item, "Kbps");

#.TYPE_ATTR
SL-CBR-PSSCH-TxConfig-r14/cr-Limit-r14 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_cr_Limit_r14_fmt)

#.TYPE_ATTR
SL-CBR-r14 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_SL_CBR_r14_fmt)

#.TYPE_ATTR
SL-CommResourcePoolV2X-r14/threshS-RSSI-CBR-r14 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_threshS_RSSI_CBR_r14_fmt)

#.TYPE_ATTR
SL-DiscResourcePool-r12/eag_1/txParamsAddNeighFreq-r13/setup/referenceSignalPower DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
SL-DiscSysInfoReport-r13/cellSelectionInfo-r13/q-RxLevMinOffset-r13 STRINGS=VALS(lte_rrc_q_RxLevMinOffset_vals)

#.TYPE_ATTR
SL-DiscSysInfoReport-r13/referenceSignalPower-r13 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
SL-V2X-InterFreqUE-Config-r14/offsetDFN-r14 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_offsetDFN_r14_fmt)

#.TYPE_ATTR
P0-SL-r12 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.FN_BODY RRCConnectionReconfiguration-v1510-IEs/nr-Config-r15/setup/nr-SecondaryCellGroupConfig-r15 VAL_PTR = &rrc_reconfiguration_tvb
  tvbuff_t *rrc_reconfiguration_tvb = NULL;

%(DEFAULT_BODY)s

  if (rrc_reconfiguration_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_nr_SecondaryCellGroupConfig_r15);
    dissect_nr_rrc_RRCReconfiguration_PDU(rrc_reconfiguration_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY RRCConnectionReconfiguration-v1510-IEs/nr-RadioBearerConfig1-r15 VAL_PTR = &radio_bearer_config_tvb
  tvbuff_t *radio_bearer_config_tvb = NULL;

%(DEFAULT_BODY)s

  if (radio_bearer_config_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_nr_RadioBearerConfig_r15);
    dissect_nr_rrc_RadioBearerConfig_PDU(radio_bearer_config_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY RRCConnectionReconfiguration-v1510-IEs/nr-RadioBearerConfig2-r15 VAL_PTR = &radio_bearer_config_tvb
  tvbuff_t *radio_bearer_config_tvb = NULL;

%(DEFAULT_BODY)s

  if (radio_bearer_config_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_nr_RadioBearerConfigS_r15);
    dissect_nr_rrc_RadioBearerConfig_PDU(radio_bearer_config_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY RRCConnectionReconfiguration-v1610-IEs/sl-ConfigDedicatedForNR-r16 VAL_PTR = &rrc_reconfiguration_tvb
  tvbuff_t *rrc_reconfiguration_tvb = NULL;

%(DEFAULT_BODY)s

  if (rrc_reconfiguration_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_sl_ConfigDedicatedForNR_r16);
    dissect_nr_rrc_RRCReconfiguration_PDU(rrc_reconfiguration_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY RRCConnectionReconfigurationComplete-v1510-IEs/scg-ConfigResponseNR-r15 VAL_PTR = &rrc_reconfiguration_complete_tvb
  tvbuff_t *rrc_reconfiguration_complete_tvb = NULL;

%(DEFAULT_BODY)s

  if (rrc_reconfiguration_complete_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_scg_ConfigResponseNR_r15);
    dissect_nr_rrc_RRCReconfigurationComplete_PDU(rrc_reconfiguration_complete_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY RRCConnectionResume-v1510-IEs/nr-RadioBearerConfig1-r15 VAL_PTR = &radio_bearer_config_tvb
  tvbuff_t *radio_bearer_config_tvb = NULL;

%(DEFAULT_BODY)s

  if (radio_bearer_config_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_nr_RadioBearerConfig_r15);
    dissect_nr_rrc_RadioBearerConfig_PDU(radio_bearer_config_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY RRCConnectionResume-v1510-IEs/nr-RadioBearerConfig2-r15 VAL_PTR = &radio_bearer_config_tvb
  tvbuff_t *radio_bearer_config_tvb = NULL;

%(DEFAULT_BODY)s

  if (radio_bearer_config_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_nr_RadioBearerConfigS_r15);
    dissect_nr_rrc_RadioBearerConfig_PDU(radio_bearer_config_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY RRCConnectionResume-v1610-IEs/nr-SecondaryCellGroupConfig-r16 VAL_PTR = &rrc_reconfiguration_tvb
  tvbuff_t *rrc_reconfiguration_tvb = NULL;

%(DEFAULT_BODY)s

  if (rrc_reconfiguration_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_nr_SecondaryCellGroupConfig);
    dissect_nr_rrc_RRCReconfiguration_PDU(rrc_reconfiguration_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY RRCConnectionResumeComplete-v1610-IEs/scg-ConfigResponseNR-r16 VAL_PTR = &rrc_reconfiguration_complete_tvb
  tvbuff_t *rrc_reconfiguration_complete_tvb = NULL;

%(DEFAULT_BODY)s

  if (rrc_reconfiguration_complete_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_scg_ConfigResponseNR_r16);
    dissect_nr_rrc_RRCReconfigurationComplete_PDU(rrc_reconfiguration_complete_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY FailureReportSCG-NR-r15/measResultSCG-r15 VAL_PTR = &meas_results_tvb
  tvbuff_t *meas_results_tvb = NULL;

%(DEFAULT_BODY)s

  if (meas_results_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_measResultSCG_r15);
    dissect_nr_rrc_MeasResultSCG_Failure_PDU(meas_results_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY FailureReportMCG-r16/measResultSCG-r16 VAL_PTR = &meas_results_tvb
  tvbuff_t *meas_results_tvb = NULL;

%(DEFAULT_BODY)s

  if (meas_results_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_measResultSCG_r16);
    dissect_nr_rrc_MeasResultSCG_Failure_PDU(meas_results_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY ULInformationTransferMRDC-r15-IEs/ul-DCCH-MessageNR-r15 VAL_PTR = &nr_ul_dcch_tvb
  tvbuff_t *nr_ul_dcch_tvb = NULL;

%(DEFAULT_BODY)s

  if (nr_ul_dcch_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_ul_DCCH_MessageNR_r15);
    dissect_nr_rrc_UL_DCCH_Message_PDU(nr_ul_dcch_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY ULInformationTransferIRAT-r16-IEs/ul-DCCH-MessageNR-r16 VAL_PTR = &nr_ul_dcch_tvb
  tvbuff_t *nr_ul_dcch_tvb = NULL;

%(DEFAULT_BODY)s

  if (nr_ul_dcch_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_ul_DCCH_MessageNR_r16);
    dissect_nr_rrc_UL_DCCH_Message_PDU(nr_ul_dcch_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY SL-Parameters-v1610/sl-ParameterNR-r16 VAL_PTR = &sl_params_nr_tvb
  tvbuff_t *sl_params_nr_tvb = NULL;

%(DEFAULT_BODY)s

  if (sl_params_nr_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_sl_ParameterNR_r16);
    dissect_nr_rrc_SidelinkParametersNR_r16_PDU(sl_params_nr_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY V2X-BandParametersEUTRA-NR-r16/nr/v2x-BandParametersNR-r16 VAL_PTR = &v2x_band_params_nr_tvb
  tvbuff_t *v2x_band_params_nr_tvb = NULL;

%(DEFAULT_BODY)s

  if (v2x_band_params_nr_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_v2x_BandParametersNR_r16);
    dissect_nr_rrc_BandParametersSidelink_r16_PDU(v2x_band_params_nr_tvb, actx->pinfo, subtree, NULL);
  }

#
# EUTRA-InterNodeDefinitions
#

#.FN_BODY HandoverPreparationInformation-v1540-IEs/sourceRB-ConfigIntra5GC-r15 VAL_PTR = &radio_bearer_config_tvb
  tvbuff_t *radio_bearer_config_tvb = NULL;

%(DEFAULT_BODY)s

  if (radio_bearer_config_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_sourceRB_ConfigIntra5GC_r15);
    dissect_nr_rrc_RadioBearerConfig_PDU(radio_bearer_config_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY AS-ConfigNR-r15/sourceRB-ConfigNR-r15 VAL_PTR = &radio_bearer_config_tvb
  tvbuff_t *radio_bearer_config_tvb = NULL;

%(DEFAULT_BODY)s

  if (radio_bearer_config_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_sourceRB_ConfigNR_r15);
    dissect_nr_rrc_RadioBearerConfig_PDU(radio_bearer_config_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY AS-ConfigNR-r15/sourceRB-ConfigSN-NR-r15 VAL_PTR = &radio_bearer_config_tvb
  tvbuff_t *radio_bearer_config_tvb = NULL;

%(DEFAULT_BODY)s

  if (radio_bearer_config_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_sourceRB_ConfigSN_NR_r15);
    dissect_nr_rrc_RadioBearerConfig_PDU(radio_bearer_config_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY AS-ConfigNR-r15/sourceOtherConfigSN-NR-r15 VAL_PTR = &rrc_reconfiguration_tvb
  tvbuff_t *rrc_reconfiguration_tvb = NULL;

%(DEFAULT_BODY)s

  if (rrc_reconfiguration_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_sourceOtherConfigSN_NR_r15);
    dissect_nr_rrc_RRCReconfiguration_PDU(rrc_reconfiguration_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY AS-Context-v1130/eag_2/sourceContextEN-DC-r15 VAL_PTR = &scg_config_info_tvb
  tvbuff_t *scg_config_info_tvb = NULL;

%(DEFAULT_BODY)s

  if (scg_config_info_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_sourceContextEN_DC_r15);
    dissect_nr_rrc_ConfigRestrictInfoSCG_PDU(scg_config_info_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY AS-Context-v1130/eag_3/selectedbandCombinationInfoEN-DC-v1540 VAL_PTR = &band_comb_info_sn_tvb
  tvbuff_t *band_comb_info_sn_tvb = NULL;

%(DEFAULT_BODY)s

  if (band_comb_info_sn_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_selectedbandCombinationInfoEN_DC_v1540);
    dissect_nr_rrc_BandCombinationInfoSN_PDU(band_comb_info_sn_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY AS-Context-v1610/sidelinkUEInformationNR-r16 VAL_PTR = &sidelink_ue_info_nr_tvb
  tvbuff_t *sidelink_ue_info_nr_tvb = NULL;

%(DEFAULT_BODY)s

  if (sidelink_ue_info_nr_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_sidelinkUEInformationNR_r16);
    dissect_nr_rrc_SidelinkUEInformationNR_r16_PDU(sidelink_ue_info_nr_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY AS-Context-v1610/ueAssistanceInformationNR-r16 VAL_PTR = &ue_assist_info_nr_tvb
  tvbuff_t *ue_assist_info_nr_tvb = NULL;

%(DEFAULT_BODY)s

  if (ue_assist_info_nr_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_ueAssistanceInformationNR_r16);
    dissect_nr_rrc_UEAssistanceInformation_PDU(ue_assist_info_nr_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY AS-Context-v1620/ueAssistanceInformationNR-SCG-r16 VAL_PTR = &ue_assist_info_nr_tvb
  tvbuff_t *ue_assist_info_nr_tvb = NULL;

%(DEFAULT_BODY)s

  if (ue_assist_info_nr_tvb) {
    proto_tree *subtree;
    subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_ueAssistanceInformationNR_SCG_r16);
    dissect_nr_rrc_UEAssistanceInformation_PDU(ue_assist_info_nr_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_UNKNOWN);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib1-1-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_1_1);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib1-2-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_1_2);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib1-3-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_1_3);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib1-4-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_1_4);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib1-5-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_1_5);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib1-6-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_1_6);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib1-7-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_1_7);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-1-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_1);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-2-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_2);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-3-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_3);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-4-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_4);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-5-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_5);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-6-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_6);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-7-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_7);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-8-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_8);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-9-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_9);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-10-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_10);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-11-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_11);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-12-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_12);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-13-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_13);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-14-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_14);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-15-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_15);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-16-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_16);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-17-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_17);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-18-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_18);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-19-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_19);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib3-1-r15
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_3_1);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib1-8-v1610
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_1_8);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-20-v1610
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_20);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-21-v1610
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_21);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-22-v1610
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_22);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-23-v1610
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_23);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-24-v1610
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_24);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-25-v1610
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_25);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib4-1-v1610
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_4_1);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib5-1-v1610
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_5_1);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib1-9-v1700
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_1_9);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib1-10-v1700
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_1_10);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-17a-v1770
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_17a);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-18a-v1770
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_18a);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-20a-v1770
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_20a);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib1-11-v1800
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_1_11);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib1-12-v1800
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_1_12);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-26-v1800
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_26);

#.FN_HDR PosSystemInformation-r15-IEs/posSIB-TypeAndInfo-r15/_item/posSib2-27-v1800
  private_data_set_pos_sib_type(actx, LPP_POS_SIB_TYPE_2_27);

#.FN_BODY SystemInformationBlockPos-r15/assistanceDataSIB-Element-r15 VAL_PTR = &assist_data_sib_elem_tvb
  tvbuff_t *assist_data_sib_elem_tvb = NULL;

%(DEFAULT_BODY)s

  if (assist_data_sib_elem_tvb) {
    proto_tree *subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_assistanceDataSIB_Element_r15);

    dissect_lpp_AssistanceDataSIBelement_r15_PDU(assist_data_sib_elem_tvb, actx->pinfo,
                                                 subtree, private_data_get_pos_sib_type(actx));
  }

#.FN_BODY UEInformationResponse-v1710-IEs/coarseLocationInfo-r17 VAL_PTR = &ellipsoid_point_tvb
  tvbuff_t *ellipsoid_point_tvb = NULL;
%(DEFAULT_BODY)s
  if (ellipsoid_point_tvb) {
    dissect_lpp_Ellipsoid_Point_PDU(ellipsoid_point_tvb, actx->pinfo, tree, NULL);
  }

#.FN_BODY MeasResults/eag_10/coarseLocationInfo-r17 VAL_PTR = &ellipsoid_point_tvb
  tvbuff_t *ellipsoid_point_tvb = NULL;
%(DEFAULT_BODY)s
  if (ellipsoid_point_tvb) {
    dissect_lpp_Ellipsoid_Point_PDU(ellipsoid_point_tvb, actx->pinfo, tree, NULL);
  }

#.TYPE_ATTR
TimeOffsetUTC-r17 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.FN_BODY OverheatingAssistance-v1610/overheatingAssistanceForSCG-r16 VAL_PTR = &overheating_assist_for_scg_tvb
  tvbuff_t *overheating_assist_for_scg_tvb = NULL;
%(DEFAULT_BODY)s
  if (overheating_assist_for_scg_tvb) {
    proto_tree *subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_overheatingAssistanceForSCG_r16);
    dissect_nr_rrc_OverheatingAssistance_PDU(overheating_assist_for_scg_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY OverheatingAssistance-v1710/overheatingAssistanceForSCG-FR2-2-r17 VAL_PTR = &overheating_assist_for_scg_tvb
  tvbuff_t *overheating_assist_for_scg_tvb = NULL;
%(DEFAULT_BODY)s
  if (overheating_assist_for_scg_tvb) {
    proto_tree *subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_overheatingAssistanceForSCG_FR2_2_r17);
    dissect_nr_rrc_OverheatingAssistance_r17_PDU(overheating_assist_for_scg_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY CondReconfigurationAddMod-r16/eag_1/triggerConditionSN-r17 VAL_PTR = &cond_reconfig_exec_cond_scg_tvb
  tvbuff_t *cond_reconfig_exec_cond_scg_tvb = NULL;
%(DEFAULT_BODY)s
  if (cond_reconfig_exec_cond_scg_tvb) {
    proto_tree *subtree = proto_item_add_subtree(actx->created_item, ett_lte_rrc_triggerConditionSN_r17);
    dissect_nr_rrc_CondReconfigExecCondSCG_r17_PDU(cond_reconfig_exec_cond_scg_tvb, actx->pinfo, subtree, NULL);
  }

#.FN_BODY ReferenceLocation-r18 VAL_PTR = &ellipsoid_point_tvb
  tvbuff_t *ellipsoid_point_tvb = NULL;
%(DEFAULT_BODY)s
  if (ellipsoid_point_tvb) {
    dissect_lpp_Ellipsoid_Point_PDU(ellipsoid_point_tvb, actx->pinfo, tree, NULL);
  }

#.FN_BODY RACH-ReportNR-r18 VAL_PTR = &ra_reportlist_tvb
  tvbuff_t *ra_reportlist_tvb = NULL;
%(DEFAULT_BODY)s
  if (ra_reportlist_tvb) {
    dissect_nr_rrc_RA_ReportList_r16_PDU(ra_reportlist_tvb, actx->pinfo, tree, NULL);
  }

#
# EUTRA-Sidelink-Preconf
#

#.TYPE_ATTR
SL-V2X-PreconfigFreqInfo-r14/offsetDFN-r14 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_offsetDFN_r14_fmt)

#.TYPE_ATTR
SL-V2X-PreconfigCommPool-r14/threshS-RSSI-CBR-r14 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_threshS_RSSI_CBR_r14_fmt)

#
# PC5-RRC-Definitions
#

#.FN_HDR MasterInformationBlock-SL
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "MasterInformationBlock-SL");

#.FN_HDR MasterInformationBlock-SL-V2X-r14
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "MasterInformationBlock-SL-V2X-r14");

#
# NBIOT-RRC-Definitions
#

#.FN_HDR UL-CCCH-Message-NB
  actx->pinfo->link_dir = P2P_DIR_UL;

#.FN_HDR UL-DCCH-Message-NB
  actx->pinfo->link_dir = P2P_DIR_UL;

#.FN_HDR DL-CCCH-Message-NB
  actx->pinfo->link_dir = P2P_DIR_DL;

#.FN_HDR DL-DCCH-Message-NB
  actx->pinfo->link_dir = P2P_DIR_DL;

#.FN_HDR MasterInformationBlock-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "MasterInformationBlock-NB");

#.FN_HDR SystemInformation-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "SystemInformation-NB [");

#.FN_BODY SystemInformation-NB
%(DEFAULT_BODY)s
  col_append_str(actx->pinfo->cinfo, COL_INFO, " ]");

#.FN_HDR SystemInformationBlockType1-NB
  col_append_str(actx->pinfo->cinfo, COL_INFO, "SystemInformationBlockType1-NB");

#.FN_HDR SystemInformationBlockType2-NB-r13
  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB2");

#.FN_HDR SystemInformationBlockType3-NB-r13
  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB3");

#.FN_HDR SystemInformationBlockType4-NB-r13
  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB4");

#.FN_HDR SystemInformationBlockType5-NB-r13
  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB5");

#.FN_HDR SystemInformationBlockType14-NB-r13
  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB14");

#.FN_HDR Paging-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "Paging-NB");

#.FN_HDR RRCConnectionReestablishment-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionReestablishment-NB");

#.FN_HDR RRCConnectionReject-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionReject-NB");

#.FN_HDR RRCConnectionSetup-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionSetup-NB");

#.FN_HDR RRCEarlyDataComplete-NB-r15
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCEarlyDataComplete-NB-r15");

#.FN_HDR DLInformationTransfer-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "DLInformationTransfer-NB");

#.FN_HDR RRCConnectionReconfiguration-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionReconfiguration-NB");

#.FN_HDR RRCConnectionRelease-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionRelease-NB");

#.FN_HDR UECapabilityEnquiry-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "UECapabilityEnquiry-NB");

#.FN_HDR RRCConnectionResume-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionResume-NB");

#.FN_HDR UEInformationRequest-NB-r16
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "UEInformationRequest-NB-r16");

#.FN_HDR RRCConnectionReestablishmentRequest-NB
  /* Inform RLC & PDCP - need UE identifier */
  mac_lte_info *p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0);
  if (p_mac_lte_info) {
    /* Tell RLC this UE is trying to (re)connect */
    rlc_lte_reset_ue_bearers(actx->pinfo, p_mac_lte_info->ueid);
    /* And PDCP. Only SRBs and UM (not AM) DRBs */
    pdcp_lte_reset_ue_bearers(actx->pinfo, p_mac_lte_info->ueid, true);
  }
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionReestablishmentRequest-NB");

#.FN_HDR RRCConnectionRequest-NB
  /* Inform RLC & PDCP - need UE identifier */
  mac_lte_info *p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0);
  if (p_mac_lte_info) {
    /* Tell RLC this UE is trying to (re)connect */
    rlc_lte_reset_ue_bearers(actx->pinfo, p_mac_lte_info->ueid);
    /* And PDCP */
    pdcp_lte_reset_ue_bearers(actx->pinfo, p_mac_lte_info->ueid, true);
  }
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionRequest-NB");

#.FN_HDR RRCConnectionResumeRequest-NB
  /* Inform RLC & PDCP - need UE identifier */
  mac_lte_info *p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0);
  if (p_mac_lte_info) {
    /* Tell RLC this UE is trying to (re)connect */
    rlc_lte_reset_ue_bearers(actx->pinfo, p_mac_lte_info->ueid);
    /* And PDCP */
    /* TODO: more complicated, skip PDCP reset for now */
    // pdcp_lte_reset_ue_bearers(actx->pinfo, p_mac_lte_info->ueid, true);
  }
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionResumeRequest-NB");

#.FN_HDR RRCEarlyDataRequest-NB-r15
  /* Inform RLC & PDCP - need UE identifier */
  mac_lte_info *p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0);
  if (p_mac_lte_info) {
    /* Tell RLC this UE is trying to (re)connect */
    rlc_lte_reset_ue_bearers(actx->pinfo, p_mac_lte_info->ueid);
    /* And PDCP */
    pdcp_lte_reset_ue_bearers(actx->pinfo, p_mac_lte_info->ueid, false);
  }
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCEarlyDataRequest-NB-r15");

#.FN_HDR SCPTMConfiguration-NB-r14
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "SCPTMConfiguration-NB-r14");

#.FN_HDR RRCConnectionReconfigurationComplete-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionReconfigurationComplete-NB");

#.FN_HDR RRCConnectionReestablishmentComplete-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionReestablishmentComplete-NB");

#.FN_HDR RRCConnectionSetupComplete-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionSetupComplete-NB");

#.FN_HDR UECapabilityInformation-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "UECapabilityInformation-NB");

#.FN_HDR ULInformationTransfer-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "ULInformationTransfer-NB");

#.FN_HDR RRCConnectionResumeComplete-NB
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "RRCConnectionResumeComplete-NB");

#.FN_HDR UEInformationResponse-NB-r16
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "UEInformationResponse-NB-r16");

#.FN_HDR PURConfigurationRequest-NB-r16
  col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, "PURConfigurationRequest-NB-r16");

#.FN_HDR SystemInformationBlockType15-NB-r14
  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB15");

#.FN_HDR SystemInformationBlockType20-NB-r14
  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB20");

#.FN_HDR SystemInformationBlockType22-NB-r14
  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB22");

#.FN_HDR SystemInformationBlockType23-NB-r15
  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB23");

#.FN_HDR SystemInformationBlockType27-NB-r16
  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB27");

#.FN_HDR SystemInformationBlockType31-NB-r17
  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB31");

#.FN_HDR SystemInformationBlockType32-NB-r17
  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB32");

#.FN_HDR SystemInformationBlockType33-NB-r18
  col_append_str(actx->pinfo->cinfo, COL_INFO, " SIB33");

#.TYPE_ATTR
MasterInformationBlock-NB/schedulingInfoSIB1-r13 TYPE=FT_UINT32 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_schedulingInfoSIB1_NB_r13_vals_ext

#.TYPE_ATTR
MasterInformationBlock-TDD-NB-r15/schedulingInfoSIB1-r15 TYPE=FT_UINT32 DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_schedulingInfoSIB1_NB_r13_vals_ext

#.TYPE_ATTR
RRCConnectionReject-NB-r13-IEs/extendedWaitTime-r13 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.TYPE_ATTR
RRCConnectionRelease-NB-r13-IEs/extendedWaitTime-r13 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.TYPE_ATTR
RRCConnectionRelease-NB-v1430-IEs/extendedWaitTime-CPdata-r14 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.TYPE_ATTR
RRCEarlyDataComplete-NB-r15-IEs/extendedWaitTime-r15 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_seconds)

#.TYPE_ATTR
CellSelectionInfo-NB-v1350/delta-RxLevMin-v1350 STRINGS=VALS(lte_rrc_delta_RxLevMin_vals)

#.TYPE_RENAME
SystemInformationBlockType2-NB-r13/multiBandInfoList-r13 AdditionalSpectrumEmission_r13

#.TYPE_ATTR
IntraFreqCellReselectionInfo-NB-v1350/delta-RxLevMin-v1350 STRINGS=VALS(lte_rrc_delta_RxLevMin_vals)

#.TYPE_ATTR
SystemInformationBlockType5/eag_1/scptm-FreqOffset-r14 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_scptm_FreqOffset_r14_fmt)

#.TYPE_ATTR
InterFreqCarrierFreqInfo-NB-r13/eag_1/delta-RxLevMin-v1350 STRINGS=VALS(lte_rrc_delta_RxLevMin_vals)

#.TYPE_ATTR
AB-Config-NB-r13/ab-Category-r13 STRINGS=VALS(lte_rrc_eab_category_vals)

#.TYPE_ATTR
NPDSCH-ConfigCommon-NB-r13/nrs-Power-r13 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
RACH-ConfigCommon-NB-r13/connEstFailOffset-r13 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
SR-WithoutHARQ-ACK-Config-NB-r15/setup/sr-ProhibitTimer-r15 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_sr_periods)

#.TYPE_ATTR
SR-NPRACH-Resource-NB-r15/p0-SR-r15 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.FN_BODY DRB-ToAddMod-NB-r13
  struct mac_lte_info *p_mac_lte_info;
  struct rlc_lte_info *p_rlc_lte_info;
  /* Get the struct and clear it out */
  drb_mapping_t *drb_mapping = private_data_get_drb_mapping(actx);
  memset(drb_mapping, 0, sizeof(*drb_mapping));
%(DEFAULT_BODY)s
  /* Need UE identifier */
  p_mac_lte_info = (mac_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_mac_lte, 0);
  if (p_mac_lte_info) {
    drb_mapping->ueid = p_mac_lte_info->ueid;
    /* Tell MAC about this mapping */
    set_mac_lte_channel_mapping(drb_mapping);
  }

  /* Also tell RLC how many PDCP sequence number bits and whether it should use extended LI */
  p_rlc_lte_info = (rlc_lte_info *)p_get_proto_data(wmem_file_scope(), actx->pinfo, proto_rlc_lte, 0);
  if (p_rlc_lte_info) {
    if (drb_mapping->pdcp_sn_size_present) {
      set_rlc_lte_drb_pdcp_seqnum_length(actx->pinfo,
                                         p_rlc_lte_info->ueid,
                                         drb_mapping->drbid,
                                         drb_mapping->pdcp_sn_size);
    }
    if (drb_mapping->rlcMode_present) {
      set_rlc_lte_drb_li_field(actx->pinfo,
                               p_rlc_lte_info->ueid,
                               drb_mapping->drbid,
                               drb_mapping->rlc_ul_ext_li_field,
                               drb_mapping->rlc_dl_ext_li_field);
    }
  }

  /* Clear out the struct again */
  memset(&drb_mapping, 0, sizeof(drb_mapping));

#.FN_BODY RLC-Config-NB-r13/am
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->rlcMode = RLC_AM_MODE;
    mapping->rlcMode_present = true;
    mapping->pdcp_sn_size = 7;
    mapping->pdcp_sn_size_present = true;
  }

#.FN_BODY RLC-Config-NB-r13/um-Bi-Directional-r15
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->rlcMode = RLC_UM_MODE;
    mapping->rlcMode_present = true;
    mapping->um_sn_length = 5;
    mapping->um_sn_length_present = true;
    mapping->pdcp_sn_size = 7;
    mapping->pdcp_sn_size_present = true;
  }

#.FN_BODY RLC-Config-NB-r13/um-Uni-Directional-UL-r15
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->rlcMode = RLC_UM_MODE;
    mapping->rlcMode_present = true;
    mapping->um_sn_length = 5;
    mapping->um_sn_length_present = true;
    mapping->pdcp_sn_size = 7;
    mapping->pdcp_sn_size_present = true;
  }

#.FN_BODY RLC-Config-NB-r13/um-Uni-Directional-DL-r15
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->rlcMode = RLC_UM_MODE;
    mapping->rlcMode_present = true;
    mapping->um_sn_length = 5;
    mapping->um_sn_length_present = true;
    mapping->pdcp_sn_size = 7;
    mapping->pdcp_sn_size_present = true;
  }

#.FN_BODY DRB-ToAddMod-NB-r13/logicalChannelIdentity-r13 VAL_PTR=&value
  uint32_t value;
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->lcid = (uint8_t)value;
    mapping->lcid_present = true;
  }

#.FN_BODY LogicalChannelConfig-NB-r13/priority-r13 VAL_PTR=&value
  uint32_t value;
  drb_mapping_t *mapping = private_data_get_drb_mapping(actx);
%(DEFAULT_BODY)s
  if (mapping != NULL) {
    mapping->ul_priority = value;
    mapping->ul_priority_present = true;
  }

#.TYPE_ATTR
UplinkPowerControlCommon-NB-r13/p0-NominalNPUSCH-r13 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_dbm)

#.TYPE_ATTR
UplinkPowerControlCommon-NB-r13/deltaPreambleMsg3-r13 STRINGS=VALS(lte_rrc_deltaPreambleMsg3_vals)

#.TYPE_ATTR
UplinkPowerControlDedicated-NB-r13/p0-UE-NPUSCH-r13 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)

#.TYPE_ATTR
ReselectionThreshold-NB-v1360  DISPLAY=BASE_DEC|BASE_EXT_STRING STRINGS=&lte_rrc_ReselectionThreshold_NB_vals_ext

#.TYPE_ATTR
NRSRP-Range-NB-r14 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_NRSRP_Range_NB_r14_fmt)

#.TYPE_ATTR
NRSRQ-Range-NB-r14 DISPLAY=BASE_CUSTOM STRINGS=CF_FUNC(lte_rrc_NRSRQ_Range_NB_r14_fmt)

#.TYPE_ATTR
PUR-Config-NB-r16/pur-PhysicalConfig-r16/p0-UE-NPUSCH-r16 DISPLAY=BASE_DEC|BASE_UNIT_STRING STRINGS=UNS(&units_decibels)