summaryrefslogtreecommitdiff
path: root/xmloff/source/token/tokens.txt
blob: e874670378bb28f8e7b23a972e50551a9afa4e4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
TOKEN_START_DUMMY
CDATA
WS_DUMMY
xml
xmlns
XML_PI_DUMMY
XML_DOCTYPE_PREFIX_DUMMY
XML_DOCTYPE_SUFFIX_DUMMY
N_XML_DUMMY
office
N_OFFICE_DUMMY
N_OFFICE_OLD_DUMMY
NP_META_DUMMY
N_META_DUMMY
N_META_OLD_DUMMY
NP_STYLE_DUMMY
N_STYLE_DUMMY
N_STYLE_OLD_DUMMY
NP_NUMBER_DUMMY
N_NUMBER_DUMMY
N_NUMBER_OLD_DUMMY
NP_TEXT_DUMMY
N_TEXT_DUMMY
N_TEXT_OLD_DUMMY
NP_TABLE_DUMMY
N_TABLE_DUMMY
N_TABLE_OLD_DUMMY
NP_DRAW_DUMMY
N_DRAW_DUMMY
dr3d
N_DR3D_DUMMY
N_DRAW_OLD_DUMMY
NP_PRESENTATION_DUMMY
N_PRESENTATION_DUMMY
N_PRESENTATION_OLD_DUMMY
NP_CHART_DUMMY
N_CHART_DUMMY
config
N_CONFIG_DUMMY
N_CHART_OLD_DUMMY
fo
N_FO_OLD_DUMMY
N_FO_DUMMY
xlink
N_XLINK_DUMMY
N_XLINK_OLD_DUMMY
dc
N_DC_DUMMY
svg
N_SVG_DUMMY
NP_FORM_DUMMY
N_FORM_DUMMY
NP_SCRIPT_DUMMY
N_SCRIPT_DUMMY
xforms
N_XFORMS_1_0_DUMMY
xsd
N_XSD_DUMMY
xsi
N_XSI_DUMMY
NP_BLOCK_LIST_DUMMY
N_BLOCK_LIST_DUMMY
NP_MATH_DUMMY
N_MATH_DUMMY
VL
N_VERSIONS_LIST_DUMMY
of
N_OF_DUMMY
xhtml
N_XHTML_DUMMY
grddl
N_GRDDL_DUMMY
officeooo
N_OFFICE_EXT_DUMMY
formx
N_FORMX_DUMMY
tableooo
N_TABLE_EXT_DUMMY
drawooo
N_DRAW_EXT_DUMMY
css3t
N_CSS3TEXT_DUMMY
calcext
N_CALC_EXT_DUMMY
loext
N_LO_EXT_DUMMY
UNIT_MM_DUMMY
m
UNIT_KM_DUMMY
UNIT_CM_DUMMY
pt
pc
ft
UNIT_MILES_DUMMY
UNIT_INCH_DUMMY
1
10
2
3
4
5
6
7
8
9
A
I
IBM437
IBM850
IBM860
IBM861
IBM863
IBM865
ISO-8859-1
ole2
_COLON_DUMMY
_EMPTY_DUMMY
_unknown_
a
abbreviated-name
above
abs
accent
accentunder
acceptance-state
accepted
action
active
active-split-range
active-table
actuate
add-in
add-in-name
address
adjustment
algorithm
align
all
allow-empty-cell
alphabetical-index
alphabetical-index-auto-mark-file
alphabetical-index-entry-template
alphabetical-index-mark
alphabetical-index-mark-end
alphabetical-index-mark-start
alphabetical-index-source
alphabetical-separators
alternate
am-pm
ambient-color
anchor-page-number
anchor-type
and
animation
animation-delay
animation-direction
animation-repeat
animation-start-inside
animation-steps
animation-stop-inside
animations
annotation
annotation-end
annotations
annote
appear
applet
applet-name
application-data
application-xml
apply
apply-design-mode
apply-style-name
aqua
arc
arccos
archive
arcsin
arctan
area
area-circle
area-polygon
area-rectangle
article
as-char
ascending
attached-axis
attractive
author
author-initials
author-name
auto
auto-grow-height
auto-grow-width
auto-reload
auto-text
auto-text-events
auto-text-group
auto-text-indent
auto-update
automatic
automatic-find-labels
automatic-focus
automatic-order
automatic-styles
automatic-update
autosize
average
axis
axis-color
back-scale
backface-culling
background
background-color
background-image
no-repeat
BACKGROUND_REPEAT_DUMMY
BACKGROUND_STRETCH_DUMMY
bar
base64Binary
base-cell-address
baseline
before-date-time
below
between-date-times
bevel
bevelled
bibiliographic-type
bibliography
bibliography-configuration
bibliography-data-field
bibliography-entry-template
bibliography-mark
bibliography-source
bibliography-type
bind-styles-to-content
bitmap
black
blend
blinking
block
block-list
blue
body
bold
book
booklet
bookmark
bookmark-end
bookmark-ref
bookmark-start
booktitle
boolean
boolean-style
boolean-value
border
border-bottom
border-color
border-left
border-line-width
border-line-width-bottom
border-line-width-left
border-line-width-right
border-line-width-top
border-right
border-top
both
bottom
bottom-left
BOTTOM_PERCENT_DUMMY
bottom-right
BOTTOM_VALUES_DUMMY
bottom-arc
bottom-circle
break-after
break-before
break-inside
bubble
bullet-char
bullet-relative-size
butt
button1
button2
button3
button4
buttons
bvar
c
calculation-settings
calendar
capitalize-entries
caption
caption-point-x
caption-point-y
caption-sequence-format
caption-sequence-name
case-sensitive
capitalize
lowercase
CASEMAP_NORMAL_DUMMY
small-caps
uppercase
categories
category
category-and-value
cell-address
cell-content-change
cell-content-deletion
cell-count
cell-protect
cell-range-address
cell-range-address-list
cell-range-source
center
chain-next-name
change
change-deletion
change-end
change-id
change-info
change-start
change-track-table-cell
change-view-conditions
change-view-settings
changed-region
chapter
char
char-shading-value
character-count
chart
charts
checkerboard
chg-author
chg-comment
chg-date-time
ci
circle
citation-body-style-name
citation-style-name
class
class-id
clip
clockwise
close
close-horizontal
close-vertical
cm
cn
code
codebase
collapse
color
color-inversion
color-mode
color-scale
color-scale-entry
column
column-count
column-gap
column-name
column-sep
column-width
columnalign
columns
COLUMNSPLIT_AUTO_DUMMY
avoid
combine-entries
combine-entries-with-dash
combine-entries-with-pp
comma-separated
command
comment
compose
cond-style-name
condition
condition-source
condition-source-range-address
conditional-text
conditional-format
conditional-formats
cone
conference
config-item
config-item-map-entry
config-item-map-indexed
config-item-map-named
config-item-set
configuration-settings
conjugate
connect-bars
connection-name
connector
consecutive-numbering
consolidation
constant
contains-error
contains-header
content
content-validation
content-validation-name
content-validations
contextual-spacing
continue
continue-numbering
contour-path
contour-polygon
contrast
control
conversion-mode
copy-back
copy-formulas
copy-outline-levels
copy-results-only
copy-styles
corner-radius
correct
cos
cosh
cot
coth
count
count-empty-lines
count-in-floating-frames
counter-clockwise
counterclockwise
countnums
country
country-asian
country-complex
covered-table-cell
create-date
create-date-string
creation-date
creation-time
creator
csc
csch
cube
cuboid
currency
currency-style
currency-symbol
current
current-value
cursor-position
cursor-position-x
cursor-position-y
curve
custom1
custom2
custom3
custom4
custom5
custom-iconset
custom-iconset-index
custom-iconset-name
cut
cut-offs
cx
cy
cylinder
d
dash
dash-dot
dash-dot-dot
dashed
data
data-bar
data-bar-entry
data-cell-range-address
data-label-number
data-label-symbol
data-label-text
data-pilot-source
data-pilot-field
data-pilot-grand-total
data-pilot-level
data-pilot-member
data-pilot-members
data-pilot-subtotal
data-pilot-subtotals
data-pilot-table
data-pilot-tables
data-point
data-stream-source
data-style
data-style-name
data-type
database-display
database-name
database-next
database-range
database-ranges
database-row-number
database-select
database-source-query
database-source-sql
database-source-table
database-table-name
date
date-is
date-adjust
date-style
date-time
date-time-update
date-time-visible
date-value
datetime
day
day-of-week
dde-application
dde-connection
dde-connection-decl
dde-connection-decls
dde-item
dde-link
dde-links
dde-source
dde-topic
decimal-places
decimal-replacement
declare
decorate-words-only
decorative
deep
default
default-cell-style-name
default-style
default-style-name
degree
delay
delete-columns
delete-rows
deletion
deletions
denomalign
denominator-value
dependence
dependences
dependencies
depth
desc
descending
description
detective
determinant
diff
diffuse-color
dim
direction
disabled
disc
display
display-border
display-details
display-duplicates
display-empty
display-filter-buttons
display-formula
display-label
display-levels
display-name
display-outline-level
dissolve
distance
distance-after-sep
distance-before-sep
distribute
distribute-letter
distribute-space
divide
document
document-content
document-meta
document-settings
document-statistic
document-styles
domain
dot
dots1
dots1-length
dots2
dots2-length
dotted
double
double-sided
double-thin
down
draft
draw
ole-draw-aspect
drawing
drawings
drawpool
drop-cap
dynamic
edge-rounding
editable
editing-cycles
editing-duration
edition
editor
effect
ellipse
email
embed
embedded-visible-area
embossed
emissive-color
empty
empty-line-refresh
enable-numbering
enabled
encoding
end
end-angle
end-cell-address
end-color
end-column
end-glue-point
end-guide
end-intensity
end-line-spacing-horizontal
end-line-spacing-vertical
end-position
end-row
end-shape
end-table
end-x
end-y
endless
endnote
endnote-body
endnote-citation
endnote-ref
endnotes-configuration
engraved
eq
equal-author
equal-comment
equal-date
era
ergo-sum
error-category
error-lower-indicator
error-lower-limit
error-macro
error-margin
error-message
error-percentage
error-upper-indicator
error-upper-limit
sub
super
even-page
event
event-name
events
execute
execute-macro
exists
exp
exponential
expression
extra
extrude
factorial
fade
fade-from-bottom
fade-from-center
fade-from-left
fade-from-lowerleft
fade-from-lowerright
fade-from-right
fade-from-top
fade-from-upperleft
fade-from-upperright
fade-out
fade-to-center
false
family
fast
fence
field-number
file-name
fill
fill-character
fill-color
fill-gradient-name
fill-hatch-name
fill-hatch-solid
fill-image
fill-image-height
fill-image-name
fill-image-ref-point
fill-image-ref-point-x
fill-image-ref-point-y
fill-image-width
filter
filter-and
filter-condition
filter-name
filter-options
filter-or
filter-set-item
fine-dashed
first-date-time
first-page
first-page-number
fit-to-contour
fit-to-size
fix
fixed
flat
float
floating-frame
floor
fn
focal-length
font-char-width
font-charset
font-charset-asian
font-charset-complex
font-color
font-decl
font-decls
font-family
font-family-asian
font-family-complex
font-family-generic
font-family-generic-asian
font-family-generic-complex
font-kerning
font-name
font-name-asian
font-name-complex
font-pitch
font-pitch-asian
font-pitch-complex
font-relief
font-size
font-size-asian
font-size-complex
font-size-rel
font-size-rel-asian
font-size-rel-complex
font-style
font-style-asian
font-style-complex
font-style-name
font-style-name-asian
font-style-name-complex
font-variant
font-weight
font-weight-asian
font-weight-complex
font-width
font-word-line-mode
fontfamily
fontsize
fontstyle
fontweight
fontwork-adjust
fontwork-distance
fontwork-form
fontwork-hide-form
fontwork-mirror
fontwork-outline
fontwork-shadow
fontwork-shadow-color
fontwork-shadow-offset-x
fontwork-shadow-offset-y
fontwork-shadow-transparence
fontwork-start
fontwork-style
footer
footer-first
footer-left
footer-style
footer-visible
footnote
footnote-body
footnote-citation
footnote-continuation-notice-backward
footnote-continuation-notice-forward
footnote-max-height
footnote-ref
footnote-sep
footnotes-configuration
footnotes-position
forall
force-manual
foreground
foreign-object
format-change
format-source
formatting-entry
forms
formula
formula-hidden
formulas
fraction
frame
frame-content
frame-display-border
frame-display-scrollbar
frame-end-margin
frame-margin-horizontal
frame-margin-vertical
frame-name
frame-start-margin
freeze
freeze-position
from-another-table
from-bottom
from-center
from-inside
from-left
from-lower-left
from-lower-right
from-right
from-same-table
from-top
from-upper-left
from-upper-right
fuchsia
full
full-screen
function
fx
fy
g
gamma
gap
gap-width
gcd
generator
geq
gl3d-bar
gouraud
gradient
angle
GRADIENT_BORDER_DUMMY
gradient-step-count
gradient-style
axial
ellipsoid
GRADIENTSTYLE_LINEAR_DUMMY
radial
rectangular
square
gradientTransform
grand-total
graphic
gray
green
greyscale
grid
groove
group-by-field-number
group-name
grouping
gt
guide-distance
guide-overhang
h
hanging
has-persistent-data
hatch
HATCH_DISTANCE_DUMMY
HATCH_STYLE_DUMMY
HATCHSTYLE_DOUBLE_DUMMY
HATCHSTYLE_SINGLE_DUMMY
triple
header
header-first
header-left
header-style
headers
height
help
help-file-name
help-id
help-message
hidden
hidden-and-protected
hidden-paragraph
hidden-text
hide
hide-shape
hide-text
highlighted-range
hint
horizontal
horizontalstrike
horizontal-lines
horizontal-on-left-pages
horizontal-on-right-pages
horizontal-pos
horizontal-rel
horizontal-scrollbar-width
horizontal-segments
horizontal-split-mode
horizontal-split-position
horizontal-stripes
hours
howpublished
href
html
hyperlink
hyperlink-behaviour
hyphenate
hyphenation-keep
hyphenation-ladder-count
hyphenation-push-char-count
hyphenation-remain-char-count
i
icon
icon-set
icon-set-type
id
ident
identifier
identify-categories
ideograph-alpha
ignore-case
ignore-empty-rows
ignore-selected-page
illustration-index
illustration-index-entry-template
illustration-index-source
image
image-count
image-map
implies
in
in-range
inbook
incollection
increment
index
index-body
index-entry-bibliography
index-entry-chapter
index-entry-chapter-number
index-entry-link-end
index-entry-link-start
index-entry-page-number
index-entry-span
index-entry-tab-stop
index-entry-template
index-entry-text
index-name
index-scope
index-source-style
index-source-styles
index-title
index-title-template
information
initial-creator
inproceedings
insert-columns
insert-rows
insertion
insertion-cut-off
insertion-position
inset
inside
institution
int
intensity
intersect
interval
interval-major
interval-minor
into-english-number
inverse
is-active
is-data-layout-field
is-hidden
is-selection
isbn
italic
iteration
journal
justified
justify
justify-single-word
keep-with-next
KERNING_NORMAL_DUMMY
key
key1
key2
keyword
keywords
kind
km
label
label-arrangement
label-cell-address
label-cell-range-address
label-range
label-ranges
label-string
label-stroke
label-stroke-color
label-stroke-opacity
label-stroke-width
lambda
landscape
language
language-asian
language-complex
laser
last-column-spanned
last-page
last-row-spanned
layer
layer-set
leader-char
left
left-outside
left-top-position
left-arc
left-circle
legend
legend-position
length
leq
let-text
keep-text
letter-kerning
letter-spacing
letters
level
library
library-embedded
library-linked
light
lighting-mode
lime
limit
line
line-break
line-distance
line-height
line-height-at-least
line-number
line-skew
line-spacing
line-style
linear
linearGradient
linenumbering-configuration
linenumbering-separator
lines
lines-used
link-to-source-data
list
list-block
list-header
list-info
list-item
list-level
list-level-style-bullet
list-level-style-image
list-level-style-number
list-name
list-style
list-style-name
ln
locked
log
logarithmic
logbase
long
lowlimit
lr-tb
lt
ltr
luminance
macro-name
maction
main-entry-style-name
major
maligngroup
malignmark
manual
map
margin-bottom
margin-left
margin-right
margin-top
margins
marker
marker-end
marker-end-center
marker-end-width
marker-start
marker-start-center
marker-start-width
maroon
master-page
master-page-name
master-styles
mastersthesis
match
math
matrix
matrix-covered
matrixrow
max
max-edge
max-height
max-length
max-width
maximum
maximum-difference
may-break-between-rows
may-script
mean
mean-value
measure
measure-align
measure-vertical-align
median
medium
menclose
merror
message-type
meta
mfenced
mfrac
mi
middle
mime-type
min
min-denominator-digits
min-edge
min-exponent-digits
min-height
min-integer-digits
min-label-distance
min-label-width
min-length
min-line-height
min-numerator-digits
min-row-height
min-width
minimum
minor
minus
minutes
mirror
mirrored
misc
miter
mm
mmultiscripts
mn
mo
mode
modern
modification-date
modification-time
modulate
module
moment
mono
month
mouse-as-pen
mouse-visible
move
move-from-bottom
move-from-left
move-from-right
move-from-top
move-protect
move-short
movement
movement-cut-off
mover
moving-average
mpadded
mphantom
mprescripts
mroot
mrow
ms
mspace
msqrt
mstyle
msub
msubsup
msup
mtable
mtd
mtext
mtr
multi-deletion-spanned
munder
munderover
name
name-and-extension
named-expression
named-expressions
named-range
navy
negative-color
neq
new
next
next-page
next-style-name
no-limit
no-wrap
NOEMPTY_DUMMY
nohref
NOMATCH_DUMMY
none
notprsubset
normal
normals-direction
normals-kind
not
not-equal-date
notation
note
notes
notin
notsubset
null-date
null-year
num-format
num-letter-sync
num-prefix
num-suffix
numalign
number
number-and-name
number-columns-repeated
number-columns-spanned
number-lines
number-matrix-columns-spanned
number-matrix-rows-spanned
number-position
number-rows-repeated
number-rows-spanned
number-style
number-wrapped-paragraphs
numbered-entries
object
object-count
object-index
object-index-entry-template
object-index-source
object-name
object-ole
objects
odd-page
offset
olive
onLoad
onRequest
on-update-keep-size
on-update-keep-styles
online
online-text
OPAQUE_BACKGROUND_DUMMY
OPAQUE_FOREGROUND_DUMMY
open
open-horizontal
open-vertical
operation
operator
optimal
or
order
ordered-list
organizations
orientation
orientation-landscape
orientation-portrait
origin
orphans
outline-level
outline-level-style
outline-style
outset
outside
overlap
p
package-name
padding
padding-bottom
padding-left
padding-right
padding-top
page
page-adjust
page-breaks-on-group-change
page-content
page-continuation-string
page-count
page-end-margin
page-height
page-master
page-master-name
page-name
page-number
page-number-visible
page-start-margin
page-style-name
page-thumbnail
page-usage
page-variable-get
page-variable-set
page-view-zoom-value
page-width
pages
paper-tray-number
paragraph
paragraph-content
paragraph-count
paragraph-end-margin
paragraph-start-margin
parallel
param
parent-style-name
parse-sql-statement
parsed
partialdiff
password
passwort
path
path-id
pause
pending
percentage
percentage-style
perspective
phdthesis
phong
pie-offset
placeholder
placeholder-type
placing
plain-number
plain-number-and-name
play-full
plot-area
plugin
plus
points
polygon
polyline
polynomial
pool-id
portrait
position
position-bottom
position-left
position-right
position-top
positive-color
POSTURE_ITALIC_DUMMY
POSTURE_NORMAL_DUMMY
oblique
power
precision-as-shown
prefix
presentation
PRESENTATION_CHART_DUMMY
PRESENTATION_GRAPHIC_DUMMY
PRESENTATION_NOTES_DUMMY
PRESENTATION_OBJECT_DUMMY
orgchart
outline
PRESENTATION_PAGE_DUMMY
presentation-page-layout
presentation-page-layout-name
PRESENTATION_SUBTITLE_DUMMY
PRESENTATION_TABLE_DUMMY
PRESENTATION_TITLE_DUMMY
previous
previous-page
print
print-content
print-date
print-orientation
print-page-order
print-range
print-ranges
print-time
printable
printed-by
proceedings
product
projection
properties
protect
PROTECT_CONTENT_DUMMY
PROTECT_POSITION_DUMMY
PROTECT_SIZE_DUMMY
protected
protection-key
protection-key-digest-algorithm
protection-key-digest-algorithm-2
prsubset
publisher
punctuation-wrap
purple
pyramid
quarter
query-name
quo-vadis
quotient
r
radar
random
range-address
range-usable-as
recreate-on-edit
rect
red
ref-name
reference
reference-end
reference-format
reference-mark
reference-mark-end
reference-mark-start
reference-ref
reference-start
reference-type
refresh-delay
region-center
region-left
region-right
register-true
register-truth-ref-style-name
rejected
rejecting-change-id
rejection
rel-column-width
rel-height
rel-height-rel
rel-width
rel-width-rel
relative
relative-tab-stop-position
reln
rem
remove-dependents
remove-precedents
repeat
repeat-column
repeat-row
repeated
replace
report-type
restart-on-page
revision
ridge
right
right-outside
right-arc
right-circle
ring
role
roll-from-bottom
roll-from-left
roll-from-right
roman
root
rotate
rotation
rotation-align
rotation-angle
round
rounded-edge
row
row-height
row-number
rows
rsid
paragraph-rsid
ruby
ruby-align
ruby-base
ruby-position
ruby-text
run-through
rx
ry
s
scale
scale-min
scale-text
scale-to
scale-to-pages
scatter
scenario
scenario-ranges
scene
school
scientific-number
score-spaces
script
script-asian
script-complex
scroll
sdev
search-criteria-must-apply-to-whole-cell
sec
sech
second-date-time
seconds
section
section-desc
section-name
section-source
select-page
select-protected-cells
select-unprotected-cells
selector
semantics
semi-automatic
sender-city
sender-company
sender-country
sender-email
sender-fax
sender-firstname
sender-initials
sender-lastname
sender-phone-private
sender-phone-work
sender-position
sender-postal-code
sender-state-or-province
sender-street
sender-title
sep
separation-character
separator
sequence
sequence-decl
sequence-decls
sequence-ref
series
series-source
server-map
set
setdiff
settings
shade-mode
shadow
shadow-color
shadow-offset-x
shadow-offset-y
shadow-slant
shadow-transparency
shape
shape-id
shapes
sheet-name
shininess
short
show
show-accepted-changes
show-changes
show-changes-by-author
show-changes-by-author-name
show-changes-by-comment
show-changes-by-comment-text
show-changes-by-datetime
show-changes-by-datetime-first-datetime
show-changes-by-datetime-mode
show-changes-by-datetime-second-datetime
show-changes-by-ranges
show-changes-by-ranges-list
show-logo
show-rejected-changes
show-shape
show-text
show-unit
show-value
shows
side-by-side
silver
simple
sin
since-date-time
since-save
sinh
size
size-protect
slant
slant-x
slant-y
slide
slow
solid
solid-type
sort
sort-ascending
sort-by
sort-by-position
sort-groups
sort-key
sound
source-cell-range
source-cell-range-addresses
source-field-name
source-name
source-range-address
source-service
space-before
span
specular
specular-color
speed
sphere
spiral
spiral-in
spiral-inward-left
spiral-inward-right
spiral-out
spiral-outward-left
spiral-outward-right
spiralin-left
spiralin-right
spiralout-left
spiralout-right
splines
split
split-column
split-position
split-row
spreadsheet
spreadMethod
sql-statement
stacked
stagger-even
stagger-odd
standard
standard-deviation
starbasic
start
start-angle
start-color
start-column
start-glue-point
start-guide
start-intensity
start-line-spacing-horizontal
start-line-spacing-vertical
start-numbering-at
start-page
start-position
start-row
start-scale
start-shape
start-table
start-value
start-with-navigator
statistics
status
stay-on-top
stdev
stdevp
steps
stock
stock-updown-bars
stock-with-volume
stop
stop-color
stop-opacity
stretch
stretch-from-bottom
stretch-from-left
stretch-from-right
stretch-from-top
stretchy
strict
string
string-value
string-value-if-false
string-value-if-true
stripes
stroke
stroke-color
stroke-dash
stroke-linecap
stroke-linejoin
stroke-opacity
stroke-width
structure-protected
style
style-name
styles
stylesheet
sub-table
subject
subset
subtitle
subtotal-field
subtotal-rule
subtotal-rules
sub-view-size
suffix
sum
swiss
symbol
symbol-height
symbol-image-name
symbol-width
system
tab-color
tab-stop
tab-stop-distance
tab-stops
table
table-background
table-cell
table-centering
table-column
table-column-group
table-columns
table-count
table-header
table-header-columns
table-header-rows
table-index
table-index-entry-template
table-index-source
table-name
table-of-content
table-of-content-entry-template
table-of-content-source
table-page
table-protection
table-row
table-row-group
table-rows
table-source
table-view
tables
tan
tanh
target-cell-address
target-frame-name
target-range-address
tb-rl
teal
techreport
template
template-name
tendsto
texture-filter
texture-generation-mode-x
texture-generation-mode-y
texture-kind
texture-mode
text
text-align
text-align-last
text-align-source
text-autospace
text-background-color
text-blinking
text-box
text-combine
text-combine-end-char
text-combine-start-char
text-content
text-crossing-out
text-emphasize
text-global
text-indent
text-input
text-justify
text-outline
text-position
text-rotation-angle
text-rotation-scale
text-scale
text-shadow
text-style
text-transform
text-underline
text-underline-color
textarea-horizontal-align
textarea-vertical-align
textual
thick
thin
three-dimensional
thumbnail
tick-marks-major-inner
tick-marks-major-outer
tick-marks-minor-inner
tick-marks-minor-outer
tile-repeat-offset
time
time-adjust
time-style
time-value
times
title
to-another-table
to-bottom
to-center
to-left
to-lower-left
to-lower-right
to-right
to-top
to-upper-left
to-upper-right
toc-mark
toc-mark-end
toc-mark-start
top
top-left
TOP_PERCENT_DUMMY
top-right
TOP_VALUES_DUMMY
top-arc
top-circle
trace-dependents
trace-errors
trace-precedents
track-changes
tracked-changes
tracked-changes-view-settings
transform
transition-on-click
transparency
transparency-name
transparent
transpose
true
truncate-on-overflow
try-staggering-first
tspan
ttb
type
dot-dash
dot-dot-dash
long-dash
single
small-wave
wave
unformatted-text
union
unit
unordered-list
unpublished
up
uplimit
upright
url
use
use-caption
use-cell-protection
use-chart-objects
use-condition
use-draw-objects
use-floating-frames
use-graphics
use-image-objects
use-index-marks
use-index-source-styles
use-keys-as-entries
use-label
use-math-objects
use-objects
use-optimal-column-width
use-optimal-row-height
use-other-objects
use-spreadsheet-objects
use-styles
use-tables
use-window-font-color
used-hierarchy
user-defined
user-field-decl
user-field-decls
user-field-get
user-field-input
user-index
user-index-entry-template
user-index-mark
user-index-mark-end
user-index-mark-start
user-index-source
user-transformed
username
value
value-type
values-cell-range-address
var
variable
variable-decl
variable-decls
variable-get
variable-input
variable-set
variance
varp
vector
verb
version
version-entry
version-list
vertical
vertical-align
vertical-justify
vertical-lines
vertical-pos
vertical-rel
vertical-segments
vertical-split-mode
vertical-split-position
vertical-stripes
view
viewBox
view-id
view-settings
visibility
visible
visible-area
visible-area-height
visible-area-left
visible-area-top
visible-area-width
visited-style-name
volatile
volume
vpn
vrp
vup
wall
warning
watermark
wavyline
wavyline-from-bottom
wavyline-from-left
wavyline-from-right
wavyline-from-top
week-of-year
WEIGHT_BOLD_DUMMY
WEIGHT_NORMAL_DUMMY
white
whole-page
widows
width
word
word-count
wrap
wrap-contour
wrap-contour-mode
wrap-option
writing-mode
www
x
x1
x2
x-mac-roman
x-symbol
x-system
xor
y
y1
y2
year
yellow
zero-values
z-index
zoom-type
zoom-value
enable
use-regular-expressions
use-wildcards
data-source-has-labels
link-data-style-to-source
sort-algorithm
straight-line
angled-line
angled-connector-line
APPLICATION_X_WWW_FORM_URLENCODED_DUMMY
MULTIPART_FORMDATA_DUMMY
APPLICATION_TEXT_DUMMY
get
post
query
parent
records
push
submit
reset
value-list
sql
sql-pass-through
table-fields
unchecked
checked
unknown
roll-from-top
binary-data
notify-on-update-of-table
0
play
handout-master
text-style-name
escape-direction
glue-point
primary-x
secondary-x
primary-y
secondary-y
primary-z
caption-type
caption-angle-type
caption-angle
caption-gap
caption-escape-direction
caption-escape
caption-line-length
caption-fit-line-length
free
transition-type
transition-style
transition-speed
duration
background-size
background-objects-visible
background-visible
move-from-upperleft
move-from-upperright
move-from-lowerright
move-from-lowerleft
uncover-to-left
uncover-to-upperleft
uncover-to-top
uncover-to-upperright
uncover-to-right
uncover-to-lowerright
uncover-to-bottom
uncover-to-lowerleft
vertical-checkerboard
horizontal-checkerboard
notify-on-update-of-ranges
byte
macro
location
application
symbol-image
text-overlap
spline-order
spline-resolution
paper-tray-name
column-mapping
row-mapping
table-formula
embedded-text
merge-last-paragraph
stock-loss-marker
stock-gain-marker
stock-range-line
rl-tb
tb-lr
lr
rl
tb
layout-grid-color
layout-grid-lines
layout-grid-base-height
layout-grid-ruby-height
layout-grid-mode
layout-grid-ruby-below
layout-grid-print
layout-grid-display
default-page-layout
layout-grid-standard-mode
layout-grid-base-width
layout-grid-snap-to-characters
layout-grid-snap-to
snap-to-layout-grid
dont-balance-text-columns
glyph-orientation-vertical
marked-invalid
regression-curve
regression-type
regression-name
regression-extrapolate-forward
regression-extrapolate-backward
regression-max-degree
regression-min-degree
regression-moving-type
regression-period
regression-force-intercept
regression-intercept-value
regression-x-name
regression-y-name
error-indicator
table-type
display-factor
transliteration-format
transliteration-language
transliteration-country
transliteration-style
key1-phonetic
key2-phonetic
string-value-phonetic
background-transparency
background-image-transparency
dynamic-spacing
main-entry
use-outline-level
close-front
close-back
drop-down
current-selected
join-border
display-list
no
unsorted
font-independent-line-spacing
sorted-ascending
database
data-source
queries
reports
report
as-template
connection-resource
suppress-version-columns
java-driver-class
extension
is-first-row-header-line
show-deleted
is-table-name-length-limited
system-driver-settings
enable-sql92-check
append-table-alias-name
parameter-name-substitution
ignore-driver-privileges
boolean-comparison-mode
use-catalog
base-dn
max-row-count
login
user-name
is-password-required
login-timeout
delimiter
field
decimal
thousand
table-filter
table-filter-pattern
table-type-filter
auto-increment
additional-column-statement
row-retrieving-statement
data-source-settings
data-source-setting
data-source-setting-value
data-source-setting-is-list
data-source-setting-type
data-source-setting-name
component
component-collection
query-collection
update-table
filter-statement
order-statement
escape-processing
keys
indices
type-name
precision
is-nullable
is-autoincrement
default-value
referenced-table-name
update-rule
delete-rule
key-columns
key-column
related-column-name
catalog-name
is-unique
is-clustered
index-columns
index-column
is-ascending
schema-name
db
N_DB_DUMMY
apply-filter
apply-order
automatic-print-range
selection
selection-indexes
scale-to-X
scale-to-Y
keep-together
use-header-name
use-footer-name
use-date-time-name
display-header
display-footer
display-page-number
display-date-time
source
current-date
header-decl
footer-decl
date-time-decl
selected-page
flow-with-text
with-tab
custom-shape
engine
enhanced-geometry
text-rotate-angle
mirror-vertical
mirror-horizontal
extrusion-allowed
text-path-allowed
concentric-gradient-fill-allowed
extrusion
extrusion-brightness
extrusion-depth
extrusion-diffusion
extrusion-number-of-line-segments
extrusion-light-face
extrusion-first-light-harsh
extrusion-second-light-harsh
extrusion-first-light-level
extrusion-second-light-level
extrusion-first-light-direction
extrusion-second-light-direction
extrusion-metal
extrusion-rotation-angle
extrusion-rotation-center
extrusion-shininess
extrusion-skew
extrusion-specularity
extrusion-projection-mode
extrusion-viewpoint
extrusion-origin
extrusion-color
secondary-fill-color
enhanced-path
path-stretchpoint-x
path-stretchpoint-y
text-areas
glue-points
glue-point-type
glue-point-leaving-direction
text-path
text-path-mode
text-path-scale
text-path-same-letter-heights
modifiers
equation
xstretch
ystretch
hasstroke
hasfill
logwidth
logheight
handle
handle-mirror-vertical
handle-mirror-horizontal
handle-switched
handle-position
handle-range-x-minimum
handle-range-x-maximum
handle-range-y-minimum
handle-range-y-maximum
handle-polar
handle-radius-range-minimum
handle-radius-range-maximum
rectangle
roundrectangle
oval
cloud
boundingcube
wireframe
segments
word-wrap
collapsing
separating
border-model
data-pilot-field-reference
member-difference
member-percentage
member-percentage-difference
running-total
row-percentage
column-percentage
total-percentage
field-name
member-type
named
member-name
display-member-mode
member-count
data-field
data-pilot-display-info
sort-mode
data-pilot-sort-info
add-empty-lines
tabular-layout
outline-subtotals-top
outline-subtotals-bottom
layout-mode
data-pilot-layout-info
symbol-color
3d
image-position
image-align
diagonal-bl-tr
diagonal-bl-tr-width
diagonal-tl-br
diagonal-tl-br-width
repeat-content
shrink-to-fit
wrap-influence-on-position
once-successive
once-concurrent
N_OFFICE_OOO_DUMMY
N_META_OOO_DUMMY
N_STYLE_OOO_DUMMY
N_NUMBER_OOO_DUMMY
N_TEXT_OOO_DUMMY
N_TABLE_OOO_DUMMY
N_DRAW_OOO_DUMMY
N_DR3D_OOO_DUMMY
N_PRESENTATION_OOO_DUMMY
N_CHART_OOO_DUMMY
N_CONFIG_OOO_DUMMY
N_FORM_OOO_DUMMY
N_SCRIPT_OOO_DUMMY
global
note-class
note-citation
note-body
notes-configuration
note-ref
is-sub-table
page-layout
page-layout-name
graphic-properties
drawing-page-properties
page-layout-properties
header-footer-properties
text-properties
paragraph-properties
ruby-properties
section-properties
table-properties
table-column-properties
table-row-properties
table-cell-properties
list-level-properties
chart-properties
drawing-page
graphics
tab
text-underline-mode
text-line-through-mode
continuous
skip-white-space
scripts
font-face-decls
font-face
font-face-src
font-face-uri
font-face-format
font-adornments
inch
space-after
start-indent
end-indent
interval-minor-divisor
date-string
text-underline-style
text-underline-type
text-underline-width
text-overline-type
text-overline-style
text-overline-width
text-overline-color
text-overline-mode
text-line-through-style
text-line-through-type
text-line-through-width
text-line-through-text
leader-style
leader-text
bold-dotted
bold-dash
bold-long-dash
bold-dot-dash
bold-dot-dot-dash
bold-wave
double-wave
double-line
thick-line
single-line
slash
text-line-through-color
text-line-through-text-style
leader-color
leader-type
leader-width
leader-text-style
opacity
opacity-name
shadow-opacity
always
count-in-text-boxes
ooo
N_OOO_DUMMY
ooow
N_OOOW_DUMMY
oooc
N_OOOC_DUMMY
dom
N_DOM_DUMMY
event-listeners
event-listener
form
void
property
property-name
list-property
list-value
column-style-name
textarea
fixed-text
file
formatted-text
button
checkbox
radio
listbox
combobox
image-frame
value-range
generic-control
service-name
property-type
integer
property-is-void
property-is-list
property-value
mimetype
database-row-select
control-implementation
interpolation
cubic-spline
b-spline
step-start
step-end
step-center-x
step-center-y
GNM_STEP_START_DUMMY
GNM_STEP_END_DUMMY
GNM_STEP_CENTER_X_DUMMY
GNM_STEP_CENTER_Y_DUMMY
N_DB_OASIS_DUMMY
show-filter-button
drill-down-on-double-click
header-grid-layout
grouped-by
days
months
quarters
years
date-start
date-end
step
data-pilot-groups
data-pilot-group
data-pilot-group-member
japanese-candle-stick
named-symbol
diamond
arrow-down
arrow-up
arrow-right
arrow-left
bow-tie
hourglass
symbol-name
symbol-type
image-opacity
default-outline-level
show-details
show-empty
repeat-item-labels
iterative
X
dlg
N_DLG_DUMMY
script-data
libraries
source-code
readonly
z
dimension
validation-name
screen
printer
model
schema
bind
instance
submission
ref
src
method
nodeset
indent
omit-xml-declaration
standalone
cdata-section-elements
required
relevant
calculate
constraint
maxOccurs
minOccurs
p3ptype
mediatype
includenamespaceprefixes
base
targetNamespace
simpleType
restriction
maxLength
minLength
minInclusive
minExclusive
maxInclusive
maxExclusive
pattern
enumeration
whiteSpace
totalDigits
fractionDigits
preserve
anyURI
dateTime
main-etry
remove
hold
transition
inherit
fillDefault
restart
restartDefault
whenNotActive
never
accelerate
decelerate
autoReverse
indefinite
repeatCount
repeatDur
endsync
first
last
media
dur
begin
whole
from
to
by
values
keyTimes
keySplines
calcMode
discrete
paced
spline
accumulate
additive
multiply
animate
animateMotion
animateTransform
animateColor
transitionFilter
attributeName
smil
N_SMIL_DUMMY
anim
N_ANIMATION_DUMMY
par
seq
translate
skewX
skewY
audio
color-interpolation
color-interpolation-direction
hsl
rgb
barWipe
boxWipe
fourBoxWipe
barnDoorWipe
diagonalWipe
bowTieWipe
miscDiagonalWipe
veeWipe
barnVeeWipe
zigZagWipe
barnZigZagWipe
irisWipe
triangleWipe
arrowHeadWipe
pentagonWipe
hexagonWipe
ellipseWipe
eyeWipe
roundRectWipe
starWipe
miscShapeWipe
clockWipe
pinWheelWipe
singleSweepWipe
fanWipe
doubleFanWipe
doubleSweepWipe
saloonDoorWipe
windshieldWipe
snakeWipe
spiralWipe
parallelSnakesWipe
boxSnakesWipe
waterfallWipe
pushWipe
slideWipe
blindsWipe
randomBarWipe
checkerBoardWipe
zoom
leftToRight
topToBottom
topLeft
topRight
bottomRight
bottomLeft
topCenter
rightCenter
bottomCenter
leftCenter
cornersIn
cornersOut
diagonalBottomLeft
diagonalTopLeft
doubleBarnDoor
doubleDiamond
fourPoint
fivePoint
sixPoint
heart
keyhole
clockwiseTwelve
clockwiseThree
clockwiseSix
clockwiseNine
twoBladeVertical
twoBladeHorizontal
fourBlade
clockwiseTop
clockwiseRight
clockwiseBottom
clockwiseLeft
clockwiseTopLeft
counterClockwiseBottomLeft
clockwiseBottomRight
counterClockwiseTopRight
centerTop
centerRight
fanOutVertical
fanOutHorizontal
fanInVertical
fanInHorizontal
parallelVertical
parallelDiagonal
oppositeVertical
oppositeHorizontal
parallelDiagonalTopLeft
parallelDiagonalBottomLeft
topLeftHorizontal
topLeftDiagonal
topLeftVertical
topRightDiagonal
bottomRightDiagonal
bottomLeftDiagonal
topLeftClockwise
topRightClockwise
bottomRightClockwise
bottomLeftClockwise
topLeftCounterClockwise
topRightCounterClockwise
bottomRightCounterClockwise
bottomLeftCounterClockwise
verticalTopSame
verticalBottomSame
verticalTopLeftOpposite
verticalBottomLeftOpposite
horizontalLeftSame
horizontalRightSame
horizontalTopLeftOpposite
horizontalTopRightOpposite
diagonalBottomLeftOpposite
diagonalTopLeftOpposite
twoBoxTop
twoBoxBottom
twoBoxLeft
twoBoxRight
fourBoxVertical
fourBoxHorizontal
verticalLeft
verticalRight
horizontalLeft
horizontalRight
fromLeft
fromTop
fromRight
fromBottom
crossfade
fadeToColor
fadeFromColor
fadeOverColor
threeBlade
eightBlade
oneBlade
across
combHorizontal
combVertical
rotateIn
rotateOut
fromTopLeft
fromTopRight
fromBottomLeft
fromBottomRight
subtype
out
forward
reverse
fadeColor
onbegin
onend
click
doubleclick
mouseover
mouseout
node-type
preset-id
preset-sub-type
preset-class
custom
entrance
exit
emphasis
motion-path
ole-action
media-call
on-click
with-previous
after-previous
main-sequence
timing-root
interactive-sequence
sub-item
iterate-type
iterate-interval
iterate
by-paragraph
by-word
by-letter
after-effect
master
group-id
targetElement
toggle-pause
master-element
stop-audio
audio-level
URN_OASIS_NAMES_TC_DUMMY
opendocument
1_0_DUMMY
is-list-header
N_SVG_COMPAT_DUMMY
N_FO_COMPAT_DUMMY
N_SMIL_COMPAT_DUMMY
N_SMIL_OLD_DUMMY
xforms-submission
xforms-list-source
URI_W3_PREFIX_DUMMY
URI_XFORMS_SUFFIX_DUMMY
horizontal-on-even
N_RPT_OASIS_DUMMY
N_RPT_DUMMY
group
groups
report-header
page-header
detail
page-footer
report-footer
start-new-column
reset-page-number
print-header-on-each-page
sort-expression
group-expression
group-header
group-footer
header-on-new-page
footer-on-new-page
page-print-option
pre-evaluated
command-type
master-fields
detail-fields
conditional-print-expression
report-component
print-repeated-values
repeat-section
force-new-column
group-on
force-new-page
group-interval
print-when-group-change
report-element
list-source
list-source-type
image-data
selected
current-state
is-tristate
all-pages
not-with-report-header
not-with-report-footer
not-with-report-header-nor-footer
before-section
after-section
before-after-section
prefix-characters
quartal
week
whole-group
with-first-detail
top-down
bottom-up
hour
minute
rpt
format-condition
expression1
expression2
equal
not_equal
less
greater
less_equal
greater_equal
between
not_between
table-template
first-row
last-row
first-column
last-column
even-rows
odd-rows
even-columns
odd-columns
first-row-even-column
last-row-even-column
first-row-end-column
first-row-start-column
last-row-end-column
last-row-start-column
horizontal-on-odd
restart-numbering
numbered-paragraph
master-detail-fields
master-detail-field
sub-document
fixed-content
initial-formula
deep-traversing
preserve-IRI
sort-by-x-values
page-continuation
right-angled-axes
soft-page-break
use-soft-page-breaks
percentage-data-style-name
value-and-percentage
group-bars-per-axis
include-hidden-cells
auto-position
auto-size
reverse-direction
label-separator
label-position
avoid-overlap
near-origin
dependency
nav-order
use-first-row-styles
use-last-row-styles
use-first-column-styles
use-last-column-styles
use-banding-rows-styles
use-banding-columns-styles
automatic-content
display-r-square
display-equation
table-representations
table-representation
schema-definition
connection-data
database-description
compound-database
file-based-database
server-database
media-type
hostname
port
local-socket
use-system-user
driver-settings
java-classpath
character-set
application-connection-settings
table-include-filter
default-row-style-name
angle-offset
number-no-superior
number-all-superior
list-level-position-and-space-mode
label-width-and-position
label-alignment
list-level-label-alignment
label-followed-by
listtab
space
nothing
list-tab-stop-position
standard-error
cell-range
error-lower-range
error-upper-range
continue-list
style-override
xforms-settings
meta-field
about
datatype
transformation
list-id
treat-empty-cells
leave-gap
use-zero
ignore
fieldmark
fieldmark-start
fieldmark-end
N_FIELD_DUMMY
NP_FIELD_DUMMY
image-scale
isotropic
anisotropic
axis-position
axis-label-position
near-axis
near-axis-other-side
outside-start
outside-end
tick-mark-position
at-labels
at-axis
at-labels-and-axis
filled-radar
surface
mathvariant
mathsize
mathweight
mathcolor
contains
does-not-contain
begins-with
does-not-begin-with
ends-with
does-not-end-with
chartooo
N_CHART_EXT_DUMMY
coordinate-region
diagonal-bl-tr-widths
diagonal-tl-br-widths
outside-minimum
outside-maximum
legend-expansion
legend-expansion-aspect-ratio
balanced
high
wide
axis-type
date-scale
base-time-unit
major-interval-value
minor-interval-value
major-interval-unit
minor-interval-unit
min-value
max-value
margin
propertry-mapping
star
asterisk
horizontal-bar
vertical-bar
std-weight
rfc-language-tag
rfc-language-tag-asian
rfc-language-tag-complex
data-table-show-horz-border
data-table-show-vert-border
data-table-show-outline
display-units
display-units-built-in-unit
external-data
exponent-interval
forced-exponent-sign
min-decimal-places
max-denominator-value
max-numerator-digits
zeros-numerator-digits
zeros-denominator-digits
integer-fraction-delimiter
TOKEN_END_DUMMY