plasma-prp 0.1.0

Read, write, inspect, and manipulate Plasma engine PRP files used by Myst Online: Uru Live
Documentation
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
//! Plasma class index — all 903 creatable class types.
//!
//! Auto-generated from plCreatableIndex.h.
//! C++ ref: NucleusLib/inc/plCreatableIndex.h

#[allow(dead_code)]
pub struct ClassIndex;

#[allow(dead_code)]
impl ClassIndex {
    // --- Keyed objects (0x0000 - 0x01FF) ---
    pub const PL_SCENE_NODE: u16 = 0x0000;
    pub const PL_SCENE_OBJECT: u16 = 0x0001;
    pub const HS_KEYED_OBJECT: u16 = 0x0002;
    pub const PL_BITMAP: u16 = 0x0003;
    pub const PL_MIPMAP: u16 = 0x0004;
    pub const PL_CUBIC_ENVIRONMAP: u16 = 0x0005;
    pub const PL_LAYER: u16 = 0x0006;
    pub const HS_GMATERIAL: u16 = 0x0007;
    pub const PL_PARTICLE_SYSTEM: u16 = 0x0008;
    pub const PL_PARTICLE_EFFECT: u16 = 0x0009;
    pub const PL_PARTICLE_COLLISION_EFFECT_BEAT: u16 = 0x000A;
    pub const PL_PARTICLE_FADE_VOLUME_EFFECT: u16 = 0x000B;
    pub const PL_BOUND_INTERFACE: u16 = 0x000C;
    pub const PL_RENDER_TARGET: u16 = 0x000D;
    pub const PL_CUBIC_RENDER_TARGET: u16 = 0x000E;
    pub const PL_CUBIC_RENDER_TARGET_MODIFIER: u16 = 0x000F;
    pub const PL_OBJ_INTERFACE: u16 = 0x0010;
    pub const PL_AUDIO_INTERFACE: u16 = 0x0011;
    pub const PL_AUDIBLE: u16 = 0x0012;
    pub const PL_AUDIBLE_NULL: u16 = 0x0013;
    pub const PL_WIN_AUDIBLE: u16 = 0x0014;
    pub const PL_COORDINATE_INTERFACE: u16 = 0x0015;
    pub const PL_DRAW_INTERFACE: u16 = 0x0016;
    pub const PL_DRAWABLE: u16 = 0x0017;
    pub const PL_DRAWABLE_MESH: u16 = 0x0018;
    pub const PL_DRAWABLE_ICE: u16 = 0x0019;
    pub const PL_PHYSICAL: u16 = 0x001A;
    pub const PL_PHYSICAL_MESH: u16 = 0x001B;
    pub const PL_SIMULATION_INTERFACE: u16 = 0x001C;
    pub const PL_CAMERA_MODIFIER: u16 = 0x001D;
    pub const PL_MODIFIER: u16 = 0x001E;
    pub const PL_SINGLE_MODIFIER: u16 = 0x001F;
    pub const PL_SIMPLE_MODIFIER: u16 = 0x0020;
    pub const PF_CONSOLE: u16 = 0x0021;
    pub const UNUSED_PL_RANDOM_TMMODIFIER: u16 = 0x0022;
    pub const PL_INTERESTING_MODIFIER: u16 = 0x0023;
    pub const PL_DETECTOR_MODIFIER: u16 = 0x0024;
    pub const PL_SIMPLE_PHYSICAL_MESH: u16 = 0x0025;
    pub const PL_COMPOUND_PHYSICAL_MESH: u16 = 0x0026;
    pub const PL_MULTI_MODIFIER: u16 = 0x0027;
    pub const PL_SYNCHED_OBJECT: u16 = 0x0028;
    pub const PL_SOUND_BUFFER: u16 = 0x0029;
    pub const UNUSED_PL_ALIAS_MODIFIER: u16 = 0x002A;
    pub const PL_PICKING_DETECTOR: u16 = 0x002B;
    pub const PL_COLLISION_DETECTOR: u16 = 0x002C;
    pub const PL_LOGIC_MODIFIER: u16 = 0x002D;
    pub const PL_CONDITIONAL_OBJECT: u16 = 0x002E;
    pub const PL_ANDCONDITIONAL_OBJECT: u16 = 0x002F;
    pub const PL_ORCONDITIONAL_OBJECT: u16 = 0x0030;
    pub const PL_PICKED_CONDITIONAL_OBJECT: u16 = 0x0031;
    pub const PL_ACTIVATOR_CONDITIONAL_OBJECT: u16 = 0x0032;
    pub const PL_TIMER_CALLBACK_MANAGER: u16 = 0x0033;
    pub const PL_KEY_PRESS_CONDITIONAL_OBJECT: u16 = 0x0034;
    pub const PL_ANIMATION_EVENT_CONDITIONAL_OBJECT: u16 = 0x0035;
    pub const PL_CONTROL_EVENT_CONDITIONAL_OBJECT: u16 = 0x0036;
    pub const PL_OBJECT_IN_BOX_CONDITIONAL_OBJECT: u16 = 0x0037;
    pub const PL_LOCAL_PLAYER_IN_BOX_CONDITIONAL_OBJECT: u16 = 0x0038;
    pub const PL_OBJECT_INTERSECT_PLANE_CONDITIONAL_OBJECT: u16 = 0x0039;
    pub const PL_LOCAL_PLAYER_INTERSECT_PLANE_CONDITIONAL_OBJECT: u16 = 0x003A;
    pub const PL_PORTAL_DRAWABLE: u16 = 0x003B;
    pub const PL_PORTAL_PHYSICAL: u16 = 0x003C;
    pub const PL_SPAWN_MODIFIER: u16 = 0x003D;
    pub const PL_FACING_CONDITIONAL_OBJECT: u16 = 0x003E;
    pub const PL_PXPHYSICAL: u16 = 0x003F;
    pub const PL_VIEW_FACE_MODIFIER: u16 = 0x0040;
    pub const PL_LAYER_INTERFACE: u16 = 0x0041;
    pub const PL_LAYER_WRAPPER: u16 = 0x0042;
    pub const PL_LAYER_ANIMATION: u16 = 0x0043;
    pub const PL_LAYER_DEPTH: u16 = 0x0044;
    pub const PL_LAYER_MOVIE: u16 = 0x0045;
    pub const UNUSED_PL_LAYER_BINK: u16 = 0x0046;
    pub const PL_LAYER_AVI: u16 = 0x0047;
    pub const PL_SOUND: u16 = 0x0048;
    pub const PL_WIN32_SOUND: u16 = 0x0049;
    pub const PL_LAYER_OR: u16 = 0x004A;
    pub const PL_AUDIO_SYSTEM: u16 = 0x004B;
    pub const PL_DRAWABLE_SPANS: u16 = 0x004C;
    pub const UNUSED_PL_DRAWABLE_PATCH_SET: u16 = 0x004D;
    pub const PL_INPUT_MANAGER: u16 = 0x004E;
    pub const PL_LOGIC_MOD_BASE: u16 = 0x004F;
    pub const PL_FOG_ENVIRONMENT: u16 = 0x0050;
    pub const PL_NET_APP: u16 = 0x0051;
    pub const PL_NET_CLIENT_MGR: u16 = 0x0052;
    pub const PL2_WAY_WIN_AUDIBLE: u16 = 0x0053;
    pub const PL_LIGHT_INFO: u16 = 0x0054;
    pub const PL_DIRECTIONAL_LIGHT_INFO: u16 = 0x0055;
    pub const PL_OMNI_LIGHT_INFO: u16 = 0x0056;
    pub const PL_SPOT_LIGHT_INFO: u16 = 0x0057;
    pub const PL_LIGHT_SPACE: u16 = 0x0058;
    pub const PL_NET_CLIENT_APP: u16 = 0x0059;
    pub const PL_NET_SERVER_APP: u16 = 0x005A;
    pub const PL_CLIENT: u16 = 0x005B;
    pub const UNUSED_PL_COMPOUND_TMMODIFIER: u16 = 0x005C;
    pub const PL_CAMERA_BRAIN: u16 = 0x005D;
    pub const PL_CAMERA_BRAIN_DEFAULT: u16 = 0x005E;
    pub const PL_CAMERA_BRAIN_DRIVE: u16 = 0x005F;
    pub const PL_CAMERA_BRAIN_FIXED: u16 = 0x0060;
    pub const PL_CAMERA_BRAIN_FIXED_PAN: u16 = 0x0061;
    pub const PF_GUICLICK_MAP_CTRL: u16 = 0x0062;
    pub const PL_LISTENER: u16 = 0x0063;
    pub const PL_AG_ANIM: u16 = 0x006B;
    pub const PL_AG_MODIFIER: u16 = 0x006C;
    pub const PL_AG_MASTER_MOD: u16 = 0x006D;
    pub const PL_AVATAR_MOD: u16 = 0x0064;
    pub const PL_AVATAR_ANIM: u16 = 0x0065;
    pub const PL_AVATAR_ANIM_MGR: u16 = 0x0066;
    pub const PL_OCCLUDER: u16 = 0x0067;
    pub const PL_MOBILE_OCCLUDER: u16 = 0x0068;
    pub const PL_LAYER_SHADOW_BASE: u16 = 0x0069;
    pub const PL_LIMITED_DIR_LIGHT_INFO: u16 = 0x006A;
    pub const PL_AGANIM: u16 = 0x006B;
    pub const PL_AGMODIFIER: u16 = 0x006C;
    pub const PL_AGMASTER_MOD: u16 = 0x006D;
    pub const PL_CAMERA_BRAIN_AVATAR: u16 = 0x006E;
    pub const PL_CAMERA_REGION_DETECTOR: u16 = 0x006F;
    pub const PL_CAMERA_BRAIN_FP: u16 = 0x0070;
    pub const PL_LINE_FOLLOW_MOD: u16 = 0x0071;
    pub const PL_LIGHT_MODIFIER: u16 = 0x0072;
    pub const PL_OMNI_MODIFIER: u16 = 0x0073;
    pub const PL_SPOT_MODIFIER: u16 = 0x0074;
    pub const PL_LTD_DIR_MODIFIER: u16 = 0x0075;
    pub const PL_SEEK_POINT_MOD: u16 = 0x0076;
    pub const PL_ONE_SHOT_MOD: u16 = 0x0077;
    pub const PL_RANDOM_COMMAND_MOD: u16 = 0x0078;
    pub const PL_RANDOM_SOUND_MOD: u16 = 0x0079;
    pub const PL_POST_EFFECT_MOD: u16 = 0x007A;
    pub const PL_OBJECT_IN_VOLUME_DETECTOR: u16 = 0x007B;
    pub const PL_RESPONDER_MODIFIER: u16 = 0x007C;
    pub const PL_AXIS_ANIM_MODIFIER: u16 = 0x007D;
    pub const PL_LAYER_LIGHT_BASE: u16 = 0x007E;
    pub const PL_FOLLOW_MOD: u16 = 0x007F;
    pub const PL_TRANSITION_MGR: u16 = 0x0080;
    pub const UNUSED__PL_INVENTORY_MOD: u16 = 0x0081;
    pub const UNUSED__PL_INVENTORY_OBJ_MOD: u16 = 0x0082;
    pub const PL_LINK_EFFECTS_MGR: u16 = 0x0083;
    pub const PL_WIN32_STREAMING_SOUND: u16 = 0x0084;
    pub const UNUSED__PL_PYTHON_MOD: u16 = 0x0085;
    pub const PL_ACTIVATOR_ACTIVATOR_CONDITIONAL_OBJECT: u16 = 0x0086;
    pub const PL_SOFT_VOLUME: u16 = 0x0087;
    pub const PL_SOFT_VOLUME_SIMPLE: u16 = 0x0088;
    pub const PL_SOFT_VOLUME_COMPLEX: u16 = 0x0089;
    pub const PL_SOFT_VOLUME_UNION: u16 = 0x008A;
    pub const PL_SOFT_VOLUME_INTERSECT: u16 = 0x008B;
    pub const PL_SOFT_VOLUME_INVERT: u16 = 0x008C;
    pub const PL_WIN32_LINK_SOUND: u16 = 0x008D;
    pub const PL_LAYER_LINK_ANIMATION: u16 = 0x008E;
    pub const PL_ARMATURE_MOD: u16 = 0x008F;
    pub const PL_CAMERA_BRAIN_FREELOOK: u16 = 0x0090;
    pub const PL_HAVOK_CONSTRAINTS_MOD: u16 = 0x0091;
    pub const PL_HINGE_CONSTRAINT_MOD: u16 = 0x0092;
    pub const PL_WHEEL_CONSTRAINT_MOD: u16 = 0x0093;
    pub const PL_STRONG_SPRING_CONSTRAINT_MOD: u16 = 0x0094;
    pub const PL_ARMATURE_LODMOD: u16 = 0x0095;
    pub const PL_WIN32_STATIC_SOUND: u16 = 0x0096;
    pub const PF_GAME_GUIMGR: u16 = 0x0097;
    pub const PF_GUIDIALOG_MOD: u16 = 0x0098;
    pub const PL_CAMERA_BRAIN1: u16 = 0x0099;
    pub const PL_VIRTUAL_CAM1: u16 = 0x009A;
    pub const PL_CAMERA_MODIFIER1: u16 = 0x009B;
    pub const PL_CAMERA_BRAIN1_DRIVE: u16 = 0x009C;
    pub const PL_CAMERA_BRAIN1_POA: u16 = 0x009D;
    pub const PL_CAMERA_BRAIN1_AVATAR: u16 = 0x009E;
    pub const PL_CAMERA_BRAIN1_FIXED: u16 = 0x009F;
    pub const PL_CAMERA_BRAIN1_POAFIXED: u16 = 0x00A0;
    pub const PF_GUIBUTTON_MOD: u16 = 0x00A1;
    pub const PL_PYTHON_FILE_MOD: u16 = 0x00A2;
    pub const PF_GUICONTROL_MOD: u16 = 0x00A3;
    pub const PL_EXCLUDE_REGION_MODIFIER: u16 = 0x00A4;
    pub const PF_GUIDRAGGABLE_MOD: u16 = 0x00A5;
    pub const PL_VOLUME_SENSOR_CONDITIONAL_OBJECT: u16 = 0x00A6;
    pub const PL_VOL_ACTIVATOR_CONDITIONAL_OBJECT: u16 = 0x00A7;
    pub const PL_MSG_FORWARDER: u16 = 0x00A8;
    pub const PL_BLOWER: u16 = 0x00A9;
    pub const PF_GUILIST_BOX_MOD: u16 = 0x00AA;
    pub const PF_GUITEXT_BOX_MOD: u16 = 0x00AB;
    pub const PF_GUIEDIT_BOX_MOD: u16 = 0x00AC;
    pub const PL_DYNAMIC_TEXT_MAP: u16 = 0x00AD;
    pub const PL_SITTING_MODIFIER: u16 = 0x00AE;
    pub const PF_GUIUP_DOWN_PAIR_MOD: u16 = 0x00AF;
    pub const PF_GUIVALUE_CTRL: u16 = 0x00B0;
    pub const PF_GUIKNOB_CTRL: u16 = 0x00B1;
    pub const PL_AV_LADDER_MOD: u16 = 0x00B2;
    pub const PL_CAMERA_BRAIN1_FIRST_PERSON: u16 = 0x00B3;
    pub const PL_CLONE_SPAWN_MODIFIER: u16 = 0x00B4;
    pub const PL_CLOTHING_ITEM: u16 = 0x00B5;
    pub const PL_CLOTHING_OUTFIT: u16 = 0x00B6;
    pub const PL_CLOTHING_BASE: u16 = 0x00B7;
    pub const PL_CLOTHING_MGR: u16 = 0x00B8;
    pub const PF_GUIDRAG_BAR_CTRL: u16 = 0x00B9;
    pub const PF_GUICHECK_BOX_CTRL: u16 = 0x00BA;
    pub const PF_GUIRADIO_GROUP_CTRL: u16 = 0x00BB;
    pub const PF_PLAYER_BOOK_MOD: u16 = 0x00BC;
    pub const PF_GUIDYN_DISPLAY_CTRL: u16 = 0x00BD;
    pub const UNUSED_PL_LAYER_PROJECT: u16 = 0x00BE;
    pub const PL_INPUT_INTERFACE_MGR: u16 = 0x00BF;
    pub const PL_RAIL_CAMERA_MOD: u16 = 0x00C0;
    pub const PL_MULTISTAGE_BEH_MOD: u16 = 0x00C1;
    pub const PL_CAMERA_BRAIN1_CIRCLE: u16 = 0x00C2;
    pub const PL_PARTICLE_WIND_EFFECT: u16 = 0x00C3;
    pub const PL_ANIM_EVENT_MODIFIER: u16 = 0x00C4;
    pub const PL_AUTO_PROFILE: u16 = 0x00C5;
    pub const PF_GUISKIN: u16 = 0x00C6;
    pub const PL_AVIWRITER: u16 = 0x00C7;
    pub const PL_PARTICLE_COLLISION_EFFECT: u16 = 0x00C8;
    pub const PL_PARTICLE_COLLISION_EFFECT_DIE: u16 = 0x00C9;
    pub const PL_PARTICLE_COLLISION_EFFECT_BOUNCE: u16 = 0x00CA;
    pub const PL_INTERFACE_INFO_MODIFIER: u16 = 0x00CB;
    pub const PL_SHARED_MESH: u16 = 0x00CC;
    pub const PL_ARMATURE_EFFECTS_MGR: u16 = 0x00CD;
    pub const PF_MARKER_MGR: u16 = 0x00CE;
    pub const PL_VEHICLE_MODIFIER: u16 = 0x00CF;
    pub const PL_PARTICLE_LOCAL_WIND: u16 = 0x00D0;
    pub const PL_PARTICLE_UNIFORM_WIND: u16 = 0x00D1;
    pub const PL_INSTANCE_DRAW_INTERFACE: u16 = 0x00D2;
    pub const PL_SHADOW_MASTER: u16 = 0x00D3;
    pub const PL_SHADOW_CASTER: u16 = 0x00D4;
    pub const PL_POINT_SHADOW_MASTER: u16 = 0x00D5;
    pub const PL_DIRECT_SHADOW_MASTER: u16 = 0x00D6;
    pub const PL_SDLMODIFIER: u16 = 0x00D7;
    pub const PL_PHYSICAL_SDLMODIFIER: u16 = 0x00D8;
    pub const PL_CLOTHING_SDLMODIFIER: u16 = 0x00D9;
    pub const PL_AVATAR_SDLMODIFIER: u16 = 0x00DA;
    pub const PL_AGMASTER_SDLMODIFIER: u16 = 0x00DB;
    pub const PL_PYTHON_SDLMODIFIER: u16 = 0x00DC;
    pub const PL_LAYER_SDLMODIFIER: u16 = 0x00DD;
    pub const PL_ANIM_TIME_CONVERT_SDLMODIFIER: u16 = 0x00DE;
    pub const PL_RESPONDER_SDLMODIFIER: u16 = 0x00DF;
    pub const PL_SOUND_SDLMODIFIER: u16 = 0x00E0;
    pub const PL_RES_MANAGER_HELPER: u16 = 0x00E1;
    pub const PL_AVATAR_PHYSICAL_SDLMODIFIER: u16 = 0x00E2;
    pub const PL_ARMATURE_EFFECT: u16 = 0x00E3;
    pub const PL_ARMATURE_EFFECT_FOOT_SOUND: u16 = 0x00E4;
    pub const PL_EAXLISTENER_MOD: u16 = 0x00E5;
    pub const PL_DYNA_DECAL_MGR: u16 = 0x00E6;
    pub const PL_OBJECT_IN_VOLUME_AND_FACING_DETECTOR: u16 = 0x00E7;
    pub const PL_DYNA_FOOT_MGR: u16 = 0x00E8;
    pub const PL_DYNA_RIPPLE_MGR: u16 = 0x00E9;
    pub const PL_DYNA_BULLET_MGR: u16 = 0x00EA;
    pub const PL_DECAL_ENABLE_MOD: u16 = 0x00EB;
    pub const PL_PRINT_SHAPE: u16 = 0x00EC;
    pub const PL_DYNA_PUDDLE_MGR: u16 = 0x00ED;
    pub const PF_GUIMULTI_LINE_EDIT_CTRL: u16 = 0x00EE;
    pub const PL_LAYER_ANIMATION_BASE: u16 = 0x00EF;
    pub const PL_LAYER_SDLANIMATION: u16 = 0x00F0;
    pub const PL_ATCANIM: u16 = 0x00F1;
    pub const PL_AGE_GLOBAL_ANIM: u16 = 0x00F2;
    pub const PL_SUBWORLD_REGION_DETECTOR: u16 = 0x00F3;
    pub const PL_AVATAR_MGR: u16 = 0x00F4;
    pub const PL_NPCSPAWN_MOD: u16 = 0x00F5;
    pub const PL_ACTIVE_PRINT_SHAPE: u16 = 0x00F6;
    pub const PL_EXCLUDE_REGION_SDLMODIFIER: u16 = 0x00F7;
    pub const PL_LOSDISPATCH: u16 = 0x00F8;
    pub const PL_DYNA_WAKE_MGR: u16 = 0x00F9;
    pub const PL_SIMULATION_MGR: u16 = 0x00FA;
    pub const PL_WAVE_SET7: u16 = 0x00FB;
    pub const PL_PANIC_LINK_REGION: u16 = 0x00FC;
    pub const PL_WIN32_GROUPED_SOUND: u16 = 0x00FD;
    pub const PL_FILTER_COORD_INTERFACE: u16 = 0x00FE;
    pub const PL_STEREIZER: u16 = 0x00FF;
    pub const PL_CCRMGR: u16 = 0x0100;
    pub const PL_CCRSPECIALIST: u16 = 0x0101;
    pub const PL_CCRSENIOR_SPECIALIST: u16 = 0x0102;
    pub const PL_CCRSHIFT_SUPERVISOR: u16 = 0x0103;
    pub const PL_CCRGAME_OPERATOR: u16 = 0x0104;
    pub const PL_SHADER: u16 = 0x0105;
    pub const PL_DYNAMIC_ENV_MAP: u16 = 0x0106;
    pub const PL_SIMPLE_REGION_SENSOR: u16 = 0x0107;
    pub const PL_MORPH_SEQUENCE: u16 = 0x0108;
    pub const PL_EMOTE_ANIM: u16 = 0x0109;
    pub const PL_DYNA_RIPPLE_VSMGR: u16 = 0x010A;
    pub const UNUSED_PL_WAVE_SET6: u16 = 0x010B;
    pub const PF_GUIPROGRESS_CTRL: u16 = 0x010C;
    pub const PL_MAINTAINERS_MARKER_MODIFIER: u16 = 0x010D;
    pub const PL_MORPH_SEQUENCE_SDLMOD: u16 = 0x010E;
    pub const PL_MORPH_DATA_SET: u16 = 0x010F;
    pub const PL_HARD_REGION: u16 = 0x0110;
    pub const PL_HARD_REGION_PLANES: u16 = 0x0111;
    pub const PL_HARD_REGION_COMPLEX: u16 = 0x0112;
    pub const PL_HARD_REGION_UNION: u16 = 0x0113;
    pub const PL_HARD_REGION_INTERSECT: u16 = 0x0114;
    pub const PL_HARD_REGION_INVERT: u16 = 0x0115;
    pub const PL_VIS_REGION: u16 = 0x0116;
    pub const PL_VIS_MGR: u16 = 0x0117;
    pub const PL_REGION_BASE: u16 = 0x0118;
    pub const PF_GUIPOP_UP_MENU: u16 = 0x0119;
    pub const PF_GUIMENU_ITEM: u16 = 0x011A;
    pub const PL_COOP_COORDINATOR: u16 = 0x011B;
    pub const PL_FONT: u16 = 0x011C;
    pub const PL_FONT_CACHE: u16 = 0x011D;
    pub const PL_RELEVANCE_REGION: u16 = 0x011E;
    pub const PL_RELEVANCE_MGR: u16 = 0x011F;
    pub const PF_JOURNAL_BOOK: u16 = 0x0120;
    pub const PL_LAYER_TARGET_CONTAINER: u16 = 0x0121;
    pub const PL_IMAGE_LIB_MOD: u16 = 0x0122;
    pub const PL_PARTICLE_FLOCK_EFFECT: u16 = 0x0123;
    pub const PL_PARTICLE_SDLMOD: u16 = 0x0124;
    pub const PL_AGE_LOADER: u16 = 0x0125;
    pub const PL_WAVE_SET_BASE: u16 = 0x0126;
    pub const PL_PHYSICAL_SND_GROUP: u16 = 0x0127;
    pub const PF_BOOK_DATA: u16 = 0x0128;
    pub const PL_DYNA_TORPEDO_MGR: u16 = 0x0129;
    pub const PL_DYNA_TORPEDO_VSMGR: u16 = 0x012A;
    pub const PL_CLUSTER_GROUP: u16 = 0x012B;
    pub const PL_GAME_MARKER_MODIFIER: u16 = 0x012C;
    pub const PL_LODMIPMAP: u16 = 0x012D;
    pub const PL_SWIM_DETECTOR: u16 = 0x012E;
    pub const PL_FADE_OPACITY_MOD: u16 = 0x012F;
    pub const PL_FADE_OPACITY_LAY: u16 = 0x0130;
    pub const PL_DIST_OPACITY_MOD: u16 = 0x0131;
    pub const PL_ARMATURE_MOD_BASE: u16 = 0x0132;
    pub const PL_SWIM_REGION_INTERFACE: u16 = 0x0133;
    pub const PL_SWIM_CIRCULAR_CURRENT_REGION: u16 = 0x0134;
    pub const PL_PARTICLE_FOLLOW_SYSTEM_EFFECT: u16 = 0x0135;
    pub const PL_SWIM_STRAIGHT_CURRENT_REGION: u16 = 0x0136;
    pub const PF_OBJECT_FLOCKER: u16 = 0x0137;
    pub const PL_GRASS_SHADER_MOD: u16 = 0x0138;
    pub const PL_DYNAMIC_CAM_MAP: u16 = 0x0139;
    pub const PL_RIDING_ANIMATED_PHYSICAL_DETECTOR: u16 = 0x013A;
    pub const PL_VOLUME_SENSOR_CONDITIONAL_OBJECT_NO_ARBITRATION: u16 = 0x013B;
    pub const PL_PXSUB_WORLD: u16 = 0x013C;
    pub const PF_CONFIRMATION_MGR: u16 = 0x013D;

    // --- Non-keyed objects (0x0200+) ---
    pub const PL_OBJ_REF_MSG: u16 = 0x0200;
    pub const PL_NODE_REF_MSG: u16 = 0x0201;
    pub const PL_MESSAGE: u16 = 0x0202;
    pub const PL_REF_MSG: u16 = 0x0203;
    pub const PL_GEN_REF_MSG: u16 = 0x0204;
    pub const PL_TIME_MSG: u16 = 0x0205;
    pub const PL_ANIM_CMD_MSG: u16 = 0x0206;
    pub const PL_PARTICLE_UPDATE_MSG: u16 = 0x0207;
    pub const PL_LAY_REF_MSG: u16 = 0x0208;
    pub const PL_MAT_REF_MSG: u16 = 0x0209;
    pub const PL_CAMERA_MSG: u16 = 0x020A;
    pub const PL_INPUT_EVENT_MSG: u16 = 0x020B;
    pub const PL_KEY_EVENT_MSG: u16 = 0x020C;
    pub const PL_MOUSE_EVENT_MSG: u16 = 0x020D;
    pub const PL_EVAL_MSG: u16 = 0x020E;
    pub const PL_TRANSFORM_MSG: u16 = 0x020F;
    pub const PL_CONTROL_EVENT_MSG: u16 = 0x0210;
    pub const PL_VAULT_CCRNODE: u16 = 0x0211;
    pub const PL_LOSREQUEST_MSG: u16 = 0x0212;
    pub const PL_LOSHIT_MSG: u16 = 0x0213;
    pub const PL_SINGLE_MOD_MSG: u16 = 0x0214;
    pub const PL_MULTI_MOD_MSG: u16 = 0x0215;
    pub const PL_AVATAR_PHYSICS_ENABLE_CALLBACK_MSG: u16 = 0x0216;
    pub const PL_MEMBER_UPDATE_MSG: u16 = 0x0217;
    pub const PL_NET_MSG_PAGING_ROOM: u16 = 0x0218;
    pub const PL_ACTIVATOR_MSG: u16 = 0x0219;
    pub const PL_DISPATCH: u16 = 0x021A;
    pub const PL_RECEIVER: u16 = 0x021B;
    pub const PL_MESH_REF_MSG: u16 = 0x021C;
    pub const HS_GRENDER_PROCS: u16 = 0x021D;
    pub const HS_SFX_ANGLE_FADE: u16 = 0x021E;
    pub const HS_SFX_DIST_FADE: u16 = 0x021F;
    pub const HS_SFX_DIST_SHADE: u16 = 0x0220;
    pub const HS_SFX_GLOBAL_SHADE: u16 = 0x0221;
    pub const HS_SFX_INTENSE_ALPHA: u16 = 0x0222;
    pub const HS_SFX_OBJ_DIST_FADE: u16 = 0x0223;
    pub const HS_SFX_OBJ_DIST_SHADE: u16 = 0x0224;
    pub const HS_DYNAMIC_VALUE: u16 = 0x0225;
    pub const HS_DYNAMIC_SCALAR: u16 = 0x0226;
    pub const HS_DYNAMIC_COLOR_RGBA: u16 = 0x0227;
    pub const HS_DYNAMIC_MATRIX33: u16 = 0x0228;
    pub const HS_DYNAMIC_MATRIX44: u16 = 0x0229;
    pub const PL_OMNI_SQ_APPLICATOR: u16 = 0x022A;
    pub const PL_PRE_RESOURCE_MSG: u16 = 0x022B;
    pub const UNUSED_HS_DYNAMIC_COLOR_RGBA: u16 = 0x022C;
    pub const UNUSED_HS_DYNAMIC_MATRIX33: u16 = 0x022D;
    pub const UNUSED_HS_DYNAMIC_MATRIX44: u16 = 0x022E;
    pub const PL_CONTROLLER: u16 = 0x022F;
    pub const PL_LEAF_CONTROLLER: u16 = 0x0230;
    pub const PL_COMPOUND_CONTROLLER: u16 = 0x0231;
    pub const UNUSED_PL_ROT_CONTROLLER: u16 = 0x0232;
    pub const UNUSED_PL_POS_CONTROLLER: u16 = 0x0233;
    pub const UNUSED_PL_SCALAR_CONTROLLER: u16 = 0x0234;
    pub const UNUSED_PL_POINT3_CONTROLLER: u16 = 0x0235;
    pub const UNUSED_PL_SCALE_VALUE_CONTROLLER: u16 = 0x0236;
    pub const UNUSED_PL_QUAT_CONTROLLER: u16 = 0x0237;
    pub const UNUSED_PL_MATRIX33_CONTROLLER: u16 = 0x0238;
    pub const UNUSED_PL_MATRIX44_CONTROLLER: u16 = 0x0239;
    pub const UNUSED_PL_EASE_CONTROLLER: u16 = 0x023A;
    pub const UNUSED_PL_SIMPLE_SCALE_CONTROLLER: u16 = 0x023B;
    pub const UNUSED_PL_SIMPLE_ROT_CONTROLLER: u16 = 0x023C;
    pub const PL_COMPOUND_ROT_CONTROLLER: u16 = 0x023D;
    pub const UNUSED_PL_SIMPLE_POS_CONTROLLER: u16 = 0x023E;
    pub const PL_COMPOUND_POS_CONTROLLER: u16 = 0x023F;
    pub const PL_TMCONTROLLER: u16 = 0x0240;
    pub const HS_FOG_CONTROL: u16 = 0x0241;
    pub const PL_INT_REF_MSG: u16 = 0x0242;
    pub const PL_COLLISION_REACTOR: u16 = 0x0243;
    pub const PL_CORRECTION_MSG: u16 = 0x0244;
    pub const PL_PHYSICAL_MODIFIER: u16 = 0x0245;
    pub const PL_PICKED_MSG: u16 = 0x0246;
    pub const PL_COLLIDE_MSG: u16 = 0x0247;
    pub const PL_TRIGGER_MSG: u16 = 0x0248;
    pub const PL_INTERESTING_MOD_MSG: u16 = 0x0249;
    pub const PL_DEBUG_KEY_EVENT_MSG: u16 = 0x024A;
    pub const PL_PHYSICAL_PROPERTIES_DEAD: u16 = 0x024B;
    pub const PL_SIMPLE_PHYS: u16 = 0x024C;
    pub const PL_MATRIX_UPDATE_MSG: u16 = 0x024D;
    pub const PL_COND_REF_MSG: u16 = 0x024E;
    pub const PL_TIMER_CALLBACK_MSG: u16 = 0x024F;
    pub const PL_EVENT_CALLBACK_MSG: u16 = 0x0250;
    pub const PL_SPAWN_MOD_MSG: u16 = 0x0251;
    pub const PL_SPAWN_REQUEST_MSG: u16 = 0x0252;
    pub const PL_LOAD_CLONE_MSG: u16 = 0x0253;
    pub const PL_ENABLE_MSG: u16 = 0x0254;
    pub const PL_WARP_MSG: u16 = 0x0255;
    pub const PL_ATTACH_MSG: u16 = 0x0256;
    pub const DEAD_PF_CONSOLE: u16 = 0x0257;
    pub const PL_RENDER_MSG: u16 = 0x0258;
    pub const PL_ANIM_TIME_CONVERT: u16 = 0x0259;
    pub const PL_SOUND_MSG: u16 = 0x025A;
    pub const PL_INTERESTING_PING: u16 = 0x025B;
    pub const PL_NODE_CLEANUP_MSG: u16 = 0x025C;
    pub const PL_SPACE_TREE: u16 = 0x025D;
    pub const PL_NET_MESSAGE: u16 = 0x025E;
    pub const PL_NET_MSG_JOIN_REQ: u16 = 0x025F;
    pub const PL_NET_MSG_JOIN_ACK: u16 = 0x0260;
    pub const PL_NET_MSG_LEAVE: u16 = 0x0261;
    pub const PL_NET_MSG_PING: u16 = 0x0262;
    pub const PL_NET_MSG_ROOMS_LIST: u16 = 0x0263;
    pub const PL_NET_MSG_GROUP_OWNER: u16 = 0x0264;
    pub const PL_NET_MSG_GAME_STATE_REQUEST: u16 = 0x0265;
    pub const PL_NET_MSG_SESSION_RESET: u16 = 0x0266;
    pub const PL_NET_MSG_OMNIBUS: u16 = 0x0267;
    pub const PL_NET_MSG_OBJECT: u16 = 0x0268;
    pub const PL_CCRINVISIBLE_MSG: u16 = 0x0269;
    pub const PL_LINK_IN_DONE_MSG: u16 = 0x026A;
    pub const PL_NET_MSG_GAME_MESSAGE: u16 = 0x026B;
    pub const PL_NET_MSG_STREAM: u16 = 0x026C;
    pub const PL_AUDIO_SYS_MSG: u16 = 0x026D;
    pub const PL_DISPATCH_BASE: u16 = 0x026E;
    pub const PL_SERVER_REPLY_MSG: u16 = 0x026F;
    pub const PL_DEVICE_RECREATE_MSG: u16 = 0x0270;
    pub const PL_NET_MSG_STREAM_HELPER: u16 = 0x0271;
    pub const PL_NET_MSG_OBJECT_HELPER: u16 = 0x0272;
    pub const PL_IMOUSE_XEVENT_MSG: u16 = 0x0273;
    pub const PL_IMOUSE_YEVENT_MSG: u16 = 0x0274;
    pub const PL_IMOUSE_BEVENT_MSG: u16 = 0x0275;
    pub const PL_LOGIC_TRIGGER_MSG: u16 = 0x0276;
    pub const PL_PIPELINE: u16 = 0x0277;
    pub const PL_DXPIPELINE: u16 = 0x0278;
    pub const PL_NET_MSG_VOICE: u16 = 0x0279;
    pub const PL_LIGHT_REF_MSG: u16 = 0x027A;
    pub const PL_NET_MSG_STREAMED_OBJECT: u16 = 0x027B;
    pub const PL_NET_MSG_SHARED_STATE: u16 = 0x027C;
    pub const PL_NET_MSG_TEST_AND_SET: u16 = 0x027D;
    pub const PL_NET_MSG_GET_SHARED_STATE: u16 = 0x027E;
    pub const PL_SHARED_STATE_MSG: u16 = 0x027F;
    pub const PL_NET_GENERIC_SERVER_TASK: u16 = 0x0280;
    pub const PL_NET_CLIENT_MGR_MSG: u16 = 0x0281;
    pub const PL_LOAD_AGE_MSG: u16 = 0x0282;
    pub const PL_MESSAGE_WITH_CALLBACKS: u16 = 0x0283;
    pub const PL_CLIENT_MSG: u16 = 0x0284;
    pub const PL_CLIENT_REF_MSG: u16 = 0x0285;
    pub const PL_NET_MSG_OBJ_STATE_REQUEST: u16 = 0x0286;
    pub const PL_CCRPETITION_MSG: u16 = 0x0287;
    pub const PL_VAULT_CCRINITIALIZATION_TASK: u16 = 0x0288;
    pub const PL_NET_SERVER_MSG: u16 = 0x0289;
    pub const PL_NET_SERVER_MSG_WITH_CONTEXT: u16 = 0x028A;
    pub const PL_NET_SERVER_MSG_REGISTER_SERVER: u16 = 0x028B;
    pub const PL_NET_SERVER_MSG_UNREGISTER_SERVER: u16 = 0x028C;
    pub const PL_NET_SERVER_MSG_START_PROCESS: u16 = 0x028D;
    pub const PL_NET_SERVER_MSG_REGISTER_PROCESS: u16 = 0x028E;
    pub const PL_NET_SERVER_MSG_UNREGISTER_PROCESS: u16 = 0x028F;
    pub const PL_NET_SERVER_MSG_FIND_PROCESS: u16 = 0x0290;
    pub const PL_NET_SERVER_MSG_PROCESS_FOUND: u16 = 0x0291;
    pub const PL_NET_MSG_ROUTING_INFO: u16 = 0x0292;
    pub const UNUSED_PL_NET_SERVER_SESSION_INFO: u16 = 0x0293;
    pub const PL_SIMULATION_MSG: u16 = 0x0294;
    pub const PL_SIMULATION_SYNCH_MSG: u16 = 0x0295;
    pub const PL_HKSIMULATION_SYNCH_MSG: u16 = 0x0296;
    pub const PL_AVATAR_MSG: u16 = 0x0297;
    pub const PL_AV_TASK_MSG: u16 = 0x0298;
    pub const PL_AV_SEEK_MSG: u16 = 0x0299;
    pub const PL_AV_ONE_SHOT_MSG: u16 = 0x029A;
    pub const PL_SATISFIED_MSG: u16 = 0x029B;
    pub const PL_NET_MSG_OBJECT_LIST_HELPER: u16 = 0x029C;
    pub const PL_NET_MSG_OBJECT_UPDATE_FILTER: u16 = 0x029D;
    pub const PL_PROXY_DRAW_MSG: u16 = 0x029E;
    pub const PL_SELF_DESTRUCT_MSG: u16 = 0x029F;
    pub const PL_SIM_INFLUENCE_MSG: u16 = 0x02A0;
    pub const PL_FORCE_MSG: u16 = 0x02A1;
    pub const PL_OFFSET_FORCE_MSG: u16 = 0x02A2;
    pub const PL_TORQUE_MSG: u16 = 0x02A3;
    pub const PL_IMPULSE_MSG: u16 = 0x02A4;
    pub const PL_OFFSET_IMPULSE_MSG: u16 = 0x02A5;
    pub const PL_ANGULAR_IMPULSE_MSG: u16 = 0x02A6;
    pub const PL_DAMP_MSG: u16 = 0x02A7;
    pub const PL_SHIFT_MASS_MSG: u16 = 0x02A8;
    pub const PL_SIM_STATE_MSG: u16 = 0x02A9;
    pub const PL_FREEZE_MSG: u16 = 0x02AA;
    pub const PL_EVENT_GROUP_MSG: u16 = 0x02AB;
    pub const PL_SUSPEND_EVENT_MSG: u16 = 0x02AC;
    pub const PL_NET_MSG_MEMBERS_LIST_REQ: u16 = 0x02AD;
    pub const PL_NET_MSG_MEMBERS_LIST: u16 = 0x02AE;
    pub const PL_NET_MSG_MEMBER_INFO_HELPER: u16 = 0x02AF;
    pub const PL_NET_MSG_MEMBER_LIST_HELPER: u16 = 0x02B0;
    pub const PL_NET_MSG_MEMBER_UPDATE: u16 = 0x02B1;
    pub const PL_NET_MSG_SERVER_TO_CLIENT: u16 = 0x02B2;
    pub const PL_NET_MSG_CREATE_PLAYER: u16 = 0x02B3;
    pub const PL_NET_MSG_AUTHENTICATE_HELLO: u16 = 0x02B4;
    pub const PL_NET_MSG_AUTHENTICATE_CHALLENGE: u16 = 0x02B5;
    pub const PL_CONNECTED_TO_VAULT_MSG: u16 = 0x02B6;
    pub const PL_CCRCOMMUNICATION_MSG: u16 = 0x02B7;
    pub const PL_NET_MSG_INITIAL_AGE_STATE_SENT: u16 = 0x02B8;
    pub const PL_INITIAL_AGE_STATE_LOADED_MSG: u16 = 0x02B9;
    pub const PL_NET_SERVER_MSG_FIND_SERVER_BASE: u16 = 0x02BA;
    pub const PL_NET_SERVER_MSG_FIND_SERVER_REPLY_BASE: u16 = 0x02BB;
    pub const PL_NET_SERVER_MSG_FIND_AUTH_SERVER: u16 = 0x02BC;
    pub const PL_NET_SERVER_MSG_FIND_AUTH_SERVER_REPLY: u16 = 0x02BD;
    pub const PL_NET_SERVER_MSG_FIND_VAULT_SERVER: u16 = 0x02BE;
    pub const PL_NET_SERVER_MSG_FIND_VAULT_SERVER_REPLY: u16 = 0x02BF;
    pub const PL_AV_TASK_SEEK_DONE_MSG: u16 = 0x02C0;
    pub const PL_RES_PATCHER_MSG: u16 = 0x02C1;
    pub const PL_NET_SERVER_MSG_VAULT_TASK: u16 = 0x02C2;
    pub const PL_NET_MSG_VAULT_TASK: u16 = 0x02C3;
    pub const PL_AGE_LINK_STRUCT: u16 = 0x02C4;
    pub const PL_VAULT_AGE_INFO_NODE: u16 = 0x02C5;
    pub const PL_NET_MSG_STREAMABLE_HELPER: u16 = 0x02C6;
    pub const PL_NET_MSG_RECEIVERS_LIST_HELPER: u16 = 0x02C7;
    pub const PL_NET_MSG_LISTEN_LIST_UPDATE: u16 = 0x02C8;
    pub const PL_NET_SERVER_MSG_PING: u16 = 0x02C9;
    pub const PL_NET_MSG_ALIVE: u16 = 0x02CA;
    pub const PL_NET_MSG_TERMINATED: u16 = 0x02CB;
    pub const PL_SDLMODIFIER_MSG: u16 = 0x02CC;
    pub const PL_NET_MSG_SDLSTATE: u16 = 0x02CD;
    pub const PL_NET_SERVER_MSG_SESSION_RESET: u16 = 0x02CE;
    pub const PL_CCRBAN_LINKING_MSG: u16 = 0x02CF;
    pub const PL_CCRSILENCE_PLAYER_MSG: u16 = 0x02D0;
    pub const PL_RENDER_REQUEST_MSG: u16 = 0x02D1;
    pub const PL_RENDER_REQUEST_ACK: u16 = 0x02D2;
    pub const PL_NET_MEMBER: u16 = 0x02D3;
    pub const PL_NET_GAME_MEMBER: u16 = 0x02D4;
    pub const PL_NET_TRANSPORT_MEMBER: u16 = 0x02D5;
    pub const PL_CONVEX_VOLUME: u16 = 0x02D6;
    pub const PL_PARTICLE_GENERATOR: u16 = 0x02D7;
    pub const PL_SIMPLE_PARTICLE_GENERATOR: u16 = 0x02D8;
    pub const PL_PARTICLE_EMITTER: u16 = 0x02D9;
    pub const PL_AGCHANNEL: u16 = 0x02DA;
    pub const PL_MATRIX_CHANNEL: u16 = 0x02DB;
    pub const PL_MATRIX_TIME_SCALE: u16 = 0x02DC;
    pub const PL_MATRIX_BLEND: u16 = 0x02DD;
    pub const PL_MATRIX_CONTROLLER_CHANNEL: u16 = 0x02DE;
    pub const PL_QUAT_POINT_COMBINE: u16 = 0x02DF;
    pub const PL_POINT_CHANNEL: u16 = 0x02E0;
    pub const PL_POINT_CONSTANT: u16 = 0x02E1;
    pub const PL_POINT_BLEND: u16 = 0x02E2;
    pub const PL_QUAT_CHANNEL: u16 = 0x02E3;
    pub const PL_QUAT_CONSTANT: u16 = 0x02E4;
    pub const PL_QUAT_BLEND: u16 = 0x02E5;
    pub const PL_LINK_TO_AGE_MSG: u16 = 0x02E6;
    pub const PL_PLAYER_PAGE_MSG: u16 = 0x02E7;
    pub const PL_CMD_IFACE_MOD_MSG: u16 = 0x02E8;
    pub const PL_NET_SERVER_MSG_PLS_UPDATE_PLAYER: u16 = 0x02E9;
    pub const PL_LISTENER_MSG: u16 = 0x02EA;
    pub const PL_ANIM_PATH: u16 = 0x02EB;
    pub const PL_CLOTHING_UPDATE_BCMSG: u16 = 0x02EC;
    pub const PL_NOTIFY_MSG: u16 = 0x02ED;
    pub const PL_FAKE_OUT_MSG: u16 = 0x02EE;
    pub const PL_CURSOR_CHANGE_MSG: u16 = 0x02EF;
    pub const PL_NODE_CHANGE_MSG: u16 = 0x02F0;
    pub const UNUSED_PL_AV_ENABLE_MSG: u16 = 0x02F1;
    pub const PL_LINK_CALLBACK_MSG: u16 = 0x02F2;
    pub const PL_TRANSITION_MSG: u16 = 0x02F3;
    pub const PL_CONSOLE_MSG: u16 = 0x02F4;
    pub const PL_VOLUME_ISECT: u16 = 0x02F5;
    pub const PL_SPHERE_ISECT: u16 = 0x02F6;
    pub const PL_CONE_ISECT: u16 = 0x02F7;
    pub const PL_CYLINDER_ISECT: u16 = 0x02F8;
    pub const PL_PARALLEL_ISECT: u16 = 0x02F9;
    pub const PL_CONVEX_ISECT: u16 = 0x02FA;
    pub const PL_COMPLEX_ISECT: u16 = 0x02FB;
    pub const PL_UNION_ISECT: u16 = 0x02FC;
    pub const PL_INTERSECTION_ISECT: u16 = 0x02FD;
    pub const PL_MODULATOR: u16 = 0x02FE;
    pub const UNUSED__PL_INVENTORY_MSG: u16 = 0x02FF;
    pub const PL_LINK_EFFECTS_TRIGGER_MSG: u16 = 0x0300;
    pub const PL_LINK_EFFECT_BCMSG: u16 = 0x0301;
    pub const PL_RESPONDER_ENABLE_MSG: u16 = 0x0302;
    pub const PL_NET_SERVER_MSG_HELLO: u16 = 0x0303;
    pub const PL_NET_SERVER_MSG_HELLO_REPLY: u16 = 0x0304;
    pub const PL_NET_SERVER_MEMBER: u16 = 0x0305;
    pub const PL_RESPONDER_MSG: u16 = 0x0306;
    pub const PL_ONE_SHOT_MSG: u16 = 0x0307;
    pub const PL_VAULT_AGE_INFO_LIST_NODE: u16 = 0x0308;
    pub const PL_NET_SERVER_MSG_SERVER_REGISTERED: u16 = 0x0309;
    pub const PL_POINT_TIME_SCALE: u16 = 0x030A;
    pub const PL_POINT_CONTROLLER_CHANNEL: u16 = 0x030B;
    pub const PL_QUAT_TIME_SCALE: u16 = 0x030C;
    pub const PL_AGAPPLICATOR: u16 = 0x030D;
    pub const PL_MATRIX_CHANNEL_APPLICATOR: u16 = 0x030E;
    pub const PL_POINT_CHANNEL_APPLICATOR: u16 = 0x030F;
    pub const PL_LIGHT_DIFFUSE_APPLICATOR: u16 = 0x0310;
    pub const PL_LIGHT_AMBIENT_APPLICATOR: u16 = 0x0311;
    pub const PL_LIGHT_SPECULAR_APPLICATOR: u16 = 0x0312;
    pub const PL_OMNI_APPLICATOR: u16 = 0x0313;
    pub const PL_QUAT_CHANNEL_APPLICATOR: u16 = 0x0314;
    pub const PL_SCALAR_CHANNEL: u16 = 0x0315;
    pub const PL_SCALAR_TIME_SCALE: u16 = 0x0316;
    pub const PL_SCALAR_BLEND: u16 = 0x0317;
    pub const PL_SCALAR_CONTROLLER_CHANNEL: u16 = 0x0318;
    pub const PL_SCALAR_CHANNEL_APPLICATOR: u16 = 0x0319;
    pub const PL_SPOT_INNER_APPLICATOR: u16 = 0x031A;
    pub const PL_SPOT_OUTER_APPLICATOR: u16 = 0x031B;
    pub const PL_NET_SERVER_MSG_PLS_ROUTABLE_MSG: u16 = 0x031C;
    pub const UNUSED_PL_PUPPET_BRAIN_MSG: u16 = 0x031D;
    pub const PL_ATCEASE_CURVE: u16 = 0x031E;
    pub const PL_CONST_ACCEL_EASE_CURVE: u16 = 0x031F;
    pub const PL_SPLINE_EASE_CURVE: u16 = 0x0320;
    pub const PL_VAULT_AGE_INFO_INITIALIZATION_TASK: u16 = 0x0321;
    pub const PF_GAME_GUIMSG: u16 = 0x0322;
    pub const PL_NET_SERVER_MSG_VAULT_REQUEST_GAME_STATE: u16 = 0x0323;
    pub const PL_NET_SERVER_MSG_VAULT_GAME_STATE: u16 = 0x0324;
    pub const PL_NET_SERVER_MSG_VAULT_GAME_STATE_SAVE: u16 = 0x0325;
    pub const PL_NET_SERVER_MSG_VAULT_GAME_STATE_SAVED: u16 = 0x0326;
    pub const PL_NET_SERVER_MSG_VAULT_GAME_STATE_LOAD: u16 = 0x0327;
    pub const PL_NET_CLIENT_TASK: u16 = 0x0328;
    pub const PL_NET_MSG_SDLSTATE_BCAST: u16 = 0x0329;
    pub const PL_REPLACE_GEOMETRY_MSG: u16 = 0x032A;
    pub const PL_NET_SERVER_MSG_EXIT_PROCESS: u16 = 0x032B;
    pub const PL_NET_SERVER_MSG_SAVE_GAME_STATE: u16 = 0x032C;
    pub const PL_DNI_COORDINATE_INFO: u16 = 0x032D;
    pub const PL_NET_MSG_GAME_MESSAGE_DIRECTED: u16 = 0x032E;
    pub const PL_LINK_OUT_UNLOAD_MSG: u16 = 0x032F;
    pub const PL_SCALAR_CONSTANT: u16 = 0x0330;
    pub const PL_MATRIX_CONSTANT: u16 = 0x0331;
    pub const PL_AGCMD_MSG: u16 = 0x0332;
    pub const PL_PARTICLE_TRANSFER_MSG: u16 = 0x0333;
    pub const PL_PARTICLE_KILL_MSG: u16 = 0x0334;
    pub const PL_EXCLUDE_REGION_MSG: u16 = 0x0335;
    pub const PL_ONE_TIME_PARTICLE_GENERATOR: u16 = 0x0336;
    pub const PL_PARTICLE_APPLICATOR: u16 = 0x0337;
    pub const PL_PARTICLE_LIFE_MIN_APPLICATOR: u16 = 0x0338;
    pub const PL_PARTICLE_LIFE_MAX_APPLICATOR: u16 = 0x0339;
    pub const PL_PARTICLE_PPSAPPLICATOR: u16 = 0x033A;
    pub const PL_PARTICLE_ANGLE_APPLICATOR: u16 = 0x033B;
    pub const PL_PARTICLE_VEL_MIN_APPLICATOR: u16 = 0x033C;
    pub const PL_PARTICLE_VEL_MAX_APPLICATOR: u16 = 0x033D;
    pub const PL_PARTICLE_SCALE_MIN_APPLICATOR: u16 = 0x033E;
    pub const PL_PARTICLE_SCALE_MAX_APPLICATOR: u16 = 0x033F;
    pub const PL_DYNAMIC_TEXT_MSG: u16 = 0x0340;
    pub const PL_CAMERA_TARGET_FADE_MSG: u16 = 0x0341;
    pub const PL_AGE_LOADED_MSG: u16 = 0x0342;
    pub const PL_POINT_CONTROLLER_CACHE_CHANNEL: u16 = 0x0343;
    pub const PL_SCALAR_CONTROLLER_CACHE_CHANNEL: u16 = 0x0344;
    pub const PL_LINK_EFFECTS_TRIGGER_PREP_MSG: u16 = 0x0345;
    pub const PL_LINK_EFFECT_PREP_BCMSG: u16 = 0x0346;
    pub const PL_AVATAR_INPUT_STATE_MSG: u16 = 0x0347;
    pub const PL_AGE_INFO_STRUCT: u16 = 0x0348;
    pub const PL_SDLNOTIFICATION_MSG: u16 = 0x0349;
    pub const PL_NET_CLIENT_CONNECT_AGE_VAULT_TASK: u16 = 0x034A;
    pub const PL_LINKING_MGR_MSG: u16 = 0x034B;
    pub const PL_VAULT_NOTIFY_MSG: u16 = 0x034C;
    pub const PL_PLAYER_INFO: u16 = 0x034D;
    pub const PL_SWAP_SPANS_REF_MSG: u16 = 0x034E;
    pub const PF_KI: u16 = 0x034F;
    pub const PL_DISPANS_MSG: u16 = 0x0350;
    pub const PL_NET_MSG_CREATABLE_HELPER: u16 = 0x0351;
    pub const PL_CREATABLE_UUID: u16 = 0x0352;
    pub const PL_NET_MSG_REQUEST_MY_VAULT_PLAYER_LIST: u16 = 0x0353;
    pub const PL_DELAYED_TRANSFORM_MSG: u16 = 0x0354;
    pub const PL_SUPER_VNODE_MGR_INIT_TASK: u16 = 0x0355;
    pub const PL_ELEMENT_REF_MSG: u16 = 0x0356;
    pub const PL_CLOTHING_MSG: u16 = 0x0357;
    pub const PL_EVENT_GROUP_ENABLE_MSG: u16 = 0x0358;
    pub const PF_GUINOTIFY_MSG: u16 = 0x0359;
    pub const UNUSED_PL_AV_BRAIN: u16 = 0x035A;
    pub const PL_ARMATURE_BRAIN: u16 = 0x035B;
    pub const PL_AV_BRAIN_HUMAN: u16 = 0x035C;
    pub const PL_AV_BRAIN_CRITTER: u16 = 0x035D;
    pub const PL_AV_BRAIN_DRIVE: u16 = 0x035E;
    pub const PL_AV_BRAIN_SAMPLE: u16 = 0x035F;
    pub const PL_AV_BRAIN_GENERIC: u16 = 0x0360;
    pub const UNUSED_PL_PRELOADER_MSG: u16 = 0x0361;
    pub const PL_AV_BRAIN_LADDER: u16 = 0x0362;
    pub const PL_INPUT_IFACE_MGR_MSG: u16 = 0x0363;
    pub const PF_KIMSG: u16 = 0x0364;
    pub const PL_REMOTE_AVATAR_INFO_MSG: u16 = 0x0365;
    pub const PL_MATRIX_DELAYED_CORRECTION_APPLICATOR: u16 = 0x0366;
    pub const PL_AV_PUSH_BRAIN_MSG: u16 = 0x0367;
    pub const PL_AV_POP_BRAIN_MSG: u16 = 0x0368;
    pub const PL_ROOM_LOAD_NOTIFY_MSG: u16 = 0x0369;
    pub const PL_AV_TASK: u16 = 0x036A;
    pub const PL_AV_ANIM_TASK: u16 = 0x036B;
    pub const PL_AV_SEEK_TASK: u16 = 0x036C;
    pub const PL_NET_COMM_AUTH_CONNECTED_MSG: u16 = 0x036D;
    pub const PL_AV_ONE_SHOT_TASK: u16 = 0x036E;
    pub const UNUSED_PL_AV_ENABLE_TASK: u16 = 0x036F;
    pub const PL_AV_TASK_BRAIN: u16 = 0x0370;
    pub const PL_ANIM_STAGE: u16 = 0x0371;
    pub const PL_NET_CLIENT_MEMBER: u16 = 0x0372;
    pub const PL_NET_CLIENT_COMM_TASK: u16 = 0x0373;
    pub const PL_NET_SERVER_MSG_AUTH_REQUEST: u16 = 0x0374;
    pub const PL_NET_SERVER_MSG_AUTH_REPLY: u16 = 0x0375;
    pub const PL_NET_CLIENT_COMM_AUTH_TASK: u16 = 0x0376;
    pub const PL_CLIENT_GUID: u16 = 0x0377;
    pub const PL_NET_MSG_VAULT_PLAYER_LIST: u16 = 0x0378;
    pub const PL_NET_MSG_SET_MY_ACTIVE_PLAYER: u16 = 0x0379;
    pub const PL_NET_SERVER_MSG_REQUEST_ACCOUNT_PLAYER_LIST: u16 = 0x037A;
    pub const PL_NET_SERVER_MSG_ACCOUNT_PLAYER_LIST: u16 = 0x037B;
    pub const PL_NET_MSG_PLAYER_CREATED: u16 = 0x037C;
    pub const PL_NET_SERVER_MSG_VAULT_CREATE_PLAYER: u16 = 0x037D;
    pub const PL_NET_SERVER_MSG_VAULT_PLAYER_CREATED: u16 = 0x037E;
    pub const PL_NET_MSG_FIND_AGE: u16 = 0x037F;
    pub const PL_NET_MSG_FIND_AGE_REPLY: u16 = 0x0380;
    pub const PL_NET_CLIENT_CONNECT_PREP_TASK: u16 = 0x0381;
    pub const PL_NET_CLIENT_AUTH_TASK: u16 = 0x0382;
    pub const PL_NET_CLIENT_GET_PLAYER_VAULT_TASK: u16 = 0x0383;
    pub const PL_NET_CLIENT_SET_ACTIVE_PLAYER_TASK: u16 = 0x0384;
    pub const PL_NET_CLIENT_FIND_AGE_TASK: u16 = 0x0385;
    pub const PL_NET_CLIENT_LEAVE_TASK: u16 = 0x0386;
    pub const PL_NET_CLIENT_JOIN_TASK: u16 = 0x0387;
    pub const PL_NET_CLIENT_CALIBRATE_TASK: u16 = 0x0388;
    pub const PL_NET_MSG_DELETE_PLAYER: u16 = 0x0389;
    pub const PL_NET_SERVER_MSG_VAULT_DELETE_PLAYER: u16 = 0x038A;
    pub const UNUSED_PL_NET_CORE_STATS_SUMMARY: u16 = 0x038B;
    pub const PL_CREATABLE_GENERIC_VALUE: u16 = 0x038C;
    pub const PL_CREATABLE_LIST_HELPER: u16 = 0x038D;
    pub const PL_CREATABLE_STREAM: u16 = 0x038E;
    pub const PL_AV_BRAIN_GENERIC_MSG: u16 = 0x038F;
    pub const PL_AV_TASK_SEEK: u16 = 0x0390;
    pub const PL_AGINSTANCE_CALLBACK_MSG: u16 = 0x0391;
    pub const PL_ARMATURE_EFFECT_MSG: u16 = 0x0392;
    pub const PL_ARMATURE_EFFECT_STATE_MSG: u16 = 0x0393;
    pub const PL_SHADOW_CAST_MSG: u16 = 0x0394;
    pub const PL_BOUNDS_ISECT: u16 = 0x0395;
    pub const PL_RES_MGR_HELPER_MSG: u16 = 0x0396;
    pub const PL_NET_COMM_AUTH_MSG: u16 = 0x0397;
    pub const PL_NET_COMM_FILE_LIST_MSG: u16 = 0x0398;
    pub const UNUSED_PL_NET_COMM_FILE_DOWNLOAD_MSG: u16 = 0x0399;
    pub const PL_NET_COMM_LINK_TO_AGE_MSG: u16 = 0x039A;
    pub const PL_NET_COMM_PLAYER_LIST_MSG: u16 = 0x039B;
    pub const PL_NET_COMM_ACTIVE_PLAYER_MSG: u16 = 0x039C;
    pub const PL_NET_COMM_CREATE_PLAYER_MSG: u16 = 0x039D;
    pub const PL_NET_COMM_DELETE_PLAYER_MSG: u16 = 0x039E;
    pub const PL_NET_COMM_PUBLIC_AGE_LIST_MSG: u16 = 0x039F;
    pub const PL_NET_COMM_PUBLIC_AGE_MSG: u16 = 0x03A0;
    pub const PL_NET_COMM_REGISTER_AGE_MSG: u16 = 0x03A1;
    pub const PL_VAULT_ADMIN_INITIALIZATION_TASK: u16 = 0x03A2;
    pub const PL_MULTISTAGE_MOD_MSG: u16 = 0x03A3;
    pub const PL_SOUND_VOLUME_APPLICATOR: u16 = 0x03A4;
    pub const PL_CUTTER: u16 = 0x03A5;
    pub const PL_BULLET_MSG: u16 = 0x03A6;
    pub const PL_DYNA_DECAL_ENABLE_MSG: u16 = 0x03A7;
    pub const PL_OMNI_CUTOFF_APPLICATOR: u16 = 0x03A8;
    pub const PL_ARMATURE_UPDATE_MSG: u16 = 0x03A9;
    pub const PL_AVATAR_FOOT_MSG: u16 = 0x03AA;
    pub const PL_NET_OWNERSHIP_MSG: u16 = 0x03AB;
    pub const PL_NET_MSG_RELEVANCE_REGIONS: u16 = 0x03AC;
    pub const PL_PARTICLE_FLOCK_MSG: u16 = 0x03AD;
    pub const PL_AVATAR_BEHAVIOR_NOTIFY_MSG: u16 = 0x03AE;
    pub const PL_ATCCHANNEL: u16 = 0x03AF;
    pub const PL_SCALAR_SDLCHANNEL: u16 = 0x03B0;
    pub const PL_LOAD_AVATAR_MSG: u16 = 0x03B1;
    pub const PL_AVATAR_SET_TYPE_MSG: u16 = 0x03B2;
    pub const PL_NET_MSG_LOAD_CLONE: u16 = 0x03B3;
    pub const PL_NET_MSG_PLAYER_PAGE: u16 = 0x03B4;
    pub const PL_VNODE_INIT_TASK: u16 = 0x03B5;
    pub const PL_RIPPLE_SHAPE_MSG: u16 = 0x03B6;
    pub const PL_EVENT_MANAGER: u16 = 0x03B7;
    pub const PL_VAULT_NEIGHBORHOOD_INITIALIZATION_TASK: u16 = 0x03B8;
    pub const PL_NET_SERVER_MSG_AGENT_RECOVERY_REQUEST: u16 = 0x03B9;
    pub const PL_NET_SERVER_MSG_FRONTEND_RECOVERY_REQUEST: u16 = 0x03BA;
    pub const PL_NET_SERVER_MSG_BACKEND_RECOVERY_REQUEST: u16 = 0x03BB;
    pub const PL_NET_SERVER_MSG_AGENT_RECOVERY_DATA: u16 = 0x03BC;
    pub const PL_NET_SERVER_MSG_FRONTEND_RECOVERY_DATA: u16 = 0x03BD;
    pub const PL_NET_SERVER_MSG_BACKEND_RECOVERY_DATA: u16 = 0x03BE;
    pub const PL_SUB_WORLD_MSG: u16 = 0x03BF;
    pub const PL_MATRIX_DIFFERENCE_APP: u16 = 0x03C0;
    pub const PL_AVATAR_SPAWN_NOTIFY_MSG: u16 = 0x03C1;

    // --- Database struct indexes (0x03E8+) ---
    pub const PL_VAULT_GAME_SERVER_INITIALIZATION_TASK: u16 = 0x041A;
    pub const PL_NET_CLIENT_FIND_DEFAULT_AGE_TASK: u16 = 0x041B;
    pub const PL_VAULT_AGE_NODE: u16 = 0x041C;
    pub const PL_VAULT_AGE_INITIALIZATION_TASK: u16 = 0x041D;
    pub const PL_SET_LISTENER_MSG: u16 = 0x041E;
    pub const PL_VAULT_SYSTEM_NODE: u16 = 0x041F;
    pub const PL_AV_BRAIN_SWIM: u16 = 0x0420;
    pub const PL_NET_MSG_VAULT: u16 = 0x0421;
    pub const PL_NET_SERVER_MSG_VAULT: u16 = 0x0422;
    pub const PL_VAULT_TASK: u16 = 0x0423;
    pub const PL_VAULT_CONNECT_TASK: u16 = 0x0424;
    pub const PL_VAULT_NEGOTIATE_MANIFEST_TASK: u16 = 0x0425;
    pub const PL_VAULT_FETCH_NODES_TASK: u16 = 0x0426;
    pub const PL_VAULT_SAVE_NODE_TASK: u16 = 0x0427;
    pub const PL_VAULT_FIND_NODE_TASK: u16 = 0x0428;
    pub const PL_VAULT_ADD_NODE_REF_TASK: u16 = 0x0429;
    pub const PL_VAULT_REMOVE_NODE_REF_TASK: u16 = 0x042A;
    pub const PL_VAULT_SEND_NODE_TASK: u16 = 0x042B;
    pub const PL_VAULT_NOTIFY_OPERATION_CALLBACK_TASK: u16 = 0x042C;
    pub const PL_VNODE_MGR_INITIALIZATION_TASK: u16 = 0x042D;
    pub const PL_VAULT_PLAYER_INITIALIZATION_TASK: u16 = 0x042E;
    pub const PL_NET_VAULT_SERVER_INITIALIZATION_TASK: u16 = 0x042F;
    pub const PL_COMMON_NEIGHBORHOODS_INIT_TASK: u16 = 0x0430;
    pub const PL_VAULT_NODE_REF: u16 = 0x0431;
    pub const PL_VAULT_NODE: u16 = 0x0432;
    pub const PL_VAULT_FOLDER_NODE: u16 = 0x0433;
    pub const PL_VAULT_IMAGE_NODE: u16 = 0x0434;
    pub const PL_VAULT_TEXT_NOTE_NODE: u16 = 0x0435;
    pub const PL_VAULT_SDLNODE: u16 = 0x0436;
    pub const PL_VAULT_AGE_LINK_NODE: u16 = 0x0437;
    pub const PL_VAULT_CHRONICLE_NODE: u16 = 0x0438;
    pub const PL_VAULT_PLAYER_INFO_NODE: u16 = 0x0439;
    pub const PL_VAULT_MGR_NODE: u16 = 0x043A;
    pub const PL_VAULT_PLAYER_NODE: u16 = 0x043B;
    pub const PL_SYNCH_ENABLE_MSG: u16 = 0x043C;
    pub const PL_NET_VAULT_SERVER_NODE: u16 = 0x043D;
    pub const PL_VAULT_ADMIN_NODE: u16 = 0x043E;
    pub const PL_VAULT_GAME_SERVER_NODE: u16 = 0x043F;
    pub const PL_VAULT_PLAYER_INFO_LIST_NODE: u16 = 0x0440;
    pub const PL_AVATAR_STEALTH_MODE_MSG: u16 = 0x0441;
    pub const PL_EVENT_CALLBACK_INTERCEPT_MSG: u16 = 0x0442;
    pub const PL_DYNAMIC_ENV_MAP_MSG: u16 = 0x0443;
    pub const PL_CLIMB_MSG: u16 = 0x0444;
    pub const PL_IFACE_FADE_AVATAR_MSG: u16 = 0x0445;
    pub const PL_AV_BRAIN_CLIMB: u16 = 0x0446;
    pub const PL_SHARED_MESH_BCMSG: u16 = 0x0447;
    pub const PL_NET_VOICE_LIST_MSG: u16 = 0x0448;
    pub const PL_SWIM_MSG: u16 = 0x0449;
    pub const PL_MORPH_DELTA: u16 = 0x044A;
    pub const PL_MATRIX_CONTROLLER_CACHE_CHANNEL: u16 = 0x044B;
    pub const PL_VAULT_MARKER_NODE: u16 = 0x044C;
    pub const PF_MARKER_MSG: u16 = 0x044D;
    pub const PL_PIPE_RES_MAKE_MSG: u16 = 0x044E;
    pub const PL_PIPE_RTMAKE_MSG: u16 = 0x044F;
    pub const PL_PIPE_GEO_MAKE_MSG: u16 = 0x0450;
    pub const PL_AV_COOP_MSG: u16 = 0x0451;
    pub const PL_AV_BRAIN_COOP: u16 = 0x0452;
    pub const PL_SIM_SUPPRESS_MSG: u16 = 0x0453;
    pub const PL_VAULT_MARKER_LIST_NODE: u16 = 0x0454;
    pub const UNUSED_PL_AV_TASK_ORIENT: u16 = 0x0455;
    pub const PL_AGE_BEGIN_LOADING_MSG: u16 = 0x0456;
    pub const PL_SET_NET_GROUP_IDMSG: u16 = 0x0457;
    pub const PF_BACKDOOR_MSG: u16 = 0x0458;
    pub const PL_AIMSG: u16 = 0x0459;
    pub const PL_AIBRAIN_CREATED_MSG: u16 = 0x045A;
    pub const PL_STATE_DATA_RECORD: u16 = 0x045B;
    pub const PL_NET_CLIENT_COMM_DELETE_PLAYER_TASK: u16 = 0x045C;
    pub const PL_NET_MSG_SET_TIMEOUT: u16 = 0x045D;
    pub const PL_NET_MSG_ACTIVE_PLAYER_SET: u16 = 0x045E;
    pub const PL_NET_CLIENT_COMM_SET_TIMEOUT_TASK: u16 = 0x045F;
    pub const PL_NET_ROUTABLE_MSG_OMNIBUS: u16 = 0x0460;
    pub const PL_NET_MSG_GET_PUBLIC_AGE_LIST: u16 = 0x0461;
    pub const PL_NET_MSG_PUBLIC_AGE_LIST: u16 = 0x0462;
    pub const PL_NET_MSG_CREATE_PUBLIC_AGE: u16 = 0x0463;
    pub const PL_NET_MSG_PUBLIC_AGE_CREATED: u16 = 0x0464;
    pub const PL_NET_SERVER_MSG_ENVELOPE: u16 = 0x0465;
    pub const PL_NET_CLIENT_COMM_GET_PUBLIC_AGE_LIST_TASK: u16 = 0x0466;
    pub const PL_NET_CLIENT_COMM_CREATE_PUBLIC_AGE_TASK: u16 = 0x0467;
    pub const PL_NET_SERVER_MSG_PENDING_MSGS: u16 = 0x0468;
    pub const PL_NET_SERVER_MSG_REQUEST_PENDING_MSGS: u16 = 0x0469;
    pub const PL_DB_INTERFACE: u16 = 0x046A;
    pub const PL_DB_PROXY_INTERFACE: u16 = 0x046B;
    pub const PL_DBGENERIC_SQLDB: u16 = 0x046C;
    pub const PF_GAME_MGR_MSG: u16 = 0x046D;
    pub const PF_GAME_CLI_MSG: u16 = 0x046E;
    pub const PF_GAME_CLI: u16 = 0x046F;
    pub const PF_GM_TIC_TAC_TOE: u16 = 0x0470;
    pub const PF_GM_HEEK: u16 = 0x0471;
    pub const PF_GM_MARKER: u16 = 0x0472;
    pub const PF_GM_BLUE_SPIRAL: u16 = 0x0473;
    pub const PF_GM_CLIMBING_WALL: u16 = 0x0474;
    pub const PL_AIARRIVED_AT_GOAL_MSG: u16 = 0x0475;
    pub const PF_GM_VAR_SYNC: u16 = 0x0476;
    pub const PL_NET_MSG_REMOVE_PUBLIC_AGE: u16 = 0x0477;
    pub const PL_NET_MSG_PUBLIC_AGE_REMOVED: u16 = 0x0478;
    pub const PL_NET_CLIENT_COMM_REMOVE_PUBLIC_AGE_TASK: u16 = 0x0479;
    pub const PL_CCRMESSAGE: u16 = 0x047A;
    pub const PL_AV_ONE_SHOT_LINK_TASK: u16 = 0x047B;
    pub const PL_NET_AUTH_DATABASE: u16 = 0x047C;
    pub const PL_AVATAR_OPACITY_CALLBACK_MSG: u16 = 0x047D;
    pub const PL_AGDETACH_CALLBACK_MSG: u16 = 0x047E;
    pub const PF_MOVIE_EVENT_MSG: u16 = 0x047F;
    pub const PL_MOVIE_MSG: u16 = 0x0480;
    pub const PL_PIPE_TEX_MAKE_MSG: u16 = 0x0481;
    pub const PL_EVENT_LOG: u16 = 0x0482;
    pub const PL_DB_EVENT_LOG: u16 = 0x0483;
    pub const PL_SYSLOG_EVENT_LOG: u16 = 0x0484;
    pub const PL_CAPTURE_RENDER_MSG: u16 = 0x0485;
    pub const PL_AGE_LOADED2_MSG: u16 = 0x0486;
    pub const PL_PSEUDO_LINK_EFFECT_MSG: u16 = 0x0487;
    pub const PL_PSEUDO_LINK_ANIM_TRIGGER_MSG: u16 = 0x0488;
    pub const PL_PSEUDO_LINK_ANIM_CALLBACK_MSG: u16 = 0x0489;
    pub const UNUSED_PF_CLIMBING_WALL_MSG: u16 = 0x048A;
    pub const PL_CLIMB_EVENT_MSG: u16 = 0x048B;
    pub const UNUSED_PL_AV_BRAIN_QUAB: u16 = 0x048C;
    pub const PL_ACCOUNT_UPDATE_MSG: u16 = 0x048D;
    pub const PL_LINEAR_VELOCITY_MSG: u16 = 0x048E;
    pub const PL_ANGULAR_VELOCITY_MSG: u16 = 0x048F;
    pub const PL_RIDE_ANIMATED_PHYS_MSG: u16 = 0x0490;
    pub const PL_AV_BRAIN_RIDE_ANIMATED_PHYSICAL: u16 = 0x0491;
    pub const PF_GAME_SCORE_MSG: u16 = 0x0492;
    pub const PF_GAME_SCORE_LIST_MSG: u16 = 0x0493;
    pub const PF_GAME_SCORE_TRANSFER_MSG: u16 = 0x0494;
    pub const PF_GAME_SCORE_UPDATE_MSG: u16 = 0x0495;
    pub const PL_LOAD_CLOTHING_MSG: u16 = 0x0496;
    pub const PL_NULL_PIPELINE: u16 = 0x0497;
    pub const PL_GLPIPELINE: u16 = 0x0498;
    pub const PL_SDLMODIFIER_STATE_MSG: u16 = 0x0499;
    pub const PL_CONFIRMATION_MSG: u16 = 0x049A;
    pub const PL_LOCALIZED_CONFIRMATION_MSG: u16 = 0x049B;
    pub const PL_SUBTITLE_MSG: u16 = 0x049C;
    pub const PL_DISPLAY_SCALE_CHANGED_MSG: u16 = 0x049D;
    pub const PL_METAL_PIPELINE: u16 = 0x049E;
    pub const PL_AIBRAIN_DESTROYED_MSG: u16 = 0x049F;
    pub const PL_AIGO_TO_GOAL_MSG: u16 = 0x04A0;

    /// Maximum valid class index.
    pub const MAX_CLASS_INDEX: u16 = 0x04A0;

    /// Index where non-keyed (message) classes start.
    pub const NONKEYED_START: u16 = 0x0200;
}

impl ClassIndex {
    /// Get the C++ class name for a given class index.
    pub fn class_name(index: u16) -> &'static str {
        match index {
            0x0000 => "plSceneNode",
            0x0001 => "plSceneObject",
            0x0002 => "hsKeyedObject",
            0x0003 => "plBitmap",
            0x0004 => "plMipmap",
            0x0005 => "plCubicEnvironmap",
            0x0006 => "plLayer",
            0x0007 => "hsGMaterial",
            0x0008 => "plParticleSystem",
            0x0009 => "plParticleEffect",
            0x000A => "plParticleCollisionEffectBeat",
            0x000B => "plParticleFadeVolumeEffect",
            0x000C => "plBoundInterface",
            0x000D => "plRenderTarget",
            0x000E => "plCubicRenderTarget",
            0x000F => "plCubicRenderTargetModifier",
            0x0010 => "plObjInterface",
            0x0011 => "plAudioInterface",
            0x0012 => "plAudible",
            0x0013 => "plAudibleNull",
            0x0014 => "plWinAudible",
            0x0015 => "plCoordinateInterface",
            0x0016 => "plDrawInterface",
            0x0017 => "plDrawable",
            0x0018 => "plDrawableMesh",
            0x0019 => "plDrawableIce",
            0x001A => "plPhysical",
            0x001B => "plPhysicalMesh",
            0x001C => "plSimulationInterface",
            0x001D => "plCameraModifier",
            0x001E => "plModifier",
            0x001F => "plSingleModifier",
            0x0020 => "plSimpleModifier",
            0x0021 => "pfConsole",
            0x0022 => "UNUSED_plRandomTMModifier",
            0x0023 => "plInterestingModifier",
            0x0024 => "plDetectorModifier",
            0x0025 => "plSimplePhysicalMesh",
            0x0026 => "plCompoundPhysicalMesh",
            0x0027 => "plMultiModifier",
            0x0028 => "plSynchedObject",
            0x0029 => "plSoundBuffer",
            0x002A => "UNUSED_plAliasModifier",
            0x002B => "plPickingDetector",
            0x002C => "plCollisionDetector",
            0x002D => "plLogicModifier",
            0x002E => "plConditionalObject",
            0x002F => "plANDConditionalObject",
            0x0030 => "plORConditionalObject",
            0x0031 => "plPickedConditionalObject",
            0x0032 => "plActivatorConditionalObject",
            0x0033 => "plTimerCallbackManager",
            0x0034 => "plKeyPressConditionalObject",
            0x0035 => "plAnimationEventConditionalObject",
            0x0036 => "plControlEventConditionalObject",
            0x0037 => "plObjectInBoxConditionalObject",
            0x0038 => "plLocalPlayerInBoxConditionalObject",
            0x0039 => "plObjectIntersectPlaneConditionalObject",
            0x003A => "plLocalPlayerIntersectPlaneConditionalObject",
            0x003B => "plPortalDrawable",
            0x003C => "plPortalPhysical",
            0x003D => "plSpawnModifier",
            0x003E => "plFacingConditionalObject",
            0x003F => "plPXPhysical",
            0x0040 => "plViewFaceModifier",
            0x0041 => "plLayerInterface",
            0x0042 => "plLayerWrapper",
            0x0043 => "plLayerAnimation",
            0x0044 => "plLayerDepth",
            0x0045 => "plLayerMovie",
            0x0046 => "UNUSED_plLayerBink",
            0x0047 => "plLayerAVI",
            0x0048 => "plSound",
            0x0049 => "plWin32Sound",
            0x004A => "plLayerOr",
            0x004B => "plAudioSystem",
            0x004C => "plDrawableSpans",
            0x004D => "UNUSED_plDrawablePatchSet",
            0x004E => "plInputManager",
            0x004F => "plLogicModBase",
            0x0050 => "plFogEnvironment",
            0x0051 => "plNetApp",
            0x0052 => "plNetClientMgr",
            0x0053 => "pl2WayWinAudible",
            0x0054 => "plLightInfo",
            0x0055 => "plDirectionalLightInfo",
            0x0056 => "plOmniLightInfo",
            0x0057 => "plSpotLightInfo",
            0x0058 => "plLightSpace",
            0x0059 => "plNetClientApp",
            0x005A => "plNetServerApp",
            0x005B => "plClient",
            0x005C => "UNUSED_plCompoundTMModifier",
            0x005D => "plCameraBrain",
            0x005E => "plCameraBrain_Default",
            0x005F => "plCameraBrain_Drive",
            0x0060 => "plCameraBrain_Fixed",
            0x0061 => "plCameraBrain_FixedPan",
            0x0062 => "pfGUIClickMapCtrl",
            0x0063 => "plListener",
            0x0064 => "plAvatarMod",
            0x0065 => "plAvatarAnim",
            0x0066 => "plAvatarAnimMgr",
            0x0067 => "plOccluder",
            0x0068 => "plMobileOccluder",
            0x0069 => "plLayerShadowBase",
            0x006A => "plLimitedDirLightInfo",
            0x006B => "plAGAnim",
            0x006C => "plAGModifier",
            0x006D => "plAGMasterMod",
            0x006E => "plCameraBrain_Avatar",
            0x006F => "plCameraRegionDetector",
            0x0070 => "plCameraBrain_FP",
            0x0071 => "plLineFollowMod",
            0x0072 => "plLightModifier",
            0x0073 => "plOmniModifier",
            0x0074 => "plSpotModifier",
            0x0075 => "plLtdDirModifier",
            0x0076 => "plSeekPointMod",
            0x0077 => "plOneShotMod",
            0x0078 => "plRandomCommandMod",
            0x0079 => "plRandomSoundMod",
            0x007A => "plPostEffectMod",
            0x007B => "plObjectInVolumeDetector",
            0x007C => "plResponderModifier",
            0x007D => "plAxisAnimModifier",
            0x007E => "plLayerLightBase",
            0x007F => "plFollowMod",
            0x0080 => "plTransitionMgr",
            0x0081 => "UNUSED___plInventoryMod",
            0x0082 => "UNUSED___plInventoryObjMod",
            0x0083 => "plLinkEffectsMgr",
            0x0084 => "plWin32StreamingSound",
            0x0085 => "UNUSED___plPythonMod",
            0x0086 => "plActivatorActivatorConditionalObject",
            0x0087 => "plSoftVolume",
            0x0088 => "plSoftVolumeSimple",
            0x0089 => "plSoftVolumeComplex",
            0x008A => "plSoftVolumeUnion",
            0x008B => "plSoftVolumeIntersect",
            0x008C => "plSoftVolumeInvert",
            0x008D => "plWin32LinkSound",
            0x008E => "plLayerLinkAnimation",
            0x008F => "plArmatureMod",
            0x0090 => "plCameraBrain_Freelook",
            0x0091 => "plHavokConstraintsMod",
            0x0092 => "plHingeConstraintMod",
            0x0093 => "plWheelConstraintMod",
            0x0094 => "plStrongSpringConstraintMod",
            0x0095 => "plArmatureLODMod",
            0x0096 => "plWin32StaticSound",
            0x0097 => "pfGameGUIMgr",
            0x0098 => "pfGUIDialogMod",
            0x0099 => "plCameraBrain1",
            0x009A => "plVirtualCam1",
            0x009B => "plCameraModifier1",
            0x009C => "plCameraBrain1_Drive",
            0x009D => "plCameraBrain1_POA",
            0x009E => "plCameraBrain1_Avatar",
            0x009F => "plCameraBrain1_Fixed",
            0x00A0 => "plCameraBrain1_POAFixed",
            0x00A1 => "pfGUIButtonMod",
            0x00A2 => "plPythonFileMod",
            0x00A3 => "pfGUIControlMod",
            0x00A4 => "plExcludeRegionModifier",
            0x00A5 => "pfGUIDraggableMod",
            0x00A6 => "plVolumeSensorConditionalObject",
            0x00A7 => "plVolActivatorConditionalObject",
            0x00A8 => "plMsgForwarder",
            0x00A9 => "plBlower",
            0x00AA => "pfGUIListBoxMod",
            0x00AB => "pfGUITextBoxMod",
            0x00AC => "pfGUIEditBoxMod",
            0x00AD => "plDynamicTextMap",
            0x00AE => "plSittingModifier",
            0x00AF => "pfGUIUpDownPairMod",
            0x00B0 => "pfGUIValueCtrl",
            0x00B1 => "pfGUIKnobCtrl",
            0x00B2 => "plAvLadderMod",
            0x00B3 => "plCameraBrain1_FirstPerson",
            0x00B4 => "plCloneSpawnModifier",
            0x00B5 => "plClothingItem",
            0x00B6 => "plClothingOutfit",
            0x00B7 => "plClothingBase",
            0x00B8 => "plClothingMgr",
            0x00B9 => "pfGUIDragBarCtrl",
            0x00BA => "pfGUICheckBoxCtrl",
            0x00BB => "pfGUIRadioGroupCtrl",
            0x00BC => "pfPlayerBookMod",
            0x00BD => "pfGUIDynDisplayCtrl",
            0x00BE => "UNUSED_plLayerProject",
            0x00BF => "plInputInterfaceMgr",
            0x00C0 => "plRailCameraMod",
            0x00C1 => "plMultistageBehMod",
            0x00C2 => "plCameraBrain1_Circle",
            0x00C3 => "plParticleWindEffect",
            0x00C4 => "plAnimEventModifier",
            0x00C5 => "plAutoProfile",
            0x00C6 => "pfGUISkin",
            0x00C7 => "plAVIWriter",
            0x00C8 => "plParticleCollisionEffect",
            0x00C9 => "plParticleCollisionEffectDie",
            0x00CA => "plParticleCollisionEffectBounce",
            0x00CB => "plInterfaceInfoModifier",
            0x00CC => "plSharedMesh",
            0x00CD => "plArmatureEffectsMgr",
            0x00CE => "pfMarkerMgr",
            0x00CF => "plVehicleModifier",
            0x00D0 => "plParticleLocalWind",
            0x00D1 => "plParticleUniformWind",
            0x00D2 => "plInstanceDrawInterface",
            0x00D3 => "plShadowMaster",
            0x00D4 => "plShadowCaster",
            0x00D5 => "plPointShadowMaster",
            0x00D6 => "plDirectShadowMaster",
            0x00D7 => "plSDLModifier",
            0x00D8 => "plPhysicalSDLModifier",
            0x00D9 => "plClothingSDLModifier",
            0x00DA => "plAvatarSDLModifier",
            0x00DB => "plAGMasterSDLModifier",
            0x00DC => "plPythonSDLModifier",
            0x00DD => "plLayerSDLModifier",
            0x00DE => "plAnimTimeConvertSDLModifier",
            0x00DF => "plResponderSDLModifier",
            0x00E0 => "plSoundSDLModifier",
            0x00E1 => "plResManagerHelper",
            0x00E2 => "plAvatarPhysicalSDLModifier",
            0x00E3 => "plArmatureEffect",
            0x00E4 => "plArmatureEffectFootSound",
            0x00E5 => "plEAXListenerMod",
            0x00E6 => "plDynaDecalMgr",
            0x00E7 => "plObjectInVolumeAndFacingDetector",
            0x00E8 => "plDynaFootMgr",
            0x00E9 => "plDynaRippleMgr",
            0x00EA => "plDynaBulletMgr",
            0x00EB => "plDecalEnableMod",
            0x00EC => "plPrintShape",
            0x00ED => "plDynaPuddleMgr",
            0x00EE => "pfGUIMultiLineEditCtrl",
            0x00EF => "plLayerAnimationBase",
            0x00F0 => "plLayerSDLAnimation",
            0x00F1 => "plATCAnim",
            0x00F2 => "plAgeGlobalAnim",
            0x00F3 => "plSubworldRegionDetector",
            0x00F4 => "plAvatarMgr",
            0x00F5 => "plNPCSpawnMod",
            0x00F6 => "plActivePrintShape",
            0x00F7 => "plExcludeRegionSDLModifier",
            0x00F8 => "plLOSDispatch",
            0x00F9 => "plDynaWakeMgr",
            0x00FA => "plSimulationMgr",
            0x00FB => "plWaveSet7",
            0x00FC => "plPanicLinkRegion",
            0x00FD => "plWin32GroupedSound",
            0x00FE => "plFilterCoordInterface",
            0x00FF => "plStereizer",
            0x0100 => "plCCRMgr",
            0x0101 => "plCCRSpecialist",
            0x0102 => "plCCRSeniorSpecialist",
            0x0103 => "plCCRShiftSupervisor",
            0x0104 => "plCCRGameOperator",
            0x0105 => "plShader",
            0x0106 => "plDynamicEnvMap",
            0x0107 => "plSimpleRegionSensor",
            0x0108 => "plMorphSequence",
            0x0109 => "plEmoteAnim",
            0x010A => "plDynaRippleVSMgr",
            0x010B => "UNUSED_plWaveSet6",
            0x010C => "pfGUIProgressCtrl",
            0x010D => "plMaintainersMarkerModifier",
            0x010E => "plMorphSequenceSDLMod",
            0x010F => "plMorphDataSet",
            0x0110 => "plHardRegion",
            0x0111 => "plHardRegionPlanes",
            0x0112 => "plHardRegionComplex",
            0x0113 => "plHardRegionUnion",
            0x0114 => "plHardRegionIntersect",
            0x0115 => "plHardRegionInvert",
            0x0116 => "plVisRegion",
            0x0117 => "plVisMgr",
            0x0118 => "plRegionBase",
            0x0119 => "pfGUIPopUpMenu",
            0x011A => "pfGUIMenuItem",
            0x011B => "plCoopCoordinator",
            0x011C => "plFont",
            0x011D => "plFontCache",
            0x011E => "plRelevanceRegion",
            0x011F => "plRelevanceMgr",
            0x0120 => "pfJournalBook",
            0x0121 => "plLayerTargetContainer",
            0x0122 => "plImageLibMod",
            0x0123 => "plParticleFlockEffect",
            0x0124 => "plParticleSDLMod",
            0x0125 => "plAgeLoader",
            0x0126 => "plWaveSetBase",
            0x0127 => "plPhysicalSndGroup",
            0x0128 => "pfBookData",
            0x0129 => "plDynaTorpedoMgr",
            0x012A => "plDynaTorpedoVSMgr",
            0x012B => "plClusterGroup",
            0x012C => "plGameMarkerModifier",
            0x012D => "plLODMipmap",
            0x012E => "plSwimDetector",
            0x012F => "plFadeOpacityMod",
            0x0130 => "plFadeOpacityLay",
            0x0131 => "plDistOpacityMod",
            0x0132 => "plArmatureModBase",
            0x0133 => "plSwimRegionInterface",
            0x0134 => "plSwimCircularCurrentRegion",
            0x0135 => "plParticleFollowSystemEffect",
            0x0136 => "plSwimStraightCurrentRegion",
            0x0137 => "pfObjectFlocker",
            0x0138 => "plGrassShaderMod",
            0x0139 => "plDynamicCamMap",
            0x013A => "plRidingAnimatedPhysicalDetector",
            0x013B => "plVolumeSensorConditionalObjectNoArbitration",
            0x013C => "plPXSubWorld",
            0x013D => "pfConfirmationMgr",
            0x0200 => "plObjRefMsg",
            0x0201 => "plNodeRefMsg",
            0x0202 => "plMessage",
            0x0203 => "plRefMsg",
            0x0204 => "plGenRefMsg",
            0x0205 => "plTimeMsg",
            0x0206 => "plAnimCmdMsg",
            0x0207 => "plParticleUpdateMsg",
            0x0208 => "plLayRefMsg",
            0x0209 => "plMatRefMsg",
            0x020A => "plCameraMsg",
            0x020B => "plInputEventMsg",
            0x020C => "plKeyEventMsg",
            0x020D => "plMouseEventMsg",
            0x020E => "plEvalMsg",
            0x020F => "plTransformMsg",
            0x0210 => "plControlEventMsg",
            0x0211 => "plVaultCCRNode",
            0x0212 => "plLOSRequestMsg",
            0x0213 => "plLOSHitMsg",
            0x0214 => "plSingleModMsg",
            0x0215 => "plMultiModMsg",
            0x0216 => "plAvatarPhysicsEnableCallbackMsg",
            0x0217 => "plMemberUpdateMsg",
            0x0218 => "plNetMsgPagingRoom",
            0x0219 => "plActivatorMsg",
            0x021A => "plDispatch",
            0x021B => "plReceiver",
            0x021C => "plMeshRefMsg",
            0x021D => "hsGRenderProcs",
            0x021E => "hsSfxAngleFade",
            0x021F => "hsSfxDistFade",
            0x0220 => "hsSfxDistShade",
            0x0221 => "hsSfxGlobalShade",
            0x0222 => "hsSfxIntenseAlpha",
            0x0223 => "hsSfxObjDistFade",
            0x0224 => "hsSfxObjDistShade",
            0x0225 => "hsDynamicValue",
            0x0226 => "hsDynamicScalar",
            0x0227 => "hsDynamicColorRGBA",
            0x0228 => "hsDynamicMatrix33",
            0x0229 => "hsDynamicMatrix44",
            0x022A => "plOmniSqApplicator",
            0x022B => "plPreResourceMsg",
            0x022C => "UNUSED_hsDynamicColorRGBA",
            0x022D => "UNUSED_hsDynamicMatrix33",
            0x022E => "UNUSED_hsDynamicMatrix44",
            0x022F => "plController",
            0x0230 => "plLeafController",
            0x0231 => "plCompoundController",
            0x0232 => "UNUSED_plRotController",
            0x0233 => "UNUSED_plPosController",
            0x0234 => "UNUSED_plScalarController",
            0x0235 => "UNUSED_plPoint3Controller",
            0x0236 => "UNUSED_plScaleValueController",
            0x0237 => "UNUSED_plQuatController",
            0x0238 => "UNUSED_plMatrix33Controller",
            0x0239 => "UNUSED_plMatrix44Controller",
            0x023A => "UNUSED_plEaseController",
            0x023B => "UNUSED_plSimpleScaleController",
            0x023C => "UNUSED_plSimpleRotController",
            0x023D => "plCompoundRotController",
            0x023E => "UNUSED_plSimplePosController",
            0x023F => "plCompoundPosController",
            0x0240 => "plTMController",
            0x0241 => "hsFogControl",
            0x0242 => "plIntRefMsg",
            0x0243 => "plCollisionReactor",
            0x0244 => "plCorrectionMsg",
            0x0245 => "plPhysicalModifier",
            0x0246 => "plPickedMsg",
            0x0247 => "plCollideMsg",
            0x0248 => "plTriggerMsg",
            0x0249 => "plInterestingModMsg",
            0x024A => "plDebugKeyEventMsg",
            0x024B => "plPhysicalProperties_DEAD",
            0x024C => "plSimplePhys",
            0x024D => "plMatrixUpdateMsg",
            0x024E => "plCondRefMsg",
            0x024F => "plTimerCallbackMsg",
            0x0250 => "plEventCallbackMsg",
            0x0251 => "plSpawnModMsg",
            0x0252 => "plSpawnRequestMsg",
            0x0253 => "plLoadCloneMsg",
            0x0254 => "plEnableMsg",
            0x0255 => "plWarpMsg",
            0x0256 => "plAttachMsg",
            0x0257 => "DEAD_pfConsole",
            0x0258 => "plRenderMsg",
            0x0259 => "plAnimTimeConvert",
            0x025A => "plSoundMsg",
            0x025B => "plInterestingPing",
            0x025C => "plNodeCleanupMsg",
            0x025D => "plSpaceTree",
            0x025E => "plNetMessage",
            0x025F => "plNetMsgJoinReq",
            0x0260 => "plNetMsgJoinAck",
            0x0261 => "plNetMsgLeave",
            0x0262 => "plNetMsgPing",
            0x0263 => "plNetMsgRoomsList",
            0x0264 => "plNetMsgGroupOwner",
            0x0265 => "plNetMsgGameStateRequest",
            0x0266 => "plNetMsgSessionReset",
            0x0267 => "plNetMsgOmnibus",
            0x0268 => "plNetMsgObject",
            0x0269 => "plCCRInvisibleMsg",
            0x026A => "plLinkInDoneMsg",
            0x026B => "plNetMsgGameMessage",
            0x026C => "plNetMsgStream",
            0x026D => "plAudioSysMsg",
            0x026E => "plDispatchBase",
            0x026F => "plServerReplyMsg",
            0x0270 => "plDeviceRecreateMsg",
            0x0271 => "plNetMsgStreamHelper",
            0x0272 => "plNetMsgObjectHelper",
            0x0273 => "plIMouseXEventMsg",
            0x0274 => "plIMouseYEventMsg",
            0x0275 => "plIMouseBEventMsg",
            0x0276 => "plLogicTriggerMsg",
            0x0277 => "plPipeline",
            0x0278 => "plDXPipeline",
            0x0279 => "plNetMsgVoice",
            0x027A => "plLightRefMsg",
            0x027B => "plNetMsgStreamedObject",
            0x027C => "plNetMsgSharedState",
            0x027D => "plNetMsgTestAndSet",
            0x027E => "plNetMsgGetSharedState",
            0x027F => "plSharedStateMsg",
            0x0280 => "plNetGenericServerTask",
            0x0281 => "plNetClientMgrMsg",
            0x0282 => "plLoadAgeMsg",
            0x0283 => "plMessageWithCallbacks",
            0x0284 => "plClientMsg",
            0x0285 => "plClientRefMsg",
            0x0286 => "plNetMsgObjStateRequest",
            0x0287 => "plCCRPetitionMsg",
            0x0288 => "plVaultCCRInitializationTask",
            0x0289 => "plNetServerMsg",
            0x028A => "plNetServerMsgWithContext",
            0x028B => "plNetServerMsgRegisterServer",
            0x028C => "plNetServerMsgUnregisterServer",
            0x028D => "plNetServerMsgStartProcess",
            0x028E => "plNetServerMsgRegisterProcess",
            0x028F => "plNetServerMsgUnregisterProcess",
            0x0290 => "plNetServerMsgFindProcess",
            0x0291 => "plNetServerMsgProcessFound",
            0x0292 => "plNetMsgRoutingInfo",
            0x0293 => "UNUSED_plNetServerSessionInfo",
            0x0294 => "plSimulationMsg",
            0x0295 => "plSimulationSynchMsg",
            0x0296 => "plHKSimulationSynchMsg",
            0x0297 => "plAvatarMsg",
            0x0298 => "plAvTaskMsg",
            0x0299 => "plAvSeekMsg",
            0x029A => "plAvOneShotMsg",
            0x029B => "plSatisfiedMsg",
            0x029C => "plNetMsgObjectListHelper",
            0x029D => "plNetMsgObjectUpdateFilter",
            0x029E => "plProxyDrawMsg",
            0x029F => "plSelfDestructMsg",
            0x02A0 => "plSimInfluenceMsg",
            0x02A1 => "plForceMsg",
            0x02A2 => "plOffsetForceMsg",
            0x02A3 => "plTorqueMsg",
            0x02A4 => "plImpulseMsg",
            0x02A5 => "plOffsetImpulseMsg",
            0x02A6 => "plAngularImpulseMsg",
            0x02A7 => "plDampMsg",
            0x02A8 => "plShiftMassMsg",
            0x02A9 => "plSimStateMsg",
            0x02AA => "plFreezeMsg",
            0x02AB => "plEventGroupMsg",
            0x02AC => "plSuspendEventMsg",
            0x02AD => "plNetMsgMembersListReq",
            0x02AE => "plNetMsgMembersList",
            0x02AF => "plNetMsgMemberInfoHelper",
            0x02B0 => "plNetMsgMemberListHelper",
            0x02B1 => "plNetMsgMemberUpdate",
            0x02B2 => "plNetMsgServerToClient",
            0x02B3 => "plNetMsgCreatePlayer",
            0x02B4 => "plNetMsgAuthenticateHello",
            0x02B5 => "plNetMsgAuthenticateChallenge",
            0x02B6 => "plConnectedToVaultMsg",
            0x02B7 => "plCCRCommunicationMsg",
            0x02B8 => "plNetMsgInitialAgeStateSent",
            0x02B9 => "plInitialAgeStateLoadedMsg",
            0x02BA => "plNetServerMsgFindServerBase",
            0x02BB => "plNetServerMsgFindServerReplyBase",
            0x02BC => "plNetServerMsgFindAuthServer",
            0x02BD => "plNetServerMsgFindAuthServerReply",
            0x02BE => "plNetServerMsgFindVaultServer",
            0x02BF => "plNetServerMsgFindVaultServerReply",
            0x02C0 => "plAvTaskSeekDoneMsg",
            0x02C1 => "plResPatcherMsg",
            0x02C2 => "plNetServerMsgVaultTask",
            0x02C3 => "plNetMsgVaultTask",
            0x02C4 => "plAgeLinkStruct",
            0x02C5 => "plVaultAgeInfoNode",
            0x02C6 => "plNetMsgStreamableHelper",
            0x02C7 => "plNetMsgReceiversListHelper",
            0x02C8 => "plNetMsgListenListUpdate",
            0x02C9 => "plNetServerMsgPing",
            0x02CA => "plNetMsgAlive",
            0x02CB => "plNetMsgTerminated",
            0x02CC => "plSDLModifierMsg",
            0x02CD => "plNetMsgSDLState",
            0x02CE => "plNetServerMsgSessionReset",
            0x02CF => "plCCRBanLinkingMsg",
            0x02D0 => "plCCRSilencePlayerMsg",
            0x02D1 => "plRenderRequestMsg",
            0x02D2 => "plRenderRequestAck",
            0x02D3 => "plNetMember",
            0x02D4 => "plNetGameMember",
            0x02D5 => "plNetTransportMember",
            0x02D6 => "plConvexVolume",
            0x02D7 => "plParticleGenerator",
            0x02D8 => "plSimpleParticleGenerator",
            0x02D9 => "plParticleEmitter",
            0x02DA => "plAGChannel",
            0x02DB => "plMatrixChannel",
            0x02DC => "plMatrixTimeScale",
            0x02DD => "plMatrixBlend",
            0x02DE => "plMatrixControllerChannel",
            0x02DF => "plQuatPointCombine",
            0x02E0 => "plPointChannel",
            0x02E1 => "plPointConstant",
            0x02E2 => "plPointBlend",
            0x02E3 => "plQuatChannel",
            0x02E4 => "plQuatConstant",
            0x02E5 => "plQuatBlend",
            0x02E6 => "plLinkToAgeMsg",
            0x02E7 => "plPlayerPageMsg",
            0x02E8 => "plCmdIfaceModMsg",
            0x02E9 => "plNetServerMsgPlsUpdatePlayer",
            0x02EA => "plListenerMsg",
            0x02EB => "plAnimPath",
            0x02EC => "plClothingUpdateBCMsg",
            0x02ED => "plNotifyMsg",
            0x02EE => "plFakeOutMsg",
            0x02EF => "plCursorChangeMsg",
            0x02F0 => "plNodeChangeMsg",
            0x02F1 => "UNUSED_plAvEnableMsg",
            0x02F2 => "plLinkCallbackMsg",
            0x02F3 => "plTransitionMsg",
            0x02F4 => "plConsoleMsg",
            0x02F5 => "plVolumeIsect",
            0x02F6 => "plSphereIsect",
            0x02F7 => "plConeIsect",
            0x02F8 => "plCylinderIsect",
            0x02F9 => "plParallelIsect",
            0x02FA => "plConvexIsect",
            0x02FB => "plComplexIsect",
            0x02FC => "plUnionIsect",
            0x02FD => "plIntersectionIsect",
            0x02FE => "plModulator",
            0x02FF => "UNUSED___plInventoryMsg",
            0x0300 => "plLinkEffectsTriggerMsg",
            0x0301 => "plLinkEffectBCMsg",
            0x0302 => "plResponderEnableMsg",
            0x0303 => "plNetServerMsgHello",
            0x0304 => "plNetServerMsgHelloReply",
            0x0305 => "plNetServerMember",
            0x0306 => "plResponderMsg",
            0x0307 => "plOneShotMsg",
            0x0308 => "plVaultAgeInfoListNode",
            0x0309 => "plNetServerMsgServerRegistered",
            0x030A => "plPointTimeScale",
            0x030B => "plPointControllerChannel",
            0x030C => "plQuatTimeScale",
            0x030D => "plAGApplicator",
            0x030E => "plMatrixChannelApplicator",
            0x030F => "plPointChannelApplicator",
            0x0310 => "plLightDiffuseApplicator",
            0x0311 => "plLightAmbientApplicator",
            0x0312 => "plLightSpecularApplicator",
            0x0313 => "plOmniApplicator",
            0x0314 => "plQuatChannelApplicator",
            0x0315 => "plScalarChannel",
            0x0316 => "plScalarTimeScale",
            0x0317 => "plScalarBlend",
            0x0318 => "plScalarControllerChannel",
            0x0319 => "plScalarChannelApplicator",
            0x031A => "plSpotInnerApplicator",
            0x031B => "plSpotOuterApplicator",
            0x031C => "plNetServerMsgPlsRoutableMsg",
            0x031D => "_UNUSED_plPuppetBrainMsg",
            0x031E => "plATCEaseCurve",
            0x031F => "plConstAccelEaseCurve",
            0x0320 => "plSplineEaseCurve",
            0x0321 => "plVaultAgeInfoInitializationTask",
            0x0322 => "pfGameGUIMsg",
            0x0323 => "plNetServerMsgVaultRequestGameState",
            0x0324 => "plNetServerMsgVaultGameState",
            0x0325 => "plNetServerMsgVaultGameStateSave",
            0x0326 => "plNetServerMsgVaultGameStateSaved",
            0x0327 => "plNetServerMsgVaultGameStateLoad",
            0x0328 => "plNetClientTask",
            0x0329 => "plNetMsgSDLStateBCast",
            0x032A => "plReplaceGeometryMsg",
            0x032B => "plNetServerMsgExitProcess",
            0x032C => "plNetServerMsgSaveGameState",
            0x032D => "plDniCoordinateInfo",
            0x032E => "plNetMsgGameMessageDirected",
            0x032F => "plLinkOutUnloadMsg",
            0x0330 => "plScalarConstant",
            0x0331 => "plMatrixConstant",
            0x0332 => "plAGCmdMsg",
            0x0333 => "plParticleTransferMsg",
            0x0334 => "plParticleKillMsg",
            0x0335 => "plExcludeRegionMsg",
            0x0336 => "plOneTimeParticleGenerator",
            0x0337 => "plParticleApplicator",
            0x0338 => "plParticleLifeMinApplicator",
            0x0339 => "plParticleLifeMaxApplicator",
            0x033A => "plParticlePPSApplicator",
            0x033B => "plParticleAngleApplicator",
            0x033C => "plParticleVelMinApplicator",
            0x033D => "plParticleVelMaxApplicator",
            0x033E => "plParticleScaleMinApplicator",
            0x033F => "plParticleScaleMaxApplicator",
            0x0340 => "plDynamicTextMsg",
            0x0341 => "plCameraTargetFadeMsg",
            0x0342 => "plAgeLoadedMsg",
            0x0343 => "plPointControllerCacheChannel",
            0x0344 => "plScalarControllerCacheChannel",
            0x0345 => "plLinkEffectsTriggerPrepMsg",
            0x0346 => "plLinkEffectPrepBCMsg",
            0x0347 => "plAvatarInputStateMsg",
            0x0348 => "plAgeInfoStruct",
            0x0349 => "plSDLNotificationMsg",
            0x034A => "plNetClientConnectAgeVaultTask",
            0x034B => "plLinkingMgrMsg",
            0x034C => "plVaultNotifyMsg",
            0x034D => "plPlayerInfo",
            0x034E => "plSwapSpansRefMsg",
            0x034F => "pfKI",
            0x0350 => "plDISpansMsg",
            0x0351 => "plNetMsgCreatableHelper",
            0x0352 => "plCreatableUuid",
            0x0353 => "plNetMsgRequestMyVaultPlayerList",
            0x0354 => "plDelayedTransformMsg",
            0x0355 => "plSuperVNodeMgrInitTask",
            0x0356 => "plElementRefMsg",
            0x0357 => "plClothingMsg",
            0x0358 => "plEventGroupEnableMsg",
            0x0359 => "pfGUINotifyMsg",
            0x035A => "UNUSED_plAvBrain",
            0x035B => "plArmatureBrain",
            0x035C => "plAvBrainHuman",
            0x035D => "plAvBrainCritter",
            0x035E => "plAvBrainDrive",
            0x035F => "plAvBrainSample",
            0x0360 => "plAvBrainGeneric",
            0x0361 => "UNUSED_plPreloaderMsg",
            0x0362 => "plAvBrainLadder",
            0x0363 => "plInputIfaceMgrMsg",
            0x0364 => "pfKIMsg",
            0x0365 => "plRemoteAvatarInfoMsg",
            0x0366 => "plMatrixDelayedCorrectionApplicator",
            0x0367 => "plAvPushBrainMsg",
            0x0368 => "plAvPopBrainMsg",
            0x0369 => "plRoomLoadNotifyMsg",
            0x036A => "plAvTask",
            0x036B => "plAvAnimTask",
            0x036C => "plAvSeekTask",
            0x036D => "plNetCommAuthConnectedMsg",
            0x036E => "plAvOneShotTask",
            0x036F => "UNUSED_plAvEnableTask",
            0x0370 => "plAvTaskBrain",
            0x0371 => "plAnimStage",
            0x0372 => "plNetClientMember",
            0x0373 => "plNetClientCommTask",
            0x0374 => "plNetServerMsgAuthRequest",
            0x0375 => "plNetServerMsgAuthReply",
            0x0376 => "plNetClientCommAuthTask",
            0x0377 => "plClientGuid",
            0x0378 => "plNetMsgVaultPlayerList",
            0x0379 => "plNetMsgSetMyActivePlayer",
            0x037A => "plNetServerMsgRequestAccountPlayerList",
            0x037B => "plNetServerMsgAccountPlayerList",
            0x037C => "plNetMsgPlayerCreated",
            0x037D => "plNetServerMsgVaultCreatePlayer",
            0x037E => "plNetServerMsgVaultPlayerCreated",
            0x037F => "plNetMsgFindAge",
            0x0380 => "plNetMsgFindAgeReply",
            0x0381 => "plNetClientConnectPrepTask",
            0x0382 => "plNetClientAuthTask",
            0x0383 => "plNetClientGetPlayerVaultTask",
            0x0384 => "plNetClientSetActivePlayerTask",
            0x0385 => "plNetClientFindAgeTask",
            0x0386 => "plNetClientLeaveTask",
            0x0387 => "plNetClientJoinTask",
            0x0388 => "plNetClientCalibrateTask",
            0x0389 => "plNetMsgDeletePlayer",
            0x038A => "plNetServerMsgVaultDeletePlayer",
            0x038B => "UNUSED_plNetCoreStatsSummary",
            0x038C => "plCreatableGenericValue",
            0x038D => "plCreatableListHelper",
            0x038E => "plCreatableStream",
            0x038F => "plAvBrainGenericMsg",
            0x0390 => "plAvTaskSeek",
            0x0391 => "plAGInstanceCallbackMsg",
            0x0392 => "plArmatureEffectMsg",
            0x0393 => "plArmatureEffectStateMsg",
            0x0394 => "plShadowCastMsg",
            0x0395 => "plBoundsIsect",
            0x0396 => "plResMgrHelperMsg",
            0x0397 => "plNetCommAuthMsg",
            0x0398 => "plNetCommFileListMsg",
            0x0399 => "UNUSED_plNetCommFileDownloadMsg",
            0x039A => "plNetCommLinkToAgeMsg",
            0x039B => "plNetCommPlayerListMsg",
            0x039C => "plNetCommActivePlayerMsg",
            0x039D => "plNetCommCreatePlayerMsg",
            0x039E => "plNetCommDeletePlayerMsg",
            0x039F => "plNetCommPublicAgeListMsg",
            0x03A0 => "plNetCommPublicAgeMsg",
            0x03A1 => "plNetCommRegisterAgeMsg",
            0x03A2 => "plVaultAdminInitializationTask",
            0x03A3 => "plMultistageModMsg",
            0x03A4 => "plSoundVolumeApplicator",
            0x03A5 => "plCutter",
            0x03A6 => "plBulletMsg",
            0x03A7 => "plDynaDecalEnableMsg",
            0x03A8 => "plOmniCutoffApplicator",
            0x03A9 => "plArmatureUpdateMsg",
            0x03AA => "plAvatarFootMsg",
            0x03AB => "plNetOwnershipMsg",
            0x03AC => "plNetMsgRelevanceRegions",
            0x03AD => "plParticleFlockMsg",
            0x03AE => "plAvatarBehaviorNotifyMsg",
            0x03AF => "plATCChannel",
            0x03B0 => "plScalarSDLChannel",
            0x03B1 => "plLoadAvatarMsg",
            0x03B2 => "plAvatarSetTypeMsg",
            0x03B3 => "plNetMsgLoadClone",
            0x03B4 => "plNetMsgPlayerPage",
            0x03B5 => "plVNodeInitTask",
            0x03B6 => "plRippleShapeMsg",
            0x03B7 => "plEventManager",
            0x03B8 => "plVaultNeighborhoodInitializationTask",
            0x03B9 => "plNetServerMsgAgentRecoveryRequest",
            0x03BA => "plNetServerMsgFrontendRecoveryRequest",
            0x03BB => "plNetServerMsgBackendRecoveryRequest",
            0x03BC => "plNetServerMsgAgentRecoveryData",
            0x03BD => "plNetServerMsgFrontendRecoveryData",
            0x03BE => "plNetServerMsgBackendRecoveryData",
            0x03BF => "plSubWorldMsg",
            0x03C0 => "plMatrixDifferenceApp",
            0x03C1 => "plAvatarSpawnNotifyMsg",
            0x041A => "plVaultGameServerInitializationTask",
            0x041B => "plNetClientFindDefaultAgeTask",
            0x041C => "plVaultAgeNode",
            0x041D => "plVaultAgeInitializationTask",
            0x041E => "plSetListenerMsg",
            0x041F => "plVaultSystemNode",
            0x0420 => "plAvBrainSwim",
            0x0421 => "plNetMsgVault",
            0x0422 => "plNetServerMsgVault",
            0x0423 => "plVaultTask",
            0x0424 => "plVaultConnectTask",
            0x0425 => "plVaultNegotiateManifestTask",
            0x0426 => "plVaultFetchNodesTask",
            0x0427 => "plVaultSaveNodeTask",
            0x0428 => "plVaultFindNodeTask",
            0x0429 => "plVaultAddNodeRefTask",
            0x042A => "plVaultRemoveNodeRefTask",
            0x042B => "plVaultSendNodeTask",
            0x042C => "plVaultNotifyOperationCallbackTask",
            0x042D => "plVNodeMgrInitializationTask",
            0x042E => "plVaultPlayerInitializationTask",
            0x042F => "plNetVaultServerInitializationTask",
            0x0430 => "plCommonNeighborhoodsInitTask",
            0x0431 => "plVaultNodeRef",
            0x0432 => "plVaultNode",
            0x0433 => "plVaultFolderNode",
            0x0434 => "plVaultImageNode",
            0x0435 => "plVaultTextNoteNode",
            0x0436 => "plVaultSDLNode",
            0x0437 => "plVaultAgeLinkNode",
            0x0438 => "plVaultChronicleNode",
            0x0439 => "plVaultPlayerInfoNode",
            0x043A => "plVaultMgrNode",
            0x043B => "plVaultPlayerNode",
            0x043C => "plSynchEnableMsg",
            0x043D => "plNetVaultServerNode",
            0x043E => "plVaultAdminNode",
            0x043F => "plVaultGameServerNode",
            0x0440 => "plVaultPlayerInfoListNode",
            0x0441 => "plAvatarStealthModeMsg",
            0x0442 => "plEventCallbackInterceptMsg",
            0x0443 => "plDynamicEnvMapMsg",
            0x0444 => "plClimbMsg",
            0x0445 => "plIfaceFadeAvatarMsg",
            0x0446 => "plAvBrainClimb",
            0x0447 => "plSharedMeshBCMsg",
            0x0448 => "plNetVoiceListMsg",
            0x0449 => "plSwimMsg",
            0x044A => "plMorphDelta",
            0x044B => "plMatrixControllerCacheChannel",
            0x044C => "plVaultMarkerNode",
            0x044D => "pfMarkerMsg",
            0x044E => "plPipeResMakeMsg",
            0x044F => "plPipeRTMakeMsg",
            0x0450 => "plPipeGeoMakeMsg",
            0x0451 => "plAvCoopMsg",
            0x0452 => "plAvBrainCoop",
            0x0453 => "plSimSuppressMsg",
            0x0454 => "plVaultMarkerListNode",
            0x0455 => "UNUSED_plAvTaskOrient",
            0x0456 => "plAgeBeginLoadingMsg",
            0x0457 => "plSetNetGroupIDMsg",
            0x0458 => "pfBackdoorMsg",
            0x0459 => "plAIMsg",
            0x045A => "plAIBrainCreatedMsg",
            0x045B => "plStateDataRecord",
            0x045C => "plNetClientCommDeletePlayerTask",
            0x045D => "plNetMsgSetTimeout",
            0x045E => "plNetMsgActivePlayerSet",
            0x045F => "plNetClientCommSetTimeoutTask",
            0x0460 => "plNetRoutableMsgOmnibus",
            0x0461 => "plNetMsgGetPublicAgeList",
            0x0462 => "plNetMsgPublicAgeList",
            0x0463 => "plNetMsgCreatePublicAge",
            0x0464 => "plNetMsgPublicAgeCreated",
            0x0465 => "plNetServerMsgEnvelope",
            0x0466 => "plNetClientCommGetPublicAgeListTask",
            0x0467 => "plNetClientCommCreatePublicAgeTask",
            0x0468 => "plNetServerMsgPendingMsgs",
            0x0469 => "plNetServerMsgRequestPendingMsgs",
            0x046A => "plDbInterface",
            0x046B => "plDbProxyInterface",
            0x046C => "plDBGenericSQLDB",
            0x046D => "pfGameMgrMsg",
            0x046E => "pfGameCliMsg",
            0x046F => "pfGameCli",
            0x0470 => "pfGmTicTacToe",
            0x0471 => "pfGmHeek",
            0x0472 => "pfGmMarker",
            0x0473 => "pfGmBlueSpiral",
            0x0474 => "pfGmClimbingWall",
            0x0475 => "plAIArrivedAtGoalMsg",
            0x0476 => "pfGmVarSync",
            0x0477 => "plNetMsgRemovePublicAge",
            0x0478 => "plNetMsgPublicAgeRemoved",
            0x0479 => "plNetClientCommRemovePublicAgeTask",
            0x047A => "plCCRMessage",
            0x047B => "plAvOneShotLinkTask",
            0x047C => "plNetAuthDatabase",
            0x047D => "plAvatarOpacityCallbackMsg",
            0x047E => "plAGDetachCallbackMsg",
            0x047F => "pfMovieEventMsg",
            0x0480 => "plMovieMsg",
            0x0481 => "plPipeTexMakeMsg",
            0x0482 => "plEventLog",
            0x0483 => "plDbEventLog",
            0x0484 => "plSyslogEventLog",
            0x0485 => "plCaptureRenderMsg",
            0x0486 => "plAgeLoaded2Msg",
            0x0487 => "plPseudoLinkEffectMsg",
            0x0488 => "plPseudoLinkAnimTriggerMsg",
            0x0489 => "plPseudoLinkAnimCallbackMsg",
            0x048A => "__UNUSED__pfClimbingWallMsg",
            0x048B => "plClimbEventMsg",
            0x048C => "__UNUSED__plAvBrainQuab",
            0x048D => "plAccountUpdateMsg",
            0x048E => "plLinearVelocityMsg",
            0x048F => "plAngularVelocityMsg",
            0x0490 => "plRideAnimatedPhysMsg",
            0x0491 => "plAvBrainRideAnimatedPhysical",
            0x0492 => "pfGameScoreMsg",
            0x0493 => "pfGameScoreListMsg",
            0x0494 => "pfGameScoreTransferMsg",
            0x0495 => "pfGameScoreUpdateMsg",
            0x0496 => "plLoadClothingMsg",
            0x0497 => "plNullPipeline",
            0x0498 => "plGLPipeline",
            0x0499 => "plSDLModifierStateMsg",
            0x049A => "plConfirmationMsg",
            0x049B => "plLocalizedConfirmationMsg",
            0x049C => "plSubtitleMsg",
            0x049D => "plDisplayScaleChangedMsg",
            0x049E => "plMetalPipeline",
            0x049F => "plAIBrainDestroyedMsg",
            0x04A0 => "plAIGoToGoalMsg",
            _ => "Unknown",
        }
    }

    /// Returns true if this class type represents a keyed (persistent) object.
    pub fn is_keyed(index: u16) -> bool {
        index < 0x0200
    }
}