Assembly-CSharp_Attr.cpp
266.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
#include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
// System.Type[]
struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
// UnityEngine.AddComponentMenu
struct AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100;
// System.Reflection.Binder
struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30;
// UnityEngine.ColorUsageAttribute
struct ColorUsageAttribute_tB57E6B0640DFA4A8838D1584BCAA03D9D4FDA662;
// System.Runtime.CompilerServices.CompilationRelaxationsAttribute
struct CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF;
// System.Runtime.CompilerServices.CompilerGeneratedAttribute
struct CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C;
// System.Diagnostics.ConditionalAttribute
struct ConditionalAttribute_t5DD558ED67ECF65952A82B94A75C6E8E121B2D8C;
// System.Diagnostics.DebuggableAttribute
struct DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B;
// System.Diagnostics.DebuggerHiddenAttribute
struct DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88;
// UnityEngine.DisallowMultipleComponent
struct DisallowMultipleComponent_tDB3D3DBC9AC523A0BD11DA0B7D88F960FDB89E3E;
// UnityEngine.ExecuteInEditMode
struct ExecuteInEditMode_tAA3B5DE8B7E207BC6CAAFDB1F2502350C0546173;
// System.Runtime.CompilerServices.ExtensionAttribute
struct ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC;
// UnityEngine.Serialization.FormerlySerializedAsAttribute
struct FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210;
// UnityEngine.HeaderAttribute
struct HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB;
// UnityEngine.HideInInspector
struct HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA;
// System.Runtime.CompilerServices.IteratorStateMachineAttribute
struct IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830;
// System.Reflection.MemberFilter
struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81;
// System.ObsoleteAttribute
struct ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671;
// UnityEngine.RangeAttribute
struct RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5;
// UnityEngine.RequireComponent
struct RequireComponent_tEDA546F9722B8874DA9658BDAB821BA49647FC91;
// System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
struct RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80;
// UnityEngine.SerializeField
struct SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25;
// System.String
struct String_t;
// UnityEngine.TooltipAttribute
struct TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B;
// System.Type
struct Type_t;
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
IL2CPP_EXTERN_C const RuntimeType* Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* U3CChangeScaleCoroutineU3Ed__26_t2918B9C18F293BA64B72C1D58415EA17C13CAA55_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* U3CCreateOtherBallU3Ed__17_t516DA87B86E4CC4C7A7F321AC62E7FD3DAA28A62_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* U3CCreateTargetBallU3Ed__16_t0D39108D5876D60EB93AFAF0F06FE6D66F41CB1B_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* U3CDoLoadU3Ed__3_t22FB46F6868448B2A14E4EB6EE9F15898C0B33F9_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* U3CLoadBGImgU3Ed__33_t982A3BEA375E5453B90F14211863CFD8E6C470CD_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* U3CLoadBGMusicU3Ed__35_t99F47D987146B5073AE310874A86AA9BD645361F_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* U3CLoadHandImgU3Ed__34_t2F162D891050AB1BF8AD4C1C0EF0B19F78425CB9_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* U3CLoadWaterVoiceU3Ed__36_t170B26E90F422EEA63B00FA1513E77AE9DADC8FE_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* U3CPlayBGMusicU3Ed__42_tBE58739AEFC457668D1A21A551058495DE25D1CF_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* U3CPlayeVideoU3Ed__2_tEE6CBE2062BB49044C2122342E90CF42036EEA0F_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* U3CPlayeVideoU3Ed__44_t219DED91B915A5A290882ADB49AE0BC747E81150_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* U3CShowC2IStepsU3Ed__31_tBB9B8E2E2A7AF602E3C3388372083E9A59D4E7FE_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* U3CShowNextButtonU3Ed__40_t516102B1BE512C9C1FC64C4A753A3CD018ED310B_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* U3CStopBallMoveU3Ed__13_t7F61C09EDA53993951CEC95ED46A79380F9507A5_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* U3C_CoUpdateTextureOnNextFrameU3Ed__95_t9C8D68935D7F427151455D75EABE42DB3D053931_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* U3ChideTargetBallRingU3Ed__11_t2884642ADECFCA61F4D7DDE53E8B0DDC673A1951_0_0_0_var;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
// System.Attribute
struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject
{
public:
public:
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
{
};
// UnityEngine.AddComponentMenu
struct AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.String UnityEngine.AddComponentMenu::m_AddComponentMenu
String_t* ___m_AddComponentMenu_0;
// System.Int32 UnityEngine.AddComponentMenu::m_Ordering
int32_t ___m_Ordering_1;
public:
inline static int32_t get_offset_of_m_AddComponentMenu_0() { return static_cast<int32_t>(offsetof(AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100, ___m_AddComponentMenu_0)); }
inline String_t* get_m_AddComponentMenu_0() const { return ___m_AddComponentMenu_0; }
inline String_t** get_address_of_m_AddComponentMenu_0() { return &___m_AddComponentMenu_0; }
inline void set_m_AddComponentMenu_0(String_t* value)
{
___m_AddComponentMenu_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_AddComponentMenu_0), (void*)value);
}
inline static int32_t get_offset_of_m_Ordering_1() { return static_cast<int32_t>(offsetof(AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100, ___m_Ordering_1)); }
inline int32_t get_m_Ordering_1() const { return ___m_Ordering_1; }
inline int32_t* get_address_of_m_Ordering_1() { return &___m_Ordering_1; }
inline void set_m_Ordering_1(int32_t value)
{
___m_Ordering_1 = value;
}
};
// System.Boolean
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Runtime.CompilerServices.CompilationRelaxationsAttribute
struct CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.Int32 System.Runtime.CompilerServices.CompilationRelaxationsAttribute::m_relaxations
int32_t ___m_relaxations_0;
public:
inline static int32_t get_offset_of_m_relaxations_0() { return static_cast<int32_t>(offsetof(CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF, ___m_relaxations_0)); }
inline int32_t get_m_relaxations_0() const { return ___m_relaxations_0; }
inline int32_t* get_address_of_m_relaxations_0() { return &___m_relaxations_0; }
inline void set_m_relaxations_0(int32_t value)
{
___m_relaxations_0 = value;
}
};
// System.Runtime.CompilerServices.CompilerGeneratedAttribute
struct CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// System.Diagnostics.ConditionalAttribute
struct ConditionalAttribute_t5DD558ED67ECF65952A82B94A75C6E8E121B2D8C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.String System.Diagnostics.ConditionalAttribute::m_conditionString
String_t* ___m_conditionString_0;
public:
inline static int32_t get_offset_of_m_conditionString_0() { return static_cast<int32_t>(offsetof(ConditionalAttribute_t5DD558ED67ECF65952A82B94A75C6E8E121B2D8C, ___m_conditionString_0)); }
inline String_t* get_m_conditionString_0() const { return ___m_conditionString_0; }
inline String_t** get_address_of_m_conditionString_0() { return &___m_conditionString_0; }
inline void set_m_conditionString_0(String_t* value)
{
___m_conditionString_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_conditionString_0), (void*)value);
}
};
// System.Diagnostics.DebuggerHiddenAttribute
struct DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// UnityEngine.DisallowMultipleComponent
struct DisallowMultipleComponent_tDB3D3DBC9AC523A0BD11DA0B7D88F960FDB89E3E : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
{
public:
public:
};
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
{
};
// UnityEngine.ExecuteInEditMode
struct ExecuteInEditMode_tAA3B5DE8B7E207BC6CAAFDB1F2502350C0546173 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// System.Runtime.CompilerServices.ExtensionAttribute
struct ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// UnityEngine.Serialization.FormerlySerializedAsAttribute
struct FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.String UnityEngine.Serialization.FormerlySerializedAsAttribute::m_oldName
String_t* ___m_oldName_0;
public:
inline static int32_t get_offset_of_m_oldName_0() { return static_cast<int32_t>(offsetof(FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210, ___m_oldName_0)); }
inline String_t* get_m_oldName_0() const { return ___m_oldName_0; }
inline String_t** get_address_of_m_oldName_0() { return &___m_oldName_0; }
inline void set_m_oldName_0(String_t* value)
{
___m_oldName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_oldName_0), (void*)value);
}
};
// UnityEngine.HideInInspector
struct HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.ObsoleteAttribute
struct ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.String System.ObsoleteAttribute::_message
String_t* ____message_0;
// System.Boolean System.ObsoleteAttribute::_error
bool ____error_1;
public:
inline static int32_t get_offset_of__message_0() { return static_cast<int32_t>(offsetof(ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671, ____message_0)); }
inline String_t* get__message_0() const { return ____message_0; }
inline String_t** get_address_of__message_0() { return &____message_0; }
inline void set__message_0(String_t* value)
{
____message_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_0), (void*)value);
}
inline static int32_t get_offset_of__error_1() { return static_cast<int32_t>(offsetof(ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671, ____error_1)); }
inline bool get__error_1() const { return ____error_1; }
inline bool* get_address_of__error_1() { return &____error_1; }
inline void set__error_1(bool value)
{
____error_1 = value;
}
};
// UnityEngine.PropertyAttribute
struct PropertyAttribute_t4A352471DF625C56C811E27AC86B7E1CE6444052 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// UnityEngine.RequireComponent
struct RequireComponent_tEDA546F9722B8874DA9658BDAB821BA49647FC91 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.Type UnityEngine.RequireComponent::m_Type0
Type_t * ___m_Type0_0;
// System.Type UnityEngine.RequireComponent::m_Type1
Type_t * ___m_Type1_1;
// System.Type UnityEngine.RequireComponent::m_Type2
Type_t * ___m_Type2_2;
public:
inline static int32_t get_offset_of_m_Type0_0() { return static_cast<int32_t>(offsetof(RequireComponent_tEDA546F9722B8874DA9658BDAB821BA49647FC91, ___m_Type0_0)); }
inline Type_t * get_m_Type0_0() const { return ___m_Type0_0; }
inline Type_t ** get_address_of_m_Type0_0() { return &___m_Type0_0; }
inline void set_m_Type0_0(Type_t * value)
{
___m_Type0_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Type0_0), (void*)value);
}
inline static int32_t get_offset_of_m_Type1_1() { return static_cast<int32_t>(offsetof(RequireComponent_tEDA546F9722B8874DA9658BDAB821BA49647FC91, ___m_Type1_1)); }
inline Type_t * get_m_Type1_1() const { return ___m_Type1_1; }
inline Type_t ** get_address_of_m_Type1_1() { return &___m_Type1_1; }
inline void set_m_Type1_1(Type_t * value)
{
___m_Type1_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Type1_1), (void*)value);
}
inline static int32_t get_offset_of_m_Type2_2() { return static_cast<int32_t>(offsetof(RequireComponent_tEDA546F9722B8874DA9658BDAB821BA49647FC91, ___m_Type2_2)); }
inline Type_t * get_m_Type2_2() const { return ___m_Type2_2; }
inline Type_t ** get_address_of_m_Type2_2() { return &___m_Type2_2; }
inline void set_m_Type2_2(Type_t * value)
{
___m_Type2_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Type2_2), (void*)value);
}
};
// System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
struct RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::m_wrapNonExceptionThrows
bool ___m_wrapNonExceptionThrows_0;
public:
inline static int32_t get_offset_of_m_wrapNonExceptionThrows_0() { return static_cast<int32_t>(offsetof(RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80, ___m_wrapNonExceptionThrows_0)); }
inline bool get_m_wrapNonExceptionThrows_0() const { return ___m_wrapNonExceptionThrows_0; }
inline bool* get_address_of_m_wrapNonExceptionThrows_0() { return &___m_wrapNonExceptionThrows_0; }
inline void set_m_wrapNonExceptionThrows_0(bool value)
{
___m_wrapNonExceptionThrows_0 = value;
}
};
// UnityEngine.SerializeField
struct SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
public:
};
// System.Runtime.CompilerServices.StateMachineAttribute
struct StateMachineAttribute_tA6E77C77F821508E405473BA1C4C08A69FDA0AC3 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.Type System.Runtime.CompilerServices.StateMachineAttribute::<StateMachineType>k__BackingField
Type_t * ___U3CStateMachineTypeU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CStateMachineTypeU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(StateMachineAttribute_tA6E77C77F821508E405473BA1C4C08A69FDA0AC3, ___U3CStateMachineTypeU3Ek__BackingField_0)); }
inline Type_t * get_U3CStateMachineTypeU3Ek__BackingField_0() const { return ___U3CStateMachineTypeU3Ek__BackingField_0; }
inline Type_t ** get_address_of_U3CStateMachineTypeU3Ek__BackingField_0() { return &___U3CStateMachineTypeU3Ek__BackingField_0; }
inline void set_U3CStateMachineTypeU3Ek__BackingField_0(Type_t * value)
{
___U3CStateMachineTypeU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CStateMachineTypeU3Ek__BackingField_0), (void*)value);
}
};
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
{
public:
union
{
struct
{
};
uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
};
public:
};
// System.Reflection.BindingFlags
struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733
{
public:
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.ColorUsageAttribute
struct ColorUsageAttribute_tB57E6B0640DFA4A8838D1584BCAA03D9D4FDA662 : public PropertyAttribute_t4A352471DF625C56C811E27AC86B7E1CE6444052
{
public:
// System.Boolean UnityEngine.ColorUsageAttribute::showAlpha
bool ___showAlpha_0;
// System.Boolean UnityEngine.ColorUsageAttribute::hdr
bool ___hdr_1;
// System.Single UnityEngine.ColorUsageAttribute::minBrightness
float ___minBrightness_2;
// System.Single UnityEngine.ColorUsageAttribute::maxBrightness
float ___maxBrightness_3;
// System.Single UnityEngine.ColorUsageAttribute::minExposureValue
float ___minExposureValue_4;
// System.Single UnityEngine.ColorUsageAttribute::maxExposureValue
float ___maxExposureValue_5;
public:
inline static int32_t get_offset_of_showAlpha_0() { return static_cast<int32_t>(offsetof(ColorUsageAttribute_tB57E6B0640DFA4A8838D1584BCAA03D9D4FDA662, ___showAlpha_0)); }
inline bool get_showAlpha_0() const { return ___showAlpha_0; }
inline bool* get_address_of_showAlpha_0() { return &___showAlpha_0; }
inline void set_showAlpha_0(bool value)
{
___showAlpha_0 = value;
}
inline static int32_t get_offset_of_hdr_1() { return static_cast<int32_t>(offsetof(ColorUsageAttribute_tB57E6B0640DFA4A8838D1584BCAA03D9D4FDA662, ___hdr_1)); }
inline bool get_hdr_1() const { return ___hdr_1; }
inline bool* get_address_of_hdr_1() { return &___hdr_1; }
inline void set_hdr_1(bool value)
{
___hdr_1 = value;
}
inline static int32_t get_offset_of_minBrightness_2() { return static_cast<int32_t>(offsetof(ColorUsageAttribute_tB57E6B0640DFA4A8838D1584BCAA03D9D4FDA662, ___minBrightness_2)); }
inline float get_minBrightness_2() const { return ___minBrightness_2; }
inline float* get_address_of_minBrightness_2() { return &___minBrightness_2; }
inline void set_minBrightness_2(float value)
{
___minBrightness_2 = value;
}
inline static int32_t get_offset_of_maxBrightness_3() { return static_cast<int32_t>(offsetof(ColorUsageAttribute_tB57E6B0640DFA4A8838D1584BCAA03D9D4FDA662, ___maxBrightness_3)); }
inline float get_maxBrightness_3() const { return ___maxBrightness_3; }
inline float* get_address_of_maxBrightness_3() { return &___maxBrightness_3; }
inline void set_maxBrightness_3(float value)
{
___maxBrightness_3 = value;
}
inline static int32_t get_offset_of_minExposureValue_4() { return static_cast<int32_t>(offsetof(ColorUsageAttribute_tB57E6B0640DFA4A8838D1584BCAA03D9D4FDA662, ___minExposureValue_4)); }
inline float get_minExposureValue_4() const { return ___minExposureValue_4; }
inline float* get_address_of_minExposureValue_4() { return &___minExposureValue_4; }
inline void set_minExposureValue_4(float value)
{
___minExposureValue_4 = value;
}
inline static int32_t get_offset_of_maxExposureValue_5() { return static_cast<int32_t>(offsetof(ColorUsageAttribute_tB57E6B0640DFA4A8838D1584BCAA03D9D4FDA662, ___maxExposureValue_5)); }
inline float get_maxExposureValue_5() const { return ___maxExposureValue_5; }
inline float* get_address_of_maxExposureValue_5() { return &___maxExposureValue_5; }
inline void set_maxExposureValue_5(float value)
{
___maxExposureValue_5 = value;
}
};
// UnityEngine.HeaderAttribute
struct HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB : public PropertyAttribute_t4A352471DF625C56C811E27AC86B7E1CE6444052
{
public:
// System.String UnityEngine.HeaderAttribute::header
String_t* ___header_0;
public:
inline static int32_t get_offset_of_header_0() { return static_cast<int32_t>(offsetof(HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB, ___header_0)); }
inline String_t* get_header_0() const { return ___header_0; }
inline String_t** get_address_of_header_0() { return &___header_0; }
inline void set_header_0(String_t* value)
{
___header_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___header_0), (void*)value);
}
};
// System.Runtime.CompilerServices.IteratorStateMachineAttribute
struct IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 : public StateMachineAttribute_tA6E77C77F821508E405473BA1C4C08A69FDA0AC3
{
public:
public:
};
// UnityEngine.RangeAttribute
struct RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 : public PropertyAttribute_t4A352471DF625C56C811E27AC86B7E1CE6444052
{
public:
// System.Single UnityEngine.RangeAttribute::min
float ___min_0;
// System.Single UnityEngine.RangeAttribute::max
float ___max_1;
public:
inline static int32_t get_offset_of_min_0() { return static_cast<int32_t>(offsetof(RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5, ___min_0)); }
inline float get_min_0() const { return ___min_0; }
inline float* get_address_of_min_0() { return &___min_0; }
inline void set_min_0(float value)
{
___min_0 = value;
}
inline static int32_t get_offset_of_max_1() { return static_cast<int32_t>(offsetof(RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5, ___max_1)); }
inline float get_max_1() const { return ___max_1; }
inline float* get_address_of_max_1() { return &___max_1; }
inline void set_max_1(float value)
{
___max_1 = value;
}
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9
{
public:
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// UnityEngine.TooltipAttribute
struct TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B : public PropertyAttribute_t4A352471DF625C56C811E27AC86B7E1CE6444052
{
public:
// System.String UnityEngine.TooltipAttribute::tooltip
String_t* ___tooltip_0;
public:
inline static int32_t get_offset_of_tooltip_0() { return static_cast<int32_t>(offsetof(TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B, ___tooltip_0)); }
inline String_t* get_tooltip_0() const { return ___tooltip_0; }
inline String_t** get_address_of_tooltip_0() { return &___tooltip_0; }
inline void set_tooltip_0(String_t* value)
{
___tooltip_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___tooltip_0), (void*)value);
}
};
// System.Diagnostics.DebuggableAttribute/DebuggingModes
struct DebuggingModes_t279D5B9C012ABA935887CB73C5A63A1F46AF08A8
{
public:
// System.Int32 System.Diagnostics.DebuggableAttribute/DebuggingModes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DebuggingModes_t279D5B9C012ABA935887CB73C5A63A1F46AF08A8, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Diagnostics.DebuggableAttribute
struct DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
{
public:
// System.Diagnostics.DebuggableAttribute/DebuggingModes System.Diagnostics.DebuggableAttribute::m_debuggingModes
int32_t ___m_debuggingModes_0;
public:
inline static int32_t get_offset_of_m_debuggingModes_0() { return static_cast<int32_t>(offsetof(DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B, ___m_debuggingModes_0)); }
inline int32_t get_m_debuggingModes_0() const { return ___m_debuggingModes_0; }
inline int32_t* get_address_of_m_debuggingModes_0() { return &___m_debuggingModes_0; }
inline void set_m_debuggingModes_0(int32_t value)
{
___m_debuggingModes_0 = value;
}
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6;
public:
inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
}
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
inline void set_Missing_3(RuntimeObject * value)
{
___Missing_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
}
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
inline void set_Delimiter_4(Il2CppChar value)
{
___Delimiter_4 = value;
}
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Void System.Diagnostics.DebuggableAttribute::.ctor(System.Diagnostics.DebuggableAttribute/DebuggingModes)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggableAttribute__ctor_m7FF445C8435494A4847123A668D889E692E55550 (DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B * __this, int32_t ___modes0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.CompilationRelaxationsAttribute::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompilationRelaxationsAttribute__ctor_mAC3079EBC4EEAB474EED8208EF95DB39C922333B (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * __this, int32_t ___relaxations0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.ExtensionAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute__ctor_m551DDF1438CE97A984571949723F30F44CF7317C (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::set_WrapNonExceptionThrows(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.IteratorStateMachineAttribute::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481 (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * __this, Type_t * ___stateMachineType0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35 (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * __this, const RuntimeMethod* method);
// System.Void System.Diagnostics.DebuggerHiddenAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3 (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.SerializeField::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3 (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.HeaderAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HeaderAttribute__ctor_m601319E0BCE8C44A9E79B2C0ABAAD0FEF46A9F1E (HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB * __this, String_t* ___header0, const RuntimeMethod* method);
// System.Void UnityEngine.RangeAttribute::.ctor(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000 (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * __this, float ___min0, float ___max1, const RuntimeMethod* method);
// System.Void UnityEngine.ExecuteInEditMode::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExecuteInEditMode__ctor_m52849B67DB46F6CF090D45E523FAE97A10825C0A (ExecuteInEditMode_tAA3B5DE8B7E207BC6CAAFDB1F2502350C0546173 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.AddComponentMenu::.ctor(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AddComponentMenu__ctor_m6405E10C6B6269CA2F0684BF0B356A7E6AB7BF56 (AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 * __this, String_t* ___menuName0, int32_t ___order1, const RuntimeMethod* method);
// System.Void UnityEngine.Serialization.FormerlySerializedAsAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * __this, String_t* ___oldName0, const RuntimeMethod* method);
// System.Void UnityEngine.TooltipAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042 (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * __this, String_t* ___tooltip0, const RuntimeMethod* method);
// System.Void UnityEngine.ColorUsageAttribute::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ColorUsageAttribute__ctor_mB764B17A7C17E6199BFC147BFFE72D34FD55D76E (ColorUsageAttribute_tB57E6B0640DFA4A8838D1584BCAA03D9D4FDA662 * __this, bool ___showAlpha0, const RuntimeMethod* method);
// System.Void System.ObsoleteAttribute::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853 (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.HideInInspector::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9 (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * __this, const RuntimeMethod* method);
// System.Void System.ObsoleteAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868 (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void UnityEngine.DisallowMultipleComponent::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisallowMultipleComponent__ctor_mDCA4B0F84AB4B3E17D216DB29318032547AB7F0D (DisallowMultipleComponent_tDB3D3DBC9AC523A0BD11DA0B7D88F960FDB89E3E * __this, const RuntimeMethod* method);
// System.Void UnityEngine.RequireComponent::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RequireComponent__ctor_m5EC89D3D22D7D880E1B88A5C9FADF1FBDC713EE4 (RequireComponent_tEDA546F9722B8874DA9658BDAB821BA49647FC91 * __this, Type_t * ___requiredComponent0, const RuntimeMethod* method);
// System.Void System.Diagnostics.ConditionalAttribute::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalAttribute__ctor_m43C71F47F8ED8FDF9A11FB20E8916C3737DD66AF (ConditionalAttribute_t5DD558ED67ECF65952A82B94A75C6E8E121B2D8C * __this, String_t* ___conditionString0, const RuntimeMethod* method);
static void AssemblyU2DCSharp_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B * tmp = (DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B *)cache->attributes[0];
DebuggableAttribute__ctor_m7FF445C8435494A4847123A668D889E692E55550(tmp, 2LL, NULL);
}
{
CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * tmp = (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF *)cache->attributes[1];
CompilationRelaxationsAttribute__ctor_mAC3079EBC4EEAB474EED8208EF95DB39C922333B(tmp, 8LL, NULL);
}
{
ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[2];
ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
}
{
RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * tmp = (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 *)cache->attributes[3];
RuntimeCompatibilityAttribute__ctor_m551DDF1438CE97A984571949723F30F44CF7317C(tmp, NULL);
RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline(tmp, true, NULL);
}
}
static void CachedDownloader_t393F2BFBFC81E72718CFE4389E1590E6A6A31A69_CustomAttributesCacheGenerator_CachedDownloader_DoLoad_mBEEA4206C369A16297E0C0CD1EC3FB26A691202D(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CDoLoadU3Ed__3_t22FB46F6868448B2A14E4EB6EE9F15898C0B33F9_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * tmp = (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 *)cache->attributes[0];
IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481(tmp, il2cpp_codegen_type_get_object(U3CDoLoadU3Ed__3_t22FB46F6868448B2A14E4EB6EE9F15898C0B33F9_0_0_0_var), NULL);
}
}
static void U3CDoLoadU3Ed__3_t22FB46F6868448B2A14E4EB6EE9F15898C0B33F9_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CDoLoadU3Ed__3_t22FB46F6868448B2A14E4EB6EE9F15898C0B33F9_CustomAttributesCacheGenerator_U3CDoLoadU3Ed__3__ctor_mDA36578BAE2CDBC83D2446D09A41F1B4003E18BD(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CDoLoadU3Ed__3_t22FB46F6868448B2A14E4EB6EE9F15898C0B33F9_CustomAttributesCacheGenerator_U3CDoLoadU3Ed__3_System_IDisposable_Dispose_mFCAAB89610C499B7A7CD844200857E715A87E873(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CDoLoadU3Ed__3_t22FB46F6868448B2A14E4EB6EE9F15898C0B33F9_CustomAttributesCacheGenerator_U3CDoLoadU3Ed__3_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m212130B9720F3A91730917051121F654EFC0923C(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CDoLoadU3Ed__3_t22FB46F6868448B2A14E4EB6EE9F15898C0B33F9_CustomAttributesCacheGenerator_U3CDoLoadU3Ed__3_System_Collections_IEnumerator_Reset_mFDF80C9604E10EAD89487FF4B519AC4841236925(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CDoLoadU3Ed__3_t22FB46F6868448B2A14E4EB6EE9F15898C0B33F9_CustomAttributesCacheGenerator_U3CDoLoadU3Ed__3_System_Collections_IEnumerator_get_Current_mB202FCC75F8CCE69998E8A1BF33BC762042F5096(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void MusicFade_t7B8618ADAD81B5E4F065ABC137442FB774511F74_CustomAttributesCacheGenerator_Music(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void MusicFade_t7B8618ADAD81B5E4F065ABC137442FB774511F74_CustomAttributesCacheGenerator_durTime(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void NorbuMain_t8D15328E193DEC669917162100629AFF6DE910CE_CustomAttributesCacheGenerator_NorbuMain_hideTargetBallRing_m81EF3F5A3B2343BC048FBC63DCA98ADDF6D23D39(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3ChideTargetBallRingU3Ed__11_t2884642ADECFCA61F4D7DDE53E8B0DDC673A1951_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * tmp = (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 *)cache->attributes[0];
IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481(tmp, il2cpp_codegen_type_get_object(U3ChideTargetBallRingU3Ed__11_t2884642ADECFCA61F4D7DDE53E8B0DDC673A1951_0_0_0_var), NULL);
}
}
static void NorbuMain_t8D15328E193DEC669917162100629AFF6DE910CE_CustomAttributesCacheGenerator_NorbuMain_StopBallMove_m2528989FF2CFF8152133EF8EB99A72AF68AFAAD0(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CStopBallMoveU3Ed__13_t7F61C09EDA53993951CEC95ED46A79380F9507A5_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * tmp = (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 *)cache->attributes[0];
IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481(tmp, il2cpp_codegen_type_get_object(U3CStopBallMoveU3Ed__13_t7F61C09EDA53993951CEC95ED46A79380F9507A5_0_0_0_var), NULL);
}
}
static void NorbuMain_t8D15328E193DEC669917162100629AFF6DE910CE_CustomAttributesCacheGenerator_NorbuMain_CreateTargetBall_m17FD33A4AE2975533BBED1F282C7DFB2F7311E02(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CCreateTargetBallU3Ed__16_t0D39108D5876D60EB93AFAF0F06FE6D66F41CB1B_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * tmp = (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 *)cache->attributes[0];
IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481(tmp, il2cpp_codegen_type_get_object(U3CCreateTargetBallU3Ed__16_t0D39108D5876D60EB93AFAF0F06FE6D66F41CB1B_0_0_0_var), NULL);
}
}
static void NorbuMain_t8D15328E193DEC669917162100629AFF6DE910CE_CustomAttributesCacheGenerator_NorbuMain_CreateOtherBall_m620C39364DB487E037290ADB0A59544AC8EB2B6C(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CCreateOtherBallU3Ed__17_t516DA87B86E4CC4C7A7F321AC62E7FD3DAA28A62_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * tmp = (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 *)cache->attributes[0];
IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481(tmp, il2cpp_codegen_type_get_object(U3CCreateOtherBallU3Ed__17_t516DA87B86E4CC4C7A7F321AC62E7FD3DAA28A62_0_0_0_var), NULL);
}
}
static void NorbuMain_t8D15328E193DEC669917162100629AFF6DE910CE_CustomAttributesCacheGenerator_NorbuMain_ShowC2ISteps_mEBD10175BA513A2250221FBE4892E08C78DC16BB(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CShowC2IStepsU3Ed__31_tBB9B8E2E2A7AF602E3C3388372083E9A59D4E7FE_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * tmp = (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 *)cache->attributes[0];
IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481(tmp, il2cpp_codegen_type_get_object(U3CShowC2IStepsU3Ed__31_tBB9B8E2E2A7AF602E3C3388372083E9A59D4E7FE_0_0_0_var), NULL);
}
}
static void NorbuMain_t8D15328E193DEC669917162100629AFF6DE910CE_CustomAttributesCacheGenerator_NorbuMain_ShowNextButton_m74B999D7DE268777327ABCC82F017744CF4701C6(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CShowNextButtonU3Ed__40_t516102B1BE512C9C1FC64C4A753A3CD018ED310B_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * tmp = (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 *)cache->attributes[0];
IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481(tmp, il2cpp_codegen_type_get_object(U3CShowNextButtonU3Ed__40_t516102B1BE512C9C1FC64C4A753A3CD018ED310B_0_0_0_var), NULL);
}
}
static void NorbuMain_t8D15328E193DEC669917162100629AFF6DE910CE_CustomAttributesCacheGenerator_NorbuMain_PlayBGMusic_mD29569C55935F9C36C04690CF7945BA46DDB880D(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPlayBGMusicU3Ed__42_tBE58739AEFC457668D1A21A551058495DE25D1CF_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * tmp = (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 *)cache->attributes[0];
IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481(tmp, il2cpp_codegen_type_get_object(U3CPlayBGMusicU3Ed__42_tBE58739AEFC457668D1A21A551058495DE25D1CF_0_0_0_var), NULL);
}
}
static void NorbuMain_t8D15328E193DEC669917162100629AFF6DE910CE_CustomAttributesCacheGenerator_NorbuMain_PlayeVideo_m5719799B8EBC4EB841C5A0E003E39C0B2C9FE2FE(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPlayeVideoU3Ed__44_t219DED91B915A5A290882ADB49AE0BC747E81150_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * tmp = (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 *)cache->attributes[0];
IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481(tmp, il2cpp_codegen_type_get_object(U3CPlayeVideoU3Ed__44_t219DED91B915A5A290882ADB49AE0BC747E81150_0_0_0_var), NULL);
}
}
static void GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_U3CballCountU3Ek__BackingField(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_U3CtargetBallCountU3Ek__BackingField(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_U3CspeedU3Ek__BackingField(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_GameLevel_get_ballCount_mF830CB1E893074B6C6450A63061BD58BB2858ED0(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_GameLevel_set_ballCount_m4FECA6A7DE7F13FE943114B0C2F9372C96AC4506(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_GameLevel_get_targetBallCount_mEC275EFBD892B982527F9F6FA0F3FBDF2601ACA2(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_GameLevel_set_targetBallCount_mFFFC77768BDD6D9726E3771FBCED9D6A2913DFE1(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_GameLevel_get_speed_m8840E9D81141FFC8D36E0B7C26452C76D3647A50(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_GameLevel_set_speed_m448437A76844865EE436420E30907875FE83CCDB(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3ChideTargetBallRingU3Ed__11_t2884642ADECFCA61F4D7DDE53E8B0DDC673A1951_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3ChideTargetBallRingU3Ed__11_t2884642ADECFCA61F4D7DDE53E8B0DDC673A1951_CustomAttributesCacheGenerator_U3ChideTargetBallRingU3Ed__11__ctor_m1BE36DD40CB7B1229A2A6AC3FB33500A0A77D614(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3ChideTargetBallRingU3Ed__11_t2884642ADECFCA61F4D7DDE53E8B0DDC673A1951_CustomAttributesCacheGenerator_U3ChideTargetBallRingU3Ed__11_System_IDisposable_Dispose_m5C19DAAC82F190228E8803310598203B29408304(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3ChideTargetBallRingU3Ed__11_t2884642ADECFCA61F4D7DDE53E8B0DDC673A1951_CustomAttributesCacheGenerator_U3ChideTargetBallRingU3Ed__11_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mE3C1A42A9D5B316FA6661CA36499C5E4D6EFA7EB(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3ChideTargetBallRingU3Ed__11_t2884642ADECFCA61F4D7DDE53E8B0DDC673A1951_CustomAttributesCacheGenerator_U3ChideTargetBallRingU3Ed__11_System_Collections_IEnumerator_Reset_m407D0AC916769369DBA159B1C8430399729712DD(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3ChideTargetBallRingU3Ed__11_t2884642ADECFCA61F4D7DDE53E8B0DDC673A1951_CustomAttributesCacheGenerator_U3ChideTargetBallRingU3Ed__11_System_Collections_IEnumerator_get_Current_m2D7D1C39D410F73EBA0EDEA53EB449BEB53A28B2(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CStopBallMoveU3Ed__13_t7F61C09EDA53993951CEC95ED46A79380F9507A5_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CStopBallMoveU3Ed__13_t7F61C09EDA53993951CEC95ED46A79380F9507A5_CustomAttributesCacheGenerator_U3CStopBallMoveU3Ed__13__ctor_m0CFBF1E8D1F0E5FA06ACA3769B829A830F199C11(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CStopBallMoveU3Ed__13_t7F61C09EDA53993951CEC95ED46A79380F9507A5_CustomAttributesCacheGenerator_U3CStopBallMoveU3Ed__13_System_IDisposable_Dispose_mDEB8C5DCCD1C100C907D3614A8ACFF2A35C7CB32(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CStopBallMoveU3Ed__13_t7F61C09EDA53993951CEC95ED46A79380F9507A5_CustomAttributesCacheGenerator_U3CStopBallMoveU3Ed__13_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m7983AA94274CB88DA8B7EDB56C39D46D83544F56(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CStopBallMoveU3Ed__13_t7F61C09EDA53993951CEC95ED46A79380F9507A5_CustomAttributesCacheGenerator_U3CStopBallMoveU3Ed__13_System_Collections_IEnumerator_Reset_m7028DC7CFDBFB5D8199502096BBE511F80D66A3B(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CStopBallMoveU3Ed__13_t7F61C09EDA53993951CEC95ED46A79380F9507A5_CustomAttributesCacheGenerator_U3CStopBallMoveU3Ed__13_System_Collections_IEnumerator_get_Current_m1D388AABC3C9F2E3A914A5DBED26F1941A18F01D(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CCreateTargetBallU3Ed__16_t0D39108D5876D60EB93AFAF0F06FE6D66F41CB1B_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CCreateTargetBallU3Ed__16_t0D39108D5876D60EB93AFAF0F06FE6D66F41CB1B_CustomAttributesCacheGenerator_U3CCreateTargetBallU3Ed__16__ctor_mF02CADDF5830E7CF176E5A05ED0D48C8112B8902(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CCreateTargetBallU3Ed__16_t0D39108D5876D60EB93AFAF0F06FE6D66F41CB1B_CustomAttributesCacheGenerator_U3CCreateTargetBallU3Ed__16_System_IDisposable_Dispose_m4C902EBE2D39FC64C066A91B8A82100BD29D9EF2(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CCreateTargetBallU3Ed__16_t0D39108D5876D60EB93AFAF0F06FE6D66F41CB1B_CustomAttributesCacheGenerator_U3CCreateTargetBallU3Ed__16_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m34EFBF79479595C42D42F68C0A65EE747A022131(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CCreateTargetBallU3Ed__16_t0D39108D5876D60EB93AFAF0F06FE6D66F41CB1B_CustomAttributesCacheGenerator_U3CCreateTargetBallU3Ed__16_System_Collections_IEnumerator_Reset_mFBDA718688A74F73294E042DE4111BF26600D86B(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CCreateTargetBallU3Ed__16_t0D39108D5876D60EB93AFAF0F06FE6D66F41CB1B_CustomAttributesCacheGenerator_U3CCreateTargetBallU3Ed__16_System_Collections_IEnumerator_get_Current_mEF124D910811CCD183D35A526CD198BD1752B99F(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CCreateOtherBallU3Ed__17_t516DA87B86E4CC4C7A7F321AC62E7FD3DAA28A62_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CCreateOtherBallU3Ed__17_t516DA87B86E4CC4C7A7F321AC62E7FD3DAA28A62_CustomAttributesCacheGenerator_U3CCreateOtherBallU3Ed__17__ctor_mBC286D2BB9BF49AE3637765E5EC539D98CEA694B(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CCreateOtherBallU3Ed__17_t516DA87B86E4CC4C7A7F321AC62E7FD3DAA28A62_CustomAttributesCacheGenerator_U3CCreateOtherBallU3Ed__17_System_IDisposable_Dispose_m283EEA1F06F9F70EF9B6904A5311AEBD046D2907(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CCreateOtherBallU3Ed__17_t516DA87B86E4CC4C7A7F321AC62E7FD3DAA28A62_CustomAttributesCacheGenerator_U3CCreateOtherBallU3Ed__17_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m0FF95E8CF5C794D1C6947B0369EBA8ACFC345D80(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CCreateOtherBallU3Ed__17_t516DA87B86E4CC4C7A7F321AC62E7FD3DAA28A62_CustomAttributesCacheGenerator_U3CCreateOtherBallU3Ed__17_System_Collections_IEnumerator_Reset_m4CE4E2797DF1A2BC64729C869AB4B0A99E389ECF(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CCreateOtherBallU3Ed__17_t516DA87B86E4CC4C7A7F321AC62E7FD3DAA28A62_CustomAttributesCacheGenerator_U3CCreateOtherBallU3Ed__17_System_Collections_IEnumerator_get_Current_mBBDC802424ED63570C68964F7E717C36748E28F5(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CShowC2IStepsU3Ed__31_tBB9B8E2E2A7AF602E3C3388372083E9A59D4E7FE_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CShowC2IStepsU3Ed__31_tBB9B8E2E2A7AF602E3C3388372083E9A59D4E7FE_CustomAttributesCacheGenerator_U3CShowC2IStepsU3Ed__31__ctor_mADFD45CD7416AED94E6AE930124368033E152FA3(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CShowC2IStepsU3Ed__31_tBB9B8E2E2A7AF602E3C3388372083E9A59D4E7FE_CustomAttributesCacheGenerator_U3CShowC2IStepsU3Ed__31_System_IDisposable_Dispose_m3AB8F0DA0311F0037A1BA4DD16E61D130C613BC4(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CShowC2IStepsU3Ed__31_tBB9B8E2E2A7AF602E3C3388372083E9A59D4E7FE_CustomAttributesCacheGenerator_U3CShowC2IStepsU3Ed__31_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mA0678FB28E426284A6F28E4584ACDCED7D6A173B(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CShowC2IStepsU3Ed__31_tBB9B8E2E2A7AF602E3C3388372083E9A59D4E7FE_CustomAttributesCacheGenerator_U3CShowC2IStepsU3Ed__31_System_Collections_IEnumerator_Reset_mE6EFF5022A55CD78691AB5DECE644AB4D2923D73(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CShowC2IStepsU3Ed__31_tBB9B8E2E2A7AF602E3C3388372083E9A59D4E7FE_CustomAttributesCacheGenerator_U3CShowC2IStepsU3Ed__31_System_Collections_IEnumerator_get_Current_m1934CB591312BB718353082A04112DE70C921699(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CShowNextButtonU3Ed__40_t516102B1BE512C9C1FC64C4A753A3CD018ED310B_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CShowNextButtonU3Ed__40_t516102B1BE512C9C1FC64C4A753A3CD018ED310B_CustomAttributesCacheGenerator_U3CShowNextButtonU3Ed__40__ctor_mA026A43B0A3875B9C500BB34ACC3F09CD3456E6E(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CShowNextButtonU3Ed__40_t516102B1BE512C9C1FC64C4A753A3CD018ED310B_CustomAttributesCacheGenerator_U3CShowNextButtonU3Ed__40_System_IDisposable_Dispose_m2D080288947FC9E35E481E218AE85A26621F10CA(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CShowNextButtonU3Ed__40_t516102B1BE512C9C1FC64C4A753A3CD018ED310B_CustomAttributesCacheGenerator_U3CShowNextButtonU3Ed__40_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mC6FFDA9BECAEB13E52ECCCB0165DB25D05668562(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CShowNextButtonU3Ed__40_t516102B1BE512C9C1FC64C4A753A3CD018ED310B_CustomAttributesCacheGenerator_U3CShowNextButtonU3Ed__40_System_Collections_IEnumerator_Reset_m13AFDAA21C843EB657369486FC0CE3E2F1FFB4E8(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CShowNextButtonU3Ed__40_t516102B1BE512C9C1FC64C4A753A3CD018ED310B_CustomAttributesCacheGenerator_U3CShowNextButtonU3Ed__40_System_Collections_IEnumerator_get_Current_mAD916CA29835774F7AD1CCC2BBF56919B30F39A5(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CPlayBGMusicU3Ed__42_tBE58739AEFC457668D1A21A551058495DE25D1CF_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CPlayBGMusicU3Ed__42_tBE58739AEFC457668D1A21A551058495DE25D1CF_CustomAttributesCacheGenerator_U3CPlayBGMusicU3Ed__42__ctor_mFFAB7A007F6B1D4C7F00345C83D12EB63692A76B(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CPlayBGMusicU3Ed__42_tBE58739AEFC457668D1A21A551058495DE25D1CF_CustomAttributesCacheGenerator_U3CPlayBGMusicU3Ed__42_System_IDisposable_Dispose_m1E94383466BB7DD7AD1397F79B3364CD64898D0D(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CPlayBGMusicU3Ed__42_tBE58739AEFC457668D1A21A551058495DE25D1CF_CustomAttributesCacheGenerator_U3CPlayBGMusicU3Ed__42_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m459C4D67126F62CDF85254D1E7DB37409FBB8FD8(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CPlayBGMusicU3Ed__42_tBE58739AEFC457668D1A21A551058495DE25D1CF_CustomAttributesCacheGenerator_U3CPlayBGMusicU3Ed__42_System_Collections_IEnumerator_Reset_m594A71E029ED124179454C0DB86172B14181DA03(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CPlayBGMusicU3Ed__42_tBE58739AEFC457668D1A21A551058495DE25D1CF_CustomAttributesCacheGenerator_U3CPlayBGMusicU3Ed__42_System_Collections_IEnumerator_get_Current_m2853A9C40BE6ECFF82174D82A3A26157ABE9DA05(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CPlayeVideoU3Ed__44_t219DED91B915A5A290882ADB49AE0BC747E81150_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CPlayeVideoU3Ed__44_t219DED91B915A5A290882ADB49AE0BC747E81150_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__44__ctor_m6241FFA8EA814DAA87E7DF5B513C06B51FEE0EC6(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CPlayeVideoU3Ed__44_t219DED91B915A5A290882ADB49AE0BC747E81150_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__44_System_IDisposable_Dispose_m6DCED196146A7ECBDB0F8F5923D6B2D30405552C(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CPlayeVideoU3Ed__44_t219DED91B915A5A290882ADB49AE0BC747E81150_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__44_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mA59D798B8123C517273F9FAAFCA98F8434D3BA8E(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CPlayeVideoU3Ed__44_t219DED91B915A5A290882ADB49AE0BC747E81150_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__44_System_Collections_IEnumerator_Reset_m58BD92794C1316DEC1C3CD7A47693CE50E87706F(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CPlayeVideoU3Ed__44_t219DED91B915A5A290882ADB49AE0BC747E81150_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__44_System_Collections_IEnumerator_get_Current_mFBD51D1025EE0C38647A2897D268CED881D0B477(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void TapMain_tDCEEC4415B79C4C821EC29F1412F73F4EF613676_CustomAttributesCacheGenerator_TapMain_LoadBGImg_m3E55E4700FD80843E9A4A2C95D75BDF010EA57B7(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CLoadBGImgU3Ed__33_t982A3BEA375E5453B90F14211863CFD8E6C470CD_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * tmp = (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 *)cache->attributes[0];
IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481(tmp, il2cpp_codegen_type_get_object(U3CLoadBGImgU3Ed__33_t982A3BEA375E5453B90F14211863CFD8E6C470CD_0_0_0_var), NULL);
}
}
static void TapMain_tDCEEC4415B79C4C821EC29F1412F73F4EF613676_CustomAttributesCacheGenerator_TapMain_LoadHandImg_m4037BFCC1369C924018EFC3967E86C4D0E39A214(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CLoadHandImgU3Ed__34_t2F162D891050AB1BF8AD4C1C0EF0B19F78425CB9_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * tmp = (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 *)cache->attributes[0];
IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481(tmp, il2cpp_codegen_type_get_object(U3CLoadHandImgU3Ed__34_t2F162D891050AB1BF8AD4C1C0EF0B19F78425CB9_0_0_0_var), NULL);
}
}
static void TapMain_tDCEEC4415B79C4C821EC29F1412F73F4EF613676_CustomAttributesCacheGenerator_TapMain_LoadBGMusic_m72E5021B793854713BB1D684604FDB6358395C4A(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CLoadBGMusicU3Ed__35_t99F47D987146B5073AE310874A86AA9BD645361F_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * tmp = (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 *)cache->attributes[0];
IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481(tmp, il2cpp_codegen_type_get_object(U3CLoadBGMusicU3Ed__35_t99F47D987146B5073AE310874A86AA9BD645361F_0_0_0_var), NULL);
}
}
static void TapMain_tDCEEC4415B79C4C821EC29F1412F73F4EF613676_CustomAttributesCacheGenerator_TapMain_LoadWaterVoice_mA5F4055F0EC0F6423872D693744EA00A889B426B(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CLoadWaterVoiceU3Ed__36_t170B26E90F422EEA63B00FA1513E77AE9DADC8FE_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * tmp = (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 *)cache->attributes[0];
IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481(tmp, il2cpp_codegen_type_get_object(U3CLoadWaterVoiceU3Ed__36_t170B26E90F422EEA63B00FA1513E77AE9DADC8FE_0_0_0_var), NULL);
}
}
static void U3CLoadBGImgU3Ed__33_t982A3BEA375E5453B90F14211863CFD8E6C470CD_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CLoadBGImgU3Ed__33_t982A3BEA375E5453B90F14211863CFD8E6C470CD_CustomAttributesCacheGenerator_U3CLoadBGImgU3Ed__33__ctor_mE4CAB8D19BD14110F9A934CB0945481E6C6B2D7F(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadBGImgU3Ed__33_t982A3BEA375E5453B90F14211863CFD8E6C470CD_CustomAttributesCacheGenerator_U3CLoadBGImgU3Ed__33_System_IDisposable_Dispose_mEE6AF869A519762FD8384DDBDC6631356B9BACBD(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadBGImgU3Ed__33_t982A3BEA375E5453B90F14211863CFD8E6C470CD_CustomAttributesCacheGenerator_U3CLoadBGImgU3Ed__33_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m978A2573D6F2792D3DE5651B7BC86E787E3AEB88(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadBGImgU3Ed__33_t982A3BEA375E5453B90F14211863CFD8E6C470CD_CustomAttributesCacheGenerator_U3CLoadBGImgU3Ed__33_System_Collections_IEnumerator_Reset_mEE21660F420354E9B959A5744EC2B9D71C1ECE02(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadBGImgU3Ed__33_t982A3BEA375E5453B90F14211863CFD8E6C470CD_CustomAttributesCacheGenerator_U3CLoadBGImgU3Ed__33_System_Collections_IEnumerator_get_Current_mCB8C118994469E1DF9122C7E3440D3C1DC9B037D(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadHandImgU3Ed__34_t2F162D891050AB1BF8AD4C1C0EF0B19F78425CB9_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CLoadHandImgU3Ed__34_t2F162D891050AB1BF8AD4C1C0EF0B19F78425CB9_CustomAttributesCacheGenerator_U3CLoadHandImgU3Ed__34__ctor_m284F5903F6865474766B738231269644772B4492(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadHandImgU3Ed__34_t2F162D891050AB1BF8AD4C1C0EF0B19F78425CB9_CustomAttributesCacheGenerator_U3CLoadHandImgU3Ed__34_System_IDisposable_Dispose_mD96E68E82E70B694EF47BA0DD697D8C5E89C4562(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadHandImgU3Ed__34_t2F162D891050AB1BF8AD4C1C0EF0B19F78425CB9_CustomAttributesCacheGenerator_U3CLoadHandImgU3Ed__34_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mC03C4C34A34176A17478769BA7A987EB6DA304B8(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadHandImgU3Ed__34_t2F162D891050AB1BF8AD4C1C0EF0B19F78425CB9_CustomAttributesCacheGenerator_U3CLoadHandImgU3Ed__34_System_Collections_IEnumerator_Reset_m7154D393D903F420C64396B067664B27C7076636(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadHandImgU3Ed__34_t2F162D891050AB1BF8AD4C1C0EF0B19F78425CB9_CustomAttributesCacheGenerator_U3CLoadHandImgU3Ed__34_System_Collections_IEnumerator_get_Current_m5A542E1560C820A53C3C6E0EB16A03473A15C2B9(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadBGMusicU3Ed__35_t99F47D987146B5073AE310874A86AA9BD645361F_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CLoadBGMusicU3Ed__35_t99F47D987146B5073AE310874A86AA9BD645361F_CustomAttributesCacheGenerator_U3CLoadBGMusicU3Ed__35__ctor_m2C54D16EBE642A389D206488813A32B2B82536F3(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadBGMusicU3Ed__35_t99F47D987146B5073AE310874A86AA9BD645361F_CustomAttributesCacheGenerator_U3CLoadBGMusicU3Ed__35_System_IDisposable_Dispose_mE82AE8DDD7A7C21DFFB9C4746FFBFEB799DD0B1C(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadBGMusicU3Ed__35_t99F47D987146B5073AE310874A86AA9BD645361F_CustomAttributesCacheGenerator_U3CLoadBGMusicU3Ed__35_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mECA539AAAB42CF8FF6693F16575AC9FD8B908DA9(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadBGMusicU3Ed__35_t99F47D987146B5073AE310874A86AA9BD645361F_CustomAttributesCacheGenerator_U3CLoadBGMusicU3Ed__35_System_Collections_IEnumerator_Reset_mFD7DC2768D22EBA11652F541C32DB05DE87765BB(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadBGMusicU3Ed__35_t99F47D987146B5073AE310874A86AA9BD645361F_CustomAttributesCacheGenerator_U3CLoadBGMusicU3Ed__35_System_Collections_IEnumerator_get_Current_m092E59D09825730BF1B850C560CFE6F287DBFD09(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadWaterVoiceU3Ed__36_t170B26E90F422EEA63B00FA1513E77AE9DADC8FE_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CLoadWaterVoiceU3Ed__36_t170B26E90F422EEA63B00FA1513E77AE9DADC8FE_CustomAttributesCacheGenerator_U3CLoadWaterVoiceU3Ed__36__ctor_mEEF01B7CC04967EFC052E36102B0C571C0B1469B(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadWaterVoiceU3Ed__36_t170B26E90F422EEA63B00FA1513E77AE9DADC8FE_CustomAttributesCacheGenerator_U3CLoadWaterVoiceU3Ed__36_System_IDisposable_Dispose_mB346C9E5E87BAEAE0D2BF66EF5A535947AF270A5(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadWaterVoiceU3Ed__36_t170B26E90F422EEA63B00FA1513E77AE9DADC8FE_CustomAttributesCacheGenerator_U3CLoadWaterVoiceU3Ed__36_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m5467229C67866C85D61CACEF9653FEBA828A12D1(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadWaterVoiceU3Ed__36_t170B26E90F422EEA63B00FA1513E77AE9DADC8FE_CustomAttributesCacheGenerator_U3CLoadWaterVoiceU3Ed__36_System_Collections_IEnumerator_Reset_m96DCC4F4900C905274A946F767E81812D3A3B253(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CLoadWaterVoiceU3Ed__36_t170B26E90F422EEA63B00FA1513E77AE9DADC8FE_CustomAttributesCacheGenerator_U3CLoadWaterVoiceU3Ed__36_System_Collections_IEnumerator_get_Current_mF935C7880B54A43B6F6F60ADF783EF9ADEA2325F(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void ball_tEB57FC5009B3ADDC173093C8187A87EF28BD1114_CustomAttributesCacheGenerator__downScale(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB * tmp = (HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB *)cache->attributes[1];
HeaderAttribute__ctor_m601319E0BCE8C44A9E79B2C0ABAAD0FEF46A9F1E(tmp, il2cpp_codegen_string_new_wrapper("\xE6\x8C\x89\xE4\xB8\x8B\xE6\x97\xB6\xE7\xBC\xA9\xE5\xB0\x8F\xE8\x87\xB3\xE5\xA4\x9A\xE5\xB0\x91\xEF\xBC\x9F"), NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[2];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
}
static void ball_tEB57FC5009B3ADDC173093C8187A87EF28BD1114_CustomAttributesCacheGenerator__downDuration(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB * tmp = (HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB *)cache->attributes[1];
HeaderAttribute__ctor_m601319E0BCE8C44A9E79B2C0ABAAD0FEF46A9F1E(tmp, il2cpp_codegen_string_new_wrapper("\xE7\xBC\xA9\xE6\x94\xBE\xE5\x8F\x98\xE5\x8C\x96\xE6\x8C\x81\xE7\xBB\xAD\xE6\x97\xB6\xE9\x97\xB4\xEF\xBC\x9A\xE6\x8C\x89\xE4\xB8\x8B\xE8\xBF\x87\xE7\xA8\x8B"), NULL);
}
}
static void ball_tEB57FC5009B3ADDC173093C8187A87EF28BD1114_CustomAttributesCacheGenerator__upDuration(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB * tmp = (HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB *)cache->attributes[1];
HeaderAttribute__ctor_m601319E0BCE8C44A9E79B2C0ABAAD0FEF46A9F1E(tmp, il2cpp_codegen_string_new_wrapper("\xE7\xBC\xA9\xE6\x94\xBE\xE5\x8F\x98\xE5\x8C\x96\xE6\x8C\x81\xE7\xBB\xAD\xE6\x97\xB6\xE9\x97\xB4\xEF\xBC\x9A\xE6\x8A\xAC\xE8\xB5\xB7\xE8\xBF\x87\xE7\xA8\x8B"), NULL);
}
}
static void ball_tEB57FC5009B3ADDC173093C8187A87EF28BD1114_CustomAttributesCacheGenerator_maxSpeed(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB * tmp = (HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB *)cache->attributes[1];
HeaderAttribute__ctor_m601319E0BCE8C44A9E79B2C0ABAAD0FEF46A9F1E(tmp, il2cpp_codegen_string_new_wrapper("\xE7\x90\x83\xE7\x9A\x84\xE8\xBF\x90\xE8\xA1\x8C\xE9\x80\x9F\xE5\xBA\xA6"), NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[2];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.100000001f, 2.0f, NULL);
}
}
static void ball_tEB57FC5009B3ADDC173093C8187A87EF28BD1114_CustomAttributesCacheGenerator_ball_ChangeScaleCoroutine_m67A43E9FD05AC03E0BECABED74D6BF256D97C69A(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CChangeScaleCoroutineU3Ed__26_t2918B9C18F293BA64B72C1D58415EA17C13CAA55_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * tmp = (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 *)cache->attributes[0];
IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481(tmp, il2cpp_codegen_type_get_object(U3CChangeScaleCoroutineU3Ed__26_t2918B9C18F293BA64B72C1D58415EA17C13CAA55_0_0_0_var), NULL);
}
}
static void U3CChangeScaleCoroutineU3Ed__26_t2918B9C18F293BA64B72C1D58415EA17C13CAA55_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CChangeScaleCoroutineU3Ed__26_t2918B9C18F293BA64B72C1D58415EA17C13CAA55_CustomAttributesCacheGenerator_U3CChangeScaleCoroutineU3Ed__26__ctor_mA5B2EE2AD2A2C1355ACDDDFD330E3363D1EE3BF0(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CChangeScaleCoroutineU3Ed__26_t2918B9C18F293BA64B72C1D58415EA17C13CAA55_CustomAttributesCacheGenerator_U3CChangeScaleCoroutineU3Ed__26_System_IDisposable_Dispose_m945FAA60469ABE8921383E4788078378CF9E36A2(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CChangeScaleCoroutineU3Ed__26_t2918B9C18F293BA64B72C1D58415EA17C13CAA55_CustomAttributesCacheGenerator_U3CChangeScaleCoroutineU3Ed__26_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mF2EDA4AAF984D725F56A843CD1F00B7D4081FD01(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CChangeScaleCoroutineU3Ed__26_t2918B9C18F293BA64B72C1D58415EA17C13CAA55_CustomAttributesCacheGenerator_U3CChangeScaleCoroutineU3Ed__26_System_Collections_IEnumerator_Reset_m51D919927A11D383732A22CFD697F51385479730(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CChangeScaleCoroutineU3Ed__26_t2918B9C18F293BA64B72C1D58415EA17C13CAA55_CustomAttributesCacheGenerator_U3CChangeScaleCoroutineU3Ed__26_System_Collections_IEnumerator_get_Current_m31FF959E7CB1D12AE6C7F60D125CE10C0C4156CB(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void home_t2BE8E23355A557A1B5636C553B3F4680B731C8E5_CustomAttributesCacheGenerator_home_PlayeVideo_m4FF24B571693BCD2068FC32B016001B377191577(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPlayeVideoU3Ed__2_tEE6CBE2062BB49044C2122342E90CF42036EEA0F_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * tmp = (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 *)cache->attributes[0];
IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481(tmp, il2cpp_codegen_type_get_object(U3CPlayeVideoU3Ed__2_tEE6CBE2062BB49044C2122342E90CF42036EEA0F_0_0_0_var), NULL);
}
}
static void U3CPlayeVideoU3Ed__2_tEE6CBE2062BB49044C2122342E90CF42036EEA0F_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CPlayeVideoU3Ed__2_tEE6CBE2062BB49044C2122342E90CF42036EEA0F_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__2__ctor_mF7CD5D463125C8B7DCA4CB30C881FA82056BC2F5(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CPlayeVideoU3Ed__2_tEE6CBE2062BB49044C2122342E90CF42036EEA0F_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__2_System_IDisposable_Dispose_m21784ADA87D257F293282D08B13A4F22DCD4102B(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CPlayeVideoU3Ed__2_tEE6CBE2062BB49044C2122342E90CF42036EEA0F_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__2_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mC7EAC91ADA0D28CB31DC7C920A126D2F7C5A84DF(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CPlayeVideoU3Ed__2_tEE6CBE2062BB49044C2122342E90CF42036EEA0F_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__2_System_Collections_IEnumerator_Reset_mD68EB6B3034DA7165CB979952F8DAC6CC263BDC9(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3CPlayeVideoU3Ed__2_tEE6CBE2062BB49044C2122342E90CF42036EEA0F_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__2_System_Collections_IEnumerator_get_Current_m0148BC27667220BE4EB52ADAC150682E157F4206(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void BaseMeshEffect_t1DB5F96E0EA29925AED90F6FF4B0D211DE807AE0_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
ExecuteInEditMode_tAA3B5DE8B7E207BC6CAAFDB1F2502350C0546173 * tmp = (ExecuteInEditMode_tAA3B5DE8B7E207BC6CAAFDB1F2502350C0546173 *)cache->attributes[0];
ExecuteInEditMode__ctor_m52849B67DB46F6CF090D45E523FAE97A10825C0A(tmp, NULL);
}
}
static void EffectAreaExtensions_t654EEBD5E991EA6E3AC56DDCC8A440C29B12A607_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
}
}
static void EffectAreaExtensions_t654EEBD5E991EA6E3AC56DDCC8A440C29B12A607_CustomAttributesCacheGenerator_EffectAreaExtensions_GetEffectArea_m371294DC2ACDA83539CECFC06C7A78DAA0DB77D7(CustomAttributesCache* cache)
{
{
ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
}
}
static void EffectAreaExtensions_t654EEBD5E991EA6E3AC56DDCC8A440C29B12A607_CustomAttributesCacheGenerator_EffectAreaExtensions_GetPositionFactor_m831CF9BF5F971A21DFE9A88AF36CDB11B3D2F15C(CustomAttributesCache* cache)
{
{
ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
}
}
static void EffectAreaExtensions_t654EEBD5E991EA6E3AC56DDCC8A440C29B12A607_CustomAttributesCacheGenerator_EffectAreaExtensions_GetNormalizedFactor_mA9A6865BD1DEB8E7F058FFEB4E70ED9F9C88AC36(CustomAttributesCache* cache)
{
{
ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC * tmp = (ExtensionAttribute_t917F3F92E717DC8B2D7BC03967A9790B1B8EF7CC *)cache->attributes[0];
ExtensionAttribute__ctor_mB331519C39C4210259A248A4C629DF934937C1FA(tmp, NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 * tmp = (AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 *)cache->attributes[0];
AddComponentMenu__ctor_m6405E10C6B6269CA2F0684BF0B356A7E6AB7BF56(tmp, il2cpp_codegen_string_new_wrapper("\x55\x49\x2F\x4D\x65\x73\x68\x45\x66\x66\x65\x63\x74\x46\x6F\x72\x54\x65\x78\x74\x4D\x65\x73\x68\x50\x72\x6F\x2F\x55\x49\x44\x69\x73\x73\x6F\x6C\x76\x65"), 3LL, NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_EffectFactor(CustomAttributesCache* cache)
{
{
FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * tmp = (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 *)cache->attributes[0];
FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D(tmp, il2cpp_codegen_string_new_wrapper("\x6D\x5F\x4C\x6F\x63\x61\x74\x69\x6F\x6E"), NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x43\x75\x72\x72\x65\x6E\x74\x20\x6C\x6F\x63\x61\x74\x69\x6F\x6E\x5B\x30\x2D\x31\x5D\x20\x66\x6F\x72\x20\x64\x69\x73\x73\x6F\x6C\x76\x65\x20\x65\x66\x66\x65\x63\x74\x2E\x20\x30\x20\x69\x73\x20\x6E\x6F\x74\x20\x64\x69\x73\x73\x6F\x6C\x76\x65\x64\x2C\x20\x31\x20\x69\x73\x20\x63\x6F\x6D\x70\x6C\x65\x74\x65\x6C\x79\x20\x64\x69\x73\x73\x6F\x6C\x76\x65\x64\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[2];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[3];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_Width(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x45\x64\x67\x65\x20\x77\x69\x64\x74\x68\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[2];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_Softness(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x45\x64\x67\x65\x20\x73\x6F\x66\x74\x6E\x65\x73\x73\x2E"), NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[1];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[2];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_Color(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x45\x64\x67\x65\x20\x63\x6F\x6C\x6F\x72\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
ColorUsageAttribute_tB57E6B0640DFA4A8838D1584BCAA03D9D4FDA662 * tmp = (ColorUsageAttribute_tB57E6B0640DFA4A8838D1584BCAA03D9D4FDA662 *)cache->attributes[2];
ColorUsageAttribute__ctor_mB764B17A7C17E6199BFC147BFFE72D34FD55D76E(tmp, false, NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_ColorMode(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x45\x64\x67\x65\x20\x63\x6F\x6C\x6F\x72\x20\x65\x66\x66\x65\x63\x74\x20\x6D\x6F\x64\x65\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_NoiseTexture(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x4E\x6F\x69\x73\x65\x20\x74\x65\x78\x74\x75\x72\x65\x20\x66\x6F\x72\x20\x64\x69\x73\x73\x6F\x6C\x76\x69\x6E\x67\x20\x28\x73\x69\x6E\x67\x6C\x65\x20\x63\x68\x61\x6E\x6E\x65\x6C\x20\x74\x65\x78\x74\x75\x72\x65\x29\x2E"), NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_EffectArea(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x54\x68\x65\x20\x61\x72\x65\x61\x20\x66\x6F\x72\x20\x65\x66\x66\x65\x63\x74\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_KeepAspectRatio(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x4B\x65\x65\x70\x20\x65\x66\x66\x65\x63\x74\x20\x61\x73\x70\x65\x63\x74\x20\x72\x61\x74\x69\x6F\x2E"), NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_Player(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB * tmp = (HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB *)cache->attributes[1];
HeaderAttribute__ctor_m601319E0BCE8C44A9E79B2C0ABAAD0FEF46A9F1E(tmp, il2cpp_codegen_string_new_wrapper("\x45\x66\x66\x65\x63\x74\x20\x50\x6C\x61\x79\x65\x72"), NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_Duration(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[1];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
{
HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * tmp = (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA *)cache->attributes[2];
HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9(tmp, NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[3];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.100000001f, 10.0f, NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_UpdateMode(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * tmp = (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA *)cache->attributes[1];
HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9(tmp, NULL);
}
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[2];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_UIDissolve_U3CModifyMaterialU3Eb__58_0_m6864694301E797DB4BD4F9835D5B3BB2585EF980(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_UIDissolve_U3COnEnableU3Eb__63_0_mA4D4860F75AC9861C810854ECB07D266E3A37196(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093____location_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x55\x73\x65\x20\x65\x66\x66\x65\x63\x74\x46\x61\x63\x74\x6F\x72\x20\x69\x6E\x73\x74\x65\x61\x64\x20\x28\x55\x6E\x69\x74\x79\x55\x70\x67\x72\x61\x64\x61\x62\x6C\x65\x29\x20\x2D\x3E\x20\x65\x66\x66\x65\x63\x74\x46\x61\x63\x74\x6F\x72"), NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093____play_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x55\x73\x65\x20\x50\x6C\x61\x79\x2F\x53\x74\x6F\x70\x20\x6D\x65\x74\x68\x6F\x64\x20\x69\x6E\x73\x74\x65\x61\x64"), NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093____loop_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
}
static void UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093____loopDelay_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
}
static void UIFlip_tAD23B8D13CED5429240384203771FAEAA2A7E6D8_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
DisallowMultipleComponent_tDB3D3DBC9AC523A0BD11DA0B7D88F960FDB89E3E * tmp = (DisallowMultipleComponent_tDB3D3DBC9AC523A0BD11DA0B7D88F960FDB89E3E *)cache->attributes[0];
DisallowMultipleComponent__ctor_mDCA4B0F84AB4B3E17D216DB29318032547AB7F0D(tmp, NULL);
}
{
AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 * tmp = (AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 *)cache->attributes[1];
AddComponentMenu__ctor_m6405E10C6B6269CA2F0684BF0B356A7E6AB7BF56(tmp, il2cpp_codegen_string_new_wrapper("\x55\x49\x2F\x4D\x65\x73\x68\x45\x66\x66\x65\x63\x74\x46\x6F\x72\x54\x65\x78\x74\x4D\x65\x73\x68\x50\x72\x6F\x2F\x55\x49\x46\x6C\x69\x70"), 102LL, NULL);
}
}
static void UIFlip_tAD23B8D13CED5429240384203771FAEAA2A7E6D8_CustomAttributesCacheGenerator_m_Horizontal(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x46\x6C\x69\x70\x20\x68\x6F\x72\x69\x7A\x6F\x6E\x74\x61\x6C\x6C\x79\x2E"), NULL);
}
}
static void UIFlip_tAD23B8D13CED5429240384203771FAEAA2A7E6D8_CustomAttributesCacheGenerator_m_Veritical(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x46\x6C\x69\x70\x20\x76\x65\x72\x74\x69\x63\x61\x6C\x6C\x79\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
DisallowMultipleComponent_tDB3D3DBC9AC523A0BD11DA0B7D88F960FDB89E3E * tmp = (DisallowMultipleComponent_tDB3D3DBC9AC523A0BD11DA0B7D88F960FDB89E3E *)cache->attributes[0];
DisallowMultipleComponent__ctor_mDCA4B0F84AB4B3E17D216DB29318032547AB7F0D(tmp, NULL);
}
{
AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 * tmp = (AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 *)cache->attributes[1];
AddComponentMenu__ctor_m6405E10C6B6269CA2F0684BF0B356A7E6AB7BF56(tmp, il2cpp_codegen_string_new_wrapper("\x55\x49\x2F\x4D\x65\x73\x68\x45\x66\x66\x65\x63\x74\x46\x6F\x72\x54\x65\x78\x74\x4D\x65\x73\x68\x50\x72\x6F\x2F\x55\x49\x47\x72\x61\x64\x69\x65\x6E\x74"), 101LL, NULL);
}
}
static void UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_Direction(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x47\x72\x61\x64\x69\x65\x6E\x74\x20\x44\x69\x72\x65\x63\x74\x69\x6F\x6E\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_Color1(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x43\x6F\x6C\x6F\x72\x31\x3A\x20\x54\x6F\x70\x20\x6F\x72\x20\x4C\x65\x66\x74\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_Color2(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x43\x6F\x6C\x6F\x72\x32\x3A\x20\x42\x6F\x74\x74\x6F\x6D\x20\x6F\x72\x20\x52\x69\x67\x68\x74\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_Color3(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x43\x6F\x6C\x6F\x72\x33\x3A\x20\x46\x6F\x72\x20\x64\x69\x61\x67\x6F\x6E\x61\x6C\x2E"), NULL);
}
}
static void UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_Color4(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x43\x6F\x6C\x6F\x72\x34\x3A\x20\x46\x6F\x72\x20\x64\x69\x61\x67\x6F\x6E\x61\x6C\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_Rotation(CustomAttributesCache* cache)
{
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[0];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, -180.0f, 180.0f, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[2];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x47\x72\x61\x64\x69\x65\x6E\x74\x20\x72\x6F\x74\x61\x74\x69\x6F\x6E\x2E"), NULL);
}
}
static void UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_Offset1(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x47\x72\x61\x64\x69\x65\x6E\x74\x20\x6F\x66\x66\x73\x65\x74\x20\x66\x6F\x72\x20\x48\x6F\x72\x69\x7A\x6F\x6E\x74\x61\x6C\x2C\x20\x56\x65\x72\x74\x69\x63\x61\x6C\x20\x6F\x72\x20\x41\x6E\x67\x6C\x65\x2E"), NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[2];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, -1.0f, 1.0f, NULL);
}
}
static void UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_Offset2(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x47\x72\x61\x64\x69\x65\x6E\x74\x20\x6F\x66\x66\x73\x65\x74\x20\x66\x6F\x72\x20\x44\x69\x61\x67\x6F\x6E\x61\x6C\x2E"), NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[2];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, -1.0f, 1.0f, NULL);
}
}
static void UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_GradientStyle(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x47\x72\x61\x64\x69\x65\x6E\x74\x20\x73\x74\x79\x6C\x65\x20\x66\x6F\x72\x20\x54\x65\x78\x74\x2E"), NULL);
}
}
static void UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_ColorSpace(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x43\x6F\x6C\x6F\x72\x20\x73\x70\x61\x63\x65\x20\x74\x6F\x20\x63\x6F\x72\x72\x65\x63\x74\x20\x63\x6F\x6C\x6F\x72\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_IgnoreAspectRatio(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x49\x67\x6E\x6F\x72\x65\x20\x61\x73\x70\x65\x63\x74\x20\x72\x61\x74\x69\x6F\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 * tmp = (AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 *)cache->attributes[0];
AddComponentMenu__ctor_m6405E10C6B6269CA2F0684BF0B356A7E6AB7BF56(tmp, il2cpp_codegen_string_new_wrapper("\x55\x49\x2F\x4D\x65\x73\x68\x45\x66\x66\x65\x63\x74\x46\x6F\x72\x54\x65\x78\x74\x4D\x65\x73\x68\x50\x72\x6F\x2F\x55\x49\x53\x68\x61\x64\x6F\x77"), 100LL, NULL);
}
}
static void UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB_CustomAttributesCacheGenerator_m_BlurFactor(CustomAttributesCache* cache)
{
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[0];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x48\x6F\x77\x20\x66\x61\x72\x20\x69\x73\x20\x74\x68\x65\x20\x62\x6C\x75\x72\x72\x69\x6E\x67\x20\x73\x68\x61\x64\x6F\x77\x20\x66\x72\x6F\x6D\x20\x74\x68\x65\x20\x67\x72\x61\x70\x68\x69\x63\x2E"), NULL);
}
{
FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * tmp = (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 *)cache->attributes[2];
FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D(tmp, il2cpp_codegen_string_new_wrapper("\x6D\x5F\x42\x6C\x75\x72"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[3];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB_CustomAttributesCacheGenerator_m_Style(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x53\x68\x61\x64\x6F\x77\x20\x65\x66\x66\x65\x63\x74\x20\x73\x74\x79\x6C\x65\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB_CustomAttributesCacheGenerator_m_AdditionalShadows(CustomAttributesCache* cache)
{
{
HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * tmp = (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA *)cache->attributes[0];
HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9(tmp, NULL);
}
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[1];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[2];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB_CustomAttributesCacheGenerator_m_EffectColor(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB_CustomAttributesCacheGenerator_m_EffectDistance(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB_CustomAttributesCacheGenerator_m_UseGraphicAlpha(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB_CustomAttributesCacheGenerator_UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB____blur_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x55\x73\x65\x20\x62\x6C\x75\x72\x46\x61\x63\x74\x6F\x72\x20\x69\x6E\x73\x74\x65\x61\x64\x20\x28\x55\x6E\x69\x74\x79\x55\x70\x67\x72\x61\x64\x61\x62\x6C\x65\x29\x20\x2D\x3E\x20\x62\x6C\x75\x72\x46\x61\x63\x74\x6F\x72"), NULL);
}
}
static void AdditionalShadow_tF8A021C14C442A027AF6A642B1DC2F21DD94874C_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
}
static void AdditionalShadow_tF8A021C14C442A027AF6A642B1DC2F21DD94874C_CustomAttributesCacheGenerator_blur(CustomAttributesCache* cache)
{
{
FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * tmp = (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 *)cache->attributes[0];
FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D(tmp, il2cpp_codegen_string_new_wrapper("\x73\x68\x61\x64\x6F\x77\x42\x6C\x75\x72"), NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[1];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
}
static void AdditionalShadow_tF8A021C14C442A027AF6A642B1DC2F21DD94874C_CustomAttributesCacheGenerator_style(CustomAttributesCache* cache)
{
{
FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * tmp = (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 *)cache->attributes[0];
FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D(tmp, il2cpp_codegen_string_new_wrapper("\x73\x68\x61\x64\x6F\x77\x4D\x6F\x64\x65"), NULL);
}
}
static void AdditionalShadow_tF8A021C14C442A027AF6A642B1DC2F21DD94874C_CustomAttributesCacheGenerator_effectColor(CustomAttributesCache* cache)
{
{
FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * tmp = (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 *)cache->attributes[0];
FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D(tmp, il2cpp_codegen_string_new_wrapper("\x73\x68\x61\x64\x6F\x77\x43\x6F\x6C\x6F\x72"), NULL);
}
}
static void UIEffect_Demo_t36DF9C201C6DBE023ED78C81828CB21B21BC3496_CustomAttributesCacheGenerator_mask(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIEffect_Demo_Dialog_tC3D6845BD01EFF65755495A55E9C715D00D47B4B_CustomAttributesCacheGenerator_m_Animator(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void EffectPlayer_t2899D48A3E8C30E7ED42DD9530059A345D753954_CustomAttributesCacheGenerator_play(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x50\x6C\x61\x79\x69\x6E\x67\x2E"), NULL);
}
}
static void EffectPlayer_t2899D48A3E8C30E7ED42DD9530059A345D753954_CustomAttributesCacheGenerator_loop(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x4C\x6F\x6F\x70\x2E"), NULL);
}
}
static void EffectPlayer_t2899D48A3E8C30E7ED42DD9530059A345D753954_CustomAttributesCacheGenerator_duration(CustomAttributesCache* cache)
{
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[0];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.00999999978f, 10.0f, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x44\x75\x72\x61\x74\x69\x6F\x6E\x2E"), NULL);
}
}
static void EffectPlayer_t2899D48A3E8C30E7ED42DD9530059A345D753954_CustomAttributesCacheGenerator_loopDelay(CustomAttributesCache* cache)
{
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[0];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 10.0f, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x44\x65\x6C\x61\x79\x20\x62\x65\x66\x6F\x72\x65\x20\x6C\x6F\x6F\x70\x69\x6E\x67\x2E"), NULL);
}
}
static void EffectPlayer_t2899D48A3E8C30E7ED42DD9530059A345D753954_CustomAttributesCacheGenerator_updateMode(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x55\x70\x64\x61\x74\x65\x20\x6D\x6F\x64\x65"), NULL);
}
}
static void U3CU3Ec_tE62DA9B00341026F724866962781DC210A2F0939_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_U3ChashU3Ek__BackingField(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_U3CreferenceCountU3Ek__BackingField(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_U3CtextureU3Ek__BackingField(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_U3CmaterialU3Ek__BackingField(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_MaterialCache_get_hash_mD92E728565BAA2C757C45BAEB9B5A53044C11F16(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_MaterialCache_set_hash_m19D8B76BDB8CF8117C36379AC5A87D03A8F7414E(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_MaterialCache_get_referenceCount_mFFC60265A780357A53D114060C1C9F6268904AA2(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_MaterialCache_set_referenceCount_m799869580E45947378B864AEF12030F1B62198CD(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_MaterialCache_get_texture_m38D7333C5AA19BD411218E4B9ED24D7D8319A23A(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_MaterialCache_set_texture_mD8F89CBF22D336FE0D73ED82761BF936C496A26A(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_MaterialCache_get_material_mE52065D05EC959AE5507157DF6CBFF399074970B(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_MaterialCache_set_material_m458C1609B53FC57460A9A0A82F089A1047EFE469(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CU3Ec__DisplayClass17_0_t2025FAA11423751822F2CD4FE9BBF914DC46A862_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CU3Ec__DisplayClass18_0_t8F51FFD0781F24C482EE321D69F10FECD2B899BB_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3CU3Ec_tA976FF57D5D65EAD73BDFBA0D88CCA4EDAF8CD43_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void UIEffectBase_tB335EAAB6DD5927928D8A120DDF2C9F4F5D2FC9E_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
DisallowMultipleComponent_tDB3D3DBC9AC523A0BD11DA0B7D88F960FDB89E3E * tmp = (DisallowMultipleComponent_tDB3D3DBC9AC523A0BD11DA0B7D88F960FDB89E3E *)cache->attributes[0];
DisallowMultipleComponent__ctor_mDCA4B0F84AB4B3E17D216DB29318032547AB7F0D(tmp, NULL);
}
}
static void UIEffectBase_tB335EAAB6DD5927928D8A120DDF2C9F4F5D2FC9E_CustomAttributesCacheGenerator_m_Version(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * tmp = (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA *)cache->attributes[1];
HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9(tmp, NULL);
}
}
static void UIEffectBase_tB335EAAB6DD5927928D8A120DDF2C9F4F5D2FC9E_CustomAttributesCacheGenerator_m_EffectMaterial(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIEffectBase_tB335EAAB6DD5927928D8A120DDF2C9F4F5D2FC9E_CustomAttributesCacheGenerator_U3CparameterIndexU3Ek__BackingField(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void UIEffectBase_tB335EAAB6DD5927928D8A120DDF2C9F4F5D2FC9E_CustomAttributesCacheGenerator_UIEffectBase_get_parameterIndex_m8F022489733BD2467094370D48C8A00DB9AEBEB2(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void UIEffectBase_tB335EAAB6DD5927928D8A120DDF2C9F4F5D2FC9E_CustomAttributesCacheGenerator_UIEffectBase_set_parameterIndex_mB39B240356EB1E93317B8977FE32B3B17F737587(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 * tmp = (AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 *)cache->attributes[0];
AddComponentMenu__ctor_m6405E10C6B6269CA2F0684BF0B356A7E6AB7BF56(tmp, il2cpp_codegen_string_new_wrapper("\x55\x49\x2F\x55\x49\x45\x66\x66\x65\x63\x74\x2F\x55\x49\x45\x66\x66\x65\x63\x74"), 1LL, NULL);
}
{
DisallowMultipleComponent_tDB3D3DBC9AC523A0BD11DA0B7D88F960FDB89E3E * tmp = (DisallowMultipleComponent_tDB3D3DBC9AC523A0BD11DA0B7D88F960FDB89E3E *)cache->attributes[1];
DisallowMultipleComponent__ctor_mDCA4B0F84AB4B3E17D216DB29318032547AB7F0D(tmp, NULL);
}
{
RequireComponent_tEDA546F9722B8874DA9658BDAB821BA49647FC91 * tmp = (RequireComponent_tEDA546F9722B8874DA9658BDAB821BA49647FC91 *)cache->attributes[2];
RequireComponent__ctor_m5EC89D3D22D7D880E1B88A5C9FADF1FBDC713EE4(tmp, il2cpp_codegen_type_get_object(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_0_0_0_var), NULL);
}
{
ExecuteInEditMode_tAA3B5DE8B7E207BC6CAAFDB1F2502350C0546173 * tmp = (ExecuteInEditMode_tAA3B5DE8B7E207BC6CAAFDB1F2502350C0546173 *)cache->attributes[3];
ExecuteInEditMode__ctor_m52849B67DB46F6CF090D45E523FAE97A10825C0A(tmp, NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_EffectFactor(CustomAttributesCache* cache)
{
{
FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * tmp = (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 *)cache->attributes[0];
FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D(tmp, il2cpp_codegen_string_new_wrapper("\x6D\x5F\x54\x6F\x6E\x65\x4C\x65\x76\x65\x6C"), NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x45\x66\x66\x65\x63\x74\x20\x66\x61\x63\x74\x6F\x72\x20\x62\x65\x74\x77\x65\x65\x6E\x20\x30\x28\x6E\x6F\x20\x65\x66\x66\x65\x63\x74\x29\x20\x61\x6E\x64\x20\x31\x28\x63\x6F\x6D\x70\x6C\x65\x74\x65\x20\x65\x66\x66\x65\x63\x74\x29\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[2];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[3];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_ColorFactor(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x43\x6F\x6C\x6F\x72\x20\x65\x66\x66\x65\x63\x74\x20\x66\x61\x63\x74\x6F\x72\x20\x62\x65\x74\x77\x65\x65\x6E\x20\x30\x28\x6E\x6F\x20\x65\x66\x66\x65\x63\x74\x29\x20\x61\x6E\x64\x20\x31\x28\x63\x6F\x6D\x70\x6C\x65\x74\x65\x20\x65\x66\x66\x65\x63\x74\x29\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[2];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_BlurFactor(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[1];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[2];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x48\x6F\x77\x20\x66\x61\x72\x20\x69\x73\x20\x74\x68\x65\x20\x62\x6C\x75\x72\x72\x69\x6E\x67\x20\x66\x72\x6F\x6D\x20\x74\x68\x65\x20\x67\x72\x61\x70\x68\x69\x63\x2E"), NULL);
}
{
FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * tmp = (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 *)cache->attributes[3];
FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D(tmp, il2cpp_codegen_string_new_wrapper("\x6D\x5F\x42\x6C\x75\x72"), NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_EffectMode(CustomAttributesCache* cache)
{
{
FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * tmp = (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 *)cache->attributes[0];
FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D(tmp, il2cpp_codegen_string_new_wrapper("\x6D\x5F\x54\x6F\x6E\x65\x4D\x6F\x64\x65"), NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x45\x66\x66\x65\x63\x74\x20\x6D\x6F\x64\x65"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[2];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_ColorMode(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x43\x6F\x6C\x6F\x72\x20\x65\x66\x66\x65\x63\x74\x20\x6D\x6F\x64\x65"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_BlurMode(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x42\x6C\x75\x72\x20\x65\x66\x66\x65\x63\x74\x20\x6D\x6F\x64\x65"), NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_AdvancedBlur(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x41\x64\x76\x61\x6E\x63\x65\x64\x20\x62\x6C\x75\x72\x72\x69\x6E\x67\x20\x72\x65\x6D\x6F\x76\x65\x20\x63\x6F\x6D\x6D\x6F\x6E\x20\x61\x72\x74\x69\x66\x61\x63\x74\x73\x20\x69\x6E\x20\x74\x68\x65\x20\x62\x6C\x75\x72\x20\x65\x66\x66\x65\x63\x74\x20\x66\x6F\x72\x20\x75\x47\x55\x49\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_ShadowBlur(CustomAttributesCache* cache)
{
{
HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * tmp = (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA *)cache->attributes[0];
HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9(tmp, NULL);
}
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[1];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[2];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[3];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_ShadowStyle(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
{
HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * tmp = (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA *)cache->attributes[1];
HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9(tmp, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[2];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_ShadowColor(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
{
HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * tmp = (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA *)cache->attributes[1];
HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9(tmp, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[2];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_EffectDistance(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * tmp = (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA *)cache->attributes[1];
HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9(tmp, NULL);
}
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[2];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_UseGraphicAlpha(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * tmp = (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA *)cache->attributes[1];
HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9(tmp, NULL);
}
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[2];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_EffectColor(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * tmp = (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA *)cache->attributes[1];
HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9(tmp, NULL);
}
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[2];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_AdditionalShadows(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * tmp = (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA *)cache->attributes[1];
HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9(tmp, NULL);
}
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[2];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B____toneLevel_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x55\x73\x65\x20\x65\x66\x66\x65\x63\x74\x46\x61\x63\x74\x6F\x72\x20\x69\x6E\x73\x74\x65\x61\x64\x20\x28\x55\x6E\x69\x74\x79\x55\x70\x67\x72\x61\x64\x61\x62\x6C\x65\x29\x20\x2D\x3E\x20\x65\x66\x66\x65\x63\x74\x46\x61\x63\x74\x6F\x72"), NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B____blur_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x55\x73\x65\x20\x62\x6C\x75\x72\x46\x61\x63\x74\x6F\x72\x20\x69\x6E\x73\x74\x65\x61\x64\x20\x28\x55\x6E\x69\x74\x79\x55\x70\x67\x72\x61\x64\x61\x62\x6C\x65\x29\x20\x2D\x3E\x20\x62\x6C\x75\x72\x46\x61\x63\x74\x6F\x72"), NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B____blurFactor_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x55\x73\x65\x20\x65\x66\x66\x65\x63\x74\x46\x61\x63\x74\x6F\x72\x20\x69\x6E\x73\x74\x65\x61\x64\x20\x28\x55\x6E\x69\x74\x79\x55\x70\x67\x72\x61\x64\x61\x62\x6C\x65\x29\x20\x2D\x3E\x20\x65\x66\x66\x65\x63\x74\x46\x61\x63\x74\x6F\x72"), NULL);
}
}
static void UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B____toneMode_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x55\x73\x65\x20\x65\x66\x66\x65\x63\x74\x4D\x6F\x64\x65\x20\x69\x6E\x73\x74\x65\x61\x64\x20\x28\x55\x6E\x69\x74\x79\x55\x70\x67\x72\x61\x64\x61\x62\x6C\x65\x29\x20\x2D\x3E\x20\x65\x66\x66\x65\x63\x74\x4D\x6F\x64\x65"), NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 * tmp = (AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 *)cache->attributes[0];
AddComponentMenu__ctor_m6405E10C6B6269CA2F0684BF0B356A7E6AB7BF56(tmp, il2cpp_codegen_string_new_wrapper("\x55\x49\x2F\x55\x49\x45\x66\x66\x65\x63\x74\x2F\x55\x49\x45\x66\x66\x65\x63\x74\x43\x61\x70\x74\x75\x72\x65\x64\x49\x6D\x61\x67\x65"), 200LL, NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_EffectFactor(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x45\x66\x66\x65\x63\x74\x20\x66\x61\x63\x74\x6F\x72\x20\x62\x65\x74\x77\x65\x65\x6E\x20\x30\x28\x6E\x6F\x20\x65\x66\x66\x65\x63\x74\x29\x20\x61\x6E\x64\x20\x31\x28\x63\x6F\x6D\x70\x6C\x65\x74\x65\x20\x65\x66\x66\x65\x63\x74\x29\x2E"), NULL);
}
{
FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * tmp = (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 *)cache->attributes[1];
FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D(tmp, il2cpp_codegen_string_new_wrapper("\x6D\x5F\x54\x6F\x6E\x65\x4C\x65\x76\x65\x6C"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[2];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[3];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_ColorFactor(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x43\x6F\x6C\x6F\x72\x20\x65\x66\x66\x65\x63\x74\x20\x66\x61\x63\x74\x6F\x72\x20\x62\x65\x74\x77\x65\x65\x6E\x20\x30\x28\x6E\x6F\x20\x65\x66\x66\x65\x63\x74\x29\x20\x61\x6E\x64\x20\x31\x28\x63\x6F\x6D\x70\x6C\x65\x74\x65\x20\x65\x66\x66\x65\x63\x74\x29\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[2];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_BlurFactor(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x48\x6F\x77\x20\x66\x61\x72\x20\x69\x73\x20\x74\x68\x65\x20\x62\x6C\x75\x72\x72\x69\x6E\x67\x20\x66\x72\x6F\x6D\x20\x74\x68\x65\x20\x67\x72\x61\x70\x68\x69\x63\x2E"), NULL);
}
{
FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * tmp = (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 *)cache->attributes[2];
FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D(tmp, il2cpp_codegen_string_new_wrapper("\x6D\x5F\x42\x6C\x75\x72"), NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[3];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_EffectMode(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x45\x66\x66\x65\x63\x74\x20\x6D\x6F\x64\x65\x2E"), NULL);
}
{
FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * tmp = (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 *)cache->attributes[1];
FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D(tmp, il2cpp_codegen_string_new_wrapper("\x6D\x5F\x54\x6F\x6E\x65\x4D\x6F\x64\x65"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[2];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_ColorMode(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x43\x6F\x6C\x6F\x72\x20\x65\x66\x66\x65\x63\x74\x20\x6D\x6F\x64\x65\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_BlurMode(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x42\x6C\x75\x72\x20\x65\x66\x66\x65\x63\x74\x20\x6D\x6F\x64\x65\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_EffectColor(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x43\x6F\x6C\x6F\x72\x20\x66\x6F\x72\x20\x74\x68\x65\x20\x63\x6F\x6C\x6F\x72\x20\x65\x66\x66\x65\x63\x74\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_DesamplingRate(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x44\x65\x73\x61\x6D\x70\x6C\x69\x6E\x67\x20\x72\x61\x74\x65\x20\x6F\x66\x20\x74\x68\x65\x20\x67\x65\x6E\x65\x72\x61\x74\x65\x64\x20\x52\x65\x6E\x64\x65\x72\x54\x65\x78\x74\x75\x72\x65\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_ReductionRate(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x44\x65\x73\x61\x6D\x70\x6C\x69\x6E\x67\x20\x72\x61\x74\x65\x20\x6F\x66\x20\x72\x65\x64\x75\x63\x74\x69\x6F\x6E\x20\x62\x75\x66\x66\x65\x72\x20\x74\x6F\x20\x61\x70\x70\x6C\x79\x20\x65\x66\x66\x65\x63\x74\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_FilterMode(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x46\x69\x6C\x74\x65\x72\x4D\x6F\x64\x65\x20\x66\x6F\x72\x20\x63\x61\x70\x74\x75\x72\x69\x6E\x67\x2E"), NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_EffectMaterial(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x45\x66\x66\x65\x63\x74\x20\x6D\x61\x74\x65\x72\x69\x61\x6C\x2E"), NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_BlurIterations(CustomAttributesCache* cache)
{
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[0];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 1.0f, 8.0f, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x42\x6C\x75\x72\x20\x69\x74\x65\x72\x61\x74\x69\x6F\x6E\x73\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[2];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * tmp = (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 *)cache->attributes[3];
FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D(tmp, il2cpp_codegen_string_new_wrapper("\x6D\x5F\x49\x74\x65\x72\x61\x74\x69\x6F\x6E\x73"), NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_FitToScreen(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x46\x69\x74\x73\x20\x67\x72\x61\x70\x68\x69\x63\x20\x73\x69\x7A\x65\x20\x74\x6F\x20\x73\x63\x72\x65\x65\x6E\x20\x6F\x6E\x20\x63\x61\x70\x74\x75\x72\x65\x64\x2E"), NULL);
}
{
FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * tmp = (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 *)cache->attributes[1];
FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D(tmp, il2cpp_codegen_string_new_wrapper("\x6D\x5F\x4B\x65\x65\x70\x43\x61\x6E\x76\x61\x73\x53\x69\x7A\x65"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[2];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_CaptureOnEnable(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x43\x61\x70\x74\x75\x72\x65\x20\x61\x75\x74\x6F\x6D\x61\x74\x69\x63\x61\x6C\x6C\x79\x20\x6F\x6E\x20\x65\x6E\x61\x62\x6C\x65\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_ImmediateCapturing(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x43\x61\x70\x74\x75\x72\x65\x20\x69\x6D\x6D\x65\x64\x69\x61\x74\x65\x6C\x79\x2E"), NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_UIEffectCapturedImage__SetDirty_m0C3177FBFE668AE5341DA94135B369262A4EFC8B(CustomAttributesCache* cache)
{
{
ConditionalAttribute_t5DD558ED67ECF65952A82B94A75C6E8E121B2D8C * tmp = (ConditionalAttribute_t5DD558ED67ECF65952A82B94A75C6E8E121B2D8C *)cache->attributes[0];
ConditionalAttribute__ctor_m43C71F47F8ED8FDF9A11FB20E8916C3737DD66AF(tmp, il2cpp_codegen_string_new_wrapper("\x55\x4E\x49\x54\x59\x5F\x45\x44\x49\x54\x4F\x52"), NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_UIEffectCapturedImage__CoUpdateTextureOnNextFrame_mFAF6964F01A897759D2537440EA12A91616BA76E(CustomAttributesCache* cache)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3C_CoUpdateTextureOnNextFrameU3Ed__95_t9C8D68935D7F427151455D75EABE42DB3D053931_0_0_0_var);
s_Il2CppMethodInitialized = true;
}
{
IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 * tmp = (IteratorStateMachineAttribute_t6C72F3EC15FB34D08D47727AA7A86AB7FEA27830 *)cache->attributes[0];
IteratorStateMachineAttribute__ctor_m019CD62C4E5301F55EDF4723107B608AE8F12481(tmp, il2cpp_codegen_type_get_object(U3C_CoUpdateTextureOnNextFrameU3Ed__95_t9C8D68935D7F427151455D75EABE42DB3D053931_0_0_0_var), NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489____toneLevel_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x55\x73\x65\x20\x65\x66\x66\x65\x63\x74\x46\x61\x63\x74\x6F\x72\x20\x69\x6E\x73\x74\x65\x61\x64\x20\x28\x55\x6E\x69\x74\x79\x55\x70\x67\x72\x61\x64\x61\x62\x6C\x65\x29\x20\x2D\x3E\x20\x65\x66\x66\x65\x63\x74\x46\x61\x63\x74\x6F\x72"), NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489____blur_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x55\x73\x65\x20\x62\x6C\x75\x72\x46\x61\x63\x74\x6F\x72\x20\x69\x6E\x73\x74\x65\x61\x64\x20\x28\x55\x6E\x69\x74\x79\x55\x70\x67\x72\x61\x64\x61\x62\x6C\x65\x29\x20\x2D\x3E\x20\x62\x6C\x75\x72\x46\x61\x63\x74\x6F\x72"), NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489____toneMode_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x55\x73\x65\x20\x65\x66\x66\x65\x63\x74\x4D\x6F\x64\x65\x20\x69\x6E\x73\x74\x65\x61\x64\x20\x28\x55\x6E\x69\x74\x79\x55\x70\x67\x72\x61\x64\x61\x62\x6C\x65\x29\x20\x2D\x3E\x20\x65\x66\x66\x65\x63\x74\x4D\x6F\x64\x65"), NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489____iterations_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x55\x73\x65\x20\x62\x6C\x75\x72\x49\x74\x65\x72\x61\x74\x69\x6F\x6E\x73\x20\x69\x6E\x73\x74\x65\x61\x64\x20\x28\x55\x6E\x69\x74\x79\x55\x70\x67\x72\x61\x64\x61\x62\x6C\x65\x29\x20\x2D\x3E\x20\x62\x6C\x75\x72\x49\x74\x65\x72\x61\x74\x69\x6F\x6E\x73"), NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489____keepCanvasSize_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x55\x73\x65\x20\x66\x69\x74\x54\x6F\x53\x63\x72\x65\x65\x6E\x20\x69\x6E\x73\x74\x65\x61\x64\x20\x28\x55\x6E\x69\x74\x79\x55\x70\x67\x72\x61\x64\x61\x62\x6C\x65\x29\x20\x2D\x3E\x20\x66\x69\x74\x54\x6F\x53\x63\x72\x65\x65\x6E"), NULL);
}
}
static void UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489____targetTexture_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
}
static void U3C_CoUpdateTextureOnNextFrameU3Ed__95_t9C8D68935D7F427151455D75EABE42DB3D053931_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void U3C_CoUpdateTextureOnNextFrameU3Ed__95_t9C8D68935D7F427151455D75EABE42DB3D053931_CustomAttributesCacheGenerator_U3C_CoUpdateTextureOnNextFrameU3Ed__95__ctor_mEDD4296EEEF82197E55370E67FB0ADE8CA11FC49(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3C_CoUpdateTextureOnNextFrameU3Ed__95_t9C8D68935D7F427151455D75EABE42DB3D053931_CustomAttributesCacheGenerator_U3C_CoUpdateTextureOnNextFrameU3Ed__95_System_IDisposable_Dispose_mF2407985FE5C45C0EFD75A5F829D3F172549D918(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3C_CoUpdateTextureOnNextFrameU3Ed__95_t9C8D68935D7F427151455D75EABE42DB3D053931_CustomAttributesCacheGenerator_U3C_CoUpdateTextureOnNextFrameU3Ed__95_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m1360585F8CC74CD3D7E64A27588BD82C391A4161(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3C_CoUpdateTextureOnNextFrameU3Ed__95_t9C8D68935D7F427151455D75EABE42DB3D053931_CustomAttributesCacheGenerator_U3C_CoUpdateTextureOnNextFrameU3Ed__95_System_Collections_IEnumerator_Reset_m56A33F43CC317424167E365D1832F3FDD721EC02(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void U3C_CoUpdateTextureOnNextFrameU3Ed__95_t9C8D68935D7F427151455D75EABE42DB3D053931_CustomAttributesCacheGenerator_U3C_CoUpdateTextureOnNextFrameU3Ed__95_System_Collections_IEnumerator_get_Current_m3E7A9074B0952D172E9DFDEDC672207BA3E4A5BA(CustomAttributesCache* cache)
{
{
DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 * tmp = (DebuggerHiddenAttribute_tD84728997C009D6F540FB29D88F032350E046A88 *)cache->attributes[0];
DebuggerHiddenAttribute__ctor_mB40799BB5DAFE439BEFE895836CF792B8DBEA7F3(tmp, NULL);
}
}
static void UIHsvModifier_t9B8BF8A8125530A6604689ED25646F0A6198B547_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 * tmp = (AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 *)cache->attributes[0];
AddComponentMenu__ctor_m6405E10C6B6269CA2F0684BF0B356A7E6AB7BF56(tmp, il2cpp_codegen_string_new_wrapper("\x55\x49\x2F\x55\x49\x45\x66\x66\x65\x63\x74\x2F\x55\x49\x48\x73\x76\x4D\x6F\x64\x69\x66\x69\x65\x72"), 4LL, NULL);
}
}
static void UIHsvModifier_t9B8BF8A8125530A6604689ED25646F0A6198B547_CustomAttributesCacheGenerator_m_TargetColor(CustomAttributesCache* cache)
{
{
ColorUsageAttribute_tB57E6B0640DFA4A8838D1584BCAA03D9D4FDA662 * tmp = (ColorUsageAttribute_tB57E6B0640DFA4A8838D1584BCAA03D9D4FDA662 *)cache->attributes[0];
ColorUsageAttribute__ctor_mB764B17A7C17E6199BFC147BFFE72D34FD55D76E(tmp, false, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB * tmp = (HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB *)cache->attributes[2];
HeaderAttribute__ctor_m601319E0BCE8C44A9E79B2C0ABAAD0FEF46A9F1E(tmp, il2cpp_codegen_string_new_wrapper("\x54\x61\x72\x67\x65\x74"), NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[3];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x54\x61\x72\x67\x65\x74\x20\x63\x6F\x6C\x6F\x72\x20\x74\x6F\x20\x61\x66\x66\x65\x63\x74\x20\x68\x73\x76\x20\x73\x68\x69\x66\x74\x2E"), NULL);
}
}
static void UIHsvModifier_t9B8BF8A8125530A6604689ED25646F0A6198B547_CustomAttributesCacheGenerator_m_Range(CustomAttributesCache* cache)
{
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[0];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[2];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x43\x6F\x6C\x6F\x72\x20\x72\x61\x6E\x67\x65\x20\x74\x6F\x20\x61\x66\x66\x65\x63\x74\x20\x68\x73\x76\x20\x73\x68\x69\x66\x74\x20\x5B\x30\x20\x7E\x20\x31\x5D\x2E"), NULL);
}
}
static void UIHsvModifier_t9B8BF8A8125530A6604689ED25646F0A6198B547_CustomAttributesCacheGenerator_m_Hue(CustomAttributesCache* cache)
{
{
HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB * tmp = (HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB *)cache->attributes[0];
HeaderAttribute__ctor_m601319E0BCE8C44A9E79B2C0ABAAD0FEF46A9F1E(tmp, il2cpp_codegen_string_new_wrapper("\x41\x64\x6A\x75\x73\x74\x6D\x65\x6E\x74"), NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[1];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, -0.5f, 0.5f, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[2];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[3];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x48\x75\x65\x20\x73\x68\x69\x66\x74\x20\x5B\x2D\x30\x2E\x35\x20\x7E\x20\x30\x2E\x35\x5D\x2E"), NULL);
}
}
static void UIHsvModifier_t9B8BF8A8125530A6604689ED25646F0A6198B547_CustomAttributesCacheGenerator_m_Saturation(CustomAttributesCache* cache)
{
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[0];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, -0.5f, 0.5f, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x53\x61\x74\x75\x72\x61\x74\x69\x6F\x6E\x20\x73\x68\x69\x66\x74\x20\x5B\x2D\x30\x2E\x35\x20\x7E\x20\x30\x2E\x35\x5D\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[2];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIHsvModifier_t9B8BF8A8125530A6604689ED25646F0A6198B547_CustomAttributesCacheGenerator_m_Value(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x56\x61\x6C\x75\x65\x20\x73\x68\x69\x66\x74\x20\x5B\x2D\x30\x2E\x35\x20\x7E\x20\x30\x2E\x35\x5D\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[2];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, -0.5f, 0.5f, NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 * tmp = (AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 *)cache->attributes[0];
AddComponentMenu__ctor_m6405E10C6B6269CA2F0684BF0B356A7E6AB7BF56(tmp, il2cpp_codegen_string_new_wrapper("\x55\x49\x2F\x55\x49\x45\x66\x66\x65\x63\x74\x2F\x55\x49\x53\x68\x69\x6E\x79"), 2LL, NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_EffectFactor(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[1];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
{
FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * tmp = (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 *)cache->attributes[2];
FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D(tmp, il2cpp_codegen_string_new_wrapper("\x6D\x5F\x4C\x6F\x63\x61\x74\x69\x6F\x6E"), NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[3];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x4C\x6F\x63\x61\x74\x69\x6F\x6E\x20\x66\x6F\x72\x20\x73\x68\x69\x6E\x79\x20\x65\x66\x66\x65\x63\x74\x2E"), NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Width(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x57\x69\x64\x74\x68\x20\x66\x6F\x72\x20\x73\x68\x69\x6E\x79\x20\x65\x66\x66\x65\x63\x74\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[2];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Rotation(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x52\x6F\x74\x61\x74\x69\x6F\x6E\x20\x66\x6F\x72\x20\x73\x68\x69\x6E\x79\x20\x65\x66\x66\x65\x63\x74\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[2];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, -180.0f, 180.0f, NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Softness(CustomAttributesCache* cache)
{
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[0];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.00999999978f, 1.0f, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x53\x6F\x66\x74\x6E\x65\x73\x73\x20\x66\x6F\x72\x20\x73\x68\x69\x6E\x79\x20\x65\x66\x66\x65\x63\x74\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[2];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Brightness(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x42\x72\x69\x67\x68\x74\x6E\x65\x73\x73\x20\x66\x6F\x72\x20\x73\x68\x69\x6E\x79\x20\x65\x66\x66\x65\x63\x74\x2E"), NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[1];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[2];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * tmp = (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 *)cache->attributes[3];
FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D(tmp, il2cpp_codegen_string_new_wrapper("\x6D\x5F\x41\x6C\x70\x68\x61"), NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Gloss(CustomAttributesCache* cache)
{
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[0];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[2];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x47\x6C\x6F\x73\x73\x20\x66\x61\x63\x74\x6F\x72\x20\x66\x6F\x72\x20\x73\x68\x69\x6E\x79\x20\x65\x66\x66\x65\x63\x74\x2E"), NULL);
}
{
FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 * tmp = (FormerlySerializedAsAttribute_t9505BD2243F1C81AB32EEAF3543A796C2D935210 *)cache->attributes[3];
FormerlySerializedAsAttribute__ctor_m7A9FC6914FCBA79EE12567BEF3B482CAB7D5265D(tmp, il2cpp_codegen_string_new_wrapper("\x6D\x5F\x48\x69\x67\x68\x6C\x69\x67\x68\x74"), NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_EffectArea(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x54\x68\x65\x20\x61\x72\x65\x61\x20\x66\x6F\x72\x20\x65\x66\x66\x65\x63\x74\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Player(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Play(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * tmp = (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA *)cache->attributes[2];
HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9(tmp, NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Loop(CustomAttributesCache* cache)
{
{
HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * tmp = (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA *)cache->attributes[0];
HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9(tmp, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[2];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Duration(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
{
HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * tmp = (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA *)cache->attributes[1];
HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9(tmp, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[2];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[3];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.100000001f, 10.0f, NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_LoopDelay(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[2];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 10.0f, NULL);
}
{
HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * tmp = (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA *)cache->attributes[3];
HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9(tmp, NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_UpdateMode(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA * tmp = (HideInInspector_tDD5B9D3AD8D48C93E23FE6CA3ECDA5589D60CCDA *)cache->attributes[1];
HideInInspector__ctor_mE2B7FB1D206A74BA583C7812CDB4EBDD83EB66F9(tmp, NULL);
}
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[2];
ObsoleteAttribute__ctor_m9BC17A80675E9013AA71F9FB38D89FEF56883853(tmp, NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_UIShiny_U3COnEnableU3Eb__62_0_mDD631E9F65D6ED66C149AB61C42D9B32BB46F024(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3____location_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x55\x73\x65\x20\x65\x66\x66\x65\x63\x74\x46\x61\x63\x74\x6F\x72\x20\x69\x6E\x73\x74\x65\x61\x64\x20\x28\x55\x6E\x69\x74\x79\x55\x70\x67\x72\x61\x64\x61\x62\x6C\x65\x29\x20\x2D\x3E\x20\x65\x66\x66\x65\x63\x74\x46\x61\x63\x74\x6F\x72"), NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3____alpha_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x55\x73\x65\x20\x62\x72\x69\x67\x68\x74\x6E\x65\x73\x73\x20\x69\x6E\x73\x74\x65\x61\x64\x20\x28\x55\x6E\x69\x74\x79\x55\x70\x67\x72\x61\x64\x61\x62\x6C\x65\x29\x20\x2D\x3E\x20\x62\x72\x69\x67\x68\x74\x6E\x65\x73\x73"), NULL);
}
}
static void UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3____highlight_PropertyInfo(CustomAttributesCache* cache)
{
{
ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 * tmp = (ObsoleteAttribute_t14BAC1669C0409EB9F28D72D664FFA6764ACD671 *)cache->attributes[0];
ObsoleteAttribute__ctor_mAC32A5CCD287DA84CDA9F08282C1C8B0DB7B9868(tmp, il2cpp_codegen_string_new_wrapper("\x55\x73\x65\x20\x67\x6C\x6F\x73\x73\x20\x69\x6E\x73\x74\x65\x61\x64\x20\x28\x55\x6E\x69\x74\x79\x55\x70\x67\x72\x61\x64\x61\x62\x6C\x65\x29\x20\x2D\x3E\x20\x67\x6C\x6F\x73\x73"), NULL);
}
}
static void UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
{
{
AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 * tmp = (AddComponentMenu_t3477A931DC56E9A4F67FFA5745D657ADD2931100 *)cache->attributes[0];
AddComponentMenu__ctor_m6405E10C6B6269CA2F0684BF0B356A7E6AB7BF56(tmp, il2cpp_codegen_string_new_wrapper("\x55\x49\x2F\x55\x49\x45\x66\x66\x65\x63\x74\x2F\x55\x49\x54\x72\x61\x6E\x73\x69\x74\x69\x6F\x6E\x45\x66\x66\x65\x63\x74"), 5LL, NULL);
}
}
static void UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_EffectMode(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x45\x66\x66\x65\x63\x74\x20\x6D\x6F\x64\x65\x2E"), NULL);
}
}
static void UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_EffectFactor(CustomAttributesCache* cache)
{
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[0];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[2];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x45\x66\x66\x65\x63\x74\x20\x66\x61\x63\x74\x6F\x72\x20\x62\x65\x74\x77\x65\x65\x6E\x20\x30\x28\x68\x69\x64\x64\x65\x6E\x29\x20\x61\x6E\x64\x20\x31\x28\x73\x68\x6F\x77\x6E\x29\x2E"), NULL);
}
}
static void UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_TransitionTexture(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x54\x72\x61\x6E\x73\x69\x74\x69\x6F\x6E\x20\x74\x65\x78\x74\x75\x72\x65\x20\x28\x73\x69\x6E\x67\x6C\x65\x20\x63\x68\x61\x6E\x6E\x65\x6C\x20\x74\x65\x78\x74\x75\x72\x65\x29\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_EffectArea(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x54\x68\x65\x20\x61\x72\x65\x61\x20\x66\x6F\x72\x20\x65\x66\x66\x65\x63\x74\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_KeepAspectRatio(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x4B\x65\x65\x70\x20\x65\x66\x66\x65\x63\x74\x20\x61\x73\x70\x65\x63\x74\x20\x72\x61\x74\x69\x6F\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_DissolveWidth(CustomAttributesCache* cache)
{
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[0];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[2];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x44\x69\x73\x73\x6F\x6C\x76\x65\x20\x65\x64\x67\x65\x20\x77\x69\x64\x74\x68\x2E"), NULL);
}
}
static void UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_DissolveSoftness(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x44\x69\x73\x73\x6F\x6C\x76\x65\x20\x65\x64\x67\x65\x20\x73\x6F\x66\x74\x6E\x65\x73\x73\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 * tmp = (RangeAttribute_t14A6532D68168764C15E7CF1FDABCD99CB32D0C5 *)cache->attributes[2];
RangeAttribute__ctor_mC74D39A9F20DD2A0D4174F05785ABE4F0DAEF000(tmp, 0.0f, 1.0f, NULL);
}
}
static void UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_DissolveColor(CustomAttributesCache* cache)
{
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[0];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[1];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x44\x69\x73\x73\x6F\x6C\x76\x65\x20\x65\x64\x67\x65\x20\x63\x6F\x6C\x6F\x72\x2E"), NULL);
}
{
ColorUsageAttribute_tB57E6B0640DFA4A8838D1584BCAA03D9D4FDA662 * tmp = (ColorUsageAttribute_tB57E6B0640DFA4A8838D1584BCAA03D9D4FDA662 *)cache->attributes[2];
ColorUsageAttribute__ctor_mB764B17A7C17E6199BFC147BFFE72D34FD55D76E(tmp, false, NULL);
}
}
static void UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_PassRayOnHidden(CustomAttributesCache* cache)
{
{
TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B * tmp = (TooltipAttribute_t503A1598A4E68E91673758F50447D0EDFB95149B *)cache->attributes[0];
TooltipAttribute__ctor_m1839ACEC1560968A6D0EA55D7EB4535546588042(tmp, il2cpp_codegen_string_new_wrapper("\x44\x69\x73\x61\x62\x6C\x65\x20\x67\x72\x61\x70\x68\x69\x63\x27\x73\x20\x72\x61\x79\x63\x61\x73\x74\x20\x74\x61\x72\x67\x65\x74\x20\x6F\x6E\x20\x68\x69\x64\x64\x65\x6E\x2E"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_Player(CustomAttributesCache* cache)
{
{
HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB * tmp = (HeaderAttribute_t9B431E6BA0524D46406D9C413D6A71CB5F2DD1AB *)cache->attributes[0];
HeaderAttribute__ctor_m601319E0BCE8C44A9E79B2C0ABAAD0FEF46A9F1E(tmp, il2cpp_codegen_string_new_wrapper("\x45\x66\x66\x65\x63\x74\x20\x50\x6C\x61\x79\x65\x72"), NULL);
}
{
SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 * tmp = (SerializeField_t6B23EE6CC99B21C3EBD946352112832A70E67E25 *)cache->attributes[1];
SerializeField__ctor_mDE6A7673BA2C1FAD03CFEC65C6D473CC37889DD3(tmp, NULL);
}
}
static void UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_UITransitionEffect_U3CShowU3Eb__44_0_mD405706E95A6899C489FB9EC5AA0532297EAAA84(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_UITransitionEffect_U3CHideU3Eb__45_0_m867522EC024CB8D2C86D68DEE6AA903297835099(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
static void UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_UITransitionEffect_U3CModifyMaterialU3Eb__46_0_m8E56850A1F366263837704C5F78915CABE721F36(CustomAttributesCache* cache)
{
{
CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
}
}
IL2CPP_EXTERN_C const CustomAttributesCacheGenerator g_AssemblyU2DCSharp_AttributeGenerators[];
const CustomAttributesCacheGenerator g_AssemblyU2DCSharp_AttributeGenerators[287] =
{
U3CDoLoadU3Ed__3_t22FB46F6868448B2A14E4EB6EE9F15898C0B33F9_CustomAttributesCacheGenerator,
U3ChideTargetBallRingU3Ed__11_t2884642ADECFCA61F4D7DDE53E8B0DDC673A1951_CustomAttributesCacheGenerator,
U3CStopBallMoveU3Ed__13_t7F61C09EDA53993951CEC95ED46A79380F9507A5_CustomAttributesCacheGenerator,
U3CCreateTargetBallU3Ed__16_t0D39108D5876D60EB93AFAF0F06FE6D66F41CB1B_CustomAttributesCacheGenerator,
U3CCreateOtherBallU3Ed__17_t516DA87B86E4CC4C7A7F321AC62E7FD3DAA28A62_CustomAttributesCacheGenerator,
U3CShowC2IStepsU3Ed__31_tBB9B8E2E2A7AF602E3C3388372083E9A59D4E7FE_CustomAttributesCacheGenerator,
U3CShowNextButtonU3Ed__40_t516102B1BE512C9C1FC64C4A753A3CD018ED310B_CustomAttributesCacheGenerator,
U3CPlayBGMusicU3Ed__42_tBE58739AEFC457668D1A21A551058495DE25D1CF_CustomAttributesCacheGenerator,
U3CPlayeVideoU3Ed__44_t219DED91B915A5A290882ADB49AE0BC747E81150_CustomAttributesCacheGenerator,
U3CLoadBGImgU3Ed__33_t982A3BEA375E5453B90F14211863CFD8E6C470CD_CustomAttributesCacheGenerator,
U3CLoadHandImgU3Ed__34_t2F162D891050AB1BF8AD4C1C0EF0B19F78425CB9_CustomAttributesCacheGenerator,
U3CLoadBGMusicU3Ed__35_t99F47D987146B5073AE310874A86AA9BD645361F_CustomAttributesCacheGenerator,
U3CLoadWaterVoiceU3Ed__36_t170B26E90F422EEA63B00FA1513E77AE9DADC8FE_CustomAttributesCacheGenerator,
U3CChangeScaleCoroutineU3Ed__26_t2918B9C18F293BA64B72C1D58415EA17C13CAA55_CustomAttributesCacheGenerator,
U3CPlayeVideoU3Ed__2_tEE6CBE2062BB49044C2122342E90CF42036EEA0F_CustomAttributesCacheGenerator,
BaseMeshEffect_t1DB5F96E0EA29925AED90F6FF4B0D211DE807AE0_CustomAttributesCacheGenerator,
EffectAreaExtensions_t654EEBD5E991EA6E3AC56DDCC8A440C29B12A607_CustomAttributesCacheGenerator,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator,
UIFlip_tAD23B8D13CED5429240384203771FAEAA2A7E6D8_CustomAttributesCacheGenerator,
UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator,
UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB_CustomAttributesCacheGenerator,
AdditionalShadow_tF8A021C14C442A027AF6A642B1DC2F21DD94874C_CustomAttributesCacheGenerator,
U3CU3Ec_tE62DA9B00341026F724866962781DC210A2F0939_CustomAttributesCacheGenerator,
U3CU3Ec__DisplayClass17_0_t2025FAA11423751822F2CD4FE9BBF914DC46A862_CustomAttributesCacheGenerator,
U3CU3Ec__DisplayClass18_0_t8F51FFD0781F24C482EE321D69F10FECD2B899BB_CustomAttributesCacheGenerator,
U3CU3Ec_tA976FF57D5D65EAD73BDFBA0D88CCA4EDAF8CD43_CustomAttributesCacheGenerator,
UIEffectBase_tB335EAAB6DD5927928D8A120DDF2C9F4F5D2FC9E_CustomAttributesCacheGenerator,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator,
U3C_CoUpdateTextureOnNextFrameU3Ed__95_t9C8D68935D7F427151455D75EABE42DB3D053931_CustomAttributesCacheGenerator,
UIHsvModifier_t9B8BF8A8125530A6604689ED25646F0A6198B547_CustomAttributesCacheGenerator,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator,
UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator,
MusicFade_t7B8618ADAD81B5E4F065ABC137442FB774511F74_CustomAttributesCacheGenerator_Music,
MusicFade_t7B8618ADAD81B5E4F065ABC137442FB774511F74_CustomAttributesCacheGenerator_durTime,
GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_U3CballCountU3Ek__BackingField,
GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_U3CtargetBallCountU3Ek__BackingField,
GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_U3CspeedU3Ek__BackingField,
ball_tEB57FC5009B3ADDC173093C8187A87EF28BD1114_CustomAttributesCacheGenerator__downScale,
ball_tEB57FC5009B3ADDC173093C8187A87EF28BD1114_CustomAttributesCacheGenerator__downDuration,
ball_tEB57FC5009B3ADDC173093C8187A87EF28BD1114_CustomAttributesCacheGenerator__upDuration,
ball_tEB57FC5009B3ADDC173093C8187A87EF28BD1114_CustomAttributesCacheGenerator_maxSpeed,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_EffectFactor,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_Width,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_Softness,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_Color,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_ColorMode,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_NoiseTexture,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_EffectArea,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_KeepAspectRatio,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_Player,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_Duration,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_m_UpdateMode,
UIFlip_tAD23B8D13CED5429240384203771FAEAA2A7E6D8_CustomAttributesCacheGenerator_m_Horizontal,
UIFlip_tAD23B8D13CED5429240384203771FAEAA2A7E6D8_CustomAttributesCacheGenerator_m_Veritical,
UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_Direction,
UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_Color1,
UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_Color2,
UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_Color3,
UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_Color4,
UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_Rotation,
UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_Offset1,
UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_Offset2,
UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_GradientStyle,
UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_ColorSpace,
UIGradient_tE4482AD8EE06EA7A38AF30856CD131AF1E940CFF_CustomAttributesCacheGenerator_m_IgnoreAspectRatio,
UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB_CustomAttributesCacheGenerator_m_BlurFactor,
UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB_CustomAttributesCacheGenerator_m_Style,
UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB_CustomAttributesCacheGenerator_m_AdditionalShadows,
UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB_CustomAttributesCacheGenerator_m_EffectColor,
UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB_CustomAttributesCacheGenerator_m_EffectDistance,
UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB_CustomAttributesCacheGenerator_m_UseGraphicAlpha,
AdditionalShadow_tF8A021C14C442A027AF6A642B1DC2F21DD94874C_CustomAttributesCacheGenerator_blur,
AdditionalShadow_tF8A021C14C442A027AF6A642B1DC2F21DD94874C_CustomAttributesCacheGenerator_style,
AdditionalShadow_tF8A021C14C442A027AF6A642B1DC2F21DD94874C_CustomAttributesCacheGenerator_effectColor,
UIEffect_Demo_t36DF9C201C6DBE023ED78C81828CB21B21BC3496_CustomAttributesCacheGenerator_mask,
UIEffect_Demo_Dialog_tC3D6845BD01EFF65755495A55E9C715D00D47B4B_CustomAttributesCacheGenerator_m_Animator,
EffectPlayer_t2899D48A3E8C30E7ED42DD9530059A345D753954_CustomAttributesCacheGenerator_play,
EffectPlayer_t2899D48A3E8C30E7ED42DD9530059A345D753954_CustomAttributesCacheGenerator_loop,
EffectPlayer_t2899D48A3E8C30E7ED42DD9530059A345D753954_CustomAttributesCacheGenerator_duration,
EffectPlayer_t2899D48A3E8C30E7ED42DD9530059A345D753954_CustomAttributesCacheGenerator_loopDelay,
EffectPlayer_t2899D48A3E8C30E7ED42DD9530059A345D753954_CustomAttributesCacheGenerator_updateMode,
MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_U3ChashU3Ek__BackingField,
MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_U3CreferenceCountU3Ek__BackingField,
MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_U3CtextureU3Ek__BackingField,
MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_U3CmaterialU3Ek__BackingField,
UIEffectBase_tB335EAAB6DD5927928D8A120DDF2C9F4F5D2FC9E_CustomAttributesCacheGenerator_m_Version,
UIEffectBase_tB335EAAB6DD5927928D8A120DDF2C9F4F5D2FC9E_CustomAttributesCacheGenerator_m_EffectMaterial,
UIEffectBase_tB335EAAB6DD5927928D8A120DDF2C9F4F5D2FC9E_CustomAttributesCacheGenerator_U3CparameterIndexU3Ek__BackingField,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_EffectFactor,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_ColorFactor,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_BlurFactor,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_EffectMode,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_ColorMode,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_BlurMode,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_AdvancedBlur,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_ShadowBlur,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_ShadowStyle,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_ShadowColor,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_EffectDistance,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_UseGraphicAlpha,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_EffectColor,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_m_AdditionalShadows,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_EffectFactor,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_ColorFactor,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_BlurFactor,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_EffectMode,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_ColorMode,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_BlurMode,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_EffectColor,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_DesamplingRate,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_ReductionRate,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_FilterMode,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_EffectMaterial,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_BlurIterations,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_FitToScreen,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_CaptureOnEnable,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_m_ImmediateCapturing,
UIHsvModifier_t9B8BF8A8125530A6604689ED25646F0A6198B547_CustomAttributesCacheGenerator_m_TargetColor,
UIHsvModifier_t9B8BF8A8125530A6604689ED25646F0A6198B547_CustomAttributesCacheGenerator_m_Range,
UIHsvModifier_t9B8BF8A8125530A6604689ED25646F0A6198B547_CustomAttributesCacheGenerator_m_Hue,
UIHsvModifier_t9B8BF8A8125530A6604689ED25646F0A6198B547_CustomAttributesCacheGenerator_m_Saturation,
UIHsvModifier_t9B8BF8A8125530A6604689ED25646F0A6198B547_CustomAttributesCacheGenerator_m_Value,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_EffectFactor,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Width,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Rotation,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Softness,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Brightness,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Gloss,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_EffectArea,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Player,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Play,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Loop,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_Duration,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_LoopDelay,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_m_UpdateMode,
UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_EffectMode,
UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_EffectFactor,
UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_TransitionTexture,
UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_EffectArea,
UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_KeepAspectRatio,
UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_DissolveWidth,
UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_DissolveSoftness,
UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_DissolveColor,
UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_PassRayOnHidden,
UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_m_Player,
CachedDownloader_t393F2BFBFC81E72718CFE4389E1590E6A6A31A69_CustomAttributesCacheGenerator_CachedDownloader_DoLoad_mBEEA4206C369A16297E0C0CD1EC3FB26A691202D,
U3CDoLoadU3Ed__3_t22FB46F6868448B2A14E4EB6EE9F15898C0B33F9_CustomAttributesCacheGenerator_U3CDoLoadU3Ed__3__ctor_mDA36578BAE2CDBC83D2446D09A41F1B4003E18BD,
U3CDoLoadU3Ed__3_t22FB46F6868448B2A14E4EB6EE9F15898C0B33F9_CustomAttributesCacheGenerator_U3CDoLoadU3Ed__3_System_IDisposable_Dispose_mFCAAB89610C499B7A7CD844200857E715A87E873,
U3CDoLoadU3Ed__3_t22FB46F6868448B2A14E4EB6EE9F15898C0B33F9_CustomAttributesCacheGenerator_U3CDoLoadU3Ed__3_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m212130B9720F3A91730917051121F654EFC0923C,
U3CDoLoadU3Ed__3_t22FB46F6868448B2A14E4EB6EE9F15898C0B33F9_CustomAttributesCacheGenerator_U3CDoLoadU3Ed__3_System_Collections_IEnumerator_Reset_mFDF80C9604E10EAD89487FF4B519AC4841236925,
U3CDoLoadU3Ed__3_t22FB46F6868448B2A14E4EB6EE9F15898C0B33F9_CustomAttributesCacheGenerator_U3CDoLoadU3Ed__3_System_Collections_IEnumerator_get_Current_mB202FCC75F8CCE69998E8A1BF33BC762042F5096,
NorbuMain_t8D15328E193DEC669917162100629AFF6DE910CE_CustomAttributesCacheGenerator_NorbuMain_hideTargetBallRing_m81EF3F5A3B2343BC048FBC63DCA98ADDF6D23D39,
NorbuMain_t8D15328E193DEC669917162100629AFF6DE910CE_CustomAttributesCacheGenerator_NorbuMain_StopBallMove_m2528989FF2CFF8152133EF8EB99A72AF68AFAAD0,
NorbuMain_t8D15328E193DEC669917162100629AFF6DE910CE_CustomAttributesCacheGenerator_NorbuMain_CreateTargetBall_m17FD33A4AE2975533BBED1F282C7DFB2F7311E02,
NorbuMain_t8D15328E193DEC669917162100629AFF6DE910CE_CustomAttributesCacheGenerator_NorbuMain_CreateOtherBall_m620C39364DB487E037290ADB0A59544AC8EB2B6C,
NorbuMain_t8D15328E193DEC669917162100629AFF6DE910CE_CustomAttributesCacheGenerator_NorbuMain_ShowC2ISteps_mEBD10175BA513A2250221FBE4892E08C78DC16BB,
NorbuMain_t8D15328E193DEC669917162100629AFF6DE910CE_CustomAttributesCacheGenerator_NorbuMain_ShowNextButton_m74B999D7DE268777327ABCC82F017744CF4701C6,
NorbuMain_t8D15328E193DEC669917162100629AFF6DE910CE_CustomAttributesCacheGenerator_NorbuMain_PlayBGMusic_mD29569C55935F9C36C04690CF7945BA46DDB880D,
NorbuMain_t8D15328E193DEC669917162100629AFF6DE910CE_CustomAttributesCacheGenerator_NorbuMain_PlayeVideo_m5719799B8EBC4EB841C5A0E003E39C0B2C9FE2FE,
GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_GameLevel_get_ballCount_mF830CB1E893074B6C6450A63061BD58BB2858ED0,
GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_GameLevel_set_ballCount_m4FECA6A7DE7F13FE943114B0C2F9372C96AC4506,
GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_GameLevel_get_targetBallCount_mEC275EFBD892B982527F9F6FA0F3FBDF2601ACA2,
GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_GameLevel_set_targetBallCount_mFFFC77768BDD6D9726E3771FBCED9D6A2913DFE1,
GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_GameLevel_get_speed_m8840E9D81141FFC8D36E0B7C26452C76D3647A50,
GameLevel_tF869A83C7D68C6830EAB15426135A67FE5FBB710_CustomAttributesCacheGenerator_GameLevel_set_speed_m448437A76844865EE436420E30907875FE83CCDB,
U3ChideTargetBallRingU3Ed__11_t2884642ADECFCA61F4D7DDE53E8B0DDC673A1951_CustomAttributesCacheGenerator_U3ChideTargetBallRingU3Ed__11__ctor_m1BE36DD40CB7B1229A2A6AC3FB33500A0A77D614,
U3ChideTargetBallRingU3Ed__11_t2884642ADECFCA61F4D7DDE53E8B0DDC673A1951_CustomAttributesCacheGenerator_U3ChideTargetBallRingU3Ed__11_System_IDisposable_Dispose_m5C19DAAC82F190228E8803310598203B29408304,
U3ChideTargetBallRingU3Ed__11_t2884642ADECFCA61F4D7DDE53E8B0DDC673A1951_CustomAttributesCacheGenerator_U3ChideTargetBallRingU3Ed__11_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mE3C1A42A9D5B316FA6661CA36499C5E4D6EFA7EB,
U3ChideTargetBallRingU3Ed__11_t2884642ADECFCA61F4D7DDE53E8B0DDC673A1951_CustomAttributesCacheGenerator_U3ChideTargetBallRingU3Ed__11_System_Collections_IEnumerator_Reset_m407D0AC916769369DBA159B1C8430399729712DD,
U3ChideTargetBallRingU3Ed__11_t2884642ADECFCA61F4D7DDE53E8B0DDC673A1951_CustomAttributesCacheGenerator_U3ChideTargetBallRingU3Ed__11_System_Collections_IEnumerator_get_Current_m2D7D1C39D410F73EBA0EDEA53EB449BEB53A28B2,
U3CStopBallMoveU3Ed__13_t7F61C09EDA53993951CEC95ED46A79380F9507A5_CustomAttributesCacheGenerator_U3CStopBallMoveU3Ed__13__ctor_m0CFBF1E8D1F0E5FA06ACA3769B829A830F199C11,
U3CStopBallMoveU3Ed__13_t7F61C09EDA53993951CEC95ED46A79380F9507A5_CustomAttributesCacheGenerator_U3CStopBallMoveU3Ed__13_System_IDisposable_Dispose_mDEB8C5DCCD1C100C907D3614A8ACFF2A35C7CB32,
U3CStopBallMoveU3Ed__13_t7F61C09EDA53993951CEC95ED46A79380F9507A5_CustomAttributesCacheGenerator_U3CStopBallMoveU3Ed__13_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m7983AA94274CB88DA8B7EDB56C39D46D83544F56,
U3CStopBallMoveU3Ed__13_t7F61C09EDA53993951CEC95ED46A79380F9507A5_CustomAttributesCacheGenerator_U3CStopBallMoveU3Ed__13_System_Collections_IEnumerator_Reset_m7028DC7CFDBFB5D8199502096BBE511F80D66A3B,
U3CStopBallMoveU3Ed__13_t7F61C09EDA53993951CEC95ED46A79380F9507A5_CustomAttributesCacheGenerator_U3CStopBallMoveU3Ed__13_System_Collections_IEnumerator_get_Current_m1D388AABC3C9F2E3A914A5DBED26F1941A18F01D,
U3CCreateTargetBallU3Ed__16_t0D39108D5876D60EB93AFAF0F06FE6D66F41CB1B_CustomAttributesCacheGenerator_U3CCreateTargetBallU3Ed__16__ctor_mF02CADDF5830E7CF176E5A05ED0D48C8112B8902,
U3CCreateTargetBallU3Ed__16_t0D39108D5876D60EB93AFAF0F06FE6D66F41CB1B_CustomAttributesCacheGenerator_U3CCreateTargetBallU3Ed__16_System_IDisposable_Dispose_m4C902EBE2D39FC64C066A91B8A82100BD29D9EF2,
U3CCreateTargetBallU3Ed__16_t0D39108D5876D60EB93AFAF0F06FE6D66F41CB1B_CustomAttributesCacheGenerator_U3CCreateTargetBallU3Ed__16_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m34EFBF79479595C42D42F68C0A65EE747A022131,
U3CCreateTargetBallU3Ed__16_t0D39108D5876D60EB93AFAF0F06FE6D66F41CB1B_CustomAttributesCacheGenerator_U3CCreateTargetBallU3Ed__16_System_Collections_IEnumerator_Reset_mFBDA718688A74F73294E042DE4111BF26600D86B,
U3CCreateTargetBallU3Ed__16_t0D39108D5876D60EB93AFAF0F06FE6D66F41CB1B_CustomAttributesCacheGenerator_U3CCreateTargetBallU3Ed__16_System_Collections_IEnumerator_get_Current_mEF124D910811CCD183D35A526CD198BD1752B99F,
U3CCreateOtherBallU3Ed__17_t516DA87B86E4CC4C7A7F321AC62E7FD3DAA28A62_CustomAttributesCacheGenerator_U3CCreateOtherBallU3Ed__17__ctor_mBC286D2BB9BF49AE3637765E5EC539D98CEA694B,
U3CCreateOtherBallU3Ed__17_t516DA87B86E4CC4C7A7F321AC62E7FD3DAA28A62_CustomAttributesCacheGenerator_U3CCreateOtherBallU3Ed__17_System_IDisposable_Dispose_m283EEA1F06F9F70EF9B6904A5311AEBD046D2907,
U3CCreateOtherBallU3Ed__17_t516DA87B86E4CC4C7A7F321AC62E7FD3DAA28A62_CustomAttributesCacheGenerator_U3CCreateOtherBallU3Ed__17_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m0FF95E8CF5C794D1C6947B0369EBA8ACFC345D80,
U3CCreateOtherBallU3Ed__17_t516DA87B86E4CC4C7A7F321AC62E7FD3DAA28A62_CustomAttributesCacheGenerator_U3CCreateOtherBallU3Ed__17_System_Collections_IEnumerator_Reset_m4CE4E2797DF1A2BC64729C869AB4B0A99E389ECF,
U3CCreateOtherBallU3Ed__17_t516DA87B86E4CC4C7A7F321AC62E7FD3DAA28A62_CustomAttributesCacheGenerator_U3CCreateOtherBallU3Ed__17_System_Collections_IEnumerator_get_Current_mBBDC802424ED63570C68964F7E717C36748E28F5,
U3CShowC2IStepsU3Ed__31_tBB9B8E2E2A7AF602E3C3388372083E9A59D4E7FE_CustomAttributesCacheGenerator_U3CShowC2IStepsU3Ed__31__ctor_mADFD45CD7416AED94E6AE930124368033E152FA3,
U3CShowC2IStepsU3Ed__31_tBB9B8E2E2A7AF602E3C3388372083E9A59D4E7FE_CustomAttributesCacheGenerator_U3CShowC2IStepsU3Ed__31_System_IDisposable_Dispose_m3AB8F0DA0311F0037A1BA4DD16E61D130C613BC4,
U3CShowC2IStepsU3Ed__31_tBB9B8E2E2A7AF602E3C3388372083E9A59D4E7FE_CustomAttributesCacheGenerator_U3CShowC2IStepsU3Ed__31_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mA0678FB28E426284A6F28E4584ACDCED7D6A173B,
U3CShowC2IStepsU3Ed__31_tBB9B8E2E2A7AF602E3C3388372083E9A59D4E7FE_CustomAttributesCacheGenerator_U3CShowC2IStepsU3Ed__31_System_Collections_IEnumerator_Reset_mE6EFF5022A55CD78691AB5DECE644AB4D2923D73,
U3CShowC2IStepsU3Ed__31_tBB9B8E2E2A7AF602E3C3388372083E9A59D4E7FE_CustomAttributesCacheGenerator_U3CShowC2IStepsU3Ed__31_System_Collections_IEnumerator_get_Current_m1934CB591312BB718353082A04112DE70C921699,
U3CShowNextButtonU3Ed__40_t516102B1BE512C9C1FC64C4A753A3CD018ED310B_CustomAttributesCacheGenerator_U3CShowNextButtonU3Ed__40__ctor_mA026A43B0A3875B9C500BB34ACC3F09CD3456E6E,
U3CShowNextButtonU3Ed__40_t516102B1BE512C9C1FC64C4A753A3CD018ED310B_CustomAttributesCacheGenerator_U3CShowNextButtonU3Ed__40_System_IDisposable_Dispose_m2D080288947FC9E35E481E218AE85A26621F10CA,
U3CShowNextButtonU3Ed__40_t516102B1BE512C9C1FC64C4A753A3CD018ED310B_CustomAttributesCacheGenerator_U3CShowNextButtonU3Ed__40_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mC6FFDA9BECAEB13E52ECCCB0165DB25D05668562,
U3CShowNextButtonU3Ed__40_t516102B1BE512C9C1FC64C4A753A3CD018ED310B_CustomAttributesCacheGenerator_U3CShowNextButtonU3Ed__40_System_Collections_IEnumerator_Reset_m13AFDAA21C843EB657369486FC0CE3E2F1FFB4E8,
U3CShowNextButtonU3Ed__40_t516102B1BE512C9C1FC64C4A753A3CD018ED310B_CustomAttributesCacheGenerator_U3CShowNextButtonU3Ed__40_System_Collections_IEnumerator_get_Current_mAD916CA29835774F7AD1CCC2BBF56919B30F39A5,
U3CPlayBGMusicU3Ed__42_tBE58739AEFC457668D1A21A551058495DE25D1CF_CustomAttributesCacheGenerator_U3CPlayBGMusicU3Ed__42__ctor_mFFAB7A007F6B1D4C7F00345C83D12EB63692A76B,
U3CPlayBGMusicU3Ed__42_tBE58739AEFC457668D1A21A551058495DE25D1CF_CustomAttributesCacheGenerator_U3CPlayBGMusicU3Ed__42_System_IDisposable_Dispose_m1E94383466BB7DD7AD1397F79B3364CD64898D0D,
U3CPlayBGMusicU3Ed__42_tBE58739AEFC457668D1A21A551058495DE25D1CF_CustomAttributesCacheGenerator_U3CPlayBGMusicU3Ed__42_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m459C4D67126F62CDF85254D1E7DB37409FBB8FD8,
U3CPlayBGMusicU3Ed__42_tBE58739AEFC457668D1A21A551058495DE25D1CF_CustomAttributesCacheGenerator_U3CPlayBGMusicU3Ed__42_System_Collections_IEnumerator_Reset_m594A71E029ED124179454C0DB86172B14181DA03,
U3CPlayBGMusicU3Ed__42_tBE58739AEFC457668D1A21A551058495DE25D1CF_CustomAttributesCacheGenerator_U3CPlayBGMusicU3Ed__42_System_Collections_IEnumerator_get_Current_m2853A9C40BE6ECFF82174D82A3A26157ABE9DA05,
U3CPlayeVideoU3Ed__44_t219DED91B915A5A290882ADB49AE0BC747E81150_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__44__ctor_m6241FFA8EA814DAA87E7DF5B513C06B51FEE0EC6,
U3CPlayeVideoU3Ed__44_t219DED91B915A5A290882ADB49AE0BC747E81150_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__44_System_IDisposable_Dispose_m6DCED196146A7ECBDB0F8F5923D6B2D30405552C,
U3CPlayeVideoU3Ed__44_t219DED91B915A5A290882ADB49AE0BC747E81150_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__44_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mA59D798B8123C517273F9FAAFCA98F8434D3BA8E,
U3CPlayeVideoU3Ed__44_t219DED91B915A5A290882ADB49AE0BC747E81150_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__44_System_Collections_IEnumerator_Reset_m58BD92794C1316DEC1C3CD7A47693CE50E87706F,
U3CPlayeVideoU3Ed__44_t219DED91B915A5A290882ADB49AE0BC747E81150_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__44_System_Collections_IEnumerator_get_Current_mFBD51D1025EE0C38647A2897D268CED881D0B477,
TapMain_tDCEEC4415B79C4C821EC29F1412F73F4EF613676_CustomAttributesCacheGenerator_TapMain_LoadBGImg_m3E55E4700FD80843E9A4A2C95D75BDF010EA57B7,
TapMain_tDCEEC4415B79C4C821EC29F1412F73F4EF613676_CustomAttributesCacheGenerator_TapMain_LoadHandImg_m4037BFCC1369C924018EFC3967E86C4D0E39A214,
TapMain_tDCEEC4415B79C4C821EC29F1412F73F4EF613676_CustomAttributesCacheGenerator_TapMain_LoadBGMusic_m72E5021B793854713BB1D684604FDB6358395C4A,
TapMain_tDCEEC4415B79C4C821EC29F1412F73F4EF613676_CustomAttributesCacheGenerator_TapMain_LoadWaterVoice_mA5F4055F0EC0F6423872D693744EA00A889B426B,
U3CLoadBGImgU3Ed__33_t982A3BEA375E5453B90F14211863CFD8E6C470CD_CustomAttributesCacheGenerator_U3CLoadBGImgU3Ed__33__ctor_mE4CAB8D19BD14110F9A934CB0945481E6C6B2D7F,
U3CLoadBGImgU3Ed__33_t982A3BEA375E5453B90F14211863CFD8E6C470CD_CustomAttributesCacheGenerator_U3CLoadBGImgU3Ed__33_System_IDisposable_Dispose_mEE6AF869A519762FD8384DDBDC6631356B9BACBD,
U3CLoadBGImgU3Ed__33_t982A3BEA375E5453B90F14211863CFD8E6C470CD_CustomAttributesCacheGenerator_U3CLoadBGImgU3Ed__33_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m978A2573D6F2792D3DE5651B7BC86E787E3AEB88,
U3CLoadBGImgU3Ed__33_t982A3BEA375E5453B90F14211863CFD8E6C470CD_CustomAttributesCacheGenerator_U3CLoadBGImgU3Ed__33_System_Collections_IEnumerator_Reset_mEE21660F420354E9B959A5744EC2B9D71C1ECE02,
U3CLoadBGImgU3Ed__33_t982A3BEA375E5453B90F14211863CFD8E6C470CD_CustomAttributesCacheGenerator_U3CLoadBGImgU3Ed__33_System_Collections_IEnumerator_get_Current_mCB8C118994469E1DF9122C7E3440D3C1DC9B037D,
U3CLoadHandImgU3Ed__34_t2F162D891050AB1BF8AD4C1C0EF0B19F78425CB9_CustomAttributesCacheGenerator_U3CLoadHandImgU3Ed__34__ctor_m284F5903F6865474766B738231269644772B4492,
U3CLoadHandImgU3Ed__34_t2F162D891050AB1BF8AD4C1C0EF0B19F78425CB9_CustomAttributesCacheGenerator_U3CLoadHandImgU3Ed__34_System_IDisposable_Dispose_mD96E68E82E70B694EF47BA0DD697D8C5E89C4562,
U3CLoadHandImgU3Ed__34_t2F162D891050AB1BF8AD4C1C0EF0B19F78425CB9_CustomAttributesCacheGenerator_U3CLoadHandImgU3Ed__34_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mC03C4C34A34176A17478769BA7A987EB6DA304B8,
U3CLoadHandImgU3Ed__34_t2F162D891050AB1BF8AD4C1C0EF0B19F78425CB9_CustomAttributesCacheGenerator_U3CLoadHandImgU3Ed__34_System_Collections_IEnumerator_Reset_m7154D393D903F420C64396B067664B27C7076636,
U3CLoadHandImgU3Ed__34_t2F162D891050AB1BF8AD4C1C0EF0B19F78425CB9_CustomAttributesCacheGenerator_U3CLoadHandImgU3Ed__34_System_Collections_IEnumerator_get_Current_m5A542E1560C820A53C3C6E0EB16A03473A15C2B9,
U3CLoadBGMusicU3Ed__35_t99F47D987146B5073AE310874A86AA9BD645361F_CustomAttributesCacheGenerator_U3CLoadBGMusicU3Ed__35__ctor_m2C54D16EBE642A389D206488813A32B2B82536F3,
U3CLoadBGMusicU3Ed__35_t99F47D987146B5073AE310874A86AA9BD645361F_CustomAttributesCacheGenerator_U3CLoadBGMusicU3Ed__35_System_IDisposable_Dispose_mE82AE8DDD7A7C21DFFB9C4746FFBFEB799DD0B1C,
U3CLoadBGMusicU3Ed__35_t99F47D987146B5073AE310874A86AA9BD645361F_CustomAttributesCacheGenerator_U3CLoadBGMusicU3Ed__35_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mECA539AAAB42CF8FF6693F16575AC9FD8B908DA9,
U3CLoadBGMusicU3Ed__35_t99F47D987146B5073AE310874A86AA9BD645361F_CustomAttributesCacheGenerator_U3CLoadBGMusicU3Ed__35_System_Collections_IEnumerator_Reset_mFD7DC2768D22EBA11652F541C32DB05DE87765BB,
U3CLoadBGMusicU3Ed__35_t99F47D987146B5073AE310874A86AA9BD645361F_CustomAttributesCacheGenerator_U3CLoadBGMusicU3Ed__35_System_Collections_IEnumerator_get_Current_m092E59D09825730BF1B850C560CFE6F287DBFD09,
U3CLoadWaterVoiceU3Ed__36_t170B26E90F422EEA63B00FA1513E77AE9DADC8FE_CustomAttributesCacheGenerator_U3CLoadWaterVoiceU3Ed__36__ctor_mEEF01B7CC04967EFC052E36102B0C571C0B1469B,
U3CLoadWaterVoiceU3Ed__36_t170B26E90F422EEA63B00FA1513E77AE9DADC8FE_CustomAttributesCacheGenerator_U3CLoadWaterVoiceU3Ed__36_System_IDisposable_Dispose_mB346C9E5E87BAEAE0D2BF66EF5A535947AF270A5,
U3CLoadWaterVoiceU3Ed__36_t170B26E90F422EEA63B00FA1513E77AE9DADC8FE_CustomAttributesCacheGenerator_U3CLoadWaterVoiceU3Ed__36_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m5467229C67866C85D61CACEF9653FEBA828A12D1,
U3CLoadWaterVoiceU3Ed__36_t170B26E90F422EEA63B00FA1513E77AE9DADC8FE_CustomAttributesCacheGenerator_U3CLoadWaterVoiceU3Ed__36_System_Collections_IEnumerator_Reset_m96DCC4F4900C905274A946F767E81812D3A3B253,
U3CLoadWaterVoiceU3Ed__36_t170B26E90F422EEA63B00FA1513E77AE9DADC8FE_CustomAttributesCacheGenerator_U3CLoadWaterVoiceU3Ed__36_System_Collections_IEnumerator_get_Current_mF935C7880B54A43B6F6F60ADF783EF9ADEA2325F,
ball_tEB57FC5009B3ADDC173093C8187A87EF28BD1114_CustomAttributesCacheGenerator_ball_ChangeScaleCoroutine_m67A43E9FD05AC03E0BECABED74D6BF256D97C69A,
U3CChangeScaleCoroutineU3Ed__26_t2918B9C18F293BA64B72C1D58415EA17C13CAA55_CustomAttributesCacheGenerator_U3CChangeScaleCoroutineU3Ed__26__ctor_mA5B2EE2AD2A2C1355ACDDDFD330E3363D1EE3BF0,
U3CChangeScaleCoroutineU3Ed__26_t2918B9C18F293BA64B72C1D58415EA17C13CAA55_CustomAttributesCacheGenerator_U3CChangeScaleCoroutineU3Ed__26_System_IDisposable_Dispose_m945FAA60469ABE8921383E4788078378CF9E36A2,
U3CChangeScaleCoroutineU3Ed__26_t2918B9C18F293BA64B72C1D58415EA17C13CAA55_CustomAttributesCacheGenerator_U3CChangeScaleCoroutineU3Ed__26_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mF2EDA4AAF984D725F56A843CD1F00B7D4081FD01,
U3CChangeScaleCoroutineU3Ed__26_t2918B9C18F293BA64B72C1D58415EA17C13CAA55_CustomAttributesCacheGenerator_U3CChangeScaleCoroutineU3Ed__26_System_Collections_IEnumerator_Reset_m51D919927A11D383732A22CFD697F51385479730,
U3CChangeScaleCoroutineU3Ed__26_t2918B9C18F293BA64B72C1D58415EA17C13CAA55_CustomAttributesCacheGenerator_U3CChangeScaleCoroutineU3Ed__26_System_Collections_IEnumerator_get_Current_m31FF959E7CB1D12AE6C7F60D125CE10C0C4156CB,
home_t2BE8E23355A557A1B5636C553B3F4680B731C8E5_CustomAttributesCacheGenerator_home_PlayeVideo_m4FF24B571693BCD2068FC32B016001B377191577,
U3CPlayeVideoU3Ed__2_tEE6CBE2062BB49044C2122342E90CF42036EEA0F_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__2__ctor_mF7CD5D463125C8B7DCA4CB30C881FA82056BC2F5,
U3CPlayeVideoU3Ed__2_tEE6CBE2062BB49044C2122342E90CF42036EEA0F_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__2_System_IDisposable_Dispose_m21784ADA87D257F293282D08B13A4F22DCD4102B,
U3CPlayeVideoU3Ed__2_tEE6CBE2062BB49044C2122342E90CF42036EEA0F_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__2_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mC7EAC91ADA0D28CB31DC7C920A126D2F7C5A84DF,
U3CPlayeVideoU3Ed__2_tEE6CBE2062BB49044C2122342E90CF42036EEA0F_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__2_System_Collections_IEnumerator_Reset_mD68EB6B3034DA7165CB979952F8DAC6CC263BDC9,
U3CPlayeVideoU3Ed__2_tEE6CBE2062BB49044C2122342E90CF42036EEA0F_CustomAttributesCacheGenerator_U3CPlayeVideoU3Ed__2_System_Collections_IEnumerator_get_Current_m0148BC27667220BE4EB52ADAC150682E157F4206,
EffectAreaExtensions_t654EEBD5E991EA6E3AC56DDCC8A440C29B12A607_CustomAttributesCacheGenerator_EffectAreaExtensions_GetEffectArea_m371294DC2ACDA83539CECFC06C7A78DAA0DB77D7,
EffectAreaExtensions_t654EEBD5E991EA6E3AC56DDCC8A440C29B12A607_CustomAttributesCacheGenerator_EffectAreaExtensions_GetPositionFactor_m831CF9BF5F971A21DFE9A88AF36CDB11B3D2F15C,
EffectAreaExtensions_t654EEBD5E991EA6E3AC56DDCC8A440C29B12A607_CustomAttributesCacheGenerator_EffectAreaExtensions_GetNormalizedFactor_mA9A6865BD1DEB8E7F058FFEB4E70ED9F9C88AC36,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_UIDissolve_U3CModifyMaterialU3Eb__58_0_m6864694301E797DB4BD4F9835D5B3BB2585EF980,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_UIDissolve_U3COnEnableU3Eb__63_0_mA4D4860F75AC9861C810854ECB07D266E3A37196,
MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_MaterialCache_get_hash_mD92E728565BAA2C757C45BAEB9B5A53044C11F16,
MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_MaterialCache_set_hash_m19D8B76BDB8CF8117C36379AC5A87D03A8F7414E,
MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_MaterialCache_get_referenceCount_mFFC60265A780357A53D114060C1C9F6268904AA2,
MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_MaterialCache_set_referenceCount_m799869580E45947378B864AEF12030F1B62198CD,
MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_MaterialCache_get_texture_m38D7333C5AA19BD411218E4B9ED24D7D8319A23A,
MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_MaterialCache_set_texture_mD8F89CBF22D336FE0D73ED82761BF936C496A26A,
MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_MaterialCache_get_material_mE52065D05EC959AE5507157DF6CBFF399074970B,
MaterialCache_tA6E52FA5B97C651CCE6C1185ADF5674EC88D31FD_CustomAttributesCacheGenerator_MaterialCache_set_material_m458C1609B53FC57460A9A0A82F089A1047EFE469,
UIEffectBase_tB335EAAB6DD5927928D8A120DDF2C9F4F5D2FC9E_CustomAttributesCacheGenerator_UIEffectBase_get_parameterIndex_m8F022489733BD2467094370D48C8A00DB9AEBEB2,
UIEffectBase_tB335EAAB6DD5927928D8A120DDF2C9F4F5D2FC9E_CustomAttributesCacheGenerator_UIEffectBase_set_parameterIndex_mB39B240356EB1E93317B8977FE32B3B17F737587,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_UIEffectCapturedImage__SetDirty_m0C3177FBFE668AE5341DA94135B369262A4EFC8B,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_UIEffectCapturedImage__CoUpdateTextureOnNextFrame_mFAF6964F01A897759D2537440EA12A91616BA76E,
U3C_CoUpdateTextureOnNextFrameU3Ed__95_t9C8D68935D7F427151455D75EABE42DB3D053931_CustomAttributesCacheGenerator_U3C_CoUpdateTextureOnNextFrameU3Ed__95__ctor_mEDD4296EEEF82197E55370E67FB0ADE8CA11FC49,
U3C_CoUpdateTextureOnNextFrameU3Ed__95_t9C8D68935D7F427151455D75EABE42DB3D053931_CustomAttributesCacheGenerator_U3C_CoUpdateTextureOnNextFrameU3Ed__95_System_IDisposable_Dispose_mF2407985FE5C45C0EFD75A5F829D3F172549D918,
U3C_CoUpdateTextureOnNextFrameU3Ed__95_t9C8D68935D7F427151455D75EABE42DB3D053931_CustomAttributesCacheGenerator_U3C_CoUpdateTextureOnNextFrameU3Ed__95_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m1360585F8CC74CD3D7E64A27588BD82C391A4161,
U3C_CoUpdateTextureOnNextFrameU3Ed__95_t9C8D68935D7F427151455D75EABE42DB3D053931_CustomAttributesCacheGenerator_U3C_CoUpdateTextureOnNextFrameU3Ed__95_System_Collections_IEnumerator_Reset_m56A33F43CC317424167E365D1832F3FDD721EC02,
U3C_CoUpdateTextureOnNextFrameU3Ed__95_t9C8D68935D7F427151455D75EABE42DB3D053931_CustomAttributesCacheGenerator_U3C_CoUpdateTextureOnNextFrameU3Ed__95_System_Collections_IEnumerator_get_Current_m3E7A9074B0952D172E9DFDEDC672207BA3E4A5BA,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_UIShiny_U3COnEnableU3Eb__62_0_mDD631E9F65D6ED66C149AB61C42D9B32BB46F024,
UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_UITransitionEffect_U3CShowU3Eb__44_0_mD405706E95A6899C489FB9EC5AA0532297EAAA84,
UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_UITransitionEffect_U3CHideU3Eb__45_0_m867522EC024CB8D2C86D68DEE6AA903297835099,
UITransitionEffect_t4C1D058E9CBFFFEAA526C66BFA67ED4FDB9BFE0E_CustomAttributesCacheGenerator_UITransitionEffect_U3CModifyMaterialU3Eb__46_0_m8E56850A1F366263837704C5F78915CABE721F36,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093____location_PropertyInfo,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093____play_PropertyInfo,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093____loop_PropertyInfo,
UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093_CustomAttributesCacheGenerator_UIDissolve_t7A95C414AAFA7ACBADE4CB17A4335654F5F58093____loopDelay_PropertyInfo,
UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB_CustomAttributesCacheGenerator_UIShadow_t2A7EEF30D5A8480E651CC755F895A167427ED7CB____blur_PropertyInfo,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B____toneLevel_PropertyInfo,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B____blur_PropertyInfo,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B____blurFactor_PropertyInfo,
UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B_CustomAttributesCacheGenerator_UIEffect_tC4D872B79A7B471CBC5CF19F2934076C5B03472B____toneMode_PropertyInfo,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489____toneLevel_PropertyInfo,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489____blur_PropertyInfo,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489____toneMode_PropertyInfo,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489____iterations_PropertyInfo,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489____keepCanvasSize_PropertyInfo,
UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489_CustomAttributesCacheGenerator_UIEffectCapturedImage_t9419FC18943E2124CD3B89AC346022BF86F48489____targetTexture_PropertyInfo,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3____location_PropertyInfo,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3____alpha_PropertyInfo,
UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3_CustomAttributesCacheGenerator_UIShiny_tB3EEA0EFEC2AABFB0EEBA314B89860E7C36A16C3____highlight_PropertyInfo,
AssemblyU2DCSharp_CustomAttributesCacheGenerator,
};
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_m_wrapNonExceptionThrows_0(L_0);
return;
}
}