summaryrefslogtreecommitdiff
path: root/data/aidef_vtables.yml
blob: 0f9d458ab8928a10c038914320b02bc4f7132871 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
AI:
  ASWeaponRoot: [0x71024d8d68, 0x7102513278, 0x71024e29b0, 0x71023d9270]
  ActorWaterDepthSelect: [0x71024d8d68, 0x7102513278, 0x71023d2fc8]
  AddBasicLinkOn: [0x71024d8d68, 0x7102513278, 0x71023d30e8]
  AddCarried: [0x71024d8d68, 0x7102513278, 0x71023d3390, 0x71023d3230]
  AddDemoCall: [0x71024d8d68, 0x7102513278, 0x71023d34d8]
  AddNodeNodeCarried: [0x71024d8d68, 0x7102513278, 0x71023d3390, 0x71023d35f8]
  AddPlayerLargeAttackJustGuard: [0x71024d8d68, 0x7102513278, 0x71023d3860]
  AddSwarmMove: [0x71024d8d68, 0x7102513278, 0x71023d3980]
  AddViewTargetPos: [0x71024d8d68, 0x7102513278, 0x71023d3aa0, 0x71023d3bc8]
  AirOctaBoardBurn: [0x71024d8d68, 0x7102513278, 0x710241e4e0, 0x71023d3d20]
  AirOctaBurnReaction: [0x71024d8d68, 0x7102513278, 0x71023d3e70]
  AirOctaFlyUp: [0x71024d8d68, 0x7102513278, 0x71023d3f90]
  AirOctaReaction: [0x71024d8d68, 0x7102513278, 0x71023e6c80, 0x71023d40b0]
  AirOctaRoot: [0x71024d8d68, 0x7102513278, 0x71024dc0b0, 0x71024dbb10, 0x71023d4248]
  AirOctaState: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x71023d43c8]
  AirOctaWait: [0x71024d8d68, 0x7102513278, 0x71023d4558]
  AlertCreationNestOnTree: [0x71024d8d68, 0x7102513278, 0x71023fe9a0, 0x71023fe868, 0x71023e0a40,
    0x71023d4678]
  AmbushableWeaponShoot: [0x71024d8d68, 0x7102513278, 0x71023d47f8]
  AnchorRangeSelectTwoAction: [0x71024d8d68, 0x7102513278, 0x7102417b78, 0x7102417dd8, 0x71023d4918]
  AncientNecklaceBall: [0x71024d8d68, 0x7102513278, 0x710241fc00, 0x710240f2c8, 0x71023d4a80]
  AnimalAttackOtherTarget: [0x71024d8d68, 0x7102513278, 0x71023d4c48]
  AnimalBattleAggressive: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x71023d4d68]
  AnimalBattleMoveLeave: [0x71024d8d68, 0x7102513278, 0x71023d4f00]
  AnimalEscapeAI: [0x71024d8d68, 0x7102513278, 0x71023d58c0, 0x71023d5198]
  AnimalEscapeAfterDamage: [0x71024d8d68, 0x7102513278, 0x71023d58c0, 0x71023d5198, 0x71023d5020]
  AnimalFollowTarget: [0x71024d8d68, 0x7102513278, 0x71023fb120, 0x71023d52e0]
  AnimalLineOfSightSelector: [0x71024d8d68, 0x7102513278, 0x71023d5440]
  AnimalPreAttack: [0x71024d8d68, 0x7102513278, 0x71023d5560]
  AnimalRangeKeepMove: [0x71024d8d68, 0x7102513278, 0x71023d5680]
  AnimalRangeKeepMoveWithLOS: [0x71024d8d68, 0x7102513278, 0x71023d57a0]
  AnimalRoam: [0x71024d8d68, 0x7102513278, 0x71023d58c0, 0x71023d59f0]
  AnimalRoamCheckWater: [0x71024d8d68, 0x7102513278, 0x71023d58c0, 0x71023d59f0, 0x71023d5b48]
  AnimalRushAttack: [0x71024d8d68, 0x7102513278, 0x71023d5cb8]
  AnimalTimelineAI: [0x71024d8d68, 0x7102513278, 0x71024e2758, 0x71023d5dd8]
  AppearFromTargetFrontAfterChase: [0x71024d8d68, 0x7102513278, 0x71023d5f40, 0x71023d6088]
  AppearFromTargetFrontGround: [0x71024d8d68, 0x7102513278, 0x71023d5f40, 0x71023d61d0]
  AppearNearTargetOutOfScrnGnd: [0x71024d8d68, 0x7102513278, 0x71023d5f40, 0x71023d6318]
  ArmorSearchKorokRoot: [0x71024d8d68, 0x7102513278, 0x71023d6460]
  AroundEnemyCheckSelect: [0x71024d8d68, 0x7102513278, 0x71023d6580]
  Arrow: [0x71024d8d68, 0x7102513278, 0x7102401270]
  ArrowChargeAndShoot: [0x71024d8d68, 0x7102513278, 0x710241e4e0, 0x71023d66a0]
  ArrowDelete: [0x71024d8d68, 0x7102513278, 0x71023d67d8]
  ArrowStickAndPick: [0x71024d8d68, 0x7102513278, 0x71023dfee8, 0x71023d68f8]
  AssassinBattle: [0x71024d8d68, 0x7102513278, 0x71023d6a58]
  AssassinBattleMove: [0x71024d8d68, 0x7102513278, 0x71023ea2b0, 0x71023d6b78]
  AssassinBattleRange: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x71023d6d00]
  AssassinBossAttackSeq: [0x71024d8d68, 0x7102513278, 0x710241e4e0, 0x71023d6e70]
  AssassinBossBattle: [0x71024d8d68, 0x7102513278, 0x71023d6fa8]
  AssassinBossEscapeFromTarget: [0x71024d8d68, 0x7102513278, 0x710241f990, 0x71023d70c8]
  AssassinBossFirstBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x71023d7230]
  AssassinBossFirstBattleMove: [0x71024d8d68, 0x7102513278, 0x71023d73a0]
  AssassinBossFirstRangeKeepMove: [0x71024d8d68, 0x7102513278, 0x71023ea2b0, 0x71023d74c0]
  AssassinBossFirstRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x71023d7cc0, 0x71023d7618]
  AssassinBossIronBallAttack: [0x71024d8d68, 0x7102513278, 0x71023d77f8]
  AssassinBossLastAttack: [0x71024d8d68, 0x7102513278, 0x71023d77f8, 0x71023d7918]
  AssassinBossRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x71023d7cc0, 0x71023d7a50]
  AssassinCallSelect: [0x71024d8d68, 0x7102513278, 0x71023e62d8, 0x71023d7f20]
  AssassinFieldShooterBattle: [0x71024d8d68, 0x7102513278, 0x71023d8fb8, 0x71023d8068]
  AssassinMiddleAzitoDlcRoot: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x7102400fe8, 0x71023f6888,
    0x71023d85e0, 0x71023d81c0]
  AssassinMiddleAzitoNoMemberDemo: [0x71024d8d68, 0x7102513278, 0x71023d84c0]
  AssassinMiddleAzitoRoot: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x7102400fe8, 0x71023f6888,
    0x71023d85e0]
  AssassinMiddleAzitoRootAccept: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x71023d8cc0, 0x71023d88a8]
  AssassinMiddleDlcGrabAdapter: [0x71024d8d68, 0x7102513278, 0x71024285a0, 0x71023d8a20]
  AssassinMiddleMagicAfter: [0x71024d8d68, 0x7102513278, 0x7102429c18, 0x7102429738, 0x71023d8b58]
  AssassinMiddleRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x71023d8cc0]
  AssassinRoot: [0x71024d8d68, 0x7102513278, 0x710240c370, 0x71023d8e70]
  AssassinShooterJuniorAzitoRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x710241a190, 0x71023d90e0]
  AttackGrave: [0x71024d8d68, 0x7102513278, 0x71023d9408]
  AttackGraveChase: [0x71024d8d68, 0x7102513278, 0x71023d9528]
  AttackGraveChaseWithSensor: [0x71024d8d68, 0x7102513278, 0x71023d9528, 0x71023d9648]
  AttackHitCheck: [0x71024d8d68, 0x7102513278, 0x71023d9780]
  AwarenessScale: [0x71024d8d68, 0x7102513278, 0x71023d98a0]
  BackAttackEnemyBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x71023d9c20]
  BackStepAndAttack: [0x71024d8d68, 0x7102513278, 0x71023d9d90]
  BalloonPlantNormal: [0x71024d8d68, 0x7102513278, 0x71023d9eb0]
  BarrelBomb: [0x71024d8d68, 0x7102513278, 0x710241fc00, 0x71023d9fd0]
  BasicStatusRoot: [0x71024d8d68, 0x7102513278, 0x71024e2088]
  BattleBgmRequestFinishTag: [0x71024d8d68, 0x7102513278, 0x71024e21a8]
  BeamExplode: [0x71024d8d68, 0x7102513278, 0x710241f608, 0x71023da140]
  BeamExplodeEitherHit: [0x71024d8d68, 0x7102513278, 0x710241f608, 0x71023da140, 0x71023da288]
  BeamosCarried: [0x71024d8d68, 0x7102513278, 0x71023d3390, 0x71023d3230, 0x71023da3d0]
  BeeBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x71023da560]
  BeeSwarmFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40, 0x71023ee8d0, 0x71023da700]
  BeeSwarmNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x71023da8e8]
  BeeSwarmReaction: [0x71024d8d68, 0x7102513278, 0x71023dab48]
  BeeSwarmRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x7102426a38, 0x71023dac68]
  BirdDead: [0x71024d8d68, 0x7102513278, 0x71023db0e8]
  BirdEscape: [0x71024d8d68, 0x7102513278, 0x71023db208]
  BlownOff: [0x71024d8d68, 0x7102513278, 0x71023db328]
  BocoblinBackStepAttack: [0x71024d8d68, 0x7102513278, 0x71023db450]
  BokoblinArrowAttack: [0x71024d8d68, 0x7102513278, 0x71023db570]
  BokoblinArrowBattle: [0x71024d8d68, 0x7102513278, 0x71023db690]
  BokoblinHoldArrow: [0x71024d8d68, 0x7102513278, 0x71023db7b0]
  BokoblinNoise: [0x71024d8d68, 0x7102513278, 0x71023db8d0]
  BokoblinRestraint: [0x71024d8d68, 0x7102513278, 0x71023db9f0]
  BokoblinRoam: [0x71024d8d68, 0x7102513278, 0x71023dbb10]
  BossBattleRoomRoot: [0x71024d8d68, 0x7102513278, 0x71023dbc30]
  BowEquiped: [0x71024d8d68, 0x7102513278, 0x71023dbd78]
  BowShoot: [0x71024d8d68, 0x7102513278, 0x71023dbfb8]
  BowlPin: [0x71024d8d68, 0x7102513278, 0x71023dbe98]
  BoxWaterRoot: [0x71024d8d68, 0x7102513278, 0x71023dc0d8]
  BreathAttackEnemyBattle: [0x71024d8d68, 0x7102513278, 0x71023dc238]
  BreathEnemyRangeKeepMove: [0x71024d8d68, 0x7102513278, 0x71023ea2b0, 0x71023dc3b0]
  CalledEnemyMove: [0x71024d8d68, 0x7102513278, 0x71023dc508]
  CameraBow: [0x71024d8d68, 0x7102513278, 0x7102458020, 0x7102458020, 0x7102458188]
  CameraEditRoot: [0x71024d8d68, 0x7102513278, 0x7102458308]
  CameraEventReturnSavePoint: [0x71024d8d68, 0x7102513278, 0x7102458020, 0x7102458020, 0x7102458428,
    0x71024585b8]
  CameraEventTalkAI: [0x71024d8d68, 0x7102513278, 0x7102458020, 0x7102458020, 0x7102458428,
    0x7102458950, 0x7102458760]
  CameraEventTalkAIRet: [0x71024d8d68, 0x7102513278, 0x7102458020, 0x7102458020, 0x7102458428,
    0x7102458950, 0x7102458b28]
  CameraGameRoot: [0x71024d8d68, 0x7102513278, 0x7102458020, 0x7102458020, 0x7102458d00]
  CameraRoot: [0x71024d8d68, 0x7102513278, 0x7102458020, 0x7102458020, 0x7102458e68]
  CameraTool: [0x71024d8d68, 0x7102513278, 0x7102458020, 0x7102458020, 0x7102459030]
  CannonBallRoot: [0x71024d8d68, 0x7102513278, 0x71023dc628]
  CapturedActDeadSelector: [0x71024d8d68, 0x7102513278, 0x71023dc748]
  CapturedActorReaction: [0x71024d8d68, 0x7102513278, 0x71023dc868]
  CapturedActorReactionChemical: [0x71024d8d68, 0x7102513278, 0x71023dc988]
  CarryBox: [0x71024d8d68, 0x7102513278, 0x71023dcc60]
  CastleLynelBattle: [0x71024d8d68, 0x7102513278, 0x71024047c8, 0x71023dcda8]
  ChangeWeatherTagRoot: [0x71024d8d68, 0x7102513278, 0x71023dcee8]
  ChangeWindTagRoot: [0x71024d8d68, 0x7102513278, 0x71023dd008]
  ChaseSound: [0x71024d8d68, 0x7102513278, 0x71023dd128]
  ChemicalEnemyFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40, 0x7102400e28, 0x71023dd370]
  ChemicalEnemyRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x71023dd548]
  ChemicalExplode: [0x71024d8d68, 0x7102513278, 0x71023dd6c0]
  ChemicalGiantArmorRoot: [0x71024d8d68, 0x7102513278, 0x71023f3770, 0x71023dd7e0]
  ChemicalStayObjectRoot: [0x71024d8d68, 0x7102513278, 0x71023dd918]
  ChemicalWeaponRoot: [0x71024d8d68, 0x7102513278, 0x71024e29b0, 0x71023dda40]
  ChildDeviceReflectArrow: [0x71024d8d68, 0x7102513278, 0x71024315a8, 0x71023ddbc0]
  ChildFavoriteSelector: [0x71024d8d68, 0x7102513278, 0x71023ddff8, 0x71023ddd98]
  ChildHaveSelect: [0x71024d8d68, 0x7102513278, 0x71023dded8]
  ChmCheck: [0x71024d8d68, 0x7102513278, 0x71023de120]
  ChmVolRateCheck: [0x71024d8d68, 0x7102513278, 0x71023de240]
  ChmVolRateCheckBlankOk: [0x71024d8d68, 0x7102513278, 0x71023de360]
  ChuchuDieSelect: [0x71024d8d68, 0x7102513278, 0x71023e1ea8, 0x71023e2108, 0x71023de480]
  ChuchuJellyRoot: [0x71024d8d68, 0x7102513278, 0x71023fe9a0, 0x71023de5e0]
  ChuchuNavMoveTarget: [0x71024d8d68, 0x7102513278, 0x7102409d98, 0x71023de710]
  ChuchuRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x71023de868]
  ChuchuTypeSelect: [0x71024d8d68, 0x7102513278, 0x71023de9e0]
  CircleMoveFlying: [0x71024d8d68, 0x7102513278, 0x71023dec48, 0x71023ded90]
  CircleMoveInWater: [0x71024d8d68, 0x7102513278, 0x71023dec48, 0x71023deef0]
  CircleMovePos: [0x71024d8d68, 0x7102513278, 0x71023deb00, 0x71023df038]
  CircleMoveTarget: [0x71024d8d68, 0x7102513278, 0x71023deb00, 0x71023df198]
  CliffCheckSelect: [0x71024d8d68, 0x7102513278, 0x71023df2e0]
  CliffCheckTargetDirSelect: [0x71024d8d68, 0x7102513278, 0x71023df2e0, 0x71023df408]
  CliffCheckToTargetPosDirSelect: [0x71024d8d68, 0x7102513278, 0x71023df2e0, 0x71023df548]
  CliffDistanceSelectThreeAction: [0x71024d8d68, 0x7102513278, 0x71023df670]
  CloseSmallAttack: [0x71024d8d68, 0x7102513278, 0x71023df8b0, 0x71023df9e8]
  ClusterRenderCheckTag: [0x71024d8d68, 0x7102513278, 0x71023dfb38]
  ColGroundHitSelect: [0x71024d8d68, 0x7102513278, 0x71023dfca8]
  CollaborationShootingStarRoot: [0x71024d8d68, 0x7102513278, 0x71023dfdc8]
  CommonPickedItem: [0x71024d8d68, 0x7102513278, 0x71023dfee8]
  ConditionMoveActionSelect: [0x71024d8d68, 0x7102513278, 0x71023e0060]
  CookPotRoot: [0x71024d8d68, 0x7102513278, 0x71023e0308]
  CountSelect: [0x71024d8d68, 0x7102513278, 0x71023e0458]
  CreateCarryActor: [0x71024d8d68, 0x7102513278, 0x71023e0578, 0x71023e07e0]
  CreateOnFaceSelect: [0x71024d8d68, 0x7102513278, 0x71023e0920]
  DamageAttrSelect: [0x71024d8d68, 0x7102513278, 0x71023e0b78]
  DamageTypeSelect: [0x71024d8d68, 0x7102513278, 0x71023e0c98]
  DangerAvoidFlagSelect: [0x71024d8d68, 0x7102513278, 0x71023e0db8]
  DashAndAttack: [0x71024d8d68, 0x7102513278, 0x71023e0ed8]
  DeadOrOtherState: [0x71024d8d68, 0x7102513278, 0x71023e11c8]
  DeadlyBlowWeaponRoot: [0x71024d8d68, 0x7102513278, 0x71024e29b0, 0x71023e1048]
  DefWanderAI: [0x71024d8d68, 0x7102513278, 0x71024e85d8]
  DemoRailMoveRemains: [0x71024d8d68, 0x7102513278, 0x7102416a98, 0x71023e12e8]
  DemoRootAI: [0x71024d8d68, 0x7102513278, 0x71024db9d0]
  DgnObj_DLC_CWRotDirSwitch: [0x71024d8d68, 0x7102513278, 0x71023e1780]
  DgnObj_DLC_CW_WithEntityBody00: [0x71024d8d68, 0x7102513278, 0x71023e1490, 0x71023e18a0]
  DgnObj_DLC_CogWheel2: [0x71024d8d68, 0x7102513278, 0x71023e1490]
  DgnObj_DLC_CogWheel_Physics_Ctr: [0x71024d8d68, 0x7102513278, 0x71023e1660]
  DgnObj_DLC_DungeonRotateTag: [0x71024d8d68, 0x7102513278, 0x71023e1a70]
  DgnObj_DLC_Faucet: [0x71024d8d68, 0x7102513278, 0x71023e1ba0]
  DgnObj_DLC_SliderBlock: [0x71024d8d68, 0x7102513278, 0x71023e1d10]
  DieSelect: [0x71024d8d68, 0x7102513278, 0x71023e1ea8]
  DieSelectBombPlus: [0x71024d8d68, 0x7102513278, 0x71023e1ea8, 0x71023e1fd8]
  DieSelectChemShockPlus: [0x71024d8d68, 0x7102513278, 0x71023e1ea8, 0x71023e2108, 0x71023e2238]
  DieSelectChemicalPlus: [0x71024d8d68, 0x7102513278, 0x71023e1ea8, 0x71023e2108]
  DisplaySelect: [0x71024d8d68, 0x7102513278, 0x71023e2368]
  DistanceKeepMove: [0x71024d8d68, 0x7102513278, 0x710242f040, 0x71023e2488]
  DistanceLostCheck: [0x71024d8d68, 0x7102513278, 0x71023e25c0]
  DoChangeOneTime: [0x71024d8d68, 0x7102513278, 0x71023e27c0]
  DogNormal: [0x71024d8d68, 0x7102513278, 0x71024105b0, 0x71023e2a70, 0x71023e28e0]
  DomesticNormal: [0x71024d8d68, 0x7102513278, 0x71024105b0, 0x71023e2a70]
  DominoRoot: [0x71024d8d68, 0x7102513278, 0x71023e2be8]
  DoorRoot: [0x71024d8d68, 0x7102513278, 0x71023e2d08]
  DoubtItemSubTargetSelect: [0x71024d8d68, 0x7102513278, 0x71023e2e28]
  DragonDropItemTargetRootAI: [0x71024d8d68, 0x7102513278, 0x71023e2f50]
  DragonElecRoot: [0x71024d8d68, 0x7102513278, 0x71023e0180, 0x71023e38c0, 0x71023e3070]
  DragonFireRoot: [0x71024d8d68, 0x7102513278, 0x71023e0180, 0x71023e38c0, 0x71023e3230]
  DragonIceRoot: [0x71024d8d68, 0x7102513278, 0x71023e0180, 0x71023e38c0, 0x71023e33c0]
  DragonIceWaitRunel: [0x71024d8d68, 0x7102513278, 0x71023e3550]
  DragonItemRoot: [0x71024d8d68, 0x7102513278, 0x71023fe9a0, 0x71023e3670]
  DragonReturn: [0x71024d8d68, 0x7102513278, 0x71023e37a0]
  DragonTurn: [0x71024d8d68, 0x7102513278, 0x71023e3a88]
  DrawnSwordBowSelect: [0x71024d8d68, 0x7102513278, 0x71023e3ba8]
  DrawnWeaponSelector: [0x71024d8d68, 0x7102513278, 0x71023e3cc8]
  DuckRoot: [0x71024d8d68, 0x7102513278, 0x7102410990, 0x71023e3de8]
  DungeonCannonBallAutoDelete: [0x71024d8d68, 0x7102513278, 0x71023e3f90]
  DungeonEntranceRoot: [0x71024d8d68, 0x7102513278, 0x71023e40b0]
  DungeonMoveTag: [0x71024d8d68, 0x7102513278, 0x71023e41d0]
  DungeonMoveTagCont: [0x71024d8d68, 0x7102513278, 0x71023e42f0]
  DungeonRemainsFire: [0x71024d8d68, 0x7102513278, 0x71023e4410]
  DungeonResetPosTag: [0x71024d8d68, 0x7102513278, 0x71023e4530]
  DungeonRotateTag: [0x71024d8d68, 0x7102513278, 0x71023e4650]
  DungeonRotateTag3D: [0x71024d8d68, 0x7102513278, 0x71023e4770]
  DungeonRotateTag4ElecApp: [0x71024d8d68, 0x7102513278, 0x71023e48a8]
  DungeonRotateTag4FireApp: [0x71024d8d68, 0x7102513278, 0x71023e4e00, 0x71023e49c8]
  DungeonRotateTag4WaterApp: [0x71024d8d68, 0x7102513278, 0x71023e4b60]
  DungeonRotateTag4WindApp: [0x71024d8d68, 0x7102513278, 0x71023e4e00, 0x71023e4c80]
  DungeonRotateTagCont: [0x71024d8d68, 0x7102513278, 0x71023e50b8, 0x71023e4f80]
  DungeonRotateTagInOrder: [0x71024d8d68, 0x7102513278, 0x71023e50b8]
  DungeonRotateTagShuttle: [0x71024d8d68, 0x7102513278, 0x71023e51d8]
  DungeonRotateTagWaterChemical: [0x71024d8d68, 0x7102513278, 0x71023e52f8]
  DynTargetStoneShootEnemyBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x7102425570, 0x71023e5418]
  DynTgBreathAttackEnemyBattle: [0x71024d8d68, 0x7102513278, 0x71023dc238, 0x71023e55a8]
  EarthReleaseAttack: [0x71024d8d68, 0x7102513278, 0x71023e5738]
  ElectricBall: [0x71024d8d68, 0x7102513278, 0x710241fc00, 0x71023e5860]
  ElectricCable: [0x71024d8d68, 0x7102513278, 0x71023e59a0]
  EnemyAngry: [0x71024d8d68, 0x7102513278, 0x71023e5ac0]
  EnemyAttackAndAway: [0x71024d8d68, 0x7102513278, 0x71023e5be0]
  EnemyBaseArrowAttack: [0x71024d8d68, 0x7102513278, 0x71023e5d00]
  EnemyBaseFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40]
  EnemyBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8]
  EnemyBattleWithAreaCheck: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x71023e6168]
  EnemyCalledAppear: [0x71024d8d68, 0x7102513278, 0x71023e62d8]
  EnemyChaseShield: [0x71024d8d68, 0x7102513278, 0x71023e6408]
  EnemyChaseTargetAndAction: [0x71024d8d68, 0x7102513278, 0x7102409ae0, 0x71023e6528]
  EnemyChemTargetAction: [0x71024d8d68, 0x7102513278, 0x71023ebb00, 0x71023e68f0]
  EnemyChemicalPowerSelect: [0x71024d8d68, 0x7102513278, 0x71023e66b0]
  EnemyChemicalSelect: [0x71024d8d68, 0x7102513278, 0x71023e67d0]
  EnemyConfuse: [0x71024d8d68, 0x7102513278, 0x71023e6a40]
  EnemyCutRope: [0x71024d8d68, 0x7102513278, 0x71023e6b60]
  EnemyDefaultReaction: [0x71024d8d68, 0x7102513278, 0x71023e6c80]
  EnemyDemoSumonRecgTgt: [0x71024d8d68, 0x7102513278, 0x71023ea688, 0x71023e6e00]
  EnemyEscape: [0x71024d8d68, 0x7102513278, 0x71023e6f48]
  EnemyEscapeMove: [0x71024d8d68, 0x7102513278, 0x71023e7068]
  EnemyEscapeRoot: [0x71024d8d68, 0x7102513278, 0x71023e71b0]
  EnemyFeintBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x71023e72d0]
  EnemyFindBadStatusFriend: [0x71024d8d68, 0x7102513278, 0x71023e7440]
  EnemyFindHorseRideTarget: [0x71024d8d68, 0x7102513278, 0x71023e7560]
  EnemyFindShootable: [0x71024d8d68, 0x7102513278, 0x71023e7680]
  EnemyFortressChat: [0x71024d8d68, 0x7102513278, 0x71023e77a0]
  EnemyFortressMgrTag: [0x71024d8d68, 0x7102513278, 0x71023e78e8]
  EnemyFortressWait: [0x71024d8d68, 0x7102513278, 0x71023ec840, 0x71023e7a38]
  EnemyFortressWatchKeepingWait: [0x71024d8d68, 0x7102513278, 0x71023ecbe0, 0x71023e7d68]
  EnemyHide: [0x71024d8d68, 0x7102513278, 0x71023e7ea0]
  EnemyHideGrass: [0x71024d8d68, 0x7102513278, 0x71023e7fc0]
  EnemyHideShootingBattle: [0x71024d8d68, 0x7102513278, 0x71023e80e0]
  EnemyHorseRide: [0x71024d8d68, 0x7102513278, 0x71024eaa00, 0x71023e8200]
  EnemyLifeSelect: [0x71024d8d68, 0x7102513278, 0x71023e83f8]
  EnemyLiftShootItem: [0x71024d8d68, 0x7102513278, 0x71023e8640]
  EnemyLifted: [0x71024d8d68, 0x7102513278, 0x71023e8518]
  EnemyLost: [0x71024d8d68, 0x7102513278, 0x71023e8760]
  EnemyMimicrySelect: [0x71024d8d68, 0x7102513278, 0x71023e8888]
  EnemyMoveBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x71023e89a8]
  EnemyMoveToGround: [0x71024d8d68, 0x7102513278, 0x71023e8b18]
  EnemyNoiseTarget: [0x71024d8d68, 0x7102513278, 0x71023e8c38]
  EnemyNotice: [0x71024d8d68, 0x7102513278, 0x71023e9068]
  EnemyNoticeActiveEnemy: [0x71024d8d68, 0x7102513278, 0x71023e9188]
  EnemyNoticeFearfulLastAttacker: [0x71024d8d68, 0x7102513278, 0x71023e9b70, 0x71023e92b0]
  EnemyNoticeFearfulTarget: [0x71024d8d68, 0x7102513278, 0x71023e9b70, 0x71023e9400]
  EnemyNoticeLimit: [0x71024d8d68, 0x7102513278, 0x71023e9538]
  EnemyNoticeSound: [0x71024d8d68, 0x7102513278, 0x71023e9658]
  EnemyNoticeSoundSensitiveTimer: [0x71024d8d68, 0x7102513278, 0x71023e9658, 0x71023e9a40, 0x71023e9788,
    0x71023e98f0]
  EnemyNoticeSoundWithUI: [0x71024d8d68, 0x7102513278, 0x71023e9658, 0x71023e9a40]
  EnemyNoticeTerror: [0x71024d8d68, 0x7102513278, 0x71023e9b70]
  EnemyPermitAttackSelect: [0x71024d8d68, 0x7102513278, 0x71023e9ca8]
  EnemyPursuingArrowBattle: [0x71024d8d68, 0x7102513278, 0x71023db690, 0x71023e9dc8]
  EnemyPursuingAttackCheck: [0x71024d8d68, 0x7102513278, 0x71023e9f00]
  EnemyPursuingBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x71023ea020]
  EnemyRandomRepeatSideStep: [0x71024d8d68, 0x7102513278, 0x71023ea190]
  EnemyRangeKeepMove: [0x71024d8d68, 0x7102513278, 0x71023ea2b0]
  EnemyRangeKeepSwimMove: [0x71024d8d68, 0x7102513278, 0x71023ea438]
  EnemyRecognizeTarget: [0x71024d8d68, 0x7102513278, 0x71023ea688, 0x71023ea558]
  EnemyRestraintCheckBattle: [0x71024d8d68, 0x7102513278, 0x71023ea7b8]
  EnemyReturnSelect: [0x71024d8d68, 0x7102513278, 0x71023ea8d8]
  EnemyRoam: [0x71024d8d68, 0x7102513278, 0x71023ea9f8]
  EnemyRoamSelect: [0x71024d8d68, 0x7102513278, 0x71023eab18]
  EnemyRoamViewItem: [0x71024d8d68, 0x7102513278, 0x71023eac38]
  EnemyRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60]
  EnemySearchHorse: [0x71024d8d68, 0x7102513278, 0x71023eb0b0]
  EnemySearchShieldItemFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40, 0x7102400e28, 0x71023eb1d0]
  EnemyShieldSearchOrBattle: [0x71024d8d68, 0x7102513278, 0x71023eb390]
  EnemyShootAttackExplosives: [0x71024d8d68, 0x7102513278, 0x71023e5d00, 0x71023eb4b0]
  EnemySittingTogether: [0x71024d8d68, 0x7102513278, 0x71023eb608]
  EnemySkyArrowAttack: [0x71024d8d68, 0x7102513278, 0x71023e5d00, 0x71023eb728]
  EnemySomeIgniteBattle: [0x71024d8d68, 0x7102513278, 0x71023dc238, 0x71023eb868]
  EnemySyncAttack: [0x71024d8d68, 0x7102513278, 0x71023eb9e0]
  EnemyTargetGearSelect: [0x71024d8d68, 0x7102513278, 0x71023ebc38]
  EnemyTargetInAreaSelect: [0x71024d8d68, 0x7102513278, 0x7102429c18, 0x71023ebd58]
  EnemyTargetInSightSelect: [0x71024d8d68, 0x7102513278, 0x71023ebe90]
  EnemyTimelineAI: [0x71024d8d68, 0x7102513278, 0x71024e2758, 0x71023ebfb0]
  EnemyTired: [0x71024d8d68, 0x7102513278, 0x71023ec0e8]
  EnemyTreeWeaponSearchOrBattle: [0x71024d8d68, 0x7102513278, 0x71023ec208]
  EnemyVacuumBombSelect: [0x71024d8d68, 0x7102513278, 0x71023ec5f8, 0x71023ec378]
  EnemyVacuumChangeItemSelect: [0x71024d8d68, 0x7102513278, 0x71023ec5f8, 0x71023ec378, 0x71023ec4b8]
  EnemyVacuumWeaponTypeSelect: [0x71024d8d68, 0x7102513278, 0x71023ec720]
  EnemyWaitViewItem: [0x71024d8d68, 0x7102513278, 0x71023ec840]
  EnemyWarnNoticeEndChase: [0x71024d8d68, 0x7102513278, 0x71023ecab8, 0x71023ec978]
  EnemyWarnNoticeSelect: [0x71024d8d68, 0x7102513278, 0x71023ecab8]
  EnemyWatchKeepingWait: [0x71024d8d68, 0x7102513278, 0x71023ecbe0]
  EnterFromResetSelect: [0x71024d8d68, 0x7102513278, 0x71023ecd00]
  EnvSeEmitPointRootAI: [0x71024d8d68, 0x7102513278, 0x71024fc370]
  EquipConditionSelect: [0x71024d8d68, 0x7102513278, 0x71023ece20]
  EquipHaveSelector: [0x71024d8d68, 0x7102513278, 0x71023ecf40]
  EquipShieldEnemySearchWeapon: [0x71024d8d68, 0x7102513278, 0x7102409ae0, 0x71023eaf28, 0x71023ed068]
  EquipStand: [0x71024d8d68, 0x7102513278, 0x71023ed208]
  EscapeFromTargetFrontRandomDir: [0x71024d8d68, 0x7102513278, 0x71023ed328, 0x71023ed450]
  EscapeOppositeToTargetInWater: [0x71024d8d68, 0x7102513278, 0x71023ed590]
  EscapeOrWaitSelect: [0x71024d8d68, 0x7102513278, 0x71023ed6b8]
  EternalPlayerTarget: [0x71024d8d68, 0x7102513278, 0x71023ed7d8]
  EventTagRootAI: [0x71024d8d68, 0x7102513278, 0x71024e22c8]
  EventTimeRoot: [0x71024d8d68, 0x7102513278, 0x71023ed8f8]
  ExceededImpulseCheck: [0x71024d8d68, 0x7102513278, 0x71023eda18]
  ExplodeCheck: [0x71024d8d68, 0x7102513278, 0x71023edb38]
  FirstSelect: [0x71024d8d68, 0x7102513278, 0x71023edc58]
  FishGoToAndNibble: [0x71024d8d68, 0x7102513278, 0x71023edd78]
  FishRoot: [0x71024d8d68, 0x7102513278, 0x71023dcaa8, 0x71023ede98]
  FishSafeReturn: [0x71024d8d68, 0x7102513278, 0x71023ee040]
  FixableLiftable: [0x71024d8d68, 0x7102513278, 0x710241fc00, 0x71023ee160]
  FldObjDlcHeroMapRelief: [0x71024d8d68, 0x7102513278, 0x71023ee2a8]
  FldObjIvyBurnRoot: [0x71024d8d68, 0x7102513278, 0x71023ee3c8]
  FlyInsectRoam: [0x71024d8d68, 0x7102513278, 0x71023eed08]
  FlyMoveToTarget: [0x71024d8d68, 0x7102513278, 0x71023eee28]
  FlyingEnemyBackKeepMove: [0x71024d8d68, 0x7102513278, 0x71023ee798, 0x71023ee4e8]
  FlyingEnemyDiagonallyKeepMove: [0x71024d8d68, 0x7102513278, 0x71023ee798, 0x71023eebc0, 0x71023ee638]
  FlyingEnemyFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40, 0x71023ee8d0]
  FlyingEnemyFrontKeepMove: [0x71024d8d68, 0x7102513278, 0x71023ee798, 0x71023eea88]
  ForSaleOrNot: [0x71024d8d68, 0x7102513278, 0x71023f04f8]
  ForbidDoubleNoticeSelect: [0x71024d8d68, 0x7102513278, 0x71023eef48]
  ForestGiantBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x71023ef068]
  ForestGiantBattleMove: [0x71024d8d68, 0x7102513278, 0x710242f040, 0x71023ef1d8]
  ForestGiantChanceWait: [0x71024d8d68, 0x7102513278, 0x71023ef2f8]
  ForestGiantClosestAttackSelect: [0x71024d8d68, 0x7102513278, 0x71023ef418]
  ForestGiantFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40, 0x71023f39d0, 0x71023ef538]
  ForestGiantNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x71023ef708]
  ForestGiantNoticeSound: [0x71024d8d68, 0x7102513278, 0x71023e9658, 0x71023ef968]
  ForestGiantReaction: [0x71024d8d68, 0x7102513278, 0x71023e6c80, 0x71023efa98]
  ForestGiantRecognizeTarget: [0x71024d8d68, 0x7102513278, 0x71023efc18]
  ForestGiantRoam: [0x71024d8d68, 0x7102513278, 0x71023dbb10, 0x71023efd38]
  ForestGiantRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x71023efe70]
  ForestGiantStoneShootBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x7102425570, 0x71023f0020]
  Fork2AI: [0x71024d8d68, 0x7102513278, 0x71024dc0b0, 0x71024dbb10]
  Fork2AIUpperLowerBody: [0x71024d8d68, 0x7102513278, 0x71024dc0b0, 0x71023f0198]
  Fork3AI: [0x71024d8d68, 0x7102513278, 0x71024dc0b0, 0x71024dbc30]
  Fork4AI: [0x71024d8d68, 0x7102513278, 0x71024dc0b0, 0x71024dbd50]
  Fork5AI: [0x71024d8d68, 0x7102513278, 0x71024dc0b0, 0x71024dbe70]
  Fork6AI: [0x71024d8d68, 0x7102513278, 0x71024dc0b0, 0x71024dbf90]
  ForkActionAndJoin: [0x71024d8d68, 0x7102513278, 0x71023f02b8]
  ForkBeastGanonRoot: [0x71024d8d68, 0x7102513278, 0x71024dc0b0, 0x71023f03d8]
  FreezeInWaterSelect: [0x71024d8d68, 0x7102513278, 0x71023fe3e8, 0x71023f0618]
  FriendCallAction: [0x71024d8d68, 0x7102513278, 0x71023f0750]
  FromPopPoolDamageSelect: [0x71024d8d68, 0x7102513278, 0x71023f0870]
  GambleTreasureBoxRoot: [0x71024d8d68, 0x7102513278, 0x71023f0990]
  GameDataFlagSelector: [0x71024d8d68, 0x7102513278, 0x71023f0ab0]
  GanonApproachOnFloorRoot: [0x71024d8d68, 0x7102513278, 0x71023f0bd0]
  GanonApproachOnWallRoot: [0x71024d8d68, 0x7102513278, 0x71023f0cf8]
  GanonBattleOnFloorRoot: [0x71024d8d68, 0x7102513278, 0x71023f0e18]
  GanonBattleOnWallRoot: [0x71024d8d68, 0x7102513278, 0x71023f0f38]
  GanonBattleRoot: [0x71024d8d68, 0x7102513278, 0x71023f1058]
  GanonBeamOnFloor: [0x71024d8d68, 0x7102513278, 0x7102402a10, 0x71023f1178]
  GanonBeamOnWall: [0x71024d8d68, 0x7102513278, 0x7102402a10, 0x71023f12e8]
  GanonBeastDying: [0x71024d8d68, 0x7102513278, 0x71023f1b80, 0x71023f1440]
  GanonBeastMoveSelect: [0x71024d8d68, 0x7102513278, 0x71023f1598]
  GanonBeastReaction: [0x71024d8d68, 0x7102513278, 0x71023f16b8]
  GanonBeastRoot: [0x71024d8d68, 0x7102513278, 0x71023f17d8]
  GanonBeastStairState: [0x71024d8d68, 0x7102513278, 0x71023f1940]
  GanonBeastSufferChanger: [0x71024d8d68, 0x7102513278, 0x71023f1a60]
  GanonBeastWait: [0x71024d8d68, 0x7102513278, 0x71023f1b80]
  GanonDemoMoveSeqTwoAction: [0x71024d8d68, 0x7102513278, 0x71023f1ca8]
  GanonFarAttackRootOnWall: [0x71024d8d68, 0x7102513278, 0x71023f1dc8]
  GanonGrudgeNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x71023f20c8]
  GanonNearAttackOnFloorRoot: [0x71024d8d68, 0x7102513278, 0x71023f2328]
  GanonNormalRoot: [0x71024d8d68, 0x7102513278, 0x71023f2448]
  GanonReaction: [0x71024d8d68, 0x7102513278, 0x71023e6c80, 0x71023f2568]
  GanonRecognizeRoot: [0x71024d8d68, 0x7102513278, 0x71023f26e8]
  GanonShockRoot: [0x71024d8d68, 0x7102513278, 0x71023f2808]
  GanonStateChangeRoot: [0x71024d8d68, 0x7102513278, 0x71023f2928]
  GanonThrowActorRoot: [0x71024d8d68, 0x7102513278, 0x71023f2a48]
  GanonThrowMultiActorRoot: [0x71024d8d68, 0x7102513278, 0x71023f2a48, 0x71023f2b90]
  GanonWeaponAttackOnFloor: [0x71024d8d68, 0x7102513278, 0x71023f2cf0]
  GearRangeSelect: [0x71024d8d68, 0x7102513278, 0x71023f2e10]
  GelEnemyReaction: [0x71024d8d68, 0x7102513278, 0x71023e6c80, 0x71023f2f30]
  GerudoHeroSoulGiftRoot: [0x71024d8d68, 0x7102513278, 0x71023fa530, 0x71023f30b0]
  GerudoQueenBattle: [0x71024d8d68, 0x7102513278, 0x71023f3230]
  GetItemBrightBow: [0x71024d8d68, 0x7102513278, 0x71023f3498, 0x71023f3350]
  GetItemNormal: [0x71024d8d68, 0x7102513278, 0x71023f3498]
  GiantArmorAsWeakPoint: [0x71024d8d68, 0x7102513278, 0x71023f3770, 0x71023f35c8]
  GiantEarthReleaseAttack: [0x71024d8d68, 0x7102513278, 0x71023e5738, 0x71023f3890]
  GiantEscapeFromDamageWater: [0x71024d8d68, 0x7102513278, 0x71023f3b88]
  GiantNavMoveTarget: [0x71024d8d68, 0x7102513278, 0x71023f3ca8]
  GiantNavMoveWithFirstAction: [0x71024d8d68, 0x7102513278, 0x71023f3ca8, 0x71023f3df8]
  GiantRoamSelect: [0x71024d8d68, 0x7102513278, 0x71023f3f38]
  GiantSleepNormal: [0x71024d8d68, 0x7102513278, 0x71024232c8, 0x71023f4058]
  GiantSleepReaction: [0x71024d8d68, 0x7102513278, 0x71023f41e8]
  GiantStoneShootAngrySelect: [0x71024d8d68, 0x7102513278, 0x71023f4308]
  GolemChemicalResetSelect: [0x71024d8d68, 0x7102513278, 0x71023f4428]
  GolemChemicalVanishedSelect: [0x71024d8d68, 0x7102513278, 0x71023f4548]
  GolemClimbedSelect: [0x71024d8d68, 0x7102513278, 0x71023f4668]
  GolemClimbedTimeSelect: [0x71024d8d68, 0x7102513278, 0x71023f4788]
  GolemFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40, 0x71023f39d0, 0x71023f48a8]
  GolemFireREnemyBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x71023f4a60]
  GolemNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x71023f4bd0]
  GolemNoticeWorry: [0x71024d8d68, 0x7102513278, 0x71023f4e30]
  GolemPartRoot: [0x71024d8d68, 0x7102513278, 0x710241a8a8, 0x71023f4f50]
  GolemPartsSelect: [0x71024d8d68, 0x7102513278, 0x71023f5090]
  GolemRWeakPointRoot: [0x71024d8d68, 0x7102513278, 0x710242fbd0, 0x71023f5a78, 0x71023f5660]
  GolemReaction: [0x71024d8d68, 0x7102513278, 0x71023f51b0]
  GolemRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x71023f54e8, 0x71023f52f8]
  GolemSleepNormal: [0x71024d8d68, 0x7102513278, 0x71024232c8, 0x71023f5808]
  GolemSleepTypeSelect: [0x71024d8d68, 0x7102513278, 0x71023f5958]
  GolemWeakPointRoot: [0x71024d8d68, 0x7102513278, 0x710242fbd0, 0x71023f5a78]
  GolfBallRoot: [0x71024d8d68, 0x7102513278, 0x71023f5bd8]
  GoronCannon: [0x71024d8d68, 0x7102513278, 0x71023daf50, 0x71023f5d00]
  GoronHeroDescendentRoot: [0x71024d8d68, 0x7102513278, 0x71023f5e50]
  GoronHeroSoulGiftRoot: [0x71024d8d68, 0x7102513278, 0x71023fa530, 0x71023f6050]
  GroundAngleSelect: [0x71024d8d68, 0x7102513278, 0x71023f6190]
  GroundHitSelect: [0x71024d8d68, 0x7102513278, 0x71023f62b0]
  GrudgeEyeball: [0x71024d8d68, 0x7102513278, 0x71023f63d0]
  GuardAndRevenge: [0x71024d8d68, 0x7102513278, 0x71023f6528]
  GuardFlagSelect: [0x71024d8d68, 0x7102513278, 0x71023f6648]
  GuardFrequencySelect: [0x71024d8d68, 0x7102513278, 0x71023f6768]
  GuardianBattleBeamAttack: [0x71024d8d68, 0x7102513278, 0x71023f6af8, 0x71023f6c18]
  GuardianBeam: [0x71024d8d68, 0x7102513278, 0x71023f6d50]
  GuardianBeamAttack: [0x71024d8d68, 0x7102513278, 0x71023f73c0, 0x71023f6e70]
  GuardianBezierRailMove: [0x71024d8d68, 0x7102513278, 0x71023dadf8, 0x7102416f28, 0x71023f7010]
  GuardianChase: [0x71024d8d68, 0x7102513278, 0x71023f6af8, 0x71023f7180]
  GuardianCloseBattle: [0x71024d8d68, 0x7102513278, 0x71023f6af8, 0x71023f72a0]
  GuardianDown: [0x71024d8d68, 0x7102513278, 0x71023f6af8, 0x71023f74e0]
  GuardianMini2ndBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x71023f7928, 0x71023f7600]
  GuardianMini2ndBattleAttack: [0x71024d8d68, 0x7102513278, 0x71023f7798]
  GuardianMiniBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x71023f7928]
  GuardianMiniBattleStateSelect: [0x71024d8d68, 0x7102513278, 0x71023f7aa8]
  GuardianMiniBeam: [0x71024d8d68, 0x7102513278, 0x710241f608, 0x71023f7bc8]
  GuardianMiniBeamAttack: [0x71024d8d68, 0x7102513278, 0x71023dc238, 0x71023f9d88, 0x71023f7cf0]
  GuardianMiniBeamAttackMove: [0x71024d8d68, 0x7102513278, 0x71023f7e90]
  GuardianMiniBeamAttackNoWait: [0x71024d8d68, 0x7102513278, 0x71023dc238, 0x71023f9d88, 0x71023f7cf0,
    0x71023f7fb0]
  GuardianMiniBeamToExplosives: [0x71024d8d68, 0x7102513278, 0x71023dc238, 0x71023f9d88, 0x71023f7cf0,
    0x71023f8150]
  GuardianMiniBlownOff: [0x71024d8d68, 0x7102513278, 0x71023f82d8]
  GuardianMiniChangeWeapon: [0x71024d8d68, 0x7102513278, 0x71023f8420]
  GuardianMiniFinalBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x71023f8578]
  GuardianMiniFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40, 0x7102400e28, 0x71023f8758]
  GuardianMiniGroggy: [0x71024d8d68, 0x7102513278, 0x71023f8918]
  GuardianMiniGuardSelect: [0x71024d8d68, 0x7102513278, 0x71023f8a38]
  GuardianMiniNoWeaponSelect: [0x71024d8d68, 0x7102513278, 0x71023f8b58]
  GuardianMiniOnNoNavMesh: [0x71024d8d68, 0x7102513278, 0x71023f8c78]
  GuardianMiniRangeKeepMove: [0x71024d8d68, 0x7102513278, 0x71023ea2b0, 0x71023f8d98]
  GuardianMiniReaction: [0x71024d8d68, 0x7102513278, 0x71023e6c80, 0x71023f8ef0]
  GuardianMiniRecognizeTarget: [0x71024d8d68, 0x7102513278, 0x71023f9070]
  GuardianMiniRollingAttackMove: [0x71024d8d68, 0x7102513278, 0x71023ea2b0, 0x71023f9190]
  GuardianMiniRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x71023f9358]
  GuardianMiniTargetOnScalffold: [0x71024d8d68, 0x7102513278, 0x71023f9530]
  GuardianMiniTransformSelect: [0x71024d8d68, 0x7102513278, 0x71023f9650]
  GuardianMiniViewWait: [0x71024d8d68, 0x7102513278, 0x710242e4b0, 0x71023f9770]
  GuardianRoam: [0x71024d8d68, 0x7102513278, 0x71023f6af8, 0x71023f98d8]
  GuardianRoot: [0x71024d8d68, 0x7102513278, 0x71023f6af8, 0x71023f99f8]
  GuardianTargetLost: [0x71024d8d68, 0x7102513278, 0x71023f6af8, 0x71023f9b48]
  GuardianWait: [0x71024d8d68, 0x7102513278, 0x71023f6af8, 0x71023f9c68]
  GyroActivateTerminal: [0x71024d8d68, 0x7102513278, 0x71023f9f08]
  HangedLamp: [0x71024d8d68, 0x7102513278, 0x71023fa058]
  HasPreActorSelect: [0x71024d8d68, 0x7102513278, 0x71023fa1b0]
  HaveNoWeaponSelector: [0x71024d8d68, 0x7102513278, 0x71023ecf40, 0x71023fa2d0]
  HeightSelectTwoAction: [0x71024d8d68, 0x7102513278, 0x71023fa410]
  HeroSoulGiftRoot: [0x71024d8d68, 0x7102513278, 0x71023fa530]
  HiddenKorokRoot: [0x71024d8d68, 0x7102513278, 0x71023fa670]
  HiddenOctarockFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023fa7e0]
  HiddenOctarockNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x71023fa900]
  HiddenOctarockSearchTarget: [0x71024d8d68, 0x7102513278, 0x71023fab60]
  HomePosDistanceSelector: [0x71024d8d68, 0x7102513278, 0x71023fac80]
  Horse: [0x71024d8d68, 0x7102513278, 0x71023fada0]
  HorseCheckLineOfSightSelector: [0x71024d8d68, 0x7102513278, 0x71023dd248, 0x71023faec0]
  HorseDamageTypeSelect: [0x71024d8d68, 0x7102513278, 0x71023fb000]
  HorseEscapeRouteRailAI: [0x71024d8d68, 0x7102513278, 0x71024ea080]
  HorseFollow: [0x71024d8d68, 0x7102513278, 0x71023fb120]
  HorseGoToEatAI: [0x71024d8d68, 0x7102513278, 0x71024ea1a0]
  HorseLoopTargetAndWaitAI: [0x71024d8d68, 0x7102513278, 0x7102518ba0, 0x71024ea2c0]
  HorseMoveToPlayer: [0x71024d8d68, 0x7102513278, 0x71023fb120, 0x71023fb268]
  HorseNatureSelectAI: [0x71024d8d68, 0x7102513278, 0x71024ea400]
  HorseNotRidden: [0x71024d8d68, 0x7102513278, 0x71023fb3b0]
  HorsePrevRiddenStatusSelector: [0x71024d8d68, 0x7102513278, 0x71023fb520]
  HorseReins: [0x71024d8d68, 0x7102513278, 0x71023fb640]
  HorseRiddenAI: [0x71024d8d68, 0x7102513278, 0x71024ea580]
  HorseRiddenByEnemyAI: [0x71024d8d68, 0x7102513278, 0x71024ea6a0]
  HorseRiddenByNPC: [0x71024d8d68, 0x7102513278, 0x71024e84a8, 0x71023fb760]
  HorseRideChargeAttack: [0x71024d8d68, 0x7102513278, 0x71023fb9c8]
  HorseRideChaseBattleAttackMove: [0x71024d8d68, 0x7102513278, 0x71023fbda0, 0x71023fbb18]
  HorseRideChaseBattleMove: [0x71024d8d68, 0x7102513278, 0x71023fbda0, 0x71023fbc68]
  HorseRideDamagedSelector: [0x71024d8d68, 0x7102513278, 0x71023fbf08]
  HorseRideEnemyBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x71023fc028]
  HorseRideEnemyFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40, 0x71023fc198]
  HorseRideEnemyNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x71023fc350]
  HorseRideMoveTo: [0x71024d8d68, 0x7102513278, 0x71023fc610]
  HorseRideRangeKeepMove: [0x71024d8d68, 0x7102513278, 0x71023fc790]
  HorseRideShooterFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40, 0x710241ffe0, 0x71023fc8b0]
  HorseRideShootingEnemyBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x710241ee58, 0x71023fca80]
  HorseRideTurn: [0x71024d8d68, 0x7102513278, 0x71023fcc10]
  HorseWanderAI: [0x71024d8d68, 0x7102513278, 0x71024ea7c0]
  IAIAttack: [0x71024d8d68, 0x7102513278, 0x71023fcd30]
  IbutsuWaterFallRoot: [0x71024d8d68, 0x7102513278, 0x71023fce70]
  IceEnemyFeintBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x71023e72d0, 0x71023fcf90]
  IceMakerBlock: [0x71024d8d68, 0x7102513278, 0x71023fd118]
  InDemoSelect: [0x71024d8d68, 0x7102513278, 0x71023fd3c8]
  InForceEnemyLostAreaSelect: [0x71024d8d68, 0x7102513278, 0x71023fd4e8]
  InTerritorySelector: [0x71024d8d68, 0x7102513278, 0x71023fdc60]
  InWaterKeepSelect: [0x71024d8d68, 0x7102513278, 0x71023fe3e8, 0x71023fe2c8]
  InWaterSelect: [0x71024d8d68, 0x7102513278, 0x71023fe3e8]
  IncredibleAction: [0x71024d8d68, 0x7102513278, 0x71023fd270]
  InitFromInCarryBoxSelect: [0x71024d8d68, 0x7102513278, 0x71023fd608]
  InsectEscape: [0x71024d8d68, 0x7102513278, 0x71023fd728]
  InsectFairyRoot: [0x71024d8d68, 0x7102513278, 0x71023dcaa8, 0x71023fdae8, 0x71023fd848]
  InsectRoam: [0x71024d8d68, 0x7102513278, 0x71023fd9c8]
  InsectRoot: [0x71024d8d68, 0x7102513278, 0x71023dcaa8, 0x71023fdae8]
  InvincibleHiddenOctarock: [0x71024d8d68, 0x7102513278, 0x71023fdd80]
  InvisibleKorokRailMove: [0x71024d8d68, 0x7102513278, 0x7102400678, 0x71023fe150]
  IsPlacementAreaEnemy: [0x71024d8d68, 0x7102513278, 0x71023fe508]
  ItemAmiiboRoot: [0x71024d8d68, 0x7102513278, 0x71023fe628]
  ItemConductor: [0x71024d8d68, 0x7102513278, 0x71023fe748]
  ItemOnTree: [0x71024d8d68, 0x7102513278, 0x71023fe9a0, 0x71023fe868]
  ItemRoot: [0x71024d8d68, 0x7102513278, 0x71023fe9a0]
  JumpAttack: [0x71024d8d68, 0x7102513278, 0x71023fead0]
  JustAvoidFinishWait: [0x71024d8d68, 0x7102513278, 0x71023febf0]
  KakarikoKokkoTimeline: [0x71024d8d68, 0x7102513278, 0x71024e2758, 0x71023d5dd8, 0x71023fed10]
  KeepBackSelect: [0x71024d8d68, 0x7102513278, 0x71023fee60]
  KeeseDieSelect: [0x71024d8d68, 0x7102513278, 0x71023e1ea8, 0x71023e2108, 0x71023e2238, 0x71023fef80]
  KeeseHangOnCeil: [0x71024d8d68, 0x7102513278, 0x71023ff0c8]
  KeeseNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x71023ff1e8]
  KeeseRoam: [0x71024d8d68, 0x7102513278, 0x71023ff448]
  KeeseSwarmNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x71023ff568]
  KeeseSwarmRoam: [0x71024d8d68, 0x7102513278, 0x71023deb00, 0x71023ff7c8]
  KeyLockedShutter: [0x71024d8d68, 0x7102513278, 0x71023ff910]
  KokkoAngry: [0x71024d8d68, 0x7102513278, 0x71023e06a0, 0x71023ffa30]
  KokkoAngryTargetSelect: [0x71024d8d68, 0x7102513278, 0x71023ffb88]
  KokkoEscapeAI: [0x71024d8d68, 0x7102513278, 0x71023d58c0, 0x71023d5198, 0x71023ffca8]
  KokkoRoot: [0x71024d8d68, 0x7102513278, 0x7102410990, 0x71023ffdf0]
  KorokAnswerResponceRoot: [0x71024d8d68, 0x7102513278, 0x71023fffb8]
  KorokFlowerColorRoot: [0x71024d8d68, 0x7102513278, 0x71024000d8]
  KorokFlowerRoot: [0x71024d8d68, 0x7102513278, 0x71024001f8]
  KorokGoalTimerRootAI: [0x71024d8d68, 0x7102513278, 0x7102400318]
  KorokPinWheelRoot: [0x71024d8d68, 0x7102513278, 0x7102400438]
  KorokPotRootAI: [0x71024d8d68, 0x7102513278, 0x7102400558]
  KorokStartStandRoot: [0x71024d8d68, 0x7102513278, 0x71024007d8]
  KorokStoneLift: [0x71024d8d68, 0x7102513278, 0x710241fc00, 0x71024008f8]
  KorokTargetRailMove: [0x71024d8d68, 0x7102513278, 0x7102400678, 0x7102400a38]
  LOSFurthestHitPointFinder: [0x71024d8d68, 0x7102513278, 0x7102403c18]
  LandHumEnemyFindBait: [0x71024d8d68, 0x7102513278, 0x7102409ae0, 0x7102400b98]
  LandHumEnemyFindBaitWeapon: [0x71024d8d68, 0x7102513278, 0x7102400d08]
  LandHumEnemyFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40, 0x7102400e28]
  LandHumEnemyNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x7102400fe8]
  LandHumEnemyThrowWeapon: [0x71024d8d68, 0x7102513278, 0x71024013f0]
  LandHumEnemyUnarmedBattle: [0x71024d8d68, 0x7102513278, 0x7102409ae0, 0x7102401510]
  LandHumGourmandEnemyNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x7102400fe8, 0x7102401680]
  LandingChemicalBall: [0x71024d8d68, 0x7102513278, 0x71024018e0]
  LargeCannonAttackRoot: [0x71024d8d68, 0x7102513278, 0x7102401a00]
  LastAttackerSelect: [0x71024d8d68, 0x7102513278, 0x7102401c88]
  LastAttackerSpecialActionSelect: [0x71024d8d68, 0x7102513278, 0x7102401db0]
  LastBossBeamAttackRoot: [0x71024d8d68, 0x7102513278, 0x7102401ed0]
  LastBossDemoWarpMove: [0x71024d8d68, 0x7102513278, 0x7102401ff0]
  LastBossDemoWarpRoot: [0x71024d8d68, 0x7102513278, 0x7102402120]
  LastBossNormalWarpRoot: [0x71024d8d68, 0x7102513278, 0x7102402260]
  LastBossRailWarpRoot: [0x71024d8d68, 0x7102513278, 0x7102402260, 0x71024023a8]
  LastBossRoot: [0x71024d8d68, 0x7102513278, 0x7102402668]
  LastBossShieldBash: [0x71024d8d68, 0x7102513278, 0x7102402788]
  LastBossShootGaleArrowRoot: [0x71024d8d68, 0x7102513278, 0x7102402a10, 0x71024028b8]
  LastBossShootNormalArrowRoot: [0x71024d8d68, 0x7102513278, 0x7102402a10]
  LastBossSwordWhirlSlash: [0x71024d8d68, 0x7102513278, 0x7102402b78]
  LastBossThunderRoot: [0x71024d8d68, 0x7102513278, 0x7102402c98]
  LastBossWeaponAttackRoot: [0x71024d8d68, 0x7102513278, 0x7102402db8]
  LeadToTarget: [0x71024d8d68, 0x7102513278, 0x7102402ff8]
  LeaderDistanceSelector: [0x71024d8d68, 0x7102513278, 0x7102402ed8]
  LeaveFromTarget: [0x71024d8d68, 0x7102513278, 0x7102403178]
  LifeChangeDemoCaller: [0x71024d8d68, 0x7102513278, 0x7102403298]
  Lifted: [0x71024d8d68, 0x7102513278, 0x7102403418]
  LimitedTimeredActorCreator: [0x71024d8d68, 0x7102513278, 0x7102403538]
  LineCheckTag: [0x71024d8d68, 0x7102513278, 0x7102403658]
  LinkTagCheck: [0x71024d8d68, 0x7102513278, 0x71024039d8]
  LinkageEnemyNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x7102403778]
  LizalfosBreathAttack: [0x71024d8d68, 0x7102513278, 0x7102403af8]
  LumberjackFallenTree: [0x71024d8d68, 0x7102513278, 0x7102403d38]
  LumberjackTree: [0x71024d8d68, 0x7102513278, 0x7102403ed8]
  LynelArrowAttackSelect: [0x71024d8d68, 0x7102513278, 0x71024041d8, 0x71024040a0]
  LynelArrowAttackSelectOnce: [0x71024d8d68, 0x7102513278, 0x71024041d8, 0x71024042f8]
  LynelArrowBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x7102404418]
  LynelAttackThroughMove: [0x71024d8d68, 0x7102513278, 0x7102404588]
  LynelBackStepFromTarget: [0x71024d8d68, 0x7102513278, 0x71024046a8]
  LynelBattle: [0x71024d8d68, 0x7102513278, 0x71024047c8]
  LynelChaseBattleMove: [0x71024d8d68, 0x7102513278, 0x71024048f0]
  LynelCloseBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x7102404a10]
  LynelDirSelect: [0x71024d8d68, 0x7102513278, 0x7102404b80]
  LynelDistanceLostCheck: [0x71024d8d68, 0x7102513278, 0x71023e25c0, 0x7102404ca8]
  LynelEscapeFromTarget: [0x71024d8d68, 0x7102513278, 0x7102404de8]
  LynelFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40, 0x7102404f08]
  LynelLineMoveAttack: [0x71024d8d68, 0x7102513278, 0x71024050c0]
  LynelNavMoveNoStop: [0x71024d8d68, 0x7102513278, 0x71024051e0]
  LynelNavMoveTarget: [0x71024d8d68, 0x7102513278, 0x71024051e0, 0x7102405310]
  LynelNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x7102400fe8, 0x7102405458]
  LynelNoticeAttacked: [0x71024d8d68, 0x7102513278, 0x71024056e8]
  LynelNoticeTerror: [0x71024d8d68, 0x7102513278, 0x71023e9b70, 0x7102405808]
  LynelOnNoNavMeshPos: [0x71024d8d68, 0x7102513278, 0x7102405940]
  LynelRecognizeTarget: [0x71024d8d68, 0x7102513278, 0x7102405a60]
  LynelRepeatAttack: [0x71024d8d68, 0x7102513278, 0x7102405b80]
  LynelRoam: [0x71024d8d68, 0x7102513278, 0x7102405ca0]
  LynelRodeo: [0x71024d8d68, 0x7102513278, 0x7102405dc0]
  LynelRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x7102405ee0]
  LynelTackleMove: [0x71024d8d68, 0x7102513278, 0x71024060c0]
  LynelThreeBreathAttack: [0x71024d8d68, 0x7102513278, 0x71024061e0]
  LynelWarp: [0x71024d8d68, 0x7102513278, 0x7102406300]
  MagneGearRoot: [0x71024d8d68, 0x7102513278, 0x71024065a0]
  MagneGrabSelect: [0x71024d8d68, 0x7102513278, 0x7102406820]
  MagneGrabbedPartsRangeSelector: [0x71024d8d68, 0x7102513278, 0x710240a5f8, 0x71024066c0]
  MagneShaftRoot: [0x71024d8d68, 0x7102513278, 0x7102406ec0, 0x7102406b28, 0x7102406940]
  MagneSliderBlockRootThunder: [0x71024d8d68, 0x7102513278, 0x7102406ec0, 0x7102406b28, 0x7102406ce0]
  MagneStickRoot: [0x71024d8d68, 0x7102513278, 0x7102406ec0]
  Magnetglove: [0x71024d8d68, 0x7102513278, 0x7102407088]
  MainFieldDungeonSelect: [0x71024d8d68, 0x7102513278, 0x71024071a8]
  MasquaradeSubTargetSelect: [0x71024d8d68, 0x7102513278, 0x71024072c8]
  MasterSwordBase100EnemyRoot: [0x71024d8d68, 0x7102513278, 0x71024073e8]
  MasterSwordRoot: [0x71024d8d68, 0x7102513278, 0x71024e29b0, 0x7102407508]
  MergedDungeonPartsRoot: [0x71024d8d68, 0x7102513278, 0x71024076b8]
  MessageReceiveCheck: [0x71024d8d68, 0x7102513278, 0x7102407928, 0x71024077d8]
  MessageReceiveCheckBasic: [0x71024d8d68, 0x7102513278, 0x7102407928]
  MessageReceiveCheckEveryFrame: [0x71024d8d68, 0x7102513278, 0x7102407928, 0x7102407a60]
  MetalObjectBuried: [0x71024d8d68, 0x7102513278, 0x7102407b98]
  MetalObjectFixed: [0x71024d8d68, 0x7102513278, 0x7102407cb8]
  MimicCliffStopEnemyNormal: [0x71024d8d68, 0x7102513278, 0x71023df790, 0x7102407dd8]
  MimicEnemyFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40, 0x7102407f10]
  MimicEnemyNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x71024080c8]
  MimicFlagSelect: [0x71024d8d68, 0x7102513278, 0x7102408328]
  MimicryResetCheck: [0x71024d8d68, 0x7102513278, 0x7102408448]
  MiniGolemLifted: [0x71024d8d68, 0x7102513278, 0x71023e8518, 0x7102408568]
  MiniGolemReaction: [0x71024d8d68, 0x7102513278, 0x71023e6c80, 0x71024086a8]
  MiniGolemRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x71023f54e8, 0x7102408828]
  MiniGolemSleep: [0x71024d8d68, 0x7102513278, 0x71024232c8, 0x71024089a0]
  MoonAI: [0x71024d8d68, 0x7102513278, 0x7102408af0]
  MoonNameTag: [0x71024d8d68, 0x7102513278, 0x7102408c10]
  MoriblinSpearBattle: [0x71024d8d68, 0x7102513278, 0x7102408d30]
  MoriblinSpearNearBattle: [0x71024d8d68, 0x7102513278, 0x7102408e50]
  MoriblinUnarmedBattle: [0x71024d8d68, 0x7102513278, 0x7102408f70]
  MotorcycleRoot: [0x71024d8d68, 0x7102513278, 0x71023fb8a8, 0x7102409090]
  MoveAndFreeFallGondola: [0x71024d8d68, 0x7102513278, 0x71023dadf8, 0x7102409200]
  MoveAroundTarget: [0x71024d8d68, 0x7102513278, 0x7102409358]
  MoveLOSFeedback: [0x71024d8d68, 0x7102513278, 0x7102409478]
  MoveRemainsElectric: [0x71024d8d68, 0x7102513278, 0x7102416a98, 0x7102409598]
  MoveToCameraFrontXZ: [0x71024d8d68, 0x7102513278, 0x7102409728]
  MoveToTargetCollisionFeedback: [0x71024d8d68, 0x7102513278, 0x7102409848]
  NPCAlert: [0x71024d8d68, 0x7102513278, 0x710240a9a8]
  NPCArtistRoot: [0x71024d8d68, 0x7102513278, 0x710240c370, 0x710240aad8]
  NPCAttack: [0x71024d8d68, 0x7102513278, 0x710240ac20]
  NPCAttentionAI: [0x71024d8d68, 0x7102513278, 0x710240ad40]
  NPCAvoid: [0x71024d8d68, 0x7102513278, 0x710240ae68]
  NPCChasePlayerBlueFire: [0x71024d8d68, 0x7102513278, 0x710240af88]
  NPCClerkRoot: [0x71024d8d68, 0x7102513278, 0x710240c370, 0x710240b0a8]
  NPCConfront: [0x71024d8d68, 0x7102513278, 0x710240b1d0]
  NPCConfrontEnemy: [0x71024d8d68, 0x7102513278, 0x710240b2f0]
  NPCGerudoQueenRoot: [0x71024d8d68, 0x7102513278, 0x710240c370, 0x710240b530]
  NPCHeartsRoot: [0x71024d8d68, 0x7102513278, 0x710240c370, 0x710240b690]
  NPCHorseRide: [0x71024d8d68, 0x7102513278, 0x71024eaa00, 0x710240b7b8]
  NPCHorseRideWait: [0x71024d8d68, 0x7102513278, 0x710240b8f0]
  NPCMamonoShopRoot: [0x71024d8d68, 0x7102513278, 0x710240c370, 0x710240ba10]
  NPCMove: [0x71024d8d68, 0x7102513278, 0x710240bb38]
  NPCMoveToRailPoint: [0x71024d8d68, 0x7102513278, 0x710240bdd0]
  NPCReaction: [0x71024d8d68, 0x7102513278, 0x710240bef0]
  NPCReturnAnchor: [0x71024d8d68, 0x7102513278, 0x710240c010]
  NPCReturnRestPosRoot: [0x71024d8d68, 0x7102513278, 0x710240c130]
  NPCRoam: [0x71024d8d68, 0x7102513278, 0x710240c250]
  NPCRoot: [0x71024d8d68, 0x7102513278, 0x710240c370]
  NPCRunaway: [0x71024d8d68, 0x7102513278, 0x710240c4e8]
  NPCSearch: [0x71024d8d68, 0x7102513278, 0x710240c728]
  NPCSurprised: [0x71024d8d68, 0x7102513278, 0x710240c848]
  NPCSuspend: [0x71024d8d68, 0x7102513278, 0x710240c968]
  NPCTalkBalloon: [0x71024d8d68, 0x7102513278, 0x710240ca88]
  NPCTerrorAI: [0x71024d8d68, 0x7102513278, 0x71024ee330]
  NPCTimeline: [0x71024d8d68, 0x7102513278, 0x71024e2758, 0x710240cdf0]
  NPCTravel: [0x71024d8d68, 0x7102513278, 0x710240c608, 0x710240cf28]
  NPCTravelerRoot: [0x71024d8d68, 0x7102513278, 0x710240c370, 0x710240d060]
  NPCWander: [0x71024d8d68, 0x7102513278, 0x710240c608, 0x710240d188]
  NavMeshTurnAwayFromHitPos: [0x71024d8d68, 0x7102513278, 0x71024099c0]
  NavMoveNearTarget: [0x71024d8d68, 0x7102513278, 0x7102409d98, 0x7102409c50]
  NavMoveTarget: [0x71024d8d68, 0x7102513278, 0x7102409d98]
  NavMoveTargetClosestPoint: [0x71024d8d68, 0x7102513278, 0x7102409d98, 0x7102409c50, 0x7102409ed8]
  NavMoveTargetWithJumpWater: [0x71024d8d68, 0x7102513278, 0x7102409d98, 0x710240a038]
  NavViewMove: [0x71024d8d68, 0x7102513278, 0x710240a178]
  NearCreateAppearTypeSelect: [0x71024d8d68, 0x7102513278, 0x710240a298]
  NearCreateSelect: [0x71024d8d68, 0x7102513278, 0x710240a3b8]
  NewMannequinRoot: [0x71024d8d68, 0x7102513278, 0x710240a4d8]
  NormalHumanEquipableShield: [0x71024d8d68, 0x7102513278, 0x710240a740]
  NoticePartsRangeSelector: [0x71024d8d68, 0x7102513278, 0x710240a5f8, 0x710240a860]
  NpcDemoRoot: [0x71024d8d68, 0x7102513278, 0x710240b410]
  NpcMoveToAnchor: [0x71024d8d68, 0x7102513278, 0x710240bcb0]
  NpcTebaRoot: [0x71024d8d68, 0x7102513278, 0x710240cba8]
  NpcTebaTrainingRoot: [0x71024d8d68, 0x7102513278, 0x710240c370, 0x710240ccc8]
  NushiEscapeSelector: [0x71024d8d68, 0x7102513278, 0x710240d2b8]
  NushiWarp: [0x71024d8d68, 0x7102513278, 0x710240d3d8]
  OctarockBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x710241ee58, 0x710240d4f8]
  OctarockHideEscape: [0x71024d8d68, 0x7102513278, 0x710240d7b8, 0x710240d670]
  OctarockOptionRoot: [0x71024d8d68, 0x7102513278, 0x710241fc00, 0x710240d8e8]
  OctarockReaction: [0x71024d8d68, 0x7102513278, 0x71023e6c80, 0x710240da60]
  OctarockRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x710242de98, 0x710240dbe0]
  OctarockServiceHideWait: [0x71024d8d68, 0x7102513278, 0x710240dda8]
  OctarockWaterWait: [0x71024d8d68, 0x7102513278, 0x710240dec8]
  OnCliffEnemyBattle: [0x71024d8d68, 0x7102513278, 0x710240e138]
  OnCliffSurfaceSelect: [0x71024d8d68, 0x7102513278, 0x710240e260]
  OnCliffViewWait: [0x71024d8d68, 0x7102513278, 0x710242e4b0, 0x710240e380]
  OnEnterEventModeSelect: [0x71024d8d68, 0x7102513278, 0x710240e668]
  OnNavFaceSelect: [0x71024d8d68, 0x7102513278, 0x710240e788]
  OnRagdollSelect: [0x71024d8d68, 0x7102513278, 0x710240e8a8]
  OneMemoryMagicBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x7102406420, 0x710240e4d0]
  OptionalWeaponAI: [0x71024d8d68, 0x7102513278, 0x71024e23e8]
  OutOfScreen: [0x71024d8d68, 0x7102513278, 0x710240e9c8]
  PartHaveSelect: [0x71024d8d68, 0x7102513278, 0x710240eae8]
  PartsNoticeSelect: [0x71024d8d68, 0x7102513278, 0x710240ec08]
  PartsSleepSelect: [0x71024d8d68, 0x7102513278, 0x710240ed28]
  PauseMenuPlayerRoot: [0x71024d8d68, 0x7102513278, 0x710240ee48]
  PickShootItemRoot: [0x71024d8d68, 0x7102513278, 0x710240ef68]
  PillarCrack: [0x71024d8d68, 0x7102513278, 0x710240f088]
  PipeDrawing: [0x71024d8d68, 0x7102513278, 0x710240f1a8]
  PlayerAttack: [0x71024d8d68, 0x7102513278, 0x7102468440]
  PlayerBarrierBlow: [0x71024d8d68, 0x7102513278, 0x7102468560]
  PlayerBeetle: [0x71024d8d68, 0x7102513278, 0x7102468680]
  PlayerCamera: [0x71024d8d68, 0x7102513278, 0x71024687a0]
  PlayerCaught: [0x71024d8d68, 0x7102513278, 0x71024688c0]
  PlayerClimb: [0x71024d8d68, 0x7102513278, 0x71024689e0]
  PlayerCutJump: [0x71024d8d68, 0x7102513278, 0x7102468b00]
  PlayerDead: [0x71024d8d68, 0x7102513278, 0x7102468c20]
  PlayerDemoRoot: [0x71024d8d68, 0x7102513278, 0x7102468d40]
  PlayerGrab: [0x71024d8d68, 0x7102513278, 0x7102468e60]
  PlayerItem: [0x71024d8d68, 0x7102513278, 0x7102468f80]
  PlayerLadder: [0x71024d8d68, 0x7102513278, 0x71024690a0]
  PlayerNavDestinationMove: [0x71024d8d68, 0x7102513278, 0x71024691c0]
  PlayerNormal: [0x71024d8d68, 0x7102513278, 0x71024692e0]
  PlayerRideHorse: [0x71024d8d68, 0x7102513278, 0x7102469400]
  PlayerRoot: [0x71024d8d68, 0x7102513278, 0x7102469588]
  PlayerSetTarget: [0x71024d8d68, 0x7102513278, 0x710240f408]
  PlayerSit: [0x71024d8d68, 0x7102513278, 0x71024696a8]
  PlayerSwim: [0x71024d8d68, 0x7102513278, 0x71024697c8]
  PlayerWaterFall: [0x71024d8d68, 0x7102513278, 0x71024698e8]
  PlayerZoraRide: [0x71024d8d68, 0x7102513278, 0x7102469a08]
  PointWindTagRoot: [0x71024d8d68, 0x7102513278, 0x710240f528]
  PracticeGuardianMiniNormal: [0x71024d8d68, 0x7102513278, 0x710240f648]
  PreSleepCheck: [0x71024d8d68, 0x7102513278, 0x710240f768]
  PrevASEndSeq: [0x71024d8d68, 0x7102513278, 0x710240f888]
  PrevASOR2SelectTwo: [0x71024d8d68, 0x7102513278, 0x710240f9a8]
  PrevASSelect: [0x71024d8d68, 0x7102513278, 0x710240fac8]
  PrevASSkipSeq: [0x71024d8d68, 0x7102513278, 0x710241e4e0, 0x710240fbe8]
  PrevSomeASSelect: [0x71024d8d68, 0x7102513278, 0x710240fd20]
  PreyChemicalDeadReaction: [0x71024d8d68, 0x7102513278, 0x710240fe40]
  PreyDead: [0x71024d8d68, 0x7102513278, 0x710240ff60]
  PreyDeadCauseSelector: [0x71024d8d68, 0x7102513278, 0x71024100a8]
  PreyDefWanderAI: [0x71024d8d68, 0x7102513278, 0x71024e85d8, 0x71024101c8]
  PreyDropItemRoot: [0x71024d8d68, 0x7102513278, 0x7102410990, 0x7102410300]
  PreyLookAtTarget: [0x71024d8d68, 0x7102513278, 0x7102410490]
  PreyNormal: [0x71024d8d68, 0x7102513278, 0x71024105b0]
  PreyReaction: [0x71024d8d68, 0x7102513278, 0x7102410860]
  PreyRoot: [0x71024d8d68, 0x7102513278, 0x7102410990]
  PreyStun: [0x71024d8d68, 0x7102513278, 0x7102410c00]
  PriestBossActorCloneRoot: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x7102411aa8, 0x7102411828,
    0x7102410e48]
  PriestBossActorEnemyRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x7102410fc8]
  PriestBossActorGiantFouthRoot: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x7102411aa8, 0x7102411360,
    0x71024111b0]
  PriestBossActorGiantRoot: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x7102411aa8, 0x7102411360]
  PriestBossActorNormalMode: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x71024115f0]
  PriestBossActorNormalRoot: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x7102411aa8, 0x7102411828]
  PriestBossActorPhaseSecondStart: [0x71024d8d68, 0x7102513278, 0x7102411988]
  PriestBossAfterImageRoot: [0x71024d8d68, 0x7102513278, 0x7102411bd8]
  PriestBossAttackGrave: [0x71024d8d68, 0x7102513278, 0x71023d9408, 0x7102411cf8]
  PriestBossBananaMode: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x7102411e30]
  PriestBossBeamExplode: [0x71024d8d68, 0x7102513278, 0x710241f608, 0x71023da140, 0x71023da288,
    0x7102411f80]
  PriestBossBlowoffDamageSelect: [0x71024d8d68, 0x7102513278, 0x71024120c8]
  PriestBossBlowoffReadyReaction: [0x71024d8d68, 0x7102513278, 0x71024121e8]
  PriestBossBowEquiped: [0x71024d8d68, 0x7102513278, 0x71023dbd78, 0x7102412308]
  PriestBossCircleFormationRush: [0x71024d8d68, 0x7102513278, 0x7102413228, 0x7102412440]
  PriestBossCircleFormationShoot: [0x71024d8d68, 0x7102513278, 0x7102413228, 0x71024125d8]
  PriestBossCloneBananaMode: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x7102411e30, 0x7102412758]
  PriestBossCloneBulletRoot: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x7102412898]
  PriestBossDamageTypeSelect: [0x71024d8d68, 0x7102513278, 0x71024129c0]
  PriestBossEyeBeamFourth: [0x71024d8d68, 0x7102513278, 0x7102412ae0, 0x7102412c68]
  PriestBossEyeBeamStandAim: [0x71024d8d68, 0x7102513278, 0x7102412e18]
  PriestBossEyeBeamThird: [0x71024d8d68, 0x7102513278, 0x7102412ae0, 0x7102412f38]
  PriestBossFastWarpAttack: [0x71024d8d68, 0x7102513278, 0x7102422770, 0x71024130c0]
  PriestBossGiantDeadSelector: [0x71024d8d68, 0x7102513278, 0x71024133d0]
  PriestBossGiantDownSeq: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x71024134f0]
  PriestBossGiantEnemyRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x7102410fc8, 0x7102413618]
  PriestBossGiantReaction: [0x71024d8d68, 0x7102513278, 0x71023e6c80, 0x7102413970]
  PriestBossGiantStageRotRoot: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x7102413c40]
  PriestBossGiantStageRotate: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x7102413af0]
  PriestBossIAIAttack: [0x71024d8d68, 0x7102513278, 0x71023fcd30, 0x7102413d70]
  PriestBossIronBall: [0x71024d8d68, 0x7102513278, 0x7102413ed8]
  PriestBossIronBallRoot: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x7102414080]
  PriestBossIronBallStageRotate: [0x71024d8d68, 0x7102513278, 0x7102413ed8, 0x7102414240]
  PriestBossLineFormationAppear: [0x71024d8d68, 0x7102513278, 0x710241e4e0, 0x7102414388]
  PriestBossLineFormationFall: [0x71024d8d68, 0x7102513278, 0x7102413228, 0x71024144c0]
  PriestBossLineFormationRush: [0x71024d8d68, 0x7102513278, 0x7102413228, 0x7102414640]
  PriestBossMakeClone: [0x71024d8d68, 0x7102513278, 0x71024147c0]
  PriestBossMetaAIRoot: [0x71024d8d68, 0x7102513278, 0x7102414948, 0x7102414a68]
  PriestBossNormalMoveSelector: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x7102414ba0]
  PriestBossNormalQuickRecover: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x7102414cc8]
  PriestBossNormalReaction: [0x71024d8d68, 0x7102513278, 0x71023e6c80, 0x7102414df0]
  PriestBossPhaseFinish: [0x71024d8d68, 0x7102513278, 0x7102414948, 0x7102414fa8, 0x7102415100]
  PriestBossPhaseFirst: [0x71024d8d68, 0x7102513278, 0x7102414948, 0x7102414fa8, 0x7102415270]
  PriestBossPhaseFourth: [0x71024d8d68, 0x7102513278, 0x7102414948, 0x7102414fa8, 0x71024153d8]
  PriestBossPhaseSecond: [0x71024d8d68, 0x7102513278, 0x7102414948, 0x7102414fa8, 0x7102415530]
  PriestBossPhaseSelector: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x7102415690]
  PriestBossPhaseThird: [0x71024d8d68, 0x7102513278, 0x7102414948, 0x7102414fa8, 0x71024157b8]
  PriestBossShadowCloneEnemyRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x7102410fc8, 0x7102415938]
  PriestBossShadowCloneThrow: [0x71024d8d68, 0x7102513278, 0x7102415cb0]
  PriestBossShadowClonesReaction: [0x71024d8d68, 0x7102513278, 0x71023e6c80, 0x7102415b30]
  PriestBossSlowWarpMove: [0x71024d8d68, 0x7102513278, 0x7102415e28]
  PriestBossStageRotationSelector: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x7102415f48]
  PriestBossSynchroMode: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x7102416070]
  PriestBossWalkAttack: [0x71024d8d68, 0x7102513278, 0x71024161f8]
  PriestBossWarpToSafePos: [0x71024d8d68, 0x7102513278, 0x7102410d20, 0x7102416318]
  PriestIronBallAttack: [0x71024d8d68, 0x7102513278, 0x7102416440]
  PullOutTree: [0x71024d8d68, 0x7102513278, 0x7102416560]
  RailMoveObject: [0x71024d8d68, 0x7102513278, 0x71024166d8]
  RailMoveObjectOneWay: [0x71024d8d68, 0x7102513278, 0x7102416820]
  RailMoveRandomIgnoreStop: [0x71024d8d68, 0x7102513278, 0x71023dadf8, 0x7102416f28, 0x7102416940]
  RailMoveRemains: [0x71024d8d68, 0x7102513278, 0x7102416a98]
  RailMoveRemainsBGCamera: [0x71024d8d68, 0x7102513278, 0x7102416a98, 0x7102416c28]
  RailMoveRndIgnrStopPlayAS: [0x71024d8d68, 0x7102513278, 0x71023dadf8, 0x7102416f28, 0x7102416940,
    0x7102416db8]
  RailMoveWithClose: [0x71024d8d68, 0x7102513278, 0x71023dadf8, 0x7102416f28]
  RandomSelectThreeAction: [0x71024d8d68, 0x7102513278, 0x71024171d0, 0x7102417080]
  RandomSelectTwoAction: [0x71024d8d68, 0x7102513278, 0x7102417458, 0x7102417308]
  RangeAttackSelect: [0x71024d8d68, 0x7102513278, 0x7102417590]
  RangeCheckSeqTwoAction: [0x71024d8d68, 0x7102513278, 0x710241ddd8, 0x71024176b0]
  RangeHeightSelectTwoAction: [0x71024d8d68, 0x7102513278, 0x7102417b78, 0x7102417dd8, 0x71024177e8]
  RangeLineReachSelectTwoAction: [0x71024d8d68, 0x7102513278, 0x7102417b78, 0x7102417dd8, 0x7102417920]
  RangeObstacleCheck: [0x71024d8d68, 0x7102513278, 0x7102417a58]
  RangeSelectThreeAction: [0x71024d8d68, 0x7102513278, 0x7102417b78, 0x7102417ca8]
  RangeSelectTwoAction: [0x71024d8d68, 0x7102513278, 0x7102417b78, 0x7102417dd8]
  RapidAttackAllowSelect: [0x71024d8d68, 0x7102513278, 0x7102417f10]
  ReduceDistanceToTargetPos: [0x71024d8d68, 0x7102513278, 0x7102418030]
  ReferenceNPCViewWithDynAS: [0x71024d8d68, 0x7102513278, 0x7102418150]
  ReflectableBulletThrown: [0x71024d8d68, 0x7102513278, 0x7102418608, 0x7102418270]
  ReflectableEscape: [0x71024d8d68, 0x7102513278, 0x71024183b8]
  ReflectableIgnitedThrown: [0x71024d8d68, 0x7102513278, 0x7102418608, 0x71024184d8]
  RegistedActorNumTwoSelect: [0x71024d8d68, 0x7102513278, 0x7102418738, 0x7102418860]
  RemainElectricCannonBeamAttack: [0x71024d8d68, 0x7102513278, 0x71024189a0]
  RemainElectricCannonRoot: [0x71024d8d68, 0x7102513278, 0x7102401b28, 0x7102418ac0]
  RemainsElectricBGCamera: [0x71024d8d68, 0x7102513278, 0x7102416a98, 0x7102416c28, 0x7102418c38]
  RemainsElectricRoot: [0x71024d8d68, 0x7102513278, 0x71024195d0, 0x7102418de0]
  RemainsFireBattleMove: [0x71024d8d68, 0x7102513278, 0x7102418f58]
  RemainsFireBattleStepSelector: [0x71024d8d68, 0x7102513278, 0x7102419078]
  RemainsFireDroneNormal: [0x71024d8d68, 0x7102513278, 0x71023dadf8, 0x7102419198]
  RemainsFireRoot: [0x71024d8d68, 0x7102513278, 0x71024195d0, 0x7102419378]
  RemainsLithograph: [0x71024d8d68, 0x7102513278, 0x71024194b0]
  RemainsWaterBattleRoot: [0x71024d8d68, 0x7102513278, 0x7102419708]
  RemainsWaterBulletController: [0x71024d8d68, 0x7102513278, 0x7102419828]
  RemainsWaterChaseBulletRoot: [0x71024d8d68, 0x7102513278, 0x7102419948]
  RemainsWaterNormal: [0x71024d8d68, 0x7102513278, 0x7102419a68]
  RemainsWaterRoot: [0x71024d8d68, 0x7102513278, 0x71024195d0, 0x7102419b88]
  RemainsWaterWeakPointRoot: [0x71024d8d68, 0x7102513278, 0x7102419cf0]
  RemainsWindBatteryAttack: [0x71024d8d68, 0x7102513278, 0x71023f73c0, 0x7102419e10]
  RemainsWindBatteryRoot: [0x71024d8d68, 0x7102513278, 0x7102419f30]
  RemainsWindRoot: [0x71024d8d68, 0x7102513278, 0x71024195d0, 0x710241a050]
  RememberMesOneActorEnemyRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x710241a190]
  RemoteBomb: [0x71024d8d68, 0x7102513278, 0x710241a308]
  RepeatByLargeDamage: [0x71024d8d68, 0x7102513278, 0x710241a428]
  RestLifeSelect: [0x71024d8d68, 0x7102513278, 0x710241a548]
  RestreintTired: [0x71024d8d68, 0x7102513278, 0x710241a668]
  ReturnFromReactionSelect: [0x71024d8d68, 0x7102513278, 0x710241a788]
  ReuseBulletPartsRoot: [0x71024d8d68, 0x7102513278, 0x710241a8a8]
  RideHorseAI: [0x71024d8d68, 0x7102513278, 0x71024ea8e0]
  RitoHeroSoulGiftRoot: [0x71024d8d68, 0x7102513278, 0x71023fa530, 0x710241a9d0]
  RodEnemyFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40, 0x7102400e28, 0x710241ab10]
  RodRoot: [0x71024d8d68, 0x7102513278, 0x71024e29b0, 0x710241acd8]
  RopeRoot: [0x71024d8d68, 0x7102513278, 0x710241ae58]
  RuinGuardianRoot: [0x71024d8d68, 0x7102513278, 0x710241af78]
  RupeeRabbitNormal: [0x71024d8d68, 0x7102513278, 0x71024105b0, 0x710241b098]
  SafeMoveAroundTarget: [0x71024d8d68, 0x7102513278, 0x710241b230]
  SandfallWithSound: [0x71024d8d68, 0x7102513278, 0x710241b350]
  SandwormAttackMove: [0x71024d8d68, 0x7102513278, 0x710241b4a8]
  SandwormBattle: [0x71024d8d68, 0x7102513278, 0x710241b5c8]
  SandwormBlownOff: [0x71024d8d68, 0x7102513278, 0x710241b6e8]
  SandwormCircleMoveTarget: [0x71024d8d68, 0x7102513278, 0x710241b808]
  SandwormFindTarget: [0x71024d8d68, 0x7102513278, 0x710241b928]
  SandwormLost: [0x71024d8d68, 0x7102513278, 0x71023e8760, 0x710241ba48]
  SandwormNavSearchWait: [0x71024d8d68, 0x7102513278, 0x710241bb88]
  SandwormNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x71023d99c0, 0x710241bca8]
  SandwormNoticeSound: [0x71024d8d68, 0x7102513278, 0x710241bf20]
  SandwormRNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x71023d99c0, 0x710241bca8, 0x710241c1c0]
  SandwormRRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x710241c708]
  SandwormReaction: [0x71024d8d68, 0x7102513278, 0x71023e6c80, 0x710241c040]
  SandwormRoam: [0x71024d8d68, 0x7102513278, 0x710241c438]
  SandwormRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x710241c558]
  SandwormStun: [0x71024d8d68, 0x7102513278, 0x710241c8c0]
  SelfXRotSelector: [0x71024d8d68, 0x7102513278, 0x710241c9e0]
  SeqAnimalAttack: [0x71024d8d68, 0x7102513278, 0x710241cb00]
  SeqAtHitAction: [0x71024d8d68, 0x7102513278, 0x710241e4e0, 0x710241cc20]
  SeqCloseDistTwoAction: [0x71024d8d68, 0x7102513278, 0x710241e4e0, 0x710241cd58]
  SeqDynamicTimeredTwoAction: [0x71024d8d68, 0x7102513278, 0x710241e270, 0x710241ce90]
  SeqFirstPointTwo: [0x71024d8d68, 0x7102513278, 0x710241cfe0]
  SeqGroundHit: [0x71024d8d68, 0x7102513278, 0x710241d100]
  SeqGroundHitAssassinBoss: [0x71024d8d68, 0x7102513278, 0x710241d100, 0x710241d220]
  SeqHiddenOctarockSearch: [0x71024d8d68, 0x7102513278, 0x710241d340]
  SeqIfElseAction: [0x71024d8d68, 0x7102513278, 0x710241d460]
  SeqIfFailAction: [0x71024d8d68, 0x7102513278, 0x710241d580]
  SeqNextMessage: [0x71024d8d68, 0x7102513278, 0x710241e4e0, 0x710241d6a0]
  SeqOctarockAttack: [0x71024d8d68, 0x7102513278, 0x710241def8, 0x710241d808]
  SeqOctarockWigReaction: [0x71024d8d68, 0x7102513278, 0x710241def8, 0x710241d940]
  SeqPredictOctarockAttack: [0x71024d8d68, 0x7102513278, 0x710241da60]
  SeqPursuit: [0x71024d8d68, 0x7102513278, 0x710241e4e0, 0x710241db80]
  SeqRandomRepeat: [0x71024d8d68, 0x7102513278, 0x710241dcb8]
  SeqTargetTwoAction: [0x71024d8d68, 0x7102513278, 0x710241ddd8]
  SeqThreeAction: [0x71024d8d68, 0x7102513278, 0x710241def8]
  SeqTimeredAction: [0x71024d8d68, 0x7102513278, 0x710241e018]
  SeqTimeredPlusRandomTwoAction: [0x71024d8d68, 0x7102513278, 0x710241e270, 0x710241e138]
  SeqTimeredTwoAction: [0x71024d8d68, 0x7102513278, 0x710241e270]
  SeqTrgPartsNotice: [0x71024d8d68, 0x7102513278, 0x710241e4e0, 0x710241e3a8]
  SeqTwoAction: [0x71024d8d68, 0x7102513278, 0x710241e4e0]
  SeqTwoLineReachableTargetAction: [0x71024d8d68, 0x7102513278, 0x710241e630, 0x710241e768]
  SeqTwoWeakPointOnFirstDo: [0x71024d8d68, 0x7102513278, 0x710241e4e0, 0x710241e8a0]
  SetPartBind: [0x71024d8d68, 0x7102513278, 0x710241e9d8]
  SetTargetPosForAngryKokko: [0x71024d8d68, 0x7102513278, 0x710241eaf8]
  SetTargetPosForFlyThroughMove: [0x71024d8d68, 0x7102513278, 0x710241ec18]
  SetTargetPosToPlayer: [0x71024d8d68, 0x7102513278, 0x710241ed38]
  ShootingEnemyBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x710241ee58]
  ShootingEnemyFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40, 0x710241ffe0, 0x710241efd0]
  ShootingStarRoot: [0x71024d8d68, 0x7102513278, 0x710241f188]
  ShutterFence: [0x71024d8d68, 0x7102513278, 0x710241f2a8]
  SignalFlowchartRootAI: [0x71024d8d68, 0x7102513278, 0x71024e2518]
  SignalSendingMagneStickAcceptor: [0x71024d8d68, 0x7102513278, 0x710241f3c8]
  SignaledSpotBgmTrigger: [0x71024d8d68, 0x7102513278, 0x71024fc490]
  SimpleASBridge: [0x71024d8d68, 0x7102513278, 0x710241f4e8]
  SimpleEnemyNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x710241f730]
  SimpleEscapeFromTarget: [0x71024d8d68, 0x7102513278, 0x710241f990]
  SimpleKokkoRoot: [0x71024d8d68, 0x7102513278, 0x710241fae0]
  SimpleLiftable: [0x71024d8d68, 0x7102513278, 0x710241fc00]
  SimpleLiftableDLC: [0x71024d8d68, 0x7102513278, 0x710241fd40]
  SimpleLineBeam: [0x71024d8d68, 0x7102513278, 0x710241fe60]
  SimpleShootingEnemyFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40, 0x710241ffe0]
  SiteBossApproachRoot: [0x71024d8d68, 0x7102513278, 0x7102420198]
  SiteBossArrowRainAttack: [0x71024d8d68, 0x7102513278, 0x7102421ff0, 0x7102421bc8, 0x71024202c0]
  SiteBossAttackRoot: [0x71024d8d68, 0x7102513278, 0x71024204d8]
  SiteBossBigFlameBall: [0x71024d8d68, 0x7102513278, 0x71023f1ee8, 0x7102420bc0, 0x71024205f8]
  SiteBossBlowOff: [0x71024d8d68, 0x7102513278, 0x7102420810]
  SiteBossBowChildDeviceRoot: [0x71024d8d68, 0x7102513278, 0x7102420930]
  SiteBossBowRoot: [0x71024d8d68, 0x7102513278, 0x7102421d88, 0x7102420a50]
  SiteBossFlameBall: [0x71024d8d68, 0x7102513278, 0x71023f1ee8, 0x7102420bc0]
  SiteBossGaleArrowRoot: [0x71024d8d68, 0x7102513278, 0x71024315a8, 0x7102420da0]
  SiteBossIceSplinterRoot: [0x71024d8d68, 0x7102513278, 0x71023f1ee8, 0x7102420f38]
  SiteBossLswordAttackRoot: [0x71024d8d68, 0x7102513278, 0x7102421168]
  SiteBossLswordFireBallRoot: [0x71024d8d68, 0x7102513278, 0x7102421288]
  SiteBossLswordRoot: [0x71024d8d68, 0x7102513278, 0x7102421d88, 0x71024213a8]
  SiteBossLswordTornadoRoot: [0x71024d8d68, 0x7102513278, 0x71024214d8]
  SiteBossNormalRoot: [0x71024d8d68, 0x7102513278, 0x71024215f8]
  SiteBossPierceBulletAttack: [0x71024d8d68, 0x7102513278, 0x7102421ff0, 0x7102421718]
  SiteBossReaction: [0x71024d8d68, 0x7102513278, 0x71023e6c80, 0x71024218d0]
  SiteBossRecognizeRoot: [0x71024d8d68, 0x7102513278, 0x7102402508, 0x7102421a50]
  SiteBossReflectArrowRoot: [0x71024d8d68, 0x7102513278, 0x7102421ff0, 0x7102421bc8]
  SiteBossShootArrowRoot: [0x71024d8d68, 0x7102513278, 0x7102421ec0]
  SiteBossShootNormalArrowRoot: [0x71024d8d68, 0x7102513278, 0x7102421ff0]
  SiteBossSmallDamageRoot: [0x71024d8d68, 0x7102513278, 0x71024221b8]
  SiteBossSpearAttackRoot: [0x71024d8d68, 0x7102513278, 0x71024222d8]
  SiteBossSpearLifeSelector: [0x71024d8d68, 0x7102513278, 0x7102422400]
  SiteBossSpearRoot: [0x71024d8d68, 0x7102513278, 0x7102421d88, 0x7102422520]
  SiteBossSpearThrow: [0x71024d8d68, 0x7102513278, 0x7102422650]
  SiteBossSwordApproachRoot: [0x71024d8d68, 0x7102513278, 0x7102422770]
  SiteBossSwordAttackRoot: [0x71024d8d68, 0x7102513278, 0x71024228c0]
  SiteBossSwordIronPileRoot: [0x71024d8d68, 0x7102513278, 0x71024229e0]
  SiteBossSwordRailApproach: [0x71024d8d68, 0x7102513278, 0x7102422770, 0x7102422b00]
  SiteBossSwordRoot: [0x71024d8d68, 0x7102513278, 0x7102421d88, 0x7102422c50]
  SiteBossSwordSeqThreeAI: [0x71024d8d68, 0x7102513278, 0x7102422d80]
  SiteBossSwordWeapon: [0x71024d8d68, 0x7102513278, 0x71024e29b0, 0x71023dda40, 0x7102422ea0]
  SiteBossThrowIceRoot: [0x71024d8d68, 0x7102513278, 0x7102423038]
  SleepBedRoot: [0x71024d8d68, 0x7102513278, 0x7102423158]
  SleepSelect: [0x71024d8d68, 0x7102513278, 0x7102423418]
  SnowBallNormal: [0x71024d8d68, 0x7102513278, 0x710241fc00, 0x71023ee160, 0x7102423538]
  SnowOctarockBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x7102423698]
  SoundTriggerTag: [0x71024d8d68, 0x7102513278, 0x71024e2638]
  SpearWeaponSelect: [0x71024d8d68, 0x7102513278, 0x7102423808]
  SpotBgmTrigger: [0x71024d8d68, 0x7102513278, 0x71024fc5b0]
  StalEnemyBlownOff: [0x71024d8d68, 0x7102513278, 0x7102423928]
  StalEnemyChasePart: [0x71024d8d68, 0x7102513278, 0x7102423a48]
  StalEnemyDoShootPartSelect: [0x71024d8d68, 0x7102513278, 0x7102423b68]
  StalEnemyGrabShootOwnPart: [0x71024d8d68, 0x7102513278, 0x7102423c88]
  StalEnemyNoHeadWait: [0x71024d8d68, 0x7102513278, 0x7102423da8]
  StalEnemyReaction: [0x71024d8d68, 0x7102513278, 0x71023e6c80, 0x7102423ec8]
  StalEnemyRoot: [0x71024d8d68, 0x7102513278, 0x7102424048]
  StalEnemySleep: [0x71024d8d68, 0x7102513278, 0x71024232c8, 0x71024241e8]
  StalGiantEnemyReaction: [0x71024d8d68, 0x7102513278, 0x71023e6c80, 0x71023efa98, 0x7102424338]
  StalGiantEnemyRoot: [0x71024d8d68, 0x7102513278, 0x7102424048, 0x71024244d0]
  StalGiantSleepNormal: [0x71024d8d68, 0x7102513278, 0x7102424620]
  StalHeadLifted: [0x71024d8d68, 0x7102513278, 0x7102403418, 0x7102424770]
  StalHeadPartRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x71024248a8]
  StalPartCatch: [0x71024d8d68, 0x7102513278, 0x7102424a20]
  StalPartNormal: [0x71024d8d68, 0x7102513278, 0x7102424b40]
  StalPartRoot: [0x71024d8d68, 0x7102513278, 0x7102424c60]
  StalPartsHasSelect: [0x71024d8d68, 0x7102513278, 0x7102424db8]
  Stole: [0x71024d8d68, 0x7102513278, 0x7102424ed8]
  StoneBall_BRoot: [0x71024d8d68, 0x7102513278, 0x7102425000]
  StoneOctarockBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x710241ee58, 0x7102425170]
  StoneOctarockGuardNearTarget: [0x71024d8d68, 0x7102513278, 0x71023fe008, 0x71023fdea0, 0x71024252e8]
  StoneOctarockWait: [0x71024d8d68, 0x7102513278, 0x7102425450]
  StoneShootEnemyBattle: [0x71024d8d68, 0x7102513278, 0x71023e5ff8, 0x7102425570]
  StoneStickRoot: [0x71024d8d68, 0x7102513278, 0x71024256e8]
  StopTimerObserver: [0x71024d8d68, 0x7102513278, 0x7102425820]
  StraightMove: [0x71024d8d68, 0x7102513278, 0x7102425940]
  StunBossReaction: [0x71024d8d68, 0x7102513278, 0x7102425a68]
  StunWithDamageReaction: [0x71024d8d68, 0x7102513278, 0x7102425b88]
  SubsAngleSelect: [0x71024d8d68, 0x7102513278, 0x7102425ca8]
  SunAI: [0x71024d8d68, 0x7102513278, 0x7102425dc8]
  SunazarashiEscapeMove: [0x71024d8d68, 0x7102513278, 0x7102425ee8]
  SunazarashiNormal: [0x71024d8d68, 0x7102513278, 0x71024105b0, 0x7102426008]
  SunazarashiReturn: [0x71024d8d68, 0x7102513278, 0x7102426178]
  SunazarashiRoot: [0x71024d8d68, 0x7102513278, 0x7102410990, 0x7102426298]
  SunazarashiTowing: [0x71024d8d68, 0x7102513278, 0x7102426480]
  SwarmBattle: [0x71024d8d68, 0x7102513278, 0x71024265a0]
  SwarmEscapeDie: [0x71024d8d68, 0x7102513278, 0x71024266c0]
  SwarmRangeKeepCircleMove: [0x71024d8d68, 0x7102513278, 0x71024267e0]
  SwarmReaction: [0x71024d8d68, 0x7102513278, 0x7102426900]
  SwarmRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x7102426a38]
  SwarmStopTimerEscape: [0x71024d8d68, 0x7102513278, 0x71024266c0, 0x7102426bb0]
  SwimEnemyFindPlayer: [0x71024d8d68, 0x7102513278, 0x71023e5e40, 0x7102426ce8]
  SwimEnemyNormal: [0x71024d8d68, 0x7102513278, 0x71023e8d58, 0x7102426ea0]
  SwimEnemyRoam: [0x71024d8d68, 0x7102513278, 0x7102427100]
  SwitchDistance: [0x71024d8d68, 0x7102513278, 0x7102427220, 0x7102427390]
  SwitchElectric: [0x71024d8d68, 0x7102513278, 0x7102427518]
  SwitchHit: [0x71024d8d68, 0x7102513278, 0x7102427220, 0x7102427638]
  SwitchHitOnce: [0x71024d8d68, 0x7102513278, 0x7102427220, 0x7102427638, 0x71024277a8]
  SwitchLinkTagCheck: [0x71024d8d68, 0x7102513278, 0x7102427220, 0x7102427930]
  SwitchRightAndWrong: [0x71024d8d68, 0x7102513278, 0x7102427220, 0x7102427aa0]
  SwitchTimeLag: [0x71024d8d68, 0x7102513278, 0x7102427c20]
  SwitchTimeLimited: [0x71024d8d68, 0x7102513278, 0x7102427d40]
  SwitchTimer: [0x71024d8d68, 0x7102513278, 0x7102427e60]
  SwitchTorch: [0x71024d8d68, 0x7102513278, 0x7102427f80]
  SwitchWheel: [0x71024d8d68, 0x7102513278, 0x71024280a0]
  SwitchWindHit: [0x71024d8d68, 0x7102513278, 0x7102427220, 0x71024281c0]
  TargetAbsolutePos: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x7102428330]
  TargetActorDistanceSelect: [0x71024d8d68, 0x7102513278, 0x71024292a0, 0x7102428460]
  TargetActorGrabAdapter: [0x71024d8d68, 0x7102513278, 0x71024285a0]
  TargetAngerSelect: [0x71024d8d68, 0x7102513278, 0x7102428808]
  TargetAttackAttitudeTgtSelect: [0x71024d8d68, 0x7102513278, 0x7102428928, 0x7102428a58]
  TargetBaitTypeSelect: [0x71024d8d68, 0x7102513278, 0x7102428ba0]
  TargetBeatCheck: [0x71024d8d68, 0x7102513278, 0x7102428cc0]
  TargetBeatGetDrop: [0x71024d8d68, 0x7102513278, 0x7102428cc0, 0x7102428de0]
  TargetClimbSelect: [0x71024d8d68, 0x7102513278, 0x7102428f18]
  TargetDirLRInHideSelect: [0x71024d8d68, 0x7102513278, 0x7102429178, 0x7102429038]
  TargetDirLRSelect: [0x71024d8d68, 0x7102513278, 0x7102429178]
  TargetDistanceSelect: [0x71024d8d68, 0x7102513278, 0x71024292a0]
  TargetDynamicActorPos: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x71024293c8]
  TargetElevationGapSelect: [0x71024d8d68, 0x7102513278, 0x71024294f8]
  TargetExistSelect: [0x71024d8d68, 0x7102513278, 0x7102429618]
  TargetHomeDir: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x7102429870]
  TargetHomePos: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x71024299a0]
  TargetHomeRangeSelect: [0x71024d8d68, 0x7102513278, 0x710240a5f8, 0x7102429ad0]
  TargetInFanAreaSelect: [0x71024d8d68, 0x7102513278, 0x7102429c18, 0x7102429d50]
  TargetIsEquipItemSelector: [0x71024d8d68, 0x7102513278, 0x7102429e98]
  TargetKnockBackBasePos: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x7102429fb8]
  TargetLastAttackedPos: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x710242a0e8]
  TargetLastAttacker: [0x71024d8d68, 0x7102513278, 0x710242a218]
  TargetLastAttackerPos: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x710242a338]
  TargetLastDamagedPos: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x710242a468]
  TargetLostCheck: [0x71024d8d68, 0x7102513278, 0x710242a598]
  TargetMyUp: [0x71024d8d68, 0x7102513278, 0x710242a6b8]
  TargetNPCTypeSelector: [0x71024d8d68, 0x7102513278, 0x710242a7d8]
  TargetOnMovableNavmeshSelect: [0x71024d8d68, 0x7102513278, 0x710242a8f8]
  TargetPartsPos: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x710242aa18]
  TargetPickedItem: [0x71024d8d68, 0x7102513278, 0x71023dfee8, 0x710242ab48]
  TargetPlayerPos: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x710242ac90]
  TargetPosAnchorOffsetSelf: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x710242adc0]
  TargetPosAnchorOffsetTarget: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x710242aef0]
  TargetPosDirLRSelect: [0x71024d8d68, 0x7102513278, 0x710242b020]
  TargetPosDynParamRotFromCtrPos: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x710242b290, 0x710242b140]
  TargetPosLostCheck: [0x71024d8d68, 0x7102513278, 0x710242b3c8]
  TargetPosOffsetFromMyPos: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x710240dfe8, 0x710242b4e8]
  TargetPosOnNavFaceSelect: [0x71024d8d68, 0x7102513278, 0x710242b620]
  TargetPosRotFromMyPos: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x710242b740]
  TargetPosTracking: [0x71024d8d68, 0x7102513278, 0x710242b870]
  TargetPredictRotSpdTargetPos: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x710242b998]
  TargetRangeSelect: [0x71024d8d68, 0x7102513278, 0x710240a5f8, 0x710242bac8]
  TargetRepeat: [0x71024d8d68, 0x7102513278, 0x710242bc10]
  TargetStateSelect: [0x71024d8d68, 0x7102513278, 0x710242bd30]
  TargetTargetPos: [0x71024d8d68, 0x7102513278, 0x71024286d8, 0x710242be50]
  TargetTypeSelector: [0x71024d8d68, 0x7102513278, 0x710242bf80]
  TemperatureRandSelect: [0x71024d8d68, 0x7102513278, 0x710242c0a0]
  TerminalEnduranceWarpRoot: [0x71024d8d68, 0x7102513278, 0x710242c1c0]
  TimeControlTagRoot: [0x71024d8d68, 0x7102513278, 0x710242c2e0]
  TimeredViewWait: [0x71024d8d68, 0x7102513278, 0x710242e4b0, 0x710242c400]
  TimidityEnemyDrawback: [0x71024d8d68, 0x7102513278, 0x710242c550]
  TiredDistSelect: [0x71024d8d68, 0x7102513278, 0x710240a5f8, 0x7102429ad0, 0x710242c670]
  TornadoRoot: [0x71024d8d68, 0x7102513278, 0x710242c7d0]
  TowingPlayer: [0x71024d8d68, 0x7102513278, 0x710242c8f0, 0x710242ca48]
  TreasureBox: [0x71024d8d68, 0x7102513278, 0x710242cbf8]
  TreasureBoxRoot: [0x71024d8d68, 0x7102513278, 0x710242cd48]
  TreasureSpot: [0x71024d8d68, 0x7102513278, 0x71023dfee8, 0x710242ce68]
  TrgTargetChangeToPlayerSelect: [0x71024d8d68, 0x7102513278, 0x710242cfb0]
  TrolleyGrabbedByMagnet: [0x71024d8d68, 0x7102513278, 0x710242d0d0]
  TrolleyOnRail: [0x71024d8d68, 0x7102513278, 0x710242d1f0]
  TrolleyRoot: [0x71024d8d68, 0x7102513278, 0x710242d330]
  TurnForLookingAround: [0x71024d8d68, 0x7102513278, 0x710242d4b8]
  TurnPreAction: [0x71024d8d68, 0x7102513278, 0x710242d5d8]
  TwnObjDlcFlightTrainingTarget: [0x71024d8d68, 0x7102513278, 0x710242d6f8]
  UnarmedEnemyNoiseTarget: [0x71024d8d68, 0x7102513278, 0x7102409ae0, 0x710242d818]
  UnarmedWeaponEquipableEnemyAct: [0x71024d8d68, 0x7102513278, 0x7102409ae0, 0x71023eaf28, 0x710242d988]
  UnderWaterDepthSelect: [0x71024d8d68, 0x7102513278, 0x710242db10]
  UrbosasFuryDamageSelector: [0x71024d8d68, 0x7102513278, 0x710242dc30]
  VacuumedBombDamageSelect: [0x71024d8d68, 0x7102513278, 0x710242dd78]
  VehicleSelector: [0x71024d8d68, 0x7102513278, 0x710242e010]
  ViewChaseSound: [0x71024d8d68, 0x7102513278, 0x710242e130]
  ViewMove: [0x71024d8d68, 0x7102513278, 0x710242e370]
  ViewWait: [0x71024d8d68, 0x7102513278, 0x710242e4b0]
  ViewWaitEndWhenAimed: [0x71024d8d68, 0x7102513278, 0x710242e4b0, 0x710242c400, 0x710242e600]
  ViewWaitRiskAvoid: [0x71024d8d68, 0x7102513278, 0x710242e4b0, 0x710242e768]
  ViewWaitWithFaceView: [0x71024d8d68, 0x7102513278, 0x710242e4b0, 0x710242e8d8]
  ViewWaitWithInstDynActor: [0x71024d8d68, 0x7102513278, 0x710242e4b0, 0x710242ea28]
  ViewfrustumCheckTagRoot: [0x71024d8d68, 0x7102513278, 0x710242e250]
  WaistRotEnemyArrowAttack: [0x71024d8d68, 0x7102513278, 0x71023e5d00, 0x710242eb78]
  WaitAndFaceLeader: [0x71024d8d68, 0x7102513278, 0x710242ecb8]
  WaitForCloseOrWaterSide: [0x71024d8d68, 0x7102513278, 0x710242ef18, 0x710242edd8]
  WaitForTargetClose: [0x71024d8d68, 0x7102513278, 0x710242ef18]
  WaitNearTarget: [0x71024d8d68, 0x7102513278, 0x710242f040]
  WaitNearTargetAwarenessRange: [0x71024d8d68, 0x7102513278, 0x710242f160]
  WaitPartsSleep: [0x71024d8d68, 0x7102513278, 0x710242f280]
  WarpActivateTerminal: [0x71024d8d68, 0x7102513278, 0x710242f3a0]
  WarpSafeTagRoot: [0x71024d8d68, 0x7102513278, 0x710242f4c0]
  WarpTagRoot: [0x71024d8d68, 0x7102513278, 0x710242f5e0]
  WaterFallWithSound: [0x71024d8d68, 0x7102513278, 0x710242f700]
  WaterSurface: [0x71024d8d68, 0x7102513278, 0x710242fab0, 0x710242f820]
  WaterSurface4RemainsLava: [0x71024d8d68, 0x7102513278, 0x710242fab0, 0x710242f820, 0x710242f968]
  WeakPointRoot: [0x71024d8d68, 0x7102513278, 0x710242fbd0]
  WeakStateSelecter: [0x71024d8d68, 0x7102513278, 0x710242fd98]
  WeaponEquipEnemyWakeUp: [0x71024d8d68, 0x7102513278, 0x710242fec0]
  WeaponEquipedAI: [0x71024d8d68, 0x7102513278, 0x71024e2890]
  WeaponHoldSelector: [0x71024d8d68, 0x7102513278, 0x710242ffe0]
  WeaponOnetimeUse: [0x71024d8d68, 0x7102513278, 0x7102430100]
  WeaponPrepareSelect: [0x71024d8d68, 0x7102513278, 0x7102430220]
  WeaponRangeKindSelect: [0x71024d8d68, 0x7102513278, 0x7102430340]
  WeaponRootAI: [0x71024d8d68, 0x7102513278, 0x71024e29b0]
  WeaponSelector: [0x71024d8d68, 0x7102513278, 0x7102430460]
  WeaponSubTypeSelect: [0x71024d8d68, 0x7102513278, 0x7102430580]
  WeaponThrowerSelector: [0x71024d8d68, 0x7102513278, 0x71024306a0]
  WeaponTrueFormSelect: [0x71024d8d68, 0x7102513278, 0x71024307c0]
  WeaponUsageSelect: [0x71024d8d68, 0x7102513278, 0x71024308e0]
  WeatherReactionCheck: [0x71024d8d68, 0x7102513278, 0x7102430a00]
  WetSelect: [0x71024d8d68, 0x7102513278, 0x7102430b20]
  WildHorseDefWanderAI: [0x71024d8d68, 0x7102513278, 0x71024eab38]
  WillBallAttackLevelSelect: [0x71024d8d68, 0x7102513278, 0x7102430c40]
  WillBallFollowAttackWithDynAng: [0x71024d8d68, 0x7102513278, 0x7102430d68, 0x7102430e90]
  WillBallOperated: [0x71024d8d68, 0x7102513278, 0x7102430fd0]
  WillBallRoot: [0x71024d8d68, 0x7102513278, 0x71024310f0]
  WindBoxPlace: [0x71024d8d68, 0x7102513278, 0x7102431210]
  WindGenerator: [0x71024d8d68, 0x7102513278, 0x7102431330]
  WindGeneratorSignal: [0x71024d8d68, 0x7102513278, 0x7102431330, 0x7102431460]
  WithoutWeaponArrow: [0x71024d8d68, 0x7102513278, 0x71024315a8]
  WizzrobeBlownOff: [0x71024d8d68, 0x7102513278, 0x7102431740]
  WizzrobeCircleMove: [0x71024d8d68, 0x7102513278, 0x71023deb00, 0x71023df198, 0x7102431860]
  WizzrobeCombat: [0x71024d8d68, 0x7102513278, 0x71024319c0]
  WizzrobeCombatMove: [0x71024d8d68, 0x7102513278, 0x7102431ae0]
  WizzrobeFindPlayer: [0x71024d8d68, 0x7102513278, 0x7102431c00]
  WizzrobeRoam: [0x71024d8d68, 0x7102513278, 0x7102431d20]
  WizzrobeRoot: [0x71024d8d68, 0x7102513278, 0x71023ead60, 0x7102431e40]
  WizzrobeWeatherMagic: [0x71024d8d68, 0x7102513278, 0x7102431fe8]
  WolfLinkAmiibo: [0x71024d8d68, 0x7102513278, 0x7102432118]
  WolfLinkBattleRoot: [0x71024d8d68, 0x7102513278, 0x7102432238]
  WolfLinkChainAttack: [0x71024d8d68, 0x7102513278, 0x7102432358]
  WolfLinkFollowPlayerRoot: [0x71024d8d68, 0x7102513278, 0x71023fb120, 0x7102432478]
  WolfLinkFollowWait: [0x71024d8d68, 0x7102513278, 0x71024325d0]
  WolfLinkGoToTarget: [0x71024d8d68, 0x7102513278, 0x71023fb120, 0x71024326f0]
  WolfLinkLeadToTarget: [0x71024d8d68, 0x7102513278, 0x7102402ff8, 0x7102432838]
  WolfLinkNormalRoot: [0x71024d8d68, 0x7102513278, 0x7102432970]
  WolfLinkReaction: [0x71024d8d68, 0x7102513278, 0x7102432ac0]
  WolfLinkRoot: [0x71024d8d68, 0x7102513278, 0x7102432c00]
  WolfLinkRushAttack: [0x71024d8d68, 0x7102513278, 0x7102432dc0]
  WolfLinkSeqAttack: [0x71024d8d68, 0x7102513278, 0x7102432ee0]
  WolfLinkShiekSensorRoot: [0x71024d8d68, 0x7102513278, 0x7102433000]
  WolfLinkWarp: [0x71024d8d68, 0x7102513278, 0x7102433120]
  YunBoCannon: [0x71024d8d68, 0x7102513278, 0x71023daf50, 0x7102433240]
  YunBoCannonBallRoot: [0x71024d8d68, 0x7102513278, 0x71023dc628, 0x71024333a0]
  ZokuchoSunazarashi: [0x71024d8d68, 0x7102513278, 0x71024334d8]
  ZoraHeroRelicBattleNormal: [0x71024d8d68, 0x7102513278, 0x7102433620]
  ZoraHeroRelicBattleRidePlayer: [0x71024d8d68, 0x7102513278, 0x7102433740]
  ZoraHeroRelicBattleRoot: [0x71024d8d68, 0x7102513278, 0x7102433860]
  ZoraHeroSoulGiftRoot: [0x71024d8d68, 0x7102513278, 0x71023fa530, 0x71024339b0]
  ZoraHeroWarp2Player: [0x71024d8d68, 0x7102513278, 0x7102433af0]
  addNoiseToTargetPos: [0x71024d8d68, 0x7102513278, 0x71023d3740]
Action:
  AIScheduleAnchor: [0x71024d8d68, 0x71025129f0, 0x71024d9b70]
  ASPlaySimpleAnmDriven: [0x71024d8d68, 0x71025129f0, 0x7102368510]
  ActivateAttackSensor: [0x71024d8d68, 0x71025129f0, 0x710235bb18]
  ActorInfoToGameDataFloat: [0x71024d8d68, 0x71025129f0, 0x7102362488]
  ActorInfoToGameDataInt: [0x71024d8d68, 0x71025129f0, 0x7102362598]
  ActorInfoToGameDataVec3: [0x71024d8d68, 0x71025129f0, 0x71023626a8]
  AddAutoPlacementCreator: [0x71024d8d68, 0x71025129f0, 0x71023627b8]
  AddNoUseTerritoryCounter: [0x71024d8d68, 0x71025129f0, 0x71023628c8]
  AddRigidBody: [0x71024d8d68, 0x71025129f0, 0x71023629d8]
  AdvanceTime: [0x71024d8d68, 0x71025129f0, 0x7102362b00]
  AirOctaFloat: [0x71024d8d68, 0x71025129f0, 0x7102362f08, 0x7102362c40]
  AirOctaMgr: [0x71024d8d68, 0x71025129f0, 0x7102362d80]
  AirOctaNoticeTurn: [0x71024d8d68, 0x71025129f0, 0x71023683d0, 0x71023a8038, 0x7102363030]
  AirOctaReactionKorog: [0x71024d8d68, 0x71025129f0, 0x7102363170]
  AirOctaWoodBridge: [0x71024d8d68, 0x71025129f0, 0x7102363280]
  AirWallAction: [0x71024d8d68, 0x71025129f0, 0x71023633f8]
  AirWallCurseGanon: [0x71024d8d68, 0x71025129f0, 0x7102363648, 0x7102363520]
  AirWallHorse: [0x71024d8d68, 0x71025129f0, 0x7102363648]
  AlarmLynelTag: [0x71024d8d68, 0x71025129f0, 0x7102363758]
  AlertNearbyEnemies: [0x71024d8d68, 0x71025129f0, 0x7102385fc8, 0x71023afe70, 0x7102363890]
  AmbushThrown: [0x71024d8d68, 0x71025129f0, 0x71023b27f8, 0x71023639d8]
  AnchorSummon: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102363b00]
  Angry: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x7102363c28]
  AnimMatrixDriven: [0x71024d8d68, 0x71025129f0, 0x7102364e90]
  AnimTimingAttackMove: [0x71024d8d68, 0x71025129f0, 0x7102364fa0]
  AnimalASPlayCheckMoveDir: [0x71024d8d68, 0x71025129f0, 0x7102385fc8, 0x7102363d50]
  AnimalASPlayWithLegTurn: [0x71024d8d68, 0x71025129f0, 0x7102385fc8, 0x7102363e68]
  AnimalEatAction: [0x71024d8d68, 0x71025129f0, 0x7102363fb0]
  AnimalElectricParalysis: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x710239ac08,
    0x71023640c8]
  AnimalFollow: [0x71024d8d68, 0x71025129f0, 0x710239ae40, 0x71023641f0]
  AnimalFreeze: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x710239af68, 0x7102364330]
  AnimalLegTurnAutoSpeed: [0x71024d8d68, 0x71025129f0, 0x7102385fc8, 0x7102364458]
  AnimalMove: [0x71024d8d68, 0x71025129f0, 0x71023646a0, 0x7102364570]
  AnimalMoveStraightTimed: [0x71024d8d68, 0x71025129f0, 0x71023647d0]
  AnimalNavMeshMove: [0x71024d8d68, 0x71025129f0, 0x71024e8fa0, 0x71023648e0]
  AnimalNoCheckMove: [0x71024d8d68, 0x71025129f0, 0x71023646a0, 0x7102364570, 0x7102364a08]
  AnimalPlayASAndKeepOnGround: [0x71024d8d68, 0x71025129f0, 0x7102385fc8, 0x71023afe70, 0x7102364b38]
  AnimalStop: [0x71024d8d68, 0x71025129f0, 0x71024e9b30, 0x7102364c50]
  AnimalTurn: [0x71024d8d68, 0x71025129f0, 0x7102385fc8, 0x71023afe70, 0x7102364d78]
  AnimeDrivenTurn: [0x71024d8d68, 0x71025129f0, 0x710235bc58]
  AnmArmorBindAction: [0x71024d8d68, 0x71025129f0, 0x71024e0250, 0x71024e0128]
  AnmBackMove: [0x71024d8d68, 0x71025129f0, 0x71023650e0]
  AnmBlownOff: [0x71024d8d68, 0x71025129f0, 0x71023651f0]
  AnmBlownOffBackward: [0x71024d8d68, 0x71025129f0, 0x71023651f0, 0x7102365310]
  AnmDamage: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a01f8, 0x71023a0338, 0x7102365448]
  AnmDirectionMove: [0x71024d8d68, 0x71025129f0, 0x71023655b8]
  AnmDrivenHover: [0x71024d8d68, 0x71025129f0, 0x71023657f0, 0x71023656c8]
  AnmDrivenHoverTurn: [0x71024d8d68, 0x71025129f0, 0x71023657f0, 0x7102365900]
  AnmDrivenMoveAttack: [0x71024d8d68, 0x71025129f0, 0x71023a4ef0, 0x7102365a10]
  AnmDrivenSpeedBackWalk: [0x71024d8d68, 0x71025129f0, 0x7102365b48]
  AnmTimingBackWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710236a5a8, 0x71023a7e08,
    0x710236a6c8, 0x7102365c58]
  AnmToRagdollDie: [0x71024d8d68, 0x71025129f0, 0x7102365dc0]
  AnmUpDownMove: [0x71024d8d68, 0x71025129f0, 0x7102365ed0]
  Appear: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x7102365fe0]
  AppearDeathCounter: [0x71024d8d68, 0x71025129f0, 0x71023660f0]
  AppearFullPouchInfo: [0x71024d8d68, 0x71025129f0, 0x7102366218]
  AppearGameOver: [0x71024d8d68, 0x71025129f0, 0x7102366328]
  AppearMagneForce: [0x71024d8d68, 0x71025129f0, 0x7102366438]
  AppearNumDungeonClearSeal: [0x71024d8d68, 0x71025129f0, 0x71023665b8]
  AppearNumHeroSeal: [0x71024d8d68, 0x71025129f0, 0x710235be88]
  AppearNumKorokNuts: [0x71024d8d68, 0x71025129f0, 0x71023666c8]
  AppearNumTargets: [0x71024d8d68, 0x71025129f0, 0x71023667d8]
  ApplyHorizontalImpulse: [0x71024d8d68, 0x71025129f0, 0x71023668e8]
  ApplyMoveImpulse: [0x71024d8d68, 0x71025129f0, 0x71023669f8]
  ApplyMoveTrigger: [0x71024d8d68, 0x71025129f0, 0x7102366b08]
  AreaActorObserveByActorTag: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x71024e3570,
    0x7102366c18]
  AreaActorObserveByGroup: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x71024e3570,
    0x7102366e08]
  AreaBase: [0x71024d8d68, 0x71025129f0, 0x7102367060]
  AreaBottomTag: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x7102367170]
  AreaCulling: [0x71024d8d68, 0x71025129f0, 0x71024d9b70]
  AreaCullingClipArea: [0x71024d8d68, 0x71025129f0, 0x71024d9b70]
  AreaFireObserve: [0x71024d8d68, 0x71025129f0, 0x71024e3ac8, 0x71024e3ac8, 0x7102367330]
  AreaHorseSpeedLimitAction: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x71024e31e0]
  AreaLocation: [0x71024d8d68, 0x71025129f0, 0x71023676d8]
  AreaObserveActorAction: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x71024e3570,
    0x71024e3398]
  AreaOutRecreateActorAction: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x71024e3748]
  AreaRecreateActorAction: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x71024e3910]
  AreaRoot: [0x71024d8d68, 0x71025129f0, 0x7102367810]
  ArmorBindAction: [0x71024d8d68, 0x71025129f0, 0x71024e0250]
  ArmorBindNodeAction: [0x71024d8d68, 0x71025129f0, 0x71024e0360]
  ArmorBindWithAS: [0x71024d8d68, 0x71025129f0, 0x71024e0250, 0x71024e0478]
  ArrowShootHoming: [0x71024d8d68, 0x71025129f0, 0x7102367bc8, 0x7102367a48]
  ArrowShootMove: [0x71024d8d68, 0x71025129f0, 0x7102367bc8]
  ArrowShootMoveForLargeObject: [0x71024d8d68, 0x71025129f0, 0x7102367bc8, 0x7102367d30]
  ArrowShootMoveWithStickOffset: [0x71024d8d68, 0x71025129f0, 0x7102367bc8, 0x7102367e98]
  ArrowSkyShootMove: [0x71024d8d68, 0x71025129f0, 0x7102367bc8, 0x7102368000]
  AscendingCurrent: [0x71024d8d68, 0x71025129f0, 0x7102368168]
  AscendingCurrentFixedSize: [0x71024d8d68, 0x71025129f0, 0x7102368168, 0x71023682a8]
  AscendingCurrentShieldable: [0x71024d8d68, 0x71025129f0, 0x7102368168, 0x710235bf98]
  AssassinBossIronBallAppear: [0x71024d8d68, 0x71025129f0, 0x7102368638]
  AssassinBossIronBallAtkWithRot: [0x71024d8d68, 0x71025129f0, 0x7102368898, 0x7102368778]
  AssassinBossIronBallAttack: [0x71024d8d68, 0x71025129f0, 0x7102368898]
  AssassinBossIronMagicChargeShot: [0x71024d8d68, 0x71025129f0, 0x71023689b8]
  AtAndBodyOnWait: [0x71024d8d68, 0x71025129f0, 0x7102368ac8, 0x710235c0d8]
  AtOnWait: [0x71024d8d68, 0x71025129f0, 0x7102368ac8]
  AtOnWaitNoHitRope: [0x71024d8d68, 0x71025129f0, 0x7102368ac8, 0x7102368bd8]
  Attack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c1890, 0x7102368ce8]
  AttackJumpToTarget: [0x71024d8d68, 0x71025129f0, 0x710239fa98, 0x710239f920, 0x7102368e30]
  AttackPartBind: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c1890, 0x7102368ce8,
    0x7102368fd8]
  AwarenessShareOnePartsASPlay: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023addd0, 0x7102369678]
  BackFlip: [0x71024d8d68, 0x71025129f0, 0x71023683d0, 0x71023697a0]
  BackStep: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x7102369e30, 0x7102369f98, 0x7102369b30]
  BackStepAttack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x7102369e30, 0x7102369f98, 0x7102369cc8]
  BackStepToTargetPos: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x7102369e30, 0x710236a100]
  BackSwim: [0x71024d8d68, 0x71025129f0, 0x71023cb4a8, 0x710236a268]
  BackToRailFromLava: [0x71024d8d68, 0x71025129f0, 0x710236a378]
  BackWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710236a5a8, 0x71023a7e08, 0x710236a488]
  BackWalkWithAS: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710236a5a8, 0x71023a7e08, 0x710236a6c8]
  BackseatKorokLight: [0x71024d8d68, 0x71025129f0, 0x7102369910]
  BackseatKorokWait: [0x71024d8d68, 0x71025129f0, 0x7102369a20]
  Balloon: [0x71024d8d68, 0x71025129f0, 0x710236a930, 0x710236a7e8]
  BasicSignalBossAwakeSleep: [0x71024d8d68, 0x71025129f0, 0x710236af68, 0x710236ab90]
  BasicSignalChangeDamping: [0x71024d8d68, 0x71025129f0, 0x710236ad28]
  BasicSignalEnemyForceNotice: [0x71024d8d68, 0x71025129f0, 0x710236af68, 0x710236ae38]
  BattleCloseDangerAvoidRun: [0x71024d8d68, 0x71025129f0, 0x7102369528, 0x7102369270, 0x710236bf18,
    0x710236b350, 0x710236b1b8]
  BattleCloseExplosivesAvoidRun: [0x71024d8d68, 0x71025129f0, 0x7102369528, 0x7102369270, 0x710236bf18,
    0x710236b350]
  BattleCloseExplosivesGuardRun: [0x71024d8d68, 0x71025129f0, 0x7102369528, 0x7102369270, 0x710236bf18,
    0x710236b350, 0x710236b4d8]
  BattleCloseGuardRun: [0x71024d8d68, 0x71025129f0, 0x7102369528, 0x7102369270, 0x710236bf18,
    0x710236b628]
  BattleCloseGuardWalk: [0x71024d8d68, 0x71025129f0, 0x7102369528, 0x7102369270, 0x710236bf18,
    0x710236b778]
  BattleCloseLevelFlyMove: [0x71024d8d68, 0x71025129f0, 0x710236b9f0, 0x710236b8c8]
  BattleCloseMeanderGuardRun: [0x71024d8d68, 0x71025129f0, 0x7102369528, 0x7102369270, 0x710236bf18,
    0x710236bc70, 0x710236bb00]
  BattleCloseMeanderRun: [0x71024d8d68, 0x71025129f0, 0x7102369528, 0x7102369270, 0x710236bf18,
    0x710236bc70]
  BattleCloseMove: [0x71024d8d68, 0x71025129f0, 0x7102369528, 0x7102369270, 0x710236bf18, 0x710236bdc8]
  BattleCloseSlippedWalk: [0x71024d8d68, 0x71025129f0, 0x7102369528, 0x71023693d8, 0x710236c068,
    0x710236c1d0]
  BattleCloseWalk: [0x71024d8d68, 0x71025129f0, 0x7102369528, 0x7102369270, 0x710236bf18, 0x710236c338]
  BattleDungeonBGMAction: [0x71024d8d68, 0x71025129f0, 0x71024fa040]
  BattleHover: [0x71024d8d68, 0x71025129f0, 0x7102391288, 0x710239d570, 0x710239d460, 0x710236c488]
  BattleLevelFlyMove: [0x71024d8d68, 0x71025129f0, 0x710236c708, 0x710236c5e0]
  BattleWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a4dc0, 0x710236c818]
  BeamMove: [0x71024d8d68, 0x71025129f0, 0x710236c948]
  BeamTailDelete: [0x71024d8d68, 0x71025129f0, 0x710236cd38]
  BeamosStaticBeam: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c1108, 0x710236cc20]
  BecomePreActor: [0x71024d8d68, 0x71025129f0, 0x710236ce48]
  BecomeSpeaker: [0x71024d8d68, 0x71025129f0, 0x710236cf58]
  BeeAttack: [0x71024d8d68, 0x71025129f0, 0x71023836f0, 0x710236d068]
  BeeDamaged: [0x71024d8d68, 0x71025129f0, 0x710236d1a0]
  BeginObservation: [0x71024d8d68, 0x71025129f0, 0x710236d2b0]
  BeltConveyor: [0x71024d8d68, 0x71025129f0, 0x710236d3c0]
  BigEnemyLocaterRoot: [0x71024d8d68, 0x71025129f0, 0x71024d9b70]
  BikeWarpEffectValueSetter: [0x71024d8d68, 0x71025129f0, 0x710235c200]
  BindActionForManyActor: [0x71024d8d68, 0x71025129f0, 0x71024e0588, 0x710236d4e8]
  BindActionUseParentPickInfo: [0x71024d8d68, 0x71025129f0, 0x71024e0588, 0x710236d4e8, 0x710236d630]
  BindOff: [0x71024d8d68, 0x71025129f0, 0x710236d778]
  BindParentAction: [0x71024d8d68, 0x71025129f0, 0x71024e0588, 0x710236d888]
  BirdEscape: [0x71024d8d68, 0x71025129f0, 0x710236dc00]
  BlowOffAttack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c1890, 0x7102368ce8,
    0x710236de70]
  BlownOff: [0x71024d8d68, 0x71025129f0, 0x71023b2020, 0x710236dd10]
  Bolt: [0x71024d8d68, 0x71025129f0, 0x710236dfa0]
  BombExplode: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710236e0e0]
  BoomerangMove: [0x71024d8d68, 0x71025129f0, 0x710236e1f0]
  BowArrowHold: [0x71024d8d68, 0x71025129f0, 0x71024e0588, 0x710236e308]
  BowArrowReload: [0x71024d8d68, 0x71025129f0, 0x71024e0588, 0x710236e438]
  BowArrowShoot: [0x71024d8d68, 0x71025129f0, 0x71024e0588, 0x710236e568]
  BowChildArrowRain: [0x71024d8d68, 0x71025129f0, 0x710236e698]
  BowChildCreate: [0x71024d8d68, 0x71025129f0, 0x710236e7a8]
  BowChildDeviceAppear: [0x71024d8d68, 0x71025129f0, 0x710236e8e0]
  BowChildDeviceGaleArrow: [0x71024d8d68, 0x71025129f0, 0x710236e9f0]
  BowChildDeviceNormal: [0x71024d8d68, 0x71025129f0, 0x710236ece0]
  BowChildReflectBullet: [0x71024d8d68, 0x71025129f0, 0x710236edf0]
  BrightBowSlowFall: [0x71024d8d68, 0x71025129f0, 0x710236ef00]
  BulletVertivalRotateOwner: [0x71024d8d68, 0x71025129f0, 0x710236f010]
  BurnDamage: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c8c18, 0x71023c6528,
    0x710236f120]
  CalcVecLengthToGameData: [0x71024d8d68, 0x71025129f0, 0x710236f248]
  CallOvserveActorTag: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x71024e3570,
    0x71024e3398, 0x710236f358]
  CameraAbyss: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102451dc0]
  CameraAiming: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x71024520d8]
  CameraAiming2: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102452258]
  CameraChase: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x71024523d8]
  CameraClimbObj: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102452558]
  CameraEdit: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71024526d8]
  CameraEventAnim: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688, 0x7102452a30,
    0x71024527e8]
  CameraEventAnimFlow: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688,
    0x7102452a30, 0x7102453130, 0x7102452ce8]
  CameraEventAnimFlowAbs: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688,
    0x7102452a30, 0x7102453130, 0x7102452f18]
  CameraEventAnimFlowForMapTower: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688,
    0x7102452a30, 0x7102453130, 0x7102452ce8, 0x7102453348]
  CameraEventConnectTypeSpecify: [0x71024d8d68, 0x71025129f0, 0x7102453578]
  CameraEventFocusDistSetting: [0x71024d8d68, 0x71025129f0, 0x7102453830, 0x7102453830]
  CameraEventGameOver: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688,
    0x7102453960]
  CameraEventIdling: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688,
    0x7102453b08]
  CameraEventLook: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688, 0x7102453e80,
    0x7102453cb0]
  CameraEventLookDirect: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688,
    0x7102453e80, 0x7102454038]
  CameraEventMove: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688, 0x71024541f0]
  CameraEventMovePos: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688,
    0x7102454568, 0x7102454398]
  CameraEventMovePosFlow: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688,
    0x7102454568, 0x71024547c0]
  CameraEventMultiTalk: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688,
    0x7102454978]
  CameraEventOverwriteFar: [0x71024d8d68, 0x71025129f0, 0x7102454b20, 0x7102454b20]
  CameraEventOverwriteNear: [0x71024d8d68, 0x71025129f0, 0x7102454c50, 0x7102454c50]
  CameraEventPermitGfxNear: [0x71024d8d68, 0x71025129f0, 0x7102454d80]
  CameraEventPlayerHideOff: [0x71024d8d68, 0x71025129f0, 0x7102454e90]
  CameraEventPlayerHideOn: [0x71024d8d68, 0x71025129f0, 0x7102454fa0]
  CameraEventPolarCoordPlayerRel: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688,
    0x71024550b0, 0x71024552c0, 0x71024555b0]
  CameraEventReserveConnectTime: [0x71024d8d68, 0x71025129f0, 0x7102455800, 0x7102455800]
  CameraEventSavePoint: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102455930]
  CameraEventTalk: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688, 0x7102455ab0]
  CameraEventTalkManualCtrl: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688,
    0x7102455ea0, 0x7102455c58]
  CameraEventTalkManualCtrlRet: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688,
    0x7102455ea0, 0x71024560d0]
  CameraEventTurn: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102453688, 0x7102456300]
  CameraFinder: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x71024564a8]
  CameraHorse: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102456628]
  CameraHorseLockOnEmpty: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x71024567a8]
  CameraKeep: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102456928]
  CameraLockOn: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102457878, 0x7102456aa8]
  CameraLockOnAimingAt: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102456cd8]
  CameraMagneCatch: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102457878, 0x7102456e58]
  CameraMotorcycle: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x71024570f8]
  CameraMotorcycleLockOnEmpty: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102457278]
  CameraRevolve: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x71024573f8]
  CameraRotRumble: [0x71024d8d68, 0x71025129f0, 0x71024e06b8]
  CameraRumble: [0x71024d8d68, 0x71025129f0, 0x71024e07c8]
  CameraRumbleLoop: [0x71024d8d68, 0x71025129f0, 0x71024e08d8]
  CameraRumbleStop: [0x71024d8d68, 0x71025129f0, 0x71024e09e8]
  CameraRumbleStopWithDamping: [0x71024d8d68, 0x71025129f0, 0x71024e0af8]
  CameraShieldSurfing: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102457578]
  CameraTail: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x71024576f8]
  CameraVibrate: [0x71024d8d68, 0x71025129f0, 0x710235c310]
  CameraWakeboard: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102457ba0]
  CameraWaterRemainsHowling: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102457ea0]
  CameraWaterfallClimb: [0x71024d8d68, 0x71025129f0, 0x7102451f58, 0x7102451f58, 0x7102457d20]
  CapturedActElectricParalyisis: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102378e48,
    0x710236f570]
  CapturedActFreeze: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102391398,
    0x710236f698]
  CapturedActKnockBack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a01f8, 0x71023a0338,
    0x710236f7c0]
  Carried: [0x71024d8d68, 0x71025129f0, 0x710236f900]
  CarriedNoHit: [0x71024d8d68, 0x71025129f0, 0x710236f900, 0x710236fa40]
  Catch: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710236fb98]
  ChallengeChainRing: [0x71024d8d68, 0x71025129f0, 0x710235bd70, 0x710235c428]
  ChanegToLog: [0x71024d8d68, 0x71025129f0, 0x710236fcb0]
  ChangeChoiceNumMsgFor3DShop: [0x71024d8d68, 0x71025129f0, 0x710236fdc0]
  ChangeEmotion: [0x71024d8d68, 0x71025129f0, 0x710236fed0]
  ChangeEnvForEnduranceDungeon: [0x71024d8d68, 0x71025129f0, 0x710236ffe0]
  ChangeFreeMovingForDemo: [0x71024d8d68, 0x71025129f0, 0x710235c570]
  ChangeMiniMapScale: [0x71024d8d68, 0x71025129f0, 0x71023700f0]
  ChangePosture: [0x71024d8d68, 0x71025129f0, 0x7102370200]
  ChangePostureWithAS: [0x71024d8d68, 0x71025129f0, 0x7102370310]
  ChangeScene: [0x71024d8d68, 0x71025129f0, 0x7102370548, 0x7102370420]
  ChangeScheduleAnchor: [0x71024d8d68, 0x71025129f0, 0x7102370788]
  ChangeWeaponEquipState: [0x71024d8d68, 0x71025129f0, 0x7102370898]
  ChargeChemicalWeaponPower: [0x71024d8d68, 0x71025129f0, 0x71023607e0, 0x710235c680]
  CheckExistenceOfParticipant: [0x71024d8d68, 0x71025129f0, 0x71023709a8]
  CheckHorseCustomizeEdit: [0x71024d8d68, 0x71025129f0, 0x7102370ab8]
  ChemicalElectricWaterBall: [0x71024d8d68, 0x71025129f0, 0x7102378f58, 0x7102370bc8, 0x7102370d30]
  ChemicalPhysBall: [0x71024d8d68, 0x71025129f0, 0x7102378f58, 0x7102370bc8, 0x7102370f10]
  ChemicalPhysHitBreakBall: [0x71024d8d68, 0x71025129f0, 0x7102378f58, 0x7102370bc8, 0x7102370f10,
    0x7102371068]
  ChemicalStayObject: [0x71024d8d68, 0x71025129f0, 0x71023711d8]
  Chemicalward: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023712e8]
  ChuchuCommonDownTimer: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x71023713f8]
  ChuchuDissappearEscape: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023754e0, 0x7102371520]
  ChuchuPreAttack: [0x71024d8d68, 0x71025129f0, 0x7102393e48, 0x7102371648]
  CloseArmorProcessing: [0x71024d8d68, 0x71025129f0, 0x7102371778]
  CloseClockTime: [0x71024d8d68, 0x71025129f0, 0x7102371888]
  CloseItemMenu: [0x71024d8d68, 0x71025129f0, 0x7102371998]
  ClosePouchAddStockNum: [0x71024d8d68, 0x71025129f0, 0x7102371aa8]
  CollaboShootingStarAreaTag: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x710235c7a8]
  CollaboShootingStarBrightTower: [0x71024d8d68, 0x71025129f0, 0x7102371cc8]
  CollaboShootingStartFlying: [0x71024d8d68, 0x71025129f0, 0x7102371dd8]
  CollaborationShootingStarAnchor: [0x71024d8d68, 0x71025129f0, 0x7102371bb8]
  ControlBombEffect: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x7102371ee8]
  ControllerRumble: [0x71024d8d68, 0x71025129f0, 0x71023720a0]
  CopyMapPinPosition: [0x71024d8d68, 0x71025129f0, 0x71023721b0]
  CreateActorInAreaBasic: [0x71024d8d68, 0x71025129f0, 0x71023722c0]
  CreateAndReplaceAssassin: [0x71024d8d68, 0x71025129f0, 0x71023723e8]
  CreateDragonChallengeXLink: [0x71024d8d68, 0x71025129f0, 0x710235c988]
  CreateEpona: [0x71024d8d68, 0x71025129f0, 0x7102372660]
  CreateGanonChemicalPillar: [0x71024d8d68, 0x71025129f0, 0x7102372808]
  CreateObjectsOfOwnedHorse: [0x71024d8d68, 0x71025129f0, 0x7102372918]
  CurseRRematchCount: [0x71024d8d68, 0x71025129f0, 0x710235ca98]
  CustomDuckingEndAction: [0x71024d8d68, 0x71025129f0, 0x71024fa150]
  CustomDuckingStartAction: [0x71024d8d68, 0x71025129f0, 0x71024fa260]
  DRCAppNoUseTag: [0x71024d8d68, 0x71025129f0, 0x710236b098, 0x7102376c28]
  DamageField: [0x71024d8d68, 0x71025129f0, 0x7102372c68]
  DamageTurnByWeakPoint: [0x71024d8d68, 0x71025129f0, 0x7102372da0]
  DamagedTurn: [0x71024d8d68, 0x71025129f0, 0x7102372b58]
  DefEscapeFreeMoveAction: [0x71024d8d68, 0x71025129f0, 0x71024e8168]
  DefRandomMoveAction: [0x71024d8d68, 0x71025129f0, 0x71024da0d8, 0x71024e8278]
  DefTurnAction: [0x71024d8d68, 0x71025129f0, 0x71024e8398]
  DefeatedHugeEnemyCount: [0x71024d8d68, 0x71025129f0, 0x7102372ee0]
  Delete: [0x71024d8d68, 0x71025129f0, 0x7102372ff0]
  DeleteAllIceBlockForDemo: [0x71024d8d68, 0x71025129f0, 0x7102373100]
  DeleteInGround: [0x71024d8d68, 0x71025129f0, 0x7102373210]
  DeletePorchItemIncludeEquip: [0x71024d8d68, 0x71025129f0, 0x7102373320]
  DemoApplyDamageForPlayer: [0x71024d8d68, 0x71025129f0, 0x7102373430, 0x7102373540]
  DemoBeastGanonGrudgeDrop: [0x71024d8d68, 0x71025129f0, 0x7102373668]
  DemoChangeEntityNoHit: [0x71024d8d68, 0x71025129f0, 0x7102373778]
  DemoCookPotCook: [0x71024d8d68, 0x71025129f0, 0x7102373888]
  DemoDelete: [0x71024d8d68, 0x71025129f0, 0x71023739e8]
  DemoEnemyReset: [0x71024d8d68, 0x71025129f0, 0x7102373af8]
  DemoFindPlayer: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c8c18, 0x71023c6528,
    0x7102373c08]
  DemoForceSetPlayerSavePosAngle: [0x71024d8d68, 0x71025129f0, 0x7102373d18]
  DemoGetItem: [0x71024d8d68, 0x71025129f0, 0x71024d9730]
  DemoGetItemAnimStop: [0x71024d8d68, 0x71025129f0, 0x71024d9730, 0x7102373e30]
  DemoGetWeapon: [0x71024d8d68, 0x71025129f0, 0x71024d9730, 0x7102373f58]
  DemoKokkoAngry: [0x71024d8d68, 0x71025129f0, 0x7102374068]
  DemoMotorcyclePutMaterials: [0x71024d8d68, 0x71025129f0, 0x710235cba8]
  DemoNoAnimDrivenTurn: [0x71024d8d68, 0x71025129f0, 0x710238ff60, 0x7102374178]
  DemoPlayerZoraRide: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245c898]
  DemoResetActor: [0x71024d8d68, 0x71025129f0, 0x71024d9840]
  DemoResetBoneCtrl: [0x71024d8d68, 0x71025129f0, 0x71024d9950]
  DemoSweep: [0x71024d8d68, 0x71025129f0, 0x71023742c8]
  DemoTriggerToggleVisible: [0x71024d8d68, 0x71025129f0, 0x710235ccb8]
  DemoTurnToActor: [0x71024d8d68, 0x71025129f0, 0x71024da450, 0x71024da308, 0x71023743d8]
  DemoVisibleOff: [0x71024d8d68, 0x71025129f0, 0x71024d9a60]
  DemoVisibleOn: [0x71024d8d68, 0x71025129f0, 0x71023745a0]
  DemoVoiceTrigger: [0x71024d8d68, 0x71025129f0, 0x71024e0c08]
  DgnObjDLCSpurGearB01: [0x71024d8d68, 0x71025129f0, 0x71023938a8, 0x710235cf38]
  DgnObjDlcGondolaCreateTag: [0x71024d8d68, 0x71025129f0, 0x710235cdc8]
  DgnObj_DLC_CWRotDirSwitch: [0x71024d8d68, 0x71025129f0, 0x7102374a18]
  DgnObj_DLC_CWRotDirSwitchOff: [0x71024d8d68, 0x71025129f0, 0x710235d288]
  DgnObj_DLC_CogWheel_ASPlay: [0x71024d8d68, 0x71025129f0, 0x710235d060]
  DgnObj_DLC_CogWheel_Reject: [0x71024d8d68, 0x71025129f0, 0x710235d178]
  DgnObj_DLC_CogWheel_Rotate: [0x71024d8d68, 0x71025129f0, 0x7102374900]
  DgnObj_DLC_DungeonRotate: [0x71024d8d68, 0x71025129f0, 0x71023779e8, 0x7102374b28]
  Die: [0x71024d8d68, 0x71025129f0, 0x71023b2020, 0x710236dd10, 0x7102374c70]
  DieAnm: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102374dd0]
  DieAnmDropWeapon: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102374dd0, 0x7102374ee0]
  DieAnmKnockBack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a01f8, 0x71023a0338, 0x7102375008]
  DieHomeRun: [0x71024d8d68, 0x71025129f0, 0x71023b2020, 0x710236dd10, 0x7102374c70, 0x7102375148]
  DirectToWindDirection: [0x71024d8d68, 0x71025129f0, 0x71023752c0]
  DisableAutoSavePausing: [0x71024d8d68, 0x71025129f0, 0x71023753d0]
  DisappearDeathCounter: [0x71024d8d68, 0x71025129f0, 0x71023755f0]
  DisappearNumDungeonClearSeal: [0x71024d8d68, 0x71025129f0, 0x7102375700]
  DisappearNumHeroSeal: [0x71024d8d68, 0x71025129f0, 0x710235d398]
  DisappearNumKorokNuts: [0x71024d8d68, 0x71025129f0, 0x7102375810]
  DisappearNumTargets: [0x71024d8d68, 0x71025129f0, 0x7102375920]
  DoorOpenAndClose: [0x71024d8d68, 0x71025129f0, 0x7102375a30]
  DoubleAttack: [0x71024d8d68, 0x71025129f0, 0x71023c0c98, 0x7102375b40]
  DownSwingAttack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023761c8]
  DownloadAlbum: [0x71024d8d68, 0x71025129f0, 0x7102375c78]
  DownloadPictureBook: [0x71024d8d68, 0x71025129f0, 0x7102375d88]
  DownloadRemainsMap: [0x71024d8d68, 0x71025129f0, 0x7102375e98]
  DownloadShiekSensor: [0x71024d8d68, 0x71025129f0, 0x7102375fa8]
  DownloadShiekSensorMoveIcon: [0x71024d8d68, 0x71025129f0, 0x71023760b8]
  DragonChemicalBall: [0x71024d8d68, 0x71025129f0, 0x71023762d8]
  DragonFixPlacement: [0x71024d8d68, 0x71025129f0, 0x71023ac840, 0x71023763e8]
  DragonFollow: [0x71024d8d68, 0x71025129f0, 0x710235bd70, 0x7102376510]
  DragonItemInCarryBox: [0x71024d8d68, 0x71025129f0, 0x710239e500, 0x7102376640]
  DragonItemShootUp: [0x71024d8d68, 0x71025129f0, 0x7102376768]
  DragonMoveTo: [0x71024d8d68, 0x71025129f0, 0x7102376878]
  DragonPlayASForDemo: [0x71024d8d68, 0x71025129f0, 0x71023b00a0, 0x7102376988]
  DragonReleaseGrudgeForDemo: [0x71024d8d68, 0x71025129f0, 0x71023b00a0, 0x7102376988, 0x7102376ad8]
  DropBreakWeaponUnEquiped: [0x71024d8d68, 0x71025129f0, 0x7102376d98]
  DropCreateForReplace: [0x71024d8d68, 0x71025129f0, 0x7102376ea8]
  DropWeapon: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023addd0,
    0x7102376fb8]
  DrowningDeath: [0x71024d8d68, 0x71025129f0, 0x71023770c8]
  DummyAction: [0x71024d8d68, 0x71025129f0, 0x71024d9b70]
  DummyDropTable: [0x71024d8d68, 0x71025129f0, 0x71024d9b70, 0x71024d9c80]
  DummyTriggerAction: [0x71024d8d68, 0x71025129f0, 0x71024d9da8]
  DunegonRotateWait: [0x71024d8d68, 0x71025129f0, 0x71023779e8, 0x71023771d8]
  DungeonEntranceASPlay: [0x71024d8d68, 0x71025129f0, 0x71023ac840, 0x7102377308]
  DungeonMove: [0x71024d8d68, 0x71025129f0, 0x7102377418]
  DungeonMoveAlwaysVibrateCam: [0x71024d8d68, 0x71025129f0, 0x7102377418, 0x710235d4a8]
  DungeonMoveReset: [0x71024d8d68, 0x71025129f0, 0x710235d5d0]
  DungeonRotate: [0x71024d8d68, 0x71025129f0, 0x71023779e8, 0x7102377528]
  DungeonRotate2Target: [0x71024d8d68, 0x71025129f0, 0x71023779e8, 0x7102377658]
  DungeonRotateAccel: [0x71024d8d68, 0x71025129f0, 0x71023779e8, 0x7102377788]
  DungeonRotateApp: [0x71024d8d68, 0x71025129f0, 0x71023779e8, 0x71023778b8]
  DungeonRotateCont: [0x71024d8d68, 0x71025129f0, 0x71023779e8, 0x7102377b18]
  DungeonRotateGyro: [0x71024d8d68, 0x71025129f0, 0x7102377c48]
  DungeonRotateInOrder: [0x71024d8d68, 0x71025129f0, 0x71023779e8, 0x7102377d58]
  DungeonRotateShuttle: [0x71024d8d68, 0x71025129f0, 0x71023779e8, 0x7102377e88]
  DungeonRotateSymmetry: [0x71024d8d68, 0x71025129f0, 0x7102377fb8]
  DynamicAttackPowerExplode: [0x71024d8d68, 0x71025129f0, 0x7102381240, 0x7102378828, 0x71023780c8]
  DynamicFireWood: [0x71024d8d68, 0x71025129f0, 0x71023818f0, 0x7102381a08, 0x7102378238]
  Eat: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102378388]
  EatAndHeal: [0x71024d8d68, 0x71025129f0, 0x7102363fb0, 0x71023784a0]
  EatForSunazarashiSPC: [0x71024d8d68, 0x71025129f0, 0x71024e88d8, 0x71023785d0]
  EatWithAS: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102378388, 0x71023786f8]
  ElectricAttack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c8c18, 0x71023c6528,
    0x7102378950]
  ElectricBlownOff: [0x71024d8d68, 0x71025129f0, 0x71023b2020, 0x710236dd10, 0x7102378a60]
  ElectricCableEnergized: [0x71024d8d68, 0x71025129f0, 0x7102378bc0]
  ElectricDie: [0x71024d8d68, 0x71025129f0, 0x71023b2020, 0x710236dd10, 0x7102378a60, 0x7102378cd0]
  ElectricParalysis: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102378e48]
  EmitEffectLoopAction: [0x71024d8d68, 0x71025129f0, 0x71024dd670]
  EmitElectricWaterBall: [0x71024d8d68, 0x71025129f0, 0x71023790a8]
  EndChangeableASPlay: [0x71024d8d68, 0x71025129f0, 0x71023791b8]
  EnemyAreaInOutSendMessage: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x7102367500,
    0x71023792c8]
  EnemyChangeWeapon: [0x71024d8d68, 0x71025129f0, 0x71023794c0]
  EnemyFortressChatCall: [0x71024d8d68, 0x71025129f0, 0x71023799f0, 0x71023795d0]
  EnemyFortressChatSpeak: [0x71024d8d68, 0x71025129f0, 0x71023799f0, 0x7102379850]
  EnemyFortressChatTurn: [0x71024d8d68, 0x71025129f0, 0x7102379730, 0x7102379b70]
  EnemyFortressSimpleAction: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238fac0, 0x710238f9a0,
    0x7102379cd0]
  EnemyRigidBodyDie: [0x71024d8d68, 0x71025129f0, 0x7102379fa0, 0x7102379e70]
  EnemyRigidBodyFreeFallDie: [0x71024d8d68, 0x71025129f0, 0x7102379fa0, 0x710237a0b8]
  EnemyRigidBodySpinDie: [0x71024d8d68, 0x71025129f0, 0x7102379fa0, 0x710237a1d0]
  EnemyRushAttack: [0x71024d8d68, 0x71025129f0, 0x71024da0d8, 0x710237a310]
  EnvSeEmitPointBirdPlayAction: [0x71024d8d68, 0x71025129f0, 0x71024fa370]
  EnvSeEmitPointInsectPlayAction: [0x71024d8d68, 0x71025129f0, 0x71024fa480]
  EnvSetLensFlare: [0x71024d8d68, 0x71025129f0, 0x71024f0a98]
  EquipDisplay: [0x71024d8d68, 0x71025129f0, 0x710237a448]
  EquipDisplayCreate: [0x71024d8d68, 0x71025129f0, 0x710237a558]
  EquipDisplayGet: [0x71024d8d68, 0x71025129f0, 0x710237a668]
  EquipedASPlay: [0x71024d8d68, 0x71025129f0, 0x71024e0d30, 0x710237a778]
  EquipedAction: [0x71024d8d68, 0x71025129f0, 0x71024e0d30]
  EquipedChemicalWeapon: [0x71024d8d68, 0x71025129f0, 0x71024e0d30, 0x710237a8a8]
  EquipedDeadlyBlowWeapon: [0x71024d8d68, 0x71025129f0, 0x71024e0d30, 0x710235d6e0]
  EquipedDefaultWindWeapon: [0x71024d8d68, 0x71025129f0, 0x71024e0d30, 0x710237a9d8]
  EquipedOptionalWeaponAction: [0x71024d8d68, 0x71025129f0, 0x71024e0588, 0x71024e0e60]
  EquipedQuiver: [0x71024d8d68, 0x71025129f0, 0x71024e0588, 0x71024e0e60, 0x710237ab18]
  EquipedRod: [0x71024d8d68, 0x71025129f0, 0x71024e0d30, 0x710237ac60]
  EquipedWeaponChild: [0x71024d8d68, 0x71025129f0, 0x71024e0588, 0x71024e0f90]
  EquipedWithScale: [0x71024d8d68, 0x71025129f0, 0x71024e0d30, 0x710237ad90]
  Escape: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a4dc0, 0x710237afd0]
  EscapeBackTurn: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710237b100]
  EventAddGameDataIntAction: [0x71024d8d68, 0x71025129f0, 0x71024e10c0]
  EventAddGameDataToRupeeAction: [0x71024d8d68, 0x71025129f0, 0x710237b240]
  EventAppearCheckPointNum: [0x71024d8d68, 0x71025129f0, 0x710237b350]
  EventAppearFlyDistance: [0x71024d8d68, 0x71025129f0, 0x710237b460]
  EventAppearGolfCount: [0x71024d8d68, 0x71025129f0, 0x710237b570]
  EventAppearRaceResult: [0x71024d8d68, 0x71025129f0, 0x710237b680]
  EventAppearRupeeAction: [0x71024d8d68, 0x71025129f0, 0x71024e6820]
  EventAutoSaveAction: [0x71024d8d68, 0x71025129f0, 0x71024e6930]
  EventAutoSaveAtGameClear: [0x71024d8d68, 0x71025129f0, 0x710237b790]
  EventBgmCtrlAction: [0x71024d8d68, 0x71025129f0, 0x71024fa590]
  EventBgmStartAction: [0x71024d8d68, 0x71025129f0, 0x71024fa6a0]
  EventBgmStartAndKeepAction: [0x71024d8d68, 0x71025129f0, 0x71024fa7b0]
  EventBgmStopAction: [0x71024d8d68, 0x71025129f0, 0x71024fa8c0]
  EventBind: [0x71024d8d68, 0x71025129f0, 0x710237b8a0]
  EventCallDemoAction: [0x71024d8d68, 0x71025129f0, 0x71024d9b70]
  EventCancelEndAction: [0x71024d8d68, 0x71025129f0, 0x71024d9b70]
  EventCancelGet: [0x71024d8d68, 0x71025129f0, 0x710237b9e8]
  EventCancelSleepTargetActor: [0x71024d8d68, 0x71025129f0, 0x710237baf8]
  EventCancelStartAction: [0x71024d8d68, 0x71025129f0, 0x71024d9b70]
  EventChangeFadeColor: [0x71024d8d68, 0x71025129f0, 0x710237bc08]
  EventChangeShadowNearAndFar: [0x71024d8d68, 0x71025129f0, 0x710235d828]
  EventCheckAndCreateEquip: [0x71024d8d68, 0x71025129f0, 0x710237bd18]
  EventCloseMessageTipsAction: [0x71024d8d68, 0x71025129f0, 0x71024e6a40]
  EventCloudShadowOnOff: [0x71024d8d68, 0x71025129f0, 0x710237be28]
  EventControlRupeeUI: [0x71024d8d68, 0x71025129f0, 0x710237bf38]
  EventCreateParaShawlSetToPlayer: [0x71024d8d68, 0x71025129f0, 0x710237c048]
  EventDisableContactIdle: [0x71024d8d68, 0x71025129f0, 0x710237c158]
  EventDisableContactLayerTrigger: [0x71024d8d68, 0x71025129f0, 0x710237c290]
  EventDisableMiniGameTime: [0x71024d8d68, 0x71025129f0, 0x710237c3a0]
  EventDisappearCheckPointNum: [0x71024d8d68, 0x71025129f0, 0x710237c4b0]
  EventDisappearFlyDistance: [0x71024d8d68, 0x71025129f0, 0x710237c5c0]
  EventDisappearGolfCount: [0x71024d8d68, 0x71025129f0, 0x710237c6d0]
  EventDisappearRaceResult: [0x71024d8d68, 0x71025129f0, 0x710237c7e0]
  EventDoorOpenAndClose: [0x71024d8d68, 0x71025129f0, 0x7102375a30, 0x710237c8f0]
  EventDummyAction: [0x71024d8d68, 0x71025129f0, 0x71024e6b50]
  EventEnableModelDraw: [0x71024d8d68, 0x71025129f0, 0x710237ca18]
  EventEquipLastSetItem: [0x71024d8d68, 0x71025129f0, 0x710237cb28]
  EventFadeIn: [0x71024d8d68, 0x71025129f0, 0x710237cc38, 0x710237cd48]
  EventFadeOut: [0x71024d8d68, 0x71025129f0, 0x710237cc38, 0x710237ce70]
  EventFireControl: [0x71024d8d68, 0x71025129f0, 0x710237cf80]
  EventFlagOFFAction: [0x71024d8d68, 0x71025129f0, 0x71024e6c60]
  EventFlagONAction: [0x71024d8d68, 0x71025129f0, 0x71024e6d70]
  EventHoverNullASPlay: [0x71024d8d68, 0x71025129f0, 0x710237d818, 0x710237d090]
  EventIncreaseFameAction: [0x71024d8d68, 0x71025129f0, 0x71024e6e80]
  EventIncreaseGameDataIntAction: [0x71024d8d68, 0x71025129f0, 0x71024e6f90]
  EventIncreasePorchItemAction: [0x71024d8d68, 0x71025129f0, 0x71024e70a0]
  EventIncreaseRupeeAction: [0x71024d8d68, 0x71025129f0, 0x71024e71b0]
  EventInitTalkAction: [0x71024d8d68, 0x71025129f0, 0x71024e72c0]
  EventLoopEndAction: [0x71024d8d68, 0x71025129f0, 0x71024e73d0]
  EventMiniGameFinish: [0x71024d8d68, 0x71025129f0, 0x710237d1b8]
  EventMiniGameRetire: [0x71024d8d68, 0x71025129f0, 0x710237d2c8]
  EventMiniGameStart: [0x71024d8d68, 0x71025129f0, 0x710237d3d8]
  EventMiniGameTime: [0x71024d8d68, 0x71025129f0, 0x710237d4e8]
  EventMiniGameTimeMove: [0x71024d8d68, 0x71025129f0, 0x710237d5f8]
  EventMiniGameTimerWrite: [0x71024d8d68, 0x71025129f0, 0x710237d708]
  EventOffWaitRevivalAction: [0x71024d8d68, 0x71025129f0, 0x71024e74e0]
  EventOnWaitRevivalAction: [0x71024d8d68, 0x71025129f0, 0x71024e75f0]
  EventOpenGetDemo: [0x71024d8d68, 0x71025129f0, 0x710237d928]
  EventOpenGetWeaponDemo: [0x71024d8d68, 0x71025129f0, 0x710237d928, 0x710237da38]
  EventOpenMessageTips: [0x71024d8d68, 0x71025129f0, 0x710237db60]
  EventPickOutFromPorch: [0x71024d8d68, 0x71025129f0, 0x710237dc90]
  EventPlayMovieAction: [0x71024d8d68, 0x71025129f0, 0x71024e7700]
  EventPlayUiActorName: [0x71024d8d68, 0x71025129f0, 0x710237dda0]
  EventPlayUiBossHpAction: [0x71024d8d68, 0x71025129f0, 0x710237deb0]
  EventPlayUiBossHpDamage: [0x71024d8d68, 0x71025129f0, 0x710237dfc0]
  EventPlayUiOPTextAction: [0x71024d8d68, 0x71025129f0, 0x710237e230]
  EventPlayUiOneTimeAnimAction: [0x71024d8d68, 0x71025129f0, 0x710237e0d0]
  EventPlayUiScreenAction: [0x71024d8d68, 0x71025129f0, 0x71024e7810]
  EventPlayUiStaffRoll: [0x71024d8d68, 0x71025129f0, 0x710237e340]
  EventPlayUiStaffRollImage: [0x71024d8d68, 0x71025129f0, 0x710237e450]
  EventPrizeSuccess: [0x71024d8d68, 0x71025129f0, 0x710237e560]
  EventRecoverPlayerCondition: [0x71024d8d68, 0x71025129f0, 0x710237e670]
  EventRecoverPlayerEnergy: [0x71024d8d68, 0x71025129f0, 0x710237e780]
  EventRecoverPlayerLife: [0x71024d8d68, 0x71025129f0, 0x710237e890]
  EventRegisterToDeathConter: [0x71024d8d68, 0x71025129f0, 0x710237e9a0]
  EventRegisterToGetCounter: [0x71024d8d68, 0x71025129f0, 0x710237eab0]
  EventResetQuestAction: [0x71024d8d68, 0x71025129f0, 0x71024e7920]
  EventRollbackQuestAction: [0x71024d8d68, 0x71025129f0, 0x71024e7a30]
  EventSendCatchWeaponMsgToPlayer: [0x71024d8d68, 0x71025129f0, 0x710237ebc0]
  EventSetAddFogOff: [0x71024d8d68, 0x71025129f0, 0x710237ecf8]
  EventSetAttentionForbidSale: [0x71024d8d68, 0x71025129f0, 0x710237ee08]
  EventSetCharAmbientScale: [0x71024d8d68, 0x71025129f0, 0x710237f028]
  EventSetCharaMainLightScale: [0x71024d8d68, 0x71025129f0, 0x710237ef18]
  EventSetCloudShadowMove: [0x71024d8d68, 0x71025129f0, 0x710237f138]
  EventSetCloudShadowPos: [0x71024d8d68, 0x71025129f0, 0x710237f248]
  EventSetDiffuseAttenuate: [0x71024d8d68, 0x71025129f0, 0x710237f358]
  EventSetDirectionalLight: [0x71024d8d68, 0x71025129f0, 0x710237f468]
  EventSetDirectionalLightYang: [0x71024d8d68, 0x71025129f0, 0x710237f578]
  EventSetDynamic: [0x71024d8d68, 0x71025129f0, 0x710237f688]
  EventSetEnableGrass: [0x71024d8d68, 0x71025129f0, 0x710237f798]
  EventSetFixed: [0x71024d8d68, 0x71025129f0, 0x710237f8a8]
  EventSetFocusDist: [0x71024d8d68, 0x71025129f0, 0x710237f9b8]
  EventSetFogDirect: [0x71024d8d68, 0x71025129f0, 0x710237fac8]
  EventSetGameDataFloatAction: [0x71024d8d68, 0x71025129f0, 0x710237fbd8]
  EventSetGameDataIntAction: [0x71024d8d68, 0x71025129f0, 0x71024e7b40]
  EventSetGameDataStringAction: [0x71024d8d68, 0x71025129f0, 0x71024e7c50]
  EventSetItemDataToPouch: [0x71024d8d68, 0x71025129f0, 0x710237fce8]
  EventSetMoonType: [0x71024d8d68, 0x71025129f0, 0x710237fdf8]
  EventSetPaletteType: [0x71024d8d68, 0x71025129f0, 0x710237ff08]
  EventSetRainSplashRatio: [0x71024d8d68, 0x71025129f0, 0x7102380018]
  EventSetSkyPaletteType: [0x71024d8d68, 0x71025129f0, 0x7102380128]
  EventSetWeather: [0x71024d8d68, 0x71025129f0, 0x7102380238]
  EventSetYfogRatio: [0x71024d8d68, 0x71025129f0, 0x7102380348]
  EventSleepTargetActor: [0x71024d8d68, 0x71025129f0, 0x7102380458]
  EventSuccessGet: [0x71024d8d68, 0x71025129f0, 0x7102380568]
  EventTalkEndAction: [0x71024d8d68, 0x71025129f0, 0x71024e7d60]
  EventTrigNullASPlay: [0x71024d8d68, 0x71025129f0, 0x7102380678]
  EventUnregisterFromDeathCounter: [0x71024d8d68, 0x71025129f0, 0x7102380788]
  EventUnregisterFromGetCounter: [0x71024d8d68, 0x71025129f0, 0x7102380898]
  EventUpdateMiniGameBestScore: [0x71024d8d68, 0x71025129f0, 0x71023809a8]
  EventVariableFadeIn: [0x71024d8d68, 0x71025129f0, 0x7102380ab8, 0x7102380bc8]
  EventVariableFadeOut: [0x71024d8d68, 0x71025129f0, 0x7102380ab8, 0x7102380cf0]
  EventWaitFrameAction: [0x71024d8d68, 0x71025129f0, 0x71024e7e70]
  EventWatchCannonHit: [0x71024d8d68, 0x71025129f0, 0x7102380e00]
  ExitGame: [0x71024d8d68, 0x71025129f0, 0x7102380f10]
  ExpandChemicalField: [0x71024d8d68, 0x71025129f0, 0x7102381020]
  ExpandSensor: [0x71024d8d68, 0x71025129f0, 0x7102381130]
  ExpandSensorSlowly: [0x71024d8d68, 0x71025129f0, 0x710235d938]
  Explode: [0x71024d8d68, 0x71025129f0, 0x7102381240]
  ExplodeReserved: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c1108, 0x7102381368]
  FadeInOutWithOptions: [0x71024d8d68, 0x71025129f0, 0x71023814a0]
  FadeoutDelete: [0x71024d8d68, 0x71025129f0, 0x71023815b0]
  Fall: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023816c0]
  FallAttack: [0x71024d8d68, 0x71025129f0, 0x71023817d0]
  FallAttackWithAtAttr: [0x71024d8d68, 0x71025129f0, 0x71023817d0, 0x710235da48]
  FireWood: [0x71024d8d68, 0x71025129f0, 0x71023818f0, 0x7102381a08]
  FirstRunelGrudgeDemo: [0x71024d8d68, 0x71025129f0, 0x71023b00a0, 0x7102376988, 0x7102381b28]
  FishOnGround: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102381c60]
  FixedMagneSliderBlock: [0x71024d8d68, 0x71025129f0, 0x7102381d70, 0x710235db80]
  FixedMagneStick: [0x71024d8d68, 0x71025129f0, 0x7102381d70]
  FixedOrConstraint: [0x71024d8d68, 0x71025129f0, 0x7102381e98]
  Flint: [0x71024d8d68, 0x71025129f0, 0x7102381fa8]
  FloatDrownDeath: [0x71024d8d68, 0x71025129f0, 0x71023820f0]
  FloatWait: [0x71024d8d68, 0x71025129f0, 0x71023cb4a8, 0x7102382200]
  FlowingDust: [0x71024d8d68, 0x71025129f0, 0x7102382310]
  FlyMove: [0x71024d8d68, 0x71025129f0, 0x71023836f0, 0x71023835d0]
  FlyingBalloonObserverTag: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x71024e3570,
    0x71024e3398, 0x7102382580]
  FlyingBirdDie: [0x71024d8d68, 0x71025129f0, 0x7102382f38, 0x7102382420, 0x7102382758]
  FlyingCharacterBlownOff: [0x71024d8d68, 0x71025129f0, 0x7102382f38, 0x71023828b8]
  FlyingCharacterBlownOffDie: [0x71024d8d68, 0x71025129f0, 0x7102382f38, 0x71023828b8, 0x7102382a00]
  FlyingCharacterDamage: [0x71024d8d68, 0x71025129f0, 0x7102382f38, 0x7102382420, 0x7102382b60]
  FlyingCharacterDie: [0x71024d8d68, 0x71025129f0, 0x7102382f38, 0x7102382420, 0x7102382ca8]
  FlyingCharacterFreeFallDie: [0x71024d8d68, 0x71025129f0, 0x7102382f38, 0x7102383080]
  FlyingCharacterFreeFallEx: [0x71024d8d68, 0x71025129f0, 0x7102382f38, 0x7102382df0, 0x71023831c8]
  FlyingCharacterFreeze: [0x71024d8d68, 0x71025129f0, 0x7102382f38, 0x7102383328]
  FlyingCharacterFreezeDie: [0x71024d8d68, 0x71025129f0, 0x7102382f38, 0x7102383328, 0x7102383470]
  FollowAttack: [0x71024d8d68, 0x71025129f0, 0x71023683d0, 0x7102383810]
  FollowDungeonRotate: [0x71024d8d68, 0x71025129f0, 0x7102383940]
  FollowDungeonRotateASPlay: [0x71024d8d68, 0x71025129f0, 0x7102383940, 0x7102383a70]
  FollowIgniteToBonePos: [0x71024d8d68, 0x71025129f0, 0x71023683d0, 0x710235dcd8]
  FollowIgniteToSelfPos: [0x71024d8d68, 0x71025129f0, 0x71023683d0, 0x7102383b88]
  FootStepCalcOn: [0x71024d8d68, 0x71025129f0, 0x71024dd780]
  ForbidComeback: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x7102383cb0]
  ForbidSettingInstEventFlag: [0x71024d8d68, 0x71025129f0, 0x7102383e60]
  ForceChangeAction: [0x71024d8d68, 0x71025129f0, 0x71024d9eb8]
  ForceEndPlayerSlow: [0x71024d8d68, 0x71025129f0, 0x7102383f70]
  ForceGetUpFreeze: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102391398, 0x7102384080]
  ForceGetUpWaterFloatFreeze: [0x71024d8d68, 0x71025129f0, 0x71023cb4a8, 0x71023cb8e8, 0x71023cb6c8,
    0x7102384190]
  ForceMarkPosition: [0x71024d8d68, 0x71025129f0, 0x71023842d0]
  ForceMasterSwordFakeMode: [0x71024d8d68, 0x71025129f0, 0x71023843e0]
  ForceOffMagneGrabbed: [0x71024d8d68, 0x71025129f0, 0x710235de68]
  ForceOpenMainScreen: [0x71024d8d68, 0x71025129f0, 0x71023844f0]
  ForceRagdollOffFreeze: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102391398,
    0x7102384600]
  ForceRagdollOffWaterFloatFreeze: [0x71024d8d68, 0x71025129f0, 0x71023cb4a8, 0x71023cb8e8, 0x71023cb6c8,
    0x7102384788]
  ForceSetMtxFromPlayer: [0x71024d8d68, 0x71025129f0, 0x71023849a8]
  ForceSetPlayerRestartPosAngle: [0x71024d8d68, 0x71025129f0, 0x7102384ab8]
  ForceSystemFadeOut: [0x71024d8d68, 0x71025129f0, 0x710235df78]
  ForestGiantWakeUp: [0x71024d8d68, 0x71025129f0, 0x7102385fc8, 0x71023afe70, 0x7102384bc8]
  ForkAITreeValWeakPointTimer: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x7102385010]
  ForkAITreeVariableMove: [0x71024d8d68, 0x71025129f0, 0x710235e0d0]
  ForkASHoldLegTurn: [0x71024d8d68, 0x71025129f0, 0x7102386538]
  ForkASHoldLinearMove: [0x71024d8d68, 0x71025129f0, 0x7102386648]
  ForkASPlay: [0x71024d8d68, 0x71025129f0, 0x7102386888, 0x7102386758]
  ForkASTrgAerialTurn: [0x71024d8d68, 0x71025129f0, 0x71023869a0]
  ForkASTrgChargeArrow: [0x71024d8d68, 0x71025129f0, 0x7102386ab8]
  ForkASTrgDeleteChild: [0x71024d8d68, 0x71025129f0, 0x7102386bc8, 0x7102386ce0]
  ForkASTrgDeleteEquip: [0x71024d8d68, 0x71025129f0, 0x7102386bc8, 0x7102386e10]
  ForkASTrgEmitChmFieldPos: [0x71024d8d68, 0x71025129f0, 0x7102389a70, 0x710238fd00, 0x7102386f28]
  ForkASTrgEmitShockWaveAtEnter: [0x71024d8d68, 0x71025129f0, 0x7102389ca0, 0x7102387080]
  ForkASTrgEmitShockWavePos: [0x71024d8d68, 0x71025129f0, 0x7102389ca0, 0x71023871b8]
  ForkASTrgForceDirAerialTurn: [0x71024d8d68, 0x71025129f0, 0x71023869a0, 0x71023872d8]
  ForkASTrgGolemChemicalReset: [0x71024d8d68, 0x71025129f0, 0x7102387408]
  ForkASTrgHorseParamUse: [0x71024d8d68, 0x71025129f0, 0x7102387518]
  ForkASTrgRemainsHowl: [0x71024d8d68, 0x71025129f0, 0x7102387628]
  ForkASTrgShootArrow: [0x71024d8d68, 0x71025129f0, 0x7102387760]
  ForkASTrgShootArrowWithBaseBone: [0x71024d8d68, 0x71025129f0, 0x7102387760, 0x7102387880]
  ForkASTrgShootSkyArrow: [0x71024d8d68, 0x71025129f0, 0x71023879b8]
  ForkASTrgStepMove: [0x71024d8d68, 0x71025129f0, 0x7102387ac8]
  ForkASTrgTurnGround: [0x71024d8d68, 0x71025129f0, 0x7102387bd8]
  ForkASTrgWeaponDrop: [0x71024d8d68, 0x71025129f0, 0x7102387ce8]
  ForkAddCalcScaleMapUnit: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x7102384ce0]
  ForkAddLinearImpulse: [0x71024d8d68, 0x71025129f0, 0x7102384df0]
  ForkAerialAcrobatics: [0x71024d8d68, 0x71025129f0, 0x7102384f00]
  ForkAllowReactionLift: [0x71024d8d68, 0x71025129f0, 0x7102385138]
  ForkAlwayForceGetUpVelocityDir: [0x71024d8d68, 0x71025129f0, 0x7102385488, 0x7102385248]
  ForkAlwaysColTgOff: [0x71024d8d68, 0x71025129f0, 0x7102385378]
  ForkAlwaysForceGetUp: [0x71024d8d68, 0x71025129f0, 0x7102385488]
  ForkAlwaysForceGetUpWithOffset: [0x71024d8d68, 0x71025129f0, 0x7102385488, 0x71023855a0]
  ForkAlwaysHoverTurn: [0x71024d8d68, 0x71025129f0, 0x710238ff60, 0x7102385d58, 0x71023856b8]
  ForkAlwaysOneColTgOff: [0x71024d8d68, 0x71025129f0, 0x7102385808]
  ForkAlwaysRotDownGr: [0x71024d8d68, 0x71025129f0, 0x7102385a28]
  ForkAlwaysRotate: [0x71024d8d68, 0x71025129f0, 0x7102385918]
  ForkAlwaysSetModelEffect: [0x71024d8d68, 0x71025129f0, 0x7102385b38]
  ForkAlwaysTargetVerticalRotate: [0x71024d8d68, 0x71025129f0, 0x7102385c48]
  ForkAlwaysTurn: [0x71024d8d68, 0x71025129f0, 0x710238ff60, 0x7102385d58]
  ForkAlwaysTurnUDLimit: [0x71024d8d68, 0x71025129f0, 0x710238ff60, 0x7102385d58, 0x7102385e90]
  ForkAnimDriveFreeMoving: [0x71024d8d68, 0x71025129f0, 0x71023860e0]
  ForkAnimDriveMove: [0x71024d8d68, 0x71025129f0, 0x71023861f0]
  ForkAnimDriveTurn: [0x71024d8d68, 0x71025129f0, 0x71023861f0, 0x7102386300]
  ForkAnimReset: [0x71024d8d68, 0x71025129f0, 0x7102386428]
  ForkAnimalASPlay: [0x71024d8d68, 0x71025129f0, 0x7102385fc8]
  ForkBattleNodeForAttackGround: [0x71024d8d68, 0x71025129f0, 0x7102388060]
  ForkBeastGanonMessageDialogCtrl: [0x71024d8d68, 0x71025129f0, 0x7102387f08, 0x7102388170]
  ForkBombIgniteCarriedByPlayer: [0x71024d8d68, 0x71025129f0, 0x7102388298]
  ForkBoneControlFrontGround: [0x71024d8d68, 0x71025129f0, 0x71023883a8]
  ForkCapsuleWindFollow: [0x71024d8d68, 0x71025129f0, 0x71023884b8]
  ForkCatchWeapon: [0x71024d8d68, 0x71025129f0, 0x71023885c8]
  ForkChemicalChuchuAttack: [0x71024d8d68, 0x71025129f0, 0x7102387df8, 0x710238d608, 0x710238d3a8,
    0x71023886d8]
  ForkClothOnOffASPlay: [0x71024d8d68, 0x71025129f0, 0x7102388850]
  ForkDisableContactByPreAS: [0x71024d8d68, 0x71025129f0, 0x7102388960, 0x7102388ad0]
  ForkDisableContactForAttack: [0x71024d8d68, 0x71025129f0, 0x7102388960, 0x7102388c08]
  ForkDisableContactOnAtHitPlayer: [0x71024d8d68, 0x71025129f0, 0x7102388960, 0x7102388d28]
  ForkDrawWeapon: [0x71024d8d68, 0x71025129f0, 0x7102388e48]
  ForkDrawWeaponAtEnter: [0x71024d8d68, 0x71025129f0, 0x7102388f58]
  ForkDropGiantNecklace: [0x71024d8d68, 0x71025129f0, 0x7102389068]
  ForkDropWeaponWithSpeed: [0x71024d8d68, 0x71025129f0, 0x71023892a0, 0x7102389178]
  ForkDrownTimer: [0x71024d8d68, 0x71025129f0, 0x71023893b0]
  ForkDynASPlay: [0x71024d8d68, 0x71025129f0, 0x7102386888, 0x71023895f0]
  ForkDynActorNoTargetSelf: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x7102389ee0, 0x71023894c0]
  ForkEmitChmFieldByContact: [0x71024d8d68, 0x71025129f0, 0x7102389a70, 0x710238fd00, 0x7102389708]
  ForkEmitChmFieldFromWeapon: [0x71024d8d68, 0x71025129f0, 0x7102389a70, 0x710238fd00, 0x7102389830]
  ForkEmitExpandChemicalField: [0x71024d8d68, 0x71025129f0, 0x7102389a70, 0x7102389958]
  ForkEmitExpandFieldWithCreate: [0x71024d8d68, 0x71025129f0, 0x7102389a70, 0x7102389b88]
  ForkEmitShockWaveByContact: [0x71024d8d68, 0x71025129f0, 0x7102389ca0, 0x7102389dc0]
  ForkEndByDistance: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x7102389ff8]
  ForkEndByPartsActorEnd: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238a108]
  ForkFixedAngleVacuumShootTarget: [0x71024d8d68, 0x71025129f0, 0x710238a218]
  ForkFlyToTargetDirect: [0x71024d8d68, 0x71025129f0, 0x7102391288, 0x710238a328]
  ForkFollowGround: [0x71024d8d68, 0x71025129f0, 0x710238a438]
  ForkForceGetUp: [0x71024d8d68, 0x71025129f0, 0x7102385488, 0x710238a558]
  ForkForceIgniteCarriedActor: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238a670]
  ForkFourFootActorLustGrass: [0x71024d8d68, 0x71025129f0, 0x710238a780]
  ForkFreeMoving: [0x71024d8d68, 0x71025129f0, 0x7102391288, 0x710238a8c0]
  ForkGanonAscendingCreateManage: [0x71024d8d68, 0x71025129f0, 0x710238a9d0]
  ForkGanonBeastAppearHolyWall: [0x71024d8d68, 0x71025129f0, 0x710238aae0]
  ForkGanonBeastBeamShoot: [0x71024d8d68, 0x71025129f0, 0x710238abf0]
  ForkGanonBeastHeadBarrier: [0x71024d8d68, 0x71025129f0, 0x710238ad00]
  ForkGanonBeastWeakPointCheck: [0x71024d8d68, 0x71025129f0, 0x710238af40]
  ForkGanonBeastWeakPointOff: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238ae10, 0x710238b188]
  ForkGanonBeastWeakPointOn: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238ae10, 0x710238b2b8]
  ForkGelDisableBodyRot: [0x71024d8d68, 0x71025129f0, 0x710238b3d0]
  ForkGolemMaterialASPlay: [0x71024d8d68, 0x71025129f0, 0x710238b4e0]
  ForkGravityScaleChange: [0x71024d8d68, 0x71025129f0, 0x710238b720]
  ForkHoldWeapon: [0x71024d8d68, 0x71025129f0, 0x710238b830]
  ForkHopInAir: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238b940]
  ForkHover: [0x71024d8d68, 0x71025129f0, 0x7102391288, 0x710239d570, 0x710238ba50]
  ForkHoverKeepRotateTurn: [0x71024d8d68, 0x71025129f0, 0x710238bfb8, 0x710238bb60]
  ForkIgniteCarriedActor: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238bc88]
  ForkInWaterDropWeaponWithSpeed: [0x71024d8d68, 0x71025129f0, 0x71023892a0, 0x710238bd98]
  ForkJumpToTargetOnDownEnd: [0x71024d8d68, 0x71025129f0, 0x710238bea8]
  ForkKnockBackNoRot: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a01f8, 0x71023a0338,
    0x710238c0c8]
  ForkLodNoCountTimer: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238c208]
  ForkLodTimer: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238c318]
  ForkLynelBreathShoot: [0x71024d8d68, 0x71025129f0, 0x7102390098, 0x710238c428]
  ForkLynelDrawWeapon: [0x71024d8d68, 0x71025129f0, 0x710238c558]
  ForkLynelDrawWeaponASPlay: [0x71024d8d68, 0x71025129f0, 0x710238c558, 0x710238c668]
  ForkModelFadeOut: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238c790]
  ForkModelVisibleOff: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238c8a0]
  ForkMoveDistanceCheckByMapUnit: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238c9c8, 0x710238cae0]
  ForkMultiSleep: [0x71024d8d68, 0x71025129f0, 0x710238cbf8]
  ForkNeckOnlyRotateDynPosBasic: [0x71024d8d68, 0x71025129f0, 0x710238cd08]
  ForkNeckRotateDynPosBasic: [0x71024d8d68, 0x71025129f0, 0x710238ce18]
  ForkNoCountActionReservedTimer: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238fac0, 0x710238f9a0,
    0x710238cf28]
  ForkNoHitGroundCrawl: [0x71024d8d68, 0x71025129f0, 0x710238d048]
  ForkNoSlowTimer: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238fac0, 0x710238f9a0, 0x710238d158]
  ForkNoWeaponAttack: [0x71024d8d68, 0x71025129f0, 0x7102387df8, 0x710238d608, 0x710238d278]
  ForkNoWeaponAttackAllTime: [0x71024d8d68, 0x71025129f0, 0x7102387df8, 0x710238d608, 0x710238d3a8]
  ForkNoWeaponAttackAllTimeMinSet: [0x71024d8d68, 0x71025129f0, 0x7102387df8, 0x710238d608, 0x710238d3a8,
    0x710238d4d8]
  ForkNoWeaponAttackDirectParam: [0x71024d8d68, 0x71025129f0, 0x7102387df8, 0x710238d608, 0x710238d278,
    0x710238d738]
  ForkNoWeaponAttackParamWeapon: [0x71024d8d68, 0x71025129f0, 0x710238d880]
  ForkOctarockEnterReloadWig: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238d990]
  ForkOnEnterCharCtrlInvalid: [0x71024d8d68, 0x71025129f0, 0x710238daa0]
  ForkOnEnterDropWeaponWithSpeed: [0x71024d8d68, 0x71025129f0, 0x71023892a0, 0x710245c9b0]
  ForkOnEnterWeaponUse: [0x71024d8d68, 0x71025129f0, 0x710238dbb0]
  ForkOnLeaveChildDelete: [0x71024d8d68, 0x71025129f0, 0x710238dcc0]
  ForkOnLeaveGolemChemReset: [0x71024d8d68, 0x71025129f0, 0x710238ddd0]
  ForkOnResetBasicSignalOff: [0x71024d8d68, 0x71025129f0, 0x710238dee0]
  ForkOverrideStartNoDrawTimer: [0x71024d8d68, 0x71025129f0, 0x710238dff0]
  ForkPreJump: [0x71024d8d68, 0x71025129f0, 0x710238e100]
  ForkRagdollOff: [0x71024d8d68, 0x71025129f0, 0x710238e210]
  ForkSandwormAtkCol: [0x71024d8d68, 0x71025129f0, 0x710238e320]
  ForkSeparateThreeASPart: [0x71024d8d68, 0x71025129f0, 0x710238e430]
  ForkSeqNoWeaponAttack: [0x71024d8d68, 0x71025129f0, 0x7102387df8, 0x710238e540]
  ForkSetComebackPosition: [0x71024d8d68, 0x71025129f0, 0x710238e650]
  ForkSetCustomPallete: [0x71024d8d68, 0x71025129f0, 0x710238e760]
  ForkSetCustomWeather: [0x71024d8d68, 0x71025129f0, 0x710238e870]
  ForkSetJustAvoid: [0x71024d8d68, 0x71025129f0, 0x710238ea90]
  ForkSetJustAvoidFromBone: [0x71024d8d68, 0x71025129f0, 0x710238ea90, 0x710238eba8]
  ForkSetSwarmMaterialAnimByDist: [0x71024d8d68, 0x71025129f0, 0x710238ecd8]
  ForkSimpleGrab: [0x71024d8d68, 0x71025129f0, 0x710238b608, 0x710238ede8]
  ForkSlipAndStop: [0x71024d8d68, 0x71025129f0, 0x710238ef00]
  ForkStalEnemyForceDamage: [0x71024d8d68, 0x71025129f0, 0x710238f010]
  ForkStalEnemyGrabOwnPart: [0x71024d8d68, 0x71025129f0, 0x710238f120]
  ForkStalEnemyHeadShot: [0x71024d8d68, 0x71025129f0, 0x710238f230]
  ForkStalPartApplyDamageImpulse: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238f340]
  ForkStalPartBlownOff: [0x71024d8d68, 0x71025129f0, 0x710238f450]
  ForkStop: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x710238f560]
  ForkStopWithNavCheck: [0x71024d8d68, 0x71025129f0, 0x710238f670]
  ForkSwapPartsItemFromDropTable: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238f780]
  ForkSwarmAttack: [0x71024d8d68, 0x71025129f0, 0x710238f890]
  ForkTimer: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238fac0, 0x710238f9a0]
  ForkTimerForceResetCondition: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x710238fac0, 0x710238f9a0,
    0x710238fbe0]
  ForkToggleFreeMoving: [0x71024d8d68, 0x71025129f0, 0x710235e1f0]
  ForkTogglePriestBossFreeMoving: [0x71024d8d68, 0x71025129f0, 0x710235e300]
  ForkToggleWeaponXLinkSleep: [0x71024d8d68, 0x71025129f0, 0x710235e410]
  ForkTurnASHold: [0x71024d8d68, 0x71025129f0, 0x710238ff60, 0x7102385d58, 0x710238fe28]
  ForkVacuumShootToTarget: [0x71024d8d68, 0x71025129f0, 0x7102390098]
  ForkWaitCloseGanonShoutMsgClose: [0x71024d8d68, 0x71025129f0, 0x71023901b0]
  ForkWaitGroundHit: [0x71024d8d68, 0x71025129f0, 0x71023902c0]
  ForkWeaponAttack: [0x71024d8d68, 0x71025129f0, 0x7102387df8, 0x7102390520, 0x71023903d0]
  ForkWeaponAttackWithAtkBody: [0x71024d8d68, 0x71025129f0, 0x7102387df8, 0x7102390520, 0x71023903d0,
    0x7102390658]
  ForkWeaponShockWave: [0x71024d8d68, 0x71025129f0, 0x71023907a8]
  ForkWeaponShockWaveCheckValue: [0x71024d8d68, 0x71025129f0, 0x71023907a8, 0x71023908c0]
  FreeMoveByGuideBase: [0x71024d8d68, 0x71025129f0, 0x7102390b30]
  FreeMoveRandom: [0x71024d8d68, 0x71025129f0, 0x71023909f0, 0x7102390c40]
  FreeMoveToNearGround: [0x71024d8d68, 0x71025129f0, 0x71023909f0, 0x7102390ec0, 0x7102390d80]
  FreeMoveToTarget: [0x71024d8d68, 0x71025129f0, 0x71023909f0, 0x7102390ec0]
  FreeMoveToTargetInWataer: [0x71024d8d68, 0x71025129f0, 0x71023909f0, 0x7102390ec0, 0x7102391000]
  FreeMoveToTargetWithBank: [0x71024d8d68, 0x71025129f0, 0x71023909f0, 0x7102390ec0, 0x7102391148]
  Freeze: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102391398]
  FreezedInIce: [0x71024d8d68, 0x71025129f0, 0x71024e11d0]
  FreezedInIceWeapon: [0x71024d8d68, 0x71025129f0, 0x71024e11d0, 0x71023914a8]
  FromCDungeonToMainField: [0x71024d8d68, 0x71025129f0, 0x7102370548, 0x71023915d0]
  FrontierSpotBgmTriggerAction: [0x71024d8d68, 0x71025129f0, 0x71024fa9d0]
  GameDataAddFloat: [0x71024d8d68, 0x71025129f0, 0x71023916e0]
  GameDataAddInt: [0x71024d8d68, 0x71025129f0, 0x71023917f0]
  GameDataAddVec3: [0x71024d8d68, 0x71025129f0, 0x7102391900]
  GameDataConvertIntToSring: [0x71024d8d68, 0x71025129f0, 0x7102391a10]
  GameDataCopyFloat: [0x71024d8d68, 0x71025129f0, 0x7102391b20]
  GameDataCopyInt: [0x71024d8d68, 0x71025129f0, 0x7102391c30]
  GameDataSubFloat: [0x71024d8d68, 0x71025129f0, 0x7102391d40]
  GameDataSubInt: [0x71024d8d68, 0x71025129f0, 0x7102391e50]
  GameDataSubVec3: [0x71024d8d68, 0x71025129f0, 0x7102391f60]
  GanonAttackWithEmitChemical: [0x71024d8d68, 0x71025129f0, 0x7102393798, 0x7102392070]
  GanonBarrierOn: [0x71024d8d68, 0x71025129f0, 0x71023921b0]
  GanonBeamIgnite: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023addd0,
    0x71023922c0]
  GanonBeamMove: [0x71024d8d68, 0x71025129f0, 0x710236c948, 0x71023923d0]
  GanonBeastASPlayFromActiveWp: [0x71024d8d68, 0x71025129f0, 0x7102386888, 0x7102392558]
  GanonBeastBeamMove: [0x71024d8d68, 0x71025129f0, 0x71023bb6b8, 0x7102392670]
  GanonBeastDamageASPlay: [0x71024d8d68, 0x71025129f0, 0x7102386888, 0x71023927c8]
  GanonBoneControl: [0x71024d8d68, 0x71025129f0, 0x71023929f8]
  GanonChangeState: [0x71024d8d68, 0x71025129f0, 0x7102392b08]
  GanonChemicalPillarAttack: [0x71024d8d68, 0x71025129f0, 0x7102392c38]
  GanonFallAttack: [0x71024d8d68, 0x71025129f0, 0x7102392d48]
  GanonMove: [0x71024d8d68, 0x71025129f0, 0x7102392e58]
  GanonSmallDamage: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a01f8, 0x71023a0338, 0x7102392f70]
  GanonStunRecover: [0x71024d8d68, 0x71025129f0, 0x71023930b0]
  GanonThrowFireBall: [0x71024d8d68, 0x71025129f0, 0x71023931c0]
  GanonThrowMultiIce: [0x71024d8d68, 0x71025129f0, 0x71023931c0, 0x71023932e0]
  GanonThrowMultiTornado: [0x71024d8d68, 0x71025129f0, 0x7102393550, 0x7102393418]
  GanonThrowTornado: [0x71024d8d68, 0x71025129f0, 0x7102393550]
  GanonTurnOnWall: [0x71024d8d68, 0x71025129f0, 0x7102393670]
  GanonWeaponNearAttack: [0x71024d8d68, 0x71025129f0, 0x7102393798]
  GearRotate: [0x71024d8d68, 0x71025129f0, 0x71023938a8]
  GearStop: [0x71024d8d68, 0x71025129f0, 0x71023939b8]
  GelEnemyAppear: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x7102365fe0,
    0x7102393ac8]
  GelEnemyFreeze: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102391398, 0x7102393bf0]
  GelEnemySystemHideChase: [0x71024d8d68, 0x71025129f0, 0x71023c44e0, 0x71023c45f8, 0x7102393d00]
  GelJumpTackle: [0x71024d8d68, 0x71025129f0, 0x710239f7f8, 0x7102393f60]
  GerudoQueenWakeBoardReady: [0x71024d8d68, 0x71025129f0, 0x71023940a0]
  GetCapturedActor: [0x71024d8d68, 0x71025129f0, 0x71023943f8, 0x71023941b0]
  GetItemAnotherActor: [0x71024d8d68, 0x71025129f0, 0x71023942e0]
  GetItemGet: [0x71024d8d68, 0x71025129f0, 0x71023943f8, 0x7102394510]
  GetItemIntoBag: [0x71024d8d68, 0x71025129f0, 0x71023943f8, 0x7102394628]
  GetOffFromHorseAction: [0x71024d8d68, 0x71025129f0, 0x71024e87c8]
  GetRupee: [0x71024d8d68, 0x71025129f0, 0x71023943f8, 0x7102394740]
  GetSmallKeyItemGet: [0x71024d8d68, 0x71025129f0, 0x71023943f8, 0x7102394858]
  GetUp: [0x71024d8d68, 0x71025129f0, 0x7102394ab8, 0x7102394970]
  GetUpLinear: [0x71024d8d68, 0x71025129f0, 0x7102394ab8, 0x7102394be8]
  GetUpMoveAnmDriven: [0x71024d8d68, 0x71025129f0, 0x7102394ab8, 0x7102394970, 0x7102394d18]
  GetWeaponEquip: [0x71024d8d68, 0x71025129f0, 0x71023943f8, 0x7102394e60]
  GiantArmorBurned: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102394f78, 0x7102395090]
  GiantArmorElectric: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102394f78,
    0x71023951c0]
  GiantArmorEquip: [0x71024d8d68, 0x71025129f0, 0x71024e0588, 0x71023952d8]
  GiantBattleCloseMove: [0x71024d8d68, 0x71025129f0, 0x7102369528, 0x7102369270, 0x710236bf18,
    0x7102395570, 0x7102395408]
  GiantBattleCloseWalk: [0x71024d8d68, 0x71025129f0, 0x7102369528, 0x7102369270, 0x710236bf18,
    0x7102395570, 0x71023956c0]
  GiantCatchTreeWeapon: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710236fb98, 0x7102395810]
  GiantDoubleGroundPunch: [0x71024d8d68, 0x71025129f0, 0x7102387df8, 0x710238e540, 0x7102395940]
  GiantDownSwingAttack: [0x71024d8d68, 0x71025129f0, 0x71023c7b18, 0x7102369138, 0x7102395a68]
  GiantEnemyWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a4dc0, 0x7102395ba0, 0x7102395cd0]
  GiantHandClapToTarget: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023b1cf0, 0x7102395e18]
  GiantNavMeshWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a70a0, 0x7102395f40, 0x7102396098]
  GiantOneHandAttackWithLegTurn: [0x71024d8d68, 0x71025129f0, 0x71023c7b18, 0x7102369138, 0x71023ad608,
    0x71023961f0]
  GiantOneHandPunchWithLegTurn: [0x71024d8d68, 0x71025129f0, 0x71023c7b18, 0x7102369138, 0x71023ad608,
    0x7102396328]
  GiantPunchAttack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023b1cf0,
    0x7102396448]
  GiantPunchWithAddEntitySensor: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023b1cf0, 0x7102396448, 0x7102396560]
  GiantSleep: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023bef00, 0x7102396690]
  GiveCookResultForNpc: [0x71024d8d68, 0x71025129f0, 0x71023967c0]
  GolemDieFromRagdoll: [0x71024d8d68, 0x71025129f0, 0x71023968d0]
  GolemRepairParts: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023969e0]
  GolemThrowPartsToTarget: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x7102396b80, 0x7102396c98]
  GoronHeroDescendentAppear: [0x71024d8d68, 0x71025129f0, 0x7102396dc8]
  GoronHeroDescendentJump: [0x71024d8d68, 0x71025129f0, 0x7102372a28, 0x7102396ed8]
  Grab: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102397020]
  GrabAndShoot: [0x71024d8d68, 0x71025129f0, 0x7102397148]
  GrabAttack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102397020, 0x7102397258]
  GrabLeft: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102397020, 0x7102397398]
  GrabLeftTurn: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c79e0, 0x71023974c0]
  GrabLeftWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a4dc0, 0x7102397610]
  GrabRight: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102397020, 0x7102397740]
  GrabRightTurn: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c79e0, 0x7102397868]
  GrabRightWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a4dc0, 0x71023979a0]
  GraveAttack: [0x71024d8d68, 0x71025129f0, 0x7102397ad0]
  GroupAllowEmitAction: [0x71024d8d68, 0x71025129f0, 0x71024faae0]
  GroupDisallowEmitAction: [0x71024d8d68, 0x71025129f0, 0x71024fabf0]
  Guard: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a01f8, 0x7102397be0]
  GuardBackWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710236a5a8, 0x71023a7e08, 0x7102397d28]
  GuardBreak: [0x71024d8d68, 0x71025129f0, 0x7102397e48]
  GuardJust: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023addd0,
    0x71023999d8]
  GuardLoop: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102399ae8]
  GuardTurn: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c79e0, 0x7102399bf8]
  GuardWithAS: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a01f8, 0x7102397be0, 0x7102399d30]
  GuardianAimBeam: [0x71024d8d68, 0x71025129f0, 0x7102398098]
  GuardianAimBeamWithAS: [0x71024d8d68, 0x71025129f0, 0x7102398098, 0x71023981b8]
  GuardianBeamFire: [0x71024d8d68, 0x71025129f0, 0x710236c948, 0x71023982f0]
  GuardianChargeBeam: [0x71024d8d68, 0x71025129f0, 0x7102398460]
  GuardianMiniBeamMove: [0x71024d8d68, 0x71025129f0, 0x710236c948, 0x7102398570]
  GuardianMiniFinalBeamMove: [0x71024d8d68, 0x71025129f0, 0x710236c948, 0x71023982f0, 0x71023986e0]
  GuardianMiniGuardBattleWalk: [0x71024d8d68, 0x71025129f0, 0x7102369528, 0x7102369270, 0x710236bf18,
    0x710236c338, 0x7102398868]
  GuardianMiniGuardBreak: [0x71024d8d68, 0x71025129f0, 0x7102397e48, 0x71023989d0]
  GuardianMiniGuardNavMeshWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a70a0, 0x71023a76e0,
    0x7102398b10]
  GuardianMiniGuardSideWalk: [0x71024d8d68, 0x71025129f0, 0x71023c4f00, 0x71023c5260, 0x7102398c68]
  GuardianMiniGuardTurn: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c79e0, 0x71023c7210,
    0x7102398db8]
  GuardianMiniGuardWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c8c18,
    0x71023c8b08, 0x71023993c8, 0x7102398f08]
  GuardianMiniLineBeam: [0x71024d8d68, 0x71025129f0, 0x71023bb6b8, 0x7102399050]
  GuardianMiniNeckSpinBeam: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c1108,
    0x71023a7980, 0x710236cab8, 0x7102399168]
  GuardianMiniPracticeFlagSet: [0x71024d8d68, 0x71025129f0, 0x71023992b8]
  GuardianMiniWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c8c18, 0x71023c8b08,
    0x71023993c8]
  GuardianMoveToPosition: [0x71024d8d68, 0x71025129f0, 0x7102397f70, 0x71023994e0]
  GuardianMoveToTarget: [0x71024d8d68, 0x71025129f0, 0x7102397f70, 0x7102399628]
  GuardianSearch: [0x71024d8d68, 0x71025129f0, 0x7102397f70, 0x7102399780]
  GuardianStopWait: [0x71024d8d68, 0x71025129f0, 0x7102397f70, 0x71023998a8]
  HiddenKorokAppear: [0x71024d8d68, 0x71025129f0, 0x7102399e90]
  HideBarrelCarried: [0x71024d8d68, 0x71025129f0, 0x710236f900, 0x7102399fa0]
  HideHover: [0x71024d8d68, 0x71025129f0, 0x710239a0e0]
  HideShootArrow: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023ba298, 0x710239a1f0]
  HingeMagneFixedRigid: [0x71024d8d68, 0x71025129f0, 0x7102381d70, 0x710235db80, 0x710235e520]
  HoldArrow: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x710239a318]
  HoldArrowBackWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710236a5a8, 0x71023a7e08,
    0x710239a428]
  HoldArrowTurn: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c79e0, 0x710239a548]
  HoldArrowWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a4dc0, 0x710239a680]
  HopFlyByTriggers: [0x71024d8d68, 0x71025129f0, 0x710239a7b0]
  HornUse: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c8c18, 0x71023c6528,
    0x710237aec0, 0x710239a8c0]
  HorseDie: [0x71024d8d68, 0x71025129f0, 0x710239a9e8]
  HorseEatAction: [0x71024d8d68, 0x71025129f0, 0x71024e88d8]
  HorseEatCarriedItem: [0x71024d8d68, 0x71025129f0, 0x710239aaf8]
  HorseElectricParalysis: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x710239ac08]
  HorseFallAction: [0x71024d8d68, 0x71025129f0, 0x71024e89e8]
  HorseFollow: [0x71024d8d68, 0x71025129f0, 0x710239ae40, 0x710239ad18]
  HorseFreeze: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x710239af68]
  HorseKickBackAction: [0x71024d8d68, 0x71025129f0, 0x71024e8af8]
  HorseManeCollarSyncAction: [0x71024d8d68, 0x71025129f0, 0x71024e8c08]
  HorseManeGrabbedAction: [0x71024d8d68, 0x71025129f0, 0x71024e8d18]
  HorseMoveToSafePos: [0x71024d8d68, 0x71025129f0, 0x71024e8fa0, 0x710239b078]
  HorseMoveToTargetAction: [0x71024d8d68, 0x71025129f0, 0x71024e8fa0, 0x71024e8e90]
  HorseRandomMoveAction: [0x71024d8d68, 0x71025129f0, 0x71024e8fa0, 0x71024e90b0]
  HorseReinsBindAction: [0x71024d8d68, 0x71025129f0, 0x71024e9350, 0x71024e91c0]
  HorseReinsDefaultAction: [0x71024d8d68, 0x71025129f0, 0x71024e9350]
  HorseReturnToSafePos: [0x71024d8d68, 0x71025129f0, 0x710239b260]
  HorseRiddenByPlayer: [0x71024d8d68, 0x71025129f0, 0x710239b370]
  HorseRideAngryGear1Coomand: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239c078, 0x710239c4e8,
    0x710239bdf8, 0x710239b550]
  HorseRideArrowReload: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239b6f0]
  HorseRideAttack: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239c078, 0x710239b800]
  HorseRideCancelCommand: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239c078, 0x710239c4e8,
    0x710239bdf8, 0x710239ba20]
  HorseRideChargeCommand: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239c078, 0x710239c4e8,
    0x710239bdf8, 0x710239c858, 0x710239bb60]
  HorseRideChaseCommand: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239c078, 0x710239c4e8,
    0x710239bdf8, 0x710239c858, 0x710239bcb8]
  HorseRideDynSetGearCommand: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239c078, 0x710239c4e8,
    0x710239bdf8, 0x710239bf10]
  HorseRideLookWait: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239c078]
  HorseRideLoopAttack: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239c188]
  HorseRideMoveToCommand: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239c078, 0x710239c4e8,
    0x710239bdf8, 0x710239c858, 0x710239c298]
  HorseRideOneTimeASPlay: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239c3d8]
  HorseRideOneTimeViewASPlay: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239ccd8, 0x710239c5f8]
  HorseRideSearch: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239c720]
  HorseRideShoot: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239c970]
  HorseRideStopCommand: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239c078, 0x710239c4e8,
    0x710239bdf8, 0x710239ca80]
  HorseRideTurnCommand: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239c078, 0x710239c4e8,
    0x710239bdf8, 0x710239cb98]
  HorseRideViewWait: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239ccd8]
  HorseRideWait: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239cde8]
  HorseRodeo: [0x71024d8d68, 0x71025129f0, 0x710239cef8]
  HorseSaddleBindAction: [0x71024d8d68, 0x71025129f0, 0x71024e9600, 0x71024e94c8]
  HorseSaddleDefaultAction: [0x71024d8d68, 0x71025129f0, 0x71024e9600]
  HorseSwimAction: [0x71024d8d68, 0x71025129f0, 0x71024e9910, 0x71024e9788]
  HorseSwimToTargetActor: [0x71024d8d68, 0x71025129f0, 0x71024e9910, 0x710239d008]
  HorseTurnAction: [0x71024d8d68, 0x71025129f0, 0x71024e9a20]
  HorseVanish: [0x71024d8d68, 0x71025129f0, 0x710239d130]
  HorseWaitAction: [0x71024d8d68, 0x71025129f0, 0x71024e9b30]
  HorseWaitAndLookAtNPC: [0x71024d8d68, 0x71025129f0, 0x71024e9b30, 0x710239d240]
  HorseWaitEx: [0x71024d8d68, 0x71025129f0, 0x71024e9b30, 0x710239d350]
  HorseWaitForEventAction: [0x71024d8d68, 0x71025129f0, 0x71024e9c40]
  HorseWaitThrowOffAction: [0x71024d8d68, 0x71025129f0, 0x71024e9d50]
  Hover: [0x71024d8d68, 0x71025129f0, 0x7102391288, 0x710239d570, 0x710239d460]
  HoverNoticeTurn: [0x71024d8d68, 0x71025129f0, 0x71023683d0, 0x71023a8038, 0x710239d680]
  HoverPredictVacuumShoot: [0x71024d8d68, 0x71025129f0, 0x71023b1298, 0x710239d7a8]
  HoverTurn: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c79e0, 0x710239d8e0]
  HuntingDead: [0x71024d8d68, 0x71025129f0, 0x710239da18]
  IceBroken: [0x71024d8d68, 0x71025129f0, 0x710239db28]
  IchigekiHeartDecrease: [0x71024d8d68, 0x71025129f0, 0x710235e660]
  IchigekiHeartUiClose: [0x71024d8d68, 0x71025129f0, 0x710235e788]
  IchigekiHeartUiOpen: [0x71024d8d68, 0x71025129f0, 0x710235e898]
  IdleAction: [0x71024d8d68, 0x71025129f0, 0x71024d9fc8]
  IgniteGrabAndShoot: [0x71024d8d68, 0x71025129f0, 0x710239de58]
  IgniteThreeActorAttack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023addd0, 0x710239df68]
  IgniteToTarget: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023addd0,
    0x710239e078]
  IgniteToTargetDir: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023addd0, 0x710239e2d8, 0x710239e1a8]
  IgniteToTargetSimple: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023addd0, 0x710239e2d8]
  IgnitedThrown: [0x71024d8d68, 0x71025129f0, 0x710239dd48]
  ImmediateStopOwnedHorse: [0x71024d8d68, 0x71025129f0, 0x710239e3f0]
  InCarryBox: [0x71024d8d68, 0x71025129f0, 0x710239e500]
  IncreaseNumDungeonClearSeal: [0x71024d8d68, 0x71025129f0, 0x710239e610]
  IncreaseNumHeroSeal: [0x71024d8d68, 0x71025129f0, 0x710235e9a8]
  IncreaseNumKorokNuts: [0x71024d8d68, 0x71025129f0, 0x710239e720]
  IncreasePlayerMaxHeart: [0x71024d8d68, 0x71025129f0, 0x710239e830]
  IncreasePlayerMaxStamina: [0x71024d8d68, 0x71025129f0, 0x710239e940]
  InitPouchForQuest: [0x71024d8d68, 0x71025129f0, 0x710239ea50]
  InsectLevelFlyMove: [0x71024d8d68, 0x71025129f0, 0x71023a2a18, 0x71023a28d8, 0x710239eb60]
  InvisibleKorokMove: [0x71024d8d68, 0x71025129f0, 0x710239ecd0]
  InvisibleKorokWait: [0x71024d8d68, 0x71025129f0, 0x710239ede0]
  IsMorphEndASPlay: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023addd0,
    0x710239f000]
  ItemAmiiboCreateFromDropTable: [0x71024d8d68, 0x71025129f0, 0x710239f110]
  ItemAmiiboSelectDropTable: [0x71024d8d68, 0x71025129f0, 0x710239f298]
  ItemConductorDemoBind: [0x71024d8d68, 0x71025129f0, 0x710239f3a8]
  JumpAttack: [0x71024d8d68, 0x71025129f0, 0x710239f4b8]
  JumpMainRigidBody: [0x71024d8d68, 0x71025129f0, 0x710239f5d8]
  JumpMove: [0x71024d8d68, 0x71025129f0, 0x710239f6e8]
  JumpToTarget: [0x71024d8d68, 0x71025129f0, 0x710239fa98, 0x710239f920]
  JumpToTargetFromWater: [0x71024d8d68, 0x71025129f0, 0x710239fa98, 0x710239fc10]
  KeepPosInWater: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c8c18, 0x710239fd88]
  KeepStandingPosture: [0x71024d8d68, 0x71025129f0, 0x710239fe98]
  Kick: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710239ffa8]
  KillAllDemoSoundAction: [0x71024d8d68, 0x71025129f0, 0x71024fad00]
  KillSelectActor: [0x71024d8d68, 0x71025129f0, 0x710235eab8]
  KillUIScreenAction: [0x71024d8d68, 0x71025129f0, 0x71024e12e0]
  KokkoCreateDrop: [0x71024d8d68, 0x71025129f0, 0x7102372548, 0x71023a05a0]
  KokkoMove: [0x71024d8d68, 0x71025129f0, 0x71023a06d0]
  KokkoMoveWithJump: [0x71024d8d68, 0x71025129f0, 0x71023a06d0, 0x71023a07e8]
  KokkoThrown: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c5c00, 0x71023a0918]
  KorokFlowerAppear: [0x71024d8d68, 0x71025129f0, 0x71023a0a30]
  KorokFlowerVanish: [0x71024d8d68, 0x71025129f0, 0x71023a0b40]
  KorokFlowerWait: [0x71024d8d68, 0x71025129f0, 0x71023a0c50]
  KorokTargetMove: [0x71024d8d68, 0x71025129f0, 0x71023a0d60]
  KorokTargetWait: [0x71024d8d68, 0x71025129f0, 0x71023a0e70]
  LandOnCeil: [0x71024d8d68, 0x71025129f0, 0x71023a0f80]
  LandRagdoll: [0x71024d8d68, 0x71025129f0, 0x71023b2020, 0x71023a1090]
  LandTeleport: [0x71024d8d68, 0x71025129f0, 0x71023c5608, 0x71023a11e8]
  LandTeleportConsiderCameraDir: [0x71024d8d68, 0x71025129f0, 0x71023c5608, 0x71023a11e8, 0x710235ebc8]
  LargeAttack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a1348]
  LargeDamage: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a1458]
  LastBossChemicalPillarAttack: [0x71024d8d68, 0x71025129f0, 0x71023a16c8]
  LastBossDemoWarp: [0x71024d8d68, 0x71025129f0, 0x71023a17e8]
  LastBossFlyWait: [0x71024d8d68, 0x71025129f0, 0x71023a18f8]
  LastBossFlyWaitTurnToTarget: [0x71024d8d68, 0x71025129f0, 0x71023a18f8, 0x71023a1a20]
  LastBossJustGuard: [0x71024d8d68, 0x71025129f0, 0x71023a1b60]
  LastBossNormalWarp: [0x71024d8d68, 0x71025129f0, 0x71023a1c70]
  LastBossPostNormalWarp: [0x71024d8d68, 0x71025129f0, 0x71023a1d90]
  LastBossPreNormalWarp: [0x71024d8d68, 0x71025129f0, 0x71023a1eb0]
  LastBossRailWarpAction: [0x71024d8d68, 0x71025129f0, 0x71023a1fd8]
  LastBossRandomHighWarp: [0x71024d8d68, 0x71025129f0, 0x71023a1c70, 0x71023a20e8]
  LastBossStun: [0x71024d8d68, 0x71025129f0, 0x71023a2220]
  LastBossThunderAppear: [0x71024d8d68, 0x71025129f0, 0x71023a2448]
  LastBossThunderSign: [0x71024d8d68, 0x71025129f0, 0x71023a2558]
  LevelFlyLookDownToTgtHeight: [0x71024d8d68, 0x71025129f0, 0x71023a2d88, 0x71023a2668]
  LevelFlyLookRisingToTgtHeight: [0x71024d8d68, 0x71025129f0, 0x71023a2d88, 0x71023a2c68, 0x71023a27a0]
  LevelFlyMove: [0x71024d8d68, 0x71025129f0, 0x71023a2a18, 0x71023a28d8]
  LevelFlyRise: [0x71024d8d68, 0x71025129f0, 0x71023a2b58]
  LevelFlyRiseLookingTarget: [0x71024d8d68, 0x71025129f0, 0x71023a2d88, 0x71023a2c68]
  LiftTurn: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c79e0, 0x71023a2ea8]
  LiftWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a4dc0, 0x71023a2fe0]
  LinearFlyAttack: [0x71024d8d68, 0x71025129f0, 0x71023a3250, 0x71023a3110]
  LinkTagBaseAction: [0x71024d8d68, 0x71025129f0, 0x71024d9b70]
  LinkTagCountAction: [0x71024d8d68, 0x71025129f0, 0x71024d9b70]
  LinkTagPulseAction: [0x71024d8d68, 0x71025129f0, 0x71024d9b70]
  ListenerFixPositionAction: [0x71024d8d68, 0x71025129f0, 0x71024fae10]
  ListenerSetModeAction: [0x71024d8d68, 0x71025129f0, 0x71024faf20]
  LoadSaveDataFromGameOver: [0x71024d8d68, 0x71025129f0, 0x71023a3378]
  LookAtObject: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71023c75d0, 0x71023a3488]
  LookAtObjectSeachAwareness: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71023c75d0,
    0x71023a3488, 0x71023a3608]
  LookAtTarget: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c79e0, 0x71023a3770]
  LookAtTheFront: [0x71024d8d68, 0x71025129f0, 0x71023a38a8]
  LynelAttackASPlay: [0x71024d8d68, 0x71025129f0, 0x71023a39b8]
  LynelBreathMove: [0x71024d8d68, 0x71025129f0, 0x71023a3ac8]
  LynelDrawWeapon: [0x71024d8d68, 0x71025129f0, 0x710238c558, 0x710238c668, 0x71023a3bd8]
  LynelHighJumpAttack: [0x71024d8d68, 0x71025129f0, 0x710239f4b8, 0x71023a3d00]
  LynelMove: [0x71024d8d68, 0x71025129f0, 0x71023646a0, 0x7102364570, 0x71023a3e38]
  LynelNavMeshMove: [0x71024d8d68, 0x71025129f0, 0x71024e8fa0, 0x71023a3f68]
  LynelRodeo: [0x71024d8d68, 0x71025129f0, 0x71023a4078]
  LynelSpinAttack: [0x71024d8d68, 0x71025129f0, 0x7102387df8, 0x7102390520, 0x71023903d0, 0x71023a4188]
  LyzalfosFlame: [0x71024d8d68, 0x71025129f0, 0x7102378f58, 0x7102370bc8, 0x71023a42c0]
  MagneGearEmbeded: [0x71024d8d68, 0x71025129f0, 0x71023a4410]
  MagneGearGrabbed: [0x71024d8d68, 0x71025129f0, 0x71023a4520]
  MamonoShopStand: [0x71024d8d68, 0x71025129f0, 0x71023a4630]
  MarkPosition: [0x71024d8d68, 0x71025129f0, 0x71023a4740]
  MarkPositionFromGameData: [0x71024d8d68, 0x71025129f0, 0x71023a4850]
  Mimic: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023a4960]
  MimicFreeze: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102391398, 0x71023a4a70]
  MoonMove: [0x71024d8d68, 0x71025129f0, 0x71023a4b80]
  MotorcycleAppear: [0x71024d8d68, 0x71025129f0, 0x710235ed58]
  MotorcycleDisappear: [0x71024d8d68, 0x71025129f0, 0x710235ee68]
  MotorcycleRiddenByPlayer: [0x71024d8d68, 0x71025129f0, 0x710235ef78]
  MotorcycleWait: [0x71024d8d68, 0x71025129f0, 0x710235f110]
  MotorcycleWaitForEvent: [0x71024d8d68, 0x71025129f0, 0x710235f220]
  MotorcycleWaitUntilFellOver: [0x71024d8d68, 0x71025129f0, 0x710235f110, 0x710235f330]
  Move2HomePos: [0x71024d8d68, 0x71025129f0, 0x71023a5370, 0x71023a4c90]
  MoveByAnimeDriven: [0x71024d8d68, 0x71025129f0, 0x71023a4ef0]
  MoveByAnimeDrivenCheckNavMesh: [0x71024d8d68, 0x71025129f0, 0x71023a4ef0, 0x71023a5010]
  MoveByAnimeDrivenDynAS: [0x71024d8d68, 0x71025129f0, 0x71023a4ef0, 0x71023a5130]
  MoveByAnimeDrivenToTarget: [0x71024d8d68, 0x71025129f0, 0x71023a4ef0, 0x71023a5250]
  MoveKeyFramed: [0x71024d8d68, 0x71025129f0, 0x71023a5488]
  MoveMainRidigBody: [0x71024d8d68, 0x71025129f0, 0x71023a5598]
  MoveToHomeMtx: [0x71024d8d68, 0x71025129f0, 0x71023a56a8]
  MoveToTarget: [0x71024d8d68, 0x71025129f0, 0x71023a58d8, 0x71023a57b8]
  MoveToTargetCurve: [0x71024d8d68, 0x71025129f0, 0x7102372a28, 0x71023a59f8]
  MoveToTargetDir: [0x71024d8d68, 0x71025129f0, 0x71023a58d8, 0x710235f458]
  MoveWithAS: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a4dc0, 0x71023a5b28]
  MoveWithDynAS: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a4dc0, 0x71023a5c58]
  Msg2CameraKeepState: [0x71024d8d68, 0x71025129f0, 0x71023a5d88]
  Msg2CameraReset: [0x71024d8d68, 0x71025129f0, 0x71023a5e98]
  Msg2CameraResetInterpolate: [0x71024d8d68, 0x71025129f0, 0x71023a5fa8]
  Msg2CameraResetNoConnect: [0x71024d8d68, 0x71025129f0, 0x71023a60b8]
  MultiVacuumRotScaleTimeByDist: [0x71024d8d68, 0x71025129f0, 0x71023a61c8, 0x71023a62d8, 0x71023a6400]
  MusicianSpotBgmTriggerAction: [0x71024d8d68, 0x71025129f0, 0x71024fc150, 0x71024fb030]
  NPCAnchorWait: [0x71024d8d68, 0x71025129f0, 0x71023a8160]
  NPCArmorProcessing: [0x71024d8d68, 0x71025129f0, 0x71023a8278]
  NPCArtistAnchorWait: [0x71024d8d68, 0x71025129f0, 0x71023a8160]
  NPCBuyHorse: [0x71024d8d68, 0x71025129f0, 0x71023a84b8]
  NPCBuyItem: [0x71024d8d68, 0x71025129f0, 0x71023a85c8]
  NPCCalculateMaterialValue: [0x71024d8d68, 0x71025129f0, 0x71023a86d8]
  NPCChangeBoots: [0x71024d8d68, 0x71025129f0, 0x71023a87e8]
  NPCCheckHorseAssociated: [0x71024d8d68, 0x71025129f0, 0x71023a88f8]
  NPCCloseHorseCustom: [0x71024d8d68, 0x71025129f0, 0x71023a8a08]
  NPCDeliverHorse: [0x71024d8d68, 0x71025129f0, 0x71023a8b18]
  NPCDyeGoods: [0x71024d8d68, 0x71025129f0, 0x71023a8c28]
  NPCDyeShopCloseMaterial: [0x71024d8d68, 0x71025129f0, 0x71023a8d38]
  NPCDyeShopReception: [0x71024d8d68, 0x71025129f0, 0x71023a8e48]
  NPCDyeShopSelectMaterial: [0x71024d8d68, 0x71025129f0, 0x71023a8f58]
  NPCEndHorseReception: [0x71024d8d68, 0x71025129f0, 0x71023a9068]
  NPCEscape: [0x71024d8d68, 0x71025129f0, 0x71024da0d8, 0x71023a9178]
  NPCEventWait: [0x71024d8d68, 0x71025129f0, 0x71023a9298]
  NPCGiveReward: [0x71024d8d68, 0x71025129f0, 0x71023a93a8]
  NPCHorseCustomReception: [0x71024d8d68, 0x71025129f0, 0x71023a94b8]
  NPCHorseReception: [0x71024d8d68, 0x71025129f0, 0x71023a95c8]
  NPCHorseReceptionRelease: [0x71024d8d68, 0x71025129f0, 0x71023a96d8]
  NPCHorseReceptionResurrect: [0x71024d8d68, 0x71025129f0, 0x71023a97e8]
  NPCHorseResurrect: [0x71024d8d68, 0x71025129f0, 0x71023a98f8]
  NPCInfoOffHorse: [0x71024d8d68, 0x71025129f0, 0x71023a9a08]
  NPCInfoOnHorse: [0x71024d8d68, 0x71025129f0, 0x71023a9b18]
  NPCInfoOnNamedHorse: [0x71024d8d68, 0x71025129f0, 0x71023a9c28]
  NPCKnockBackMove: [0x71024d8d68, 0x71025129f0, 0x71023a9d38]
  NPCLerpAction: [0x71024d8d68, 0x71025129f0, 0x71024edcc0]
  NPCLerpDynAS: [0x71024d8d68, 0x71025129f0, 0x71024edcc0, 0x71023a9e48]
  NPCMakeArtifact: [0x71024d8d68, 0x71025129f0, 0x71023a9f78]
  NPCMakeItem: [0x71024d8d68, 0x71025129f0, 0x71023aa088]
  NPCManufactItem: [0x71024d8d68, 0x71025129f0, 0x71023aa1b8]
  NPCNameHorse: [0x71024d8d68, 0x71025129f0, 0x71023aa2c8]
  NPCPurchase: [0x71024d8d68, 0x71025129f0, 0x71023aa3d8]
  NPCPurchaseEnemyMaterial: [0x71024d8d68, 0x71025129f0, 0x71023aa4e8]
  NPCPurchaseMaterial: [0x71024d8d68, 0x71025129f0, 0x71023aa5f8]
  NPCReceiveHorse: [0x71024d8d68, 0x71025129f0, 0x71023aa708]
  NPCRegisterAndReceiveHorse: [0x71024d8d68, 0x71025129f0, 0x71023aa818]
  NPCRegisterHorse: [0x71024d8d68, 0x71025129f0, 0x71023aa928]
  NPCReleaseHorse: [0x71024d8d68, 0x71025129f0, 0x71023aaa38]
  NPCSale: [0x71024d8d68, 0x71025129f0, 0x71023aac78]
  NPCSaleAppReception: [0x71024d8d68, 0x71025129f0, 0x71023aad88]
  NPCSaleCollectedItem: [0x71024d8d68, 0x71025129f0, 0x71023aae98]
  NPCSalePictureReception: [0x71024d8d68, 0x71025129f0, 0x71023aafa8]
  NPCSaleReception: [0x71024d8d68, 0x71025129f0, 0x71023ab0b8]
  NPCSellApp: [0x71024d8d68, 0x71025129f0, 0x71023ab1c8]
  NPCSellHorse: [0x71024d8d68, 0x71025129f0, 0x71023ab2d8]
  NPCSellItem: [0x71024d8d68, 0x71025129f0, 0x71023ab3e8]
  NPCStartTurnToPlayer: [0x71024d8d68, 0x71025129f0, 0x71023ab4f8]
  NPCTalk: [0x71024d8d68, 0x71025129f0, 0x71023ab858]
  NPCTalkASyncAction: [0x71024d8d68, 0x71025129f0, 0x71024eddd8]
  NPCTalkNoMessageStepperAction: [0x71024d8d68, 0x71025129f0, 0x71024edee8]
  NPCTalkToPlayerAction: [0x71024d8d68, 0x71025129f0, 0x71024edff8]
  NPCTargetMove: [0x71024d8d68, 0x71025129f0, 0x71024da0d8, 0x71023ab968]
  NPCTargetMoveDynAs: [0x71024d8d68, 0x71025129f0, 0x71024da0d8, 0x71023ab968, 0x71023aba98]
  NPCTebaApproachPlayer: [0x71024d8d68, 0x71025129f0, 0x71023abbe0]
  NPCTravelerRest: [0x71024d8d68, 0x71025129f0, 0x71023abe30]
  NPCTurnAction: [0x71024d8d68, 0x71025129f0, 0x71024ee108]
  NPCTurnToObject: [0x71024d8d68, 0x71025129f0, 0x71023abf40]
  NPCTurnToObjectGreeting: [0x71024d8d68, 0x71025129f0, 0x71023abf40, 0x71023ac058]
  NPCTurnToPosition: [0x71024d8d68, 0x71025129f0, 0x71023ac188]
  NPCWait: [0x71024d8d68, 0x71025129f0, 0x71023ac298]
  NPCWaitAction: [0x71024d8d68, 0x71025129f0, 0x71024ee218]
  NPCWaitDynAS: [0x71024d8d68, 0x71025129f0, 0x71023ac298, 0x71023ac3b0]
  NPCWaitDynFrame: [0x71024d8d68, 0x71025129f0, 0x71023ac298, 0x71023ac610, 0x71023ac4e0]
  NPCWaitFrame: [0x71024d8d68, 0x71025129f0, 0x71023ac298, 0x71023ac610]
  NPCWaitOneTimeAction: [0x71024d8d68, 0x71025129f0, 0x71023ac298, 0x71023ac728]
  NavMeshBattleWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a70a0, 0x71023a6528]
  NavMeshConnectAction: [0x71024d8d68, 0x71025129f0, 0x71024e13f0]
  NavMeshEscape: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a70a0, 0x71023a6668]
  NavMeshFly: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a70a0, 0x71023a67a8]
  NavMeshGrabLeftWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a70a0, 0x71023a68e8]
  NavMeshGrabRightWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a70a0, 0x71023a6a28]
  NavMeshGuardRun: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a70a0, 0x71023a6b68]
  NavMeshGuardWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a70a0, 0x71023a6ca8]
  NavMeshJump: [0x71024d8d68, 0x71025129f0, 0x710239fa98, 0x71023a6de8]
  NavMeshLiftWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a70a0, 0x71023a6f60]
  NavMeshMoveWithAS: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a70a0, 0x71023a71e0]
  NavMeshRun: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a70a0, 0x71023a7320]
  NavMeshSlippedWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a70a0, 0x71023a7460]
  NavMeshSwim: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a70a0, 0x71023a75a0]
  NavMeshWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a70a0, 0x71023a76e0]
  NearHomePosTeleport: [0x71024d8d68, 0x71025129f0, 0x71023c5608, 0x71023a11e8, 0x71023a7820]
  NoAtTackleMove: [0x71024d8d68, 0x71025129f0, 0x71023c4a78, 0x71023a7aa0]
  NoAutoPlacementEnemyDeadlyQuest: [0x71024d8d68, 0x71025129f0, 0x710235f590]
  NoCountDead: [0x71024d8d68, 0x71025129f0, 0x71023a7be8]
  NoDeleteCurrentActor: [0x71024d8d68, 0x71025129f0, 0x71023a7cf8]
  NotStopXLinkWithDemoVisibleOff: [0x71024d8d68, 0x71025129f0, 0x710235f6a0]
  Notice: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023a7f28]
  NoticeTurn: [0x71024d8d68, 0x71025129f0, 0x71023683d0, 0x71023a8038]
  NpcRideWaitAction: [0x71024d8d68, 0x71025129f0, 0x71024ee218, 0x71023aab48]
  NpcSwimMove: [0x71024d8d68, 0x71025129f0, 0x71023ab608]
  NpcSwimNavMove: [0x71024d8d68, 0x71025129f0, 0x71024da0d8, 0x71023ab728]
  NpcTebaFly: [0x71024d8d68, 0x71025129f0, 0x71023abd20]
  NullASPlay: [0x71024d8d68, 0x71025129f0, 0x71023ac840]
  ObjBoardWoodTriangle01: [0x71024d8d68, 0x71025129f0, 0x71023ac950]
  ObservationPointAction: [0x71024d8d68, 0x71025129f0, 0x71024e1500]
  OctarockBalloon: [0x71024d8d68, 0x71025129f0, 0x710236a930, 0x710236aa60, 0x71023acba0]
  OctarockBulletLExplode: [0x71024d8d68, 0x71025129f0, 0x7102381240, 0x71023acce8]
  OctarockReloadWig: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023addd0, 0x710239dc38, 0x71023ace10]
  'Off': [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023acf50]
  OffMiss: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023acf50, 0x71023ad060]
  OkAutoPlacementEnemyDeadlyQuest: [0x71024d8d68, 0x71025129f0, 0x710235f7b0]
  'On': [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023ad188]
  OnCliffTurn: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c79e0, 0x71023ad298]
  OnCliffWait: [0x71024d8d68, 0x71025129f0, 0x71023ad3d0]
  OnCorrect: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023ad188, 0x71023ad4e0]
  OnEnterSwapDropTableActor: [0x71024d8d68, 0x71025129f0, 0x710238e980, 0x71023ad740, 0x71023ad858,
    0x71023ad970]
  OnLeaveAttackInterval: [0x71024d8d68, 0x71025129f0, 0x71023ae320]
  OnMUAssignSaveForUsed: [0x71024d8d68, 0x71025129f0, 0x71023ae430]
  OneTimeEffectLocaterAction: [0x71024d8d68, 0x71025129f0, 0x71024dd890]
  OneTimeStopASPlayerNoEnd: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c1108,
    0x71023adee0]
  OneTimeWaterFloatStopASPlay: [0x71024d8d68, 0x71025129f0, 0x71023cb4a8, 0x71023cb8e8, 0x71023ae210]
  OnetimeChangeableASPlay: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023addd0, 0x71023adaa0]
  OnetimeHoverASPlay: [0x71024d8d68, 0x71025129f0, 0x7102391288, 0x710239d570, 0x71023adbb0]
  OnetimeMoveASPlay: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023addd0, 0x71023adcc0]
  OnetimeStopASPlay: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023addd0]
  OnetimeStopASSyncPlay: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023addd0, 0x71023adff0]
  OpenClockTime: [0x71024d8d68, 0x71025129f0, 0x71023ae540]
  OpenDungeonMessage: [0x71024d8d68, 0x71025129f0, 0x71023ae650]
  OpenDungeonSmallTitle: [0x71024d8d68, 0x71025129f0, 0x71023ae760]
  OpenDungeonSmallTitleSetLabel: [0x71024d8d68, 0x71025129f0, 0x71023ae870]
  OpenDungeonTitle: [0x71024d8d68, 0x71025129f0, 0x71023ae980]
  OpenDungeonTitleSetLabel: [0x71024d8d68, 0x71025129f0, 0x71023aea90]
  OpenEnduranceFloorNumber: [0x71024d8d68, 0x71025129f0, 0x71023aeba0]
  OpenGetDemoDialog: [0x71024d8d68, 0x71025129f0, 0x71023aecb0]
  OpenGetDemoDialogDressFairy: [0x71024d8d68, 0x71025129f0, 0x71023aedc0]
  OpenItemCategory: [0x71024d8d68, 0x71025129f0, 0x71023aeed0]
  OpenItemDownloadDemo: [0x71024d8d68, 0x71025129f0, 0x71023aeff8]
  OpenItemMenu: [0x71024d8d68, 0x71025129f0, 0x71023af108]
  OpenMap: [0x71024d8d68, 0x71025129f0, 0x71023af218]
  OpenMessageDialog: [0x71024d8d68, 0x71025129f0, 0x71023af460, 0x71023af328]
  OpenMessageDialogTrig: [0x71024d8d68, 0x71025129f0, 0x71023af580]
  OpenMessageDialogWithSkelAnm: [0x71024d8d68, 0x71025129f0, 0x71023af460, 0x71023af690]
  OpenPickup: [0x71024d8d68, 0x71025129f0, 0x71023af7b0]
  OpenPorch: [0x71024d8d68, 0x71025129f0, 0x71023af8c0]
  OpenPouchAddStockNum: [0x71024d8d68, 0x71025129f0, 0x71023af9d0]
  OpenThanksE3: [0x71024d8d68, 0x71025129f0, 0x71023afae0]
  OwnedHorseObserveAction: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x71024e3c68]
  PauseMenuPlayerWait: [0x71024d8d68, 0x71025129f0, 0x71023afc50]
  PhysBodyPartLod: [0x71024d8d68, 0x71025129f0, 0x71023afd60]
  PlayASForAnimalUnit: [0x71024d8d68, 0x71025129f0, 0x7102385fc8, 0x71023afe70]
  PlayASForAnimalUnitRestricted: [0x71024d8d68, 0x71025129f0, 0x7102385fc8, 0x71023afe70, 0x71023aff88]
  PlayASForDemo: [0x71024d8d68, 0x71025129f0, 0x71023b00a0]
  PlayASForDemoPreMove: [0x71024d8d68, 0x71025129f0, 0x71023b00a0, 0x71023b01d8]
  PlayASForDemoWithSword: [0x71024d8d68, 0x71025129f0, 0x71023b00a0, 0x71023b0310]
  PlayASForTimeline: [0x71024d8d68, 0x71025129f0, 0x71023b00a0, 0x71023b0448]
  PlayASForTimelineWithSword: [0x71024d8d68, 0x71025129f0, 0x71023b00a0, 0x71023b0448, 0x71023b0580]
  PlayerActionClimb: [0x71024d8d68, 0x71025129f0, 0x71024ef090]
  PlayerAnchorMove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245ef40, 0x710245cac0]
  PlayerAreaInOutSendMessage: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x7102367500,
    0x71023b06d0]
  PlayerAtnMove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245cbf8]
  PlayerAtnWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245cd10]
  PlayerBackJump: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245ce28]
  PlayerBackJumpLand: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245cf40]
  PlayerBeamMove: [0x71024d8d68, 0x71025129f0, 0x7102378f58, 0x71023cca90, 0x71023b08d0]
  PlayerBeetleSubject: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245d170]
  PlayerBindSheikPad: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245d288]
  PlayerBow: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245d3a0]
  PlayerBowFall: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245ff08, 0x710245d4b8]
  PlayerCalmHorseDown: [0x71024d8d68, 0x71025129f0, 0x710245d5e8]
  PlayerCaught: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245d730]
  PlayerCleaningAround: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245d848]
  PlayerClimbRest: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245d960]
  PlayerControl: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245da78]
  PlayerCutAfterJump: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245db90]
  PlayerCutAfterJust: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245dca8]
  PlayerCutDash: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245ddc0]
  PlayerCutFall: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245ded8]
  PlayerCutHorseJump: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245dff0]
  PlayerCutHorseJumpLand: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245e108]
  PlayerCutJump: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245e220]
  PlayerCutNormal: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245e338]
  PlayerCutReverse: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245e450]
  PlayerCutTurn: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245e568]
  PlayerCutTurnLSword: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245e680]
  PlayerDamage: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245e798]
  PlayerDead: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245e8b0]
  PlayerDeadWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245e9c8]
  PlayerDemoAccelerateHorse: [0x71024d8d68, 0x71025129f0, 0x710245eae0]
  PlayerDemoAirWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245ebf0]
  PlayerDemoWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245ed08]
  PlayerDestinationMove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245ef40,
    0x710245ee20]
  PlayerDestinationTurn: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245f060]
  PlayerDestinationTurnRefActor: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245f190]
  PlayerDestinationTurnStarter: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245f2c0]
  PlayerDestinationTurnWithAnim: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245f060,
    0x710245f3f0]
  PlayerDisplayWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245f538]
  PlayerDiveMove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245f650]
  PlayerDoorPullOpen: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245f768]
  PlayerDoorPushOpen: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245f880]
  PlayerDrown: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245f998]
  PlayerElectric: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245fab0]
  PlayerEmitEquipmentNoise: [0x71024d8d68, 0x71025129f0, 0x71024fb158]
  PlayerEquipHaveMasterSword: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245fbc8]
  PlayerEquipNearMasterSword: [0x71024d8d68, 0x71025129f0, 0x710245fce0]
  PlayerEventStartWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245fdf0]
  PlayerFall: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245ff08]
  PlayerForkDropWeaponWithSpeed: [0x71024d8d68, 0x71025129f0, 0x71023892a0, 0x7102389178, 0x7102460020]
  PlayerFrontRoll: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102460148]
  PlayerGrabPut: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102460260]
  PlayerGrabReady: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102460378]
  PlayerGrabStand: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102460490]
  PlayerGrabThrow: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024605a8]
  PlayerGrabUp: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024606c0]
  PlayerGrabUpAnmStop: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024607d8]
  PlayerGrabWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024608f0]
  PlayerGuardBreak: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102460a08]
  PlayerGuardJust: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102460b20]
  PlayerGuardJustFall: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102460c38]
  PlayerGuardSlip: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102460d50]
  PlayerHangWallCatch: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102460e68]
  PlayerHell: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102460f80]
  PlayerHellNoFade: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102461098]
  PlayerHellStartWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024611b0]
  PlayerHide: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024612c8]
  PlayerHoldUpDRC: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024613e0]
  PlayerHorseGetOff: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024614f8]
  PlayerHorseGetOffInDemo: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102461610]
  PlayerHorseJump: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102461728]
  PlayerIce: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102461840]
  PlayerIceBlockRemove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102461958]
  PlayerIceBreak: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102461a70]
  PlayerIceGrabReady: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102461b88]
  PlayerInAreaAutoEnemyForbidTag: [0x71024d8d68, 0x71025129f0, 0x710236b098, 0x71023b0a38]
  PlayerJump: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102461ca0]
  PlayerKokkoGlide: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102463620, 0x7102461db8]
  PlayerLadderDownEnd: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102461ee8]
  PlayerLadderDownStart: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102462000]
  PlayerLadderJump: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102462118]
  PlayerLadderJumpLand: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102462230]
  PlayerLadderMove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102462348]
  PlayerLadderToClimb: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102462460]
  PlayerLadderUpEnd: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102462578]
  PlayerLadderUpStart: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102462690]
  PlayerLand: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024627a8]
  PlayerLandDamage: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024628c0]
  PlayerLargeDamage: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024629d8]
  PlayerLargeDamageUp: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102462af0]
  PlayerLaunch: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102462c08]
  PlayerLookAtObject: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71023c75d0,
    0x7102462d20]
  PlayerLookAtObjectNow: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71023c75d0,
    0x7102462d20, 0x71023b0b58]
  PlayerLookAtTheFront: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102462e70]
  PlayerMagnetSubject: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102462f88]
  PlayerMasterSwordEquip: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024630a0]
  PlayerMiddleDamage: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024631b8]
  PlayerMove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024632d0]
  PlayerNavMeshMove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245ef40,
    0x71024633e8]
  PlayerParashawlGlide: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102463620,
    0x7102463508]
  PlayerPickUp: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102463738]
  PlayerPlayASAdapt: [0x71024d8d68, 0x71025129f0, 0x71023b00a0, 0x7102463860]
  PlayerPullSword: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102463998]
  PlayerPullSwordFirstFail: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102463ab0]
  PlayerRailMove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245ef40, 0x7102463bc8]
  PlayerReleaseMasterSowrd: [0x71024d8d68, 0x71025129f0, 0x7102463ce8]
  PlayerRemainsBlow: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102463df8]
  PlayerRequestRecreateDyeArmor: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102463f10]
  PlayerRideHorse: [0x71024d8d68, 0x71025129f0, 0x7102464028]
  PlayerRideJump: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102464138]
  PlayerSelfCamera: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102464250]
  PlayerSetVisibleWeapon: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102464368]
  PlayerSetWakeUpMtx: [0x71024d8d68, 0x71025129f0, 0x7102464480]
  PlayerShieldRideMove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102464590]
  PlayerShock: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024646a8]
  PlayerSideStep: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024647c0]
  PlayerSideStepLand: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024648d8]
  PlayerSitEnd: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024649f0]
  PlayerSitStart: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102464b08]
  PlayerSitWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102464c20]
  PlayerSkin: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102464d38]
  PlayerSleep: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102464e50]
  PlayerSlide: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102464f68]
  PlayerSlideLand: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102465080]
  PlayerSlippingDown: [0x71024d8d68, 0x71025129f0, 0x71024ef1b0]
  PlayerSpAttack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102465198]
  PlayerSquatDamage: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024652b0]
  PlayerSquatMove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024653c8]
  PlayerSquatWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024654e0]
  PlayerStainCarryWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024655f8]
  PlayerStainWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102465710]
  PlayerStepAttack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102465828]
  PlayerStepGuardJust: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102465940]
  PlayerStepMove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102465a58]
  PlayerStoleOpen: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710236d9b8, 0x710236dae8, 0x71023b0cc0]
  PlayerStopInAir: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102465b70]
  PlayerSubjectWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102465c88]
  PlayerSuperBlow: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102465da0]
  PlayerSuperJump: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102465eb8]
  PlayerSuperJumpCharge: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102465fd0]
  PlayerSwimDamage: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024660e8]
  PlayerSwimDash: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102466200]
  PlayerSwimJump: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102466318]
  PlayerSwimLand: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102466430]
  PlayerSwimMove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102466548]
  PlayerSwimSpinAttack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102466660]
  PlayerSwimWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102466778]
  PlayerSwitchHang: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102466890]
  PlayerTalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024669a8]
  PlayerTreeClimb: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102466ac0]
  PlayerTurnAndLookToObject: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71023c75d0,
    0x7102462d20, 0x7102466bd8]
  PlayerTurnAndLookToObjectNow: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71023c75d0,
    0x7102462d20, 0x71023b0b58, 0x71023b0df0]
  PlayerTurnInner: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102466d38]
  PlayerTwiceJump: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x710245ff08, 0x7102466e68]
  PlayerUnbindSheikPad: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102466f80]
  PlayerUnequip: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102467098]
  PlayerUpdateEquip: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024671b0]
  PlayerWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024672c8]
  PlayerWakeBoard: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024673e0]
  PlayerWakeBoardEnd: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71024674f8]
  PlayerWakeBoardGoal: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102467610]
  PlayerWakeBoardReady: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102467728]
  PlayerWallDashUp: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102467840]
  PlayerWallJump: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102467958]
  PlayerWallSlip: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102467a70]
  PlayerWarp: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102467b88]
  PlayerWarpEffectValueSetter: [0x71024d8d68, 0x71025129f0, 0x71023b0f68]
  PlayerWaterDivingJump: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102467ca0]
  PlayerWaterFall: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102467db8]
  PlayerWaterFallJump: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102467ed0]
  PlayerWeaponThrow: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102467fe8]
  PlayerZoraJump: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102468100]
  PlayerZoraRide: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x7102468218]
  PowerupRune: [0x71024d8d68, 0x71025129f0, 0x71023b1078]
  PreAttack: [0x71024d8d68, 0x71025129f0, 0x71023b1188]
  PreJumpAttack: [0x71024d8d68, 0x71025129f0, 0x71023b1188, 0x71023b14f0]
  PredictVacuumShoot: [0x71024d8d68, 0x71025129f0, 0x71023b1298]
  PreductVacuumBurstShoot: [0x71024d8d68, 0x71025129f0, 0x71023b1298, 0x710239d7a8, 0x71023b13b8]
  PriestBossAimBeam: [0x71024d8d68, 0x71025129f0, 0x710235f8c0]
  PriestBossAimBeamWithAS: [0x71024d8d68, 0x71025129f0, 0x710235f8c0, 0x710235f9f8]
  PriestBossBeamMove: [0x71024d8d68, 0x71025129f0, 0x710235fb58]
  PriestBossBlownOff: [0x71024d8d68, 0x71025129f0, 0x71023b2020, 0x710236dd10, 0x710235fc80]
  PriestBossClonesSpawn: [0x71024d8d68, 0x71025129f0, 0x710235fe10, 0x71023b1750]
  PriestBossClonesSpawnForDemo: [0x71024d8d68, 0x71025129f0, 0x710235fe10]
  PriestBossFastWarpMove: [0x71024d8d68, 0x71025129f0, 0x71023b1640, 0x71023b18b0]
  PriestBossMove: [0x71024d8d68, 0x71025129f0, 0x710235ff48]
  PriestBossShadowCloneVanish: [0x71024d8d68, 0x71025129f0, 0x71023b1640, 0x7102360088]
  PriestBossSideMove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a4dc0, 0x71023601b0]
  PriestBossSlowWarpMove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a4dc0, 0x7102360310]
  Puddle: [0x71024d8d68, 0x71025129f0, 0x71023b19c0]
  PullOut: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023b1be0]
  PulleyChainASControl: [0x71024d8d68, 0x71025129f0, 0x71023b1ad0]
  PunchAttack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023b1cf0]
  PutFromParent: [0x71024d8d68, 0x71025129f0, 0x71023b1e00]
  RagdollFreeze: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102391398, 0x71023b1f10]
  RailMove: [0x71024d8d68, 0x71025129f0, 0x71023747e8, 0x71023b2178]
  RandomJump: [0x71024d8d68, 0x71025129f0, 0x71023b22a8]
  Rebound: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023b23b8]
  ReboundHit: [0x71024d8d68, 0x71025129f0, 0x71023b24c8]
  ReceiveTerror: [0x71024d8d68, 0x71025129f0, 0x71023b25d8]
  RecoverMasterSword: [0x71024d8d68, 0x71025129f0, 0x71023b26e8]
  ReflectThrown: [0x71024d8d68, 0x71025129f0, 0x71023b27f8]
  RegistedActorBroadCastMessage: [0x71024d8d68, 0x71025129f0, 0x71023b2c78, 0x71023b2a38]
  RegistedActorDeadCheck: [0x71024d8d68, 0x71025129f0, 0x71023b2c78, 0x71023b2908, 0x71023b2b48]
  ReloadArrow: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023b2d88]
  RemainElectricCannonBeamFire: [0x71024d8d68, 0x71025129f0, 0x71023b2e98]
  RemainElectricCannonBeamHerald: [0x71024d8d68, 0x71025129f0, 0x71023b2fc8]
  RemainElectricCannonCharge: [0x71024d8d68, 0x71025129f0, 0x71023b30f0]
  RemainsElectricWeakPointWait: [0x71024d8d68, 0x71025129f0, 0x71023b3200]
  RemainsFireDroneRailMove: [0x71024d8d68, 0x71025129f0, 0x71023b3398]
  RemainsFireDroneRailStop: [0x71024d8d68, 0x71025129f0, 0x71023b3510]
  RemainsFireTailAttack: [0x71024d8d68, 0x71025129f0, 0x71023b3658]
  RemainsFireYunBoFlagControl: [0x71024d8d68, 0x71025129f0, 0x71023b3768]
  RemainsWaterBulletExplode: [0x71024d8d68, 0x71025129f0, 0x7102381240, 0x71023b3878]
  RemainsWaterBulletRevive: [0x71024d8d68, 0x71025129f0, 0x71023b39a0, 0x71023b3d30, 0x71023b3ac8]
  RemainsWaterBulletShooter: [0x71024d8d68, 0x71025129f0, 0x71023b3c20]
  RemainsWaterBulletWait: [0x71024d8d68, 0x71025129f0, 0x71023b39a0, 0x71023b3d30]
  RemainsWaterChaseBulletFall: [0x71024d8d68, 0x71025129f0, 0x71023b3e58]
  RemainsWaterChaseBulletMove: [0x71024d8d68, 0x71025129f0, 0x71023b39a0, 0x71023b3f68]
  RemainsWaterExplodeBulletMove: [0x71024d8d68, 0x71025129f0, 0x71023b39a0, 0x71023b4090]
  RemainsWindBarrier: [0x71024d8d68, 0x71025129f0, 0x71023b41b8]
  RemoveRigidBody: [0x71024d8d68, 0x71025129f0, 0x71023b42c8]
  RemoveSensor: [0x71024d8d68, 0x71025129f0, 0x71023b43d8]
  ReqCreateManufactedEquipItem: [0x71024d8d68, 0x71025129f0, 0x71023b44e8]
  RequestCreateHCIModel: [0x71024d8d68, 0x71025129f0, 0x71023b45f8]
  RequestEvent: [0x71024d8d68, 0x71025129f0, 0x71023b4708]
  RequestEventFromMapUnit: [0x71024d8d68, 0x71025129f0, 0x71023b4818]
  RequestOpenPopUpHelp: [0x71024d8d68, 0x71025129f0, 0x71023b4928]
  ReserveParashawlStart: [0x71024d8d68, 0x71025129f0, 0x71023b4a38]
  ResetChemicalStateNeutral: [0x71024d8d68, 0x71025129f0, 0x71023b4b48]
  ResetGimmick: [0x71024d8d68, 0x71025129f0, 0x71023b4c58]
  ResetMasterSwordForceState: [0x71024d8d68, 0x71025129f0, 0x71023b4d68]
  ResetPlayerPullSwordStartLife: [0x71024d8d68, 0x71025129f0, 0x71023b4e78]
  ResetRemainsMapState: [0x71024d8d68, 0x71025129f0, 0x71023b4f88]
  RestartStageFromGameOver: [0x71024d8d68, 0x71025129f0, 0x71023b5098]
  RestorePlayerPosAndRotate: [0x71024d8d68, 0x71025129f0, 0x71023b51a8]
  RestorePouchForQuest: [0x71024d8d68, 0x71025129f0, 0x71023b52b8]
  ReuseActorDelete: [0x71024d8d68, 0x71025129f0, 0x71023b53c8]
  ReviveEnemies: [0x71024d8d68, 0x71025129f0, 0x71023b54d8]
  RideHorse: [0x71024d8d68, 0x71025129f0, 0x71023b55e8]
  RideHorseAction: [0x71024d8d68, 0x71025129f0, 0x71024e9e60]
  RideHorseForEventAction: [0x71024d8d68, 0x71025129f0, 0x71024e9f70]
  RisingAirOneTime: [0x71024d8d68, 0x71025129f0, 0x7102368168, 0x71023b56f8]
  RodMagicPhysBall: [0x71024d8d68, 0x71025129f0, 0x7102378f58, 0x7102370bc8, 0x7102370f10, 0x71023b5820]
  RodMagicPhysBallDivision: [0x71024d8d68, 0x71025129f0, 0x7102378f58, 0x7102370bc8, 0x7102370f10,
    0x71023b5820, 0x71023b5978]
  RopeNormal: [0x71024d8d68, 0x71025129f0, 0x71023b5ae8]
  Rotate: [0x71024d8d68, 0x71025129f0, 0x71023b5bf8]
  RotatedWait: [0x71024d8d68, 0x71025129f0, 0x71023b5d08]
  Run: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a4dc0, 0x71023b5e18]
  SSMagneStickAcceptorAccept: [0x71024d8d68, 0x71025129f0, 0x7102360a00]
  SSMagneStickAcceptorReject: [0x71024d8d68, 0x71025129f0, 0x7102360b10]
  SandwichDetectionAreaTag: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x7102360440]
  SandwichDetectionAreaTagSimple: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x7102360618]
  SandwormASPlay: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023b5f48]
  SandwormBlownOff: [0x71024d8d68, 0x71025129f0, 0x71023b6058]
  SandwormDamageJumpReaction: [0x71024d8d68, 0x71025129f0, 0x71023b6168]
  SandwormJumpTackle: [0x71024d8d68, 0x71025129f0, 0x710239f7f8, 0x71023b6278]
  SandwormMove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a4dc0, 0x71023a5b28, 0x71023b63a0]
  SandwormNavMove: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a70a0, 0x71023a71e0, 0x71023b64e8]
  SandwormTackleMove: [0x71024d8d68, 0x71025129f0, 0x71023c4a78, 0x71023c4930, 0x71023b6640]
  SceneBgmCtrlAction: [0x71024d8d68, 0x71025129f0, 0x71024fb268]
  SceneSoundCtrlAction: [0x71024d8d68, 0x71025129f0, 0x71024fb378]
  SceneSoundKillDuckingAction: [0x71024d8d68, 0x71025129f0, 0x71024fb488]
  SceneSoundNotifyTalkAction: [0x71024d8d68, 0x71025129f0, 0x71024fb598]
  SceneSoundSetEndProcAction: [0x71024d8d68, 0x71025129f0, 0x71024fb6a8]
  SceneSoundSetStartProcAction: [0x71024d8d68, 0x71025129f0, 0x71024fb7b8]
  SceneSoundStartDuckingAction: [0x71024d8d68, 0x71025129f0, 0x71024fb8c8]
  SceneSoundStopDuckingAction: [0x71024d8d68, 0x71025129f0, 0x71024fb9d8]
  ScrapEquip: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023b67a0]
  Search: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023b68b0]
  SellPictureBookUIDemo: [0x71024d8d68, 0x71025129f0, 0x71023b69c0]
  SendMessage4YunBoCannon: [0x71024d8d68, 0x71025129f0, 0x71023b6ad0, 0x71023b6be8]
  SendMessageBroadCast: [0x71024d8d68, 0x71025129f0, 0x71023b6ad0, 0x71023b6d18]
  SendPlayerNoticeMessage: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023addd0, 0x71023b6e30, 0x71023b6f48]
  SendSignalAction: [0x71024d8d68, 0x71025129f0, 0x71024da1f8]
  SendSignalForSignalFlowAct: [0x71024d8d68, 0x71025129f0, 0x71023b7078]
  SendTargetActorRequestShareAwn: [0x71024d8d68, 0x71025129f0, 0x71023b6ad0, 0x71023b7188, 0x71023b72b0]
  SeqPunchByASEvent: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023b7418]
  SetActorNameToGameDataString: [0x71024d8d68, 0x71025129f0, 0x71023b7538]
  SetBloodyMoonEnv: [0x71024d8d68, 0x71025129f0, 0x71023b7648]
  SetChallengeIcon: [0x71024d8d68, 0x71025129f0, 0x71023b7758]
  SetChemicalWeaponPower: [0x71024d8d68, 0x71025129f0, 0x71023607e0]
  SetComebackPosition: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x71023b7868]
  SetCookItemInDemo: [0x71024d8d68, 0x71025129f0, 0x71023b7a18]
  SetCurrentDungeonClearFlag: [0x71024d8d68, 0x71025129f0, 0x71023b7b28]
  SetDispHeartGauge: [0x71024d8d68, 0x71025129f0, 0x71023b7c38]
  SetDispStaminaGauge: [0x71024d8d68, 0x71025129f0, 0x71023b7d48]
  SetEnableRayHit: [0x71024d8d68, 0x71025129f0, 0x71023b7e58]
  SetEnableWaterHit: [0x71024d8d68, 0x71025129f0, 0x71023608f0]
  SetEnterDungeonFlag: [0x71024d8d68, 0x71025129f0, 0x71023b7f68]
  SetExtraEnergyOfPlayer: [0x71024d8d68, 0x71025129f0, 0x71023b8078]
  SetExtraLifeOfPlayer: [0x71024d8d68, 0x71025129f0, 0x71023b8188]
  SetFrameASPlay: [0x71024d8d68, 0x71025129f0, 0x71023b83b8]
  SetGetFlag: [0x71024d8d68, 0x71025129f0, 0x71023b8298, 0x71023b84c8]
  SetGetFlagByActorName: [0x71024d8d68, 0x71025129f0, 0x71023b8298, 0x71023b8600]
  SetGravityFactor: [0x71024d8d68, 0x71025129f0, 0x71023b8720]
  SetHorseFamiliarityPassedFlag: [0x71024d8d68, 0x71025129f0, 0x71023b8830]
  SetImpulseDamageMin: [0x71024d8d68, 0x71025129f0, 0x71023b8940]
  SetInstEventFlag: [0x71024d8d68, 0x71025129f0, 0x71023b8b68]
  SetInstantTemperture: [0x71024d8d68, 0x71025129f0, 0x71023b8a58]
  SetLinkTagBasic: [0x71024d8d68, 0x71025129f0, 0x71023b8c78]
  SetMaterialVisible: [0x71024d8d68, 0x71025129f0, 0x71023b8d88]
  SetOpenState: [0x71024d8d68, 0x71025129f0, 0x71023b8e98]
  SetOwnedHorseAS: [0x71024d8d68, 0x71025129f0, 0x71023b8fa8]
  SetPlayerDrawingSword: [0x71024d8d68, 0x71025129f0, 0x7102468330]
  SetPlayerStateToUnequipAndWait: [0x71024d8d68, 0x71025129f0, 0x71023b90b8]
  SetQuestStepAction: [0x71024d8d68, 0x71025129f0, 0x71024e7f80]
  SetRequestAttention: [0x71024d8d68, 0x71025129f0, 0x71023b91c8]
  SetResetPos: [0x71024d8d68, 0x71025129f0, 0x71023b92d8]
  SetRetryDataAction: [0x71024d8d68, 0x71025129f0, 0x71023b93e8]
  SetTargetFrameMtx: [0x71024d8d68, 0x71025129f0, 0x71023b94f8]
  SetTgIgnoreObstacle: [0x71024d8d68, 0x71025129f0, 0x71023b9608]
  SetTraverseDist: [0x71024d8d68, 0x71025129f0, 0x71024d9b70]
  SetTreasure: [0x71024d8d68, 0x71025129f0, 0x71023b9718]
  SetTreasureBoxOpenAndClose: [0x71024d8d68, 0x71025129f0, 0x71023b9828]
  SetWanderPathIndex: [0x71024d8d68, 0x71025129f0, 0x71023b9a48]
  SetWorldRotOffsetFromTransBone: [0x71024d8d68, 0x71025129f0, 0x71023b9b58]
  SetupGetDemoModeNumUi: [0x71024d8d68, 0x71025129f0, 0x71023b9938]
  ShelterFromRain: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x71023b9c68]
  ShiekSensorPlusDownloadDemo: [0x71024d8d68, 0x71025129f0, 0x71023b9e20]
  Shock: [0x71024d8d68, 0x71025129f0, 0x71023b9f30]
  ShockDynamicWeapon: [0x71024d8d68, 0x71025129f0, 0x71023b9f30, 0x71023ba050]
  ShockWave: [0x71024d8d68, 0x71025129f0, 0x71023ba188]
  ShootArrow: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023ba298]
  ShootingStarBrightTower: [0x71024d8d68, 0x71025129f0, 0x71023ba3c0]
  ShootingStartFlying: [0x71024d8d68, 0x71025129f0, 0x71023ba4d0]
  ShopFixedItemNum: [0x71024d8d68, 0x71025129f0, 0x71023ba5e0]
  ShowMemoryPhoto: [0x71024d8d68, 0x71025129f0, 0x71023ba6f0]
  ShowPhoto: [0x71024d8d68, 0x71025129f0, 0x71023ba800]
  ShutterClose: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023ba910]
  ShutterCloseWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023baa20]
  ShutterOpen: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023bab30]
  ShutterOpenWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023bac40]
  SideStep: [0x71024d8d68, 0x71025129f0, 0x71023bae80]
  SideStepWait: [0x71024d8d68, 0x71025129f0, 0x71023baf90]
  SideWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a4dc0, 0x71023bad50, 0x71023bb0a0]
  SilentKilled: [0x71024d8d68, 0x71025129f0, 0x71023b2020, 0x71023bb1e8]
  SimpleGrabWithAS: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x7102397020, 0x71023bb340,
    0x71023bb480]
  SimpleLineBeam: [0x71024d8d68, 0x71025129f0, 0x71023bb6b8]
  SimpleOpenMessageDialogAction: [0x71024d8d68, 0x71025129f0, 0x71024da598]
  SimpleUniqueTalk: [0x71024d8d68, 0x71025129f0, 0x71023bb7d0]
  SiteBossAvoid: [0x71024d8d68, 0x71025129f0, 0x71023bb8e0]
  SiteBossBowBlowOff: [0x71024d8d68, 0x71025129f0, 0x71023b2020, 0x710236dd10, 0x71023a1568,
    0x71023bb9f0]
  SiteBossBowChildDeviceBreak: [0x71024d8d68, 0x71025129f0, 0x71023bbb68]
  SiteBossBowHoldTurn: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c79e0, 0x71023bbc78]
  SiteBossBowMoveForArrowRain: [0x71024d8d68, 0x71025129f0, 0x71023bbdb0]
  SiteBossChemicalPlus: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023bbec0]
  SiteBossCreateChildDevice: [0x71024d8d68, 0x71025129f0, 0x71023bbfd0]
  SiteBossCreateIceSplinter: [0x71024d8d68, 0x71025129f0, 0x71023bc130]
  SiteBossDie: [0x71024d8d68, 0x71025129f0, 0x71023bc240]
  SiteBossFlyWaitTurnToTarget: [0x71024d8d68, 0x71025129f0, 0x71023a18f8, 0x71023a1a20, 0x71023bc358]
  SiteBossGetUpLinear: [0x71024d8d68, 0x71025129f0, 0x7102394ab8, 0x7102394be8, 0x71023bc498]
  SiteBossLswordAtkWithChemical: [0x71024d8d68, 0x71025129f0, 0x71023bc748, 0x71023bc5e0]
  SiteBossLswordFireBall: [0x71024d8d68, 0x71025129f0, 0x71023bc880]
  SiteBossLswordFirstCreateFBall: [0x71024d8d68, 0x71025129f0, 0x71023bc990]
  SiteBossLswordPostWarp: [0x71024d8d68, 0x71025129f0, 0x71023a1d90, 0x71023bcaa0]
  SiteBossLswordPreWarp: [0x71024d8d68, 0x71025129f0, 0x71023a1eb0, 0x71023bcbd8]
  SiteBossLswordThrowFireBall: [0x71024d8d68, 0x71025129f0, 0x71023bcd18]
  SiteBossLswordTornadoAttack: [0x71024d8d68, 0x71025129f0, 0x71023bce28]
  SiteBossLswordTornadoEnd: [0x71024d8d68, 0x71025129f0, 0x71023bcf40]
  SiteBossLswordWhirlSlash: [0x71024d8d68, 0x71025129f0, 0x71023bc748, 0x71023bc5e0, 0x71023bd050]
  SiteBossMove: [0x71024d8d68, 0x71025129f0, 0x71023bd1b8]
  SiteBossMoveAndAttack: [0x71024d8d68, 0x71025129f0, 0x71023bd1b8, 0x71023bd2d0]
  SiteBossShieldBashAttack: [0x71024d8d68, 0x71025129f0, 0x71023bd400]
  SiteBossShootArrowRain: [0x71024d8d68, 0x71025129f0, 0x71023bd778, 0x71023bd530]
  SiteBossShootIceSplinter: [0x71024d8d68, 0x71025129f0, 0x71023bd668]
  SiteBossShootNormalArrow: [0x71024d8d68, 0x71025129f0, 0x71023bd778]
  SiteBossSpearAttackBase: [0x71024d8d68, 0x71025129f0, 0x71023bd898]
  SiteBossSpearAttackVertical: [0x71024d8d68, 0x71025129f0, 0x71023bd898, 0x71023bd9c0]
  SiteBossSpearBlownOff: [0x71024d8d68, 0x71025129f0, 0x71023b2020, 0x710236dd10, 0x71023a1568,
    0x71023bb9f0, 0x71023bdb00]
  SiteBossSpearChangeWaterLevel: [0x71024d8d68, 0x71025129f0, 0x71023bdc78]
  SiteBossSwordAfterImageAction: [0x71024d8d68, 0x71025129f0, 0x71023bdd88]
  SiteBossSwordAfterImageMove: [0x71024d8d68, 0x71025129f0, 0x71023bde98]
  SiteBossSwordAttackBase: [0x71024d8d68, 0x71025129f0, 0x71023bdfd8]
  SiteBossSwordBlowOff: [0x71024d8d68, 0x71025129f0, 0x71023b2020, 0x710236dd10, 0x71023a1568,
    0x71023bb9f0, 0x71023be108]
  SiteBossSwordChemicalPlus: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023be268]
  SiteBossSwordCreateIronPile: [0x71024d8d68, 0x71025129f0, 0x71023be378]
  SiteBossSwordGuard: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a01f8, 0x7102397be0,
    0x71023be488]
  SiteBossSwordGuardBreak: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023addd0, 0x71023be5d0]
  SiteBossSwordMove: [0x71024d8d68, 0x71025129f0, 0x71023be6e0]
  SiteBossSwordShieldRepair: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023addd0, 0x71023be7f0]
  SiteBossSwordSlowMove: [0x71024d8d68, 0x71025129f0, 0x71023be900]
  SiteBossSwordThrowElectricBall: [0x71024d8d68, 0x71025129f0, 0x71023bedd0, 0x71023bea10]
  SiteBossSwordWhirlSlash: [0x71024d8d68, 0x71025129f0, 0x71023bdfd8, 0x71023beb58]
  SiteBossSwordWhirlSlashCharge: [0x71024d8d68, 0x71025129f0, 0x71023a2330, 0x71023beca0]
  SiteBossThrowParts: [0x71024d8d68, 0x71025129f0, 0x71023bedd0]
  Sleep: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023bef00]
  SlideMoveViewTarget: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a4dc0, 0x71023bf018]
  SlippedBackWalk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710236a5a8, 0x71023bf280, 0x71023bf148]
  SlippedCircleWalk: [0x71024d8d68, 0x71025129f0, 0x71023bf3a0, 0x71023bf4b0]
  SlippedWalk: [0x71024d8d68, 0x71025129f0, 0x71023bf5d8, 0x71023bf6e8]
  SmallDamage: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a01f8, 0x71023a0338, 0x71023bf810]
  SmallDamageBackward: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a01f8, 0x71023a00b8,
    0x71023bf958]
  SmallDamageDirectPreTargetBack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a01f8, 0x71023a0338,
    0x71023bf810, 0x71023bfc28, 0x71023bfab0]
  SmallDamageDirectPreTargetBone: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a01f8, 0x71023a0338,
    0x71023bf810, 0x71023bfc28]
  SoundOcclusionTagAction: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x71024fbae8]
  SoundOcclusionTagRemainsWater: [0x71024d8d68, 0x71025129f0, 0x71023bfd70]
  SoundProxyRootAction: [0x71024d8d68, 0x71025129f0, 0x71024fbca0]
  SoundReverbAreaTagAction: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x71024fbdb0]
  SoundShieldingAreaTagAction: [0x71024d8d68, 0x71025129f0, 0x71024e3038, 0x71024e3038, 0x71024fbf98]
  SoundTrigger: [0x71024d8d68, 0x71025129f0, 0x71024e1610]
  SoundTriggerFadeAction: [0x71024d8d68, 0x71025129f0, 0x71024e1720]
  SpinFlyAttack: [0x71024d8d68, 0x71025129f0, 0x71023a3250, 0x71023a3110, 0x71023bfe98]
  SpotBgmTriggerAction: [0x71024d8d68, 0x71025129f0, 0x71024fc150]
  SpreadToEnemy: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023addd0,
    0x71023bffd8]
  StalEnemyBlownOff: [0x71024d8d68, 0x71025129f0, 0x71023c00e8]
  StalEnemyDie: [0x71024d8d68, 0x71025129f0, 0x71023c01f8]
  StalEnemyHeadShotReaction: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c0308]
  StalEnemyHideWait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c0418]
  StalPartCatch: [0x71024d8d68, 0x71025129f0, 0x71023c0528]
  StartHeartDemo: [0x71024d8d68, 0x71025129f0, 0x71023c0638]
  StartLifeUpDemo: [0x71024d8d68, 0x71025129f0, 0x71023c0748]
  StartMapOpenDemo: [0x71024d8d68, 0x71025129f0, 0x71023c0858]
  StartShiekSensorGaugeDemo: [0x71024d8d68, 0x71025129f0, 0x71023c0968]
  StartStaminaUpDemo: [0x71024d8d68, 0x71025129f0, 0x71023c0a78]
  StartupTelescope: [0x71024d8d68, 0x71025129f0, 0x71023c0b88]
  StepDoubleAttack: [0x71024d8d68, 0x71025129f0, 0x71023c0c98]
  StepDoubleLargeAttack: [0x71024d8d68, 0x71025129f0, 0x71023c0c98, 0x71023c0db8]
  Stick: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c0ed8]
  StopASIgnite: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023addd0,
    0x71023c0fe8]
  StopASPlay: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c1108]
  StopAllDemoSoundAction: [0x71024d8d68, 0x71025129f0, 0x71024fc260]
  StopChargeChemicalWeaponPower: [0x71024d8d68, 0x71025129f0, 0x71023607e0, 0x7102360c20]
  StopCliffTongueAttack: [0x71024d8d68, 0x71025129f0, 0x71023ad3d0, 0x71023c1328]
  StopEventMiniGameTime: [0x71024d8d68, 0x71025129f0, 0x71023c1450]
  StopForLimitedTime: [0x71024d8d68, 0x71025129f0, 0x71023c1560]
  StopJump: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c1670]
  StorePlayerPosAndRotate: [0x71024d8d68, 0x71025129f0, 0x71023c19a8]
  StrangeBeacon: [0x71024d8d68, 0x71025129f0, 0x71023c1ab8]
  Stun: [0x71024d8d68, 0x71025129f0, 0x71023c1bc8]
  SubAnmBlownOff: [0x71024d8d68, 0x71025129f0, 0x71023651f0, 0x71023c1cd8]
  SubAnmKnockBackShock: [0x71024d8d68, 0x71025129f0, 0x71023bb5a8, 0x71023a0478, 0x71023c1df8]
  SubAnmSmallDamage: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a01f8, 0x71023a0338,
    0x71023bf810, 0x71023c1f20]
  SunMove: [0x71024d8d68, 0x71025129f0, 0x71023c2068]
  SwarmAreaDamaged: [0x71024d8d68, 0x71025129f0, 0x71023c2510, 0x71023c2178]
  SwarmChemicalDamaged: [0x71024d8d68, 0x71025129f0, 0x71023c2510, 0x71023c23e8, 0x71023c22a8]
  SwarmDamaged: [0x71024d8d68, 0x71025129f0, 0x71023c2510, 0x71023c23e8]
  SwarmFlyAttack: [0x71024d8d68, 0x71025129f0, 0x71023836f0, 0x71023c2760, 0x71023c2628]
  SwarmFlyMove: [0x71024d8d68, 0x71025129f0, 0x71023836f0, 0x71023c2760]
  SwarmGullMove: [0x71024d8d68, 0x71025129f0, 0x71023c2880]
  SwarmLevelFlyMove: [0x71024d8d68, 0x71025129f0, 0x71023a2a18, 0x71023c29a8]
  SweepCollision: [0x71024d8d68, 0x71025129f0, 0x71023c2ae8]
  SwimEnemyAnmBackBlownOff: [0x71024d8d68, 0x71025129f0, 0x71023c2f88, 0x71023c2bf8]
  SwimEnemyAnmBackBlownOffFromPL: [0x71024d8d68, 0x71025129f0, 0x71023c2f88, 0x71023c2bf8, 0x71023c2d30]
  SwimEnemyAnmBackBlownOffToPL: [0x71024d8d68, 0x71025129f0, 0x71023c2f88, 0x71023c2bf8, 0x71023c2e68]
  SwimGetUp: [0x71024d8d68, 0x71025129f0, 0x7102394ab8, 0x7102394970, 0x71023c30a8]
  SwimMove: [0x71024d8d68, 0x71025129f0, 0x71023cb4a8, 0x71023c3408, 0x71023c31d8]
  SwimMoveASHoldEvent: [0x71024d8d68, 0x71025129f0, 0x71023cb4a8, 0x71023c3408, 0x71023c32f0]
  SwimMoveOneTimeAS: [0x71024d8d68, 0x71025129f0, 0x71023cb4a8, 0x71023c3408, 0x71023c3520]
  SwimNoticeTurn: [0x71024d8d68, 0x71025129f0, 0x71023cb4a8, 0x71023c3638]
  SwimSmallDamage: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a01f8, 0x71023a0338, 0x71023bf810,
    0x71023c3860]
  SwimTurn: [0x71024d8d68, 0x71025129f0, 0x71023cb4a8, 0x71023c3748, 0x71023c3af0, 0x71023c39a8]
  SwitchElectricOff: [0x71024d8d68, 0x71025129f0, 0x71023c3c08]
  SwitchElectricOn: [0x71024d8d68, 0x71025129f0, 0x71023c3d18]
  SwitchPlayerEquipment: [0x71024d8d68, 0x71025129f0, 0x71023c3e28]
  SwitchStepSliderConstraint: [0x71024d8d68, 0x71025129f0, 0x71023c3f48]
  SwitchStepSliderConstraintOnce: [0x71024d8d68, 0x71025129f0, 0x71023c3f48, 0x71023c4070]
  SwitchWindmill: [0x71024d8d68, 0x71025129f0, 0x71023c41b0]
  SystemApplyEnvSetAction: [0x71024d8d68, 0x71025129f0, 0x71024f0ba8]
  SystemDelete: [0x71024d8d68, 0x71025129f0, 0x71023c42c0]
  SystemFadeOutSleep: [0x71024d8d68, 0x71025129f0, 0x71023c43d0]
  SystemHide: [0x71024d8d68, 0x71025129f0, 0x71023c44e0]
  SystemHideChase: [0x71024d8d68, 0x71025129f0, 0x71023c44e0, 0x71023c45f8]
  SystemSetWindAction: [0x71024d8d68, 0x71025129f0, 0x71024f0cb8]
  SystemSleep: [0x71024d8d68, 0x71025129f0, 0x71023c4710]
  SystemWarp: [0x71024d8d68, 0x71025129f0, 0x71023c4820]
  TakeoffFromCeilLookTarget: [0x71024d8d68, 0x71025129f0, 0x71023c4ba8, 0x71023c4cb8]
  TargetCircleGuardWalk: [0x71024d8d68, 0x71025129f0, 0x71023c4f00, 0x71023c4de0]
  TargetCircleMoveKeepDist: [0x71024d8d68, 0x71025129f0, 0x71023c4f00, 0x71023c5020]
  TargetCircleSwim: [0x71024d8d68, 0x71025129f0, 0x71023c4f00, 0x71023c5140]
  TargetCircleWalk: [0x71024d8d68, 0x71025129f0, 0x71023c4f00, 0x71023c5260]
  TeachPlayerInAreaForRefActor: [0x71024d8d68, 0x71025129f0, 0x71023c5380]
  Teleport: [0x71024d8d68, 0x71025129f0, 0x71023c5608, 0x71023c54b8]
  TeleportForceApperPosition: [0x71024d8d68, 0x71025129f0, 0x71023c5608, 0x71023c5758]
  TeleportTargetFrontInAir: [0x71024d8d68, 0x71025129f0, 0x71023c58a8]
  TerrainCalcCenter: [0x71024d8d68, 0x71025129f0, 0x71024e1830]
  TerrainHideCenter: [0x71024d8d68, 0x71025129f0, 0x71024e1940]
  TestAction: [0x71024d8d68, 0x71025129f0, 0x71024da6a8]
  Throw: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c59b8]
  ThrowLeft: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c59b8, 0x71023c5ad0]
  ThrowRight: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c59b8, 0x71023c6098]
  ThrowWeaponByBodyCenter: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023c61b0, 0x71023c62d0]
  ThrowWeaponRight: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023c61b0,
    0x71023c6408]
  Thrown: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c5c00]
  ThrownAndBreak: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c5c00, 0x71023c5d18]
  ThrownDown: [0x71024d8d68, 0x71025129f0, 0x71023b2020, 0x71023c5e30]
  ThrownSpear: [0x71024d8d68, 0x71025129f0, 0x71023c5f88]
  TimeSpecControllerRumble: [0x71024d8d68, 0x71025129f0, 0x71023c6990]
  TimeredASPlay: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c8c18, 0x71023c6528]
  TimeredHorseRideViewWait: [0x71024d8d68, 0x71025129f0, 0x710239b910, 0x710239ccd8, 0x71023c6638]
  TimeredNeckSpin: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c1108, 0x71023a7980,
    0x71023c6748]
  TimeredPreJumpAttack: [0x71024d8d68, 0x71025129f0, 0x71023b1188, 0x71023b14f0, 0x71023c6868]
  ToCDungeon: [0x71024d8d68, 0x71025129f0, 0x7102370548, 0x71023c6aa0]
  TornadoMove: [0x71024d8d68, 0x71025129f0, 0x71023c6bb0]
  TowingBrake: [0x71024d8d68, 0x71025129f0, 0x71023c6cc0]
  TreasureBoxBurnedOut: [0x71024d8d68, 0x71025129f0, 0x71023c6dd0]
  TreasureBoxOpenWait: [0x71024d8d68, 0x71025129f0, 0x71023c6ee0]
  TreasureLocaterRoot: [0x71024d8d68, 0x71025129f0, 0x71024d9b70]
  TriggerAllPartsSleep: [0x71024d8d68, 0x71025129f0, 0x71023c6ff0]
  Tumble: [0x71024d8d68, 0x71025129f0, 0x71023c7100]
  Turn: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c79e0, 0x71023c7210]
  TurnAndChargeAndShoot: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023ba298, 0x7102367920,
    0x71023c7348]
  TurnAndLookAtToObjectNow: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71023c75d0,
    0x71023a3488, 0x71023c7470]
  TurnAndLookToObjNotAnimDriven: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71023c75d0,
    0x71023c7880]
  TurnAndLookToObject: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71023c75d0,
    0x71023a3488, 0x71023c7720]
  TurnIgnite: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023addd0,
    0x71023c0fe8, 0x71023c7c28]
  TurnToEmptySpace: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x710245d058, 0x71023c75d0, 0x71023c7880,
    0x71023c7d60]
  TurnWithAS: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c79e0, 0x71023c7ed8]
  UKingEmitEffectLoopAction: [0x71024d8d68, 0x71025129f0, 0x71023c8010]
  UnarmedAttack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c8120]
  UnarmedLargeAttack: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c8120, 0x71023c8248]
  UpdateDataByGetDemoAction: [0x71024d8d68, 0x71025129f0, 0x71024da7b8]
  UseNavMeshConnectAction: [0x71024d8d68, 0x71025129f0, 0x71024e1a58]
  VacuumedItemShootToTarget: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100,
    0x71023addd0, 0x71023c8788]
  Vanish: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c8c18, 0x71023c6528,
    0x71023c88a0]
  ViewLevelFlyMove: [0x71024d8d68, 0x71025129f0, 0x71023a2a18, 0x71023a28d8, 0x71023cd1e0, 0x71023c89b0]
  Wait: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c8c18, 0x71023c8b08]
  WaitCloseItemDownloadDemo: [0x71024d8d68, 0x71025129f0, 0x71023c8d28]
  WaitForASTriggerEvent: [0x71024d8d68, 0x71025129f0, 0x71023c8e40]
  WaitForCloseFade: [0x71024d8d68, 0x71025129f0, 0x71023c8f50]
  WaitForFrame: [0x71024d8d68, 0x71025129f0, 0x71023c9060]
  WaitForKeyInput: [0x71024d8d68, 0x71025129f0, 0x71023c9170]
  WaitForStaminaUpDemoEnd: [0x71024d8d68, 0x71025129f0, 0x71023c9280]
  WaitHeartDemo: [0x71024d8d68, 0x71025129f0, 0x71023c9390]
  WaitMagneGear: [0x71024d8d68, 0x71025129f0, 0x71023c94a0]
  WaitMessageDialogEnd: [0x71024d8d68, 0x71025129f0, 0x71023c95b0]
  WaitOnObj: [0x71024d8d68, 0x71025129f0, 0x71023c1780, 0x71023c96c0]
  WaitTimer: [0x71024d8d68, 0x71025129f0, 0x71023c97e8]
  WaitUntilLifeUpDemo: [0x71024d8d68, 0x71025129f0, 0x71023c98f8]
  WaitUntilMapOpenDemoEnd: [0x71024d8d68, 0x71025129f0, 0x71023c9a08]
  WaitWhileCreatingOwnedHorse: [0x71024d8d68, 0x71025129f0, 0x71023c9b18]
  Walk: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023a4dc0, 0x71023c9c28]
  Warn: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023c1108, 0x71023c9d58]
  WarpEffectValueSetter: [0x71024d8d68, 0x71025129f0, 0x7102360e10]
  WarpMyHorse: [0x71024d8d68, 0x71025129f0, 0x71023c9e68]
  WarpOwnedHorse: [0x71024d8d68, 0x71025129f0, 0x71023c9f78]
  WarpPLAndResetGimmick: [0x71024d8d68, 0x71025129f0, 0x71023ca088]
  WarpPLToPosAndResetGimmick: [0x71024d8d68, 0x71025129f0, 0x71023ca8b0]
  WarpPlayer: [0x71024d8d68, 0x71025129f0, 0x71023746b0, 0x71023ca198]
  WarpPlayerToActor: [0x71024d8d68, 0x71025129f0, 0x71023746b0, 0x71023ca2e8]
  WarpPlayerToAnchor: [0x71024d8d68, 0x71025129f0, 0x71023746b0, 0x71023ca420]
  WarpPlayerToAnchorGimmickReset: [0x71024d8d68, 0x71025129f0, 0x71023ca558]
  WarpPlayerToDestination: [0x71024d8d68, 0x71025129f0, 0x71023746b0, 0x71023ca668]
  WarpPlayerToReferenceAnchor: [0x71024d8d68, 0x71025129f0, 0x71023ca7a0]
  WarpToActor: [0x71024d8d68, 0x71025129f0, 0x71023ca9c0]
  WarpToAnchor: [0x71024d8d68, 0x71025129f0, 0x71023caad8]
  WarpToDynamicPos: [0x71024d8d68, 0x71025129f0, 0x71023cabf0]
  WarpToGameDataVec3f: [0x71024d8d68, 0x71025129f0, 0x71023cad00]
  WarpToPos: [0x71024d8d68, 0x71025129f0, 0x71023cae18]
  WarpToScheduleAnchor: [0x71024d8d68, 0x71025129f0, 0x71023caf28]
  WarpToStaticAnchor: [0x71024d8d68, 0x71025129f0, 0x71023cb038]
  WaterEmitter: [0x71024d8d68, 0x71025129f0, 0x71023cb270]
  WaterExplode: [0x71024d8d68, 0x71025129f0, 0x71023cb380]
  WaterFloatBase: [0x71024d8d68, 0x71025129f0, 0x71023cb4a8]
  WaterFloatElectricParalysis: [0x71024d8d68, 0x71025129f0, 0x71023cb4a8, 0x71023cb8e8, 0x71023ae210,
    0x71023cb5b8]
  WaterFloatFreeze: [0x71024d8d68, 0x71025129f0, 0x71023cb4a8, 0x71023cb8e8, 0x71023cb6c8]
  WaterFloatIgniteToTarget: [0x71024d8d68, 0x71025129f0, 0x71023cb4a8, 0x71023cb8e8, 0x71023ae210,
    0x71023cb7d8]
  WaterFloatWait: [0x71024d8d68, 0x71025129f0, 0x71023cb4a8, 0x71023cb8e8, 0x71023cb9f8]
  WaterFloatWaitEx: [0x71024d8d68, 0x71025129f0, 0x71023cb4a8, 0x71023cb8e8, 0x71023cb9f8, 0x71023cbb08]
  WaterSurfaceModelOnly: [0x71024d8d68, 0x71025129f0, 0x7102360f20]
  WaterSurfaceMove: [0x71024d8d68, 0x71025129f0, 0x71023cbc30]
  WaterUpDownAnmDrivenMove: [0x71024d8d68, 0x71025129f0, 0x71023cbd40]
  WaterUpDownDrivenPreAttack: [0x71024d8d68, 0x71025129f0, 0x71023cbd40, 0x71023cbe58]
  WaterUpDownMove: [0x71024d8d68, 0x71025129f0, 0x71023cb148, 0x71023cbf88]
  WeaponDrawn: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023addd0,
    0x71023cc0c8]
  WeaponHold: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023addd0,
    0x71023cc1d8]
  WeaponTrueFormEftCtrl: [0x71024d8d68, 0x71025129f0, 0x71023cc2e8]
  WildHorseCreate: [0x71024d8d68, 0x71025129f0, 0x71023cc3f8]
  WillBallAttack: [0x71024d8d68, 0x71025129f0, 0x71023cc750, 0x71023cc508]
  WillBallAvoidCenterDist: [0x71024d8d68, 0x71025129f0, 0x71023cc750, 0x71023cc638]
  WillBallParabolaAttack: [0x71024d8d68, 0x71025129f0, 0x71023cc868]
  WindControl: [0x71024d8d68, 0x71025129f0, 0x71023cc978]
  WindControlLength: [0x71024d8d68, 0x71025129f0, 0x71023cc978, 0x7102361030]
  WindCutter: [0x71024d8d68, 0x71025129f0, 0x7102378f58, 0x71023cca90]
  Windmill_Wing: [0x71024d8d68, 0x71025129f0, 0x71023ccbe0]
  Windmill_WingWithAutoAnime: [0x71024d8d68, 0x71025129f0, 0x71023ccbe0, 0x71023ccd08]
  WizzrobeChanceTime: [0x71024d8d68, 0x71025129f0, 0x7102391288, 0x710239d570, 0x71023cce48]
  WizzrobeSummon: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c1218, 0x71023ae100, 0x71023addd0,
    0x71023c0fe8, 0x71023c7c28, 0x71023ccf58]
  WizzrobeTurn: [0x71024d8d68, 0x71025129f0, 0x71024415c8, 0x71023c79e0, 0x710239d8e0, 0x71023cd090]
  WizzrobeVisibleWalk: [0x71024d8d68, 0x71025129f0, 0x71023a2a18, 0x71023a28d8, 0x71023cd1e0]
  WolfLinkAmiiboRegister: [0x71024d8d68, 0x71025129f0, 0x71023cd320]
  WolfLinkAmiiboWarp: [0x71024d8d68, 0x71025129f0, 0x71023cd430]
  WolfLinkEvent: [0x71024d8d68, 0x71025129f0, 0x71023cd9f8]
  XLinkEventCreateAction: [0x71024d8d68, 0x71025129f0, 0x71024da8c8]
  XLinkEventEnable: [0x71024d8d68, 0x71025129f0, 0x71023cd568]
  XLinkEventFadeAction: [0x71024d8d68, 0x71025129f0, 0x71024da9d8]
  XLinkEventKillAction: [0x71024d8d68, 0x71025129f0, 0x71024daae8]
  ZoraHeroRescuePlayer: [0x71024d8d68, 0x71025129f0, 0x71023cd688]
  ZoraHeroWaterFallJump: [0x71024d8d68, 0x71025129f0, 0x71023cd798]
  ZoraSurfing: [0x71024d8d68, 0x71025129f0, 0x71023cd8a8]
  forceSetCameraPos: [0x71024d8d68, 0x71025129f0, 0x7102384898]
  inWaterSelForkASPlay: [0x71024d8d68, 0x71025129f0, 0x710239eef0]
Behavior:
  AcceptLSwordDamageDCCallback: [0x71024d8ef0, 0x71024390f8, 0x7102433c10]
  ActorFlagSetterAttensionNotice: [0x71024d8ef0, 0x7102433cc8]
  AddRigidBodyToWorld: [0x71024d8ef0, 0x7102433d48]
  AirWallCollisionSpecify: [0x71024d8ef0, 0x7102433dc8]
  AirWallMaterialSpecify: [0x71024d8ef0, 0x7102433e98]
  AnimalAttack: [0x71024d8ef0, 0x7102433f68]
  AnimalCounterFlagOn: [0x71024d8ef0, 0x7102433fe8]
  AnimalNeckRotate: [0x71024d8ef0, 0x7102434068]
  AnimalUnitIgnoreStickXLimit: [0x71024d8ef0, 0x71024340e8]
  AssassinBossBgmControl: [0x71024d8ef0, 0x7102434168]
  AssassinBossBgmOnDelete: [0x71024d8ef0, 0x71024341e8]
  AssassinBossBgmRegist: [0x71024d8ef0, 0x7102434268]
  AssassinBossBgmStop: [0x71024d8ef0, 0x71024342e8]
  AwarenessDarkAreaIgnore: [0x71024d8ef0, 0x7102434380]
  AwarenessScale: [0x71024d8ef0, 0x7102434400]
  AwarenessScaleByASEvent: [0x71024d8ef0, 0x71024e61a0]
  AwnHearingParamChange: [0x71024d8ef0, 0x7102434480]
  BalloonBehavior: [0x71024d8ef0, 0x71024ee450]
  BattleTensionUp: [0x71024d8ef0, 0x7102434500]
  BeastGanonBgmCtrl: [0x71024d8ef0, 0x7102434580]
  BeastGanonBgmStop: [0x71024d8ef0, 0x7102434600]
  BeastGanonLastBlowOffMes: [0x71024d8ef0, 0x710243a838, 0x710243a790, 0x710243a6e8, 0x71024346b0]
  BeastGanonWPPrincessShout: [0x71024d8ef0, 0x710243a838, 0x71024347a0]
  BgmCtrlBehavior: [0x71024d8ef0, 0x71024fc6d0]
  BossBgm: [0x71024d8ef0, 0x7102434838]
  BossBgmDamaged: [0x71024d8ef0, 0x71024348b8]
  BreakIceBlockAtAttackHit: [0x71024d8ef0, 0x7102434940]
  CameraIndoorFlag: [0x71024d8ef0, 0x71024349c0]
  CameraNotify2Sound: [0x71024d8ef0, 0x7102459198]
  CameraTalkFlag: [0x71024d8ef0, 0x7102434a40]
  CanRideAnimalTerror: [0x71024d8ef0, 0x71024ee550, 0x7102434b68]
  CancelMessageSendToParts: [0x71024d8ef0, 0x7102436f58, 0x7102434ac0]
  CastleBarrierCollisionSpecify: [0x71024d8ef0, 0x7102434be8]
  ChangeCharacterStandingOnFlag: [0x71024d8ef0, 0x7102434cb8]
  ChangeEnableNearTrigger: [0x71024d8ef0, 0x71024ee4d0]
  ChangeEnemyNoticeUIState: [0x71024d8ef0, 0x7102434d38]
  CharacterControllerFormChange: [0x71024d8ef0, 0x7102434db8]
  ClearFadeInCreate: [0x71024d8ef0, 0x7102434e38]
  CloseEye: [0x71024d8ef0, 0x7102434eb8]
  ConditionReset: [0x71024d8ef0, 0x7102434f38]
  CreateBgm: [0x71024d8ef0, 0x7102434fb8]
  CreateEasel: [0x71024d8ef0, 0x7102435098, 0x7102435128, 0x71024351d0]
  CurseGanonBGMApplyLPF: [0x71024d8ef0, 0x7102435278]
  CutGrass: [0x71024d8ef0, 0x71024352f8]
  DeleteConnectedCalcChild: [0x71024d8ef0, 0x7102435378]
  DieEye: [0x71024d8ef0, 0x71024353f8]
  DisableBoneController: [0x71024d8ef0, 0x7102435478]
  DisableCloth: [0x71024d8ef0, 0x71024354f8]
  DisableContactLayer: [0x71024d8ef0, 0x7102435578]
  DisableForbidJob: [0x71024d8ef0, 0x7102435680]
  DisableGiantArmorWeakPoint: [0x71024d8ef0, 0x7102435700]
  DisableSkipCalcCloth: [0x71024d8ef0, 0x7102435780]
  DisableWeakPointActor: [0x71024d8ef0, 0x7102435800]
  ElevatorBaseEmitPassingSe: [0x71024d8ef0, 0x7102435880]
  EmitCreateDeleteEffect: [0x71024d8ef0, 0x7102435908]
  EmitGanonHalfLifeDamageSe: [0x71024d8ef0, 0x7102435988]
  EmitHalfLifeDamageSe: [0x71024d8ef0, 0x7102435a08]
  EmitInterest: [0x71024d8ef0, 0x7102435a88]
  EnemyFrontNeckRotate: [0x71024d8ef0, 0x7102437168, 0x7102435c98, 0x7102435b08]
  EnemyGanonBgmStop: [0x71024d8ef0, 0x7102435b98]
  EnemyKeepAnimeDriven: [0x71024d8ef0, 0x7102435c18]
  EnemyNeckRotate: [0x71024d8ef0, 0x7102437168, 0x7102435c98]
  EnemyNeckRotateToOffsetAng: [0x71024d8ef0, 0x7102437168, 0x7102435c98, 0x7102435d28]
  EnemyNoticeMasqueradeFlagSetter: [0x71024d8ef0, 0x7102435db8]
  EyeBlink: [0x71024d8ef0, 0x7102435e38]
  FadeLeaf: [0x71024d8ef0, 0x7102435eb8]
  FootstepChanger: [0x71024d8ef0, 0x71024e6220]
  FootstepReactionChanger: [0x71024d8ef0, 0x71024e62a0]
  FootstepSilencer: [0x71024d8ef0, 0x71024e6380]
  ForceConfront: [0x71024d8ef0, 0x7102435f38]
  ForceDispLifeGage: [0x71024d8ef0, 0x7102435fb8]
  ForceFallCliffEdgeChanger: [0x71024d8ef0, 0x7102436038]
  ForceFixed: [0x71024d8ef0, 0x71024360b8]
  ForceSealSilentKill: [0x71024d8ef0, 0x7102436138]
  GanonBeastFirstMessage: [0x71024d8ef0, 0x71024361b8]
  GelDisableEyeControl: [0x71024d8ef0, 0x7102436238]
  GiantDownReaction: [0x71024d8ef0, 0x71024362b8]
  GiantEyeBlink: [0x71024d8ef0, 0x7102435e38, 0x7102436338]
  GiantGuardWeakPoint: [0x71024d8ef0, 0x71024363d0]
  GiantWeaponGrabAS: [0x71024d8ef0, 0x7102436498]
  GreatGoddesStatueLightEffect: [0x71024d8ef0, 0x7102436518]
  GuardFrontBarrier: [0x71024d8ef0, 0x7102437d18, 0x710243b548, 0x7102436598]
  GuardTgtControl: [0x71024d8ef0, 0x7102436658]
  GuardToTargetBarrier: [0x71024d8ef0, 0x7102437d18, 0x710243b548, 0x7102436598, 0x71024366d8]
  HideLifeGage: [0x71024d8ef0, 0x7102436780]
  HitIceBlockBreak: [0x71024d8ef0, 0x7102436800]
  HorseAttackBehavior: [0x71024d8ef0, 0x71024368b0]
  HorseNoise: [0x71024d8ef0, 0x7102436930]
  HorseSetCollarBehavior: [0x71024d8ef0, 0x71024eac58]
  HorseSlipBehavior: [0x71024d8ef0, 0x71024eacd8]
  HorseSwitchAttRideBehavior: [0x71024d8ef0, 0x71024ead70]
  HorseTerrorBehavior: [0x71024d8ef0, 0x71024ee550, 0x71024eadf0]
  IgnoreGiantArmorCondition: [0x71024d8ef0, 0x71024369b0]
  InWaterNoise: [0x71024d8ef0, 0x7102437540, 0x7102437308, 0x7102436bb0]
  InterestNeckControl: [0x71024d8ef0, 0x7102436a30]
  InvalidateCondition: [0x71024d8ef0, 0x7102436ab0]
  Invincible: [0x71024d8ef0, 0x7102436b30]
  LookAtOwnedHorse: [0x71024d8ef0, 0x7102436a30, 0x7102436cc0]
  LowCeilingController: [0x71024d8ef0, 0x7102436d58]
  LynelBodyFitToGroundNormal: [0x71024d8ef0, 0x7102436dd8]
  LynelGearAttackCollision: [0x71024d8ef0, 0x7102436e58]
  LynelStandBody: [0x71024d8ef0, 0x7102436ed8]
  NPCTerrorNeckControl: [0x71024d8ef0, 0x7102437168, 0x71024376d0]
  NavMeshNonAvoidPlayer: [0x71024d8ef0, 0x7102436fe8]
  NeckBattleMode: [0x71024d8ef0, 0x7102437068]
  NeckParamChange: [0x71024d8ef0, 0x71024370e8]
  NeckRotateToPlayer: [0x71024d8ef0, 0x7102437168, 0x71024371f8]
  NeckRotateToPlayerAndNPC: [0x71024d8ef0, 0x7102437288]
  NoSensorBombLandNoise: [0x71024d8ef0, 0x7102437540, 0x7102437430]
  NoSensorHoldNoise: [0x71024d8ef0, 0x7102437540, 0x71024374b8]
  NoSensorWaterInNoise: [0x71024d8ef0, 0x7102437540, 0x71024375c8]
  NpcClerkCheck: [0x71024d8ef0, 0x7102437650]
  OctarockConstraint: [0x71024d8ef0, 0x7102437760]
  OctarockHideForm: [0x71024d8ef0, 0x71024377e0]
  OctarockHideHPGage: [0x71024d8ef0, 0x7102437860]
  OffOcculutionCulling: [0x71024d8ef0, 0x71024378e0]
  OffSmallRagdollReaction: [0x71024d8ef0, 0x7102437960]
  OnAnimalSupportNrmCalcFrontRay: [0x71024d8ef0, 0x71024379e0]
  OnChangeXLinkCreate: [0x71024d8ef0, 0x7102437a60]
  OnChangeXLinkCreateAtTarget: [0x71024d8ef0, 0x7102437a60, 0x7102437ae8]
  OnChangeXLinkCreateForLocator: [0x71024d8ef0, 0x7102437a60, 0x7102437b88]
  OnChangeXLinkCreateTrgDrop: [0x71024d8ef0, 0x7102437a60, 0x7102437c10]
  OnLeaveResetAttackInterval: [0x71024d8ef0, 0x7102437c98]
  OnStateXLinkCreate: [0x71024d8ef0, 0x7102437d18]
  OnTrgGuardOffTargetXLinkCreate: [0x71024d8ef0, 0x7102437e40, 0x7102437db8]
  PartsMagneFollowRatioChanger: [0x71024d8ef0, 0x7102437ec8]
  PlayASWithBurnState: [0x71024d8ef0, 0x7102437f70]
  PlayerEmitInterest: [0x71024d8ef0, 0x7102437ff0]
  PlayerHoldNoise: [0x71024d8ef0, 0x7102438070]
  PlayerLandNoise: [0x71024d8ef0, 0x7102437540, 0x7102437308, 0x7102436c38, 0x71024380f0]
  PlayerMoveNoise: [0x71024d8ef0, 0x7102438190]
  PlayerParasailAltitude: [0x71024d8ef0, 0x7102438210]
  PlayerSlipXLinkEventBehavior: [0x71024d8ef0, 0x71024ef2d0]
  PlayerTriggerNoise: [0x71024d8ef0, 0x7102438290]
  PosControl: [0x71024d8ef0, 0x7102438310]
  PriestBossUrbosasFuryEShock: [0x71024d8ef0, 0x7102438390]
  RagdollSmallDamageIdxChanger: [0x71024d8ef0, 0x7102438410]
  ReduceUpwardVelocity: [0x71024d8ef0, 0x7102438490]
  RemoveNavMeshObj: [0x71024d8ef0, 0x7102438510]
  RequestEventResident: [0x71024d8ef0, 0x7102438590]
  RumbleController: [0x71024d8ef0, 0x7102438610]
  SandwormBgmControl: [0x71024d8ef0, 0x7102438690]
  SandwormTeraPach: [0x71024d8ef0, 0x7102438710]
  SandwormTeraShapeChanger: [0x71024d8ef0, 0x7102438790]
  SandwormTeraUpdateTypeSetter: [0x71024d8ef0, 0x7102438810]
  SealNoPlayerNotice: [0x71024d8ef0, 0x7102438890]
  SealNoticePlayerSound: [0x71024d8ef0, 0x7102438910]
  SendControlFireMessage: [0x71024d8ef0, 0x7102438990]
  SetAcceptOnlyBombDCCallback: [0x71024d8ef0, 0x71024390f8, 0x7102438a10]
  SetAllNoDamageDCCallback: [0x71024d8ef0, 0x71024390f8, 0x7102438a98]
  SetAllOneDamageDCCallback: [0x71024d8ef0, 0x71024390f8, 0x7102438b20]
  SetAnimalSupportNormalCalc: [0x71024d8ef0, 0x7102438be0]
  SetAttension: [0x71024d8ef0, 0x7102438c60]
  SetAttensionASEvent: [0x71024d8ef0, 0x7102438ce0]
  SetBasicThrownEnemyDCCallback: [0x71024d8ef0, 0x7102438d60]
  SetBattleNodeBasisSelfPosBattle: [0x71024d8ef0, 0x7102438e50]
  SetBoneControlNoSlow: [0x71024d8ef0, 0x7102438ed0]
  SetChemicalOffensive: [0x71024d8ef0, 0x7102438ff0, 0x7102438f50]
  SetCollisionImpulseScale: [0x71024d8ef0, 0x7102439078]
  SetDefenselessDCCallback: [0x71024d8ef0, 0x71024390f8, 0x7102439180]
  SetDefenselessInAirDCCallback: [0x71024d8ef0, 0x71024390f8, 0x7102439180, 0x7102439208]
  SetEnableResetToInitialState: [0x71024d8ef0, 0x71024392a8]
  SetEnemyChemicalPower: [0x71024d8ef0, 0x7102438ff0, 0x7102439328]
  SetFixedNoActionDCCallBack: [0x71024d8ef0, 0x71024390f8, 0x71024393b0]
  SetForceSmallRagdoll: [0x71024d8ef0, 0x7102439438]
  SetGuardJustDamageCallback: [0x71024d8ef0, 0x71024390f8, 0x71024394b8]
  SetIgnoreDrownDCCallBack: [0x71024d8ef0, 0x71024390f8, 0x7102439540]
  SetIgnoreGustDCCallback: [0x71024d8ef0, 0x71024390f8, 0x71024395c8]
  SetIgnoreHorseDamage: [0x71024d8ef0, 0x71024390f8, 0x7102439650]
  SetIgnoreMultiDamageDCCallback: [0x71024d8ef0, 0x71024390f8, 0x71024396d8]
  SetIgnoreReboundDCCallback: [0x71024d8ef0, 0x7102439760]
  SetIgnoreSmallHitDCCallBack: [0x71024d8ef0, 0x71024390f8, 0x71024397e0]
  SetInfRotSpeedToSpineController: [0x71024d8ef0, 0x7102439868]
  SetIsAffectWeak: [0x71024d8ef0, 0x71024398e8]
  SetIsCalcSkipProhibited: [0x71024d8ef0, 0x7102439968]
  SetJustAvoidHit1DamageDCCB: [0x71024d8ef0, 0x71024390f8, 0x71024399e8]
  SetLocalBoneOffset: [0x71024d8ef0, 0x7102439aa8]
  SetLocalBoneOffsetRandom: [0x71024d8ef0, 0x7102439b28]
  SetMotionType: [0x71024d8ef0, 0x7102439ba8]
  SetNoReactionDCCallBack: [0x71024d8ef0, 0x71024390f8, 0x7102439c28]
  SetNoWeakHitReactionDCCallBack: [0x71024d8ef0, 0x71024390f8, 0x7102439cb0]
  SetPlayerLargeAttackDeathDCCB: [0x71024d8ef0, 0x71024390f8, 0x7102439d38]
  SetPopPoolDamageAttrDCCallback: [0x71024d8ef0, 0x71024390f8, 0x7102439df8]
  SetRagdollBodyForceKeyframed: [0x71024d8ef0, 0x7102439e80]
  SetReceivedImpulseRate: [0x71024d8ef0, 0x7102439f00]
  SetStaticSystemGroupHandler: [0x71024d8ef0, 0x7102439fd0]
  SetThroughArrow: [0x71024d8ef0, 0x71024390f8, 0x710243a050]
  SetThroughCloseWeapon: [0x71024d8ef0, 0x710243a0f0]
  SetTransBoneForAnimeDriven: [0x71024d8ef0, 0x710243a188]
  SetWindForceScale: [0x71024d8ef0, 0x710243a208]
  SetXLinkProperty: [0x71024d8ef0, 0x710243a288]
  ShortRangeBattleAlignment: [0x71024d8ef0, 0x710243a308]
  ShowConstStringBoard: [0x71024d8ef0, 0x71024dc3b8]
  ShowMessage3D: [0x71024d8ef0, 0x710243a388]
  ShowRandomMessage3D: [0x71024d8ef0, 0x710243a388, 0x710243a410]
  SignalControl: [0x71024d8ef0, 0x710243a4b0]
  SimpleAtvUnitDlgStop: [0x71024d8ef0, 0x710243a530]
  SimpleAtvUnitOpDlgRestWpTimeR3: [0x71024d8ef0, 0x710243a658, 0x710243a5b0]
  SimpleAtvUnitOpenDlgRnd3: [0x71024d8ef0, 0x710243a838, 0x710243a790, 0x710243a6e8]
  SimpleAtvUnitOpenSimpleDialog: [0x71024d8ef0, 0x710243a838]
  SiteBossSetFlinchFlag: [0x71024d8ef0, 0x710243a8d0]
  SoundStateLoad: [0x71024d8ef0, 0x710243a950]
  SpeedEmitInterest: [0x71024d8ef0, 0x710243a9d0]
  SpeedTerror: [0x71024d8ef0, 0x710243aa50]
  StopUpdateAwarenessBasePos: [0x71024d8ef0, 0x710243aad0]
  SubAS: [0x71024d8ef0, 0x710243ab50]
  SwarmPatternBeeAttack: [0x71024d8ef0, 0x710243abd0, 0x7102437390, 0x710243ac58]
  SwarmPatternCross: [0x71024d8ef0, 0x710243abd0, 0x7102437390, 0x710243acf8]
  SwarmPatternDisc: [0x71024d8ef0, 0x710243abd0, 0x7102437390, 0x710243ad80]
  SwarmPatternDoubleRing: [0x71024d8ef0, 0x710243abd0, 0x7102437390, 0x710243ae08]
  SwarmPatternHoldHomePos: [0x71024d8ef0, 0x710243abd0, 0x710243ae90]
  SwarmPatternMovingSphere: [0x71024d8ef0, 0x710243abd0, 0x710243af18]
  SyncASFrameToAnimalUnit: [0x71024d8ef0, 0x710243afa0]
  SyncBodyASAndAnimalUnitAS: [0x71024d8ef0, 0x710243b020]
  TargetFindSpreadToTag: [0x71024d8ef0, 0x710243b0d8]
  TerrorBehavior: [0x71024d8ef0, 0x71024ee550]
  TriggerNoise: [0x71024d8ef0, 0x7102437540, 0x7102437308, 0x710243b158]
  UnderSelectedReactionNoAction: [0x71024d8ef0, 0x71024390f8, 0x710243b1e0]
  ViewLastAttackerPos: [0x71024d8ef0, 0x7102437168, 0x710243b268]
  WeaponChemicalReset: [0x71024d8ef0, 0x710243b2f8]
  XLinkCreateForSandworm: [0x71024d8ef0, 0x7102437d18, 0x710243b378]
  XLinkCreateModelTracks: [0x71024d8ef0, 0x7102437d18, 0x710243b400, 0x710243b498]
  XLinkCreateToParts: [0x71024d8ef0, 0x7102437d18, 0x710243b400, 0x710243b5d0]
  YunBoIconInfo: [0x71024d8ef0, 0x710243b668]
Query:
  BranchByDyeColor: [0x710243c9b8, 0x710243c940]
  BranchByGameOver: [0x710243c9b8, 0x710243ca48]
  CanCreateMakeItemList: [0x710243c9b8, 0x710243cac0]
  CanMarkMapPin: [0x710243c9b8, 0x710243cb58]
  Check100EnemyActiveTiming: [0x710243c9b8, 0x710243cbd0]
  CheckActorAction: [0x710243c9b8, 0x710243cc48]
  CheckActorAction13: [0x710243c9b8, 0x710243cd18]
  CheckActorAction14_2: [0x710243c9b8, 0x710243cd90]
  CheckAddPorchItem: [0x710243c9b8, 0x710243ce08]
  CheckAppPoint: [0x710243c9b8, 0x710243ce80]
  CheckAppShopSelect: [0x710243c9b8, 0x710243cef8]
  CheckAreaTransition: [0x710243c9b8, 0x710243cf70]
  CheckBalladOfHeroActiveTiming: [0x710243c9b8, 0x710243cfe8]
  CheckContainerItem: [0x710243c9b8, 0x710243d060]
  CheckCookResultStatus: [0x710243c9b8, 0x710243d0d8]
  CheckCurrentMap: [0x710243c9b8, 0x710243d150]
  CheckCurseRRetryEverOnce: [0x710243c9b8, 0x710243d1c8]
  CheckDeadHorseResistered: [0x710243c9b8, 0x710243d240]
  CheckDeadlyQuestEscapeTiming: [0x710243c9b8, 0x710243d2b8]
  CheckDieCnt: [0x710243c9b8, 0x710243d330]
  CheckDistanceForWarp: [0x710243c9b8, 0x710243d3a8]
  CheckDistanceFromPlayer: [0x710243c9b8, 0x710243d428]
  CheckDownloadItemNum: [0x710243c9b8, 0x710243d4a0]
  CheckDuringBloodyMoon: [0x710243c9b8, 0x710243d518]
  CheckDyeShopSelect: [0x710243c9b8, 0x710243d590]
  CheckE3Mode: [0x710243c9b8, 0x710243d608]
  CheckEatActor: [0x710243c9b8, 0x710243d680]
  CheckElapsedTimeOfMiniGame: [0x710243c9b8, 0x710243d6f8]
  CheckEquipArmorSeriesType: [0x710243c9b8, 0x710243d770]
  CheckEquipItemType: [0x710243c9b8, 0x710243d7e8]
  CheckEquipment: [0x710243c9b8, 0x710243d860]
  CheckEventCancel: [0x710243c9b8, 0x71024dc528]
  CheckExistActor: [0x710243c9b8, 0x710243d8d8]
  CheckExistArrow: [0x710243c9b8, 0x710243d950]
  CheckExtraEnergyOfPlayer: [0x710243c9b8, 0x710243d9c8]
  CheckExtraLifeOfPlayer: [0x710243c9b8, 0x710243da40]
  CheckFadeState: [0x710243c9b8, 0x710243dab8]
  CheckFame: [0x710243c9b8, 0x710243db30]
  CheckFlag: [0x710243c9b8, 0x710243dba8]
  CheckGameDataFloat: [0x710243c9b8, 0x710243dc20]
  CheckGameDataInt: [0x710243c9b8, 0x710243dc98]
  CheckGetDemoTypeFromArg: [0x710243c9b8, 0x710243dd10]
  CheckGiveReward: [0x710243c9b8, 0x710243dd88]
  CheckHasManifactureArmor: [0x710243c9b8, 0x710243de00]
  CheckHorseCustomizeSelect: [0x710243c9b8, 0x710243de78]
  CheckHorseDeadCause: [0x710243c9b8, 0x710243def0]
  CheckHorseRegistered: [0x710243c9b8, 0x710243df68]
  CheckHorseTakenOut: [0x710243c9b8, 0x710243dfe0]
  CheckIsOpenItemCategory: [0x710243c9b8, 0x710243e058]
  CheckItemShopDecide: [0x710243c9b8, 0x710243e0d0]
  CheckItemShopPorchVacancy: [0x710243c9b8, 0x710243e148]
  CheckItemShopSelect: [0x710243c9b8, 0x710243e1c0]
  CheckItemShopSelectBuy: [0x710243c9b8, 0x710243e238]
  CheckJustBeforeEventCancel: [0x710243c9b8, 0x71024dc5a0]
  CheckLastDamageAttacker: [0x710243c9b8, 0x710243e2b0]
  CheckManufactResult: [0x710243c9b8, 0x710243e328]
  CheckMapArea: [0x710243c9b8, 0x710243e3a0]
  CheckMasterSwordState: [0x710243c9b8, 0x710243e418]
  CheckMaterialValue: [0x710243c9b8, 0x710243e490]
  CheckMiniGameTime: [0x710243c9b8, 0x710243e508]
  CheckMiniGameTimeOver: [0x710243c9b8, 0x710243e580]
  CheckNumOfBuyPicture: [0x710243c9b8, 0x710243e5f8]
  CheckOwnedHorseFamiliarity: [0x710243c9b8, 0x710243e670]
  CheckPictureBookVacancy: [0x710243c9b8, 0x710243e6e8]
  CheckPlacedItemSaled: [0x710243c9b8, 0x710243e760]
  CheckPlayerDeadCause: [0x710243c9b8, 0x710243e7d8]
  CheckPlayerEquip: [0x710243c9b8, 0x710243e850]
  CheckPlayerFastFadeDead: [0x710243c9b8, 0x710243e8c8]
  CheckPlayerHellType: [0x710243c9b8, 0x710243e940]
  CheckPlayerPullSwordFailEnd: [0x710243c9b8, 0x710243e9b8]
  CheckPlayerRideHorse: [0x710243c9b8, 0x710243ea30]
  CheckPlayerRideSunazarashi: [0x710243c9b8, 0x710243eaa8]
  CheckPlayerState: [0x710243c9b8, 0x710243eb20]
  CheckPlayerTemperatureCondition: [0x710243c9b8, 0x710243eb98]
  CheckPlayerWeaponFired: [0x710243c9b8, 0x710243ec10]
  CheckPorchInItem: [0x710243c9b8, 0x710243ec88]
  CheckProConUse: [0x710243c9b8, 0x710243ed00]
  CheckRainRatio: [0x710243c9b8, 0x710243ed78]
  CheckRankOfEnemyAttackedNPC: [0x710243c9b8, 0x710243edf0]
  CheckReceiveTerrorLevel: [0x710243c9b8, 0x710243ee68]
  CheckResultOfNPCConflict: [0x710243c9b8, 0x710243eee0]
  CheckRoad: [0x710243c9b8, 0x710243ef58]
  CheckRupee: [0x710243c9b8, 0x710243efd0]
  CheckSelectPicture: [0x710243c9b8, 0x710243f048]
  CheckSellResult: [0x710243c9b8, 0x710243f0c0]
  CheckShopSelectedItemName: [0x710243c9b8, 0x710243f138]
  CheckSiteBossDamageAnm: [0x710243c9b8, 0x710243f1b0]
  CheckStage: [0x710243c9b8, 0x710243f228]
  CheckStarter: [0x710243c9b8, 0x710243f2a0]
  CheckTerrorLevel: [0x710243c9b8, 0x710243f318]
  CheckTime: [0x710243c9b8, 0x710243f390]
  CheckTimeType: [0x710243c9b8, 0x710243f408]
  CheckTypeOfOwnedHorseForEvent: [0x710243c9b8, 0x710243f480]
  CheckTypeOfWildHorseAssociated: [0x710243c9b8, 0x710243f4f8]
  CheckVacancyItem: [0x710243c9b8, 0x710243f570]
  CheckWarpMist: [0x710243c9b8, 0x710243f5e8]
  CheckWeaponVacancyItem: [0x710243c9b8, 0x710243f660]
  CheckWeather: [0x710243c9b8, 0x710243f6d8]
  CompareGameDataFloat: [0x710243c9b8, 0x710243f750]
  CompareGameDataInt: [0x710243c9b8, 0x710243f7c8]
  CompareGameDataTime: [0x710243c9b8, 0x710243f840]
  ComparePlayerFireResistantLevel: [0x710243c9b8, 0x710243f8b8]
  ComparePlayerHeart: [0x710243c9b8, 0x710243f930]
  ComparePlayerMaxHeart: [0x710243c9b8, 0x710243f9a8]
  ComparePlayerMaxStamina: [0x710243c9b8, 0x710243fa20]
  ComparePlayerOriginalHeart: [0x710243c9b8, 0x710243fa98]
  CountFlag4: [0x710243c9b8, 0x710243fb10]
  DummyQuery: [0x710243c9b8, 0x71024dc438]
  EnemyDieCheck: [0x710243c9b8, 0x710243fb88]
  EnemyRestLifeRate: [0x710243c9b8, 0x710243fc00]
  GeneralChoice2: [0x710243c9b8, 0x710243fc78]
  GeneralChoice3: [0x710243c9b8, 0x710243fcf0]
  GeneralChoice4: [0x710243c9b8, 0x710243fd68]
  GeneralChoice8: [0x710243c9b8, 0x710243fde0]
  HasArmorAlreadyDyed: [0x710243c9b8, 0x710243fe58]
  HasArmorDye: [0x710243c9b8, 0x710243fed0]
  HasCookResultInPorch: [0x710243c9b8, 0x710243ff48]
  HasEnoughPayment: [0x710243c9b8, 0x710243ffc0]
  HasItemDye: [0x710243c9b8, 0x7102440038]
  HasItemDyeSpecifiedColor: [0x710243c9b8, 0x71024400b0]
  HasPorchArrow: [0x710243c9b8, 0x7102440128]
  HasPorchItem: [0x710243c9b8, 0x71024401a0]
  HasPorchItemByCategory: [0x710243c9b8, 0x7102440218]
  HasPouchItemByPouchCategory: [0x710243c9b8, 0x7102440290]
  HasSetItem: [0x710243c9b8, 0x7102440308]
  HasSpecificArmorSeries: [0x710243c9b8, 0x7102440380]
  IsAppAlreadyExchanged: [0x710243c9b8, 0x71024403f8]
  IsArriveAnchorForRain: [0x710243c9b8, 0x7102440470]
  IsAwakened: [0x710243c9b8, 0x71024404e8]
  IsCurrentAocFieldStage: [0x710243c9b8, 0x71024405d8]
  IsCurrentCDungeonStage: [0x710243c9b8, 0x7102440650]
  IsCurrentMainFieldDungeonStage: [0x710243c9b8, 0x71024406c8]
  IsCurrentMainFieldStage: [0x710243c9b8, 0x7102440740]
  IsEquipedDyedArmor: [0x710243c9b8, 0x71024407b8]
  IsEquippedEnableDye: [0x710243c9b8, 0x7102440830]
  IsEquippedWithLowerBody: [0x710243c9b8, 0x71024408a8]
  IsHorseFamiliarityPassedAlready: [0x710243c9b8, 0x7102440920]
  IsHorseNumMax: [0x710243c9b8, 0x7102440998]
  IsIgnitionByArrowFire: [0x710243c9b8, 0x7102440a10]
  IsItemInStock: [0x710243c9b8, 0x7102440a88]
  IsNeedEquipWeapon: [0x710243c9b8, 0x7102440b00]
  IsNoEquipArmorAnyTarget: [0x710243c9b8, 0x7102440b78]
  IsOffLinkTag: [0x710243c9b8, 0x7102440bf0]
  IsOnEnterDungeonFlag: [0x710243c9b8, 0x7102440c68]
  IsOnInstEventFlag: [0x710243c9b8, 0x7102440ce0]
  IsOwnedHorseAssociated: [0x710243c9b8, 0x7102440d58]
  IsPlayerGrounded: [0x710243c9b8, 0x7102440dd0]
  IsRest: [0x710243c9b8, 0x7102440e48]
  IsRideHorse: [0x710243c9b8, 0x7102440ec0]
  IsSoldOut: [0x710243c9b8, 0x7102440f38]
  IsSuccessEndLastDemoAction: [0x710243c9b8, 0x7102440fb0]
  IsTerrorDisappeared: [0x710243c9b8, 0x7102441028]
  IsWaitRevival: [0x710243c9b8, 0x71024dc4b0]
  IsWeaponDrawn: [0x710243c9b8, 0x71024410a0]
  KeyInputCheck: [0x710243c9b8, 0x7102441118]
  RandomChoice2: [0x710243c9b8, 0x7102441190]
  RandomChoice3: [0x710243c9b8, 0x7102441208]
  RandomChoice4: [0x710243c9b8, 0x7102441280]
  RandomChoice8: [0x710243c9b8, 0x71024412f8]
  RandomChoiceExceptOnFlag: [0x710243c9b8, 0x7102441370]
  WhatCurrentItem: [0x710243c9b8, 0x71024413e8]
  WhatDayOfTheWeek: [0x710243c9b8, 0x7102441460]
  WhatDungeonType: [0x710243c9b8, 0x71024414d8]
  WhatMoonName: [0x710243c9b8, 0x7102441550]
  isBloodyMoonTrig: [0x710243c9b8, 0x7102440560]