-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdna.txt
7386 lines (6386 loc) · 132 KB
/
dna.txt
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
Field format: type name offset size
Structure format: name size
Link 8
Link *next 0 4
Link *prev 4 4
LinkData 12
LinkData *next 0 4
LinkData *prev 4 4
void *data 8 4
ListBase 8
void *first 0 4
void *last 4 4
vec2s 4
short x 0 2
short y 2 2
vec2f 8
float x 0 4
float y 4 4
vec3f 12
float x 0 4
float y 4 4
float z 8 4
rcti 16
int xmin 0 4
int xmax 4 4
int ymin 8 4
int ymax 12 4
rctf 16
float xmin 0 4
float xmax 4 4
float ymin 8 4
float ymax 12 4
IDPropertyData 20
void *pointer 0 4
ListBase group 4 8
int val 12 4
int val2 16 4
IDProperty 108
IDProperty *next 0 4
IDProperty *prev 4 4
char type 8 1
char subtype 9 1
short flag 10 2
char name 12 64
int saved 76 4
IDPropertyData data 80 20
int len 100 4
int totallen 104 4
ID 100
void *next 0 4
void *prev 4 4
ID *newid 8 4
Library *lib 12 4
char name 16 66
short pad 82 2
short us 84 2
short flag 86 2
int icon_id 88 4
int pad2 92 4
IDProperty *properties 96 4
Library 2160
ID id 0 100
ID *idblock 100 4
FileData *filedata 104 4
char name 108 1024
char filepath 1132 1024
Library *parent 2156 4
PreviewImage 32
int w 0 8
int h 8 8
short changed 16 4
short changed_timestamp 20 4
int *rect 24 8
IpoDriver 140
Object *ob 0 4
short blocktype 4 2
short adrcode 6 2
short type 8 2
short flag 10 2
char name 12 128
IpoCurve 92
IpoCurve *next 0 4
IpoCurve *prev 4 4
BPoint *bp 8 4
BezTriple *bezt 12 4
rctf maxrct 16 16
rctf totrct 32 16
short blocktype 48 2
short adrcode 50 2
short vartype 52 2
short totvert 54 2
short ipo 56 2
short extrap 58 2
short flag 60 2
short rt 62 2
float ymin 64 4
float ymax 68 4
int bitmask 72 4
float slide_min 76 4
float slide_max 80 4
float curval 84 4
IpoDriver *driver 88 4
Ipo 132
ID id 0 100
ListBase curve 100 8
rctf cur 108 16
short blocktype 124 2
short showkey 126 2
short muteipo 128 2
short pad 130 2
KeyBlock 176
KeyBlock *next 0 4
KeyBlock *prev 4 4
float pos 8 4
float curval 12 4
short type 16 2
short pad1 18 2
short relative 20 2
short flag 22 2
int totelem 24 4
int uid 28 4
void *data 32 4
float *weights 36 4
char name 40 64
char vgroup 104 64
float slidermin 168 4
float slidermax 172 4
Key 180
ID id 0 100
AnimData *adt 100 4
KeyBlock *refkey 104 4
char elemstr 108 32
int elemsize 140 4
int pad 144 4
ListBase block 148 8
Ipo *ipo 156 4
ID *from 160 4
short type 164 2
short totkey 166 2
short slurph 168 2
short flag 170 2
float ctime 172 4
int uidgen 176 4
TextLine 24
TextLine *next 0 4
TextLine *prev 4 4
char *line 8 4
char *format 12 4
int len 16 4
int blen 20 4
Text 160
ID id 0 100
char *name 100 4
int flags 104 4
int nlines 108 4
ListBase lines 112 8
TextLine *curl 120 4
TextLine *sell 124 4
int curc 128 4
int selc 132 4
char *undo_buf 136 4
int undo_pos 140 4
int undo_len 144 4
void *compiled 148 4
double mtime 152 8
PackedFile 12
int size 0 4
int seek 4 4
void *data 8 4
Camera 168
ID id 0 100
AnimData *adt 100 4
char type 104 1
char dtx 105 1
short flag 106 2
float passepartalpha 108 4
float clipsta 112 4
float clipend 116 4
float lens 120 4
float ortho_scale 124 4
float drawsize 128 4
float sensor_x 132 4
float sensor_y 136 4
float shiftx 140 4
float shifty 144 4
float YF_dofdist 148 4
Ipo *ipo 152 4
Object *dof_ob 156 4
char sensor_fit 160 1
char pad 161 7
ImageUser 36
Scene *scene 0 4
int framenr 4 4
int frames 8 4
int offset 12 4
int sfra 16 4
char fie_ima 20 1
char cycl 21 1
char ok 22 1
char pad 23 1
short multi_index 24 2
short layer 26 2
short pass 28 2
short flag 30 2
int pad2 32 4
Image 1308
ID id 0 100
char name 100 1024
ListBase ibufs 1124 8
GPUTexture *gputexture 1132 4
anim *anim 1136 4
RenderResult *rr 1140 4
RenderResult *renders 1144 32
short render_slot 1176 2
short last_render_slot 1178 2
short ok 1180 2
short flag 1182 2
short source 1184 2
short type 1186 2
int lastframe 1188 4
short tpageflag 1192 2
short totbind 1194 2
short xrep 1196 2
short yrep 1198 2
short twsta 1200 2
short twend 1202 2
int bindcode 1204 4
int *repbind 1208 4
PackedFile *packedfile 1212 4
PreviewImage *preview 1216 4
float lastupdate 1220 4
int lastused 1224 4
short animspeed 1228 2
short gen_x 1230 2
short gen_y 1232 2
char gen_type 1234 1
char gen_flag 1235 1
float aspx 1236 4
float aspy 1240 4
ColorManagedColorspaceSettings colorspace_settings 1244 64
MTex 304
short texco 0 2
short mapto 2 2
short maptoneg 4 2
short blendtype 6 2
Object *object 8 4
Tex *tex 12 4
char uvname 16 64
char projx 80 1
char projy 81 1
char projz 82 1
char mapping 83 1
float ofs 84 12
float size 96 12
float rot 108 4
short texflag 112 2
short colormodel 114 2
short pmapto 116 2
short pmaptoneg 118 2
short normapspace 120 2
short which_output 122 2
char brush_map_mode 124 1
char pad 125 7
float r 132 4
float g 136 4
float b 140 4
float k 144 4
float def_var 148 4
float rt 152 4
float colfac 156 4
float varfac 160 4
float norfac 164 4
float dispfac 168 4
float warpfac 172 4
float colspecfac 176 4
float mirrfac 180 4
float alphafac 184 4
float difffac 188 4
float specfac 192 4
float emitfac 196 4
float hardfac 200 4
float raymirrfac 204 4
float translfac 208 4
float ambfac 212 4
float colemitfac 216 4
float colreflfac 220 4
float coltransfac 224 4
float densfac 228 4
float scatterfac 232 4
float reflfac 236 4
float timefac 240 4
float lengthfac 244 4
float clumpfac 248 4
float dampfac 252 4
float kinkfac 256 4
float roughfac 260 4
float padensfac 264 4
float gravityfac 268 4
float lifefac 272 4
float sizefac 276 4
float ivelfac 280 4
float fieldfac 284 4
float shadowfac 288 4
float zenupfac 292 4
float zendownfac 296 4
float blendfac 300 4
CBData 24
float r 0 4
float g 4 4
float b 8 4
float a 12 4
float pos 16 4
int cur 20 4
ColorBand 776
short flag 0 2
short tot 2 2
short cur 4 2
short ipotype 6 2
CBData data 8 768
EnvMap 168
Object *object 0 4
Image *ima 4 4
ImBuf *cube 8 24
float imat 32 64
float obimat 96 36
short type 132 2
short stype 134 2
float clipsta 136 4
float clipend 140 4
float viewscale 144 4
int notlay 148 4
short cuberes 152 2
short depth 154 2
int ok 156 4
int lastframe 160 4
short recalc 164 2
short lastsize 166 2
PointDensity 84
short flag 0 2
short falloff_type 2 2
float falloff_softness 4 4
float radius 8 4
short source 12 2
short color_source 14 2
int totpoints 16 4
int pdpad 20 4
Object *object 24 4
int psys 28 4
short psys_cache_space 32 2
short ob_cache_space 34 2
void *point_tree 36 4
float *point_data 40 4
float noise_size 44 4
short noise_depth 48 2
short noise_influence 50 2
short noise_basis 52 2
short pdpad3 54 6
float noise_fac 60 4
float speed_scale 64 4
float falloff_speed_scale 68 4
float pdpad2 72 4
ColorBand *coba 76 4
CurveMapping *falloff_curve 80 4
VoxelData 1080
int resol 0 12
int interp_type 12 4
short file_format 16 2
short flag 18 2
short extend 20 2
short smoked_type 22 2
short data_type 24 2
short pad 26 2
int _pad 28 4
Object *object 32 4
float int_multiplier 36 4
int still_frame 40 4
char source_path 44 1024
float *dataset 1068 4
int cachedframe 1072 4
int ok 1076 4
OceanTex 76
Object *object 0 4
char oceanmod 4 64
int output 68 4
int pad 72 4
Tex 352
ID id 0 100
AnimData *adt 100 4
float noisesize 104 4
float turbul 108 4
float bright 112 4
float contrast 116 4
float saturation 120 4
float rfac 124 4
float gfac 128 4
float bfac 132 4
float filtersize 136 4
float pad2 140 4
float mg_H 144 4
float mg_lacunarity 148 4
float mg_octaves 152 4
float mg_offset 156 4
float mg_gain 160 4
float dist_amount 164 4
float ns_outscale 168 4
float vn_w1 172 4
float vn_w2 176 4
float vn_w3 180 4
float vn_w4 184 4
float vn_mexp 188 4
short vn_distm 192 2
short vn_coltype 194 2
short noisedepth 196 2
short noisetype 198 2
short noisebasis 200 2
short noisebasis2 202 2
short imaflag 204 2
short flag 206 2
short type 208 2
short stype 210 2
float cropxmin 212 4
float cropymin 216 4
float cropxmax 220 4
float cropymax 224 4
int texfilter 228 4
int afmax 232 4
short xrepeat 236 2
short yrepeat 238 2
short extend 240 2
short fie_ima 242 2
int len 244 4
int frames 248 4
int offset 252 4
int sfra 256 4
float checkerdist 260 4
float nabla 264 4
float pad1 268 4
ImageUser iuser 272 36
bNodeTree *nodetree 308 4
Ipo *ipo 312 4
Image *ima 316 4
ColorBand *coba 320 4
EnvMap *env 324 4
PreviewImage *preview 328 4
PointDensity *pd 332 4
VoxelData *vd 336 4
OceanTex *ot 340 4
char use_nodes 344 1
char pad 345 7
TexMapping 140
float loc 0 12
float rot 12 12
float size 24 12
int flag 36 4
char projx 40 1
char projy 41 1
char projz 42 1
char mapping 43 1
int pad 44 4
float mat 48 64
float min 112 12
float max 124 12
Object *ob 136 4
ColorMapping 824
ColorBand coba 0 776
float bright 776 4
float contrast 780 4
float saturation 784 4
int flag 788 4
float blend_color 792 12
float blend_factor 804 4
int blend_type 808 4
int pad 812 12
Lamp 416
ID id 0 100
AnimData *adt 100 4
short type 104 2
short flag 106 2
int mode 108 4
short colormodel 112 2
short totex 114 2
float r 116 4
float g 120 4
float b 124 4
float k 128 4
float shdwr 132 4
float shdwg 136 4
float shdwb 140 4
float shdwpad 144 4
float energy 148 4
float dist 152 4
float spotsize 156 4
float spotblend 160 4
float haint 164 4
float att1 168 4
float att2 172 4
CurveMapping *curfalloff 176 4
short falloff_type 180 2
short pad2 182 2
float clipsta 184 4
float clipend 188 4
float shadspotsize 192 4
float bias 196 4
float soft 200 4
float compressthresh 204 4
float bleedbias 208 4
float pad5 212 8
short bufsize 220 2
short samp 222 2
short buffers 224 2
short filtertype 226 2
char bufflag 228 1
char buftype 229 1
short ray_samp 230 2
short ray_sampy 232 2
short ray_sampz 234 2
short ray_samp_type 236 2
short area_shape 238 2
float area_size 240 4
float area_sizey 244 4
float area_sizez 248 4
float adapt_thresh 252 4
short ray_samp_method 256 2
short shadowmap_type 258 2
short texact 260 2
short shadhalostep 262 2
short sun_effect_type 264 2
short skyblendtype 266 2
float horizon_brightness 268 4
float spread 272 4
float sun_brightness 276 4
float sun_size 280 4
float backscattered_light 284 4
float sun_intensity 288 4
float atm_turbidity 292 4
float atm_inscattering_factor 296 4
float atm_extinction_factor 300 4
float atm_distance_factor 304 4
float skyblendfac 308 4
float sky_exposure 312 4
float shadow_frustum_size 316 4
short sky_colorspace 320 2
char pad4 322 2
Ipo *ipo 324 4
MTex *mtex 328 72
short pr_texture 400 2
short use_nodes 402 2
char pad6 404 4
PreviewImage *preview 408 4
bNodeTree *nodetree 412 4
VolumeSettings 88
float density 0 4
float emission 4 4
float scattering 8 4
float reflection 12 4
float emission_col 16 12
float transmission_col 28 12
float reflection_col 40 12
float density_scale 52 4
float depth_cutoff 56 4
float asymmetry 60 4
short stepsize_type 64 2
short shadeflag 66 2
short shade_type 68 2
short precache_resolution 70 2
float stepsize 72 4
float ms_diff 76 4
float ms_intensity 80 4
float ms_spread 84 4
GameSettings 16
int flag 0 4
int alpha_blend 4 4
int face_orientation 8 4
int pad1 12 4
Material 768
ID id 0 100
AnimData *adt 100 4
short material_type 104 2
short flag 106 2
float r 108 4
float g 112 4
float b 116 4
float specr 120 4
float specg 124 4
float specb 128 4
float mirr 132 4
float mirg 136 4
float mirb 140 4
float ambr 144 4
float ambb 148 4
float ambg 152 4
float amb 156 4
float emit 160 4
float ang 164 4
float spectra 168 4
float ray_mirror 172 4
float alpha 176 4
float ref 180 4
float spec 184 4
float zoffs 188 4
float add 192 4
float translucency 196 4
VolumeSettings vol 200 88
GameSettings game 288 16
float fresnel_mir 304 4
float fresnel_mir_i 308 4
float fresnel_tra 312 4
float fresnel_tra_i 316 4
float filter 320 4
float tx_limit 324 4
float tx_falloff 328 4
short ray_depth 332 2
short ray_depth_tra 334 2
short har 336 2
char seed1 338 1
char seed2 339 1
float gloss_mir 340 4
float gloss_tra 344 4
short samp_gloss_mir 348 2
short samp_gloss_tra 350 2
float adapt_thresh_mir 352 4
float adapt_thresh_tra 356 4
float aniso_gloss_mir 360 4
float dist_mir 364 4
short fadeto_mir 368 2
short shade_flag 370 2
int mode 372 4
int mode_l 376 4
short flarec 380 2
short starc 382 2
short linec 384 2
short ringc 386 2
float hasize 388 4
float flaresize 392 4
float subsize 396 4
float flareboost 400 4
float strand_sta 404 4
float strand_end 408 4
float strand_ease 412 4
float strand_surfnor 416 4
float strand_min 420 4
float strand_widthfade 424 4
char strand_uvname 428 64
float sbias 492 4
float lbias 496 4
float shad_alpha 500 4
int septex 504 4
char rgbsel 508 1
char texact 509 1
char pr_type 510 1
char use_nodes 511 1
short pr_lamp 512 2
short pr_texture 514 2
short ml_flag 516 2
char mapflag 518 1
char pad 519 1
short diff_shader 520 2
short spec_shader 522 2
float roughness 524 4
float refrac 528 4
float param 532 16
float rms 548 4
float darkness 552 4
short texco 556 2
short mapto 558 2
ColorBand *ramp_col 560 4
ColorBand *ramp_spec 564 4
char rampin_col 568 1
char rampin_spec 569 1
char rampblend_col 570 1
char rampblend_spec 571 1
short ramp_show 572 2
short pad3 574 2
float rampfac_col 576 4
float rampfac_spec 580 4
MTex *mtex 584 72
bNodeTree *nodetree 656 4
Ipo *ipo 660 4
Group *group 664 4
PreviewImage *preview 668 4
float friction 672 4
float fh 676 4
float reflect 680 4
float fhdist 684 4
float xyfrict 688 4
short dynamode 692 2
short pad2 694 2
float sss_radius 696 12
float sss_col 708 12
float sss_error 720 4
float sss_scale 724 4
float sss_ior 728 4
float sss_colfac 732 4
float sss_texfac 736 4
float sss_front 740 4
float sss_back 744 4
short sss_flag 748 2
short sss_preset 750 2
int mapto_textured 752 4
short shadowonly_flag 756 2
short index 758 2
ListBase gpumaterial 760 8
VFont 1136
ID id 0 100
char name 100 1024
VFontData *data 1124 4
PackedFile *packedfile 1128 4
PackedFile *temp_pf 1132 4
MetaElem 84
MetaElem *next 0 4
MetaElem *prev 4 4
BoundBox *bb 8 4
short type 12 2
short flag 14 2
short selcol1 16 2
short selcol2 18 2
float x 20 4
float y 24 4
float z 28 4
float quat 32 16
float expx 48 4
float expy 52 4
float expz 56 4
float rad 60 4
float rad2 64 4
float s 68 4
float len 72 4
float *mat 76 4
float *imat 80 4
MetaBall 196
ID id 0 100
AnimData *adt 100 4
BoundBox *bb 104 4
ListBase elems 108 8
ListBase disp 116 8
ListBase *editelems 124 4
Ipo *ipo 128 4
Material **mat 132 4
char flag 136 1
char flag2 137 1
short totcol 138 2
short texflag 140 2
short pad 142 2
float loc 144 12
float size 156 12
float rot 168 12
float wiresize 180 4
float rendersize 184 4
float thresh 188 4
MetaElem *lastelem 192 4
BezTriple 56
float vec 0 36
float alfa 36 4
float weight 40 4
float radius 44 4
short ipo 48 2
char h1 50 1
char h2 51 1
char f1 52 1
char f2 53 1
char f3 54 1
char hide 55 1
BPoint 36
float vec 0 16
float alfa 16 4
float weight 20 4
short f1 24 2
short hide 26 2
float radius 28 4
float pad 32 4
Nurb 56
Nurb *next 0 4
Nurb *prev 4 4
short type 8 2
short mat_nr 10 2
short hide 12 2
short flag 14 2
short pntsu 16 2
short pntsv 18 2
short resolu 20 2
short resolv 22 2
short orderu 24 2
short orderv 26 2
short flagu 28 2
short flagv 30 2
float *knotsu 32 4
float *knotsv 36 4
BPoint *bp 40 4
BezTriple *bezt 44 4
short tilt_interp 48 2
short radius_interp 50 2
int charidx 52 4
CharInfo 8
short kern 0 2
short mat_nr 2 2
char flag 4 1
char pad 5 1
short pad2 6 2
TextBox 16
float x 0 4
float y 4 4
float w 8 4
float h 12 4
EditNurb 20
ListBase nurbs 0 8
GHash *keyindex 8 4
int shapenr 12 4
char pad 16 4
Curve 404
ID id 0 100
AnimData *adt 100 4
BoundBox *bb 104 4
ListBase nurb 108 8
ListBase disp 116 8
EditNurb *editnurb 124 4
Object *bevobj 128 4
Object *taperobj 132 4
Object *textoncurve 136 4
Ipo *ipo 140 4
Path *path 144 4
Key *key 148 4
Material **mat 152 4
ListBase bev 156 8
float loc 164 12
float size 176 12
float rot 188 12
short type 200 2
short texflag 202 2
short drawflag 204 2
short twist_mode 206 2
float twist_smooth 208 4
float smallcaps_scale 212 4
int pathlen 216 4
short bevresol 220 2
short totcol 222 2
int flag 224 4
float width 228 4
float ext1 232 4
float ext2 236 4
short resolu 240 2
short resolv 242 2
short resolu_ren 244 2
short resolv_ren 246 2
int actnu 248 4
void *lastsel 252 4
short len 256 2
short lines 258 2
short pos 260 2
short spacemode 262 2
float spacing 264 4
float linedist 268 4
float shear 272 4
float fsize 276 4
float wordspace 280 4
float ulpos 284 4
float ulheight 288 4
float xof 292 4
float yof 296 4
float linewidth 300 4
char *str 304 4
SelBox *selboxes 308 4
EditFont *editfont 312 4
char family 316 24
VFont *vfont 340 4
VFont *vfontb 344 4
VFont *vfonti 348 4
VFont *vfontbi 352 4
int sepchar 356 4
float ctime 360 4
int totbox 364 4
int actbox 368 4
TextBox *tb 372 4
int selstart 376 4
int selend 380 4
CharInfo *strinfo 384 4
CharInfo curinfo 388 8
float bevfac1 396 4
float bevfac2 400 4
Mesh 1124
ID id 0 100
AnimData *adt 100 4
BoundBox *bb 104 4
Ipo *ipo 108 4
Key *key 112 4
Material **mat 116 4
MSelect *mselect 120 4
MPoly *mpoly 124 4
MTexPoly *mtpoly 128 4
MLoop *mloop 132 4
MLoopUV *mloopuv 136 4
MLoopCol *mloopcol 140 4
MFace *mface 144 4
MTFace *mtface 148 4
TFace *tface 152 4
MVert *mvert 156 4
MEdge *medge 160 4
MDeformVert *dvert 164 4
MCol *mcol 168 4
Mesh *texcomesh 172 4
BMEditMesh *edit_btmesh 176 4
CustomData vdata 180 172
CustomData edata 352 172
CustomData fdata 524 172