Fix one more (one to go!).
[pspp] / notes
1 Files start with 15 bytes:
2     01 00 i3 01 (i0 or i1) (00 or 01) i15
3
4      36 00000000  01 00 03 00 00 00 01 00  00 00 01 15 00 00 00   (most TableData.bin)
5       9 00000000  01 00 03 00 00 00 01 00  00 00 00 15 00 00 00   (*NotesData.bin, *WarningData.bin)
6       1 00000000  01 00 03 00 00 00 01 01  00 00 01 15 00 00 00   (one TableData)
7 Next groups of 4 bytes:
8
9      15 0000000f  32 00 00 00  i50
10      10 0000000f  42 00 00 00  i66
11       9 0000000f  27 00 00 00  i39
12       8 0000000f  a2 00 00 00  i162
13       3 0000000f  31 00 00 00  i49
14       1 0000000f  68 01 00 00  i360
15
16      18 00000013  48 00 00 00  i72
17      10 00000013  60 00 00 00  i96
18       9 00000013  43 00 00 00  i67
19       8 00000013  a2 00 00 00  i162
20       1 00000013  68 01 00 00  i360
21
22 or all 8 bytes together:
23
24       3 0000000f  31 00 00 00 48 00 00 00  i49   i72   (some williams Tables)
25      15 0000000f  32 00 00 00 48 00 00 00  i50   i72   (rest of williams Tables)
26      10 0000000f  42 00 00 00 60 00 00 00  i66   i96   (smekens Tables)
27       9 0000000f  27 00 00 00 43 00 00 00  i39   i67   (germano Tables)
28       8 0000000f  a2 00 00 00 a2 00 00 00  i162 i162   (all Notes)
29       1 0000000f  68 01 00 00 68 01 00 00  i360 i360   (germano Warning)
30
31 Next 8 bytes:
32
33      21 00000017  24 00 00 00 78 00 00 00  i36 i120    (all williams)
34      13 00000017  1c 00 00 00 0a 01 00 00  i28 i266    (all germano)
35      12 00000017  30 00 00 00 a0 00 00 00  i48 i160    (all smekens)
36
37 All 16 bytes starting at offset 15:
38
39      15 0000000f  32 00 00 00 48 00 00 00  24 00 00 00 78 00 00 00  i50  i72  i36 i120
40      10 0000000f  42 00 00 00 60 00 00 00  30 00 00 00 a0 00 00 00  i66  i96  i48 i160
41       9 0000000f  27 00 00 00 43 00 00 00  1c 00 00 00 0a 01 00 00  i39  i67  i28 i266
42       3 0000000f  a2 00 00 00 a2 00 00 00  24 00 00 00 78 00 00 00  i162 i162 i36 i120
43       3 0000000f  a2 00 00 00 a2 00 00 00  1c 00 00 00 0a 01 00 00  i162 i162 i28 i266
44       3 0000000f  31 00 00 00 48 00 00 00  24 00 00 00 78 00 00 00  i49  i72  i36 i120
45       2 0000000f  a2 00 00 00 a2 00 00 00  30 00 00 00 a0 00 00 00  i162 i162 i48 i160 (./smekens/default/00000000011_lightNotesData.bin and ./smekens/modified/00000000011_lightNotesData.bin)
46       1 0000000f  68 01 00 00 68 01 00 00  1c 00 00 00 0a 01 00 00  i360 i360 i28 i266 (./germano/Crosstabs/00000000012_lightWarningData.bin)
47
48 2 bytes at offset 31 appears to be a sequence number within a
49 procedure's output; it begins with 1 with the first .bin file for a
50 procedure and increases, sometimes apparently skipping a number:
51
52       8 0000001f  03 00                                             |..|
53       8 0000001f  01 00                                             |..|
54       7 0000001f  04 00                                             |..|
55       6 0000001f  05 00                                             |..|
56       5 0000001f  07 00                                             |..|
57       5 0000001f  06 00                                             |..|
58       3 0000001f  08 00                                             |..|
59       2 0000001f  09 00                                             |..|
60       1 0000001f  0a 00                                             |..|
61       1 0000001f  02 00                                             |..|
62
63 2 bytes at offset 33 appear to identify a procedure, e.g.: smekens has only one procedure and all the same value:
64      12 00000021  20 73                                             | s|
65 williams has three procedures and increments by 0x10 between them (it looks like a procedure was deleted before output was saved):
66       9 00000021  a0 97                                             |..|
67       4 00000021  b0 97                                             |..|
68       8 00000021  d0 97                                             |..|
69 germano has a similar pattern across the three separate output files:
70       3 00000021  c0 38                                             |.8|
71       2 00000021  e0 38                                             |.8|
72       8 00000021  f0 38                                             |.8|
73
74 Sorting on bytes 33-35 then on 31-32 we get a sorted list of tables:
75
76 blp@sigabrt:~/pspp/spv(0)$ for d in `find -name \*.bin |grep -v chart`; do { hd -s 0x1f -n 6 $d | head -1; printf "%-60s" "$d"; } | sed 'N; s/\n//;' ; echo; done|sort -k 4,4 -k 5,5 -k 2,2|cut -b 1-128
77 0000001f  01 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000011_lightNotesData.bin            
78 0000001f  01 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000011_lightNotesData.bin           
79 0000001f  03 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000013_lightTableData.bin            
80 0000001f  03 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000013_lightTableData.bin           
81 0000001f  04 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000014_lightTableData.bin            
82 0000001f  04 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000014_lightTableData.bin           
83 0000001f  05 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000016_lightTableData.bin            
84 0000001f  05 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000016_lightTableData.bin           
85 0000001f  06 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000017_lightTableData.bin            
86 0000001f  06 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000017_lightTableData.bin           
87 0000001f  07 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000018_lightTableData.bin            
88 0000001f  07 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000018_lightTableData.bin           
89 0000001f  01 00 a0 97 72 67                                 |....rg|./williams/00000000011_lightNotesData.bin                   
90 0000001f  03 00 a0 97 72 67                                 |....rg|./williams/00000000012_lightTableData.bin                   
91 0000001f  04 00 a0 97 72 67                                 |....rg|./williams/000000000131_lightTableData.bin                  
92 0000001f  05 00 a0 97 72 67                                 |....rg|./williams/000000000132_lightTableData.bin                  
93 0000001f  06 00 a0 97 72 67                                 |....rg|./williams/000000000133_lightTableData.bin                  
94 0000001f  07 00 a0 97 72 67                                 |....rg|./williams/000000000134_lightTableData.bin                  
95 0000001f  08 00 a0 97 72 67                                 |....rg|./williams/000000000135_lightTableData.bin                  
96 0000001f  09 00 a0 97 72 67                                 |....rg|./williams/000000000136_lightTableData.bin                  
97 0000001f  0a 00 a0 97 72 67                                 |....rg|./williams/000000000137_lightTableData.bin                  
98 0000001f  01 00 b0 97 72 67                                 |....rg|./williams/00000000031_lightNotesData.bin                   
99 0000001f  03 00 b0 97 72 67                                 |....rg|./williams/00000000032_lightTableData.bin                   
100 0000001f  04 00 b0 97 72 67                                 |....rg|./williams/00000000033_lightTableData.bin                   
101 0000001f  05 00 b0 97 72 67                                 |....rg|./williams/00000000034_lightTableData.bin                   
102 0000001f  01 00 c0 38 3d e1                                 |...8=.|./germano/Frequencies/00000000011_lightNotesData.bin        
103 0000001f  03 00 c0 38 3d e1                                 |...8=.|./germano/Frequencies/00000000012_lightTableData.bin        
104 0000001f  04 00 c0 38 3d e1                                 |...8=.|./germano/Frequencies/00000000013_lightTableData.bin        
105 0000001f  01 00 d0 97 72 67                                 |....rg|./williams/00000000051_lightNotesData.bin                   
106 0000001f  03 00 d0 97 72 67                                 |....rg|./williams/00000000052_lightTableData.bin                   
107 0000001f  04 00 d0 97 72 67                                 |....rg|./williams/00000000053_lightTableData.bin                   
108 0000001f  05 00 d0 97 72 67                                 |....rg|./williams/00000000054_lightTableData.bin                   
109 0000001f  06 00 d0 97 72 67                                 |....rg|./williams/00000000055_lightTableData.bin                   
110 0000001f  07 00 d0 97 72 67                                 |....rg|./williams/00000000056_lightTableData.bin                   
111 0000001f  08 00 d0 97 72 67                                 |....rg|./williams/00000000057_lightTableData.bin                   
112 0000001f  09 00 d0 97 72 67                                 |....rg|./williams/00000000058_lightTableData.bin                   
113 0000001f  01 00 e0 38 3d e1                                 |...8=.|./germano/Descriptives/00000000001_lightNotesData.bin       
114 0000001f  03 00 e0 38 3d e1                                 |...8=.|./germano/Descriptives/00000000002_lightTableData.bin       
115 0000001f  01 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000011_lightNotesData.bin          
116 0000001f  02 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000012_lightWarningData.bin        
117 0000001f  03 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000013_lightTableData.bin          
118 0000001f  04 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000014_lightTableData.bin          
119 0000001f  05 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000015_lightTableData.bin          
120 0000001f  06 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000016_lightTableData.bin          
121 0000001f  07 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000017_lightTableData.bin          
122 0000001f  08 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000018_lightTableData.bin          
123 blp@sigabrt:~/pspp/spv(0)$ 
124
125 Offsets 0x25 and 0x26 are always 5d c6.
126
127
128 Title and Caption
129 -----------------
130
131 starting at 0x27
132
133 tdump19 (title "Descriptive Statistics"):
134   03 "Descriptive Statistics" 58 "" "Descriptive Statistics" 01
135   03 "Descriptive Statistics" 58 "" "Descriptive Statistics" 01
136   31 
137   03 "Descriptive Statistics" 58 "" "Descriptive Statistics" 01
138   58
139
140   58
141
142   i0
143
144 tdump32 (title "Communalities", caption "Extraction Method: Principal Axis Factoring."):
145   03 "Communalities" 58 "" "Communalities" 01
146   03 "Communalities" 58 "" "Communalities" 01
147   31
148   03 "Communalities" 58 "" "Communalities" 01
149   58
150
151   31
152   03 "Extraction Method: Principal Axis Factoring." 58 "" "Extraction Method: Principal Axis Factoring." 01
153
154   i0
155
156 [[]] below shows extra for footnote:
157
158 tdump29 (title "Factor Matrix(a)", caption "Extraction Method: Principal Axis Factoring.", footnote (a) "4 factors extracted. 9 iterations required."):
159   03 "Factor Matrix" [31 01 00 i0 i0 i6: [i0 58 58]] "" 00 "Factor Matrix" 01
160   03 "Factor Matrix" 58 "" "Factor Matrix" 01
161   31
162   03 "Factor Matrix" [31 01 00 i0 i0 i6: [i0 58 58]] "" "Factor Matrix" 01
163   58
164
165   31
166   03 "Extraction Method: Principal Axis Factoring." 58 "" "Extraction Method: Principal Axis Factoring." 00 01
167
168   i0
169
170   58 "^1 factors extracted. ^2 iterations required." i2 i0 
171       01 58 F40.0(4) i0
172       01 58 F40.0(9)
173   58 i1
174
175 tdump30 (title "Rotated Factor Matrix(a)", caption "Extraction Method: Principal Axis Factoring.\nRotation Method: Varimax with Kaiser Normalization.", footnote (a) "Rotation converged in 5 iterations.")
176   03 "Rotated Factor Matrix" [[31 01 00 i0 i0 i6 i0 58]] 58 "" "Rotated Factor Matrix" 01
177   03 "Rotated Factor Matrix" 58 "" "Rotated Factor Matrix" 01
178   31
179   03 "Rotated Factor Matrix" [[31 01 00 i0 i0 i6 i0 58]] 58 "" "Rotated Factor Matrix" 01
180   58
181
182   31 00
183   58 "^1 \n ^2" i2 i0
184     03 "Extraction Method: Principal Axis Factoring." 58 "" "Extraction Method: Principal Axis Factoring." i0 00
185     03 "Rotation Method: Varimax with Kaiser Normalization." 58 "" "Rotation Method: Varimax with Kaiser Normalization." 00 01
186
187   i0
188
189   58 "Rotation converged in ^1 iterations." 01 i0
190       01 58 F40.0(5)
191   58 i1
192
193 tdump10 (title is "Q8_1 It is ..."):
194   05 58 "Q8New_1" "Q8_1 It is ..." 02 
195   03 "Frequencies" 58 "" 00 "Frequencies" 01
196   31
197   05 58 "Q8New_1" "Q8_1 It is ..." 02
198   58
199
200   58
201
202   i0 00
203
204 tdump9 (title with variable substitution, variables have labels): 
205   (00 31 i0 i0 i43: (i37: (i0 31 "[%1: * ^1:]1 Crosstabulation") 58 58) "[%1: * ^1:]1 Crosstabulation" i1 i2 
206       i0 05 58 "Q8New_4" "Q8_4 I think the claims made on..." 02
207       i0 05 58 "Q8New_1" "Q8_1 It is a corporation's..." 02
208   03 "Crosstabulation" 58 "" "Crosstabulation" 01
209   31
210   ((00 31 i0 i0 i43 i37 i0 31)) "[%1: * ^1:]1 Crosstabulation" 58 58 "[%1: * ^1:]1 Crosstabulation" i1 i2
211       i0 05 58 "Q8New_4" "Q8_4 I think the claims made on..." 02
212       i0 05 58 "Q8New_1" "Q8_1 It is a corporation's..." 02
213   58 58 ""
214
215 tdump24 (title with variable substitution, no labels, caption with substitution):
216   ((00 31 i0 i0 i43 i37 i0 31)) "[%1: * ^1:]1 Crosstabulation" 58 58 "[%1: * ^1:]1 Crosstabulation" i1 i2
217       i0 05 58 "cond" "" 03
218       i0 05 58 "fobia" "" 03
219   03 "Crosstabulation" 58 "" "Crosstabulation" 01
220   31
221   ((00 31 i0 i0 i43 i37 i0 31)) "[%1: * ^1:]1 Crosstabulation" 58 58 "[%1: * ^1:]1 Crosstabulation" i1 i2
222       i0 05 58 "cond" "" 03
223       i0 05 58 "fobia" "" 03
224   58
225   31
226   ((00 31 i0 i0 i43 i37 i0 31)) "col prop test on ^1 at ^2..." 58 58 "Each subscript letter denotes a subset of ^1 categories whose column proportions do not differ significantly from each other at the ^2 level." i2
227       i0 05 58 "fobia" "" 03
228       i0 01 58 F6.2(0.05) 00 
229
230 smekens/default/00000000018_lightTableData.bin:
231
232     03 "Factor Transformation Matrix" 58 "" "Factor Transformation Matrix" 01
233     03 "Factor Transformation Matrix" 58 "" "Factor Transformation Matrix" 01
234     31
235     03 "Factor Transformation Matrix" 58 "" "Factor Transformation Matrix" 01
236     58 31
237     00 58 "^1 \n ^2" i2 ""
238         03 "Extraction Method: Principal Axis Factoring. " 58 "" "Extraction Method: Principal Axis Factoring. " i0 00
239         03 "Rotation Method: Varimax with Kaiser Normalization. " 58 "" "Rotation Method: Varimax with Kaiser Normalization. " 
240     i0 00 
241
242 smekens/default/00000000011_lightNotesData.bin:
243
244     03 "Notes" 58 "notes" "Notes" 01
245     03 "Notes" 58 "" "Notes" 01
246     31
247     03 "Notes" 58 "notes" "Notes" 01
248     58 58
249     i0
250
251 web/e5cce7d8b3200a550c0c018fff441e16/000000000344_lightTableData.bin:
252
253     03 "Omnibus Test" 31 i2 00 00 i1 00 00 i11: (i5: (00 00 00 00 58) 58 58) 00 00 00 00 "Omnibus Test" 01
254     03 "OmnibusTest" 58 00 00 00 00 "OmnibusTest" 01
255     31
256     03 "Omnibus Test" 31 i2 00 00 i1 00 00 i11: (i5: (00 00 00 00 58) 58 58) 00 00 00 00 "Omnibus Test" 01
257     58 31
258     00 31 i0 i0 i45: (i39: (00 00 00 00 31 "Dependent ^1 Model [%1:, ^1:]2") 58 58) "Dependent Variable\: ^1\nModel\: [%1:, ^1:]2" i2
259         i0 05 58 "Condom_Casual" "4. How often have you used condoms when you had sex with casual partners?" 02
260         i14 00 00 00 00 03 "(Intercept)" 58 00 00 00 00 "(Intercept)" 00 00 00 00 00 03 
261
262 germano/Crosstabs/00000000014_lightTableData.bin:
263
264     00 31 i0 i0 i43: (i37: (00 00 00 00 31 "[%1: * ^1:]1 Crosstabulation") 58 58) "[%1: * ^1:]1 Crosstabulation" i1 i2 i0
265         05 58 "cond" 00 00 00 00 i3 00
266         05 58 "fobia" 00 00 00 00 03
267     03 "Crosstabulation" 58 "" "Crosstabulation" 01
268     31
269     00 31 i0 i0 i43: (i37: (00 00 00 00 31 "[%1: * ^1:]1 Crosstabulation") 58 58) "[%1: * ^1:]1 Crosstabulation" i1 i2 i0
270         05 58 "cond" 00 00 00 00 i3 00
271         05 58 "fobia" 00 00 00 00 03
272     58 31
273     00 31 i0 i0 i43: (i37: (00 00 00 00 31 "col prop test on ^1 at ^2...") 58 58) "Each subscript letter denotes a subset of ^1 categories whose column proportions do not differ significantly from each other at the ^2 level." i2
274         i0 05 58 "fobia" 00 00 00 00 i3 00
275         01 58 02 06 05 00 9a 99 99 99 99 99 a9 i63 00 
276
277 web/7e29c00c8c2a7e490636b7f74598b6a4/000000002315210_lightTableData.bin:
278
279     05 31 i1 i0 00 00 i11: (i5: (00 00 00 00 58) 58 58) "meaning10" "routine household tasks" 02
280     03 "Frequencies" 58 00 00 00 00 "Frequencies" 01
281     31
282     05 31 i1 i0 00 00 i11: (i5: (00 00 00 00 58) 58 58) "meaning10" "routine household tasks" 02
283     58
284     58 i1 00 31 i0 i0 i36: (i30: (00 00 00 00 31 "[%1 = %2:, ^1 = ^2:]1") 58 58) "[%1 = %2:, ^1 = ^2:]1" i1 i2 i0
285         05 58 "meaning14" "level of enjoyment" i2 00
286         02 58 F40.2(3.80)
287
288 web/67e54cc8a549f4a66331c0401ff4a775/0000000005112_lightTableData.bin:
289
290     00 58 "[:^1:]1" i1 i3 i0
291         01 58 F40.0(2) 00 00 00 00
292         03 ". " 58 00 00 00 00 ". " 00 00 00 00 00
293         03 "Word_Type" 58 00 00 00 00 "Word_Type" 00
294
295     03 "Estimated Marginal Means" 58 00 00 00 00 "Estimated Marginal Means" 01
296
297     31
298
299     00 58 "[:^1:]1" i1 i3 i0
300         01 58 F40.0(2) 00 00 00 00
301         03 ". " 58 00 00 00 00 ". " 00 00 00 00 00
302         03 "Word_Type" 58 00 00 00 00 "Word_Type" 00
303     58
304     58 00 00 00 00 
305
306 web/9c0f5ba2cd60a97194a82cdc67efc3cb/0000000001774_lightTableData.bin:
307
308     03 "Classification Results" 31 i2 00 00 i2 00 00 i6 00 00 00 00 58 58 00 00 00 00 
309     "Classification Results" 01 03 
310     "Classification Results" 58 00 00 00 00 
311     "Classification Results" 01 31 03 
312     "Classification Results" 31 i2 00 00 i2 00 00 i6 00 00 00 00 58 58 00 00 00 00 
313     "Classification Results" 01 58 58 i3 00 58 
314     "^1 of original grouped cases correctly classified." i1 00 00 00 00 01 58 PCT40.1(84.4)
315     58 i1 03 
316     "Cross validation is done only for those cases in the analysis. In cross validation, each case is classified by the functions derived from all cases other than that case." 58 00 00 00 00 
317     "Cross validation is done only for those cases in the analysis. In cross validation, each case is classified by the functions derived from all cases other than that case." 01 58 i1 00 58 
318     "^1 of cross-validated grouped cases correctly classified." i1 00 00 00 00 01 58 PCT40.1(80.0)
319
320
321 Fonts
322 -----
323
324 First number after 40 41 is attributes: 0=plain, 1=bold, ... (?)
325 Second number after 40 41 is horz align: 0=center, 2=left, 1=right(?), 64173="mixed" for data
326 Third number after 40 41 is vert align: 0=center, 1=top, 3=bottom
327 Last four numbers are margins: left, right, top, bottom, probably in points but there's some confusion
328
329 Rows are:
330      01 title
331      02 caption
332      03 footnote
333      04 row labels
334      05 column labels
335      06 corner labels
336      07 data
337      08 layers
338       
339 tdump1 to tdump18:
340     01 31 "SansSerif" 00 00 40 41 i1 i0 i0 00     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i8
341     02 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
342     03 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i11 i8 i3 i4
343     04 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
344     05 31 "SansSerif" 00 00 40 41 i0 i0 00 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4 
345     06 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4
346     07 31 "SansSerif" 00 00 40 41 i0 00 i64173 i0 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
347     08 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4 
348
349 tdump19 to tdump27:
350     01 31 "SansSerif" 00 00 40 41 i1 i0 i0 00     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i8
351     02 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
352     03 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i11 i8 i3 i4
353     04 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
354     05 31 "SansSerif" 00 00 40 41 i0 i0 00 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4
355     06 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4
356     07 31 "SansSerif" 00 00 40 41 i0 00 i64173 i0 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
357     08 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4 
358
359 tdump28 to tdump36:
360     01 31 "SansSerif" 00 00 40 41 i1 i0 i0 00     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i8
361     02 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1
362     03 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i24 i24 i2 i4
363     04 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1
364     05 31 "SansSerif" 00 00 40 41 i0 i0 00 i3     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i4
365     06 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i4
366     07 31 "SansSerif" 00 00 40 41 i0 00 i64173 i1 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1
367     08 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i4 
368
369 tdump37:
370     01 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i-1
371     02 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#1a5f76" "#282a73" i0 i0 00 i8 i10 i1 i1
372     03 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i-1 i-1 i-1 i-1
373     04 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1
374     05 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i-1
375     06 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i-1
376     07 31 "SansSerif" 00 00 40 41 i0 00 i64173 i1 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1
377     08 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i-1 
378
379 Styles
380 ------
381
382 tdump1:
383
384     i240 followed by 240 bytes:
385         00 00 00 i1  i19 i5 03
386         i255 00 00 00 i16 00
387         i255 00 00 00 i6  03
388         i255 00 00 00 i17 01
389         i255 00 00 00 i7  03
390         i255 00 00 00 i18 01
391         i255 00 00 00 i8  03
392         i255 00 00 00 i9  03
393         i255 00 00 00 i10 03
394         i255 00 00 00 i0  00
395         i255 00 00 00 i11 01
396         i255 00 00 00 i1  00
397         i255 00 00 00 i12 00
398         i255 00 00 00 i2  00
399         i255 00 00 00 i13 01
400         i255 00 00 00 i3  00
401         i255 00 00 00 i14 01
402         i255 00 00 00 i4  00
403         i255 00 00 00 i15 00
404         i255 00 00 00 00
405
406     i18 followed by 18 bytes:
407         00 00 00 i1 00 00 00 00 00 00 i2 00
408
409     i142 followed by 142 bytes:
410         00 00 00
411         i1 i4 00 01 01 01
412         i1 00 i24
413         00*28
414         "Default" but with 1-byte length (07).
415         00*34
416
417     i0 "en_NZ.windows-1252"
418     i0 01 00 01 99 07 00 00
419     '.' ',' i5 "-,,," "-,,," "-,,," "-,,," "-,,,"
420
421     i355 followed by 355 bytes:
422         i53:
423             00 01 00 00 02 i2 00*23 01
424             i16:
425                 00*16
426         26 01 00 00 01 00 i4 
427         "Regression" 00 00 00 00 
428         "en" 
429         "windows-1252" 
430         "en_NZ.windows-1252"
431         01 00 01 01 99 07 00 00 '.' ',' 0.0001 
432         "DataSet2" 
433         "C:\Users\jwilliams\Dropbox\Research\Collaboration\Marketing\Lifestyles\NEW 649917092_Consumer NZ Survey_Merged_FinalData_SPSS_V02.sav" 00 00 00 00 58 54 2b i84 00
434         i5 "-,,," "-,,," "-,,," "-,,," "-,,," '.'
435         00
436
437 tdump19:
438
439     i240 followed by 240 bytes:
440         00 00 00 i1 i19 i9 03 i255
441         00 00 00 i10 03 i255
442         00 00 00 i0 00 i255
443         00 00 00 i11 01 i255
444         00 00 00 i1 00 i255
445         00 00 00 i12 00 i255
446         00 00 00 i2 00 i255
447         00 00 00 i13 01 i255
448         00 00 00 i3 00 i255
449         00 00 00 i14 01 i255
450         00 00 00 i4 00 i255
451         00 00 00 i15 00 i255
452         00 00 00 i5 03 i255
453         00 00 00 i16 00 i255
454         00 00 00 i6 03 i255
455         00 00 00 i17 01 i255
456         00 00 00 i7 03 i255
457         00 00 00 i18 01 i255
458         00 00 00 i8 03 i255
459         00 00 00 00
460
461     i18 followed by 18 bytes:
462         00 00 00
463         i1 00 00 00 00 00 00
464         i2 00
465
466     i117 followed by 117 bytes:
467         00 00 00
468         i1 i3 00 01 01 01
469         i1 00 i24
470         00*93
471
472     i0 "it_IT.windows-1252"
473     i0 00 00 00 99 07 00 00
474     ',' '.' i5 "-,,," "-,,," "-,,," "-,,," "-,,,"
475
476     i196 followed by 196 bytes:
477         i53:
478             00 01 00 00 03 i3 00*23 01
479             i16:
480                 00*16
481         i135:
482             01 00 i3 
483             "Descriptives" 00 00 00 00 
484             "en" 
485             "windows-1252" 
486             "it_IT.windows-1252"
487             00 00 00 01 99 07 00 00 ',' '.' 0.000100 01
488             i5 "-,,," "-,,," "-,,," "-,,," "-,,," '.'
489             00
490
491 tdump28:
492
493     i240 followed by 240 bytes:
494         00 00 00 i1 i19 i9 03 i255
495         00 00 00 i3 00 i255
496         00 00 00 i16 00 i255
497         00 00 00 i10 03 i255
498         00 00 00 i4 00 i255
499         00 00 00 i17 01 i255
500         00 00 00 i11 01 i255
501         00 00 00 i5 03 i255
502         00 00 00 i18 01 i255
503         00 00 00 i12 00 i255
504         00 00 00 i6 03 i255
505         00 00 00 i0 00 i255
506         00 00 00 i13 01 i255
507         00 00 00 i7 03 i255
508         00 00 00 i1 00 i255
509         00 00 00 i14 01 i255
510         00 00 00 i8 03 i255
511         00 00 00 i2 00 i255
512         00 00 00 i15 00 i255
513         00 00 00 00
514
515     i18 followed by 18 bytes:
516         00 00 00
517         i1 00 00 00 00 00 00
518         i2 00
519
520     i117 followed by 117 bytes:
521         00 00 00
522         i1 i3 00 01 01 01 01
523         i2 i24
524         00*93
525
526     i0 "nl_BE.windows-1252"
527     i0 00 00 00 99 07 00 00
528     ',' ' ' i5 "-,,," "-,,," "-,,," "-,,," "-,,,"
529
530     i199:
531         i53:
532             00*32 01
533             i16:
534                 00*16
535         i138:
536             01 00 i3 
537             "Factor Analysis" 00 00 00 00 
538             "en" 
539             "windows-1252" 
540             "nl_BE.windows-1252" 00 00 00 01 99 07 00 00 ',' ' ' 0.000100 01
541             i5 "-,,," "-,,," "-,,," "-,,," "-,,," '.'
542             00 
543
544
545 Dimensions
546 ----------
547
548 format: dd ww ff 00, e.g. F40.1 is 01 28 05 00
549 01 - double (01 58 format double)
550 02 - instance of a numeric variable (02 58 format double "varname" "Variable Label")
551 03 - just a string (03 "Short Name" 58 "identifier" "Long Name")
552 04 - instance of a string variable (04 58 format "vallab" "varname" 02 "value"
553 05 - variable (05 58 "varname" "Variable Label")
554
555
556 tdump5 (./williams/000000000135_lightTableData.bin):
557
558     i2
559
560     05 58 "Q8New_5" "Q8_5 I would..." 02 00 00 i2 01 00 i1 00 i3
561         03 "Valid" 58 "valid" "Valid"                            01 00 00 01 i2 i-1 i2
562             01 58 F40.0(0)                                          01 00 01 i2 i-1 i1
563                 01 58 F40.0(-1)                                     01 00 01 i0 i-1 i5
564                     02 58 F40.0(1) "Q8New_5" "Strongly disagree"           i2 i2 i0 i0
565                     02 58 F40.0(2) "Q8New_5" "Disgaree"                    i2 i2 i1 i0
566                     02 58 F40.0(3) "Q8New_5" "Neutral"                     i2 i2 i2 i0
567                     02 58 F40.0(4) "Q8New_5" "Agree"                       i2 i2 i3 i0
568                     02 58 F40.0(5) "Q8New_5" "Strongly agree"              i2 i2 i4 i0
569             03 "Total" 58 "total_4" "Total" i1 i2 i5 i0
570         03 "Missing" 58 "missing_observations" "Missing"         01 00 00 01 i2 i-1 i1
571             03 "System" 58 "gsysmis" "System Missing"                      i1 i2 i6 i0
572         03 "Total" 58 "total_4" "Total"                                    i1 i2 i7 i0
573
574     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i4
575         03 "Frequency" 58 "frequency" "Frequency" i1 i2 00 00 00 00 00 00 00 00
576         03 "Percent" 58 "percent" "Percent" i1 i2 i1 00 00 00 00
577         03 "Valid Percent" 58 "valid_percent" "Valid Percent" i1 i2 i2 00 00 00 00
578         03 "Cumulative Percent" 58 "cumulative_percent" "Cumulative Percent" i1 i2 i3 i0
579
580 tdump9 (./williams/00000000033_lightTableData.bin):
581
582     i3
583
584     05 58 "Q8New_4" "Q8_4 I think..." 02 00 00 i2 01 00 i1 00 i2
585         05 58 "Q8New_4" "Q8_4 I think..." 02 00 00 i1 00 ff ff ff ff i5
586             02 58 F40.0(1) "Q8New_4" "Strongly disagree" i2 i2 00 00 00 00 00 00 00 00
587             02 58 F40.0(2) "Q8New_4" "Disgaree" i2 i2 i1 00 00 00 00
588             02 58 F40.0(3) "Q8New_4" "Neutral" i2 i2 i2 00 00 00 00
589             02 58 F40.0(4) "Q8New_4" "Agree" i2 i2 i3 00 00 00 00
590             02 58 F40.0(5) "Q8New_4" "Strongly agree" i2 i2 i4 00 00 00 00
591         03 "Total" 58 "total_4" "Total" i1 i2 i5 00 00 00 00
592
593     05 58 "Q8New_1" "Q8_1 It is a..." 02 00 00 i2 01 00 01 i1 i2
594         05 58 "Q8New_1" "Q8_1 It is a..." 02 00 00 i1 00 ff ff ff ff i5
595             02 58 F40.0(1) "Q8New_1" "Strongly disagree" i2 i2 00 00 00 00 00 00 00 00
596             02 58 F40.0(2) "Q8New_1" "Disgaree" i2 i2 i1 00 00 00 00
597             02 58 F40.0(3) "Q8New_1" "Neutral" i2 i2 i2 00 00 00 00
598             02 58 F40.0(4) "Q8New_1" "Agree" i2 i2 i3 00 00 00 00
599             02 58 F40.0(5) "Q8New_1" "Strongly agree" i2 i2 i4 00 00 00 00
600         03 "Total" 58 "total_4" "Total" i1 i2 i5 00 00 00 00
601
602     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i4
603         03 "Count" 58 "count_6" "Count" i1 i2 00 00 00 00 00 00 00 00
604         03 "Expected Count" 58 "expected_count" "Expected Count" i1 i2 i1 i0 00
605         31 i0 i0 i26: (i20: (i0 31 "row % of ^1") 58 58) "% within ^1" i1 i0
606             05 58 "Q8New_4" "Q8_4 I think..." i2                            i2 i2 i0
607         03 "Adjusted Residual" 58 "adjusted_standardized_residual" "Adjusted Residual" i1 i2 i3 00 00 00 00 00 00 00 00 
608
609 tdump14 (./williams/00000000034_lightTableData.bin):
610
611     i2
612
613     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i4
614         03 "A" 58 "" "A" 00 01 00 01 i2 i-1 i2
615             03 "Pearson Chi-Square" 58 "chi-square_crosstabs_1" "Pearson Chi-Square" i1 i2 00 00 00 00 00 00 00 00
616             03 "Continuity Correction" 58 "yates_correction_for_continuity" "Continuity Correction" i1 i2 i1 00 00 00 00
617         03 "B" 58 "" "B" 00 01 00 01 i2 i-1 i1
618             03 "Likelihood Ratio" 58 "likelihood-ratio_chi-square" "Likelihood Ratio" i1 i2 i2 00 00 00 00
619         03 "Linear-by-Linear Association" 58 "linear-by-linear_association_crosstabs" "Linear-by-Linear Association" i1 i2 i3 00 00 00 00
620         03 "N of Valid Cases" 58 "valid" "N of Valid Cases" i1 i2 i4 00 00 00 00
621
622     03 "Values" 58 "values_10" "Values" 01 00 01 i2 01 00 01 i1 i3
623         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00
624         03 "df" 58 "df" "df" i1 i2 i1 00 00 00 00
625         03 "Asymp. Sig. (2-sided)" 58 "asymptotic_significance" "Asymptotic Significance" i1 i2 i2 00 00 00 00
626
627
628 tdump15 (./williams/00000000032_lightTableData.bin):
629
630     i3
631
632     03 "Crosstabulation" 58 "crosstabulation" "Crosstabulation" 01 00 00 i2 01 00 i1 00 i1
633         00 31 i0 i0 i27: (i21: (i0 31 "[%1: * ^1:]1") 58 58) "[%1: * ^1:]1"       i1 i2 i0
634             05 58 "Q8New_4" "Q8_4 I think..." i2 00
635             05 58 "Q8New_1" "Q8_1 It is a..." i2                                  i2 i0 i0
636
637     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i2
638         03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00
639         03 "Percent" 58 "percent_2" "Percent" i1 i2 i1 00 00 00 00
640
641     03 "Cases" 58 "cases" "Cases" 01 00 01 i2 00 00 01 i2 i3
642         03 "Valid" 58 "valid" "Valid" i1 i2 00 00 00 00 00 00 00 00
643         03 "Missing" 58 "missing_observations" "Missing" i1 i2 i1 00 00 00 00
644         03 "Total" 58 "total_4" "Total" i1 i2 i2 i0
645
646 tdump19:
647
648     i3 (three dimensions)
649
650     03 "Stat Type" 58 "stat_type" "Stat Type"                                 01 00 00    i2 01 00 i1 00 i2
651         03 "Statistic" 58 "statistic" "Statistic"                             01 00 00 00 i2 i0 00 00 00 00
652         03 "Std. Error" 58 "standard_error" "Std. Error"                      01 00 00 00 i2 i1 00 00 00 00
653
654     03 "Statistics" 58 "statistics_10" "Statistics"                           01 00    01 i2 01 00 01 i1 i10
655         03 "N" 58 "n" "N"                                                     01 00 00 00 i2 i0 00 00 00 00
656         03 "Range" 58 "range" "Range"                                         01 00 00 00 i2 i1 00 00 00 00
657         03 "Minimum" 58 "minimum" "Minimum"                                   01 00 00 00 i2 i2 00 00 00 00
658         03 "Maximum" 58 "maximum" "Maximum"                                   01 00 00 00 i2 i3 00 00 00 00
659         03 "Sum" 58 "sum" "Sum"                                               01 00 00 00 i2 i4 00 00 00 00
660         03 "Mean" 58 "mean" "Mean"                                            01 00 00 00 i2 i5 00 00 00 00
661         03 "Std. Deviation" 58 "gbar11" "Std. Deviation"                      01 00 00 00 i2 i6 00 00 00 00
662         03 "Variance" 58 "variance" "Variance"                                01 00 00 00 i2 i7 00 00 00 00
663         03 "Skewness" 58 "skewness" "Skewness"                                01 00 00 00 i2 i8 00 00 00 00
664         03 "Kurtosis" 58 "kurtosis" "Kurtosis"                                01 00 00 00 i2 i9 00 00 00 00
665
666     03 "Variables" 58 "variable_s_1" "Variables"                              01 00    01 i2 01 00 01 i2 i4
667         05 58 "fqc_b"                                                      00 00 00 00 i3 i2 00 00 00 00 00 00 00 00
668         05 58 "fqc_p"                                                      00 00 00 00 i3 i2 i1 00 00 00 00
669         05 58 "fqc_d"                                                      00 00 00 00 i3 i2 i2 00 00 00 00
670         03 "Valid N (listwise)" 58 "valid_n_listwise" "Valid N (listwise)"    01 00 00 00 i2 i3 00 00 00 00
671
672
673
674 tdump20 ./germano/Crosstabs/00000000018_lightTableData.bin:
675
676     i2
677
678     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i1 00 
679         31 i0 i42: (i36: (i0 31 "Odds Ratio for ^1 (^2 / ^3)") 58 58) "Odds Ratio for ^1 (^2 / ^3)" i3 i0
680             05 58 "cond" "" i3 00
681             02 58 F40.0(1) "cond" "" i3 00
682             02 58 F40.0(2) "cond" "" i3                                             i2 i0 i0
683
684     03 "Values" 58 "values_10" "Values" 01 00 01 i2 01 00 01 i1 i1
685         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00 00 00 00 00 i1 i1 00 00 00 00 i
686
687 tdump27 (germano/Frequencies.pdf):
688
689     i2 (two dimensions)
690
691     03 "Variables" 58 "variable_s_1" "Variables"                               01 00 02 i2 01 00 i1 00 i1 
692         05 58 "fobia" ""                                                                      i3 i2 i0 i0
693
694     03 "Statistics" 58 "statistics_10" "Statistics" 01                           00 00 i2 01 00 01 i1 i16
695         03 "N" 58 "n" "N" 01 00 00                                                           01 i2 i-1 i2
696             03 "Valid" 58 "valid" "Valid i1                                                      i2 i0 i0
697             03 "Missing" 58 "missing_observations" "Missing" i1                                  i2 i1 i0
698         03 "Mean" 58 "mean" "Mean i1                                                             i2 i2 i0
699         03 "Std. Error of Mean" 58 "gfreq13" "Std. Error of Mean" i1                             i2 i3 i0
700         03 "Median" 58 "median" "Median" i1                                                      i2 i4 i0
701         03 "Mode" 58 "mode_frequencies" "Mode" i1                                                i2 i5 i0
702         03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1                                      i2 i6 i0
703         03 "Variance" 58 "variance" "Variance" i1                                                i2 i7 i0
704         03 "Skewness" 58 "skewness" "Skewness" i1                                                i2 i8 i0
705         03 "Std. Error of Skewness" 58 "standard_error_of_skewness" "Std. Error of Skewness" i1  i2 i9 i0
706         03 "Kurtosis" 58 "kurtosis" "Kurtosis" i1                                                i2 i10 i0
707         03 "Std. Error of Kurtosis" 58 "standard_error_of_kurtosis" "Std. Error of Kurtosis" i1  i2 i11 i0
708         03 "Range" 58 "range" "Range" i1                                                         i2 i12 i0
709         03 "Minimum" 58 "minimum" "Minimum" i1                                                   i2 i13 i0
710         03 "Maximum" 58 "maximum" "Maximum" i1                                                   i2 i14 i0
711         03 "Sum" 58 "sum" "Sum" i1                                                               i2 i15 i0
712         03 "Percentiles" 58 "percentiles" "Percentiles" 01 00 00                              01 i2 i-1 i5
713             01 58 F3.0(10.0) 00 00 00                                                            i2 i16 i0
714             01 58 F3.0(25.0) 00 00 00                                                            i2 i17 i0
715             01 58 F3.0(50.0) 00 00 00                                                            i2 i18 i0
716             01 58 F3.0(75.0) 00 00 00                                                            i2 i19 i0
717             01 58 F3.0(90.0) 00 00 00                                                            i2 i20 i0
718
719 tdump24 (germano/Crosstabs.pdf):
720
721     i3 (three dimensions)
722
723     05 58 "cond" "" 03 00 00            i2 01 00 i1 00 i2
724         05 58 "cond" "" 03 00 00        i1 00 i-1 i4
725             02 58 F40.0(1) "cond" "" i3     i2 i0 i0
726             02 58 F40.0(2) "cond" "" i3     i2 i1 i0
727             02 58 F40.0(3) "cond" "" i3     i2 i2 i0
728             02 58 F40.0(4) "cond" "" i3     i2 i3 i0
729         03 "Total" 58 "total_4" "Total" i1  i2 i4 i0
730
731     05 58 "fobia" "" 03 00 00              i2 01 00 01 i1 i2
732         05 58 "fobia" "" 03 00 00          i1 00 i-1 i11
733             02 58 F40.0(0) "fobia" "" i3   i2 i0 i0
734             02 58 F40.0(1) "fobia" "" i3   i2 i1 i0
735             02 58 F40.0(2) "fobia" "" i3   i2 i2 i0
736             02 58 F40.0(3) "fobia" "" i3   i2 i3 i0
737             02 58 F40.0(4) "fobia" "" i3   i2 i4 i0
738             02 58 F40.0(5) "fobia" "" i3   i2 i5 i0
739             02 58 F40.0(6) "fobia" "" i3   i2 i6 i0
740             02 58 F40.0(7) "fobia" "" i3   i2 i7 i0
741             02 58 F40.0(8) "fobia" "" i3   i2 i8 i0
742             02 58 F40.0(9) "fobia" "" i3   i2 i9 i0
743             02 58 F40.0(10) "fobia" "" i3  i2 i10 i0
744         03 "Total" 58 "total_4" "Total" i1 i2 i11 i0
745
746     03 "Statistics" 58 "statistics_10" "Statistics" 01  00 01 i2 01 00 01 i2 i8
747         03 "Count" 58 "count_6" "Count" i1                             i2 i0 i0
748         03 "Expected Count" 58 "expected_count" "Expected Count" i1    i2 i1 i0 00
749         31 i0 i0 i26: (i20: (i0 31 "row % of ^1") 58 58) "% within ^1" i1 i0
750             05 58 "cond" "" i3                                         i2 i2 i0 00
751         31 i0 i0 i26: (i20: (i0 31 "col % of ^1") 58 58) "% within ^1" i1 i0
752             05 58 "fobia" "" i3                                        i2 i3 i0
753         03 "% of Total" 58 "_pct_of_total" "% of Total" i1             i2 i4 i0
754         03 "Residual" 58 "residual_3" "Residual" i1                    i2 i5 i0
755         03 "Std. Residual" 58 "std_residuals" "Std. Residual" i1       i2 i6 i0
756         03 "Adj. Residual" 58 "adj_residuals" "Adj. Residual" i1       i2 i7 i0
757
758
759 tdump25 (germano/Crosstabs.pdf):
760
761     i3 (3 dimensions)
762
763     03 "Crosstabulation" 58 "crosstabulation" "Crosstabulation" 01 00 00 i2 01 00 i1 00 i1
764         00 31 i0 i0 i27: (i21: (i0 31 "[%1: * ^1:]1") 58 58) "[%1: * ^1:]1" i1 i2 i0
765             05 58 "cond" "" i3 00
766             05 58 "fobia" "" i3 i2 i0 i0
767
768     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i2
769         03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00
770         03 "Percent" 58 "percent_2" "Percent" i1 i2 i1 00 00 00 00
771
772     03 "Cases" 58 "cases" "Cases" 01 00 01 i2 00 00 01 i2 i3
773         03 "Valid" 58 "valid" "Valid" i1 i2 i0 i0
774         03 "Missing" 58 "missing_observations" "Missing" i1 i2 i1 i0
775         03 "Total" 58 "total_4" "Total" i1 i2 i2 i0
776
777 tdump21 ./germano/Crosstabs/00000000016_lightTableData.bin (Directional Measures):
778
779     i3 (three dimensions)
780
781     03 "Direction" 58 "direction" "Direction" 01 00 00 i2 01 00 i1 00 i3
782         03 "Symmetric" 58 "symmetric" "Symmetric"                  i1 i2 i0 i0 00
783         31 i0 i0 i27: (i21: (i0 31 "^1 Dependent") 58 58) "^1 Dependent" i1 i0
784             05 58 "cond" ""                                        i3 i2 i1 i0 00
785         31 i0 i0 i27: (i21: (i0 31 "^1 Dependent") 58 58) "^1 Dependent" i1 i0
786             05 58 "fobia" ""                                       i3 i2 i2 i0
787
788     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 01 i1 i3
789         03 "Nominal by Nominal" 58 "nominal_measures" "Nominal by Nominal" 01 00 00 01 i2 i-1 i3
790             03 "Lambda" 58 "lambda" "Lambda" i1 i2 00 00 00 00 00 00 00 00
791             03 "Goodman and Kruskal tau" 58 "goodman_and_kruskals_tau" "Goodman and Kruskal tau" i1 i2 i1 00 00 00 00
792             03 "Uncertainty Coefficient" 58 "uncertainty_coefficient" "Uncertainty Coefficient" i1 i2 i2 00 00 00 00
793         03 "Ordinal by Ordinal" 58 "ordinal_measures" "Ordinal by Ordinal" 01 00 00 01 i2 i-1 i1
794             03 "Somers' d" 58 "somers_d" "Somers' d" i1 i2 i3 00 00 00 00
795         03 "Nominal by Interval" 58 "nominal_by_interval_measures" "Nominal by Interval" 01 00 00 01 i2 i-1 i1
796             03 "Eta" 58 "eta_crosstabs" "Eta" i1 i2 i4 00 00 00 00
797
798     03 "Values" 58 "values_10" "Values" 01 00 01 i2 01 00 01 i2 i4
799         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00
800         03 "Asymp. Std. Error" 31 i1 i0 00 00 i11: (i5: ("" 58) 58 58) "asymptotic_standard_error" "Asymptotic Std. Error" i1 i2 i1 00 00 00 00
801         03 "Approx. T" 31 i1 i1 00 00 i11: (i5: ("" 58) 58 58) "approximate_t" "Approximate T" i1 i2 i2 00 00 00 00
802         03 "Approx. Sig." 58 "approximate_probability" "Approximate Significance" i1 i2 i3 00 00 00 00 00 00 00 00 i2 i1 00 00 00 00 i1 i2 i44
803
804 tdump22 ./germano/Crosstabs/00000000017_lightTableData.bin (Symmetric Measures):
805
806 This is a good example for footnotes: there are three footnotes in the table and two of them are referenced from the dimensions.
807
808     i2
809
810     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i5
811         03 "Nominal by Nominal" 58 "nominal_measures" "Nominal by Nominal" 01 00 00 01 i2 ff ff ff ff i3
812             03 "Phi" 58 "phi" "Phi" i1 i2 00 00 00 00 00 00 00 00
813             03 "Cramer's V" 58 "cramers_v" "Cramer's V" i1 i2 i1 00 00 00 00
814             03 "Contingency Coefficient" 58 "contingency_coefficient" "Contingency Coefficient" i1 i2 i2 00 00 00 00
815         03 "Ordinal by Ordinal" 58 "ordinal_measures" "Ordinal by Ordinal" 01 00 00 01 i2 ff ff ff ff i4
816             03 "Kendall's tau-b" 58 "kendalls_tau-b_1" "Kendall's tau-b" i1 i2 i3 00 00 00 00
817             03 "Kendall's tau-c" 58 "kendalls_tau-c" "Kendall's tau-c" i1 i2 i4 00 00 00 00 
818             03 "Gamma" 58 "gamma" "Gamma" i1 i2 i5 00 00 00 00
819             03 "Spearman Correlation" 58 "spearman_correlation" "Spearman Correlation" i1 i2 i7 00 00 00 00
820         03 "Interval by Interval" 58 00 00 00 00 "Interval by Interval" 01 00 00 01 i2 ff ff ff ff i1
821             03 "Pearson's R" 58 "pearson_correlation_coefficient" "Pearson's R" i1 i2 i6 00 00 00 00
822         03 "Measure of Agreement" 58 "other" "Measure of Agreement" 01 00 00 01 i2 ff ff ff ff i1
823             03 "Kappa" 58 "kappa" "Kappa" i1 i2 i8 00 00 00 00
824         03 "N of Valid Cases" 58 "valid" "N of Valid Cases" i1 i2 i9 00 00 00 00
825
826     03 "Values" 58 "values_10" "Values" 01 00 01 i2 01 00 01 i1 i4
827         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00
828         03 "Asymp. Std. Error" 31 i1 i0 00 00 i11: (i5: (i0 58) 58 58) "ase" "Asymptotic Std. Error" i1 i2 i1 00 00 00 00
829         03 "Approx. T"         31 i1 i1 00 00 i11: (i5: (i0 58) 58 58) "approximate_t" "Approximate T" i1 i2 i2 00 00 00 00 
830         03 "Approx. Sig." 58 "approximate_probability" "Approximate Significance" i1 i2 i3 i0 i0
831
832 tdump24 ./germano/Crosstabs/00000000014_lightTableData.bin
833
834     i3
835
836     05 58 "cond" 00 00 00 00 03 00 00 i2 01 00 i1 00 i2
837         05 58 "cond" 00 00 00 00 03 00 00 i1 00 ff ff ff ff i4
838             02 58 F40.0(1) "cond" 00 00 00 00 i3 i2 00 00 00 00 00 00 00 00 
839             02 58 F40.0(2) "cond" 00 00 00 00 i3 i2 i1 00 00 00 00
840             02 58 F40.0(3) "cond" 00 00 00 00 i3 i2 i2 00 00 00 00
841             02 58 F40.0(4) "cond" 00 00 00 00 i3 i2 i3 00 00 00 00
842         03 "Total" 58 "total_4" "Total" i1 i2 i4 00 00 00 00
843     05 58 "fobia" 00 00 00 00 03 00 00 i2 01 00 01 i1 i2
844         05 58 "fobia" 00 00 00 00 03 00 00 i1 00 ff ff ff ff i11
845             02 58 F40.0(0) "fobia" 00 00 00 00 i3 i2 00 00 00 00 00 00 00 00
846             02 58 F40.0(1) "fobia" 00 00 00 00 i3 i2 i1 00 00 00 00 
847             02 58 F40.0(2) "fobia" 00 00 00 00 i3 i2 i2 00 00 00 00
848             02 58 F40.0(3) "fobia" 00 00 00 00 i3 i2 i3 00 00 00 00
849             02 58 F40.0(4) "fobia" 00 00 00 00 i3 i2 i4 00 00 00 00
850             02 58 F40.0(5) "fobia" 00 00 00 00 i3 i2 i5 00 00 00 00
851             02 58 F40.0(6) "fobia" 00 00 00 00 i3 i2 i6 00 00 00 00
852             02 58 F40.0(7) "fobia" 00 00 00 00 i3 i2 i7 00 00 00 00
853             02 58 F40.0(8) "fobia" 00 00 00 00 i3 i2 i8 00 00 00 00
854             02 58 F40.0(9) "fobia" 00 00 00 00 i3 i2 i9 00 00 00 00
855             02 58 F40.0(10) "fobia" 00 00 00 00 i3 i2 i10 00 00 00 00
856         03 "Total" 58 "total_4" "Total" i1 i2 i11 00 00 00 00
857
858     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i8
859         03 "Count" 58 "count_6" "Count" i1 i2 00 00 00 00 00 00 00 00 
860         03 "Expected Count" 58 "expected_count" "Expected Count" i1 i2 i1 00 00 00 00 00
861             31 i0 i0 i26: (i20: (i0 31 "row % of ^1") 58 58) "% within ^1" i1 i0
862         05 58 "cond" 00 00 00 00 i3 i2 i2 00 00 00 00 00
863             31 i0 i0 i26: (i20: (i0 31 "col % of ^1") 58 58) "% within ^1" i1 i0
864         05 58 "fobia" 00 00 00 00 i3 i2 i3 00 00 00 00
865         03 "% of Total" 58 "_pct_of_total" "% of Total" i1 i2 i4 00 00 00 00
866         03 "Residual" 58 "residual_3" "Residual" i1 i2 i5 00 00 00 00
867         03 "Std. Residual" 58 "standardized_residuals" "Standardized Residual" i1 i2 i6 00 00 00 00
868         03 "Adjusted Residual" 58 "adjusted_standardized_residual" "Adjusted Residual" i1 i2 i7 00 00 00 00 
869
870
871 tdump25 ./germano/Crosstabs/00000000013_lightTableData.bin
872
873     i3
874
875     03 "Crosstabulation" 58 "crosstabulation" "Crosstabulation" 01 00 00 i2 01 00 i1 00 i1 00
876         31 i0 i0 i27: (i21: (i0 31 "[%1: * ^1:]1") 58 58) "[%1: * ^1:]1" i1 i2 i0
877             05 58 "cond" "" i3 00
878             05 58 "fobia" "" i3 i2 i0 i0
879
880     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i2
881         03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00
882         03 "Percent" 58 "percent_2" "Percent" i1 i2 i1 00 00 00 00
883
884     03 "Cases" 58 "cases" "Cases" 01 00 01 i2 00 00 01 i2 i3
885         03 "Valid" 58 "valid" "Valid" i1 i2 00 00 00 00 00 00 00 00
886         03 "Missing" 58 "missing_observations" "Missing" i1 i2 i1 00 00 00 00
887         03 "Total" 58 "total_4" "Total" i1 i2 i2 i0 i0
888
889
890 0427a44fc2a99165411ecd27896fe4fd/00000000013_lightTableData.bin:
891
892     i2
893
894     03 "Variables" 58 "variable_s_1" "Variables" 01 00 00 i2 01 00 i1 00 i23 00
895         31 i0 i0 i22: (i16: ("" 31 "Pair ^1") 58 58) "Pair ^1" i1 i0
896             01 58 F40.0(1) 00 00 01 i2 i-1 i2
897                 05 58 "pre1.1" 00 00 00 00 i2 i2 00 00 00 00 00 00 00 00
898                 05 58 "post1.1" 00 00 00 00 i2 i2 i1 00 00 00 00 00
899         31 i0 i0 i22: (i16: ("" 31 "Pair ^1" 58 58) "Pair ^1" i1 i0
900             01 58 F40.0(2) 00 00 01 i2 ff ff ff ff i2
901                 05 58 "pre1.2" 00 00 00 00 i2 i2 i2 00 00 00 00
902                 05 58 "post1.2" 00 00 00 00 i2 i2 i3 00 00 00 00 00
903         31 i0 i0 i22: i16: ("" 31 "Pair ^1") 58 58) "Pair ^1" i1 i0
904             01 58 F40.0(3) 00 00 01 i2 ff ff ff ff i2
905                 05 58 "pre1.3" 00 00 00 00 i2 i2 i4 00 00 00 00
906                 05 58 "post1.3" 00 00 00 00 i2 i2 i5 00 00 00 00 00
907         ...
908
909 web/1ae63a04381624dac939ac62eca63fec/00000000053_lightTableData.bin (descriptives)
910
911     i2
912
913     03 "Variables" 58 "variable_s_1" "Variables" 01 00 00 i2 01 00 i1 00 i8
914         05 58 "GODINEPACIJENTA" "GODINE PACIJENTA" i2 i2 00 00 00 00 00 00 00 00
915         05 58 "HLOCORPUS" "HLO CORPUS" i2 i2 i1 00 00 00 00
916         05 58 "INFLCORPUS" "INFL CORPUS" i2 i2 i2 00 00 00 00
917         05 58 "AKT.CORPUS" "AKT. CORPUS" i2 i2 i3 00 00 00 00
918         05 58 "VgmCORPUS" "Vgm CORPUS" i2 i2 i4 00 00 00 00
919         05 58 "VgfCORPUS" "Vgf CORPUS" i2 i2 i5 00 00 00 00
920         05 58 i9 56 67 9e 43 4f 52 50 55 53 i10 56 67 9e 20 43 4f 52 50 55 53 i2 i2 i6 00 00 00 00
921         05 58 "VglpCORPUS" "Vglp CORPUS" i2 i2 i7 00 00 00 00
922
923     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i3
924         03 "Mean" 58 "mean" "Mean" i1 i2 00 00 00 00 00 00 00 00
925         03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i1 00 00 00 00
926         03 "N" 58 "n" "N" i1 i2 i2 00 00 00 00 00 00 00 00
927
928 ./web/76e9b53e9f775fb690a88919ccdbb03c/000000007251_lightTableData.bin:
929
930     i6
931
932     05 58 "Gender_R" "" 02 00 02 i2 00 00 i1 00 i2
933         02 58 F40.0(0) "Gender_R" "Male" i2 i2 00 00 00 00 00 00 00 00
934         02 58 F40.0(1) "Gender_R" "Female" i2 i2 i1 00 00 00 00
935
936     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 01 i1 i4
937     03 "Mean Difference (I-J)" 58 "mean_difference_i-j" "Mean Difference (I-J)" i1 i2 00 00 00 00 00 00 00 00
938     03 "Std. Error" 58 "standard_error" "Std. Error" i1 i2 i1 00 00 00 00
939     03 "Sig." 58 "significance_level" "Significance" i1 i2 i2 00 00 00 00
940     00 31 i0 i0 i38: (i32: (i0 31 "^1% Confidence Interval") 58 58) "^1% Confidence Interval" i1 00 00 00 00
941         01 58 00 03 i5 00 00 00 c0 57 40 00 00 01                       i2 i-1 i2
942             03 "Lower Bound" 58 "lower_bound" "Lower Bound" i1 i2 i3 00 00 00 00
943             03 "Upper Bound" 58 "upper_bound" "Upper Bound" i1 i2 i4 00 00 00 00
944
945     00 31 i0 i0 i21: (i15: (i0 31 "(J) ^1") 58 58) "(J) ^1" i1 00 00 00 00
946         05 58 "sexorient_r" "" 02 00 00       i2 00 00 01 i2 i3
947             02 58 F40.0(0) "sexorient_r" "Straight" i2 i2 00 00 00 00 00 00 00 00
948             02 58 F40.0(1)"sexorient_r" "Bisexual" i2 i2 i1 00 00 00 00
949             02 58 F40.0(2) "sexorient_r" "Gay/Lesbian/Homosexual" i2 i2 i2 00 00 00 00 00
950
951     ...
952
953 web/76e9b53e9f775fb690a88919ccdbb03c/000000001361_lightTableData.bin (crosstabs):
954
955 i3
956
957 05 58 "marst" "Demographics - Marital Status" 02 00 00 i2 01 00 i1 00 i2
958     05 58 "marst" "Demographics - Marital Status" 02 00 00 i1 00 ff ff ff ff i4
959         04 58 00 03 01 00 "Single (never married)" "marst" 02 "A" 00 00 00 i2 00 00 00 00 00 00 00 00
960         04 58 00 03 01 00 "Married, living with spouse" "marst" 02 "B" 00 00 00 i2 i1 00 00 00 00
961         04 58 00 03 01 00 "Unmarried, living with partner" "marst" 02 "C" 00 00 00 i2 i2 00 00 00 00
962         04 58 00 03 01 00 "Divorced" "marst" 02 "E" 00 00 00 i2 i3 00 00 00 00
963     03 "Total" 58 "total_4" "Total" i1 i2 i4 00 00 00 00
964
965 05 58 "Gender_R" 00 00 00 00 02 00 00 i2 01 00 01 i1 i2
966     05 58 "Gender_R" 00 00 00 00 02 00 00 i1 00 ff ff ff ff i2
967         02 58 F40.0(0) "Gender_R" "Male" i2 i2 00 00 00 00 00 00 00 00
968         02 58 F40.0(1) "Gender_R" "Female" i2 i2 i1 00 00 00 00
969     03 "Total" 58 "total_4" "Total" i1 i2 i2 00 00 00 00
970
971 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i2
972     03 "Count" 58 "count_6" "Count" i1 i2 00 00 00 00 00 00 00 00 00
973     31 00 00 00 00 00 00 00 00 i26 i20 00 00 00 00 31 "col % of ^1" 58 58 "% within ^1" i1 00 00 00 00
974         05 58 "Gender_R" 00 00 00 00 i2 i2 i1 00 00 00 00 00 00 00 00 ...
975
976
977 web/76e9b53e9f775fb690a88919ccdbb03c/00000000703_lightTableData.bin (oneway descriptives):
978
979     i4
980
981     05 58 "Gender_R" 00 00 00 00 02 00 00 i2 00 00 i1 00 i2
982         02 58 F40.0(0) "Gender_R" "Male" i2 i2 00 00 00 00 00 00 00 00
983         02 58 F40.0(1) "Gender_R" "Female" i2 i2 i1 00 00 00 00
984
985     03 "Groups" 58 "groups" "Groups" 01 00 00 i2 01 00 01 i1 i2
986         05 58 "sexorient_r" "" 02      01 00       i1 00 i-1 i3
987             02 58 F40.0(0) "sexorient_r" "Straight" i2 i2 i0 i0
988             02 58 F40.0(1) "sexorient_r" "Bisexual" i2 i2 i1 i0
989             02 58 F40.0(2) "sexorient_r" "Gay/Lesbian/Homosexual" i2 i2 i2 00 00 00 00
990         03 "Total" 58 "total_4" "Total" i1 i2 i3 00 00 00 00
991
992     ....
993
994 web/76e9b53e9f775fb690a88919ccdbb03c/00000000725212_lightTableData.bin (Gender_R homogeneous subsets):
995
996     good example for title and footnotes (?)
997
998     i3
999
1000         03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i2
1001             03 "N" 58 "n" "N" i1 i2 i0 i0 00
1002             31 i0 i0 i36: (i30: ("" 31 "Subset for alpha = ^1") 58 58) "Subset for alpha = ^1" i1 i0
1003                 03 "0.05" 58 "" "0.05" 00 00 00 01 i2 i-1 i1
1004                     01 58 F40.0(1) 00 00 00 i2 i1 00 00 00 00
1005
1006         05 58 "sexorient_r" 00 00 00 00 02 00 00 i2 00 00 01 i1 i2
1007             03 "Group" 58 00 00 00 00 "Group" 00 01 00 01 i2 i-1 i3
1008                 02 58 F40.0(0) "sexorient_r" "Straight" i2 i2 00 00 00 00 00 00 00 00
1009                 02 58 F40.0(2) "sexorient_r" "Gay/Lesbian/Homosexual" i2 i2 i1 00 00 00 00
1010                 02 58 F40.0(1) "sexorient_r" "Bisexual" i2 i2 i2 i0
1011             03 "Sig." 58 "significance_level" "Significance" i1 i2 i3 00 00 00 00
1012
1013         03 "Test" 58 "test" "Test" 01 00 01 i2 01 00 01 i2 i2
1014             03 "Tukey HSD" 31 i2 00 00 i1 00 00 i11: (i5: ("" 58) 58 58) "tukeys_honestly_significant_difference" "Tukey HSD" i1 i2 00 00 00 00 00 00 00 00
1015             03 "Tukey B" 31 i2 00 00 i1 00 00 i11: (i5: ("" 58) 58 58) "tukeys_b_test" "Tukey B" i1 i2 i1 00 00 00 00 00 00 00 00 i2 i1 i1 i2 ...
1016
1017 web/6c3246ad09f0f6434a33b91c731636a3/00000000062_lightTableData.bin (descriptives):
1018
1019     i2
1020
1021     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i5
1022         03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00
1023         03 "Minimum" 58 "minimum" "Minimum" i1 i2 i1 00 00 00 00
1024         03 "Maximum" 58 "maximum" "Maximum" i1 i2 i2 00 00 00 00
1025         03 "Mean" 58 "mean" "Mean" i1 i2 i3 00 00 00 00
1026         03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i4 00 00 00 00
1027
1028     03 "Variables" 58 "variable_s_1" "Variables" 01 00 01 i2 01 00 01 i1 i16
1029         05 58 "TAAS_neg_T1" "TAAS negative affect Time 1" i2 i2 00 00 00 00 00 00 00 00
1030         05 58 "TAAS_pos_T1" "TAAS positive affect Time 1" i2 i2 i1 00 00 00 00
1031         05 58 "TAAS_overall_T1" "TAAS overall Time 1" i2 i2 i2 00 00 00 00
1032         05 58 "DTS_scale" "DTS McHugh and Otto" i2 i2 i3 00 00 00 00
1033         05 58 "DASS_Stress" 00 00 00 00 i2 i2 i4 00 00 00 00
1034         05 58 "DASS_Anxiety" 00 00 00 00 i2 i2 i5 00 00 00 00
1035         05 58 "DASS_Depression" 00 00 00 00 i2 i2 i6 00 00 00 00
1036         05 58 "DERS_Nonacceptance" 00 00 00 00 i2 i2 i7 00 00 00 00
1037         05 58 "DERS_Goals" 00 00 00 00 i2 i2 i8 00 00 00 00
1038         05 58 "DERS_Impulse" 00 00 00 00 i2 i2 i9 00 00 00 00
1039         05 58 "DERS_Awareness" 00 00 00 00 i2 i2 i10 00 00 00 00
1040         05 58 "DERS_Strategies" 00 00 00 00 i2 i2 i11 00 00 00 00
1041         05 58 "DERS_Clarity" 00 00 00 00 i2 i2 i12 00 00 00 00
1042         05 58 "TOMS_Eating" 00 00 00 00 i2 i2 i13 00 00 00 00
1043         05 58 "TOMS_General" 00 00 00 00 i2 i2 i14 00 00 00 00
1044         03 "" 58 "" "" i0                   i2 i15 i0 i0 
1045
1046 web/17936f440753fa5f6771e084c26a1724/00000000033_lightTableData.bin (Paired Samples Statistics):
1047
1048     i2
1049
1050     03 "Variables" 58 "variable_s_1" "Variables" 01 00 00 i2 01 00 i1 00 i2 00
1051         58 "Pair ^1" i1 00 00 00 00
1052             01 58 F40.0(1) 00 00 01 i2 i-1 i2
1053         05 58 "related" "related" i2 i2 00 00 00 00 00 00 00 00
1054         05 58 "unrelated" "unrelated" i2 i2 i1 00 00 00 00 00 58 "Pair ^1" i1 00 00 00 00
1055     01 58 F40.0(2) 00 00 01 i2 i-1 i2
1056         05 58 "nwrelated" "related" i2 i2 i2 00 00 00 00
1057         05 58 "nwunrelated" "unrelated" i2 i2 i3 00 00 00 00
1058
1059     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i4
1060         03 "Mean" 58 "mean" "Mean" i1 i2 00 00 00 00 00 00 00 00
1061         03 "N" 58 "n" "N" i1 i2 i1 00 00 00 00
1062         03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i2 00 00 00 00
1063         03 "Std. Error Mean" 58 "gfreq13" "Std. Error Mean" i1 i2 i3 00 00 00 00
1064
1065 web/fa39cdfb372fe296d34fa4c191ceed0f/00000000299_lightTableData.bin ("ATTITUDES"):
1066
1067     This has a title with crazy substitutions.
1068
1069     i3
1070
1071     03 "Variables" 58 "variable_s_1" "Variables" 01 00 02 i2 01 00 i1 00 i1
1072         05 58 "ATTITUDES" 00 00 00 00 i2 i2 00 00 00 00 00 00 00 00
1073
1074     05 58 "Q7" "Do you have a family member with a DD?" 02 00 00 i2 00 00 01 i1 i2
1075         03 "Dummy" 58 "" "Dummy" 01 01 00 i1 00 ff ff ff ff i2
1076             02 58 F40.2(0.00) "Q7" "No" i2 i2 00 00 00 00 00 00 00 00
1077             02 58 F40.2(1.00) "Q7" "Yes" i2 i2 i1 00 00 00 00
1078         03 "Total" 58 "total_4" "Total" i1 i2 i2 00 00 00 00
1079
1080     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i3
1081         03 "Mean" 58 "mean" "Mean" i1 i2 00 00 00 00 00 00 00 00
1082         03 "N" 58 "n" "N" i1 i2 i1 00 00 00 00
1083         03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i2 00 00 00 00
1084
1085 web/a57e5529f1f2d4b25f5b9ad78f91864e/000000000310122_lightTableData.bin (homogeneous subsets):
1086
1087     i3
1088
1089     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 02 i2 01 00 i1 00 i2
1090         03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00
1091         03 "Subset" 58 "homogeneous_subsets" "Subset" 01 00 00 01 i2 ff ff ff ff i3
1092             01 58 F40.0(1) 00 00 00 i2 i1 00 00 00 00
1093             01 58 F40.0(2) 00 00 00 i2 i2 00 00 00 00
1094             01 58 F40.0(3) 00 00 00 i2 i3 00 00 00 00
1095
1096     05 58 "Lakes" 00 00 00 00 02 00 00 i2 00 00 01 i1 i2
1097         03 "Group" 58 00 00 00 00 "Group" 00 01 00 01 i2 ff ff ff ff i3
1098             04 58 00 10 i1 00 00 "Lakes" 02 "Lake Michigan" 00 00 00 i2 00 00 00 00 00 00 00 00
1099             04 58 00 10 i1 00 00 "Lakes" 02 "Greene's Lake" 00 00 00 i2 i1 00 00 00 00
1100             04 58 00 10 i1 00 00 "Lakes" 02 "Lake Genesereth" 00 00 00 i2 i2 00 00 00 00
1101         03 "Sig." 58 "significance_level" "Sig." i1 i2 i3 00 00 00 00
1102
1103     03 "Test" 58 "multivariate_tests" "Test" 01 00 01 i2 01 00 01 i2 i1
1104         03 "Tukey HSD" 31 i3 00 00 01 00 i2: (00 00) i6: (00 00 00 00 58 58) "tukeys_honestly_significant_difference" "Tukey HSD" i1 i2 i0
1105
1106 web/a57e5529f1f2d4b25f5b9ad78f91864e/00000000038_lightTableData.bin (Tests of Within-Subjects Contrasts):
1107
1108     ...
1109
1110     "Source" 58 "source_of_variation" "Source" 01 00 00 i2 00 00 01 i2 i4 00
1111         58 "[%1: * ^1:]1" i1 i1 00 00 00 00
1112             03 "Time" 58 00 00 00 00 "Time" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00
1113         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1114             03 "Time" 58 00 00 00 00 "Time" 00 i1 00 00 00 00
1115             05 58 "Lakes" "" i1 i2 i1 00 00 00 00 00
1116         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1117             03 "Time" 58 00 00 00 00 "Time" 00 i1 00 00 00 00
1118             05 58 "Treatments" 00 00 00 00 i1 i2 i2 00 00 00 00 00
1119         58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00
1120             03 "Time" 58 00 00 00 00 "Time" 00 00 00 00 i2 i3 00 00 00 00
1121
1122     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i3 i5
1123         03 "Type III Sum of Squares" 58 "type_iii_sum_of_squares" "Type III Sum of Squares" i1 i2 00 00 00 00 00 00 00 00
1124         03 "df" 58 "df" "df" i1 i2 i1 00 00 00 00
1125         03 "Mean Square" 58 "mean_square" "Mean Square" i1 i2 i2 00 00 00 00
1126         03 "F" 58 "f_value" "F" i1 i2 i3 00 00 00 00
1127         03 "Sig." 58 "significance_level" "Sig." i1 i2 i4 00 00 00 00 00 00 00 00
1128
1129 web/a57e5529f1f2d4b25f5b9ad78f91864e/00000000031021_lightTableData.bin (POSTHOC Multiple Comparisons):
1130
1131     i5
1132
1133     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 02 i2 01 00 i1 00 i4
1134         03 "Mean Difference (I-J)" 58 "mean_difference_i-j" "Mean Difference (I-J)" i1 i2 00 00 00 00 00 00 00 00
1135         03 "Std. Error" 58 "standard_error" "Std. Error" i1 i2 i1 00 00 00 00
1136         03 "Sig." 58 "significance_level" "Sig." i1 i2 i2 00 00 00 00 00
1137         58 "^1% Confidence Interval" i1 00 00 00 00 01 58 00 03 i5 00 00 00 c0 57 40 00 00 01 i2 ff ff ff ff i2
1138             03 "Lower Bound" 58 "lower_bound" "Lower Bound" i1 i2 i3 00 00 00 00
1139             03 "Upper Bound" 58 "upper_bound" "Upper Bound" i1 i2 i4 00 00 00 00 00
1140
1141     58 "(J) ^1" i1 i0 05 58 "Treatments" 00 00 00 00 02 00 00 i2 00 00 01 i1 i4
1142         04 58 00 03 i1 00 00 "Treatments" 02 "C" 00 00 00 i2 00 00 00 00 00 00 00 00
1143         04 58 00 03 i1 00 00 "Treatments" 02 "N" 00 00 00 i2 i1 00 00 00 00
1144         04 58 00 03 i1 00 00 "Treatments" 02 "NP" 00 00 00 i2 i2 00 00 00 00
1145         04 58 00 03 i1 00 00 "Treatments" 02 "P" 00 00 00 i2 i3 00 00 00 00 00
1146
1147     ...
1148
1149 web/a57e5529f1f2d4b25f5b9ad78f91864e/00000000034_lightTableData.bin (Between-Subjects Factors):
1150
1151     i2
1152
1153     03 "Factor Levels" 58 "factor_levels" "Factor Levels" 01 00 00 i2 01 00 i1 00 i2
1154         05 58 "Lakes" 00 00 00 00 02 00 00 01 i2 ff ff ff ff i3
1155             04 58 A16.0 "" "Lakes" 01 "Greene's Lake" 00 00 00 i2 00 00 00 00 00 00 00 00
1156             04 58 00 10 i1 00 00 "Lakes" 01 "Lake Genesereth" 00 00 00 i2 i1 00 00 00 00
1157             04 58 00 10 i1 00 00 "Lakes" 01 "Lake Michigan" 00 00 00 i2 i2 00 00 00 00
1158         05 58 "Treatments" 00 00 00 00 02 00 00 01 i2 ff ff ff ff i4
1159             04 58 00 03 i1 00 00 "Treatments" 01 "C" 00 00 00 i2 i3 00 00 00 00
1160             04 58 00 03 i1 00 00 "Treatments" 01 "N" 00 00 00 i2 i4 00 00 00 00
1161             04 58 00 03 i1 00 00 "Treatments" 01 "NP" 00 00 00 i2 i5 00 00 00 00
1162             04 58 00 03 i1 00 00 "Treatments" 01 "P" 00 00 00 i2 i6 00 00 00 00
1163
1164     03 "Properties" 58 "properties_dimension" "Properties" 01 00 01 i2 01 00 01 i1 i2
1165         03 "Value Label" 58 "value_labels_2" "Value Label" i1 i2 00 00 00 00 00 00 00 00
1166         03 "N" 58 "n" "N" i1 i2 i1 00 00 00 00 00 00 00 00
1167
1168
1169
1170 web/7a17f5600db5be64b985ac37b1346aa8/00000000072_lightTableData.bin (Between-Subjects Factors):
1171
1172     i2
1173
1174     03 "Factor Levels" 58 "factor_levels" "Factor Levels" 01 00 00 i2 01 00 i1 00 i1
1175         05 58 "HouseholdIncome" "HouseholdIncome" 02 00 00 01 i2 ff ff ff ff i4
1176             02 58 F40.2(1.00) "HouseholdIncome" "< 45,000" i1 i2 00 00 00 00 00 00 00 00
1177             02 58 F40.2(2.00) "HouseholdIncome" "45,001 - 80,000" i1 i2 i1 00 00 00 00
1178             02 58 F40.2(3.00) "HouseholdIncome" "80,001 - 120,000" i1 i2 i2 00 00 00 00
1179             02 58 F40.2(4.00) "HouseholdIncome" "120,001+" i1 i2 i3 00 00 00 00
1180
1181     ...
1182
1183 web/6f1f8df78363208fec048190af27097e/00000000053_lightTableData.bin ([%1: * ^1:]1 Crosstabulation):
1184
1185     i4
1186
1187     05 58 "agerange" "agerange" 02 75 02 i2 00 00 i1 00 i3
1188         02 58 F40.2(1.00) "agerange" 00 00 00 00 i2 i2 00 00 00 00 00 00 00 00
1189         02 58 F40.2(2.00) "agerange" 00 00 00 00 i2 i2 i1 00 00 00 00
1190         02 58 F40.2(3.00) "agerange" 00 00 00 00 i2 i2 i2 00 00 00 00
1191
1192     05 58 "sex" "RESPONDENTS SEX" 02 00 00 i2 01 00 01 i1 i2
1193         05 58 "sex" "RESPONDENTS SEX" 02 00 00 i1 00 ff ff ff ff i2
1194             02 58 F40.0(1) "sex" "male" i2 i2 00 00 00 00 00 00 00 00
1195             02 58 F40.0(2) "sex" "female" i2 i2 i1 00 00 00 00
1196         03 "Total" 58 "total_4" "Total" i1 i2 i2 00 00 00 00
1197
1198     05 58 "pres92" "VOTE FOR CLINTON, BUSH, PEROT" 02 00 00 i2 01 00 01 i2 i2
1199         05 58 "pres92" "VOTE FOR CLINTON, BUSH, PEROT" 02 00 00 i1 00 ff ff ff ff i3
1200             02 58 F40.0(1) "pres92" "Bush" i2 i2 00 00 00 00 00 00 00 00
1201             02 58 F40.0(2) "pres92" "Perot" i2 i2 i1 00 00 00 00
1202             02 58 F40.0(3) "pres92" "Clinton" i2 i2 i2 00 00 00 00
1203         03 "Total" 58 "total_4" "Total" i1 i2 i3 00 00 00 00
1204
1205     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i3 i1
1206         03 "Count" 58 "count_6" "Count" i1 i2 00 00 00 00 00 00 00 00
1207
1208 web/75e80a604626e6bdbb6a107901dc9b36/000000000344_lightTableData.bin (Frequencies):
1209
1210     i2
1211
1212     05 58 "Sex" 00 00 00 00 03 00 00 i2 01 00 i1 00 i1
1213         03 "Valid" 58 "valid" "Valid" 01 00 00 01 i2 ff ff ff ff i2
1214             01 58 F40.0(0) 01 00 01 i2 ff ff ff ff i1
1215                 01 58 F40.0(-1) 01 00 i1 00 ff ff ff ff i3
1216                     04 58 00 06 01 00 "Male" "Sex" 03 "1" 00 00 00 i2 00 00 00 00 00 00 00 00
1217                     04 58 00 06 01 00 "Female" "Sex" 03 "2" 00 00 00 i2 i1 00 00 00 00
1218                     04 58 00 06 01 00 "Other" "Sex" 03 "3" 00 00 00 i2 i2 00 00 00 00
1219             03 "Total" 58 "total_4" "Total" i1 i2 i3 00 00 00 00
1220
1221     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i4
1222         03 "Frequency" 58 "frequency" "Frequency" i1 i2 00 00 00 00 00 00 00 00
1223         03 "Percent" 58 "percent" "Percent" i1 i2 i1 00 00 00 00
1224         03 "Valid Percent" 58 "valid_percent" "Valid Percent" i1 i2 i2 00 00 00 00
1225         03 "Cumulative Percent" 58 "cumulative_percent" "Cumulative Percent" i1 i2 i3 00 00 00 00 00 00 00 00
1226
1227 web/9c0f5ba2cd60a97194a82cdc67efc3cb/000000000176_lightTableData.bin (Functions at Group Centroids):
1228
1229     i2
1230
1231     05 58 "group" "" 02         00 00 00 00 00 00 00 00 i1 00 i2
1232         02 58 F40.0(1) "group" 00 00 00 00 i2 i2 00 00 00 00 00 00 00 00
1233         02 58 F40.0(2) "group" 00 00 00 00 i2 i2 i1 00 00 00 00
1234
1235     03 "Function" 58 "function_6" "Function" 01 00 01 i2 00 00 01 i1 i1
1236         01 58 F40.0(1)
1237
1238 web/b257771a29873ce68ce0c0a4e7582f76/000000000432_lightTableData.bin (Pearson Chi-Square Tests):
1239
1240     i2
1241
1242     03 "Row" 58 00 00 00 00 "Row" 01 00 00 i2 01 00 i1 00 i1
1243         05 58 "Judge_Indiziert" "Overall Judgement indicated" 02 00 00 01 i2 ff ff ff ff i1
1244             02 58 F40.2(1.00) "Judge_Indiziert" "indicated" 02 00 00 01 i2 ff ff ff ff i1
1245                 05 58 "CAS" "Navigation" 02 00 00 01 i2 ff ff ff ff i3
1246                     03 "Chi-square" 58 00 00 00 00 "Chi-square" i1 i2 00 00 00 00 00 00 00 00
1247                     03 "df" 58 00 00 00 00 "df" i1 i2 i1 00 00 00 00
1248                     03 "Sig." 58 00 00 00 00 "Sig." i1 i2 i2 00 00 00 00
1249
1250     03 "Column" 58 00 00 00 00 "Column" 01 00 01 i2 01 00 01 i1 i1
1251         05 58 "Judge_Gemacht" "Overall Judgement done" i2 i2 00 00 00 00 00 00 00 00 00 00 00 00
1252
1253 web/f1b07f87ef9cd720e78efebe4f2551fa/0000000007912_lightTableData.bin (Pairwise Comparisons):
1254
1255     i4
1256
1257     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i4
1258     03 "Mean Difference (I-J)" 58 "mean_difference_i-j" "Mean Difference (I-J)" i1 i2 00 00 00 00 00 00 00 00
1259     03 "Std. Error" 58 "standard_error" "Std. Error" i1 i2 i1 00 00 00 00
1260     03 "Sig." 31 i1 i1 00 00 i11: (i5: ("" 58) 58 58) "significance_level" "Significance" i1 i2 i2 00 00 00 00 00
1261     31 i1 i1 00 00 i53: (i47: ("" 31 "^1% Confidence Interval for Difference") 58 58) "^1% Confidence Interval for Difference" i1 00 00 00 00
1262     01 58 00 03 i5 00 00 00 c0 57 40 00 00 01 i2 ff ff ff ff i2
1263     03 "Lower Bound" 58 "lower_bound" "Lower Bound" i1 i2 i3 00 00 00 00
1264     03 "Upper Bound" 58 "upper_bound" "Upper Bound" i1 i2 i4 00 00 00 00 00
1265
1266     31 00 00 00 00 00 00 00 00 i21: (i15: ("" 31 "(J) ^1") 58 58) "(J) ^1" i1 00 00 00 00
1267     05 58 "Group" "Group" 02 00 00 i2 00 00 01 i1 i2
1268         02 58 F40.0(1) "Group" "Experimental Group" i3 i2 00 00 00 00 00 00 00 00
1269         02 58 F40.0(2) "Group" "Control Group" i3 i2 i1 00 00 00 00 00
1270     31 00 00 00 00 00 00 00 00 i21: (i15: ("" 31 "(I) ^1") 58 58 ) "(I) ^1" i1 00 00 00 00
1271     05 58 "Group" "Group" 02 00 00 i2 00 00 01 i2 i2
1272         02 58 F40.0(1) "Group" "Experimental Group" i3 i2 00 00 00 00 00 00 00 00
1273         02 58 F40.0(2) "Group" "Control Group" i3 i2 i1 00 00 00 00
1274
1275     03 "Dependent Variable" 58 "dependent_variable_2" "Dependent Variable" 01 00 01 i2 00 00 01 i3 i12
1276     05 58 "PSYCAP_POST2" 00 00 00 00 i3 i2 00 00 00 00 00 00 00 00
1277     05 58 "SE_POST2" 00 00 00 00 i3 i2 i1 00 00 00 00
1278     05 58 "HOPE_POST2" 00 00 00 00 i3 i2 i2 00 00 00 00
1279     05 58 "RES_POST2" 00 00 00 00 i3 i2 i3 00 00 00 00
1280     05 58 "OPT_POST2" 00 00 00 00 i3 i2 i4 00 00 00 00
1281     05 58 "PWB_POST2" 00 00 00 00 i3 i2 i5 00 00 00 00
1282     05 58 "AUTO_POST2" 00 00 00 00 i3 i2 i6 00 00 00 00
1283     05 58 "EM_POST2" 00 00 00 00 i3 i2 i7 00 00 00 00
1284     05 58 "PG_POST2" 00 00 00 00 i3 i2 i8 00 00 00 00
1285     05 58 "PR_POST2" 00 00 00 00 i3 i2 i9 00 00 00 00
1286     05 58 "PL_POST2" 00 00 00 00 i3 i2 i10 00 00 00 00
1287     05 58 "SA_POST2" 00 00 00 00 i3 i2 i11 00 00 00 00
1288
1289
1290 web/67e54cc8a549f4a66331c0401ff4a775/00000000079_lightTableData.bin (Tests of Within-Subjects Contrasts):
1291
1292 This one is just puzzling.
1293
1294     i4
1295
1296     03 "Word_Type" 58 00 00 00 00 "Word_Type" 00 00 02 i2 00 00 i1 00 i1
1297         03 "Linear" 58 "linear" "Linear" i1 i2 00 00 00 00 00 00 00 00
1298
1299     03 "Measure" 58 "measure_3" "Measure" 01 00 00 i2 00 00 01 i1 i1 00
1300         58 "MEASURE_^1" i1 00 00 00 00
1301             01 58 F40.0(1) 00 00 00 i2 00 00 00 00 00 00 00 00
1302
1303     03 "Source" 58 "source_of_variation" "Source" 01 00 00 i2 00 00 01 i2 i5 00
1304         58 "[%1: * ^1:]1" i1 i1 00 00 00 00
1305             03 "Word_Type" 58 00 00 00 00 "Word_Type" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00
1306         58 "[%1: * ^1:]1 *[: ^1:]2" i2
1307             i1 00 00 00 00
1308                 03 "Word_Type" 58 "" "Word_Type" 00
1309             i1 00 00 00 00
1310                 05 58 "Word_Color" "" i1 i2 i1 00 00 00 00 00
1311         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 i0
1312             03 "Word_Type" 58 "" "Word_Type" 00 i1 i0
1313             05 58 "Order" "" i1                        i2 i2 i0 00
1314         58 "[%1: * ^1:]1 *[: ^1:]2" i2
1315             i1 i0
1316                 03 "Word_Type" 58 "" "Word_Type" 00
1317             i3 i0
1318                 05 58 "Word_Color" "" i1 00
1319                 03 " * " 58 "" " * " i0 00
1320                 05 58 "Order" ""      i1                   i2 i3 i0
1321         00 58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00
1322             03 "Word_Type" 58 00 00 00 00 "Word_Type" 00 00 00 00 i2 i4 00 00 00 00
1323
1324     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i3 i6
1325         03 "Type III Sum of Squares" 58 "type_iii_sum_of_squares" "Type III Sum of Squares" i1 i2 00 00 00 00 00 00 00 00
1326         03 "df" 58 "df" "df" i1 i2 i1 00 00 00 00
1327         03 "Mean Square" 58 "mean_square" "Mean Square" i1 i2 i2 00 00 00 00
1328         03 "F" 58 "f_value" "F" i1 i2 i3 00 00 00 00
1329         03 "Sig." 58 "significance_level" "Sig." i1 i2 i4 00 00 00 00
1330         03 "Partial Eta Squared" 58 "estimates_of_effect_size" "Partial Eta Squared" i1 i2 i5 i0
1331
1332 web/c4757deb6f4f21d5f51745073835937d/000000000171_lightTableData.bin (Averaged Multivariate Tests):
1333
1334     i3
1335
1336     ...
1337
1338     03 "Within Subjects Effect" 58 "within-subjects_3" "Within Subjects Effect" 01 00 00 i2 00 00 01 i1 i4 00
1339         58 "[%1: * ^1:]1" i1 i1 00 00 00 00
1340             03 "Time" 58 00 00 00 00 "Time" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00
1341         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1342             03 "Time" 58 00 00 00 00 "Time" 00 i1 00 00 00 00
1343             05 58 "Lakes" 00 00 00 00 i1 i2 i1 00 00 00 00 00
1344         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1345             03 "Time" 58 00 00 00 00 "Time" 00 i1 00 00 00 00
1346             05 58 "Treatments" 00 00 00 00 i1 i2 i2 00 00 00 00 00
1347         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1348             03 "Time" 58 00 00 00 00 "Time" 00 i3 00 00 00 00
1349             05 58 "Lakes" "" 01 i0 
1350             03 " * " 58 00 00 00 00 " * " 00 00 00 00 00
1351         05 58 "Treatments" 00 00 00 00 i1 i2 i3 00 00 00 00
1352
1353     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i5
1354         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00
1355         03 "F" 58 "f_value" "F" i1 i2 i1 00 00 00 00
1356         03 "Hypothesis df" 58 "df" "Hypothesis df" i1 i2 i2 00 00 00 00
1357         03 "Error df" 58 "error_df" "Error df" i1 i2 i3 00 00 00 00
1358         03 "Sig." 58 "significance_level" "Sig." i1 i2 i4 00 00 00 00 00 00 00 00
1359
1360 web/c50e357352131aa1a8925003483b31ad/000000000161_lightTableData.bin (Custom Univariate Tests):
1361
1362 i4
1363
1364 03 "Epsilon Corrections" 58 "epsilon_general_loglinear" "Epsilon Corrections" 01 00 00 i2 01 00 i1 00 i4
1365     03 "Sphericity Assumed" 58 "sphericity_assumed" "Sphericity Assumed" i1 i2 00 00 00 00 00 00 00 00
1366     03 "Greenhouse-Geisser" 58 "greenhouse-geisser_epsilon" "Greenhouse-Geisser" i1 i2 i1 00 00 00 00
1367     03 "Huynh-Feldt" 58 "huynh-feldt_epsilon" "Huynh-Feldt" i1 i2 i2 00 00 00 00
1368     03 "Lower-bound" 58 "lowerbound_epsilon" "Lower-bound" i1 i2 i3 00 00 00 00
1369
1370 03 "Measure" 58 "measure_3" "Measure" 01 00 00 i2 00 00 01 i1 i4
1371     03 "ALT" 58 00 00 00 00 "ALT" 00 00 00 00 i2 00 00 00 00 00 00 00 00
1372     03 "VLT" 58 00 00 00 00 "VLT" 00 00 00 00 i2 i1 00 00 00 00
1373     03 "PSS" 58 00 00 00 00 "PSS" 00 00 00 00 i2 i2 00 00 00 00
1374     03 "FWHM" 58 00 00 00 00 "FWHM" 00 00 00 00 i2 i3 00 00 00 00
1375
1376 03 "Source" 58 "source_of_variation" "Source" 01 00 00 i2 00 00 01 i2 i21 00
1377     58 "[%1: * ^1:]1" i1
1378         i1 00 00 00 00
1379             03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00
1380     58 "[%1: * ^1:]1 *[: ^1:]2" i2
1381         i1 00 00 00 00
1382             03 "Language" 58 00 00 00 00 "Language" 00
1383         i1 00 00 00 00
1384             05 58 "Gender" "Gender" i1 i2 i1 00 00 00 00 00
1385     58 "Error([%1:*^1:]1)" i1
1386         i1 00 00 00 00
1387             03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 i2 i2 00 00 00 00 00
1388     58 "[%1: * ^1:]1" i1
1389         i1 00 00 00 00
1390             03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 i2 i3 00 00 00 00 00
1391     58 "[%1: * ^1:]1 *[: ^1:]2" i2
1392         i1 00 00 00 00
1393             03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00
1394         i1 00 00 00 00
1395             05 58 "Gender" "Gender" i1 i2 i4 00 00 00 00 00
1396     58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00
1397         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 i2 i5 00 00 00 00 00
1398     58 "[%1: * ^1:]1" i1 i1 00 00 00 00
1399         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i6 00 00 00 00 00
1400     58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1401         03 "Area" 58 00 00 00 00 "Area" 00 i1 00 00 00 00
1402         05 58 "Gender" "Gender" i1 i2 i7 00 00 00 00 00
1403     58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00
1404         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i8 00 00 00 00 00
1405     58 "[%1: * ^1:]1" i1 i2 00 00 00 00
1406         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1407         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 i2 i9 00 00 00 00 00
1408     58 "[%1: * ^1:]1 *[: ^1:]2" i2
1409         i2 00 00 00 00
1410             03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1411             03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00
1412         i1 00 00 00 00
1413             05 58 "Gender" "Gender" i1 i2 i10 00 00 00 00 00
1414     58 "Error([%1:*^1:]1)" i1 i2 00 00 00 00
1415         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1416         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 i2 i11 00 00 00 00 00
1417     58 "[%1: * ^1:]1" i1 i2 00 00 00 00
1418         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1419         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i12 00 00 00 00 00
1420     58 "[%1: * ^1:]1 *[: ^1:]2" i2 i2 00 00 00 00
1421         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1422         03 "Area" 58 00 00 00 00 "Area" 00 i1 00 00 00 00
1423         05 58 "Gender" "Gender" i1 i2 i13 00 00 00 00 00
1424     58 "Error([%1:*^1:]1)" i1 i2 00 00 00 00
1425         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1426         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i14 00 00 00 00 00
1427     58 "[%1: * ^1:]1" i1 i2 00 00 00 00
1428         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1429         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i15 00 00 00 00 00
1430     58 "[%1: * ^1:]1 *[: ^1:]2" i2 i2 00 00 00 00
1431         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1432         03 "Area" 58 00 00 00 00 "Area" 00 i1 00 00 00 00
1433         05 58 "Gender" "Gender" i1 i2 i16 00 00 00 00 00
1434     58 "Error([%1:*^1:]1)" i1 i2 00 00 00 00 03 "Size_AOI"
1435         58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1436         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i17 00 00 00 00 00
1437     58 "[%1: * ^1:]1" i1 i3 00 00 00 00
1438         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1439         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1440         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i18 00 00 00 00 00
1441     58 "[%1: * ^1:]1 *[: ^1:]2" i2 i3 00 00 00 00
1442         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1443         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1444         03 "Area" 58 00 00 00 00 "Area" 00 i1 00 00 00 00
1445         05 58 "Gender" "Gender" i1 i2 i19 00 00 00 00 00
1446     58 "Error([%1:*^1:]1)" i1 i3 00 00 00 00
1447         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1448         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1449         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i20 00 00 00 00
1450
1451     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i3 i6
1452         03 "Type III Sum of Squares" 58 "type_iii_sum_of_squares" "Type III Sum of Squares" i1 i2 00 00 00 00 00 00 00 00
1453         03 "df" 58 "df" "df" i1 i2 i1 00 00 00 00
1454         03 "Mean Square" 58 "mean_square" "Mean Square" i1 i2 i2 00 00 00 00
1455         03 "F" 58 "f_value" "F" i1 i2 i3 00 00 00 00
1456         03 "Sig." 58 "significance_level" "Sig." i1 i2 i4 00 00 00 00
1457         03 "Partial Eta Squared" 58 "estimates_of_effect_size" "Partial Eta Squared" i1 i2 i5 00 00 00 00 00 00 00 00
1458
1459
1460 web/bf0de88830dd9a93323cfb8d7501f342/00000000075_lightTableData.bin (Default Multivariate Tests):
1461
1462     i3
1463
1464     03 "Test" 58 "multivariate_tests" "Test" 01 00 00 i2 01 00 i1 00 i4
1465         03 "Pillai's Trace" 58 "pillais_trace" "Pillai's Trace" i1 i2 00 00 00 00 00 00 00 00
1466         03 "Wilks' Lambda" 58 "wilks_lambda" "Wilks' Lambda" i1 i2 i1 00 00 00 00
1467         03 "Hotelling's Trace" 58 "hotellings_trace" "Hotelling's Trace" i1 i2 i2 00 00 00 00
1468         03 "Roy's Largest Root" 58 "roys_largest_root" "Roy's Largest Root" i1 i2 i3 00 00 00 00
1469
1470     03 "Effect" 58 "effect" "Effect" 01 00 00 i2 00 00 01 i1 i2 00
1471         31 i0 i0 i25: (i19: ("" 31 "[%1:*^1:]1") 58 58) "[%1: * ^1:]1" i1 i1 00 00 00 00
1472             03 "Time" 58 00 00 00 00 "Time" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00
1473         31 00 00 00 00 00 00 00 00 i33: (i27: ("" 31 "[%1:*^1:]1*[:^1:]2") 58 58) "[%1: * ^1:]1 *[: ^1:]2" i2
1474             i1 00 00 00 00
1475                 03 "Time" 58 00 00 00 00 "Time" 00
1476             i3 00 00 00 00
1477                 05 58 "Condition" 00 00 00 00 i1 00
1478                 03 " * " 58 00 00 00 00 " * " 00 00 00 00 00
1479                 05 58 "Extraversio" 00 00 00 00 i1 i2 i1 00 00 00 00
1480
1481     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i5
1482         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00
1483         03 "F" 58 "f_value" "F" i1 i2 i1 00 00 00 00
1484         03 "Hypothesis df" 58 "df" "Hypothesis df" i1 i2 i2 00 00 00 00
1485         03 "Error df" 58 "error_df" "Error df" i1 i2 i3 00 00 00 00
1486         03 "Sig." 58 "significance_level" "Significance" i1 i2 i4 00 00 00 00 00 00 00 00
1487
1488
1489 Data
1490 ----
1491
1492 williams/00000000053_lightTableData.bin:
1493
1494     i0 i1 i1 i0 i1 i4
1495
1496     i0 i0 01 31 i1 i0 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.760)
1497     i1 i0 01 58 F40.3(0.578)
1498     i2 i0 01 58 F40.3(0.573)
1499     i3 i0 01 58 F40.3(0.666)
1500
1501 germano/Crosstabs/00000000014_lightTableData.bin:
1502
1503     i432
1504
1505     i0 i0 03 "<5                                       " 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) i0 "<5                                       " 00
1506     i96 i0 03 "<5                                       " 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) i0 "<5                                       " 00
1507     i192 i0 03 "<5                                       " 31 i0 i1 "a" i11 i5 00 00 00 00 58 58 58 i0 "<5                                       " 00
1508     20 i1 00 00 00 03 "<5                                       " 31 i0 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5                                       " 00
1509     80 i1 00 00 00 01 58 F40.0(12)
1510     i8 00 00 00 00 01 31 i0 i1 "a" i11: (i5: (i0 58) 58 58) F40.0(5)
1511     i104 00 00 00 00 03 "<5                                       " 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) 00 00 00 00 
1512 "<5                                       " 00 i200 00 00 00 00 03 
1513 "<5                                       " i49 00 i1 
1514 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1515 "<5                                       " 00 28 i1 00 00 00 03 
1516 "<5                                       " i49 00 i1 
1517 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1518 "<5                                       " 00 88 i1 00 00 00 01 58 F40.0(15)
1519 i16 00 00 00 00 03 
1520 "<5                                       " i49 00 i1 
1521 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1522 "<5                                       " 00 i112 00 00 00 00 03 
1523 "<5                                       " i49 00 i1 
1524 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1525 "<5                                       " 00 i208 00 00 00 00 03 
1526 "<5                                       " i49 00 i1 
1527 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1528 "<5                                       " 00 30 i1 00 00 00 03 
1529 "<5                                       " i49 00 i1 
1530 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1531 "<5                                       " 00 90 i1 00 00 00 01 58 F40.0(12)
1532 i24 00 00 00 00 01 i49 00 i1 
1533
1534 web/c6b0660f7afccdb067f766a44ded21ab/00000000038_lightTableData.bin (Rotated Factor Matrix):
1535
1536     i315 i0 03 " " 58 "" "" 00
1537     i1 i0 03 " " 58 "" "" 00
1538     i6 i0 03 
1539     " " 58 00 00 00 00 
1540     " " 00 i11 00 00 00 00 03 
1541     " " 58 00 00 00 00 
1542
1543 web/f748b5e575e0a0c2e55698c3b18d272e/00000000134_lightTableData.bin (Report):
1544
1545     i226 00 00 00 00 02 58 F40.0(sysmis) "V4" 00 00 00 00 02
1546     i241 00 00 00 00 02 58 F40.0(342345) "V4" 00 00 00 00 02
1547     00 i1 00 00 00 02 58 F40.0(sysmis) "V4" 00 00 00 00 02
1548     0f i1 00 00 00 02 58 F40.0(sysmis) "V4" 00 00 00 00 02
1549     1e i1 00 00 00 02 58 F40.0(522773) "V4" 00 00 00 00 02
1550     2d i1 00 00 00 02 58 F40.0(sysmis) "V4" 00 00 00 00 02
1551
1552 web/f748b5e575e0a0c2e55698c3b18d272e/00000000134_lightTableData.bin (Report):
1553
1554     i497 i0 04 58 00 19 i1 00 00 "V5" 02 "% of total particles"
1555     i512 04 58 00 19 i1 00 00 "V5" 02 "322."
1556     0f i2 00 00 00 04 58 00 19 i1 00 00 "V5" 02 "% of total mass"
1557     1e i2 00 00 00 04 58 00 19 i1 00 00 "V5" 02 "% of total particles"
1558     2d i2 00 00 00 04 58 00 19 i1 00 00 "V5" 02 "581."
1559
1560 germano/Crosstabs/00000000014_lightTableData.bin (Crosstabulation):
1561
1562     i0 i2 i1 i2 i0
1563
1564     i1
1565
1566     i432 i0 i0 03 "<5                                       "
1567         31 i0 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1568         "<5                                       " 00
1569     i96 00 00 00 00 03 "<5                                       "
1570         i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1571         "<5                                       " 00
1572     i192 00 00 00 00 03 "<5                                       "
1573         i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1574         "<5                                       " 00
1575     20 i1 00 00 00 03 "<5                                       "
1576         i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1577         "<5                                       " 00
1578     80 i1 00 00 00 01 58 F40.0(12)
1579     i8 00 00 00 00 01 i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 F40.0(5)
1580
1581 web/1fe57275203d4c8b7eca5bd796738e71/00000000014_lightTableData.bin (Correlation Matrix):
1582
1583     i1 i2 00 00 00 00 00 00 00 00 00 00 00 00 i2 i1 00 00 00 00 i2 i1 10 01 00 00 i17 00 00 00 00 01 58 F40.3(0.043)
1584     i34 00 00 00 00 01 58 F40.3(0.318)
1585     i51 00 00 00 00 01 58 F40.3(0.486)
1586     i68 00 00 00 00 01 58 F40.3(0.226)
1587     i85 00 00 00 00 01 58 F40.3(0.183)
1588     i102 00 00 00 00 01 58 F40.3(0.278)
1589     i119 00 00 00 00 01 58 F40.3(0.275)
1590     i136 00 00 00 00 01 58 F40.3(0.019)
1591
1592 web/f748b5e575e0a0c2e55698c3b18d272e/00000000075_lightTableData.bin (Case Processing Summary):
1593
1594     i5
1595     i0 i0 01 58 F40.0(46)
1596     i1 i0 01 58 F40.0(0)
1597     i2 i0 01 31 i2 00 00 i1 00 00 i6 00 00 00 00 58 58 F40.0(62)
1598     i3 i0 01 58 F40.0(15)
1599     i4 i0 01 58 F40.0(15)
1600
1601 web/76e9b53e9f775fb690a88919ccdbb03c/00000000743_lightWarningData.bin (Warnings):
1602
1603     i0 i0 31 i0 i0 i72: (i66: ("" 31 "Fewer than two groups for depvar ^1 in split [:^1=^2,:]2.") 58 58) "There are fewer than two groups for dependent variable ^1 in split file [%1 = %2:, ^1 = ^2:]2. No statistics are computed." i2
1604         i0
1605             05 58 "soi_tot" 00 00 00 00 02
1606         i2 i0
1607             05 58 "erotica_virgin" 00 00 00 00 i2 00
1608             02 58 F40.1(1.0)
1609
1610     "erotica_virgin" 
1611     "EROTICA VIRGIN" 02 
1612
1613 web/c6b0660f7afccdb067f766a44ded21ab/00000000031_lightNotesData.bin (Notes):
1614
1615     i13 i0 01 58 DTIME13.2(0.156)
1616     i14 i0 01 58 DTIME13.2(0.14)
1617     i15 i0 00 31 i0 i0 i29: (i23: ("" 31 "^1 (^2K) bytes") 58 58 ) "^1 (^2K) bytes" i2
1618         i0 01 58 F40.0(459728)
1619         i0 01 58 03 28 28 00 00 00 00 00 40 0f 7c 40 
1620
1621 web/f748b5e575e0a0c2e55698c3b18d272e/00000000094_lightTableData.bin (Model Description):
1622
1623     i10
1624     i0 i0 00 58 "^1" i1 i0 03 "MOD_2" 58 "" "MOD_2" 00
1625     i1 i0 05 58 "V15" "mass/breath" 02
1626     i2 i0 05 58 "V29" "particles/breath-v2" 02
1627     i3 i0 03 "None" 58 "" "None" 01
1628     i4 00 00 00 00 01 58 F40.0(0)
1629     i5 00 00 00 00 01 58 F40.0(0)
1630     i6 00 00 00 00 03 "No periodicity" 58 "no_help" "No periodicity" 01
1631     i7 00 00 00 00 01 58 F40.0(16)
1632     i8 00 00 00 00 03 "Independence(white noise)" 31 i1 00 00 00 00 00 00 i6 00 00 00 00 58 58 "no_help" "Independence(white noise)" 01
1633     i9 00 00 00 00 03 "All lags" 58 "no_help" "All lags" 01 
1634
1635
1636 web/f748b5e575e0a0c2e55698c3b18d272e/00000000253_lightWarningData.bi (Warnings):
1637
1638     i12
1639
1640     i0 i0 00 58 "There are fewer than two groups for dependent variable ^1 in split file [%1 = %2:, ^1 = ^2:]2. No statistics are computed." 
1641         i2 i0     05 58 "Tot_Part_V1" "Total particles" 02
1642         i2 i0     05 58 "Sitting" "Sitting" 02
1643         i0        02 58 F40.0(50) "Sitting" "" 02
1644
1645     i1 i0 00 58 "There are fewer than two groups for dependent variable ^1 in split file [%1 = %2:, ^1 = ^2:]2. No statistics are computed."
1646         i2 i0 05 58 "Samp_timeV2" "Sampling time-v2" 02
1647         i2 i0 05 58 "Sitting" "Sitting"
1648         i2 00 02 58 F40.0(50) "Sitting" i0 02
1649
1650     i2 i0 00 58 "There are fewer than two groups for dependent variable ^1 in split file [%1 = %2:, ^1 = ^2:]2. No statistics are computed." i2 00 00 00 00 05 58 
1651     "Sampling_time_V1" 
1652     "Sampling time" 02 i2 00 00 00 00 05 58 
1653
1654 smekens/default/00000000011_lightNotesData.bin (Notes):
1655
1656     i15 i0 00 58 "^1 (^2K) bytes" i2
1657         i0 01 58 F40.0(40024)
1658         i0 01 58 03 28 i40 00 00 00 8b 43 40 
1659
1660
1661
1662 Data: tdump21 (germano/Crosstabs.pdf)
1663 -------------
1664
1665 i0 i0 01 58 F40.3(0.084)
1666 i20 i0 01 58 F40.3(0.147)
1667 i40 i0 01 58 F40.3(0.025)
1668 i24 i0 01 58 F40.3(0.061)
1669 i44 i0 01 58 F40.3(0.017)
1670 i8 i0 01 58 F40.3(0.054)
1671 i28 i0 01 58 F40.3(0.069)
1672 i48 i0 01 58 F40.3(0.045)
1673 i12 i0 01 58 F40.3(0.028)
1674 i32 i0 01 58 F40.3(0.026)
1675 i52 i0 01 58 F40.3(0.030)
1676 i36 i0 01 58 F40.3(0.196)
1677 i56 i0 01 58 F40.3(0.077)
1678 -
1679 i1 i0 01 58 F40.3(0.055)
1680 i21 i0 01 58 F40.3(0.077)
1681 i41 i0 01 58 F40.3(0.056)
1682 i25 i0 01 58 F40.3(0.020)
1683 i45 i0 01 58 F40.3(0.010)
1684 i9 i0 01 58 F40.3(0.021)
1685 i29 i0 01 58 F40.3(0.026)
1686 i49 i0 01 58 F40.3(0.017)
1687 i13 i0 01 58 F40.3(0.083)
1688 i33 i0 01 58 F40.3(0.078)
1689 i53 i0 01 58 F40.3(0.090)
1690
1691 i2 i0 01 58 F40.3(1.498)
1692 i22 i0 01 58 F40.3(1.789)
1693 i42 i0 01 58 F40.3(0.448)
1694 i10 i0 01 58 F40.3(2.594)
1695 i30 i0 01 58 F40.3(2.594)
1696 i50 i0 01 58 F40.3(2.594)
1697 i14 i0 01 58 F40.3(0.337)
1698 i34 i0 01 58 F40.3(0.337)
1699 i54 i0 01 58 F40.3(0.337)
1700
1701 i3 i0 01 58 F40.3(0.134)
1702 i23 i0 01 58 F40.3(0.074)
1703 i43 i0 01 58 F40.3(0.654)
1704 with footnote c (2):
1705     i27 i0 01 31 i1 i2 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.955)
1706     i47 i0 01 31 i1 i2 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.975)
1707 with footnote d (3):
1708     i11 i0 01 31 i1 i3 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.939)
1709     i31 i0 01 31 i1 i3 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.939)
1710     i51 i0 01 31 i1 i3 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.939)
1711 i15 i0 01 58 F40.3(0.736)
1712 i35 i0 01 58 F40.3(0.736)
1713 i55 i0 01 58 F40.3(0.736)
1714
1715
1716 Data: tdump9
1717 ------------
1718
1719 0c == font size in points?
1720
1721 i3   i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(11.0)
1722 ...
1723 i59  i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(3.3)
1724 ...
1725 i107 i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(-2.8)
1726 ...
1727 i87  i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(2.5)
1728 ...
1729 i111 i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(-3.5)
1730 ...
1731 i67  i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(-3.5)
1732 ...
1733 i115 i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(6.9)
1734
1735 Data: tdump19
1736 -------------
1737
1738 40 observations (i40):
1739
1740 i0 i1 i2 i2 00 00 00 00 i1 i40 
1741 i0 00 00 00 00 01 58 F40.0(100)
1742 i4 00 00 00 00 01 58 F40.1(16.0)
1743 i8 00 00 00 00 01 58 F40.1(64.0)
1744 i12 00 00 00 00 01 58 F40.1(80.0)
1745 i16 00 00 00 00 01 58 F40.1(7227.0)
1746 i20 00 00 00 00 01 58 F40.3(72.270)
1747 i60 00 00 00 00 01 58 F40.4(0.3216)
1748 i24 00 00 00 00 01 58 F40.4(3.2157)
1749 i28 00 00 00 00 01 58 F40.3(10.341)
1750 i32 00 00 00 00 01 58 F40.3(-0.032)
1751 i72 00 00 00 00 01 58 F40.3(0.241)
1752 i36 00 00 00 00 01 58 F40.3(-0.235)
1753 i76 00 00 00 00 01 58 F40.3(0.478)
1754 i1 00 00 00 00 01 58 F40.0(100)
1755 i5 00 00 00 00 01 58 F40.1(25.0)
1756 i9 00 00 00 00 01 58 F40.1(62.0)
1757 i13 00 00 00 00 01 58 F40.1(87.0)
1758 i17 00 00 00 00 01 58 F40.1(7385.0)
1759 i21 00 00 00 00 01 58 F40.3(73.850)
1760 i61 00 00 00 00 01 58 F40.4(0.5131)
1761 i25 00 00 00 00 01 58 F40.4(5.1314)
1762 i29 00 00 00 00 01 58 F40.3(26.331)
1763 i33 00 00 00 00 01 58 F40.3(0.055)
1764 i73 00 00 00 00 01 58 F40.3(0.241)
1765 i37 00 00 00 00 01 58 F40.3(-0.213)
1766 i77 00 00 00 00 01 58 F40.3(0.478)
1767 i2 00 00 00 00 01 58 F40.0(100)
1768 i6 00 00 00 00 01 58 F40.1(22.0)
1769 i10 00 00 00 00 01 58 F40.1(64.0)
1770 i14 00 00 00 00 01 58 F40.1(86.0)
1771 i18 00 00 00 00 01 58 F40.1(7280.0)
1772 i22 00 00 00 00 01 58 F40.3(72.800)
1773 i62 00 00 00 00 01 58 F40.4(0.4740)
1774 i26 00 00 00 00 01 58 F40.4(4.7397)
1775 i30 00 00 00 00 01 58 F40.3(22.465)
1776 i34 00 00 00 00 01 58 F40.3(0.223)
1777 i74 00 00 00 00 01 58 F40.3(0.241)
1778 i38 00 00 00 00 01 58 F40.3(-0.099)
1779 i78 00 00 00 00 01 58 F40.3(0.478)
1780 i3 00 00 00 00 01 58 F40.0(100)
1781
1782
1783 Data: tdump27
1784 -------------
1785
1786 21 observations (i21):
1787 01 00 00 00 i1 00 00 00 00 00 00 00 00 i1 i21
1788 i0 00 00 00 00 01 58 F40.0(100)
1789 i1 00 00 00 00 01 58 F40.0(0)
1790 i2 00 00 00 00 01 58 F40.2(3.31)
1791 i3 00 00 00 00 01 58 F40.3(0.244)
1792 i4 00 00 00 00 01 58 F40.2(3.00)
1793 i5 00 00 00 00 01 58 F40.0(4)
1794 i6 00 00 00 00 01 58 F40.3(2.444)
1795 i7 00 00 00 00 01 58 F40.3(5.974)
1796 i8 00 00 00 00 01 58 F40.3(0.796)
1797 i9 00 00 00 00 01 58 F40.3(0.241)
1798 i10 00 00 00 00 01 58 F40.3(0.451)
1799 i11 00 00 00 00 01 58 F40.3(0.478)
1800 i12 00 00 00 00 01 58 F40.0(10)
1801 i13 00 00 00 00 01 58 F40.0(0)
1802 i14 00 00 00 00 01 58 F40.0(10)
1803 i15 00 00 00 00 01 58 F40.0(331)
1804 i16 00 00 00 00 01 58 F40.2(0.00)
1805 i17 00 00 00 00 01 58 F40.2(1.00)
1806 i18 00 00 00 00 01 58 F40.2(3.00)
1807 i19 00 00 00 00 01 58 F40.2(4.00)
1808 i20 00 00 00 00 01 58 F40.2(7.00)
1809
1810 Data: tdump24 (germano/Crosstabs.pdf)
1811 -------------
1812
1813 432 observations (i432):
1814 i0 i2 i1 i2 i0 i432
1815 i0 i0 00 00 03 "<5" 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) 00 00 00 00 "<5" 00
1816 i96 i0 03 "<5" 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) 00 00 00 00 "<5" 00
1817 i192 00 00 00 00 03 "<5" 31 00 00 00 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5" 00
1818 i288 i0 03 "<5" 31 00 00 00 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5" 00
1819 i384 i0 01 58 F40.0(12)
1820 i8 i0 01 ((31 i0 i1 "a" i11 i5 i0 58 58)) 58 F40.0(5)
1821 i104 00 00 00 00 03 
1822 "<5" 31 00 00 00 00 i1 
1823 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1824 "<5" 00 i200 00 00 00 00 03 
1825 "<5" 31 00 00 00 00 i1 
1826 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1827 "<5" 00 28 i1 00 00 00 03 
1828 "<5" 31 00 00 00 00 i1 
1829 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1830 "<5" 00 88 i1 00 00 00 01 58 F40.0(15)
1831 i16 00 00 00 00 03 
1832 "<5" 31 00 00 00 00 i1 
1833 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1834 "<5" 00 i112 00 00 00 00 03 
1835 "<5" 31 00 00 00 00 i1 
1836 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1837 "<5" 00 i208 00 00 00 00 03 
1838 "<5" 31 00 00 00 00 i1 
1839 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1840 "<5" 00 30 i1 00 00 00 03 
1841 "<5" 31 00 00 00 00 i1 
1842 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1843 "<5" 00
1844 i400 i0 01 58 F40.0(12)
1845 i24 00 00 00 00 01 31 00 00 00 00 i1 
1846 "a" i11 i5 00 00 00 00 58 58 58 F40.0(5)
1847 i120 00 00 00 00 03 
1848 "<5" 31 00 00 00 00 i1 
1849 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1850 "<5" 00 i216 00 00 00 00 01 31 00 00 00 00 i1 
1851 "a" i11 i5 00 00 00 00 58 58 58 F40.0(6)
1852 38 i1 00 00 00 03 
1853 "<5" 31 00 00 00 00 i1 
1854 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1855 "<5" 00 98 i1 00 00 00 01 58 F40.0(16)
1856 i32 00 00 00 00 03 
1857 "<5" 31 00 00 00 00 i1 
1858 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1859 "<5" 00 i128 00 00 00 00 01 31 00 00 00 00 i1 
1860 "a" i11 i5 00 00 00 00 58 58 58 F40.0(7)
1861 i224 00 00 00 00 01 31 00 00 00 00 i1 
1862 "a" i11 i5 00 00 00 00 58 58 58 F40.0(6)
1863 40 i1 00 00 00 01 31 00 00 00 00 i1 
1864 "a" i11 i5 00 00 00 00 58 58 58 F40.0(5)
1865 a0 i1 00 00 00 01 58 F40.0(21)
1866 i40 00 00 00 00 03 
1867 "<5" 31 00 00 00 00 i1 
1868 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1869 "<5" 00 i136 00 00 00 00 01 31 00 00 00 00 i1 
1870 "a" i11 i5 00 00 00 00 58 58 58 F40.0(5)
1871 i232 00 00 00 00 03 
1872 "<5" 31 00 00 00 00 i1 
1873 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1874 "<5" 00 48 i1 00 00 00 03 
1875 "<5" 31 00 00 00 00 i1 
1876 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1877 "<5" 00 a8 i1 00 00 00 01 58 F40.0(11)
1878 i48 00 00 00 00 03 
1879 "<5" 31 00 00 00 00 i1 
1880 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1881 "<5" 00 i144 00 00 00 00 03 
1882 "<5" 31 00 00 00 00 i1 
1883 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1884 "<5" 00 i240 00 00 00 00 03 
1885 "<5" 31 00 00 00 00 i1 
1886 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1887 "<5" 00 50 i1 00 00 00 03 
1888 "<5" 31 00 00 00 00 i1 
1889 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1890 "<5" 00 b0 i1 00 00 00 03 
1891 "<5" 58 00 00 00 00 
1892 "<5" 00 i56 00 00 00 00 03 
1893 "<5" 31 00 00 00 00 i1 
1894 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1895 "<5" 00 i152 00 00 00 00 03 
1896 "<5" 31 00 00 00 00 i1 
1897 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1898 "<5" 00 i248 00 00 00 00 03 
1899 "<5" 31 00 00 00 00 i1 
1900 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1901 "<5" 00 58 i1 00 00 00 03 
1902 "<5" 31 00 00 00 00 i1 
1903 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1904 "<5" 00 b8 i1 00 00 00 03 
1905 "<5" 58 00 00 00 00 
1906 "<5" 00 i64 00 00 00 00 03 
1907 "<5" 31 00 00 00 00 i1 
1908 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1909 "<5" 00 i160 00 00 00 00 03 
1910 "<5" 31 00 00 00 00 i1 
1911 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1912 "<5" 00 00 i1 00 00 00 03 
1913 "<5" 31 00 00 00 00 i1 
1914 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1915 "<5" 00 60 i1 00 00 00 03 
1916 "<5" 31 00 00 00 00 i1 
1917 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1918 "<5" 00 c0 i1 00 00 00 03 
1919 "<5" 58 00 00 00 00 
1920 "<5" 00 i72 00 00 00 00 03 
1921 "<5" 31 00 00 00 00 i1 
1922 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1923 "<5" 00 i168 00 00 00 00 03 
1924 "<5" 31 00 00 00 00 i1 
1925 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1926 "<5" 00 08 i1 00 00 00 03 
1927 "<5" 31 00 00 00 00 i1 
1928 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1929 "<5" 00 68 i1 00 00 00 03 
1930 "<5" 31 00 00 00 00 i1 
1931 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1932 "<5" 00 c8 i1 00 00 00 03 
1933 "<5" 58 00 00 00 00 
1934 "<5" 00 i80 00 00 00 00 03 
1935 "<5" 31 00 00 00 00 i1 
1936 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1937 "<5" 00 i176 00 00 00 00 03 
1938 "<5" 31 00 00 00 00 i1 
1939 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1940 "<5" 00 10 i1 00 00 00 03 
1941 "<5" 31 00 00 00 00 i1 
1942 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1943 "<5" 00 70 i1 00 00 00 03 
1944 "<5" 31 00 00 00 00 i1 
1945 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1946 "<5" 00 d0 i1 00 00 00 03 
1947 "<5" 58 00 00 00 00 
1948 "<5" 00
1949 i88 00 00 00 00 01 58 F40.0(25)
1950 i184 00 00 00 00 01 58 F40.0(25)
1951 18 i1 00 00 00 01 58 F40.0(25)
1952 78 i1 00 00 00 01 58 F40.0(25)
1953 d8 i1 00 00 00 01 58 F40.0(100)
1954 i1 00 00 00 00 01 58 F40.1(3.0)
1955 i97 00 00 00 00 01 58 F40.1(3.0)
1956 i193 00 00 00 00 01 58 F40.1(3.0)
1957 i277 00 00 00 00 01 58 F40.1(3.0)
1958 81 i1 00 00 00 01 58 F40.1(12.0)
1959 i9 00 00 00 00 01 58 F40.1(3.8)
1960 i105 00 00 00 00 01 58 F40.1(3.8)
1961 i201 00 00 00 00 01 58 F40.1(3.8)
1962 29 i1 00 00 00 01 58 F40.1(3.8)
1963 89 i1 00 00 00 01 58 F40.1(15.0)
1964 i17 00 00 00 00 01 58 F40.1(3.0)
1965 i113 00 00 00 00 01 58 F40.1(3.0)
1966 i209 00 00 00 00 01 58 F40.1(3.0)
1967 31 i1 00 00 00 01 58 F40.1(3.0)
1968 91 i1 00 00 00 01 58 F40.1(12.0)
1969 i25 00 00 00 00 01 58 F40.1(4.0)
1970 i121 00 00 00 00 01 58 F40.1(4.0)
1971 i217 00 00 00 00 01 58 F40.1(4.0)
1972 39 i1 00 00 00 01 58 F40.1(4.0)
1973 99 i1 00 00 00 01 58 F40.1(16.0)
1974 i33 00 00 00 00 01 58 F40.1(5.2)
1975 i129 00 00 00 00 01 58 F40.1(5.2)
1976 i225 00 00 00 00 01 58 F40.1(5.2)
1977 41 i1 00 00 00 01 58 F40.1(5.2)
1978 a1 i1 00 00 00 01 58 F40.1(21.0)
1979 i41 00 00 00 00 01 58 F40.1(2.8)
1980 i137 00 00 00 00 01 58 F40.1(2.8)
1981 i233 00 00 00 00 01 58 F40.1(2.8)
1982 49 i1 00 00 00 01 58 F40.1(2.8)
1983 a9 i1 00 00 00 01 58 F40.1(11.0)
1984 31 00 00 00 00 00 00 00 03 
1985 "n<5" 58 00 00 00 00 
1986 "n<5" 00 i145 00 00 00 00 03 
1987 "n<5" 58 00 00 00 00 
1988 "n<5" 00 i241 00 00 00 00 03 
1989 "n<5" 58 00 00 00 00 
1990 "n<5" 00 51 i1 00 00 00 03 
1991 "n<5" 58 00 00 00 00 
1992 "n<5" 00 b1 i1 00 00 00 03 
1993 "<5" 58 00 00 00 00 
1994 "<5" 00 i57 00 00 00 00 03 
1995 "n<5" 58 00 00 00 00 
1996 "n<5" 00 i153 00 00 00 00 03 
1997 "n<5" 58 00 00 00 00 
1998 "n<5" 00 i249 00 00 00 00 03 
1999 "n<5" 58 00 00 00 00 
2000 "n<5" 00 59 i1 00 00 00 03 
2001 "n<5" 58 00 00 00 00 
2002 "n<5" 00 b9 i1 00 00 00 03 
2003 "<5" 58 00 00 00 00 
2004 "<5" 00 i65 00 00 00 00 03 
2005 "n<5" 58 00 00 00 00 
2006 "n<5" 00 i161 00 00 00 00 03 
2007 "n<5" 58 00 00 00 00 
2008 "n<5" 00 01 i1 00 00 00 03 
2009 "n<5" 58 00 00 00 00 
2010 "n<5" 00 61 i1 00 00 00 03 
2011 "n<5" 58 00 00 00 00 
2012 "n<5" 00 c1 i1 00 00 00 03 
2013 "<5" 58 00 00 00 00 
2014 "<5" 00 i73 00 00 00 00 03 
2015 "n<5" 58 00 00 00 00 
2016 "n<5" 00 i169 00 00 00 00 03 
2017 "n<5" 58 00 00 00 00 
2018 "n<5" 00 09 i1 00 00 00 03 
2019 "n<5" 58 00 00 00 00 
2020 "n<5" 00 69 i1 00 00 00 03 
2021 "n<5" 58 00 00 00 00 
2022 "n<5" 00 c9 i1 00 00 00 03 
2023 "<5" 58 00 00 00 00 
2024 "<5" 00 i81 00 00 00 00 03 
2025 "n<5" 58 00 00 00 00 
2026 "n<5" 00 i177 00 00 00 00 03 
2027 "n<5" 58 00 00 00 00 
2028 "n<5" 00 11 i1 00 00 00 03 
2029 "n<5" 58 00 00 00 00 
2030 "n<5" 00 71 i1 00 00 00 03 
2031 "n<5" 58 00 00 00 00 
2032 "n<5" 00 d1 i1 00 00 00 03 
2033 "<5" 58 00 00 00 00 
2034 "<5" 00 i89 00 00 00 00 01 58 F40.1(25.0)
2035 i185 00 00 00 00 01 58 F40.1(25.0)
2036 19 i1 00 00 00 01 58 F40.1(25.0)
2037 79 i1 00 00 00 01 58 F40.1(25.0)
2038 d9 i1 00 00 00 01 58 F40.1(100.0)
2039 i2 00 00 00 00 03 
2040 "n<5" 58 00 00 00 00 
2041 "n<5" 00 i98 00 00 00 00 03 
2042 "n<5" 58 00 00 00 00 
2043 "n<5" 00 i194 00 00 00 00 03 
2044 "n<5" 58 00 00 00 00 
2045 "n<5" 00 22 i1 00 00 00 03 
2046 "n<5" 58 00 00 00 00 
2047 "n<5" 00
2048 82 i1 00 00 00 01 58 PCT40.1(12.0)
2049 i10 00 00 00 00 01 58 PCT40.1(20.0)
2050 i106 00 00 00 00 03 
2051 "n<5" 58 00 00 00 00 
2052 "n<5" 00 i202 00 00 00 00 03 
2053 "n<5" 58 00 00 00 00 
2054 "n<5" 00 2a i1 00 00 00 03 
2055 "n<5" 58 00 00 00 00 
2056 "n<5" 00 8a i1 00 00 00 01 58 PCT40.1(15.0)
2057 i18 00 00 00 00 03 
2058 "n<5" 58 00 00 00 00 
2059 "n<5" 00 i114 00 00 00 00 03 
2060 "n<5" 58 00 00 00 00 
2061 "n<5" 00 i210 00 00 00 00 03 
2062 "n<5" 58 00 00 00 00 
2063 "n<5" 00 32 i1 00 00 00 03 
2064 "n<5" 58 00 00 00 00 
2065 "n<5" 00 92 i1 00 00 00 01 58 PCT40.1(12.0)
2066 i26 00 00 00 00 01 58 PCT40.1(20.0)
2067 i122 00 00 00 00 03 
2068 "n<5" 58 00 00 00 00 
2069 "n<5" 00 i218 00 00 00 00 01 58 PCT40.1(24.0)
2070 3a i1 00 00 00 03 
2071 "n<5" 58 00 00 00 00 
2072 "n<5" 00 9a i1 00 00 00 01 58 PCT40.1(16.0)
2073 i34 00 00 00 00 03 
2074 "n<5" 58 00 00 00 00 
2075 "n<5" 00 i130 00 00 00 00 01 58 PCT40.1(28.0)
2076 i226 00 00 00 00 01 58 PCT40.1(24.0)
2077 42 i1 00 00 00 01 58 PCT40.1(20.0)
2078 a2 i1 00 00 00 01 58 PCT40.1(21.0)
2079 i42 00 00 00 00 03 
2080 "n<5" 58 00 00 00 00 
2081 "n<5" 00 i138 00 00 00 00 01 58 PCT40.1(20.0)
2082 i234 00 00 00 00 03 
2083 "n<5" 58 00 00 00 00 
2084 "n<5" 00 4a i1 00 00 00 03 
2085 "n<5" 58 00 00 00 00 
2086 "n<5" 00 aa i1 00 00 00 01 58 PCT40.1(11.0)
2087 i50 00 00 00 00 03 
2088 "n<5" 58 00 00 00 00 
2089 "n<5" 00 i146 00 00 00 00 03 
2090 "n<5" 58 00 00 00 00 
2091 "n<5" 00 i242 00 00 00 00 03 
2092 "n<5" 58 00 00 00 00 
2093 "n<5" 00 52 i1 00 00 00 03 
2094 "n<5" 58 00 00 00 00 
2095 "n<5" 00 b2 i1 00 00 00 03 
2096 "n<5" 58 00 00 00 00 
2097 "n<5" 00 i58 00 00 00 00 03 
2098 "n<5" 58 00 00 00 00 
2099 "n<5" 00 i154 00 00 00 00 03 
2100 "n<5" 58 00 00 00 00 
2101 "n<5" 00 i250 00 00 00 00 03 
2102 "n<5" 58 00 00 00 00 
2103 "n<5" 00 5a i1 00 00 00 03 
2104 "n<5" 58 00 00 00 00 
2105 "n<5" 00 ba i1 00 00 00 03 
2106 "n<5" 58 00 00 00 00 
2107 "n<5" 00 i66 00 00 00 00 03 
2108 "n<5" 58 00 00 00 00 
2109 "n<5" 00 i162 00 00 00 00 03 
2110 "n<5" 58 00 00 00 00 
2111 "n<5" 00 02 i1 00 00 00 03 
2112 "n<5" 58 00 00 00 00 
2113 "n<5" 00 62 i1 00 00 00 03 
2114 "n<5" 58 00 00 00 00 
2115 "n<5" 00 c2 i1 00 00 00 03 
2116 "n<5" 58 00 00 00 00 
2117 "n<5" 00 i74 00 00 00 00 03 
2118 "n<5" 58 00 00 00 00 
2119 "n<5" 00 i170 00 00 00 00 03 
2120 "n<5" 58 00 00 00 00 
2121 "n<5" 00 0a i1 00 00 00 03 
2122 "n<5" 58 00 00 00 00 
2123 "n<5" 00 6a i1 00 00 00 03 
2124 "n<5" 58 00 00 00 00 
2125 "n<5" 00 ca i1 00 00 00 03 
2126 "n<5" 58 00 00 00 00 
2127 "n<5" 00 i82 00 00 00 00 03 
2128 "n<5" 58 00 00 00 00 
2129 "n<5" 00 i178 00 00 00 00 03 
2130 "n<5" 58 00 00 00 00 
2131 "n<5" 00 12 i1 00 00 00 03 
2132 "n<5" 58 00 00 00 00 
2133 "n<5" 00 72 i1 00 00 00 03 
2134 "n<5" 58 00 00 00 00 
2135 "n<5" 00 d2 i1 00 00 00 03 
2136 "n<5" 58 00 00 00 00 
2137 "n<5" 00 i90 00 00 00 00 01 58 PCT40.1(100.0)
2138 i186 00 00 00 00 01 58 PCT40.1(100.0)
2139 1a i1 00 00 00 01 58 PCT40.1(100.0)
2140 7a i1 00 00 00 01 58 PCT40.1(100.0)
2141 da i1 00 00 00 01 58 PCT40.1(100.0)
2142 i3 00 00 00 00 03 
2143 "n<5" 58 00 00 00 00 
2144 "n<5" 00 i99 00 00 00 00 03 
2145 "n<5" 58 00 00 00 00 
2146 "n<5" 00 i195 00 00 00 00 03 
2147 "n<5" 58 00 00 00 00 
2148 "n<5" 00 23 i1 00 00 00 03 
2149 "n<5" 58 00 00 00 00 
2150 "n<5" 00 83 i1 00 00 00 01 58 PCT40.1(100.0)
2151 i11 00 00 00 00 01 58 PCT40.1(33.3)
2152 i107 00 00 00 00 03 
2153 "n<5" 58 00 00 00 00 
2154 "n<5" 00 i203 00 00 00 00 03 
2155 "n<5" 58 00 00 00 00 
2156 "n<5" 00 2b i1 00 00 00 03 
2157 "n<5" 58 00 00 00 00 
2158 "n<5" 00 8b i1 00 00 00 01 58 PCT40.1(100.0)
2159 i19 00 00 00 00 03 
2160 "n<5" 58 00 00 00 00 
2161 "n<5" 00 i115 00 00 00 00 03 
2162 "n<5" 58 00 00 00 00 
2163 "n<5" 00 i211 00 00 00 00 03 
2164 "n<5" 58 00 00 00 00 
2165 "n<5" 00 33 i1 00 00 00 03 
2166 "n<5" 58 00 00 00 00 
2167 "n<5" 00 93 i1 00 00 00 01 58 PCT40.1(100.0)
2168 i27 00 00 00 00 01 58 PCT40.1(31.2)
2169 i123 00 00 00 00 03 
2170 "n<5" 58 00 00 00 00 
2171 "n<5" 00 i219 00 00 00 00 01 58 PCT40.1(37.5)
2172 3b i1 00 00 00 03 
2173 "n<5" 58 00 00 00 00 
2174 "n<5" 00 9b i1 00 00 00 01 58 PCT40.1(100.0)
2175 i35 00 00 00 00 03 
2176 "n<5" 58 00 00 00 00 
2177 "n<5" 00 i131 00 00 00 00 01 58 PCT40.1(33.3)
2178 i227 00 00 00 00 01 58 PCT40.1(28.6)
2179 43 i1 00 00 00 01 58 PCT40.1(23.8)
2180 a3 i1 00 00 00 01 58 PCT40.1(100.0)
2181 i43 00 00 00 00 03 
2182 "n<5" 58 00 00 00 00 
2183 "n<5" 00 i139 00 00 00 00 01 58 PCT40.1(45.5)
2184 i235 00 00 00 00 03 
2185 "n<5" 58 00 00 00 00 
2186 "n<5" 00 4b i1 00 00 00 03 
2187 "n<5" 58 00 00 00 00 
2188 "n<5" 00 ab i1 00 00 00 01 58 PCT40.1(100.0)
2189 i51 00 00 00 00 03 
2190 "n<5" 58 00 00 00 00 
2191 "n<5" 00 i147 00 00 00 00 03 
2192 "n<5" 58 00 00 00 00 
2193 "n<5" 00 i243 00 00 00 00 03 
2194 "n<5" 58 00 00 00 00 
2195 "n<5" 00 53 i1 00 00 00 03 
2196 "n<5" 58 00 00 00 00 
2197 "n<5" 00 b3 i1 00 00 00 01 58 PCT40.1(100.0)
2198 i59 00 00 00 00 03 
2199 "n<5" 58 00 00 00 00 
2200 "n<5" 00 i155 00 00 00 00 03 
2201 "n<5" 58 00 00 00 00 
2202 "n<5" 00 i251 00 00 00 00 03 
2203 "n<5" 58 00 00 00 00 
2204 "n<5" 00 5b i1 00 00 00 03 
2205 "n<5" 58 00 00 00 00 
2206 "n<5" 00 bb i1 00 00 00 01 58 PCT40.1(100.0)
2207 i67 00 00 00 00 03 
2208 "n<5" 58 00 00 00 00 
2209 "n<5" 00 i163 00 00 00 00 03 
2210 "n<5" 58 00 00 00 00 
2211 "n<5" 00 03 i1 00 00 00 03 
2212 "n<5" 58 00 00 00 00 
2213 "n<5" 00 63 i1 00 00 00 03 
2214 "n<5" 58 00 00 00 00 
2215 "n<5" 00 c3 i1 00 00 00 01 58 PCT40.1(100.0)
2216 i75 00 00 00 00 03 
2217 "n<5" 58 00 00 00 00 
2218 "n<5" 00 i171 00 00 00 00 03 
2219 "n<5" 58 00 00 00 00 
2220 "n<5" 00 0b i1 00 00 00 03 
2221 "n<5" 58 00 00 00 00 
2222 "n<5" 00 6b i1 00 00 00 03 
2223 "n<5" 58 00 00 00 00 
2224 "n<5" 00 cb i1 00 00 00 01 58 PCT40.1(100.0)
2225 i83 00 00 00 00 03 
2226 "n<5" 58 00 00 00 00 
2227 "n<5" 00 i179 00 00 00 00 03 
2228 "n<5" 58 00 00 00 00 
2229 "n<5" 00 13 i1 00 00 00 03 
2230 "n<5" 58 00 00 00 00 
2231 "n<5" 00 73 i1 00 00 00 03 
2232 "n<5" 58 00 00 00 00 
2233 "n<5" 00 d3 i1 00 00 00 01 58 PCT40.1(100.0)
2234 i91 00 00 00 00 01 58 PCT40.1(25.0)
2235 i187 00 00 00 00 01 58 PCT40.1(25.0)
2236 1b i1 00 00 00 01 58 PCT40.1(25.0)
2237 7b i1 00 00 00 01 58 PCT40.1(25.0)
2238 db i1 00 00 00 01 58 PCT40.1(100.0)
2239 i4 00 00 00 00 03 
2240 "n<5" 58 00 00 00 00 
2241 "n<5" 00 i100 00 00 00 00 03 
2242 "n<5" 58 00 00 00 00 
2243 "n<5" 00 i196 00 00 00 00 03 
2244 "n<5" 58 00 00 00 00 
2245 "n<5" 00 24 i1 00 00 00 03 
2246 "n<5" 58 00 00 00 00 
2247 "n<5" 00 84 i1 00 00 00 01 58 PCT40.1(12.0)
2248 i12 00 00 00 00 01 58 PCT40.1(5.0)
2249 i108 00 00 00 00 03 
2250 "n<5" 58 00 00 00 00 
2251 "n<5" 00 i204 00 00 00 00 03 
2252 "n<5" 58 00 00 00 00 
2253 "n<5" 00 2c i1 00 00 00 03 
2254 "n<5" 58 00 00 00 00 
2255 "n<5" 00 8c i1 00 00 00 01 58 PCT40.1(15.0)
2256 i20 00 00 00 00 03 
2257 "n<5" 58 00 00 00 00 
2258 "n<5" 00 i116 00 00 00 00 03 
2259 "n<5" 58 00 00 00 00 
2260 "n<5" 00 i212 00 00 00 00 03 
2261 "n<5" 58 00 00 00 00 
2262 "n<5" 00 34 i1 00 00 00 03 
2263 "n<5" 58 00 00 00 00 
2264 "n<5" 00 94 i1 00 00 00 01 58 PCT40.1(12.0)
2265 i28 00 00 00 00 01 58 PCT40.1(5.0)
2266 i124 00 00 00 00 03 
2267 "n<5" 58 00 00 00 00 
2268 "n<5" 00 i220 00 00 00 00 01 58 PCT40.1(6.0)
2269 3c i1 00 00 00 03 
2270 "n<5" 58 00 00 00 00 
2271 "n<5" 00 9c i1 00 00 00 01 58 PCT40.1(16.0)
2272 i36 00 00 00 00 03 
2273 "n<5" 58 00 00 00 00 
2274 "n<5" 00 i132 00 00 00 00 01 58 PCT40.1(7.0)
2275 i228 00 00 00 00 01 58 PCT40.1(6.0)
2276 44 i1 00 00 00 01 58 PCT40.1(5.0)
2277 a4 i1 00 00 00 01 58 PCT40.1(21.0)
2278 i44 00 00 00 00 03 
2279 "n<5" 58 00 00 00 00 
2280 "n<5" 00 i140 00 00 00 00 01 58 PCT40.1(5.0)
2281 i236 00 00 00 00 03 
2282 "n<5" 58 00 00 00 00 
2283 "n<5" 00 4c i1 00 00 00 03 
2284 "n<5" 58 00 00 00 00 
2285 "n<5" 00 ac i1 00 00 00 01 58 PCT40.1(11.0)
2286 i52 00 00 00 00 03 
2287 "n<5" 58 00 00 00 00 
2288 "n<5" 00 i148 00 00 00 00 03 
2289 "n<5" 58 00 00 00 00 
2290 "n<5" 00 i244 00 00 00 00 03 
2291 "n<5" 58 00 00 00 00 
2292 "n<5" 00 54 i1 00 00 00 03 
2293 "n<5" 58 00 00 00 00 
2294 "n<5" 00 b4 i1 00 00 00 03 
2295 "n<5" 58 00 00 00 00 
2296 "n<5" 00 i60 00 00 00 00 03 
2297 "n<5" 58 00 00 00 00 
2298 "n<5" 00 i156 00 00 00 00 03 
2299 "n<5" 58 00 00 00 00 
2300 "n<5" 00 i252 00 00 00 00 03 
2301 "n<5" 58 00 00 00 00 
2302 "n<5" 00 5c i1 00 00 00 03 
2303 "n<5" 58 00 00 00 00 
2304 "n<5" 00 bc i1 00 00 00 03 
2305 "n<5" 58 00 00 00 00 
2306 "n<5" 00 i68 00 00 00 00 03 
2307 "n<5" 58 00 00 00 00 
2308 "n<5" 00 i164 00 00 00 00 03 
2309 "n<5" 58 00 00 00 00 
2310 "n<5" 00 04 i1 00 00 00 03 
2311 "n<5" 58 00 00 00 00 
2312 "n<5" 00 64 i1 00 00 00 03 
2313 "n<5" 58 00 00 00 00 
2314 "n<5" 00 c4 i1 00 00 00 03 
2315 "n<5" 58 00 00 00 00 
2316 "n<5" 00 i76 00 00 00 00 03 
2317 "n<5" 58 00 00 00 00 
2318 "n<5" 00 i172 00 00 00 00 03 
2319 "n<5" 58 00 00 00 00 
2320 "n<5" 00 0c i1 00 00 00 03 
2321 "n<5" 58 00 00 00 00 
2322 "n<5" 00 6c i1 00 00 00 03 
2323 "n<5" 58 00 00 00 00 
2324 "n<5" 00 cc i1 00 00 00 03 
2325 "n<5" 58 00 00 00 00 
2326 "n<5" 00 i84 00 00 00 00 03 
2327 "n<5" 58 00 00 00 00 
2328 "n<5" 00 i180 00 00 00 00 03 
2329 "n<5" 58 00 00 00 00 
2330 "n<5" 00 14 i1 00 00 00 03 
2331 "n<5" 58 00 00 00 00 
2332 "n<5" 00 74 i1 00 00 00 03 
2333 "n<5" 58 00 00 00 00 
2334 "n<5" 00 d4 i1 00 00 00 03 
2335 "n<5" 58 00 00 00 00 
2336 "n<5" 00 i92 00 00 00 00 01 58 PCT40.1(25.0)
2337 i188 00 00 00 00 01 58 PCT40.1(25.0)
2338 1c i1 00 00 00 01 58 PCT40.1(25.0)
2339 7c i1 00 00 00 01 58 PCT40.1(25.0)
2340 dc i1 00 00 00 01 58 PCT40.1(100.0)
2341 i5 00 00 00 00 03 
2342 "n<5" 58 00 00 00 00 
2343 "n<5" 00 i101 00 00 00 00 03 
2344 "n<5" 58 00 00 00 00 
2345 "n<5" 00 i197 00 00 00 00 03 
2346 "n<5" 58 00 00 00 00 
2347 "n<5" 00 25 i1 00 00 00 03 
2348 "n<5" 58 00 00 00 00 
2349 "n<5" 00 i13 00 00 00 00 01 58 F40.1(1.2)
2350 i109 00 00 00 00 03 
2351 "n<5" 58 00 00 00 00 
2352 "n<5" 00 i205 00 00 00 00 03 
2353 "n<5" 58 00 00 00 00 
2354 "n<5" 00 2d i1 00 00 00 03 
2355 "n<5" 58 00 00 00 00 
2356 "n<5" 00 i21 00 00 00 00 03 
2357 "n<5" 58 00 00 00 00 
2358 "n<5" 00 i117 00 00 00 00 03 
2359 "n<5" 58 00 00 00 00 
2360 "n<5" 00 i213 00 00 00 00 03 
2361 "n<5" 58 00 00 00 00 
2362 "n<5" 00 35 i1 00 00 00 03 
2363 "n<5" 58 00 00 00 00 
2364 "n<5" 00 i29 00 00 00 00 01 58 F40.1(1.0)
2365 i125 00 00 00 00 03 
2366 "n<5" 58 00 00 00 00 
2367 "n<5" 00 i221 00 00 00 00 01 58 F40.1(2.0)
2368 3d i1 00 00 00 03 
2369 "n<5" 58 00 00 00 00 
2370 "n<5" 00 i37 00 00 00 00 03 
2371 "n<5" 58 00 00 00 00 
2372 "n<5" 00 i133 00 00 00 00 01 58 F40.1(1.8)
2373 i229 00 00 00 00 01 58 F40.1(0.8)
2374 45 i1 00 00 00 01 58 F40.1(-0.2)
2375 i45 00 00 00 00 03 
2376 "n<5" 58 00 00 00 00 
2377 "n<5" 00 i141 00 00 00 00 01 58 F40.1(2.2)
2378 i237 00 00 00 00 03 
2379 "n<5" 58 00 00 00 00 
2380 "n<5" 00 4d i1 00 00 00 03 
2381 "n<5" 58 00 00 00 00 
2382 "n<5" 00 i53 00 00 00 00 03 
2383 "n<5" 58 00 00 00 00 
2384 "n<5" 00 i149 00 00 00 00 03 
2385 "n<5" 58 00 00 00 00 
2386 "n<5" 00 i245 00 00 00 00 03 
2387 "n<5" 58 00 00 00 00 
2388 "n<5" 00 55 i1 00 00 00 03 
2389 "n<5" 58 00 00 00 00 
2390 "n<5" 00 i61 00 00 00 00 03 
2391 "n<5" 58 00 00 00 00 
2392 "n<5" 00 i157 00 00 00 00 03 
2393 "n<5" 58 00 00 00 00 
2394 "n<5" 00 i253 00 00 00 00 03 
2395 "n<5" 58 00 00 00 00 
2396 "n<5" 00 5d i1 00 00 00 03 
2397 "n<5" 58 00 00 00 00 
2398 "n<5" 00 i69 00 00 00 00 03 
2399 "n<5" 58 00 00 00 00 
2400 "n<5" 00 i165 00 00 00 00 03 
2401 "n<5" 58 00 00 00 00 
2402 "n<5" 00 05 i1 00 00 00 03 
2403 "n<5" 58 00 00 00 00 
2404 "n<5" 00 65 i1 00 00 00 03 
2405 "n<5" 58 00 00 00 00 
2406 "n<5" 00 i77 00 00 00 00 03 
2407 "n<5" 58 00 00 00 00 
2408 "n<5" 00 i173 00 00 00 00 03 
2409 "n<5" 58 00 00 00 00 
2410 "n<5" 00 0d i1 00 00 00 03 
2411 "n<5" 58 00 00 00 00 
2412 "n<5" 00 6d i1 00 00 00 03 
2413 "n<5" 58 00 00 00 00 
2414 "n<5" 00 i85 00 00 00 00 03 
2415 "n<5" 58 00 00 00 00 
2416 "n<5" 00 i181 00 00 00 00 03 
2417 "n<5" 58 00 00 00 00 
2418 "n<5" 00 15 i1 00 00 00 03 
2419 "n<5" 58 00 00 00 00 
2420 "n<5" 00 75 i1 00 00 00 03 
2421 "n<5" 58 00 00 00 00 
2422 "n<5" 00 i6 00 00 00 00 03 
2423 "n<5" 58 00 00 00 00 
2424 "n<5" 00 i102 00 00 00 00 03 
2425 "n<5" 58 00 00 00 00 
2426 "n<5" 00 i198 00 00 00 00 03 
2427 "n<5" 58 00 00 00 00 
2428 "n<5" 00 26 i1 00 00 00 03 
2429 "n<5" 58 00 00 00 00 
2430 "n<5" 00 i14 00 00 00 00 01 58 F40.1(0.6)
2431 i110 00 00 00 00 03 
2432 "n<5" 58 00 00 00 00 
2433 "n<5" 00 i206 00 00 00 00 03 
2434 "n<5" 58 00 00 00 00 
2435 "n<5" 00 2e i1 00 00 00 03 
2436 "n<5" 58 00 00 00 00 
2437 "n<5" 00 i22 00 00 00 00 03 
2438 "n<5" 58 00 00 00 00 
2439 "n<5" 00 i118 00 00 00 00 03 
2440 "n<5" 58 00 00 00 00 
2441 "n<5" 00 i214 00 00 00 00 03 
2442 "n<5" 58 00 00 00 00 
2443 "n<5" 00 36 i1 00 00 00 03 
2444 "n<5" 58 00 00 00 00 
2445 "n<5" 00 i30 00 00 00 00 01 58 F40.1(0.5)
2446 i126 00 00 00 00 03 
2447 "n<5" 58 00 00 00 00 
2448 "n<5" 00 i222 00 00 00 00 01 58 F40.1(1.0)
2449 3e i1 00 00 00 03 
2450 "n<5" 58 00 00 00 00 
2451 "n<5" 00 i38 00 00 00 00 03 
2452 "n<5" 58 00 00 00 00 
2453 "n<5" 00 i134 00 00 00 00 01 58 F40.1(0.8)
2454 i230 00 00 00 00 01 58 F40.1(0.3)
2455 46 i1 00 00 00 01 58 F40.1(-0.1)
2456 i46 00 00 00 00 03 
2457 "n<5" 58 00 00 00 00 
2458 "n<5" 00 i142 00 00 00 00 01 58 F40.1(1.4)
2459 i238 00 00 00 00 03 
2460 "n<5" 58 00 00 00 00 
2461 "n<5" 00 4e i1 00 00 00 03 
2462 "n<5" 58 00 00 00 00 
2463 "n<5" 00 i54 00 00 00 00 03 
2464 "n<5" 58 00 00 00 00 
2465 "n<5" 00 i150 00 00 00 00 03 
2466 "n<5" 58 00 00 00 00 
2467 "n<5" 00 i246 00 00 00 00 03 
2468 "n<5" 58 00 00 00 00 
2469 "n<5" 00 56 i1 00 00 00 03 
2470 "n<5" 58 00 00 00 00 
2471 "n<5" 00 i62 00 00 00 00 03 
2472 "n<5" 58 00 00 00 00 
2473 "n<5" 00 i158 00 00 00 00 03 
2474 "n<5" 58 00 00 00 00 
2475 "n<5" 00 i254 00 00 00 00 03 
2476 "n<5" 58 00 00 00 00 
2477 "n<5" 00 5e i1 00 00 00 03 
2478 "n<5" 58 00 00 00 00 
2479 "n<5" 00 i70 00 00 00 00 03 
2480 "n<5" 58 00 00 00 00 
2481 "n<5" 00 i166 00 00 00 00 03 
2482 "n<5" 58 00 00 00 00 
2483 "n<5" 00 06 i1 00 00 00 03 
2484 "n<5" 58 00 00 00 00 
2485 "n<5" 00 66 i1 00 00 00 03 
2486 "n<5" 58 00 00 00 00 
2487 "n<5" 00 i78 00 00 00 00 03 
2488 "n<5" 58 00 00 00 00 
2489 "n<5" 00 i174 00 00 00 00 03 
2490 "n<5" 58 00 00 00 00 
2491 "n<5" 00 0e i1 00 00 00 03 
2492 "n<5" 58 00 00 00 00 
2493 "n<5" 00 6e i1 00 00 00 03 
2494 "n<5" 58 00 00 00 00 
2495 "n<5" 00 i86 00 00 00 00 03 
2496 "n<5" 58 00 00 00 00 
2497 "n<5" 00 i182 00 00 00 00 03 
2498 "n<5" 58 00 00 00 00 
2499 "n<5" 00 16 i1 00 00 00 03 
2500 "n<5" 58 00 00 00 00 
2501 "n<5" 00 76 i1 00 00 00 03 
2502 "n<5" 58 00 00 00 00 
2503 "n<5" 00 i7 00 00 00 00 03 
2504 "n<5" 58 00 00 00 00 
2505 "n<5" 00 i103 00 00 00 00 03 
2506 "n<5" 58 00 00 00 00 
2507 "n<5" 00 i199 00 00 00 00 03 
2508 "n<5" 58 00 00 00 00 
2509 "n<5" 00 27 i1 00 00 00 03 
2510 "n<5" 58 00 00 00 00 
2511 "n<5" 00 i15 00 00 00 00 01 58 F40.1(0.8)
2512 i111 00 00 00 00 03 
2513 "n<5" 58 00 00 00 00 
2514 "n<5" 00 i207 00 00 00 00 03 
2515 "n<5" 58 00 00 00 00 
2516 "n<5" 00 2f i1 00 00 00 03 
2517 "n<5" 58 00 00 00 00 
2518 "n<5" 00 i23 00 00 00 00 03 
2519 "n<5" 58 00 00 00 00 
2520 "n<5" 00 i119 00 00 00 00 03 
2521 "n<5" 58 00 00 00 00 
2522 "n<5" 00 i215 00 00 00 00 03 
2523 "n<5" 58 00 00 00 00 
2524 "n<5" 00 37 i1 00 00 00 03 
2525 "n<5" 58 00 00 00 00 
2526 "n<5" 00 i31 00 00 00 00 01 58 F40.1(0.6)
2527 i127 00 00 00 00 03 
2528 "n<5" 58 00 00 00 00 
2529 "n<5" 00 i223 00 00 00 00 01 58 F40.1(1.3)
2530 3f i1 00 00 00 03 
2531 "n<5" 58 00 00 00 00 
2532 "n<5" 00 i39 00 00 00 00 03 
2533 "n<5" 58 00 00 00 00 
2534 "n<5" 00 i135 00 00 00 00 01 58 F40.1(1.0)
2535 i231 00 00 00 00 01 58 F40.1(0.4)
2536 47 i1 00 00 00 01 58 F40.1(-0.1)
2537 i47 00 00 00 00 03 
2538 "n<5" 58 00 00 00 00 
2539 "n<5" 00 i143 00 00 00 00 01 58 F40.1(1.7)
2540 i239 00 00 00 00 03 
2541 "n<5" 58 00 00 00 00 
2542 "n<5" 00 4f i1 00 00 00 03 
2543 "n<5" 58 00 00 00 00 
2544 "n<5" 00 i55 00 00 00 00 03 
2545 "n<5" 58 00 00 00 00 
2546 "n<5" 00 i151 00 00 00 00 03 
2547 "n<5" 58 00 00 00 00 
2548 "n<5" 00 i247 00 00 00 00 03 
2549 "n<5" 58 00 00 00 00 
2550 "n<5" 00 57 i1 00 00 00 03 
2551 "n<5" 58 00 00 00 00 
2552 "n<5" 00 i63 00 00 00 00 03 
2553 "n<5" 58 00 00 00 00 
2554 "n<5" 00 i159 00 00 00 00 03 
2555 "n<5" 58 00 00 00 00 
2556 "n<5" 00 i255 00 00 00 00 03 
2557 "n<5" 58 00 00 00 00 
2558 "n<5" 00 5f i1 00 00 00 03 
2559 "n<5" 58 00 00 00 00 
2560 "n<5" 00 i71 00 00 00 00 03 
2561 "n<5" 58 00 00 00 00 
2562 "n<5" 00 i167 00 00 00 00 03 
2563 "n<5" 58 00 00 00 00 
2564 "n<5" 00 07 i1 00 00 00 03 
2565 "n<5" 58 00 00 00 00 
2566 "n<5" 00 67 i1 00 00 00 03 
2567 "n<5" 58 00 00 00 00 
2568 "n<5" 00 i79 00 00 00 00 03 
2569 "n<5" 58 00 00 00 00 
2570 "n<5" 00 i175 00 00 00 00 03 
2571 "n<5" 58 00 00 00 00 
2572 "n<5" 00 0f i1 00 00 00 03 
2573 "n<5" 58 00 00 00 00 
2574 "n<5" 00 6f i1 00 00 00 03 
2575 "n<5" 58 00 00 00 00 
2576 "n<5" 00 i87 00 00 00 00 03 
2577 "n<5" 58 00 00 00 00 
2578 "n<5" 00 i183 00 00 00 00 03 
2579 "n<5" 58 00 00 00 00 
2580 "n<5" 00 17 i1 00 00 00 03 
2581 "n<5" 58 00 00 00 00 
2582 "n<5" 00 77 i1 00 00 00 03 
2583 "n<5" 58 00 00 00 00 
2584 "n<5" 00