annotate libfaad2/iq_table.h @ 11619:179138947307

This patch contains bugfixes for the esd audio output driver that I uncovered while trying to send sound to a remote esd server over a wireless (11 mbs, just enough to handle to sound) link. First, the sound was full "ticking" sounds. I found a bug that prevented the "send the remainder of this block" code from ever being called - so large chunks of audio were simply being ignored. Fixing this bug removed the "ticking" from audio streams. Fixing this bug, however, uncovered another problem - when the socket buffer was full, doing a blocking write to finish the buffer would take far too long and would turn video into a chunky mess. I'd imagine this blocking write would be fine for an audio-only stream, but it turns out to hold up the video far too much. The solution in this patch is to write as much data as possible to the socket, and then return as soon as possible, reporting the number of bytes actually written accurately back to mplayer. I've tested it on both local and remote esd servers, and it works well. Patch by Benjamin Osheroff <ben@gimbo.net>
author attila
date Wed, 10 Dec 2003 12:19:13 +0000
parents 3185f64f6350
children 4a370c80fe5c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1 /*
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
2 ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
3 ** Copyright (C) 2003 M. Bakker, Ahead Software AG, http://www.nero.com
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
4 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
5 ** This program is free software; you can redistribute it and/or modify
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
6 ** it under the terms of the GNU General Public License as published by
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
7 ** the Free Software Foundation; either version 2 of the License, or
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
8 ** (at your option) any later version.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
9 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
10 ** This program is distributed in the hope that it will be useful,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
11 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
12 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
13 ** GNU General Public License for more details.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
14 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
15 ** You should have received a copy of the GNU General Public License
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
16 ** along with this program; if not, write to the Free Software
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
17 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
18 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
19 ** Any non-GPL usage of this software or parts of this software is strictly
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
20 ** forbidden.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
21 **
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
22 ** Commercial non-GPL licensing of this software is possible.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
23 ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
24 **
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
25 ** $Id: iq_table.h,v 1.1 2003/08/30 22:30:21 arpi Exp $
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
26 **/
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
27
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
28 #ifndef IQ_TABLE_H__
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
29 #define IQ_TABLE_H__
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
30
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
31 #ifdef __cplusplus
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
32 extern "C" {
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
33 #endif
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
34
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
35
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
36 #ifndef FIXED_POINT
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
37
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
38 #ifdef _MSC_VER
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
39 #pragma warning(disable:4305)
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
40 #pragma warning(disable:4244)
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
41 #endif
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
42
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
43 /* !!!DON'T CHANGE IQ_TABLE_SIZE!!! */
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
44 #define IQ_TABLE_SIZE 1026
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
45
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
46 static real_t iq_table[] =
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
47 {
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
48 0.0000000000,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
49 1.0000000000,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
50 2.5198420998,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
51 4.3267487109,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
52 6.3496042079,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
53 8.5498797334,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
54 10.9027235570,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
55 13.3905182794,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
56 16.0000000000,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
57 18.7207544075,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
58 21.5443469003,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
59 24.4637809963,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
60 27.4731418213,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
61 30.5673509404,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
62 33.7419916985,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
63 36.9931811150,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
64 40.3174735966,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
65 43.7117870412,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
66 47.1733450958,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
67 50.6996313257,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
68 54.2883523319,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
69 57.9374077040,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
70 61.6448652744,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
71 65.4089405366,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
72 69.2279793748,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
73 73.1004434553,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
74 77.0248977786,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
75 81.0000000000,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
76 85.0244912125,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
77 89.0971879449,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
78 93.2169751786,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
79 97.3828002241,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
80 101.5936673260,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
81 105.8486328899,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
82 110.1468012434,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
83 114.4873208566,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
84 118.8693809602,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
85 123.2922085109,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
86 127.7550654584,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
87 132.2572462776,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
88 136.7980757341,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
89 141.3769068557,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
90 145.9931190852,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
91 150.6461165966,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
92 155.3353267543,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
93 160.0601987021,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
94 164.8202020667,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
95 169.6148257665,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
96 174.4435769119,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
97 179.3059797911,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
98 184.2015749320,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
99 189.1299182326,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
100 194.0905801545,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
101 199.0831449737,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
102 204.1072100830,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
103 209.1623853419,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
104 214.2482924705,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
105 219.3645644828,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
106 224.5108451564,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
107 229.6867885365,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
108 234.8920584701,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
109 240.1263281692,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
110 245.3892798002,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
111 250.6806040975,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
112 256.0000000000,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
113 261.3471743083,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
114 266.7218413611,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
115 272.1237227299,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
116 277.5525469304,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
117 283.0080491495,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
118 288.4899709866,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
119 293.9980602090,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
120 299.5320705195,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
121 305.0917613358,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
122 310.6768975818,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
123 316.2872494882,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
124 321.9225924034,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
125 327.5827066139,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
126 333.2673771724,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
127 338.9763937351,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
128 344.7095504051,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
129 350.4666455847,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
130 356.2474818330,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
131 362.0518657308,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
132 367.8796077506,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
133 373.7305221334,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
134 379.6044267700,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
135 385.5011430873,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
136 391.4204959402,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
137 397.3623135070,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
138 403.3264271901,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
139 409.3126715201,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
140 415.3208840636,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
141 421.3509053358,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
142 427.4025787150,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
143 433.4757503618,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
144 439.5702691405,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
145 445.6859865441,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
146 451.8227566217,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
147 457.9804359091,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
148 464.1588833613,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
149 470.3579602882,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
150 476.5775302922,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
151 482.8174592083,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
152 489.0776150459,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
153 495.3578679332,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
154 501.6580900633,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
155 507.9781556420,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
156 514.3179408377,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
157 520.6773237328,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
158 527.0561842769,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
159 533.4544042413,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
160 539.8718671753,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
161 546.3084583636,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
162 552.7640647857,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
163 559.2385750758,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
164 565.7318794845,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
165 572.2438698415,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
166 578.7744395198,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
167 585.3234834006,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
168 591.8908978393,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
169 598.4765806331,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
170 605.0804309888,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
171 611.7023494920,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
172 618.3422380776,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
173 625.0000000000,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
174 631.6755398055,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
175 638.3687633048,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
176 645.0795775462,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
177 651.8078907899,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
178 658.5536124831,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
179 665.3166532354,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
180 672.0969247951,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
181 678.8943400262,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
182 685.7088128862,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
183 692.5402584041,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
184 699.3885926590,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
185 706.2537327602,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
186 713.1355968262,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
187 720.0341039659,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
188 726.9491742592,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
189 733.8807287386,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
190 740.8286893712,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
191 747.7929790411,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
192 754.7735215322,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
193 761.7702415115,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
194 768.7830645130,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
195 775.8119169219,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
196 782.8567259587,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
197 789.9174196648,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
198 796.9939268870,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
199 804.0861772639,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
200 811.1941012115,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
201 818.3176299096,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
202 825.4566952887,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
203 832.6112300164,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
204 839.7811674856,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
205 846.9664418012,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
206 854.1669877685,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
207 861.3827408814,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
208 868.6136373104,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
209 875.8596138918,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
210 883.1206081164,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
211 890.3965581189,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
212 897.6874026669,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
213 904.9930811514,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
214 912.3135335758,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
215 919.6487005467,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
216 926.9985232641,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
217 934.3629435117,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
218 941.7419036483,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
219 949.1353465979,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
220 956.5432158417,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
221 963.9654554089,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
222 971.4020098686,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
223 978.8528243212,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
224 986.3178443907,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
225 993.7970162163,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
226 1001.2902864449,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
227 1008.7976022234,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
228 1016.3189111915,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
229 1023.8541614739,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
230 1031.4033016737,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
231 1038.9662808647,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
232 1046.5430485854,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
233 1054.1335548314,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
234 1061.7377500496,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
235 1069.3555851309,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
236 1076.9870114047,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
237 1084.6319806319,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
238 1092.2904449995,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
239 1099.9623571140,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
240 1107.6476699961,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
241 1115.3463370744,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
242 1123.0583121801,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
243 1130.7835495416,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
244 1138.5220037785,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
245 1146.2736298969,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
246 1154.0383832838,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
247 1161.8162197020,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
248 1169.6070952851,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
249 1177.4109665328,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
250 1185.2277903054,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
251 1193.0575238198,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
252 1200.9001246442,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
253 1208.7555506939,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
254 1216.6237602266,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
255 1224.5047118380,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
256 1232.3983644575,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
257 1240.3046773436,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
258 1248.2236100803,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
259 1256.1551225723,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
260 1264.0991750417,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
261 1272.0557280230,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
262 1280.0247423603,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
263 1288.0061792024,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
264 1296.0000000000,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
265 1304.0061665011,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
266 1312.0246407478,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
267 1320.0553850728,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
268 1328.0983620955,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
269 1336.1535347188,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
270 1344.2208661255,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
271 1352.3003197751,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
272 1360.3918594003,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
273 1368.4954490040,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
274 1376.6110528559,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
275 1384.7386354892,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
276 1392.8781616980,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
277 1401.0295965338,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
278 1409.1929053025,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
279 1417.3680535619,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
280 1425.5550071182,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
281 1433.7537320236,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
282 1441.9641945733,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
283 1450.1863613025,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
284 1458.4201989843,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
285 1466.6656746263,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
286 1474.9227554684,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
287 1483.1914089801,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
288 1491.4716028579,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
289 1499.7633050227,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
290 1508.0664836175,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
291 1516.3811070048,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
292 1524.7071437644,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
293 1533.0445626906,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
294 1541.3933327903,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
295 1549.7534232806,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
296 1558.1248035861,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
297 1566.5074433375,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
298 1574.9013123686,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
299 1583.3063807145,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
300 1591.7226186094,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
301 1600.1499964846,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
302 1608.5884849662,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
303 1617.0380548732,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
304 1625.4986772154,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
305 1633.9703231917,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
306 1642.4529641876,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
307 1650.9465717736,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
308 1659.4511177036,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
309 1667.9665739122,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
310 1676.4929125137,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
311 1685.0301057998,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
312 1693.5781262378,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
313 1702.1369464690,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
314 1710.7065393070,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
315 1719.2868777356,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
316 1727.8779349075,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
317 1736.4796841426,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
318 1745.0920989258,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
319 1753.7151529063,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
320 1762.3488198950,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
321 1770.9930738636,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
322 1779.6478889428,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
323 1788.3132394207,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
324 1796.9890997413,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
325 1805.6754445031,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
326 1814.3722484576,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
327 1823.0794865074,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
328 1831.7971337056,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
329 1840.5251652535,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
330 1849.2635564999,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
331 1858.0122829390,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
332 1866.7713202096,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
333 1875.5406440938,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
334 1884.3202305150,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
335 1893.1100555371,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
336 1901.9100953633,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
337 1910.7203263343,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
338 1919.5407249276,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
339 1928.3712677557,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
340 1937.2119315653,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
341 1946.0626932359,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
342 1954.9235297784,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
343 1963.7944183344,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
344 1972.6753361744,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
345 1981.5662606973,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
346 1990.4671694285,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
347 1999.3780400196,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
348 2008.2988502465,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
349 2017.2295780088,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
350 2026.1702013285,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
351 2035.1206983489,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
352 2044.0810473338,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
353 2053.0512266659,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
354 2062.0312148464,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
355 2071.0209904936,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
356 2080.0205323417,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
357 2089.0298192403,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
358 2098.0488301532,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
359 2107.0775441570,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
360 2116.1159404408,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
361 2125.1639983049,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
362 2134.2216971598,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
363 2143.2890165253,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
364 2152.3659360297,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
365 2161.4524354089,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
366 2170.5484945052,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
367 2179.6540932666,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
368 2188.7692117462,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
369 2197.8938301007,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
370 2207.0279285901,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
371 2216.1714875766,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
372 2225.3244875237,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
373 2234.4869089955,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
374 2243.6587326558,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
375 2252.8399392674,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
376 2262.0305096911,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
377 2271.2304248850,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
378 2280.4396659037,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
379 2289.6582138977,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
380 2298.8860501122,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
381 2308.1231558868,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
382 2317.3695126545,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
383 2326.6251019409,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
384 2335.8899053637,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
385 2345.1639046317,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
386 2354.4470815443,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
387 2363.7394179907,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
388 2373.0408959490,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
389 2382.3514974860,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
390 2391.6712047559,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
391 2401.0000000000,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
392 2410.3378655461,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
393 2419.6847838074,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
394 2429.0407372823,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
395 2438.4057085534,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
396 2447.7796802872,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
397 2457.1626352330,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
398 2466.5545562227,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
399 2475.9554261700,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
400 2485.3652280695,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
401 2494.7839449968,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
402 2504.2115601072,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
403 2513.6480566352,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
404 2523.0934178943,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
405 2532.5476272760,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
406 2542.0106682495,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
407 2551.4825243609,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
408 2560.9631792328,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
409 2570.4526165636,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
410 2579.9508201270,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
411 2589.4577737714,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
412 2598.9734614194,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
413 2608.4978670675,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
414 2618.0309747849,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
415 2627.5727687136,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
416 2637.1232330677,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
417 2646.6823521328,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
418 2656.2501102653,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
419 2665.8264918923,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
420 2675.4114815110,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
421 2685.0050636878,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
422 2694.6072230582,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
423 2704.2179443264,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
424 2713.8372122643,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
425 2723.4650117115,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
426 2733.1013275747,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
427 2742.7461448270,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
428 2752.3994485079,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
429 2762.0612237221,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
430 2771.7314556399,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
431 2781.4101294962,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
432 2791.0972305902,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
433 2800.7927442847,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
434 2810.4966560063,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
435 2820.2089512442,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
436 2829.9296155502,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
437 2839.6586345385,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
438 2849.3959938845,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
439 2859.1416793251,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
440 2868.8956766580,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
441 2878.6579717413,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
442 2888.4285504930,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
443 2898.2073988909,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
444 2907.9945029718,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
445 2917.7898488313,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
446 2927.5934226236,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
447 2937.4052105607,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
448 2947.2251989123,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
449 2957.0533740053,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
450 2966.8897222234,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
451 2976.7342300070,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
452 2986.5868838523,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
453 2996.4476703115,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
454 3006.3165759920,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
455 3016.1935875562,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
456 3026.0786917212,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
457 3035.9718752584,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
458 3045.8731249931,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
459 3055.7824278041,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
460 3065.6997706236,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
461 3075.6251404365,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
462 3085.5585242804,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
463 3095.4999092450,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
464 3105.4492824719,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
465 3115.4066311543,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
466 3125.3719425365,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
467 3135.3452039137,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
468 3145.3264026318,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
469 3155.3155260867,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
470 3165.3125617243,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
471 3175.3174970403,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
472 3185.3303195795,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
473 3195.3510169356,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
474 3205.3795767511,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
475 3215.4159867169,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
476 3225.4602345719,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
477 3235.5123081028,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
478 3245.5721951437,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
479 3255.6398835758,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
480 3265.7153613275,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
481 3275.7986163735,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
482 3285.8896367348,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
483 3295.9884104787,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
484 3306.0949257178,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
485 3316.2091706107,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
486 3326.3311333606,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
487 3336.4608022160,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
488 3346.5981654700,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
489 3356.7432114599,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
490 3366.8959285672,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
491 3377.0563052172,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
492 3387.2243298788,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
493 3397.3999910641,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
494 3407.5832773283,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
495 3417.7741772695,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
496 3427.9726795281,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
497 3438.1787727870,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
498 3448.3924457710,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
499 3458.6136872466,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
500 3468.8424860221,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
501 3479.0788309468,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
502 3489.3227109112,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
503 3499.5741148464,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
504 3509.8330317244,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
505 3520.0994505573,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
506 3530.3733603973,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
507 3540.6547503364,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
508 3550.9436095064,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
509 3561.2399270783,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
510 3571.5436922624,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
511 3581.8548943078,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
512 3592.1735225026,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
513 3602.4995661730,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
514 3612.8330146838,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
515 3623.1738574377,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
516 3633.5220838752,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
517 3643.8776834744,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
518 3654.2406457510,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
519 3664.6109602577,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
520 3674.9886165844,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
521 3685.3736043574,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
522 3695.7659132398,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
523 3706.1655329312,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
524 3716.5724531671,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
525 3726.9866637191,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
526 3737.4081543945,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
527 3747.8369150361,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
528 3758.2729355221,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
529 3768.7162057659,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
530 3779.1667157159,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
531 3789.6244553551,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
532 3800.0894147012,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
533 3810.5615838063,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
534 3821.0409527566,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
535 3831.5275116724,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
536 3842.0212507077,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
537 3852.5221600504,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
538 3863.0302299216,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
539 3873.5454505757,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
540 3884.0678123003,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
541 3894.5973054159,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
542 3905.1339202756,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
543 3915.6776472653,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
544 3926.2284768030,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
545 3936.7863993390,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
546 3947.3514053559,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
547 3957.9234853677,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
548 3968.5026299205,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
549 3979.0888295917,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
550 3989.6820749901,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
551 4000.2823567557,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
552 4010.8896655596,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
553 4021.5039921036,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
554 4032.1253271203,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
555 4042.7536613729,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
556 4053.3889856548,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
557 4064.0312907898,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
558 4074.6805676315,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
559 4085.3368070638,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
560 4096.0000000000,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
561 4106.6701373831,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
562 4117.3472101855,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
563 4128.0312094089,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
564 4138.7221260843,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
565 4149.4199512713,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
566 4160.1246760588,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
567 4170.8362915639,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
568 4181.5547889326,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
569 4192.2801593392,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
570 4203.0123939861,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
571 4213.7514841039,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
572 4224.4974209512,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
573 4235.2501958144,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
574 4246.0098000075,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
575 4256.7762248721,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
576 4267.5494617770,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
577 4278.3295021186,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
578 4289.1163373202,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
579 4299.9099588321,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
580 4310.7103581313,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
581 4321.5175267219,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
582 4332.3314561342,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
583 4343.1521379251,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
584 4353.9795636778,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
585 4364.8137250016,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
586 4375.6546135320,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
587 4386.5022209304,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
588 4397.3565388837,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
589 4408.2175591050,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
590 4419.0852733324,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
591 4429.9596733298,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
592 4440.8407508861,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
593 4451.7284978156,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
594 4462.6229059575,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
595 4473.5239671759,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
596 4484.4316733599,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
597 4495.3460164231,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
598 4506.2669883035,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
599 4517.1945809640,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
600 4528.1287863914,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
601 4539.0695965968,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
602 4550.0170036156,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
603 4560.9709995068,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
604 4571.9315763535,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
605 4582.8987262626,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
606 4593.8724413645,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
607 4604.8527138130,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
608 4615.8395357856,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
609 4626.8328994828,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
610 4637.8327971284,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
611 4648.8392209693,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
612 4659.8521632753,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
613 4670.8716163390,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
614 4681.8975724760,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
615 4692.9300240243,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
616 4703.9689633444,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
617 4715.0143828193,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
618 4726.0662748543,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
619 4737.1246318771,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
620 4748.1894463371,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
621 4759.2607107062,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
622 4770.3384174777,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
623 4781.4225591672,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
624 4792.5131283116,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
625 4803.6101174696,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
626 4814.7135192213,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
627 4825.8233261683,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
628 4836.9395309335,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
629 4848.0621261609,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
630 4859.1911045158,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
631 4870.3264586842,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
632 4881.4681813733,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
633 4892.6162653110,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
634 4903.7707032459,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
635 4914.9314879474,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
636 4926.0986122052,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
637 4937.2720688295,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
638 4948.4518506510,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
639 4959.6379505206,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
640 4970.8303613092,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
641 4982.0290759079,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
642 4993.2340872279,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
643 5004.4453882001,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
644 5015.6629717753,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
645 5026.8868309241,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
646 5038.1169586365,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
647 5049.3533479223,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
648 5060.5959918105,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
649 5071.8448833497,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
650 5083.1000156077,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
651 5094.3613816714,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
652 5105.6289746470,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
653 5116.9027876595,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
654 5128.1828138531,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
655 5139.4690463907,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
656 5150.7614784539,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
657 5162.0601032433,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
658 5173.3649139777,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
659 5184.6759038949,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
660 5195.9930662506,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
661 5207.3163943194,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
662 5218.6458813939,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
663 5229.9815207850,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
664 5241.3233058217,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
665 5252.6712298510,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
666 5264.0252862380,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
667 5275.3854683656,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
668 5286.7517696346,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
669 5298.1241834635,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
670 5309.5027032884,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
671 5320.8873225631,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
672 5332.2780347590,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
673 5343.6748333647,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
674 5355.0777118863,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
675 5366.4866638472,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
676 5377.9016827880,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
677 5389.3227622665,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
678 5400.7498958574,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
679 5412.1830771527,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
680 5423.6222997611,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
681 5435.0675573082,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
682 5446.5188434364,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
683 5457.9761518049,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
684 5469.4394760894,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
685 5480.9088099822,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
686 5492.3841471923,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
687 5503.8654814448,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
688 5515.3528064816,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
689 5526.8461160606,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
690 5538.3454039558,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
691 5549.8506639579,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
692 5561.3618898731,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
693 5572.8790755240,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
694 5584.4022147491,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
695 5595.9313014028,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
696 5607.4663293552,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
697 5619.0072924923,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
698 5630.5541847159,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
699 5642.1069999431,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
700 5653.6657321070,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
701 5665.2303751559,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
702 5676.8009230538,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
703 5688.3773697797,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
704 5699.9597093284,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
705 5711.5479357096,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
706 5723.1420429485,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
707 5734.7420250850,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
708 5746.3478761746,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
709 5757.9595902874,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
710 5769.5771615087,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
711 5781.2005839386,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
712 5792.8298516920,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
713 5804.4649588987,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
714 5816.1058997031,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
715 5827.7526682643,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
716 5839.4052587560,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
717 5851.0636653664,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
718 5862.7278822983,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
719 5874.3979037688,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
720 5886.0737240093,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
721 5897.7553372658,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
722 5909.4427377983,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
723 5921.1359198811,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
724 5932.8348778025,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
725 5944.5396058651,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
726 5956.2500983854,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
727 5967.9663496940,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
728 5979.6883541351,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
729 5991.4161060672,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
730 6003.1495998623,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
731 6014.8888299063,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
732 6026.6337905987,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
733 6038.3844763527,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
734 6050.1408815952,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
735 6061.9030007664,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
736 6073.6708283203,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
737 6085.4443587241,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
738 6097.2235864585,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
739 6109.0085060174,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
740 6120.7991119082,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
741 6132.5953986513,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
742 6144.3973607806,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
743 6156.2049928426,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
744 6168.0182893975,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
745 6179.8372450182,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
746 6191.6618542904,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
747 6203.4921118132,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
748 6215.3280121982,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
749 6227.1695500700,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
750 6239.0167200659,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
751 6250.8695168361,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
752 6262.7279350432,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
753 6274.5919693627,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
754 6286.4616144826,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
755 6298.3368651034,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
756 6310.2177159382,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
757 6322.1041617124,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
758 6333.9961971640,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
759 6345.8938170431,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
760 6357.7970161124,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
761 6369.7057891466,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
762 6381.6201309327,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
763 6393.5400362700,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
764 6405.4654999698,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
765 6417.3965168555,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
766 6429.3330817625,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
767 6441.2751895383,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
768 6453.2228350423,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
769 6465.1760131457,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
770 6477.1347187317,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
771 6489.0989466952,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
772 6501.0686919430,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
773 6513.0439493936,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
774 6525.0247139769,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
775 6537.0109806350,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
776 6549.0027443210,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
777 6561.0000000000,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
778 6573.0027426484,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
779 6585.0109672541,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
780 6597.0246688165,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
781 6609.0438423464,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
782 6621.0684828657,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
783 6633.0985854079,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
784 6645.1341450177,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
785 6657.1751567510,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
786 6669.2216156747,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
787 6681.2735168671,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
788 6693.3308554176,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
789 6705.3936264265,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
790 6717.4618250051,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
791 6729.5354462759,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
792 6741.6144853722,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
793 6753.6989374383,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
794 6765.7887976291,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
795 6777.8840611107,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
796 6789.9847230597,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
797 6802.0907786636,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
798 6814.2022231205,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
799 6826.3190516394,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
800 6838.4412594396,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
801 6850.5688417513,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
802 6862.7017938151,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
803 6874.8401108821,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
804 6886.9837882140,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
805 6899.1328210829,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
806 6911.2872047712,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
807 6923.4469345719,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
808 6935.6120057882,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
809 6947.7824137335,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
810 6959.9581537318,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
811 6972.1392211169,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
812 6984.3256112330,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
813 6996.5173194347,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
814 7008.7143410863,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
815 7020.9166715624,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
816 7033.1243062477,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
817 7045.3372405367,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
818 7057.5554698343,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
819 7069.7789895548,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
820 7082.0077951229,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
821 7094.2418819728,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
822 7106.4812455489,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
823 7118.7258813051,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
824 7130.9757847053,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
825 7143.2309512230,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
826 7155.4913763416,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
827 7167.7570555538,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
828 7180.0279843624,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
829 7192.3041582795,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
830 7204.5855728270,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
831 7216.8722235361,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
832 7229.1641059476,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
833 7241.4612156120,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
834 7253.7635480891,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
835 7266.0710989478,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
836 7278.3838637670,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
837 7290.7018381344,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
838 7303.0250176474,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
839 7315.3533979125,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
840 7327.6869745455,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
841 7340.0257431713,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
842 7352.3696994244,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
843 7364.7188389480,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
844 7377.0731573946,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
845 7389.4326504259,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
846 7401.7973137127,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
847 7414.1671429346,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
848 7426.5421337804,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
849 7438.9222819480,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
850 7451.3075831438,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
851 7463.6980330837,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
852 7476.0936274921,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
853 7488.4943621024,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
854 7500.9002326569,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
855 7513.3112349065,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
856 7525.7273646110,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
857 7538.1486175390,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
858 7550.5749894679,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
859 7563.0064761834,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
860 7575.4430734804,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
861 7587.8847771619,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
862 7600.3315830400,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
863 7612.7834869349,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
864 7625.2404846758,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
865 7637.7025721001,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
866 7650.1697450538,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
867 7662.6419993914,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
868 7675.1193309757,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
869 7687.6017356782,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
870 7700.0892093785,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
871 7712.5817479647,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
872 7725.0793473331,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
873 7737.5820033885,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
874 7750.0897120437,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
875 7762.6024692201,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
876 7775.1202708469,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
877 7787.6431128620,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
878 7800.1709912110,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
879 7812.7039018478,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
880 7825.2418407347,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
881 7837.7848038416,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
882 7850.3327871468,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
883 7862.8857866366,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
884 7875.4437983052,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
885 7888.0068181548,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
886 7900.5748421957,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
887 7913.1478664460,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
888 7925.7258869318,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
889 7938.3088996870,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
890 7950.8969007534,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
891 7963.4898861807,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
892 7976.0878520263,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
893 7988.6907943555,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
894 8001.2987092412,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
895 8013.9115927643,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
896 8026.5294410131,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
897 8039.1522500838,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
898 8051.7800160802,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
899 8064.4127351138,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
900 8077.0504033037,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
901 8089.6930167764,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
902 8102.3405716663,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
903 8114.9930641151,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
904 8127.6504902721,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
905 8140.3128462940,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
906 8152.9801283453,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
907 8165.6523325976,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
908 8178.3294552300,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
909 8191.0114924292,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
910 8203.6984403890,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
911 8216.3902953107,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
912 8229.0870534031,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
913 8241.7887108821,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
914 8254.4952639709,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
915 8267.2067089000,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
916 8279.9230419073,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
917 8292.6442592376,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
918 8305.3703571432,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
919 8318.1013318835,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
920 8330.8371797251,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
921 8343.5778969415,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
922 8356.3234798136,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
923 8369.0739246292,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
924 8381.8292276834,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
925 8394.5893852780,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
926 8407.3543937222,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
927 8420.1242493321,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
928 8432.8989484305,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
929 8445.6784873475,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
930 8458.4628624202,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
931 8471.2520699922,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
932 8484.0461064144,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
933 8496.8449680444,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
934 8509.6486512468,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
935 8522.4571523928,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
936 8535.2704678607,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
937 8548.0885940353,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
938 8560.9115273086,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
939 8573.7392640788,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
940 8586.5718007514,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
941 8599.4091337382,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
942 8612.2512594579,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
943 8625.0981743359,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
944 8637.9498748040,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
945 8650.8063573010,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
946 8663.6676182722,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
947 8676.5336541692,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
948 8689.4044614507,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
949 8702.2800365815,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
950 8715.1603760331,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
951 8728.0454762838,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
952 8740.9353338178,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
953 8753.8299451264,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
954 8766.7293067070,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
955 8779.6334150636,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
956 8792.5422667064,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
957 8805.4558581523,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
958 8818.3741859245,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
959 8831.2972465524,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
960 8844.2250365719,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
961 8857.1575525253,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
962 8870.0947909611,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
963 8883.0367484340,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
964 8895.9834215053,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
965 8908.9348067421,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
966 8921.8909007182,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
967 8934.8517000133,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
968 8947.8172012135,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
969 8960.7874009109,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
970 8973.7622957040,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
971 8986.7418821972,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
972 8999.7261570012,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
973 9012.7151167328,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
974 9025.7087580148,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
975 9038.7070774762,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
976 9051.7100717521,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
977 9064.7177374833,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
978 9077.7300713171,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
979 9090.7470699065,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
980 9103.7687299106,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
981 9116.7950479945,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
982 9129.8260208291,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
983 9142.8616450914,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
984 9155.9019174644,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
985 9168.9468346367,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
986 9181.9963933031,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
987 9195.0505901642,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
988 9208.1094219263,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
989 9221.1728853017,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
990 9234.2409770084,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
991 9247.3136937704,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
992 9260.3910323173,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
993 9273.4729893846,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
994 9286.5595617135,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
995 9299.6507460510,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
996 9312.7465391496,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
997 9325.8469377679,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
998 9338.9519386698,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
999 9352.0615386252,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1000 9365.1757344094,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1001 9378.2945228036,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1002 9391.4179005944,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1003 9404.5458645741,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1004 9417.6784115407,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1005 9430.8155382977,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1006 9443.9572416540,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1007 9457.1035184244,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1008 9470.2543654290,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1009 9483.4097794934,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1010 9496.5697574489,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1011 9509.7342961321,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1012 9522.9033923851,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1013 9536.0770430556,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1014 9549.2552449966,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1015 9562.4379950666,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1016 9575.6252901295,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1017 9588.8171270546,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1018 9602.0135027165,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1019 9615.2144139955,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1020 9628.4198577767,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1021 9641.6298309511,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1022 9654.8443304146,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1023 9668.0633530688,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1024 9681.2868958202,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1025 9694.5149555808,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1026 9707.7475292679,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1027 9720.9846138040,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1028 9734.2262061168,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1029 9747.4723031393,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1030 9760.7229018097,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1031 9773.9779990712,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1032 9787.2375918726,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1033 9800.5016771674,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1034 9813.7702519147,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1035 9827.0433130783,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1036 9840.3208576275,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1037 9853.6028825365,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1038 9866.8893847847,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1039 9880.1803613565,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1040 9893.4758092415,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1041 9906.7757254342,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1042 9920.0801069342,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1043 9933.3889507462,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1044 9946.7022538799,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1045 9960.0200133500,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1046 9973.3422261761,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1047 9986.6688893829,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1048 10000.0000000000,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1049 10013.3355550619,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1050 10026.6755516082,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1051 10040.0199866833,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1052 10053.3688573365,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1053 10066.7221606221,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1054 10080.0798935991,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1055 10093.4420533317,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1056 10106.8086368886,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1057 10120.1796413436,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1058 10133.5550637751,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1059 10146.9349012666,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1060 10160.3191509062,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1061 10173.7078097869,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1062 10187.1008750065,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1063 10200.4983436674,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1064 10213.9002128770,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1065 10227.3064797472,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1066 10240.7171413949,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1067 10254.1321949415,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1068 10267.5516375131,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1069 10280.9754662408,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1070 10294.4036782600,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1071 10307.8362707111,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1072 10321.2732407388,
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1073 10334.7145854928
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1074 };
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1075
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1076 #else
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1077
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1078 /* !!!DON'T CHANGE IQ_TABLE_SIZE!!! */
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1079 #define IQ_TABLE_SIZE 8192
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1080
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1081 static real_t iq_table[] =
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
1082 {
10989
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1083 REAL_CONST(0.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1084 REAL_CONST(1.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1085 REAL_CONST(2.519842/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1086 REAL_CONST(4.326749/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1087 REAL_CONST(6.349604/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1088 REAL_CONST(8.549880/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1089 REAL_CONST(10.902724/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1090 REAL_CONST(13.390518/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1091 REAL_CONST(16.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1092 REAL_CONST(18.720754/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1093 REAL_CONST(21.544347/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1094 REAL_CONST(24.463781/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1095 REAL_CONST(27.473142/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1096 REAL_CONST(30.567351/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1097 REAL_CONST(33.741992/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1098 REAL_CONST(36.993181/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1099 REAL_CONST(40.317474/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1100 REAL_CONST(43.711787/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1101 REAL_CONST(47.173345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1102 REAL_CONST(50.699631/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1103 REAL_CONST(54.288352/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1104 REAL_CONST(57.937408/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1105 REAL_CONST(61.644865/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1106 REAL_CONST(65.408941/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1107 REAL_CONST(69.227979/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1108 REAL_CONST(73.100443/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1109 REAL_CONST(77.024898/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1110 REAL_CONST(81.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1111 REAL_CONST(85.024491/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1112 REAL_CONST(89.097188/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1113 REAL_CONST(93.216975/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1114 REAL_CONST(97.382800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1115 REAL_CONST(101.593667/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1116 REAL_CONST(105.848633/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1117 REAL_CONST(110.146801/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1118 REAL_CONST(114.487321/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1119 REAL_CONST(118.869381/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1120 REAL_CONST(123.292209/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1121 REAL_CONST(127.755065/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1122 REAL_CONST(132.257246/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1123 REAL_CONST(136.798076/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1124 REAL_CONST(141.376907/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1125 REAL_CONST(145.993119/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1126 REAL_CONST(150.646117/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1127 REAL_CONST(155.335327/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1128 REAL_CONST(160.060199/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1129 REAL_CONST(164.820202/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1130 REAL_CONST(169.614826/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1131 REAL_CONST(174.443577/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1132 REAL_CONST(179.305980/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1133 REAL_CONST(184.201575/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1134 REAL_CONST(189.129918/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1135 REAL_CONST(194.090580/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1136 REAL_CONST(199.083145/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1137 REAL_CONST(204.107210/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1138 REAL_CONST(209.162385/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1139 REAL_CONST(214.248292/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1140 REAL_CONST(219.364564/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1141 REAL_CONST(224.510845/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1142 REAL_CONST(229.686789/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1143 REAL_CONST(234.892058/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1144 REAL_CONST(240.126328/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1145 REAL_CONST(245.389280/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1146 REAL_CONST(250.680604/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1147 REAL_CONST(256.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1148 REAL_CONST(261.347174/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1149 REAL_CONST(266.721841/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1150 REAL_CONST(272.123723/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1151 REAL_CONST(277.552547/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1152 REAL_CONST(283.008049/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1153 REAL_CONST(288.489971/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1154 REAL_CONST(293.998060/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1155 REAL_CONST(299.532071/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1156 REAL_CONST(305.091761/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1157 REAL_CONST(310.676898/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1158 REAL_CONST(316.287249/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1159 REAL_CONST(321.922592/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1160 REAL_CONST(327.582707/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1161 REAL_CONST(333.267377/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1162 REAL_CONST(338.976394/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1163 REAL_CONST(344.709550/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1164 REAL_CONST(350.466646/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1165 REAL_CONST(356.247482/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1166 REAL_CONST(362.051866/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1167 REAL_CONST(367.879608/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1168 REAL_CONST(373.730522/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1169 REAL_CONST(379.604427/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1170 REAL_CONST(385.501143/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1171 REAL_CONST(391.420496/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1172 REAL_CONST(397.362314/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1173 REAL_CONST(403.326427/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1174 REAL_CONST(409.312672/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1175 REAL_CONST(415.320884/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1176 REAL_CONST(421.350905/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1177 REAL_CONST(427.402579/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1178 REAL_CONST(433.475750/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1179 REAL_CONST(439.570269/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1180 REAL_CONST(445.685987/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1181 REAL_CONST(451.822757/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1182 REAL_CONST(457.980436/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1183 REAL_CONST(464.158883/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1184 REAL_CONST(470.357960/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1185 REAL_CONST(476.577530/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1186 REAL_CONST(482.817459/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1187 REAL_CONST(489.077615/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1188 REAL_CONST(495.357868/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1189 REAL_CONST(501.658090/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1190 REAL_CONST(507.978156/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1191 REAL_CONST(514.317941/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1192 REAL_CONST(520.677324/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1193 REAL_CONST(527.056184/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1194 REAL_CONST(533.454404/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1195 REAL_CONST(539.871867/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1196 REAL_CONST(546.308458/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1197 REAL_CONST(552.764065/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1198 REAL_CONST(559.238575/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1199 REAL_CONST(565.731879/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1200 REAL_CONST(572.243870/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1201 REAL_CONST(578.774440/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1202 REAL_CONST(585.323483/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1203 REAL_CONST(591.890898/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1204 REAL_CONST(598.476581/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1205 REAL_CONST(605.080431/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1206 REAL_CONST(611.702349/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1207 REAL_CONST(618.342238/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1208 REAL_CONST(625.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1209 REAL_CONST(631.675540/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1210 REAL_CONST(638.368763/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1211 REAL_CONST(645.079578/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1212 REAL_CONST(651.807891/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1213 REAL_CONST(658.553612/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1214 REAL_CONST(665.316653/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1215 REAL_CONST(672.096925/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1216 REAL_CONST(678.894340/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1217 REAL_CONST(685.708813/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1218 REAL_CONST(692.540258/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1219 REAL_CONST(699.388593/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1220 REAL_CONST(706.253733/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1221 REAL_CONST(713.135597/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1222 REAL_CONST(720.034104/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1223 REAL_CONST(726.949174/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1224 REAL_CONST(733.880729/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1225 REAL_CONST(740.828689/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1226 REAL_CONST(747.792979/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1227 REAL_CONST(754.773522/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1228 REAL_CONST(761.770242/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1229 REAL_CONST(768.783065/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1230 REAL_CONST(775.811917/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1231 REAL_CONST(782.856726/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1232 REAL_CONST(789.917420/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1233 REAL_CONST(796.993927/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1234 REAL_CONST(804.086177/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1235 REAL_CONST(811.194101/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1236 REAL_CONST(818.317630/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1237 REAL_CONST(825.456695/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1238 REAL_CONST(832.611230/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1239 REAL_CONST(839.781167/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1240 REAL_CONST(846.966442/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1241 REAL_CONST(854.166988/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1242 REAL_CONST(861.382741/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1243 REAL_CONST(868.613637/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1244 REAL_CONST(875.859614/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1245 REAL_CONST(883.120608/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1246 REAL_CONST(890.396558/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1247 REAL_CONST(897.687403/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1248 REAL_CONST(904.993081/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1249 REAL_CONST(912.313534/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1250 REAL_CONST(919.648701/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1251 REAL_CONST(926.998523/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1252 REAL_CONST(934.362944/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1253 REAL_CONST(941.741904/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1254 REAL_CONST(949.135347/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1255 REAL_CONST(956.543216/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1256 REAL_CONST(963.965455/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1257 REAL_CONST(971.402010/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1258 REAL_CONST(978.852824/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1259 REAL_CONST(986.317844/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1260 REAL_CONST(993.797016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1261 REAL_CONST(1001.290286/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1262 REAL_CONST(1008.797602/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1263 REAL_CONST(1016.318911/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1264 REAL_CONST(1023.854161/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1265 REAL_CONST(1031.403302/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1266 REAL_CONST(1038.966281/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1267 REAL_CONST(1046.543049/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1268 REAL_CONST(1054.133555/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1269 REAL_CONST(1061.737750/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1270 REAL_CONST(1069.355585/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1271 REAL_CONST(1076.987011/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1272 REAL_CONST(1084.631981/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1273 REAL_CONST(1092.290445/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1274 REAL_CONST(1099.962357/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1275 REAL_CONST(1107.647670/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1276 REAL_CONST(1115.346337/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1277 REAL_CONST(1123.058312/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1278 REAL_CONST(1130.783550/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1279 REAL_CONST(1138.522004/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1280 REAL_CONST(1146.273630/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1281 REAL_CONST(1154.038383/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1282 REAL_CONST(1161.816220/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1283 REAL_CONST(1169.607095/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1284 REAL_CONST(1177.410967/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1285 REAL_CONST(1185.227790/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1286 REAL_CONST(1193.057524/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1287 REAL_CONST(1200.900125/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1288 REAL_CONST(1208.755551/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1289 REAL_CONST(1216.623760/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1290 REAL_CONST(1224.504712/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1291 REAL_CONST(1232.398364/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1292 REAL_CONST(1240.304677/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1293 REAL_CONST(1248.223610/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1294 REAL_CONST(1256.155123/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1295 REAL_CONST(1264.099175/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1296 REAL_CONST(1272.055728/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1297 REAL_CONST(1280.024742/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1298 REAL_CONST(1288.006179/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1299 REAL_CONST(1296.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1300 REAL_CONST(1304.006167/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1301 REAL_CONST(1312.024641/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1302 REAL_CONST(1320.055385/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1303 REAL_CONST(1328.098362/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1304 REAL_CONST(1336.153535/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1305 REAL_CONST(1344.220866/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1306 REAL_CONST(1352.300320/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1307 REAL_CONST(1360.391859/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1308 REAL_CONST(1368.495449/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1309 REAL_CONST(1376.611053/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1310 REAL_CONST(1384.738635/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1311 REAL_CONST(1392.878162/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1312 REAL_CONST(1401.029597/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1313 REAL_CONST(1409.192905/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1314 REAL_CONST(1417.368054/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1315 REAL_CONST(1425.555007/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1316 REAL_CONST(1433.753732/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1317 REAL_CONST(1441.964195/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1318 REAL_CONST(1450.186361/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1319 REAL_CONST(1458.420199/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1320 REAL_CONST(1466.665675/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1321 REAL_CONST(1474.922755/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1322 REAL_CONST(1483.191409/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1323 REAL_CONST(1491.471603/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1324 REAL_CONST(1499.763305/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1325 REAL_CONST(1508.066484/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1326 REAL_CONST(1516.381107/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1327 REAL_CONST(1524.707144/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1328 REAL_CONST(1533.044563/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1329 REAL_CONST(1541.393333/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1330 REAL_CONST(1549.753423/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1331 REAL_CONST(1558.124804/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1332 REAL_CONST(1566.507443/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1333 REAL_CONST(1574.901312/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1334 REAL_CONST(1583.306381/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1335 REAL_CONST(1591.722619/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1336 REAL_CONST(1600.149996/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1337 REAL_CONST(1608.588485/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1338 REAL_CONST(1617.038055/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1339 REAL_CONST(1625.498677/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1340 REAL_CONST(1633.970323/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1341 REAL_CONST(1642.452964/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1342 REAL_CONST(1650.946572/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1343 REAL_CONST(1659.451118/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1344 REAL_CONST(1667.966574/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1345 REAL_CONST(1676.492913/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1346 REAL_CONST(1685.030106/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1347 REAL_CONST(1693.578126/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1348 REAL_CONST(1702.136946/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1349 REAL_CONST(1710.706539/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1350 REAL_CONST(1719.286878/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1351 REAL_CONST(1727.877935/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1352 REAL_CONST(1736.479684/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1353 REAL_CONST(1745.092099/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1354 REAL_CONST(1753.715153/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1355 REAL_CONST(1762.348820/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1356 REAL_CONST(1770.993074/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1357 REAL_CONST(1779.647889/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1358 REAL_CONST(1788.313239/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1359 REAL_CONST(1796.989100/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1360 REAL_CONST(1805.675445/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1361 REAL_CONST(1814.372248/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1362 REAL_CONST(1823.079487/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1363 REAL_CONST(1831.797134/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1364 REAL_CONST(1840.525165/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1365 REAL_CONST(1849.263556/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1366 REAL_CONST(1858.012283/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1367 REAL_CONST(1866.771320/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1368 REAL_CONST(1875.540644/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1369 REAL_CONST(1884.320231/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1370 REAL_CONST(1893.110056/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1371 REAL_CONST(1901.910095/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1372 REAL_CONST(1910.720326/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1373 REAL_CONST(1919.540725/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1374 REAL_CONST(1928.371268/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1375 REAL_CONST(1937.211932/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1376 REAL_CONST(1946.062693/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1377 REAL_CONST(1954.923530/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1378 REAL_CONST(1963.794418/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1379 REAL_CONST(1972.675336/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1380 REAL_CONST(1981.566261/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1381 REAL_CONST(1990.467169/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1382 REAL_CONST(1999.378040/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1383 REAL_CONST(2008.298850/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1384 REAL_CONST(2017.229578/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1385 REAL_CONST(2026.170201/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1386 REAL_CONST(2035.120698/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1387 REAL_CONST(2044.081047/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1388 REAL_CONST(2053.051227/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1389 REAL_CONST(2062.031215/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1390 REAL_CONST(2071.020990/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1391 REAL_CONST(2080.020532/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1392 REAL_CONST(2089.029819/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1393 REAL_CONST(2098.048830/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1394 REAL_CONST(2107.077544/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1395 REAL_CONST(2116.115940/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1396 REAL_CONST(2125.163998/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1397 REAL_CONST(2134.221697/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1398 REAL_CONST(2143.289017/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1399 REAL_CONST(2152.365936/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1400 REAL_CONST(2161.452435/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1401 REAL_CONST(2170.548495/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1402 REAL_CONST(2179.654093/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1403 REAL_CONST(2188.769212/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1404 REAL_CONST(2197.893830/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1405 REAL_CONST(2207.027929/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1406 REAL_CONST(2216.171488/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1407 REAL_CONST(2225.324488/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1408 REAL_CONST(2234.486909/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1409 REAL_CONST(2243.658733/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1410 REAL_CONST(2252.839939/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1411 REAL_CONST(2262.030510/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1412 REAL_CONST(2271.230425/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1413 REAL_CONST(2280.439666/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1414 REAL_CONST(2289.658214/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1415 REAL_CONST(2298.886050/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1416 REAL_CONST(2308.123156/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1417 REAL_CONST(2317.369513/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1418 REAL_CONST(2326.625102/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1419 REAL_CONST(2335.889905/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1420 REAL_CONST(2345.163905/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1421 REAL_CONST(2354.447082/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1422 REAL_CONST(2363.739418/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1423 REAL_CONST(2373.040896/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1424 REAL_CONST(2382.351497/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1425 REAL_CONST(2391.671205/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1426 REAL_CONST(2401.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1427 REAL_CONST(2410.337866/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1428 REAL_CONST(2419.684784/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1429 REAL_CONST(2429.040737/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1430 REAL_CONST(2438.405709/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1431 REAL_CONST(2447.779680/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1432 REAL_CONST(2457.162635/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1433 REAL_CONST(2466.554556/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1434 REAL_CONST(2475.955426/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1435 REAL_CONST(2485.365228/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1436 REAL_CONST(2494.783945/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1437 REAL_CONST(2504.211560/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1438 REAL_CONST(2513.648057/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1439 REAL_CONST(2523.093418/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1440 REAL_CONST(2532.547627/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1441 REAL_CONST(2542.010668/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1442 REAL_CONST(2551.482524/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1443 REAL_CONST(2560.963179/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1444 REAL_CONST(2570.452617/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1445 REAL_CONST(2579.950820/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1446 REAL_CONST(2589.457774/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1447 REAL_CONST(2598.973461/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1448 REAL_CONST(2608.497867/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1449 REAL_CONST(2618.030975/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1450 REAL_CONST(2627.572769/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1451 REAL_CONST(2637.123233/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1452 REAL_CONST(2646.682352/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1453 REAL_CONST(2656.250110/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1454 REAL_CONST(2665.826492/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1455 REAL_CONST(2675.411482/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1456 REAL_CONST(2685.005064/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1457 REAL_CONST(2694.607223/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1458 REAL_CONST(2704.217944/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1459 REAL_CONST(2713.837212/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1460 REAL_CONST(2723.465012/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1461 REAL_CONST(2733.101328/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1462 REAL_CONST(2742.746145/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1463 REAL_CONST(2752.399449/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1464 REAL_CONST(2762.061224/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1465 REAL_CONST(2771.731456/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1466 REAL_CONST(2781.410129/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1467 REAL_CONST(2791.097231/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1468 REAL_CONST(2800.792744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1469 REAL_CONST(2810.496656/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1470 REAL_CONST(2820.208951/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1471 REAL_CONST(2829.929616/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1472 REAL_CONST(2839.658635/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1473 REAL_CONST(2849.395994/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1474 REAL_CONST(2859.141679/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1475 REAL_CONST(2868.895677/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1476 REAL_CONST(2878.657972/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1477 REAL_CONST(2888.428550/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1478 REAL_CONST(2898.207399/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1479 REAL_CONST(2907.994503/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1480 REAL_CONST(2917.789849/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1481 REAL_CONST(2927.593423/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1482 REAL_CONST(2937.405211/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1483 REAL_CONST(2947.225199/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1484 REAL_CONST(2957.053374/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1485 REAL_CONST(2966.889722/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1486 REAL_CONST(2976.734230/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1487 REAL_CONST(2986.586884/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1488 REAL_CONST(2996.447670/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1489 REAL_CONST(3006.316576/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1490 REAL_CONST(3016.193588/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1491 REAL_CONST(3026.078692/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1492 REAL_CONST(3035.971875/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1493 REAL_CONST(3045.873125/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1494 REAL_CONST(3055.782428/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1495 REAL_CONST(3065.699771/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1496 REAL_CONST(3075.625140/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1497 REAL_CONST(3085.558524/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1498 REAL_CONST(3095.499909/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1499 REAL_CONST(3105.449282/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1500 REAL_CONST(3115.406631/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1501 REAL_CONST(3125.371943/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1502 REAL_CONST(3135.345204/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1503 REAL_CONST(3145.326403/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1504 REAL_CONST(3155.315526/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1505 REAL_CONST(3165.312562/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1506 REAL_CONST(3175.317497/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1507 REAL_CONST(3185.330320/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1508 REAL_CONST(3195.351017/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1509 REAL_CONST(3205.379577/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1510 REAL_CONST(3215.415987/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1511 REAL_CONST(3225.460235/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1512 REAL_CONST(3235.512308/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1513 REAL_CONST(3245.572195/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1514 REAL_CONST(3255.639884/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1515 REAL_CONST(3265.715361/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1516 REAL_CONST(3275.798616/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1517 REAL_CONST(3285.889637/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1518 REAL_CONST(3295.988410/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1519 REAL_CONST(3306.094926/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1520 REAL_CONST(3316.209171/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1521 REAL_CONST(3326.331133/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1522 REAL_CONST(3336.460802/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1523 REAL_CONST(3346.598165/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1524 REAL_CONST(3356.743211/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1525 REAL_CONST(3366.895929/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1526 REAL_CONST(3377.056305/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1527 REAL_CONST(3387.224330/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1528 REAL_CONST(3397.399991/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1529 REAL_CONST(3407.583277/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1530 REAL_CONST(3417.774177/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1531 REAL_CONST(3427.972680/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1532 REAL_CONST(3438.178773/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1533 REAL_CONST(3448.392446/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1534 REAL_CONST(3458.613687/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1535 REAL_CONST(3468.842486/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1536 REAL_CONST(3479.078831/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1537 REAL_CONST(3489.322711/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1538 REAL_CONST(3499.574115/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1539 REAL_CONST(3509.833032/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1540 REAL_CONST(3520.099451/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1541 REAL_CONST(3530.373360/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1542 REAL_CONST(3540.654750/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1543 REAL_CONST(3550.943610/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1544 REAL_CONST(3561.239927/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1545 REAL_CONST(3571.543692/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1546 REAL_CONST(3581.854894/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1547 REAL_CONST(3592.173523/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1548 REAL_CONST(3602.499566/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1549 REAL_CONST(3612.833015/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1550 REAL_CONST(3623.173857/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1551 REAL_CONST(3633.522084/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1552 REAL_CONST(3643.877683/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1553 REAL_CONST(3654.240646/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1554 REAL_CONST(3664.610960/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1555 REAL_CONST(3674.988617/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1556 REAL_CONST(3685.373604/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1557 REAL_CONST(3695.765913/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1558 REAL_CONST(3706.165533/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1559 REAL_CONST(3716.572453/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1560 REAL_CONST(3726.986664/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1561 REAL_CONST(3737.408154/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1562 REAL_CONST(3747.836915/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1563 REAL_CONST(3758.272936/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1564 REAL_CONST(3768.716206/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1565 REAL_CONST(3779.166716/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1566 REAL_CONST(3789.624455/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1567 REAL_CONST(3800.089415/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1568 REAL_CONST(3810.561584/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1569 REAL_CONST(3821.040953/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1570 REAL_CONST(3831.527512/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1571 REAL_CONST(3842.021251/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1572 REAL_CONST(3852.522160/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1573 REAL_CONST(3863.030230/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1574 REAL_CONST(3873.545451/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1575 REAL_CONST(3884.067812/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1576 REAL_CONST(3894.597305/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1577 REAL_CONST(3905.133920/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1578 REAL_CONST(3915.677647/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1579 REAL_CONST(3926.228477/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1580 REAL_CONST(3936.786399/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1581 REAL_CONST(3947.351405/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1582 REAL_CONST(3957.923485/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1583 REAL_CONST(3968.502630/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1584 REAL_CONST(3979.088830/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1585 REAL_CONST(3989.682075/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1586 REAL_CONST(4000.282357/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1587 REAL_CONST(4010.889666/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1588 REAL_CONST(4021.503992/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1589 REAL_CONST(4032.125327/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1590 REAL_CONST(4042.753661/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1591 REAL_CONST(4053.388986/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1592 REAL_CONST(4064.031291/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1593 REAL_CONST(4074.680568/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1594 REAL_CONST(4085.336807/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1595 REAL_CONST(4096.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1596 REAL_CONST(4106.670137/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1597 REAL_CONST(4117.347210/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1598 REAL_CONST(4128.031209/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1599 REAL_CONST(4138.722126/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1600 REAL_CONST(4149.419951/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1601 REAL_CONST(4160.124676/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1602 REAL_CONST(4170.836292/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1603 REAL_CONST(4181.554789/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1604 REAL_CONST(4192.280159/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1605 REAL_CONST(4203.012394/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1606 REAL_CONST(4213.751484/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1607 REAL_CONST(4224.497421/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1608 REAL_CONST(4235.250196/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1609 REAL_CONST(4246.009800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1610 REAL_CONST(4256.776225/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1611 REAL_CONST(4267.549462/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1612 REAL_CONST(4278.329502/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1613 REAL_CONST(4289.116337/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1614 REAL_CONST(4299.909959/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1615 REAL_CONST(4310.710358/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1616 REAL_CONST(4321.517527/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1617 REAL_CONST(4332.331456/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1618 REAL_CONST(4343.152138/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1619 REAL_CONST(4353.979564/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1620 REAL_CONST(4364.813725/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1621 REAL_CONST(4375.654614/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1622 REAL_CONST(4386.502221/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1623 REAL_CONST(4397.356539/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1624 REAL_CONST(4408.217559/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1625 REAL_CONST(4419.085273/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1626 REAL_CONST(4429.959673/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1627 REAL_CONST(4440.840751/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1628 REAL_CONST(4451.728498/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1629 REAL_CONST(4462.622906/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1630 REAL_CONST(4473.523967/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1631 REAL_CONST(4484.431673/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1632 REAL_CONST(4495.346016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1633 REAL_CONST(4506.266988/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1634 REAL_CONST(4517.194581/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1635 REAL_CONST(4528.128786/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1636 REAL_CONST(4539.069597/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1637 REAL_CONST(4550.017004/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1638 REAL_CONST(4560.971000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1639 REAL_CONST(4571.931576/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1640 REAL_CONST(4582.898726/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1641 REAL_CONST(4593.872441/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1642 REAL_CONST(4604.852714/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1643 REAL_CONST(4615.839536/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1644 REAL_CONST(4626.832899/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1645 REAL_CONST(4637.832797/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1646 REAL_CONST(4648.839221/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1647 REAL_CONST(4659.852163/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1648 REAL_CONST(4670.871616/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1649 REAL_CONST(4681.897572/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1650 REAL_CONST(4692.930024/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1651 REAL_CONST(4703.968963/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1652 REAL_CONST(4715.014383/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1653 REAL_CONST(4726.066275/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1654 REAL_CONST(4737.124632/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1655 REAL_CONST(4748.189446/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1656 REAL_CONST(4759.260711/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1657 REAL_CONST(4770.338417/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1658 REAL_CONST(4781.422559/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1659 REAL_CONST(4792.513128/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1660 REAL_CONST(4803.610117/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1661 REAL_CONST(4814.713519/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1662 REAL_CONST(4825.823326/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1663 REAL_CONST(4836.939531/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1664 REAL_CONST(4848.062126/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1665 REAL_CONST(4859.191105/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1666 REAL_CONST(4870.326459/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1667 REAL_CONST(4881.468181/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1668 REAL_CONST(4892.616265/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1669 REAL_CONST(4903.770703/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1670 REAL_CONST(4914.931488/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1671 REAL_CONST(4926.098612/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1672 REAL_CONST(4937.272069/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1673 REAL_CONST(4948.451851/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1674 REAL_CONST(4959.637951/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1675 REAL_CONST(4970.830361/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1676 REAL_CONST(4982.029076/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1677 REAL_CONST(4993.234087/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1678 REAL_CONST(5004.445388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1679 REAL_CONST(5015.662972/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1680 REAL_CONST(5026.886831/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1681 REAL_CONST(5038.116959/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1682 REAL_CONST(5049.353348/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1683 REAL_CONST(5060.595992/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1684 REAL_CONST(5071.844883/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1685 REAL_CONST(5083.100016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1686 REAL_CONST(5094.361382/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1687 REAL_CONST(5105.628975/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1688 REAL_CONST(5116.902788/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1689 REAL_CONST(5128.182814/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1690 REAL_CONST(5139.469046/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1691 REAL_CONST(5150.761478/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1692 REAL_CONST(5162.060103/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1693 REAL_CONST(5173.364914/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1694 REAL_CONST(5184.675904/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1695 REAL_CONST(5195.993066/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1696 REAL_CONST(5207.316394/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1697 REAL_CONST(5218.645881/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1698 REAL_CONST(5229.981521/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1699 REAL_CONST(5241.323306/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1700 REAL_CONST(5252.671230/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1701 REAL_CONST(5264.025286/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1702 REAL_CONST(5275.385468/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1703 REAL_CONST(5286.751770/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1704 REAL_CONST(5298.124183/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1705 REAL_CONST(5309.502703/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1706 REAL_CONST(5320.887323/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1707 REAL_CONST(5332.278035/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1708 REAL_CONST(5343.674833/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1709 REAL_CONST(5355.077712/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1710 REAL_CONST(5366.486664/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1711 REAL_CONST(5377.901683/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1712 REAL_CONST(5389.322762/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1713 REAL_CONST(5400.749896/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1714 REAL_CONST(5412.183077/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1715 REAL_CONST(5423.622300/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1716 REAL_CONST(5435.067557/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1717 REAL_CONST(5446.518843/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1718 REAL_CONST(5457.976152/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1719 REAL_CONST(5469.439476/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1720 REAL_CONST(5480.908810/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1721 REAL_CONST(5492.384147/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1722 REAL_CONST(5503.865481/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1723 REAL_CONST(5515.352806/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1724 REAL_CONST(5526.846116/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1725 REAL_CONST(5538.345404/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1726 REAL_CONST(5549.850664/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1727 REAL_CONST(5561.361890/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1728 REAL_CONST(5572.879076/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1729 REAL_CONST(5584.402215/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1730 REAL_CONST(5595.931301/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1731 REAL_CONST(5607.466329/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1732 REAL_CONST(5619.007292/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1733 REAL_CONST(5630.554185/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1734 REAL_CONST(5642.107000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1735 REAL_CONST(5653.665732/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1736 REAL_CONST(5665.230375/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1737 REAL_CONST(5676.800923/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1738 REAL_CONST(5688.377370/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1739 REAL_CONST(5699.959709/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1740 REAL_CONST(5711.547936/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1741 REAL_CONST(5723.142043/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1742 REAL_CONST(5734.742025/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1743 REAL_CONST(5746.347876/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1744 REAL_CONST(5757.959590/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1745 REAL_CONST(5769.577162/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1746 REAL_CONST(5781.200584/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1747 REAL_CONST(5792.829852/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1748 REAL_CONST(5804.464959/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1749 REAL_CONST(5816.105900/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1750 REAL_CONST(5827.752668/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1751 REAL_CONST(5839.405259/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1752 REAL_CONST(5851.063665/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1753 REAL_CONST(5862.727882/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1754 REAL_CONST(5874.397904/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1755 REAL_CONST(5886.073724/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1756 REAL_CONST(5897.755337/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1757 REAL_CONST(5909.442738/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1758 REAL_CONST(5921.135920/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1759 REAL_CONST(5932.834878/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1760 REAL_CONST(5944.539606/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1761 REAL_CONST(5956.250098/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1762 REAL_CONST(5967.966350/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1763 REAL_CONST(5979.688354/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1764 REAL_CONST(5991.416106/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1765 REAL_CONST(6003.149600/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1766 REAL_CONST(6014.888830/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1767 REAL_CONST(6026.633791/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1768 REAL_CONST(6038.384476/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1769 REAL_CONST(6050.140882/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1770 REAL_CONST(6061.903001/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1771 REAL_CONST(6073.670828/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1772 REAL_CONST(6085.444359/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1773 REAL_CONST(6097.223586/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1774 REAL_CONST(6109.008506/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1775 REAL_CONST(6120.799112/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1776 REAL_CONST(6132.595399/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1777 REAL_CONST(6144.397361/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1778 REAL_CONST(6156.204993/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1779 REAL_CONST(6168.018289/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1780 REAL_CONST(6179.837245/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1781 REAL_CONST(6191.661854/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1782 REAL_CONST(6203.492112/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1783 REAL_CONST(6215.328012/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1784 REAL_CONST(6227.169550/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1785 REAL_CONST(6239.016720/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1786 REAL_CONST(6250.869517/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1787 REAL_CONST(6262.727935/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1788 REAL_CONST(6274.591969/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1789 REAL_CONST(6286.461614/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1790 REAL_CONST(6298.336865/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1791 REAL_CONST(6310.217716/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1792 REAL_CONST(6322.104162/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1793 REAL_CONST(6333.996197/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1794 REAL_CONST(6345.893817/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1795 REAL_CONST(6357.797016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1796 REAL_CONST(6369.705789/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1797 REAL_CONST(6381.620131/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1798 REAL_CONST(6393.540036/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1799 REAL_CONST(6405.465500/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1800 REAL_CONST(6417.396517/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1801 REAL_CONST(6429.333082/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1802 REAL_CONST(6441.275190/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1803 REAL_CONST(6453.222835/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1804 REAL_CONST(6465.176013/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1805 REAL_CONST(6477.134719/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1806 REAL_CONST(6489.098947/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1807 REAL_CONST(6501.068692/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1808 REAL_CONST(6513.043949/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1809 REAL_CONST(6525.024714/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1810 REAL_CONST(6537.010981/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1811 REAL_CONST(6549.002744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1812 REAL_CONST(6561.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1813 REAL_CONST(6573.002743/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1814 REAL_CONST(6585.010967/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1815 REAL_CONST(6597.024669/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1816 REAL_CONST(6609.043842/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1817 REAL_CONST(6621.068483/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1818 REAL_CONST(6633.098585/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1819 REAL_CONST(6645.134145/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1820 REAL_CONST(6657.175157/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1821 REAL_CONST(6669.221616/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1822 REAL_CONST(6681.273517/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1823 REAL_CONST(6693.330855/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1824 REAL_CONST(6705.393626/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1825 REAL_CONST(6717.461825/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1826 REAL_CONST(6729.535446/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1827 REAL_CONST(6741.614485/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1828 REAL_CONST(6753.698937/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1829 REAL_CONST(6765.788798/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1830 REAL_CONST(6777.884061/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1831 REAL_CONST(6789.984723/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1832 REAL_CONST(6802.090779/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1833 REAL_CONST(6814.202223/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1834 REAL_CONST(6826.319052/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1835 REAL_CONST(6838.441259/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1836 REAL_CONST(6850.568842/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1837 REAL_CONST(6862.701794/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1838 REAL_CONST(6874.840111/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1839 REAL_CONST(6886.983788/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1840 REAL_CONST(6899.132821/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1841 REAL_CONST(6911.287205/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1842 REAL_CONST(6923.446935/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1843 REAL_CONST(6935.612006/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1844 REAL_CONST(6947.782414/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1845 REAL_CONST(6959.958154/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1846 REAL_CONST(6972.139221/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1847 REAL_CONST(6984.325611/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1848 REAL_CONST(6996.517319/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1849 REAL_CONST(7008.714341/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1850 REAL_CONST(7020.916672/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1851 REAL_CONST(7033.124306/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1852 REAL_CONST(7045.337241/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1853 REAL_CONST(7057.555470/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1854 REAL_CONST(7069.778990/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1855 REAL_CONST(7082.007795/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1856 REAL_CONST(7094.241882/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1857 REAL_CONST(7106.481246/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1858 REAL_CONST(7118.725881/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1859 REAL_CONST(7130.975785/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1860 REAL_CONST(7143.230951/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1861 REAL_CONST(7155.491376/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1862 REAL_CONST(7167.757056/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1863 REAL_CONST(7180.027984/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1864 REAL_CONST(7192.304158/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1865 REAL_CONST(7204.585573/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1866 REAL_CONST(7216.872224/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1867 REAL_CONST(7229.164106/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1868 REAL_CONST(7241.461216/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1869 REAL_CONST(7253.763548/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1870 REAL_CONST(7266.071099/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1871 REAL_CONST(7278.383864/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1872 REAL_CONST(7290.701838/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1873 REAL_CONST(7303.025018/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1874 REAL_CONST(7315.353398/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1875 REAL_CONST(7327.686975/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1876 REAL_CONST(7340.025743/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1877 REAL_CONST(7352.369699/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1878 REAL_CONST(7364.718839/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1879 REAL_CONST(7377.073157/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1880 REAL_CONST(7389.432650/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1881 REAL_CONST(7401.797314/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1882 REAL_CONST(7414.167143/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1883 REAL_CONST(7426.542134/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1884 REAL_CONST(7438.922282/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1885 REAL_CONST(7451.307583/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1886 REAL_CONST(7463.698033/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1887 REAL_CONST(7476.093627/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1888 REAL_CONST(7488.494362/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1889 REAL_CONST(7500.900233/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1890 REAL_CONST(7513.311235/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1891 REAL_CONST(7525.727365/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1892 REAL_CONST(7538.148618/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1893 REAL_CONST(7550.574989/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1894 REAL_CONST(7563.006476/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1895 REAL_CONST(7575.443073/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1896 REAL_CONST(7587.884777/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1897 REAL_CONST(7600.331583/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1898 REAL_CONST(7612.783487/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1899 REAL_CONST(7625.240485/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1900 REAL_CONST(7637.702572/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1901 REAL_CONST(7650.169745/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1902 REAL_CONST(7662.641999/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1903 REAL_CONST(7675.119331/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1904 REAL_CONST(7687.601736/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1905 REAL_CONST(7700.089209/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1906 REAL_CONST(7712.581748/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1907 REAL_CONST(7725.079347/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1908 REAL_CONST(7737.582003/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1909 REAL_CONST(7750.089712/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1910 REAL_CONST(7762.602469/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1911 REAL_CONST(7775.120271/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1912 REAL_CONST(7787.643113/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1913 REAL_CONST(7800.170991/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1914 REAL_CONST(7812.703902/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1915 REAL_CONST(7825.241841/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1916 REAL_CONST(7837.784804/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1917 REAL_CONST(7850.332787/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1918 REAL_CONST(7862.885787/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1919 REAL_CONST(7875.443798/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1920 REAL_CONST(7888.006818/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1921 REAL_CONST(7900.574842/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1922 REAL_CONST(7913.147866/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1923 REAL_CONST(7925.725887/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1924 REAL_CONST(7938.308900/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1925 REAL_CONST(7950.896901/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1926 REAL_CONST(7963.489886/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1927 REAL_CONST(7976.087852/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1928 REAL_CONST(7988.690794/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1929 REAL_CONST(8001.298709/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1930 REAL_CONST(8013.911593/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1931 REAL_CONST(8026.529441/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1932 REAL_CONST(8039.152250/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1933 REAL_CONST(8051.780016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1934 REAL_CONST(8064.412735/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1935 REAL_CONST(8077.050403/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1936 REAL_CONST(8089.693017/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1937 REAL_CONST(8102.340572/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1938 REAL_CONST(8114.993064/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1939 REAL_CONST(8127.650490/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1940 REAL_CONST(8140.312846/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1941 REAL_CONST(8152.980128/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1942 REAL_CONST(8165.652333/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1943 REAL_CONST(8178.329455/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1944 REAL_CONST(8191.011492/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1945 REAL_CONST(8203.698440/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1946 REAL_CONST(8216.390295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1947 REAL_CONST(8229.087053/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1948 REAL_CONST(8241.788711/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1949 REAL_CONST(8254.495264/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1950 REAL_CONST(8267.206709/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1951 REAL_CONST(8279.923042/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1952 REAL_CONST(8292.644259/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1953 REAL_CONST(8305.370357/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1954 REAL_CONST(8318.101332/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1955 REAL_CONST(8330.837180/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1956 REAL_CONST(8343.577897/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1957 REAL_CONST(8356.323480/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1958 REAL_CONST(8369.073925/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1959 REAL_CONST(8381.829228/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1960 REAL_CONST(8394.589385/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1961 REAL_CONST(8407.354394/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1962 REAL_CONST(8420.124249/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1963 REAL_CONST(8432.898948/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1964 REAL_CONST(8445.678487/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1965 REAL_CONST(8458.462862/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1966 REAL_CONST(8471.252070/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1967 REAL_CONST(8484.046106/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1968 REAL_CONST(8496.844968/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1969 REAL_CONST(8509.648651/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1970 REAL_CONST(8522.457152/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1971 REAL_CONST(8535.270468/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1972 REAL_CONST(8548.088594/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1973 REAL_CONST(8560.911527/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1974 REAL_CONST(8573.739264/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1975 REAL_CONST(8586.571801/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1976 REAL_CONST(8599.409134/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1977 REAL_CONST(8612.251259/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1978 REAL_CONST(8625.098174/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1979 REAL_CONST(8637.949875/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1980 REAL_CONST(8650.806357/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1981 REAL_CONST(8663.667618/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1982 REAL_CONST(8676.533654/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1983 REAL_CONST(8689.404461/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1984 REAL_CONST(8702.280037/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1985 REAL_CONST(8715.160376/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1986 REAL_CONST(8728.045476/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1987 REAL_CONST(8740.935334/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1988 REAL_CONST(8753.829945/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1989 REAL_CONST(8766.729307/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1990 REAL_CONST(8779.633415/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1991 REAL_CONST(8792.542267/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1992 REAL_CONST(8805.455858/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1993 REAL_CONST(8818.374186/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1994 REAL_CONST(8831.297247/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1995 REAL_CONST(8844.225037/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1996 REAL_CONST(8857.157553/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1997 REAL_CONST(8870.094791/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1998 REAL_CONST(8883.036748/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
1999 REAL_CONST(8895.983422/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2000 REAL_CONST(8908.934807/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2001 REAL_CONST(8921.890901/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2002 REAL_CONST(8934.851700/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2003 REAL_CONST(8947.817201/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2004 REAL_CONST(8960.787401/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2005 REAL_CONST(8973.762296/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2006 REAL_CONST(8986.741882/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2007 REAL_CONST(8999.726157/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2008 REAL_CONST(9012.715117/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2009 REAL_CONST(9025.708758/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2010 REAL_CONST(9038.707077/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2011 REAL_CONST(9051.710072/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2012 REAL_CONST(9064.717737/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2013 REAL_CONST(9077.730071/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2014 REAL_CONST(9090.747070/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2015 REAL_CONST(9103.768730/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2016 REAL_CONST(9116.795048/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2017 REAL_CONST(9129.826021/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2018 REAL_CONST(9142.861645/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2019 REAL_CONST(9155.901917/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2020 REAL_CONST(9168.946835/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2021 REAL_CONST(9181.996393/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2022 REAL_CONST(9195.050590/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2023 REAL_CONST(9208.109422/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2024 REAL_CONST(9221.172885/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2025 REAL_CONST(9234.240977/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2026 REAL_CONST(9247.313694/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2027 REAL_CONST(9260.391032/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2028 REAL_CONST(9273.472989/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2029 REAL_CONST(9286.559562/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2030 REAL_CONST(9299.650746/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2031 REAL_CONST(9312.746539/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2032 REAL_CONST(9325.846938/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2033 REAL_CONST(9338.951939/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2034 REAL_CONST(9352.061539/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2035 REAL_CONST(9365.175734/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2036 REAL_CONST(9378.294523/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2037 REAL_CONST(9391.417901/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2038 REAL_CONST(9404.545865/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2039 REAL_CONST(9417.678412/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2040 REAL_CONST(9430.815538/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2041 REAL_CONST(9443.957242/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2042 REAL_CONST(9457.103518/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2043 REAL_CONST(9470.254365/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2044 REAL_CONST(9483.409779/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2045 REAL_CONST(9496.569757/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2046 REAL_CONST(9509.734296/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2047 REAL_CONST(9522.903392/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2048 REAL_CONST(9536.077043/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2049 REAL_CONST(9549.255245/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2050 REAL_CONST(9562.437995/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2051 REAL_CONST(9575.625290/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2052 REAL_CONST(9588.817127/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2053 REAL_CONST(9602.013503/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2054 REAL_CONST(9615.214414/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2055 REAL_CONST(9628.419858/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2056 REAL_CONST(9641.629831/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2057 REAL_CONST(9654.844330/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2058 REAL_CONST(9668.063353/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2059 REAL_CONST(9681.286896/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2060 REAL_CONST(9694.514956/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2061 REAL_CONST(9707.747529/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2062 REAL_CONST(9720.984614/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2063 REAL_CONST(9734.226206/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2064 REAL_CONST(9747.472303/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2065 REAL_CONST(9760.722902/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2066 REAL_CONST(9773.977999/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2067 REAL_CONST(9787.237592/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2068 REAL_CONST(9800.501677/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2069 REAL_CONST(9813.770252/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2070 REAL_CONST(9827.043313/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2071 REAL_CONST(9840.320858/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2072 REAL_CONST(9853.602883/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2073 REAL_CONST(9866.889385/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2074 REAL_CONST(9880.180361/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2075 REAL_CONST(9893.475809/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2076 REAL_CONST(9906.775725/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2077 REAL_CONST(9920.080107/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2078 REAL_CONST(9933.388951/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2079 REAL_CONST(9946.702254/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2080 REAL_CONST(9960.020013/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2081 REAL_CONST(9973.342226/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2082 REAL_CONST(9986.668889/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2083 REAL_CONST(10000.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2084 REAL_CONST(10013.335555/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2085 REAL_CONST(10026.675552/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2086 REAL_CONST(10040.019987/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2087 REAL_CONST(10053.368857/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2088 REAL_CONST(10066.722161/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2089 REAL_CONST(10080.079894/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2090 REAL_CONST(10093.442053/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2091 REAL_CONST(10106.808637/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2092 REAL_CONST(10120.179641/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2093 REAL_CONST(10133.555064/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2094 REAL_CONST(10146.934901/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2095 REAL_CONST(10160.319151/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2096 REAL_CONST(10173.707810/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2097 REAL_CONST(10187.100875/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2098 REAL_CONST(10200.498344/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2099 REAL_CONST(10213.900213/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2100 REAL_CONST(10227.306480/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2101 REAL_CONST(10240.717141/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2102 REAL_CONST(10254.132195/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2103 REAL_CONST(10267.551638/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2104 REAL_CONST(10280.975466/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2105 REAL_CONST(10294.403678/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2106 REAL_CONST(10307.836271/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2107 REAL_CONST(10321.273241/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2108 REAL_CONST(10334.714585/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2109 REAL_CONST(10348.160302/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2110 REAL_CONST(10361.610388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2111 REAL_CONST(10375.064840/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2112 REAL_CONST(10388.523655/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2113 REAL_CONST(10401.986831/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2114 REAL_CONST(10415.454364/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2115 REAL_CONST(10428.926253/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2116 REAL_CONST(10442.402493/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2117 REAL_CONST(10455.883083/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2118 REAL_CONST(10469.368019/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2119 REAL_CONST(10482.857299/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2120 REAL_CONST(10496.350920/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2121 REAL_CONST(10509.848879/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2122 REAL_CONST(10523.351173/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2123 REAL_CONST(10536.857800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2124 REAL_CONST(10550.368756/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2125 REAL_CONST(10563.884040/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2126 REAL_CONST(10577.403647/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2127 REAL_CONST(10590.927576/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2128 REAL_CONST(10604.455824/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2129 REAL_CONST(10617.988388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2130 REAL_CONST(10631.525265/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2131 REAL_CONST(10645.066452/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2132 REAL_CONST(10658.611947/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2133 REAL_CONST(10672.161747/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2134 REAL_CONST(10685.715849/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2135 REAL_CONST(10699.274250/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2136 REAL_CONST(10712.836948/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2137 REAL_CONST(10726.403941/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2138 REAL_CONST(10739.975224/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2139 REAL_CONST(10753.550797/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2140 REAL_CONST(10767.130655/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2141 REAL_CONST(10780.714796/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2142 REAL_CONST(10794.303218/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2143 REAL_CONST(10807.895918/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2144 REAL_CONST(10821.492892/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2145 REAL_CONST(10835.094140/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2146 REAL_CONST(10848.699656/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2147 REAL_CONST(10862.309440/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2148 REAL_CONST(10875.923489/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2149 REAL_CONST(10889.541799/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2150 REAL_CONST(10903.164368/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2151 REAL_CONST(10916.791193/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2152 REAL_CONST(10930.422273/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2153 REAL_CONST(10944.057603/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2154 REAL_CONST(10957.697182/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2155 REAL_CONST(10971.341006/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2156 REAL_CONST(10984.989074/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2157 REAL_CONST(10998.641382/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2158 REAL_CONST(11012.297928/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2159 REAL_CONST(11025.958709/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2160 REAL_CONST(11039.623723/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2161 REAL_CONST(11053.292967/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2162 REAL_CONST(11066.966438/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2163 REAL_CONST(11080.644134/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2164 REAL_CONST(11094.326053/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2165 REAL_CONST(11108.012190/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2166 REAL_CONST(11121.702545/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2167 REAL_CONST(11135.397114/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2168 REAL_CONST(11149.095895/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2169 REAL_CONST(11162.798885/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2170 REAL_CONST(11176.506082/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2171 REAL_CONST(11190.217483/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2172 REAL_CONST(11203.933085/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2173 REAL_CONST(11217.652886/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2174 REAL_CONST(11231.376883/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2175 REAL_CONST(11245.105074/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2176 REAL_CONST(11258.837456/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2177 REAL_CONST(11272.574027/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2178 REAL_CONST(11286.314784/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2179 REAL_CONST(11300.059724/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2180 REAL_CONST(11313.808846/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2181 REAL_CONST(11327.562145/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2182 REAL_CONST(11341.319621/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2183 REAL_CONST(11355.081270/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2184 REAL_CONST(11368.847090/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2185 REAL_CONST(11382.617078/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2186 REAL_CONST(11396.391232/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2187 REAL_CONST(11410.169549/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2188 REAL_CONST(11423.952027/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2189 REAL_CONST(11437.738663/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2190 REAL_CONST(11451.529455/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2191 REAL_CONST(11465.324400/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2192 REAL_CONST(11479.123496/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2193 REAL_CONST(11492.926740/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2194 REAL_CONST(11506.734130/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2195 REAL_CONST(11520.545663/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2196 REAL_CONST(11534.361337/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2197 REAL_CONST(11548.181150/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2198 REAL_CONST(11562.005097/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2199 REAL_CONST(11575.833179/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2200 REAL_CONST(11589.665391/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2201 REAL_CONST(11603.501732/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2202 REAL_CONST(11617.342198/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2203 REAL_CONST(11631.186788/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2204 REAL_CONST(11645.035499/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2205 REAL_CONST(11658.888329/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2206 REAL_CONST(11672.745275/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2207 REAL_CONST(11686.606334/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2208 REAL_CONST(11700.471505/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2209 REAL_CONST(11714.340784/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2210 REAL_CONST(11728.214170/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2211 REAL_CONST(11742.091660/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2212 REAL_CONST(11755.973251/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2213 REAL_CONST(11769.858942/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2214 REAL_CONST(11783.748729/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2215 REAL_CONST(11797.642610/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2216 REAL_CONST(11811.540583/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2217 REAL_CONST(11825.442646/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2218 REAL_CONST(11839.348796/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2219 REAL_CONST(11853.259030/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2220 REAL_CONST(11867.173347/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2221 REAL_CONST(11881.091743/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2222 REAL_CONST(11895.014217/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2223 REAL_CONST(11908.940766/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2224 REAL_CONST(11922.871387/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2225 REAL_CONST(11936.806079/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2226 REAL_CONST(11950.744839/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2227 REAL_CONST(11964.687665/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2228 REAL_CONST(11978.634553/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2229 REAL_CONST(11992.585503/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2230 REAL_CONST(12006.540511/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2231 REAL_CONST(12020.499575/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2232 REAL_CONST(12034.462692/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2233 REAL_CONST(12048.429861/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2234 REAL_CONST(12062.401080/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2235 REAL_CONST(12076.376345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2236 REAL_CONST(12090.355654/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2237 REAL_CONST(12104.339005/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2238 REAL_CONST(12118.326396/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2239 REAL_CONST(12132.317824/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2240 REAL_CONST(12146.313287/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2241 REAL_CONST(12160.312783/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2242 REAL_CONST(12174.316310/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2243 REAL_CONST(12188.323864/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2244 REAL_CONST(12202.335444/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2245 REAL_CONST(12216.351048/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2246 REAL_CONST(12230.370673/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2247 REAL_CONST(12244.394316/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2248 REAL_CONST(12258.421976/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2249 REAL_CONST(12272.453650/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2250 REAL_CONST(12286.489336/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2251 REAL_CONST(12300.529032/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2252 REAL_CONST(12314.572735/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2253 REAL_CONST(12328.620443/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2254 REAL_CONST(12342.672154/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2255 REAL_CONST(12356.727866/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2256 REAL_CONST(12370.787575/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2257 REAL_CONST(12384.851281/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2258 REAL_CONST(12398.918980/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2259 REAL_CONST(12412.990671/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2260 REAL_CONST(12427.066351/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2261 REAL_CONST(12441.146017/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2262 REAL_CONST(12455.229668/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2263 REAL_CONST(12469.317302/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2264 REAL_CONST(12483.408916/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2265 REAL_CONST(12497.504507/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2266 REAL_CONST(12511.604075/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2267 REAL_CONST(12525.707615/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2268 REAL_CONST(12539.815127/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2269 REAL_CONST(12553.926608/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2270 REAL_CONST(12568.042055/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2271 REAL_CONST(12582.161467/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2272 REAL_CONST(12596.284841/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2273 REAL_CONST(12610.412175/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2274 REAL_CONST(12624.543467/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2275 REAL_CONST(12638.678715/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2276 REAL_CONST(12652.817915/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2277 REAL_CONST(12666.961067/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2278 REAL_CONST(12681.108168/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2279 REAL_CONST(12695.259216/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2280 REAL_CONST(12709.414208/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2281 REAL_CONST(12723.573143/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2282 REAL_CONST(12737.736018/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2283 REAL_CONST(12751.902830/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2284 REAL_CONST(12766.073579/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2285 REAL_CONST(12780.248261/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2286 REAL_CONST(12794.426874/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2287 REAL_CONST(12808.609417/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2288 REAL_CONST(12822.795886/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2289 REAL_CONST(12836.986281/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2290 REAL_CONST(12851.180598/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2291 REAL_CONST(12865.378836/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2292 REAL_CONST(12879.580992/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2293 REAL_CONST(12893.787065/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2294 REAL_CONST(12907.997051/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2295 REAL_CONST(12922.210950/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2296 REAL_CONST(12936.428758/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2297 REAL_CONST(12950.650474/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2298 REAL_CONST(12964.876095/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2299 REAL_CONST(12979.105619/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2300 REAL_CONST(12993.339045/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2301 REAL_CONST(13007.576370/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2302 REAL_CONST(13021.817591/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2303 REAL_CONST(13036.062708/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2304 REAL_CONST(13050.311717/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2305 REAL_CONST(13064.564616/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2306 REAL_CONST(13078.821404/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2307 REAL_CONST(13093.082079/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2308 REAL_CONST(13107.346637/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2309 REAL_CONST(13121.615077/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2310 REAL_CONST(13135.887398/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2311 REAL_CONST(13150.163596/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2312 REAL_CONST(13164.443670/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2313 REAL_CONST(13178.727617/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2314 REAL_CONST(13193.015436/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2315 REAL_CONST(13207.307125/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2316 REAL_CONST(13221.602680/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2317 REAL_CONST(13235.902101/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2318 REAL_CONST(13250.205385/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2319 REAL_CONST(13264.512531/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2320 REAL_CONST(13278.823535/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2321 REAL_CONST(13293.138396/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2322 REAL_CONST(13307.457112/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2323 REAL_CONST(13321.779680/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2324 REAL_CONST(13336.106100/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2325 REAL_CONST(13350.436367/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2326 REAL_CONST(13364.770482/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2327 REAL_CONST(13379.108441/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2328 REAL_CONST(13393.450242/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2329 REAL_CONST(13407.795884/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2330 REAL_CONST(13422.145364/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2331 REAL_CONST(13436.498680/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2332 REAL_CONST(13450.855830/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2333 REAL_CONST(13465.216813/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2334 REAL_CONST(13479.581625/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2335 REAL_CONST(13493.950266/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2336 REAL_CONST(13508.322733/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2337 REAL_CONST(13522.699024/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2338 REAL_CONST(13537.079136/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2339 REAL_CONST(13551.463069/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2340 REAL_CONST(13565.850819/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2341 REAL_CONST(13580.242386/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2342 REAL_CONST(13594.637766/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2343 REAL_CONST(13609.036958/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2344 REAL_CONST(13623.439960/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2345 REAL_CONST(13637.846770/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2346 REAL_CONST(13652.257385/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2347 REAL_CONST(13666.671804/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2348 REAL_CONST(13681.090025/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2349 REAL_CONST(13695.512046/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2350 REAL_CONST(13709.937865/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2351 REAL_CONST(13724.367479/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2352 REAL_CONST(13738.800887/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2353 REAL_CONST(13753.238087/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2354 REAL_CONST(13767.679077/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2355 REAL_CONST(13782.123854/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2356 REAL_CONST(13796.572417/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2357 REAL_CONST(13811.024765/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2358 REAL_CONST(13825.480893/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2359 REAL_CONST(13839.940802/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2360 REAL_CONST(13854.404489/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2361 REAL_CONST(13868.871952/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2362 REAL_CONST(13883.343188/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2363 REAL_CONST(13897.818197/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2364 REAL_CONST(13912.296976/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2365 REAL_CONST(13926.779522/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2366 REAL_CONST(13941.265835/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2367 REAL_CONST(13955.755912/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2368 REAL_CONST(13970.249751/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2369 REAL_CONST(13984.747351/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2370 REAL_CONST(13999.248708/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2371 REAL_CONST(14013.753822/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2372 REAL_CONST(14028.262691/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2373 REAL_CONST(14042.775312/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2374 REAL_CONST(14057.291683/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2375 REAL_CONST(14071.811803/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2376 REAL_CONST(14086.335669/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2377 REAL_CONST(14100.863281/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2378 REAL_CONST(14115.394635/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2379 REAL_CONST(14129.929730/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2380 REAL_CONST(14144.468564/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2381 REAL_CONST(14159.011135/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2382 REAL_CONST(14173.557441/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2383 REAL_CONST(14188.107480/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2384 REAL_CONST(14202.661250/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2385 REAL_CONST(14217.218750/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2386 REAL_CONST(14231.779977/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2387 REAL_CONST(14246.344930/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2388 REAL_CONST(14260.913606/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2389 REAL_CONST(14275.486004/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2390 REAL_CONST(14290.062122/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2391 REAL_CONST(14304.641958/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2392 REAL_CONST(14319.225510/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2393 REAL_CONST(14333.812776/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2394 REAL_CONST(14348.403754/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2395 REAL_CONST(14362.998443/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2396 REAL_CONST(14377.596840/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2397 REAL_CONST(14392.198943/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2398 REAL_CONST(14406.804752/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2399 REAL_CONST(14421.414263/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2400 REAL_CONST(14436.027475/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2401 REAL_CONST(14450.644386/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2402 REAL_CONST(14465.264995/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2403 REAL_CONST(14479.889298/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2404 REAL_CONST(14494.517296/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2405 REAL_CONST(14509.148984/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2406 REAL_CONST(14523.784363/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2407 REAL_CONST(14538.423430/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2408 REAL_CONST(14553.066182/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2409 REAL_CONST(14567.712619/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2410 REAL_CONST(14582.362738/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2411 REAL_CONST(14597.016537/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2412 REAL_CONST(14611.674015/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2413 REAL_CONST(14626.335170/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2414 REAL_CONST(14641.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2415 REAL_CONST(14655.668503/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2416 REAL_CONST(14670.340677/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2417 REAL_CONST(14685.016521/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2418 REAL_CONST(14699.696032/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2419 REAL_CONST(14714.379209/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2420 REAL_CONST(14729.066050/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2421 REAL_CONST(14743.756553/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2422 REAL_CONST(14758.450716/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2423 REAL_CONST(14773.148537/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2424 REAL_CONST(14787.850016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2425 REAL_CONST(14802.555149/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2426 REAL_CONST(14817.263935/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2427 REAL_CONST(14831.976372/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2428 REAL_CONST(14846.692459/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2429 REAL_CONST(14861.412193/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2430 REAL_CONST(14876.135573/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2431 REAL_CONST(14890.862597/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2432 REAL_CONST(14905.593263/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2433 REAL_CONST(14920.327569/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2434 REAL_CONST(14935.065514/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2435 REAL_CONST(14949.807096/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2436 REAL_CONST(14964.552313/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2437 REAL_CONST(14979.301163/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2438 REAL_CONST(14994.053644/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2439 REAL_CONST(15008.809755/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2440 REAL_CONST(15023.569493/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2441 REAL_CONST(15038.332858/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2442 REAL_CONST(15053.099847/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2443 REAL_CONST(15067.870458/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2444 REAL_CONST(15082.644690/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2445 REAL_CONST(15097.422541/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2446 REAL_CONST(15112.204010/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2447 REAL_CONST(15126.989093/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2448 REAL_CONST(15141.777790/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2449 REAL_CONST(15156.570099/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2450 REAL_CONST(15171.366018/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2451 REAL_CONST(15186.165546/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2452 REAL_CONST(15200.968679/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2453 REAL_CONST(15215.775418/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2454 REAL_CONST(15230.585760/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2455 REAL_CONST(15245.399703/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2456 REAL_CONST(15260.217246/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2457 REAL_CONST(15275.038386/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2458 REAL_CONST(15289.863123/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2459 REAL_CONST(15304.691453/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2460 REAL_CONST(15319.523377/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2461 REAL_CONST(15334.358891/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2462 REAL_CONST(15349.197994/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2463 REAL_CONST(15364.040685/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2464 REAL_CONST(15378.886961/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2465 REAL_CONST(15393.736821/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2466 REAL_CONST(15408.590264/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2467 REAL_CONST(15423.447287/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2468 REAL_CONST(15438.307888/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2469 REAL_CONST(15453.172066/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2470 REAL_CONST(15468.039820/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2471 REAL_CONST(15482.911148/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2472 REAL_CONST(15497.786047/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2473 REAL_CONST(15512.664516/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2474 REAL_CONST(15527.546554/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2475 REAL_CONST(15542.432158/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2476 REAL_CONST(15557.321327/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2477 REAL_CONST(15572.214060/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2478 REAL_CONST(15587.110354/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2479 REAL_CONST(15602.010208/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2480 REAL_CONST(15616.913620/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2481 REAL_CONST(15631.820589/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2482 REAL_CONST(15646.731113/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2483 REAL_CONST(15661.645189/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2484 REAL_CONST(15676.562817/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2485 REAL_CONST(15691.483995/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2486 REAL_CONST(15706.408720/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2487 REAL_CONST(15721.336993/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2488 REAL_CONST(15736.268809/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2489 REAL_CONST(15751.204169/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2490 REAL_CONST(15766.143070/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2491 REAL_CONST(15781.085510/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2492 REAL_CONST(15796.031489/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2493 REAL_CONST(15810.981003/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2494 REAL_CONST(15825.934053/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2495 REAL_CONST(15840.890635/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2496 REAL_CONST(15855.850748/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2497 REAL_CONST(15870.814391/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2498 REAL_CONST(15885.781562/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2499 REAL_CONST(15900.752259/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2500 REAL_CONST(15915.726481/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2501 REAL_CONST(15930.704226/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2502 REAL_CONST(15945.685492/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2503 REAL_CONST(15960.670278/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2504 REAL_CONST(15975.658581/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2505 REAL_CONST(15990.650401/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2506 REAL_CONST(16005.645736/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2507 REAL_CONST(16020.644583/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2508 REAL_CONST(16035.646942/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2509 REAL_CONST(16050.652811/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2510 REAL_CONST(16065.662188/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2511 REAL_CONST(16080.675071/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2512 REAL_CONST(16095.691459/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2513 REAL_CONST(16110.711350/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2514 REAL_CONST(16125.734743/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2515 REAL_CONST(16140.761636/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2516 REAL_CONST(16155.792027/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2517 REAL_CONST(16170.825914/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2518 REAL_CONST(16185.863297/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2519 REAL_CONST(16200.904173/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2520 REAL_CONST(16215.948541/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2521 REAL_CONST(16230.996399/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2522 REAL_CONST(16246.047746/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2523 REAL_CONST(16261.102579/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2524 REAL_CONST(16276.160898/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2525 REAL_CONST(16291.222700/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2526 REAL_CONST(16306.287985/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2527 REAL_CONST(16321.356750/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2528 REAL_CONST(16336.428994/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2529 REAL_CONST(16351.504716/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2530 REAL_CONST(16366.583913/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2531 REAL_CONST(16381.666584/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2532 REAL_CONST(16396.752727/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2533 REAL_CONST(16411.842341/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2534 REAL_CONST(16426.935425/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2535 REAL_CONST(16442.031976/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2536 REAL_CONST(16457.131994/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2537 REAL_CONST(16472.235476/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2538 REAL_CONST(16487.342421/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2539 REAL_CONST(16502.452827/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2540 REAL_CONST(16517.566693/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2541 REAL_CONST(16532.684017/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2542 REAL_CONST(16547.804797/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2543 REAL_CONST(16562.929033/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2544 REAL_CONST(16578.056722/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2545 REAL_CONST(16593.187863/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2546 REAL_CONST(16608.322454/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2547 REAL_CONST(16623.460494/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2548 REAL_CONST(16638.601981/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2549 REAL_CONST(16653.746913/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2550 REAL_CONST(16668.895290/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2551 REAL_CONST(16684.047109/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2552 REAL_CONST(16699.202368/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2553 REAL_CONST(16714.361068/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2554 REAL_CONST(16729.523204/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2555 REAL_CONST(16744.688777/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2556 REAL_CONST(16759.857785/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2557 REAL_CONST(16775.030226/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2558 REAL_CONST(16790.206098/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2559 REAL_CONST(16805.385400/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2560 REAL_CONST(16820.568131/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2561 REAL_CONST(16835.754288/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2562 REAL_CONST(16850.943871/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2563 REAL_CONST(16866.136877/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2564 REAL_CONST(16881.333306/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2565 REAL_CONST(16896.533156/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2566 REAL_CONST(16911.736424/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2567 REAL_CONST(16926.943110/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2568 REAL_CONST(16942.153213/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2569 REAL_CONST(16957.366730/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2570 REAL_CONST(16972.583659/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2571 REAL_CONST(16987.804001/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2572 REAL_CONST(17003.027752/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2573 REAL_CONST(17018.254912/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2574 REAL_CONST(17033.485479/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2575 REAL_CONST(17048.719451/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2576 REAL_CONST(17063.956826/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2577 REAL_CONST(17079.197605/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2578 REAL_CONST(17094.441784/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2579 REAL_CONST(17109.689362/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2580 REAL_CONST(17124.940338/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2581 REAL_CONST(17140.194711/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2582 REAL_CONST(17155.452478/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2583 REAL_CONST(17170.713638/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2584 REAL_CONST(17185.978190/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2585 REAL_CONST(17201.246133/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2586 REAL_CONST(17216.517464/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2587 REAL_CONST(17231.792182/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2588 REAL_CONST(17247.070287/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2589 REAL_CONST(17262.351775/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2590 REAL_CONST(17277.636646/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2591 REAL_CONST(17292.924898/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2592 REAL_CONST(17308.216530/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2593 REAL_CONST(17323.511541/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2594 REAL_CONST(17338.809928/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2595 REAL_CONST(17354.111690/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2596 REAL_CONST(17369.416826/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2597 REAL_CONST(17384.725335/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2598 REAL_CONST(17400.037214/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2599 REAL_CONST(17415.352462/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2600 REAL_CONST(17430.671079/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2601 REAL_CONST(17445.993061/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2602 REAL_CONST(17461.318409/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2603 REAL_CONST(17476.647120/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2604 REAL_CONST(17491.979193/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2605 REAL_CONST(17507.314626/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2606 REAL_CONST(17522.653419/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2607 REAL_CONST(17537.995569/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2608 REAL_CONST(17553.341074/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2609 REAL_CONST(17568.689935/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2610 REAL_CONST(17584.042149/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2611 REAL_CONST(17599.397714/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2612 REAL_CONST(17614.756629/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2613 REAL_CONST(17630.118893/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2614 REAL_CONST(17645.484505/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2615 REAL_CONST(17660.853462/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2616 REAL_CONST(17676.225764/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2617 REAL_CONST(17691.601408/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2618 REAL_CONST(17706.980394/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2619 REAL_CONST(17722.362720/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2620 REAL_CONST(17737.748384/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2621 REAL_CONST(17753.137386/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2622 REAL_CONST(17768.529723/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2623 REAL_CONST(17783.925394/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2624 REAL_CONST(17799.324399/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2625 REAL_CONST(17814.726734/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2626 REAL_CONST(17830.132399/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2627 REAL_CONST(17845.541393/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2628 REAL_CONST(17860.953714/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2629 REAL_CONST(17876.369360/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2630 REAL_CONST(17891.788331/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2631 REAL_CONST(17907.210624/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2632 REAL_CONST(17922.636238/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2633 REAL_CONST(17938.065173/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2634 REAL_CONST(17953.497425/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2635 REAL_CONST(17968.932995/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2636 REAL_CONST(17984.371880/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2637 REAL_CONST(17999.814079/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2638 REAL_CONST(18015.259591/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2639 REAL_CONST(18030.708415/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2640 REAL_CONST(18046.160548/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2641 REAL_CONST(18061.615990/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2642 REAL_CONST(18077.074738/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2643 REAL_CONST(18092.536793/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2644 REAL_CONST(18108.002151/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2645 REAL_CONST(18123.470813/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2646 REAL_CONST(18138.942775/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2647 REAL_CONST(18154.418038/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2648 REAL_CONST(18169.896599/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2649 REAL_CONST(18185.378458/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2650 REAL_CONST(18200.863612/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2651 REAL_CONST(18216.352060/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2652 REAL_CONST(18231.843802/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2653 REAL_CONST(18247.338835/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2654 REAL_CONST(18262.837158/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2655 REAL_CONST(18278.338770/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2656 REAL_CONST(18293.843670/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2657 REAL_CONST(18309.351855/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2658 REAL_CONST(18324.863325/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2659 REAL_CONST(18340.378078/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2660 REAL_CONST(18355.896113/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2661 REAL_CONST(18371.417429/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2662 REAL_CONST(18386.942023/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2663 REAL_CONST(18402.469895/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2664 REAL_CONST(18418.001044/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2665 REAL_CONST(18433.535467/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2666 REAL_CONST(18449.073164/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2667 REAL_CONST(18464.614133/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2668 REAL_CONST(18480.158372/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2669 REAL_CONST(18495.705881/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2670 REAL_CONST(18511.256658/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2671 REAL_CONST(18526.810702/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2672 REAL_CONST(18542.368011/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2673 REAL_CONST(18557.928583/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2674 REAL_CONST(18573.492419/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2675 REAL_CONST(18589.059515/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2676 REAL_CONST(18604.629871/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2677 REAL_CONST(18620.203486/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2678 REAL_CONST(18635.780358/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2679 REAL_CONST(18651.360485/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2680 REAL_CONST(18666.943867/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2681 REAL_CONST(18682.530502/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2682 REAL_CONST(18698.120388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2683 REAL_CONST(18713.713525/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2684 REAL_CONST(18729.309910/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2685 REAL_CONST(18744.909543/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2686 REAL_CONST(18760.512422/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2687 REAL_CONST(18776.118546/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2688 REAL_CONST(18791.727914/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2689 REAL_CONST(18807.340524/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2690 REAL_CONST(18822.956374/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2691 REAL_CONST(18838.575465/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2692 REAL_CONST(18854.197793/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2693 REAL_CONST(18869.823358/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2694 REAL_CONST(18885.452158/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2695 REAL_CONST(18901.084193/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2696 REAL_CONST(18916.719460/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2697 REAL_CONST(18932.357959/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2698 REAL_CONST(18947.999687/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2699 REAL_CONST(18963.644645/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2700 REAL_CONST(18979.292830/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2701 REAL_CONST(18994.944241/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2702 REAL_CONST(19010.598877/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2703 REAL_CONST(19026.256736/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2704 REAL_CONST(19041.917817/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2705 REAL_CONST(19057.582120/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2706 REAL_CONST(19073.249641/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2707 REAL_CONST(19088.920381/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2708 REAL_CONST(19104.594338/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2709 REAL_CONST(19120.271510/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2710 REAL_CONST(19135.951896/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2711 REAL_CONST(19151.635495/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2712 REAL_CONST(19167.322306/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2713 REAL_CONST(19183.012327/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2714 REAL_CONST(19198.705557/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2715 REAL_CONST(19214.401994/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2716 REAL_CONST(19230.101638/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2717 REAL_CONST(19245.804487/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2718 REAL_CONST(19261.510539/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2719 REAL_CONST(19277.219794/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2720 REAL_CONST(19292.932250/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2721 REAL_CONST(19308.647906/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2722 REAL_CONST(19324.366760/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2723 REAL_CONST(19340.088811/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2724 REAL_CONST(19355.814058/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2725 REAL_CONST(19371.542500/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2726 REAL_CONST(19387.274135/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2727 REAL_CONST(19403.008962/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2728 REAL_CONST(19418.746980/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2729 REAL_CONST(19434.488187/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2730 REAL_CONST(19450.232582/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2731 REAL_CONST(19465.980164/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2732 REAL_CONST(19481.730931/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2733 REAL_CONST(19497.484883/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2734 REAL_CONST(19513.242017/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2735 REAL_CONST(19529.002334/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2736 REAL_CONST(19544.765830/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2737 REAL_CONST(19560.532506/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2738 REAL_CONST(19576.302359/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2739 REAL_CONST(19592.075389/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2740 REAL_CONST(19607.851595/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2741 REAL_CONST(19623.630974/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2742 REAL_CONST(19639.413526/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2743 REAL_CONST(19655.199249/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2744 REAL_CONST(19670.988143/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2745 REAL_CONST(19686.780205/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2746 REAL_CONST(19702.575435/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2747 REAL_CONST(19718.373831/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2748 REAL_CONST(19734.175393/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2749 REAL_CONST(19749.980118/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2750 REAL_CONST(19765.788005/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2751 REAL_CONST(19781.599054/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2752 REAL_CONST(19797.413263/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2753 REAL_CONST(19813.230631/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2754 REAL_CONST(19829.051156/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2755 REAL_CONST(19844.874837/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2756 REAL_CONST(19860.701674/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2757 REAL_CONST(19876.531664/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2758 REAL_CONST(19892.364806/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2759 REAL_CONST(19908.201100/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2760 REAL_CONST(19924.040543/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2761 REAL_CONST(19939.883136/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2762 REAL_CONST(19955.728875/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2763 REAL_CONST(19971.577761/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2764 REAL_CONST(19987.429792/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2765 REAL_CONST(20003.284967/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2766 REAL_CONST(20019.143283/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2767 REAL_CONST(20035.004742/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2768 REAL_CONST(20050.869340/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2769 REAL_CONST(20066.737076/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2770 REAL_CONST(20082.607951/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2771 REAL_CONST(20098.481961/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2772 REAL_CONST(20114.359107/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2773 REAL_CONST(20130.239386/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2774 REAL_CONST(20146.122798/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2775 REAL_CONST(20162.009341/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2776 REAL_CONST(20177.899014/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2777 REAL_CONST(20193.791815/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2778 REAL_CONST(20209.687745/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2779 REAL_CONST(20225.586801/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2780 REAL_CONST(20241.488982/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2781 REAL_CONST(20257.394286/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2782 REAL_CONST(20273.302714/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2783 REAL_CONST(20289.214263/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2784 REAL_CONST(20305.128932/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2785 REAL_CONST(20321.046720/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2786 REAL_CONST(20336.967626/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2787 REAL_CONST(20352.891648/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2788 REAL_CONST(20368.818786/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2789 REAL_CONST(20384.749038/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2790 REAL_CONST(20400.682403/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2791 REAL_CONST(20416.618879/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2792 REAL_CONST(20432.558466/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2793 REAL_CONST(20448.501162/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2794 REAL_CONST(20464.446967/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2795 REAL_CONST(20480.395878/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2796 REAL_CONST(20496.347894/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2797 REAL_CONST(20512.303016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2798 REAL_CONST(20528.261240/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2799 REAL_CONST(20544.222566/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2800 REAL_CONST(20560.186993/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2801 REAL_CONST(20576.154520/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2802 REAL_CONST(20592.125145/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2803 REAL_CONST(20608.098867/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2804 REAL_CONST(20624.075685/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2805 REAL_CONST(20640.055598/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2806 REAL_CONST(20656.038605/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2807 REAL_CONST(20672.024704/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2808 REAL_CONST(20688.013894/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2809 REAL_CONST(20704.006174/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2810 REAL_CONST(20720.001543/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2811 REAL_CONST(20736.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2812 REAL_CONST(20752.001543/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2813 REAL_CONST(20768.006171/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2814 REAL_CONST(20784.013884/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2815 REAL_CONST(20800.024679/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2816 REAL_CONST(20816.038555/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2817 REAL_CONST(20832.055513/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2818 REAL_CONST(20848.075549/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2819 REAL_CONST(20864.098664/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2820 REAL_CONST(20880.124856/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2821 REAL_CONST(20896.154123/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2822 REAL_CONST(20912.186465/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2823 REAL_CONST(20928.221880/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2824 REAL_CONST(20944.260368/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2825 REAL_CONST(20960.301926/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2826 REAL_CONST(20976.346555/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2827 REAL_CONST(20992.394252/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2828 REAL_CONST(21008.445017/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2829 REAL_CONST(21024.498848/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2830 REAL_CONST(21040.555744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2831 REAL_CONST(21056.615704/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2832 REAL_CONST(21072.678727/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2833 REAL_CONST(21088.744812/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2834 REAL_CONST(21104.813957/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2835 REAL_CONST(21120.886161/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2836 REAL_CONST(21136.961424/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2837 REAL_CONST(21153.039743/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2838 REAL_CONST(21169.121119/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2839 REAL_CONST(21185.205549/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2840 REAL_CONST(21201.293033/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2841 REAL_CONST(21217.383569/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2842 REAL_CONST(21233.477156/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2843 REAL_CONST(21249.573794/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2844 REAL_CONST(21265.673480/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2845 REAL_CONST(21281.776214/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2846 REAL_CONST(21297.881994/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2847 REAL_CONST(21313.990820/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2848 REAL_CONST(21330.102690/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2849 REAL_CONST(21346.217604/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2850 REAL_CONST(21362.335559/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2851 REAL_CONST(21378.456556/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2852 REAL_CONST(21394.580591/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2853 REAL_CONST(21410.707666/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2854 REAL_CONST(21426.837778/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2855 REAL_CONST(21442.970926/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2856 REAL_CONST(21459.107109/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2857 REAL_CONST(21475.246326/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2858 REAL_CONST(21491.388576/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2859 REAL_CONST(21507.533858/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2860 REAL_CONST(21523.682170/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2861 REAL_CONST(21539.833512/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2862 REAL_CONST(21555.987882/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2863 REAL_CONST(21572.145279/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2864 REAL_CONST(21588.305702/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2865 REAL_CONST(21604.469150/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2866 REAL_CONST(21620.635622/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2867 REAL_CONST(21636.805116/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2868 REAL_CONST(21652.977632/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2869 REAL_CONST(21669.153169/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2870 REAL_CONST(21685.331724/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2871 REAL_CONST(21701.513298/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2872 REAL_CONST(21717.697888/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2873 REAL_CONST(21733.885495/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2874 REAL_CONST(21750.076116/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2875 REAL_CONST(21766.269750/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2876 REAL_CONST(21782.466398/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2877 REAL_CONST(21798.666056/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2878 REAL_CONST(21814.868725/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2879 REAL_CONST(21831.074403/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2880 REAL_CONST(21847.283089/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2881 REAL_CONST(21863.494782/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2882 REAL_CONST(21879.709481/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2883 REAL_CONST(21895.927184/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2884 REAL_CONST(21912.147891/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2885 REAL_CONST(21928.371600/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2886 REAL_CONST(21944.598311/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2887 REAL_CONST(21960.828022/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2888 REAL_CONST(21977.060732/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2889 REAL_CONST(21993.296440/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2890 REAL_CONST(22009.535145/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2891 REAL_CONST(22025.776846/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2892 REAL_CONST(22042.021541/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2893 REAL_CONST(22058.269230/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2894 REAL_CONST(22074.519912/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2895 REAL_CONST(22090.773585/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2896 REAL_CONST(22107.030248/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2897 REAL_CONST(22123.289900/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2898 REAL_CONST(22139.552540/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2899 REAL_CONST(22155.818168/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2900 REAL_CONST(22172.086781/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2901 REAL_CONST(22188.358379/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2902 REAL_CONST(22204.632961/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2903 REAL_CONST(22220.910525/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2904 REAL_CONST(22237.191071/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2905 REAL_CONST(22253.474598/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2906 REAL_CONST(22269.761103/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2907 REAL_CONST(22286.050587/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2908 REAL_CONST(22302.343048/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2909 REAL_CONST(22318.638485/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2910 REAL_CONST(22334.936897/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2911 REAL_CONST(22351.238283/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2912 REAL_CONST(22367.542642/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2913 REAL_CONST(22383.849973/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2914 REAL_CONST(22400.160274/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2915 REAL_CONST(22416.473545/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2916 REAL_CONST(22432.789784/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2917 REAL_CONST(22449.108990/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2918 REAL_CONST(22465.431163/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2919 REAL_CONST(22481.756301/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2920 REAL_CONST(22498.084404/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2921 REAL_CONST(22514.415469/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2922 REAL_CONST(22530.749496/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2923 REAL_CONST(22547.086485/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2924 REAL_CONST(22563.426433/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2925 REAL_CONST(22579.769340/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2926 REAL_CONST(22596.115205/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2927 REAL_CONST(22612.464026/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2928 REAL_CONST(22628.815803/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2929 REAL_CONST(22645.170535/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2930 REAL_CONST(22661.528220/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2931 REAL_CONST(22677.888857/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2932 REAL_CONST(22694.252446/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2933 REAL_CONST(22710.618985/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2934 REAL_CONST(22726.988473/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2935 REAL_CONST(22743.360909/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2936 REAL_CONST(22759.736292/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2937 REAL_CONST(22776.114621/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2938 REAL_CONST(22792.495896/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2939 REAL_CONST(22808.880114/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2940 REAL_CONST(22825.267275/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2941 REAL_CONST(22841.657378/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2942 REAL_CONST(22858.050421/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2943 REAL_CONST(22874.446404/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2944 REAL_CONST(22890.845326/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2945 REAL_CONST(22907.247185/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2946 REAL_CONST(22923.651981/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2947 REAL_CONST(22940.059712/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2948 REAL_CONST(22956.470378/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2949 REAL_CONST(22972.883977/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2950 REAL_CONST(22989.300508/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2951 REAL_CONST(23005.719971/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2952 REAL_CONST(23022.142364/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2953 REAL_CONST(23038.567686/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2954 REAL_CONST(23054.995936/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2955 REAL_CONST(23071.427113/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2956 REAL_CONST(23087.861216/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2957 REAL_CONST(23104.298245/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2958 REAL_CONST(23120.738197/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2959 REAL_CONST(23137.181072/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2960 REAL_CONST(23153.626869/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2961 REAL_CONST(23170.075587/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2962 REAL_CONST(23186.527224/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2963 REAL_CONST(23202.981781/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2964 REAL_CONST(23219.439255/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2965 REAL_CONST(23235.899646/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2966 REAL_CONST(23252.362952/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2967 REAL_CONST(23268.829173/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2968 REAL_CONST(23285.298308/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2969 REAL_CONST(23301.770356/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2970 REAL_CONST(23318.245314/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2971 REAL_CONST(23334.723184/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2972 REAL_CONST(23351.203963/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2973 REAL_CONST(23367.687650/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2974 REAL_CONST(23384.174245/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2975 REAL_CONST(23400.663746/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2976 REAL_CONST(23417.156152/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2977 REAL_CONST(23433.651463/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2978 REAL_CONST(23450.149677/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2979 REAL_CONST(23466.650794/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2980 REAL_CONST(23483.154812/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2981 REAL_CONST(23499.661730/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2982 REAL_CONST(23516.171547/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2983 REAL_CONST(23532.684263/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2984 REAL_CONST(23549.199876/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2985 REAL_CONST(23565.718385/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2986 REAL_CONST(23582.239789/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2987 REAL_CONST(23598.764087/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2988 REAL_CONST(23615.291279/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2989 REAL_CONST(23631.821363/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2990 REAL_CONST(23648.354338/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2991 REAL_CONST(23664.890203/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2992 REAL_CONST(23681.428957/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2993 REAL_CONST(23697.970599/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2994 REAL_CONST(23714.515128/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2995 REAL_CONST(23731.062544/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2996 REAL_CONST(23747.612844/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2997 REAL_CONST(23764.166029/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2998 REAL_CONST(23780.722096/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
2999 REAL_CONST(23797.281046/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3000 REAL_CONST(23813.842877/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3001 REAL_CONST(23830.407588/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3002 REAL_CONST(23846.975178/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3003 REAL_CONST(23863.545646/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3004 REAL_CONST(23880.118991/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3005 REAL_CONST(23896.695212/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3006 REAL_CONST(23913.274308/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3007 REAL_CONST(23929.856278/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3008 REAL_CONST(23946.441122/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3009 REAL_CONST(23963.028837/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3010 REAL_CONST(23979.619424/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3011 REAL_CONST(23996.212880/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3012 REAL_CONST(24012.809206/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3013 REAL_CONST(24029.408400/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3014 REAL_CONST(24046.010461/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3015 REAL_CONST(24062.615388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3016 REAL_CONST(24079.223180/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3017 REAL_CONST(24095.833837/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3018 REAL_CONST(24112.447356/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3019 REAL_CONST(24129.063738/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3020 REAL_CONST(24145.682981/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3021 REAL_CONST(24162.305084/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3022 REAL_CONST(24178.930046/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3023 REAL_CONST(24195.557867/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3024 REAL_CONST(24212.188545/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3025 REAL_CONST(24228.822079/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3026 REAL_CONST(24245.458468/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3027 REAL_CONST(24262.097712/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3028 REAL_CONST(24278.739809/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3029 REAL_CONST(24295.384759/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3030 REAL_CONST(24312.032559/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3031 REAL_CONST(24328.683211/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3032 REAL_CONST(24345.336711/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3033 REAL_CONST(24361.993060/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3034 REAL_CONST(24378.652257/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3035 REAL_CONST(24395.314300/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3036 REAL_CONST(24411.979189/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3037 REAL_CONST(24428.646922/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3038 REAL_CONST(24445.317499/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3039 REAL_CONST(24461.990918/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3040 REAL_CONST(24478.667179/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3041 REAL_CONST(24495.346281/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3042 REAL_CONST(24512.028223/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3043 REAL_CONST(24528.713003/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3044 REAL_CONST(24545.400621/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3045 REAL_CONST(24562.091076/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3046 REAL_CONST(24578.784367/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3047 REAL_CONST(24595.480492/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3048 REAL_CONST(24612.179452/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3049 REAL_CONST(24628.881244/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3050 REAL_CONST(24645.585869/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3051 REAL_CONST(24662.293325/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3052 REAL_CONST(24679.003610/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3053 REAL_CONST(24695.716725/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3054 REAL_CONST(24712.432668/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3055 REAL_CONST(24729.151438/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3056 REAL_CONST(24745.873035/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3057 REAL_CONST(24762.597457/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3058 REAL_CONST(24779.324703/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3059 REAL_CONST(24796.054772/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3060 REAL_CONST(24812.787665/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3061 REAL_CONST(24829.523378/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3062 REAL_CONST(24846.261912/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3063 REAL_CONST(24863.003266/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3064 REAL_CONST(24879.747438/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3065 REAL_CONST(24896.494428/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3066 REAL_CONST(24913.244235/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3067 REAL_CONST(24929.996857/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3068 REAL_CONST(24946.752295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3069 REAL_CONST(24963.510546/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3070 REAL_CONST(24980.271610/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3071 REAL_CONST(24997.035487/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3072 REAL_CONST(25013.802174/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3073 REAL_CONST(25030.571672/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3074 REAL_CONST(25047.343978/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3075 REAL_CONST(25064.119093/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3076 REAL_CONST(25080.897016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3077 REAL_CONST(25097.677744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3078 REAL_CONST(25114.461279/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3079 REAL_CONST(25131.247617/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3080 REAL_CONST(25148.036759/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3081 REAL_CONST(25164.828704/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3082 REAL_CONST(25181.623451/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3083 REAL_CONST(25198.420998/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3084 REAL_CONST(25215.221345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3085 REAL_CONST(25232.024491/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3086 REAL_CONST(25248.830435/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3087 REAL_CONST(25265.639176/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3088 REAL_CONST(25282.450713/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3089 REAL_CONST(25299.265045/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3090 REAL_CONST(25316.082172/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3091 REAL_CONST(25332.902091/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3092 REAL_CONST(25349.724804/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3093 REAL_CONST(25366.550307/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3094 REAL_CONST(25383.378601/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3095 REAL_CONST(25400.209685/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3096 REAL_CONST(25417.043558/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3097 REAL_CONST(25433.880218/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3098 REAL_CONST(25450.719665/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3099 REAL_CONST(25467.561898/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3100 REAL_CONST(25484.406916/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3101 REAL_CONST(25501.254718/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3102 REAL_CONST(25518.105303/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3103 REAL_CONST(25534.958670/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3104 REAL_CONST(25551.814819/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3105 REAL_CONST(25568.673748/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3106 REAL_CONST(25585.535457/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3107 REAL_CONST(25602.399944/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3108 REAL_CONST(25619.267209/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3109 REAL_CONST(25636.137250/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3110 REAL_CONST(25653.010067/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3111 REAL_CONST(25669.885660/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3112 REAL_CONST(25686.764026/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3113 REAL_CONST(25703.645165/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3114 REAL_CONST(25720.529077/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3115 REAL_CONST(25737.415759/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3116 REAL_CONST(25754.305213/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3117 REAL_CONST(25771.197435/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3118 REAL_CONST(25788.092426/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3119 REAL_CONST(25804.990185/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3120 REAL_CONST(25821.890710/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3121 REAL_CONST(25838.794002/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3122 REAL_CONST(25855.700058/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3123 REAL_CONST(25872.608878/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3124 REAL_CONST(25889.520461/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3125 REAL_CONST(25906.434807/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3126 REAL_CONST(25923.351914/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3127 REAL_CONST(25940.271781/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3128 REAL_CONST(25957.194407/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3129 REAL_CONST(25974.119793/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3130 REAL_CONST(25991.047936/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3131 REAL_CONST(26007.978835/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3132 REAL_CONST(26024.912491/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3133 REAL_CONST(26041.848902/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3134 REAL_CONST(26058.788067/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3135 REAL_CONST(26075.729985/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3136 REAL_CONST(26092.674655/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3137 REAL_CONST(26109.622077/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3138 REAL_CONST(26126.572249/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3139 REAL_CONST(26143.525171/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3140 REAL_CONST(26160.480842/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3141 REAL_CONST(26177.439260/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3142 REAL_CONST(26194.400426/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3143 REAL_CONST(26211.364337/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3144 REAL_CONST(26228.330994/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3145 REAL_CONST(26245.300395/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3146 REAL_CONST(26262.272540/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3147 REAL_CONST(26279.247427/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3148 REAL_CONST(26296.225056/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3149 REAL_CONST(26313.205425/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3150 REAL_CONST(26330.188534/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3151 REAL_CONST(26347.174383/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3152 REAL_CONST(26364.162969/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3153 REAL_CONST(26381.154293/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3154 REAL_CONST(26398.148353/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3155 REAL_CONST(26415.145148/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3156 REAL_CONST(26432.144678/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3157 REAL_CONST(26449.146942/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3158 REAL_CONST(26466.151939/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3159 REAL_CONST(26483.159667/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3160 REAL_CONST(26500.170127/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3161 REAL_CONST(26517.183317/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3162 REAL_CONST(26534.199236/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3163 REAL_CONST(26551.217883/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3164 REAL_CONST(26568.239258/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3165 REAL_CONST(26585.263360/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3166 REAL_CONST(26602.290188/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3167 REAL_CONST(26619.319740/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3168 REAL_CONST(26636.352017/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3169 REAL_CONST(26653.387017/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3170 REAL_CONST(26670.424739/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3171 REAL_CONST(26687.465183/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3172 REAL_CONST(26704.508347/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3173 REAL_CONST(26721.554231/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3174 REAL_CONST(26738.602834/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3175 REAL_CONST(26755.654154/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3176 REAL_CONST(26772.708192/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3177 REAL_CONST(26789.764947/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3178 REAL_CONST(26806.824416/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3179 REAL_CONST(26823.886600/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3180 REAL_CONST(26840.951498/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3181 REAL_CONST(26858.019109/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3182 REAL_CONST(26875.089431/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3183 REAL_CONST(26892.162465/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3184 REAL_CONST(26909.238209/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3185 REAL_CONST(26926.316662/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3186 REAL_CONST(26943.397823/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3187 REAL_CONST(26960.481693/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3188 REAL_CONST(26977.568269/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3189 REAL_CONST(26994.657551/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3190 REAL_CONST(27011.749538/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3191 REAL_CONST(27028.844229/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3192 REAL_CONST(27045.941624/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3193 REAL_CONST(27063.041721/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3194 REAL_CONST(27080.144520/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3195 REAL_CONST(27097.250020/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3196 REAL_CONST(27114.358219/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3197 REAL_CONST(27131.469118/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3198 REAL_CONST(27148.582715/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3199 REAL_CONST(27165.699009/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3200 REAL_CONST(27182.818000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3201 REAL_CONST(27199.939687/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3202 REAL_CONST(27217.064068/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3203 REAL_CONST(27234.191144/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3204 REAL_CONST(27251.320912/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3205 REAL_CONST(27268.453373/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3206 REAL_CONST(27285.588525/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3207 REAL_CONST(27302.726368/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3208 REAL_CONST(27319.866901/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3209 REAL_CONST(27337.010122/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3210 REAL_CONST(27354.156032/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3211 REAL_CONST(27371.304629/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3212 REAL_CONST(27388.455912/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3213 REAL_CONST(27405.609881/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3214 REAL_CONST(27422.766535/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3215 REAL_CONST(27439.925872/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3216 REAL_CONST(27457.087893/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3217 REAL_CONST(27474.252595/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3218 REAL_CONST(27491.419979/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3219 REAL_CONST(27508.590044/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3220 REAL_CONST(27525.762788/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3221 REAL_CONST(27542.938211/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3222 REAL_CONST(27560.116312/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3223 REAL_CONST(27577.297090/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3224 REAL_CONST(27594.480545/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3225 REAL_CONST(27611.666675/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3226 REAL_CONST(27628.855480/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3227 REAL_CONST(27646.046959/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3228 REAL_CONST(27663.241110/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3229 REAL_CONST(27680.437934/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3230 REAL_CONST(27697.637429/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3231 REAL_CONST(27714.839595/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3232 REAL_CONST(27732.044430/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3233 REAL_CONST(27749.251934/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3234 REAL_CONST(27766.462107/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3235 REAL_CONST(27783.674946/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3236 REAL_CONST(27800.890452/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3237 REAL_CONST(27818.108624/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3238 REAL_CONST(27835.329460/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3239 REAL_CONST(27852.552960/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3240 REAL_CONST(27869.779123/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3241 REAL_CONST(27887.007948/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3242 REAL_CONST(27904.239435/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3243 REAL_CONST(27921.473583/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3244 REAL_CONST(27938.710390/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3245 REAL_CONST(27955.949856/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3246 REAL_CONST(27973.191981/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3247 REAL_CONST(27990.436763/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3248 REAL_CONST(28007.684201/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3249 REAL_CONST(28024.934295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3250 REAL_CONST(28042.187044/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3251 REAL_CONST(28059.442447/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3252 REAL_CONST(28076.700503/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3253 REAL_CONST(28093.961211/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3254 REAL_CONST(28111.224571/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3255 REAL_CONST(28128.490582/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3256 REAL_CONST(28145.759243/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3257 REAL_CONST(28163.030554/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3258 REAL_CONST(28180.304512/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3259 REAL_CONST(28197.581118/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3260 REAL_CONST(28214.860371/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3261 REAL_CONST(28232.142270/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3262 REAL_CONST(28249.426814/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3263 REAL_CONST(28266.714002/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3264 REAL_CONST(28284.003834/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3265 REAL_CONST(28301.296308/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3266 REAL_CONST(28318.591424/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3267 REAL_CONST(28335.889182/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3268 REAL_CONST(28353.189579/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3269 REAL_CONST(28370.492617/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3270 REAL_CONST(28387.798292/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3271 REAL_CONST(28405.106606/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3272 REAL_CONST(28422.417557/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3273 REAL_CONST(28439.731144/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3274 REAL_CONST(28457.047366/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3275 REAL_CONST(28474.366223/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3276 REAL_CONST(28491.687714/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3277 REAL_CONST(28509.011838/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3278 REAL_CONST(28526.338594/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3279 REAL_CONST(28543.667982/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3280 REAL_CONST(28561.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3281 REAL_CONST(28578.334648/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3282 REAL_CONST(28595.671925/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3283 REAL_CONST(28613.011831/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3284 REAL_CONST(28630.354364/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3285 REAL_CONST(28647.699523/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3286 REAL_CONST(28665.047309/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3287 REAL_CONST(28682.397719/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3288 REAL_CONST(28699.750754/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3289 REAL_CONST(28717.106412/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3290 REAL_CONST(28734.464693/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3291 REAL_CONST(28751.825596/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3292 REAL_CONST(28769.189120/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3293 REAL_CONST(28786.555264/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3294 REAL_CONST(28803.924028/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3295 REAL_CONST(28821.295410/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3296 REAL_CONST(28838.669411/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3297 REAL_CONST(28856.046028/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3298 REAL_CONST(28873.425262/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3299 REAL_CONST(28890.807112/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3300 REAL_CONST(28908.191576/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3301 REAL_CONST(28925.578655/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3302 REAL_CONST(28942.968346/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3303 REAL_CONST(28960.360650/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3304 REAL_CONST(28977.755566/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3305 REAL_CONST(28995.153093/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3306 REAL_CONST(29012.553229/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3307 REAL_CONST(29029.955975/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3308 REAL_CONST(29047.361330/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3309 REAL_CONST(29064.769292/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3310 REAL_CONST(29082.179861/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3311 REAL_CONST(29099.593037/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3312 REAL_CONST(29117.008817/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3313 REAL_CONST(29134.427203/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3314 REAL_CONST(29151.848192/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3315 REAL_CONST(29169.271784/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3316 REAL_CONST(29186.697979/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3317 REAL_CONST(29204.126775/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3318 REAL_CONST(29221.558172/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3319 REAL_CONST(29238.992168/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3320 REAL_CONST(29256.428764/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3321 REAL_CONST(29273.867959/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3322 REAL_CONST(29291.309750/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3323 REAL_CONST(29308.754139/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3324 REAL_CONST(29326.201124/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3325 REAL_CONST(29343.650704/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3326 REAL_CONST(29361.102879/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3327 REAL_CONST(29378.557648/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3328 REAL_CONST(29396.015009/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3329 REAL_CONST(29413.474963/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3330 REAL_CONST(29430.937508/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3331 REAL_CONST(29448.402644/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3332 REAL_CONST(29465.870370/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3333 REAL_CONST(29483.340685/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3334 REAL_CONST(29500.813588/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3335 REAL_CONST(29518.289079/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3336 REAL_CONST(29535.767157/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3337 REAL_CONST(29553.247821/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3338 REAL_CONST(29570.731070/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3339 REAL_CONST(29588.216904/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3340 REAL_CONST(29605.705322/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3341 REAL_CONST(29623.196322/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3342 REAL_CONST(29640.689905/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3343 REAL_CONST(29658.186070/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3344 REAL_CONST(29675.684815/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3345 REAL_CONST(29693.186140/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3346 REAL_CONST(29710.690044/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3347 REAL_CONST(29728.196527/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3348 REAL_CONST(29745.705588/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3349 REAL_CONST(29763.217225/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3350 REAL_CONST(29780.731439/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3351 REAL_CONST(29798.248228/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3352 REAL_CONST(29815.767592/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3353 REAL_CONST(29833.289529/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3354 REAL_CONST(29850.814040/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3355 REAL_CONST(29868.341123/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3356 REAL_CONST(29885.870778/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3357 REAL_CONST(29903.403004/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3358 REAL_CONST(29920.937800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3359 REAL_CONST(29938.475165/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3360 REAL_CONST(29956.015099/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3361 REAL_CONST(29973.557601/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3362 REAL_CONST(29991.102670/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3363 REAL_CONST(30008.650306/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3364 REAL_CONST(30026.200506/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3365 REAL_CONST(30043.753272/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3366 REAL_CONST(30061.308602/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3367 REAL_CONST(30078.866496/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3368 REAL_CONST(30096.426952/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3369 REAL_CONST(30113.989970/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3370 REAL_CONST(30131.555549/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3371 REAL_CONST(30149.123688/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3372 REAL_CONST(30166.694387/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3373 REAL_CONST(30184.267645/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3374 REAL_CONST(30201.843461/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3375 REAL_CONST(30219.421835/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3376 REAL_CONST(30237.002765/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3377 REAL_CONST(30254.586251/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3378 REAL_CONST(30272.172293/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3379 REAL_CONST(30289.760889/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3380 REAL_CONST(30307.352038/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3381 REAL_CONST(30324.945741/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3382 REAL_CONST(30342.541995/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3383 REAL_CONST(30360.140801/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3384 REAL_CONST(30377.742158/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3385 REAL_CONST(30395.346065/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3386 REAL_CONST(30412.952521/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3387 REAL_CONST(30430.561526/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3388 REAL_CONST(30448.173078/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3389 REAL_CONST(30465.787178/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3390 REAL_CONST(30483.403824/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3391 REAL_CONST(30501.023015/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3392 REAL_CONST(30518.644751/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3393 REAL_CONST(30536.269031/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3394 REAL_CONST(30553.895855/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3395 REAL_CONST(30571.525221/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3396 REAL_CONST(30589.157130/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3397 REAL_CONST(30606.791579/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3398 REAL_CONST(30624.428569/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3399 REAL_CONST(30642.068098/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3400 REAL_CONST(30659.710167/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3401 REAL_CONST(30677.354774/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3402 REAL_CONST(30695.001918/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3403 REAL_CONST(30712.651599/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3404 REAL_CONST(30730.303816/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3405 REAL_CONST(30747.958568/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3406 REAL_CONST(30765.615855/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3407 REAL_CONST(30783.275676/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3408 REAL_CONST(30800.938030/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3409 REAL_CONST(30818.602917/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3410 REAL_CONST(30836.270335/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3411 REAL_CONST(30853.940284/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3412 REAL_CONST(30871.612763/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3413 REAL_CONST(30889.287772/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3414 REAL_CONST(30906.965310/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3415 REAL_CONST(30924.645376/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3416 REAL_CONST(30942.327969/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3417 REAL_CONST(30960.013089/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3418 REAL_CONST(30977.700734/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3419 REAL_CONST(30995.390905/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3420 REAL_CONST(31013.083600/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3421 REAL_CONST(31030.778819/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3422 REAL_CONST(31048.476561/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3423 REAL_CONST(31066.176826/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3424 REAL_CONST(31083.879612/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3425 REAL_CONST(31101.584918/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3426 REAL_CONST(31119.292745/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3427 REAL_CONST(31137.003092/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3428 REAL_CONST(31154.715957/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3429 REAL_CONST(31172.431340/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3430 REAL_CONST(31190.149240/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3431 REAL_CONST(31207.869657/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3432 REAL_CONST(31225.592590/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3433 REAL_CONST(31243.318038/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3434 REAL_CONST(31261.046000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3435 REAL_CONST(31278.776476/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3436 REAL_CONST(31296.509466/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3437 REAL_CONST(31314.244967/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3438 REAL_CONST(31331.982980/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3439 REAL_CONST(31349.723504/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3440 REAL_CONST(31367.466538/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3441 REAL_CONST(31385.212081/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3442 REAL_CONST(31402.960133/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3443 REAL_CONST(31420.710693/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3444 REAL_CONST(31438.463761/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3445 REAL_CONST(31456.219335/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3446 REAL_CONST(31473.977415/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3447 REAL_CONST(31491.738000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3448 REAL_CONST(31509.501090/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3449 REAL_CONST(31527.266683/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3450 REAL_CONST(31545.034780/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3451 REAL_CONST(31562.805379/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3452 REAL_CONST(31580.578479/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3453 REAL_CONST(31598.354081/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3454 REAL_CONST(31616.132183/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3455 REAL_CONST(31633.912784/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3456 REAL_CONST(31651.695884/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3457 REAL_CONST(31669.481483/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3458 REAL_CONST(31687.269579/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3459 REAL_CONST(31705.060171/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3460 REAL_CONST(31722.853260/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3461 REAL_CONST(31740.648844/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3462 REAL_CONST(31758.446922/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3463 REAL_CONST(31776.247495/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3464 REAL_CONST(31794.050561/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3465 REAL_CONST(31811.856119/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3466 REAL_CONST(31829.664169/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3467 REAL_CONST(31847.474711/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3468 REAL_CONST(31865.287743/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3469 REAL_CONST(31883.103264/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3470 REAL_CONST(31900.921275/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3471 REAL_CONST(31918.741774/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3472 REAL_CONST(31936.564761/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3473 REAL_CONST(31954.390235/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3474 REAL_CONST(31972.218195/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3475 REAL_CONST(31990.048640/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3476 REAL_CONST(32007.881571/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3477 REAL_CONST(32025.716986/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3478 REAL_CONST(32043.554884/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3479 REAL_CONST(32061.395265/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3480 REAL_CONST(32079.238128/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3481 REAL_CONST(32097.083473/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3482 REAL_CONST(32114.931298/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3483 REAL_CONST(32132.781604/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3484 REAL_CONST(32150.634389/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3485 REAL_CONST(32168.489652/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3486 REAL_CONST(32186.347394/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3487 REAL_CONST(32204.207613/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3488 REAL_CONST(32222.070309/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3489 REAL_CONST(32239.935480/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3490 REAL_CONST(32257.803127/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3491 REAL_CONST(32275.673248/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3492 REAL_CONST(32293.545843/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3493 REAL_CONST(32311.420912/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3494 REAL_CONST(32329.298453/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3495 REAL_CONST(32347.178465/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3496 REAL_CONST(32365.060949/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3497 REAL_CONST(32382.945904/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3498 REAL_CONST(32400.833328/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3499 REAL_CONST(32418.723221/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3500 REAL_CONST(32436.615583/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3501 REAL_CONST(32454.510412/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3502 REAL_CONST(32472.407709/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3503 REAL_CONST(32490.307472/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3504 REAL_CONST(32508.209700/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3505 REAL_CONST(32526.114394/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3506 REAL_CONST(32544.021552/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3507 REAL_CONST(32561.931174/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3508 REAL_CONST(32579.843258/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3509 REAL_CONST(32597.757805/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3510 REAL_CONST(32615.674814/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3511 REAL_CONST(32633.594283/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3512 REAL_CONST(32651.516213/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3513 REAL_CONST(32669.440602/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3514 REAL_CONST(32687.367451/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3515 REAL_CONST(32705.296757/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3516 REAL_CONST(32723.228522/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3517 REAL_CONST(32741.162743/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3518 REAL_CONST(32759.099420/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3519 REAL_CONST(32777.038553/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3520 REAL_CONST(32794.980141/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3521 REAL_CONST(32812.924183/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3522 REAL_CONST(32830.870678/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3523 REAL_CONST(32848.819627/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3524 REAL_CONST(32866.771027/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3525 REAL_CONST(32884.724879/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3526 REAL_CONST(32902.681183/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3527 REAL_CONST(32920.639936/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3528 REAL_CONST(32938.601139/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3529 REAL_CONST(32956.564790/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3530 REAL_CONST(32974.530890/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3531 REAL_CONST(32992.499438/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3532 REAL_CONST(33010.470432/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3533 REAL_CONST(33028.443872/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3534 REAL_CONST(33046.419758/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3535 REAL_CONST(33064.398089/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3536 REAL_CONST(33082.378864/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3537 REAL_CONST(33100.362083/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3538 REAL_CONST(33118.347744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3539 REAL_CONST(33136.335848/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3540 REAL_CONST(33154.326393/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3541 REAL_CONST(33172.319379/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3542 REAL_CONST(33190.314806/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3543 REAL_CONST(33208.312671/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3544 REAL_CONST(33226.312976/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3545 REAL_CONST(33244.315719/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3546 REAL_CONST(33262.320900/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3547 REAL_CONST(33280.328517/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3548 REAL_CONST(33298.338571/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3549 REAL_CONST(33316.351061/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3550 REAL_CONST(33334.365985/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3551 REAL_CONST(33352.383344/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3552 REAL_CONST(33370.403136/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3553 REAL_CONST(33388.425361/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3554 REAL_CONST(33406.450019/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3555 REAL_CONST(33424.477108/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3556 REAL_CONST(33442.506628/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3557 REAL_CONST(33460.538579/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3558 REAL_CONST(33478.572959/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3559 REAL_CONST(33496.609768/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3560 REAL_CONST(33514.649006/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3561 REAL_CONST(33532.690671/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3562 REAL_CONST(33550.734764/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3563 REAL_CONST(33568.781282/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3564 REAL_CONST(33586.830227/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3565 REAL_CONST(33604.881597/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3566 REAL_CONST(33622.935391/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3567 REAL_CONST(33640.991609/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3568 REAL_CONST(33659.050250/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3569 REAL_CONST(33677.111314/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3570 REAL_CONST(33695.174800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3571 REAL_CONST(33713.240707/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3572 REAL_CONST(33731.309034/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3573 REAL_CONST(33749.379781/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3574 REAL_CONST(33767.452948/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3575 REAL_CONST(33785.528533/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3576 REAL_CONST(33803.606536/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3577 REAL_CONST(33821.686957/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3578 REAL_CONST(33839.769794/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3579 REAL_CONST(33857.855047/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3580 REAL_CONST(33875.942716/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3581 REAL_CONST(33894.032799/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3582 REAL_CONST(33912.125297/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3583 REAL_CONST(33930.220207/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3584 REAL_CONST(33948.317531/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3585 REAL_CONST(33966.417267/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3586 REAL_CONST(33984.519415/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3587 REAL_CONST(34002.623973/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3588 REAL_CONST(34020.730941/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3589 REAL_CONST(34038.840320/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3590 REAL_CONST(34056.952107/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3591 REAL_CONST(34075.066302/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3592 REAL_CONST(34093.182905/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3593 REAL_CONST(34111.301916/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3594 REAL_CONST(34129.423332/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3595 REAL_CONST(34147.547155/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3596 REAL_CONST(34165.673382/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3597 REAL_CONST(34183.802014/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3598 REAL_CONST(34201.933050/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3599 REAL_CONST(34220.066489/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3600 REAL_CONST(34238.202330/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3601 REAL_CONST(34256.340574/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3602 REAL_CONST(34274.481219/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3603 REAL_CONST(34292.624264/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3604 REAL_CONST(34310.769710/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3605 REAL_CONST(34328.917555/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3606 REAL_CONST(34347.067799/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3607 REAL_CONST(34365.220440/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3608 REAL_CONST(34383.375480/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3609 REAL_CONST(34401.532916/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3610 REAL_CONST(34419.692748/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3611 REAL_CONST(34437.854976/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3612 REAL_CONST(34456.019599/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3613 REAL_CONST(34474.186617/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3614 REAL_CONST(34492.356028/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3615 REAL_CONST(34510.527832/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3616 REAL_CONST(34528.702029/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3617 REAL_CONST(34546.878617/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3618 REAL_CONST(34565.057596/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3619 REAL_CONST(34583.238967/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3620 REAL_CONST(34601.422727/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3621 REAL_CONST(34619.608876/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3622 REAL_CONST(34637.797414/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3623 REAL_CONST(34655.988340/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3624 REAL_CONST(34674.181653/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3625 REAL_CONST(34692.377354/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3626 REAL_CONST(34710.575440/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3627 REAL_CONST(34728.775912/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3628 REAL_CONST(34746.978769/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3629 REAL_CONST(34765.184010/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3630 REAL_CONST(34783.391635/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3631 REAL_CONST(34801.601643/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3632 REAL_CONST(34819.814033/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3633 REAL_CONST(34838.028805/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3634 REAL_CONST(34856.245958/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3635 REAL_CONST(34874.465492/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3636 REAL_CONST(34892.687406/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3637 REAL_CONST(34910.911699/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3638 REAL_CONST(34929.138371/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3639 REAL_CONST(34947.367421/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3640 REAL_CONST(34965.598848/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3641 REAL_CONST(34983.832652/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3642 REAL_CONST(35002.068832/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3643 REAL_CONST(35020.307388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3644 REAL_CONST(35038.548319/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3645 REAL_CONST(35056.791624/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3646 REAL_CONST(35075.037303/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3647 REAL_CONST(35093.285355/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3648 REAL_CONST(35111.535779/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3649 REAL_CONST(35129.788576/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3650 REAL_CONST(35148.043743/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3651 REAL_CONST(35166.301282/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3652 REAL_CONST(35184.561190/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3653 REAL_CONST(35202.823468/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3654 REAL_CONST(35221.088114/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3655 REAL_CONST(35239.355129/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3656 REAL_CONST(35257.624511/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3657 REAL_CONST(35275.896260/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3658 REAL_CONST(35294.170376/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3659 REAL_CONST(35312.446857/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3660 REAL_CONST(35330.725704/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3661 REAL_CONST(35349.006915/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3662 REAL_CONST(35367.290490/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3663 REAL_CONST(35385.576428/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3664 REAL_CONST(35403.864729/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3665 REAL_CONST(35422.155392/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3666 REAL_CONST(35440.448416/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3667 REAL_CONST(35458.743801/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3668 REAL_CONST(35477.041547/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3669 REAL_CONST(35495.341652/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3670 REAL_CONST(35513.644116/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3671 REAL_CONST(35531.948938/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3672 REAL_CONST(35550.256119/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3673 REAL_CONST(35568.565656/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3674 REAL_CONST(35586.877550/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3675 REAL_CONST(35605.191800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3676 REAL_CONST(35623.508406/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3677 REAL_CONST(35641.827366/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3678 REAL_CONST(35660.148681/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3679 REAL_CONST(35678.472348/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3680 REAL_CONST(35696.798369/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3681 REAL_CONST(35715.126743/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3682 REAL_CONST(35733.457468/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3683 REAL_CONST(35751.790544/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3684 REAL_CONST(35770.125971/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3685 REAL_CONST(35788.463747/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3686 REAL_CONST(35806.803873/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3687 REAL_CONST(35825.146348/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3688 REAL_CONST(35843.491171/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3689 REAL_CONST(35861.838341/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3690 REAL_CONST(35880.187859/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3691 REAL_CONST(35898.539722/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3692 REAL_CONST(35916.893932/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3693 REAL_CONST(35935.250487/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3694 REAL_CONST(35953.609386/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3695 REAL_CONST(35971.970629/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3696 REAL_CONST(35990.334215/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3697 REAL_CONST(36008.700144/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3698 REAL_CONST(36027.068415/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3699 REAL_CONST(36045.439028/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3700 REAL_CONST(36063.811982/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3701 REAL_CONST(36082.187276/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3702 REAL_CONST(36100.564910/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3703 REAL_CONST(36118.944883/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3704 REAL_CONST(36137.327195/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3705 REAL_CONST(36155.711844/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3706 REAL_CONST(36174.098831/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3707 REAL_CONST(36192.488155/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3708 REAL_CONST(36210.879815/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3709 REAL_CONST(36229.273811/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3710 REAL_CONST(36247.670141/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3711 REAL_CONST(36266.068806/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3712 REAL_CONST(36284.469805/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3713 REAL_CONST(36302.873137/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3714 REAL_CONST(36321.278801/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3715 REAL_CONST(36339.686798/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3716 REAL_CONST(36358.097126/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3717 REAL_CONST(36376.509785/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3718 REAL_CONST(36394.924775/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3719 REAL_CONST(36413.342094/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3720 REAL_CONST(36431.761742/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3721 REAL_CONST(36450.183718/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3722 REAL_CONST(36468.608023/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3723 REAL_CONST(36487.034654/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3724 REAL_CONST(36505.463613/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3725 REAL_CONST(36523.894898/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3726 REAL_CONST(36542.328508/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3727 REAL_CONST(36560.764443/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3728 REAL_CONST(36579.202703/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3729 REAL_CONST(36597.643286/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3730 REAL_CONST(36616.086193/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3731 REAL_CONST(36634.531422/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3732 REAL_CONST(36652.978974/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3733 REAL_CONST(36671.428847/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3734 REAL_CONST(36689.881040/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3735 REAL_CONST(36708.335554/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3736 REAL_CONST(36726.792388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3737 REAL_CONST(36745.251541/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3738 REAL_CONST(36763.713012/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3739 REAL_CONST(36782.176802/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3740 REAL_CONST(36800.642909/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3741 REAL_CONST(36819.111332/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3742 REAL_CONST(36837.582072/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3743 REAL_CONST(36856.055127/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3744 REAL_CONST(36874.530498/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3745 REAL_CONST(36893.008183/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3746 REAL_CONST(36911.488182/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3747 REAL_CONST(36929.970494/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3748 REAL_CONST(36948.455119/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3749 REAL_CONST(36966.942056/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3750 REAL_CONST(36985.431305/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3751 REAL_CONST(37003.922865/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3752 REAL_CONST(37022.416735/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3753 REAL_CONST(37040.912915/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3754 REAL_CONST(37059.411404/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3755 REAL_CONST(37077.912202/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3756 REAL_CONST(37096.415309/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3757 REAL_CONST(37114.920722/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3758 REAL_CONST(37133.428443/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3759 REAL_CONST(37151.938470/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3760 REAL_CONST(37170.450803/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3761 REAL_CONST(37188.965441/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3762 REAL_CONST(37207.482384/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3763 REAL_CONST(37226.001631/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3764 REAL_CONST(37244.523182/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3765 REAL_CONST(37263.047035/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3766 REAL_CONST(37281.573191/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3767 REAL_CONST(37300.101648/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3768 REAL_CONST(37318.632407/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3769 REAL_CONST(37337.165467/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3770 REAL_CONST(37355.700827/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3771 REAL_CONST(37374.238486/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3772 REAL_CONST(37392.778444/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3773 REAL_CONST(37411.320701/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3774 REAL_CONST(37429.865255/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3775 REAL_CONST(37448.412107/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3776 REAL_CONST(37466.961255/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3777 REAL_CONST(37485.512699/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3778 REAL_CONST(37504.066439/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3779 REAL_CONST(37522.622474/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3780 REAL_CONST(37541.180803/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3781 REAL_CONST(37559.741427/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3782 REAL_CONST(37578.304343/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3783 REAL_CONST(37596.869552/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3784 REAL_CONST(37615.437054/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3785 REAL_CONST(37634.006846/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3786 REAL_CONST(37652.578930/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3787 REAL_CONST(37671.153305/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3788 REAL_CONST(37689.729969/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3789 REAL_CONST(37708.308922/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3790 REAL_CONST(37726.890165/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3791 REAL_CONST(37745.473695/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3792 REAL_CONST(37764.059513/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3793 REAL_CONST(37782.647619/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3794 REAL_CONST(37801.238010/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3795 REAL_CONST(37819.830688/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3796 REAL_CONST(37838.425651/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3797 REAL_CONST(37857.022899/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3798 REAL_CONST(37875.622431/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3799 REAL_CONST(37894.224246/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3800 REAL_CONST(37912.828345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3801 REAL_CONST(37931.434727/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3802 REAL_CONST(37950.043390/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3803 REAL_CONST(37968.654335/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3804 REAL_CONST(37987.267561/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3805 REAL_CONST(38005.883067/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3806 REAL_CONST(38024.500853/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3807 REAL_CONST(38043.120918/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3808 REAL_CONST(38061.743262/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3809 REAL_CONST(38080.367884/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3810 REAL_CONST(38098.994783/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3811 REAL_CONST(38117.623960/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3812 REAL_CONST(38136.255413/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3813 REAL_CONST(38154.889141/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3814 REAL_CONST(38173.525145/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3815 REAL_CONST(38192.163424/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3816 REAL_CONST(38210.803977/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3817 REAL_CONST(38229.446804/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3818 REAL_CONST(38248.091904/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3819 REAL_CONST(38266.739276/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3820 REAL_CONST(38285.388920/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3821 REAL_CONST(38304.040836/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3822 REAL_CONST(38322.695023/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3823 REAL_CONST(38341.351480/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3824 REAL_CONST(38360.010207/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3825 REAL_CONST(38378.671203/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3826 REAL_CONST(38397.334467/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3827 REAL_CONST(38416.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3828 REAL_CONST(38434.667800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3829 REAL_CONST(38453.337868/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3830 REAL_CONST(38472.010202/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3831 REAL_CONST(38490.684801/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3832 REAL_CONST(38509.361667/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3833 REAL_CONST(38528.040797/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3834 REAL_CONST(38546.722191/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3835 REAL_CONST(38565.405849/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3836 REAL_CONST(38584.091770/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3837 REAL_CONST(38602.779954/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3838 REAL_CONST(38621.470400/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3839 REAL_CONST(38640.163107/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3840 REAL_CONST(38658.858075/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3841 REAL_CONST(38677.555304/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3842 REAL_CONST(38696.254793/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3843 REAL_CONST(38714.956541/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3844 REAL_CONST(38733.660548/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3845 REAL_CONST(38752.366813/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3846 REAL_CONST(38771.075336/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3847 REAL_CONST(38789.786116/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3848 REAL_CONST(38808.499152/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3849 REAL_CONST(38827.214445/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3850 REAL_CONST(38845.931993/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3851 REAL_CONST(38864.651797/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3852 REAL_CONST(38883.373854/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3853 REAL_CONST(38902.098166/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3854 REAL_CONST(38920.824731/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3855 REAL_CONST(38939.553548/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3856 REAL_CONST(38958.284618/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3857 REAL_CONST(38977.017940/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3858 REAL_CONST(38995.753513/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3859 REAL_CONST(39014.491337/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3860 REAL_CONST(39033.231411/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3861 REAL_CONST(39051.973734/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3862 REAL_CONST(39070.718306/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3863 REAL_CONST(39089.465127/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3864 REAL_CONST(39108.214196/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3865 REAL_CONST(39126.965512/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3866 REAL_CONST(39145.719075/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3867 REAL_CONST(39164.474885/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3868 REAL_CONST(39183.232940/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3869 REAL_CONST(39201.993240/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3870 REAL_CONST(39220.755786/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3871 REAL_CONST(39239.520575/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3872 REAL_CONST(39258.287608/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3873 REAL_CONST(39277.056884/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3874 REAL_CONST(39295.828403/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3875 REAL_CONST(39314.602164/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3876 REAL_CONST(39333.378166/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3877 REAL_CONST(39352.156409/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3878 REAL_CONST(39370.936893/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3879 REAL_CONST(39389.719617/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3880 REAL_CONST(39408.504580/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3881 REAL_CONST(39427.291782/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3882 REAL_CONST(39446.081222/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3883 REAL_CONST(39464.872900/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3884 REAL_CONST(39483.666815/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3885 REAL_CONST(39502.462967/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3886 REAL_CONST(39521.261355/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3887 REAL_CONST(39540.061978/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3888 REAL_CONST(39558.864837/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3889 REAL_CONST(39577.669930/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3890 REAL_CONST(39596.477258/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3891 REAL_CONST(39615.286819/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3892 REAL_CONST(39634.098613/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3893 REAL_CONST(39652.912639/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3894 REAL_CONST(39671.728897/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3895 REAL_CONST(39690.547387/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3896 REAL_CONST(39709.368108/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3897 REAL_CONST(39728.191058/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3898 REAL_CONST(39747.016239/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3899 REAL_CONST(39765.843649/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3900 REAL_CONST(39784.673288/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3901 REAL_CONST(39803.505155/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3902 REAL_CONST(39822.339250/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3903 REAL_CONST(39841.175571/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3904 REAL_CONST(39860.014120/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3905 REAL_CONST(39878.854894/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3906 REAL_CONST(39897.697895/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3907 REAL_CONST(39916.543120/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3908 REAL_CONST(39935.390570/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3909 REAL_CONST(39954.240244/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3910 REAL_CONST(39973.092141/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3911 REAL_CONST(39991.946261/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3912 REAL_CONST(40010.802604/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3913 REAL_CONST(40029.661169/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3914 REAL_CONST(40048.521955/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3915 REAL_CONST(40067.384962/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3916 REAL_CONST(40086.250189/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3917 REAL_CONST(40105.117636/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3918 REAL_CONST(40123.987303/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3919 REAL_CONST(40142.859188/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3920 REAL_CONST(40161.733291/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3921 REAL_CONST(40180.609613/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3922 REAL_CONST(40199.488151/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3923 REAL_CONST(40218.368906/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3924 REAL_CONST(40237.251878/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3925 REAL_CONST(40256.137065/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3926 REAL_CONST(40275.024467/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3927 REAL_CONST(40293.914083/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3928 REAL_CONST(40312.805914/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3929 REAL_CONST(40331.699959/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3930 REAL_CONST(40350.596216/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3931 REAL_CONST(40369.494686/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3932 REAL_CONST(40388.395368/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3933 REAL_CONST(40407.298262/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3934 REAL_CONST(40426.203367/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3935 REAL_CONST(40445.110682/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3936 REAL_CONST(40464.020207/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3937 REAL_CONST(40482.931941/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3938 REAL_CONST(40501.845885/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3939 REAL_CONST(40520.762036/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3940 REAL_CONST(40539.680396/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3941 REAL_CONST(40558.600963/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3942 REAL_CONST(40577.523737/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3943 REAL_CONST(40596.448718/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3944 REAL_CONST(40615.375904/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3945 REAL_CONST(40634.305295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3946 REAL_CONST(40653.236891/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3947 REAL_CONST(40672.170692/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3948 REAL_CONST(40691.106696/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3949 REAL_CONST(40710.044904/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3950 REAL_CONST(40728.985314/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3951 REAL_CONST(40747.927927/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3952 REAL_CONST(40766.872741/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3953 REAL_CONST(40785.819757/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3954 REAL_CONST(40804.768973/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3955 REAL_CONST(40823.720390/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3956 REAL_CONST(40842.674006/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3957 REAL_CONST(40861.629821/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3958 REAL_CONST(40880.587835/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3959 REAL_CONST(40899.548048/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3960 REAL_CONST(40918.510457/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3961 REAL_CONST(40937.475064/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3962 REAL_CONST(40956.441868/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3963 REAL_CONST(40975.410868/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3964 REAL_CONST(40994.382063/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3965 REAL_CONST(41013.355454/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3966 REAL_CONST(41032.331039/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3967 REAL_CONST(41051.308818/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3968 REAL_CONST(41070.288790/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3969 REAL_CONST(41089.270956/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3970 REAL_CONST(41108.255315/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3971 REAL_CONST(41127.241865/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3972 REAL_CONST(41146.230607/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3973 REAL_CONST(41165.221540/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3974 REAL_CONST(41184.214664/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3975 REAL_CONST(41203.209977/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3976 REAL_CONST(41222.207480/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3977 REAL_CONST(41241.207173/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3978 REAL_CONST(41260.209053/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3979 REAL_CONST(41279.213122/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3980 REAL_CONST(41298.219378/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3981 REAL_CONST(41317.227822/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3982 REAL_CONST(41336.238451/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3983 REAL_CONST(41355.251267/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3984 REAL_CONST(41374.266268/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3985 REAL_CONST(41393.283455/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3986 REAL_CONST(41412.302826/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3987 REAL_CONST(41431.324380/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3988 REAL_CONST(41450.348119/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3989 REAL_CONST(41469.374040/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3990 REAL_CONST(41488.402144/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3991 REAL_CONST(41507.432430/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3992 REAL_CONST(41526.464897/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3993 REAL_CONST(41545.499545/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3994 REAL_CONST(41564.536374/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3995 REAL_CONST(41583.575383/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3996 REAL_CONST(41602.616571/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3997 REAL_CONST(41621.659938/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3998 REAL_CONST(41640.705484/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
3999 REAL_CONST(41659.753208/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4000 REAL_CONST(41678.803109/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4001 REAL_CONST(41697.855187/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4002 REAL_CONST(41716.909442/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4003 REAL_CONST(41735.965873/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4004 REAL_CONST(41755.024479/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4005 REAL_CONST(41774.085261/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4006 REAL_CONST(41793.148217/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4007 REAL_CONST(41812.213347/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4008 REAL_CONST(41831.280650/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4009 REAL_CONST(41850.350126/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4010 REAL_CONST(41869.421775/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4011 REAL_CONST(41888.495597/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4012 REAL_CONST(41907.571589/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4013 REAL_CONST(41926.649753/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4014 REAL_CONST(41945.730087/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4015 REAL_CONST(41964.812591/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4016 REAL_CONST(41983.897265/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4017 REAL_CONST(42002.984108/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4018 REAL_CONST(42022.073120/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4019 REAL_CONST(42041.164299/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4020 REAL_CONST(42060.257647/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4021 REAL_CONST(42079.353161/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4022 REAL_CONST(42098.450842/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4023 REAL_CONST(42117.550689/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4024 REAL_CONST(42136.652702/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4025 REAL_CONST(42155.756880/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4026 REAL_CONST(42174.863222/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4027 REAL_CONST(42193.971729/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4028 REAL_CONST(42213.082399/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4029 REAL_CONST(42232.195233/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4030 REAL_CONST(42251.310229/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4031 REAL_CONST(42270.427388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4032 REAL_CONST(42289.546708/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4033 REAL_CONST(42308.668190/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4034 REAL_CONST(42327.791832/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4035 REAL_CONST(42346.917634/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4036 REAL_CONST(42366.045596/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4037 REAL_CONST(42385.175718/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4038 REAL_CONST(42404.307998/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4039 REAL_CONST(42423.442437/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4040 REAL_CONST(42442.579033/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4041 REAL_CONST(42461.717787/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4042 REAL_CONST(42480.858697/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4043 REAL_CONST(42500.001764/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4044 REAL_CONST(42519.146987/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4045 REAL_CONST(42538.294365/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4046 REAL_CONST(42557.443898/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4047 REAL_CONST(42576.595586/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4048 REAL_CONST(42595.749427/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4049 REAL_CONST(42614.905422/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4050 REAL_CONST(42634.063570/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4051 REAL_CONST(42653.223870/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4052 REAL_CONST(42672.386323/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4053 REAL_CONST(42691.550926/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4054 REAL_CONST(42710.717681/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4055 REAL_CONST(42729.886587/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4056 REAL_CONST(42749.057642/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4057 REAL_CONST(42768.230847/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4058 REAL_CONST(42787.406201/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4059 REAL_CONST(42806.583704/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4060 REAL_CONST(42825.763355/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4061 REAL_CONST(42844.945154/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4062 REAL_CONST(42864.129099/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4063 REAL_CONST(42883.315192/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4064 REAL_CONST(42902.503431/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4065 REAL_CONST(42921.693815/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4066 REAL_CONST(42940.886345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4067 REAL_CONST(42960.081019/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4068 REAL_CONST(42979.277838/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4069 REAL_CONST(42998.476800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4070 REAL_CONST(43017.677906/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4071 REAL_CONST(43036.881155/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4072 REAL_CONST(43056.086546/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4073 REAL_CONST(43075.294079/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4074 REAL_CONST(43094.503754/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4075 REAL_CONST(43113.715569/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4076 REAL_CONST(43132.929525/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4077 REAL_CONST(43152.145621/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4078 REAL_CONST(43171.363856/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4079 REAL_CONST(43190.584231/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4080 REAL_CONST(43209.806744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4081 REAL_CONST(43229.031395/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4082 REAL_CONST(43248.258183/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4083 REAL_CONST(43267.487109/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4084 REAL_CONST(43286.718172/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4085 REAL_CONST(43305.951370/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4086 REAL_CONST(43325.186705/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4087 REAL_CONST(43344.424175/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4088 REAL_CONST(43363.663779/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4089 REAL_CONST(43382.905518/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4090 REAL_CONST(43402.149390/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4091 REAL_CONST(43421.395396/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4092 REAL_CONST(43440.643535/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4093 REAL_CONST(43459.893806/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4094 REAL_CONST(43479.146209/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4095 REAL_CONST(43498.400744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4096 REAL_CONST(43517.657409/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4097 REAL_CONST(43536.916206/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4098 REAL_CONST(43556.177132/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4099 REAL_CONST(43575.440187/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4100 REAL_CONST(43594.705372/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4101 REAL_CONST(43613.972686/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4102 REAL_CONST(43633.242127/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4103 REAL_CONST(43652.513697/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4104 REAL_CONST(43671.787393/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4105 REAL_CONST(43691.063216/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4106 REAL_CONST(43710.341166/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4107 REAL_CONST(43729.621241/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4108 REAL_CONST(43748.903442/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4109 REAL_CONST(43768.187767/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4110 REAL_CONST(43787.474217/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4111 REAL_CONST(43806.762791/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4112 REAL_CONST(43826.053489/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4113 REAL_CONST(43845.346309/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4114 REAL_CONST(43864.641252/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4115 REAL_CONST(43883.938317/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4116 REAL_CONST(43903.237504/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4117 REAL_CONST(43922.538812/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4118 REAL_CONST(43941.842240/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4119 REAL_CONST(43961.147789/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4120 REAL_CONST(43980.455457/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4121 REAL_CONST(43999.765245/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4122 REAL_CONST(44019.077151/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4123 REAL_CONST(44038.391176/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4124 REAL_CONST(44057.707319/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4125 REAL_CONST(44077.025579/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4126 REAL_CONST(44096.345956/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4127 REAL_CONST(44115.668450/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4128 REAL_CONST(44134.993059/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4129 REAL_CONST(44154.319784/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4130 REAL_CONST(44173.648625/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4131 REAL_CONST(44192.979580/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4132 REAL_CONST(44212.312649/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4133 REAL_CONST(44231.647831/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4134 REAL_CONST(44250.985127/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4135 REAL_CONST(44270.324536/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4136 REAL_CONST(44289.666057/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4137 REAL_CONST(44309.009690/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4138 REAL_CONST(44328.355435/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4139 REAL_CONST(44347.703290/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4140 REAL_CONST(44367.053256/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4141 REAL_CONST(44386.405332/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4142 REAL_CONST(44405.759517/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4143 REAL_CONST(44425.115812/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4144 REAL_CONST(44444.474215/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4145 REAL_CONST(44463.834726/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4146 REAL_CONST(44483.197346/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4147 REAL_CONST(44502.562072/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4148 REAL_CONST(44521.928905/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4149 REAL_CONST(44541.297845/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4150 REAL_CONST(44560.668890/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4151 REAL_CONST(44580.042041/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4152 REAL_CONST(44599.417297/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4153 REAL_CONST(44618.794657/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4154 REAL_CONST(44638.174121/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4155 REAL_CONST(44657.555689/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4156 REAL_CONST(44676.939361/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4157 REAL_CONST(44696.325134/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4158 REAL_CONST(44715.713011/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4159 REAL_CONST(44735.102988/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4160 REAL_CONST(44754.495068/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4161 REAL_CONST(44773.889248/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4162 REAL_CONST(44793.285528/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4163 REAL_CONST(44812.683909/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4164 REAL_CONST(44832.084388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4165 REAL_CONST(44851.486967/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4166 REAL_CONST(44870.891645/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4167 REAL_CONST(44890.298421/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4168 REAL_CONST(44909.707294/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4169 REAL_CONST(44929.118265/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4170 REAL_CONST(44948.531332/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4171 REAL_CONST(44967.946496/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4172 REAL_CONST(44987.363756/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4173 REAL_CONST(45006.783111/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4174 REAL_CONST(45026.204561/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4175 REAL_CONST(45045.628105/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4176 REAL_CONST(45065.053744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4177 REAL_CONST(45084.481476/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4178 REAL_CONST(45103.911302/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4179 REAL_CONST(45123.343220/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4180 REAL_CONST(45142.777230/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4181 REAL_CONST(45162.213333/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4182 REAL_CONST(45181.651526/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4183 REAL_CONST(45201.091811/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4184 REAL_CONST(45220.534186/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4185 REAL_CONST(45239.978651/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4186 REAL_CONST(45259.425205/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4187 REAL_CONST(45278.873849/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4188 REAL_CONST(45298.324581/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4189 REAL_CONST(45317.777402/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4190 REAL_CONST(45337.232310/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4191 REAL_CONST(45356.689306/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4192 REAL_CONST(45376.148388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4193 REAL_CONST(45395.609557/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4194 REAL_CONST(45415.072812/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4195 REAL_CONST(45434.538153/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4196 REAL_CONST(45454.005578/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4197 REAL_CONST(45473.475088/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4198 REAL_CONST(45492.946683/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4199 REAL_CONST(45512.420361/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4200 REAL_CONST(45531.896122/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4201 REAL_CONST(45551.373967/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4202 REAL_CONST(45570.853893/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4203 REAL_CONST(45590.335902/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4204 REAL_CONST(45609.819992/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4205 REAL_CONST(45629.306164/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4206 REAL_CONST(45648.794416/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4207 REAL_CONST(45668.284748/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4208 REAL_CONST(45687.777160/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4209 REAL_CONST(45707.271651/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4210 REAL_CONST(45726.768221/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4211 REAL_CONST(45746.266869/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4212 REAL_CONST(45765.767596/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4213 REAL_CONST(45785.270400/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4214 REAL_CONST(45804.775281/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4215 REAL_CONST(45824.282238/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4216 REAL_CONST(45843.791272/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4217 REAL_CONST(45863.302382/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4218 REAL_CONST(45882.815567/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4219 REAL_CONST(45902.330827/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4220 REAL_CONST(45921.848161/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4221 REAL_CONST(45941.367569/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4222 REAL_CONST(45960.889051/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4223 REAL_CONST(45980.412606/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4224 REAL_CONST(45999.938233/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4225 REAL_CONST(46019.465933/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4226 REAL_CONST(46038.995705/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4227 REAL_CONST(46058.527548/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4228 REAL_CONST(46078.061462/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4229 REAL_CONST(46097.597446/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4230 REAL_CONST(46117.135501/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4231 REAL_CONST(46136.675625/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4232 REAL_CONST(46156.217818/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4233 REAL_CONST(46175.762080/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4234 REAL_CONST(46195.308410/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4235 REAL_CONST(46214.856808/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4236 REAL_CONST(46234.407273/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4237 REAL_CONST(46253.959806/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4238 REAL_CONST(46273.514405/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4239 REAL_CONST(46293.071070/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4240 REAL_CONST(46312.629800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4241 REAL_CONST(46332.190596/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4242 REAL_CONST(46351.753457/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4243 REAL_CONST(46371.318382/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4244 REAL_CONST(46390.885371/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4245 REAL_CONST(46410.454424/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4246 REAL_CONST(46430.025539/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4247 REAL_CONST(46449.598717/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4248 REAL_CONST(46469.173958/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4249 REAL_CONST(46488.751260/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4250 REAL_CONST(46508.330623/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4251 REAL_CONST(46527.912048/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4252 REAL_CONST(46547.495532/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4253 REAL_CONST(46567.081077/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4254 REAL_CONST(46586.668681/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4255 REAL_CONST(46606.258345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4256 REAL_CONST(46625.850067/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4257 REAL_CONST(46645.443847/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4258 REAL_CONST(46665.039686/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4259 REAL_CONST(46684.637581/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4260 REAL_CONST(46704.237534/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4261 REAL_CONST(46723.839543/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4262 REAL_CONST(46743.443609/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4263 REAL_CONST(46763.049730/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4264 REAL_CONST(46782.657906/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4265 REAL_CONST(46802.268137/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4266 REAL_CONST(46821.880423/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4267 REAL_CONST(46841.494762/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4268 REAL_CONST(46861.111155/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4269 REAL_CONST(46880.729601/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4270 REAL_CONST(46900.350100/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4271 REAL_CONST(46919.972651/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4272 REAL_CONST(46939.597254/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4273 REAL_CONST(46959.223908/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4274 REAL_CONST(46978.852613/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4275 REAL_CONST(46998.483369/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4276 REAL_CONST(47018.116175/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4277 REAL_CONST(47037.751030/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4278 REAL_CONST(47057.387935/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4279 REAL_CONST(47077.026889/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4280 REAL_CONST(47096.667891/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4281 REAL_CONST(47116.310941/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4282 REAL_CONST(47135.956038/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4283 REAL_CONST(47155.603183/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4284 REAL_CONST(47175.252374/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4285 REAL_CONST(47194.903611/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4286 REAL_CONST(47214.556895/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4287 REAL_CONST(47234.212223/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4288 REAL_CONST(47253.869597/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4289 REAL_CONST(47273.529016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4290 REAL_CONST(47293.190478/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4291 REAL_CONST(47312.853984/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4292 REAL_CONST(47332.519533/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4293 REAL_CONST(47352.187126/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4294 REAL_CONST(47371.856760/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4295 REAL_CONST(47391.528437/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4296 REAL_CONST(47411.202155/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4297 REAL_CONST(47430.877915/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4298 REAL_CONST(47450.555715/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4299 REAL_CONST(47470.235556/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4300 REAL_CONST(47489.917436/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4301 REAL_CONST(47509.601356/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4302 REAL_CONST(47529.287315/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4303 REAL_CONST(47548.975312/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4304 REAL_CONST(47568.665348/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4305 REAL_CONST(47588.357421/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4306 REAL_CONST(47608.051532/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4307 REAL_CONST(47627.747680/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4308 REAL_CONST(47647.445864/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4309 REAL_CONST(47667.146085/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4310 REAL_CONST(47686.848341/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4311 REAL_CONST(47706.552632/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4312 REAL_CONST(47726.258958/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4313 REAL_CONST(47745.967319/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4314 REAL_CONST(47765.677714/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4315 REAL_CONST(47785.390142/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4316 REAL_CONST(47805.104603/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4317 REAL_CONST(47824.821097/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4318 REAL_CONST(47844.539623/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4319 REAL_CONST(47864.260181/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4320 REAL_CONST(47883.982771/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4321 REAL_CONST(47903.707392/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4322 REAL_CONST(47923.434043/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4323 REAL_CONST(47943.162725/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4324 REAL_CONST(47962.893436/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4325 REAL_CONST(47982.626177/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4326 REAL_CONST(48002.360947/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4327 REAL_CONST(48022.097745/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4328 REAL_CONST(48041.836572/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4329 REAL_CONST(48061.577426/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4330 REAL_CONST(48081.320307/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4331 REAL_CONST(48101.065216/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4332 REAL_CONST(48120.812151/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4333 REAL_CONST(48140.561112/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4334 REAL_CONST(48160.312098/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4335 REAL_CONST(48180.065110/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4336 REAL_CONST(48199.820146/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4337 REAL_CONST(48219.577207/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4338 REAL_CONST(48239.336292/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4339 REAL_CONST(48259.097401/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4340 REAL_CONST(48278.860533/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4341 REAL_CONST(48298.625687/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4342 REAL_CONST(48318.392864/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4343 REAL_CONST(48338.162062/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4344 REAL_CONST(48357.933282/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4345 REAL_CONST(48377.706524/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4346 REAL_CONST(48397.481785/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4347 REAL_CONST(48417.259068/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4348 REAL_CONST(48437.038369/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4349 REAL_CONST(48456.819691/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4350 REAL_CONST(48476.603031/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4351 REAL_CONST(48496.388390/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4352 REAL_CONST(48516.175767/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4353 REAL_CONST(48535.965162/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4354 REAL_CONST(48555.756575/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4355 REAL_CONST(48575.550004/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4356 REAL_CONST(48595.345450/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4357 REAL_CONST(48615.142912/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4358 REAL_CONST(48634.942390/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4359 REAL_CONST(48654.743883/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4360 REAL_CONST(48674.547391/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4361 REAL_CONST(48694.352913/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4362 REAL_CONST(48714.160450/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4363 REAL_CONST(48733.970000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4364 REAL_CONST(48753.781563/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4365 REAL_CONST(48773.595140/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4366 REAL_CONST(48793.410728/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4367 REAL_CONST(48813.228329/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4368 REAL_CONST(48833.047942/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4369 REAL_CONST(48852.869565/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4370 REAL_CONST(48872.693200/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4371 REAL_CONST(48892.518845/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4372 REAL_CONST(48912.346500/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4373 REAL_CONST(48932.176164/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4374 REAL_CONST(48952.007838/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4375 REAL_CONST(48971.841520/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4376 REAL_CONST(48991.677211/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4377 REAL_CONST(49011.514910/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4378 REAL_CONST(49031.354616/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4379 REAL_CONST(49051.196330/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4380 REAL_CONST(49071.040050/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4381 REAL_CONST(49090.885777/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4382 REAL_CONST(49110.733509/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4383 REAL_CONST(49130.583247/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4384 REAL_CONST(49150.434991/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4385 REAL_CONST(49170.288739/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4386 REAL_CONST(49190.144491/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4387 REAL_CONST(49210.002247/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4388 REAL_CONST(49229.862007/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4389 REAL_CONST(49249.723769/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4390 REAL_CONST(49269.587535/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4391 REAL_CONST(49289.453303/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4392 REAL_CONST(49309.321072/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4393 REAL_CONST(49329.190843/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4394 REAL_CONST(49349.062616/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4395 REAL_CONST(49368.936388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4396 REAL_CONST(49388.812162/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4397 REAL_CONST(49408.689935/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4398 REAL_CONST(49428.569707/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4399 REAL_CONST(49448.451479/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4400 REAL_CONST(49468.335249/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4401 REAL_CONST(49488.221018/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4402 REAL_CONST(49508.108784/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4403 REAL_CONST(49527.998548/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4404 REAL_CONST(49547.890309/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4405 REAL_CONST(49567.784066/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4406 REAL_CONST(49587.679820/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4407 REAL_CONST(49607.577570/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4408 REAL_CONST(49627.477315/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4409 REAL_CONST(49647.379055/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4410 REAL_CONST(49667.282790/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4411 REAL_CONST(49687.188520/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4412 REAL_CONST(49707.096243/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4413 REAL_CONST(49727.005959/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4414 REAL_CONST(49746.917669/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4415 REAL_CONST(49766.831371/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4416 REAL_CONST(49786.747065/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4417 REAL_CONST(49806.664752/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4418 REAL_CONST(49826.584430/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4419 REAL_CONST(49846.506098/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4420 REAL_CONST(49866.429758/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4421 REAL_CONST(49886.355408/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4422 REAL_CONST(49906.283048/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4423 REAL_CONST(49926.212677/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4424 REAL_CONST(49946.144295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4425 REAL_CONST(49966.077902/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4426 REAL_CONST(49986.013497/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4427 REAL_CONST(50005.951081/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4428 REAL_CONST(50025.890651/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4429 REAL_CONST(50045.832209/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4430 REAL_CONST(50065.775753/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4431 REAL_CONST(50085.721284/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4432 REAL_CONST(50105.668801/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4433 REAL_CONST(50125.618303/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4434 REAL_CONST(50145.569791/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4435 REAL_CONST(50165.523263/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4436 REAL_CONST(50185.478719/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4437 REAL_CONST(50205.436159/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4438 REAL_CONST(50225.395583/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4439 REAL_CONST(50245.356990/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4440 REAL_CONST(50265.320380/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4441 REAL_CONST(50285.285752/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4442 REAL_CONST(50305.253106/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4443 REAL_CONST(50325.222442/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4444 REAL_CONST(50345.193759/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4445 REAL_CONST(50365.167057/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4446 REAL_CONST(50385.142335/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4447 REAL_CONST(50405.119593/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4448 REAL_CONST(50425.098831/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4449 REAL_CONST(50445.080047/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4450 REAL_CONST(50465.063243/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4451 REAL_CONST(50485.048417/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4452 REAL_CONST(50505.035570/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4453 REAL_CONST(50525.024699/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4454 REAL_CONST(50545.015807/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4455 REAL_CONST(50565.008891/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4456 REAL_CONST(50585.003951/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4457 REAL_CONST(50605.000988/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4458 REAL_CONST(50625.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4459 REAL_CONST(50645.000988/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4460 REAL_CONST(50665.003950/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4461 REAL_CONST(50685.008887/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4462 REAL_CONST(50705.015798/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4463 REAL_CONST(50725.024683/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4464 REAL_CONST(50745.035542/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4465 REAL_CONST(50765.048373/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4466 REAL_CONST(50785.063177/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4467 REAL_CONST(50805.079953/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4468 REAL_CONST(50825.098700/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4469 REAL_CONST(50845.119420/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4470 REAL_CONST(50865.142110/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4471 REAL_CONST(50885.166771/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4472 REAL_CONST(50905.193402/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4473 REAL_CONST(50925.222003/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4474 REAL_CONST(50945.252574/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4475 REAL_CONST(50965.285113/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4476 REAL_CONST(50985.319622/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4477 REAL_CONST(51005.356098/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4478 REAL_CONST(51025.394543/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4479 REAL_CONST(51045.434955/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4480 REAL_CONST(51065.477334/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4481 REAL_CONST(51085.521680/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4482 REAL_CONST(51105.567993/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4483 REAL_CONST(51125.616271/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4484 REAL_CONST(51145.666515/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4485 REAL_CONST(51165.718724/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4486 REAL_CONST(51185.772898/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4487 REAL_CONST(51205.829037/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4488 REAL_CONST(51225.887140/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4489 REAL_CONST(51245.947206/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4490 REAL_CONST(51266.009235/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4491 REAL_CONST(51286.073228/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4492 REAL_CONST(51306.139183/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4493 REAL_CONST(51326.207100/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4494 REAL_CONST(51346.276979/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4495 REAL_CONST(51366.348820/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4496 REAL_CONST(51386.422621/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4497 REAL_CONST(51406.498383/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4498 REAL_CONST(51426.576105/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4499 REAL_CONST(51446.655787/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4500 REAL_CONST(51466.737429/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4501 REAL_CONST(51486.821030/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4502 REAL_CONST(51506.906589/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4503 REAL_CONST(51526.994107/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4504 REAL_CONST(51547.083582/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4505 REAL_CONST(51567.175016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4506 REAL_CONST(51587.268406/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4507 REAL_CONST(51607.363753/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4508 REAL_CONST(51627.461057/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4509 REAL_CONST(51647.560316/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4510 REAL_CONST(51667.661532/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4511 REAL_CONST(51687.764702/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4512 REAL_CONST(51707.869828/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4513 REAL_CONST(51727.976908/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4514 REAL_CONST(51748.085942/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4515 REAL_CONST(51768.196930/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4516 REAL_CONST(51788.309871/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4517 REAL_CONST(51808.424765/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4518 REAL_CONST(51828.541612/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4519 REAL_CONST(51848.660411/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4520 REAL_CONST(51868.781162/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4521 REAL_CONST(51888.903864/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4522 REAL_CONST(51909.028518/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4523 REAL_CONST(51929.155122/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4524 REAL_CONST(51949.283677/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4525 REAL_CONST(51969.414181/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4526 REAL_CONST(51989.546636/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4527 REAL_CONST(52009.681039/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4528 REAL_CONST(52029.817391/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4529 REAL_CONST(52049.955692/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4530 REAL_CONST(52070.095941/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4531 REAL_CONST(52090.238137/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4532 REAL_CONST(52110.382281/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4533 REAL_CONST(52130.528372/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4534 REAL_CONST(52150.676409/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4535 REAL_CONST(52170.826393/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4536 REAL_CONST(52190.978322/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4537 REAL_CONST(52211.132197/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4538 REAL_CONST(52231.288017/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4539 REAL_CONST(52251.445781/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4540 REAL_CONST(52271.605490/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4541 REAL_CONST(52291.767143/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4542 REAL_CONST(52311.930739/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4543 REAL_CONST(52332.096279/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4544 REAL_CONST(52352.263761/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4545 REAL_CONST(52372.433186/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4546 REAL_CONST(52392.604553/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4547 REAL_CONST(52412.777862/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4548 REAL_CONST(52432.953112/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4549 REAL_CONST(52453.130303/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4550 REAL_CONST(52473.309434/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4551 REAL_CONST(52493.490506/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4552 REAL_CONST(52513.673518/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4553 REAL_CONST(52533.858469/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4554 REAL_CONST(52554.045359/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4555 REAL_CONST(52574.234188/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4556 REAL_CONST(52594.424955/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4557 REAL_CONST(52614.617660/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4558 REAL_CONST(52634.812303/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4559 REAL_CONST(52655.008883/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4560 REAL_CONST(52675.207400/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4561 REAL_CONST(52695.407853/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4562 REAL_CONST(52715.610242/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4563 REAL_CONST(52735.814568/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4564 REAL_CONST(52756.020828/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4565 REAL_CONST(52776.229024/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4566 REAL_CONST(52796.439154/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4567 REAL_CONST(52816.651218/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4568 REAL_CONST(52836.865217/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4569 REAL_CONST(52857.081149/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4570 REAL_CONST(52877.299014/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4571 REAL_CONST(52897.518811/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4572 REAL_CONST(52917.740542/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4573 REAL_CONST(52937.964204/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4574 REAL_CONST(52958.189798/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4575 REAL_CONST(52978.417323/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4576 REAL_CONST(52998.646779/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4577 REAL_CONST(53018.878166/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4578 REAL_CONST(53039.111483/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4579 REAL_CONST(53059.346730/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4580 REAL_CONST(53079.583906/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4581 REAL_CONST(53099.823011/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4582 REAL_CONST(53120.064045/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4583 REAL_CONST(53140.307008/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4584 REAL_CONST(53160.551898/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4585 REAL_CONST(53180.798716/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4586 REAL_CONST(53201.047462/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4587 REAL_CONST(53221.298134/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4588 REAL_CONST(53241.550732/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4589 REAL_CONST(53261.805257/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4590 REAL_CONST(53282.061708/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4591 REAL_CONST(53302.320084/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4592 REAL_CONST(53322.580385/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4593 REAL_CONST(53342.842611/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4594 REAL_CONST(53363.106761/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4595 REAL_CONST(53383.372835/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4596 REAL_CONST(53403.640833/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4597 REAL_CONST(53423.910754/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4598 REAL_CONST(53444.182598/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4599 REAL_CONST(53464.456364/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4600 REAL_CONST(53484.732053/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4601 REAL_CONST(53505.009663/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4602 REAL_CONST(53525.289195/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4603 REAL_CONST(53545.570648/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4604 REAL_CONST(53565.854021/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4605 REAL_CONST(53586.139315/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4606 REAL_CONST(53606.426528/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4607 REAL_CONST(53626.715662/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4608 REAL_CONST(53647.006714/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4609 REAL_CONST(53667.299685/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4610 REAL_CONST(53687.594575/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4611 REAL_CONST(53707.891383/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4612 REAL_CONST(53728.190109/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4613 REAL_CONST(53748.490752/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4614 REAL_CONST(53768.793313/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4615 REAL_CONST(53789.097790/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4616 REAL_CONST(53809.404183/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4617 REAL_CONST(53829.712492/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4618 REAL_CONST(53850.022717/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4619 REAL_CONST(53870.334857/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4620 REAL_CONST(53890.648912/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4621 REAL_CONST(53910.964882/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4622 REAL_CONST(53931.282765/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4623 REAL_CONST(53951.602563/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4624 REAL_CONST(53971.924274/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4625 REAL_CONST(53992.247898/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4626 REAL_CONST(54012.573434/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4627 REAL_CONST(54032.900883/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4628 REAL_CONST(54053.230245/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4629 REAL_CONST(54073.561517/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4630 REAL_CONST(54093.894701/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4631 REAL_CONST(54114.229796/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4632 REAL_CONST(54134.566802/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4633 REAL_CONST(54154.905717/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4634 REAL_CONST(54175.246543/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4635 REAL_CONST(54195.589278/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4636 REAL_CONST(54215.933922/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4637 REAL_CONST(54236.280475/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4638 REAL_CONST(54256.628937/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4639 REAL_CONST(54276.979306/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4640 REAL_CONST(54297.331583/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4641 REAL_CONST(54317.685768/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4642 REAL_CONST(54338.041859/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4643 REAL_CONST(54358.399857/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4644 REAL_CONST(54378.759761/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4645 REAL_CONST(54399.121572/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4646 REAL_CONST(54419.485287/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4647 REAL_CONST(54439.850908/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4648 REAL_CONST(54460.218434/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4649 REAL_CONST(54480.587865/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4650 REAL_CONST(54500.959199/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4651 REAL_CONST(54521.332437/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4652 REAL_CONST(54541.707579/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4653 REAL_CONST(54562.084624/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4654 REAL_CONST(54582.463571/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4655 REAL_CONST(54602.844421/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4656 REAL_CONST(54623.227173/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4657 REAL_CONST(54643.611826/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4658 REAL_CONST(54663.998381/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4659 REAL_CONST(54684.386836/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4660 REAL_CONST(54704.777193/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4661 REAL_CONST(54725.169449/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4662 REAL_CONST(54745.563605/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4663 REAL_CONST(54765.959661/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4664 REAL_CONST(54786.357616/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4665 REAL_CONST(54806.757470/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4666 REAL_CONST(54827.159222/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4667 REAL_CONST(54847.562872/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4668 REAL_CONST(54867.968421/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4669 REAL_CONST(54888.375866/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4670 REAL_CONST(54908.785209/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4671 REAL_CONST(54929.196448/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4672 REAL_CONST(54949.609583/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4673 REAL_CONST(54970.024615/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4674 REAL_CONST(54990.441542/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4675 REAL_CONST(55010.860365/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4676 REAL_CONST(55031.281082/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4677 REAL_CONST(55051.703694/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4678 REAL_CONST(55072.128200/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4679 REAL_CONST(55092.554600/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4680 REAL_CONST(55112.982894/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4681 REAL_CONST(55133.413081/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4682 REAL_CONST(55153.845160/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4683 REAL_CONST(55174.279132/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4684 REAL_CONST(55194.714997/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4685 REAL_CONST(55215.152753/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4686 REAL_CONST(55235.592400/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4687 REAL_CONST(55256.033938/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4688 REAL_CONST(55276.477368/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4689 REAL_CONST(55296.922687/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4690 REAL_CONST(55317.369897/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4691 REAL_CONST(55337.818996/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4692 REAL_CONST(55358.269985/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4693 REAL_CONST(55378.722862/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4694 REAL_CONST(55399.177628/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4695 REAL_CONST(55419.634283/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4696 REAL_CONST(55440.092825/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4697 REAL_CONST(55460.553255/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4698 REAL_CONST(55481.015572/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4699 REAL_CONST(55501.479776/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4700 REAL_CONST(55521.945867/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4701 REAL_CONST(55542.413844/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4702 REAL_CONST(55562.883706/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4703 REAL_CONST(55583.355455/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4704 REAL_CONST(55603.829088/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4705 REAL_CONST(55624.304606/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4706 REAL_CONST(55644.782009/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4707 REAL_CONST(55665.261295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4708 REAL_CONST(55685.742466/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4709 REAL_CONST(55706.225519/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4710 REAL_CONST(55726.710456/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4711 REAL_CONST(55747.197276/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4712 REAL_CONST(55767.685978/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4713 REAL_CONST(55788.176562/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4714 REAL_CONST(55808.669028/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4715 REAL_CONST(55829.163375/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4716 REAL_CONST(55849.659603/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4717 REAL_CONST(55870.157711/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4718 REAL_CONST(55890.657700/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4719 REAL_CONST(55911.159569/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4720 REAL_CONST(55931.663318/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4721 REAL_CONST(55952.168946/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4722 REAL_CONST(55972.676452/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4723 REAL_CONST(55993.185838/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4724 REAL_CONST(56013.697101/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4725 REAL_CONST(56034.210243/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4726 REAL_CONST(56054.725262/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4727 REAL_CONST(56075.242158/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4728 REAL_CONST(56095.760931/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4729 REAL_CONST(56116.281580/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4730 REAL_CONST(56136.804106/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4731 REAL_CONST(56157.328508/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4732 REAL_CONST(56177.854785/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4733 REAL_CONST(56198.382937/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4734 REAL_CONST(56218.912964/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4735 REAL_CONST(56239.444865/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4736 REAL_CONST(56259.978641/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4737 REAL_CONST(56280.514290/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4738 REAL_CONST(56301.051813/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4739 REAL_CONST(56321.591209/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4740 REAL_CONST(56342.132478/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4741 REAL_CONST(56362.675619/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4742 REAL_CONST(56383.220632/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4743 REAL_CONST(56403.767517/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4744 REAL_CONST(56424.316273/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4745 REAL_CONST(56444.866900/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4746 REAL_CONST(56465.419398/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4747 REAL_CONST(56485.973766/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4748 REAL_CONST(56506.530005/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4749 REAL_CONST(56527.088113/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4750 REAL_CONST(56547.648090/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4751 REAL_CONST(56568.209937/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4752 REAL_CONST(56588.773652/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4753 REAL_CONST(56609.339235/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4754 REAL_CONST(56629.906686/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4755 REAL_CONST(56650.476005/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4756 REAL_CONST(56671.047192/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4757 REAL_CONST(56691.620245/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4758 REAL_CONST(56712.195165/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4759 REAL_CONST(56732.771951/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4760 REAL_CONST(56753.350603/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4761 REAL_CONST(56773.931121/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4762 REAL_CONST(56794.513504/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4763 REAL_CONST(56815.097752/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4764 REAL_CONST(56835.683865/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4765 REAL_CONST(56856.271842/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4766 REAL_CONST(56876.861682/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4767 REAL_CONST(56897.453387/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4768 REAL_CONST(56918.046954/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4769 REAL_CONST(56938.642385/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4770 REAL_CONST(56959.239678/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4771 REAL_CONST(56979.838833/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4772 REAL_CONST(57000.439850/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4773 REAL_CONST(57021.042729/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4774 REAL_CONST(57041.647469/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4775 REAL_CONST(57062.254070/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4776 REAL_CONST(57082.862532/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4777 REAL_CONST(57103.472853/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4778 REAL_CONST(57124.085035/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4779 REAL_CONST(57144.699076/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4780 REAL_CONST(57165.314977/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4781 REAL_CONST(57185.932736/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4782 REAL_CONST(57206.552354/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4783 REAL_CONST(57227.173830/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4784 REAL_CONST(57247.797163/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4785 REAL_CONST(57268.422355/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4786 REAL_CONST(57289.049403/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4787 REAL_CONST(57309.678309/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4788 REAL_CONST(57330.309071/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4789 REAL_CONST(57350.941689/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4790 REAL_CONST(57371.576163/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4791 REAL_CONST(57392.212493/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4792 REAL_CONST(57412.850678/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4793 REAL_CONST(57433.490717/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4794 REAL_CONST(57454.132612/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4795 REAL_CONST(57474.776360/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4796 REAL_CONST(57495.421962/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4797 REAL_CONST(57516.069418/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4798 REAL_CONST(57536.718727/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4799 REAL_CONST(57557.369889/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4800 REAL_CONST(57578.022904/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4801 REAL_CONST(57598.677770/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4802 REAL_CONST(57619.334489/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4803 REAL_CONST(57639.993059/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4804 REAL_CONST(57660.653480/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4805 REAL_CONST(57681.315752/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4806 REAL_CONST(57701.979875/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4807 REAL_CONST(57722.645848/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4808 REAL_CONST(57743.313671/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4809 REAL_CONST(57763.983343/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4810 REAL_CONST(57784.654864/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4811 REAL_CONST(57805.328235/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4812 REAL_CONST(57826.003454/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4813 REAL_CONST(57846.680521/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4814 REAL_CONST(57867.359436/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4815 REAL_CONST(57888.040199/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4816 REAL_CONST(57908.722809/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4817 REAL_CONST(57929.407266/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4818 REAL_CONST(57950.093569/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4819 REAL_CONST(57970.781719/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4820 REAL_CONST(57991.471715/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4821 REAL_CONST(58012.163556/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4822 REAL_CONST(58032.857242/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4823 REAL_CONST(58053.552774/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4824 REAL_CONST(58074.250150/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4825 REAL_CONST(58094.949370/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4826 REAL_CONST(58115.650434/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4827 REAL_CONST(58136.353342/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4828 REAL_CONST(58157.058093/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4829 REAL_CONST(58177.764687/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4830 REAL_CONST(58198.473124/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4831 REAL_CONST(58219.183403/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4832 REAL_CONST(58239.895524/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4833 REAL_CONST(58260.609487/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4834 REAL_CONST(58281.325291/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4835 REAL_CONST(58302.042936/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4836 REAL_CONST(58322.762421/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4837 REAL_CONST(58343.483747/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4838 REAL_CONST(58364.206913/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4839 REAL_CONST(58384.931919/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4840 REAL_CONST(58405.658764/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4841 REAL_CONST(58426.387448/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4842 REAL_CONST(58447.117971/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4843 REAL_CONST(58467.850332/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4844 REAL_CONST(58488.584531/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4845 REAL_CONST(58509.320568/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4846 REAL_CONST(58530.058443/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4847 REAL_CONST(58550.798154/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4848 REAL_CONST(58571.539702/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4849 REAL_CONST(58592.283087/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4850 REAL_CONST(58613.028308/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4851 REAL_CONST(58633.775364/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4852 REAL_CONST(58654.524256/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4853 REAL_CONST(58675.274983/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4854 REAL_CONST(58696.027545/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4855 REAL_CONST(58716.781941/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4856 REAL_CONST(58737.538172/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4857 REAL_CONST(58758.296236/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4858 REAL_CONST(58779.056134/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4859 REAL_CONST(58799.817865/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4860 REAL_CONST(58820.581429/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4861 REAL_CONST(58841.346826/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4862 REAL_CONST(58862.114054/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4863 REAL_CONST(58882.883115/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4864 REAL_CONST(58903.654007/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4865 REAL_CONST(58924.426731/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4866 REAL_CONST(58945.201285/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4867 REAL_CONST(58965.977670/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4868 REAL_CONST(58986.755885/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4869 REAL_CONST(59007.535930/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4870 REAL_CONST(59028.317805/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4871 REAL_CONST(59049.101509/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4872 REAL_CONST(59069.887042/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4873 REAL_CONST(59090.674404/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4874 REAL_CONST(59111.463594/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4875 REAL_CONST(59132.254612/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4876 REAL_CONST(59153.047458/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4877 REAL_CONST(59173.842131/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4878 REAL_CONST(59194.638631/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4879 REAL_CONST(59215.436958/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4880 REAL_CONST(59236.237111/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4881 REAL_CONST(59257.039091/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4882 REAL_CONST(59277.842896/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4883 REAL_CONST(59298.648527/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4884 REAL_CONST(59319.455983/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4885 REAL_CONST(59340.265263/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4886 REAL_CONST(59361.076369/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4887 REAL_CONST(59381.889298/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4888 REAL_CONST(59402.704051/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4889 REAL_CONST(59423.520628/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4890 REAL_CONST(59444.339028/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4891 REAL_CONST(59465.159251/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4892 REAL_CONST(59485.981296/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4893 REAL_CONST(59506.805164/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4894 REAL_CONST(59527.630853/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4895 REAL_CONST(59548.458365/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4896 REAL_CONST(59569.287697/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4897 REAL_CONST(59590.118851/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4898 REAL_CONST(59610.951825/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4899 REAL_CONST(59631.786620/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4900 REAL_CONST(59652.623234/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4901 REAL_CONST(59673.461668/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4902 REAL_CONST(59694.301922/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4903 REAL_CONST(59715.143995/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4904 REAL_CONST(59735.987886/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4905 REAL_CONST(59756.833596/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4906 REAL_CONST(59777.681124/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4907 REAL_CONST(59798.530470/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4908 REAL_CONST(59819.381634/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4909 REAL_CONST(59840.234614/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4910 REAL_CONST(59861.089412/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4911 REAL_CONST(59881.946026/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4912 REAL_CONST(59902.804456/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4913 REAL_CONST(59923.664702/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4914 REAL_CONST(59944.526764/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4915 REAL_CONST(59965.390641/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4916 REAL_CONST(59986.256333/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4917 REAL_CONST(60007.123839/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4918 REAL_CONST(60027.993160/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4919 REAL_CONST(60048.864295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4920 REAL_CONST(60069.737243/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4921 REAL_CONST(60090.612005/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4922 REAL_CONST(60111.488581/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4923 REAL_CONST(60132.366968/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4924 REAL_CONST(60153.247169/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4925 REAL_CONST(60174.129181/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4926 REAL_CONST(60195.013005/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4927 REAL_CONST(60215.898641/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4928 REAL_CONST(60236.786088/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4929 REAL_CONST(60257.675345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4930 REAL_CONST(60278.566414/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4931 REAL_CONST(60299.459292/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4932 REAL_CONST(60320.353981/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4933 REAL_CONST(60341.250479/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4934 REAL_CONST(60362.148786/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4935 REAL_CONST(60383.048902/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4936 REAL_CONST(60403.950827/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4937 REAL_CONST(60424.854561/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4938 REAL_CONST(60445.760102/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4939 REAL_CONST(60466.667451/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4940 REAL_CONST(60487.576608/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4941 REAL_CONST(60508.487572/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4942 REAL_CONST(60529.400342/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4943 REAL_CONST(60550.314919/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4944 REAL_CONST(60571.231302/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4945 REAL_CONST(60592.149491/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4946 REAL_CONST(60613.069486/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4947 REAL_CONST(60633.991286/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4948 REAL_CONST(60654.914890/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4949 REAL_CONST(60675.840300/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4950 REAL_CONST(60696.767513/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4951 REAL_CONST(60717.696531/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4952 REAL_CONST(60738.627352/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4953 REAL_CONST(60759.559977/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4954 REAL_CONST(60780.494405/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4955 REAL_CONST(60801.430635/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4956 REAL_CONST(60822.368668/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4957 REAL_CONST(60843.308503/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4958 REAL_CONST(60864.250140/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4959 REAL_CONST(60885.193578/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4960 REAL_CONST(60906.138818/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4961 REAL_CONST(60927.085859/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4962 REAL_CONST(60948.034700/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4963 REAL_CONST(60968.985341/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4964 REAL_CONST(60989.937782/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4965 REAL_CONST(61010.892023/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4966 REAL_CONST(61031.848063/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4967 REAL_CONST(61052.805903/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4968 REAL_CONST(61073.765541/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4969 REAL_CONST(61094.726977/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4970 REAL_CONST(61115.690212/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4971 REAL_CONST(61136.655244/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4972 REAL_CONST(61157.622074/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4973 REAL_CONST(61178.590701/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4974 REAL_CONST(61199.561125/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4975 REAL_CONST(61220.533345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4976 REAL_CONST(61241.507362/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4977 REAL_CONST(61262.483175/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4978 REAL_CONST(61283.460783/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4979 REAL_CONST(61304.440187/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4980 REAL_CONST(61325.421385/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4981 REAL_CONST(61346.404379/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4982 REAL_CONST(61367.389167/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4983 REAL_CONST(61388.375749/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4984 REAL_CONST(61409.364124/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4985 REAL_CONST(61430.354294/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4986 REAL_CONST(61451.346256/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4987 REAL_CONST(61472.340011/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4988 REAL_CONST(61493.335559/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4989 REAL_CONST(61514.332899/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4990 REAL_CONST(61535.332031/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4991 REAL_CONST(61556.332955/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4992 REAL_CONST(61577.335670/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4993 REAL_CONST(61598.340177/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4994 REAL_CONST(61619.346473/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4995 REAL_CONST(61640.354561/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4996 REAL_CONST(61661.364438/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4997 REAL_CONST(61682.376106/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4998 REAL_CONST(61703.389562/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
4999 REAL_CONST(61724.404808/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5000 REAL_CONST(61745.421843/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5001 REAL_CONST(61766.440667/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5002 REAL_CONST(61787.461279/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5003 REAL_CONST(61808.483679/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5004 REAL_CONST(61829.507866/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5005 REAL_CONST(61850.533841/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5006 REAL_CONST(61871.561603/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5007 REAL_CONST(61892.591152/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5008 REAL_CONST(61913.622487/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5009 REAL_CONST(61934.655609/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5010 REAL_CONST(61955.690516/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5011 REAL_CONST(61976.727209/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5012 REAL_CONST(61997.765687/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5013 REAL_CONST(62018.805951/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5014 REAL_CONST(62039.847998/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5015 REAL_CONST(62060.891831/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5016 REAL_CONST(62081.937447/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5017 REAL_CONST(62102.984847/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5018 REAL_CONST(62124.034030/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5019 REAL_CONST(62145.084997/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5020 REAL_CONST(62166.137746/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5021 REAL_CONST(62187.192278/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5022 REAL_CONST(62208.248592/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5023 REAL_CONST(62229.306689/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5024 REAL_CONST(62250.366566/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5025 REAL_CONST(62271.428226/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5026 REAL_CONST(62292.491666/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5027 REAL_CONST(62313.556887/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5028 REAL_CONST(62334.623888/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5029 REAL_CONST(62355.692669/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5030 REAL_CONST(62376.763231/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5031 REAL_CONST(62397.835572/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5032 REAL_CONST(62418.909692/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5033 REAL_CONST(62439.985591/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5034 REAL_CONST(62461.063268/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5035 REAL_CONST(62482.142724/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5036 REAL_CONST(62503.223958/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5037 REAL_CONST(62524.306970/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5038 REAL_CONST(62545.391759/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5039 REAL_CONST(62566.478326/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5040 REAL_CONST(62587.566669/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5041 REAL_CONST(62608.656788/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5042 REAL_CONST(62629.748684/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5043 REAL_CONST(62650.842356/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5044 REAL_CONST(62671.937804/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5045 REAL_CONST(62693.035027/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5046 REAL_CONST(62714.134024/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5047 REAL_CONST(62735.234797/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5048 REAL_CONST(62756.337344/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5049 REAL_CONST(62777.441665/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5050 REAL_CONST(62798.547760/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5051 REAL_CONST(62819.655629/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5052 REAL_CONST(62840.765271/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5053 REAL_CONST(62861.876685/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5054 REAL_CONST(62882.989873/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5055 REAL_CONST(62904.104833/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5056 REAL_CONST(62925.221565/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5057 REAL_CONST(62946.340068/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5058 REAL_CONST(62967.460343/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5059 REAL_CONST(62988.582389/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5060 REAL_CONST(63009.706207/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5061 REAL_CONST(63030.831794/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5062 REAL_CONST(63051.959152/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5063 REAL_CONST(63073.088280/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5064 REAL_CONST(63094.219178/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5065 REAL_CONST(63115.351845/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5066 REAL_CONST(63136.486281/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5067 REAL_CONST(63157.622486/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5068 REAL_CONST(63178.760459/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5069 REAL_CONST(63199.900201/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5070 REAL_CONST(63221.041710/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5071 REAL_CONST(63242.184987/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5072 REAL_CONST(63263.330032/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5073 REAL_CONST(63284.476843/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5074 REAL_CONST(63305.625421/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5075 REAL_CONST(63326.775766/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5076 REAL_CONST(63347.927877/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5077 REAL_CONST(63369.081753/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5078 REAL_CONST(63390.237395/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5079 REAL_CONST(63411.394803/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5080 REAL_CONST(63432.553975/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5081 REAL_CONST(63453.714912/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5082 REAL_CONST(63474.877613/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5083 REAL_CONST(63496.042079/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5084 REAL_CONST(63517.208308/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5085 REAL_CONST(63538.376301/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5086 REAL_CONST(63559.546056/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5087 REAL_CONST(63580.717575/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5088 REAL_CONST(63601.890857/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5089 REAL_CONST(63623.065900/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5090 REAL_CONST(63644.242706/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5091 REAL_CONST(63665.421273/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5092 REAL_CONST(63686.601602/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5093 REAL_CONST(63707.783692/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5094 REAL_CONST(63728.967543/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5095 REAL_CONST(63750.153155/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5096 REAL_CONST(63771.340526/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5097 REAL_CONST(63792.529658/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5098 REAL_CONST(63813.720549/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5099 REAL_CONST(63834.913200/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5100 REAL_CONST(63856.107610/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5101 REAL_CONST(63877.303778/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5102 REAL_CONST(63898.501705/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5103 REAL_CONST(63919.701391/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5104 REAL_CONST(63940.902834/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5105 REAL_CONST(63962.106035/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5106 REAL_CONST(63983.310993/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5107 REAL_CONST(64004.517708/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5108 REAL_CONST(64025.726180/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5109 REAL_CONST(64046.936409/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5110 REAL_CONST(64068.148393/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5111 REAL_CONST(64089.362134/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5112 REAL_CONST(64110.577630/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5113 REAL_CONST(64131.794881/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5114 REAL_CONST(64153.013888/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5115 REAL_CONST(64174.234649/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5116 REAL_CONST(64195.457165/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5117 REAL_CONST(64216.681434/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5118 REAL_CONST(64237.907458/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5119 REAL_CONST(64259.135235/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5120 REAL_CONST(64280.364766/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5121 REAL_CONST(64301.596049/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5122 REAL_CONST(64322.829085/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5123 REAL_CONST(64344.063874/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5124 REAL_CONST(64365.300414/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5125 REAL_CONST(64386.538707/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5126 REAL_CONST(64407.778751/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5127 REAL_CONST(64429.020546/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5128 REAL_CONST(64450.264092/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5129 REAL_CONST(64471.509389/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5130 REAL_CONST(64492.756437/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5131 REAL_CONST(64514.005234/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5132 REAL_CONST(64535.255781/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5133 REAL_CONST(64556.508078/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5134 REAL_CONST(64577.762124/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5135 REAL_CONST(64599.017919/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5136 REAL_CONST(64620.275462/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5137 REAL_CONST(64641.534754/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5138 REAL_CONST(64662.795794/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5139 REAL_CONST(64684.058582/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5140 REAL_CONST(64705.323117/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5141 REAL_CONST(64726.589400/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5142 REAL_CONST(64747.857429/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5143 REAL_CONST(64769.127205/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5144 REAL_CONST(64790.398728/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5145 REAL_CONST(64811.671996/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5146 REAL_CONST(64832.947011/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5147 REAL_CONST(64854.223770/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5148 REAL_CONST(64875.502276/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5149 REAL_CONST(64896.782525/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5150 REAL_CONST(64918.064520/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5151 REAL_CONST(64939.348259/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5152 REAL_CONST(64960.633742/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5153 REAL_CONST(64981.920969/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5154 REAL_CONST(65003.209939/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5155 REAL_CONST(65024.500653/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5156 REAL_CONST(65045.793109/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5157 REAL_CONST(65067.087308/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5158 REAL_CONST(65088.383250/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5159 REAL_CONST(65109.680933/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5160 REAL_CONST(65130.980358/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5161 REAL_CONST(65152.281525/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5162 REAL_CONST(65173.584433/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5163 REAL_CONST(65194.889082/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5164 REAL_CONST(65216.195472/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5165 REAL_CONST(65237.503602/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5166 REAL_CONST(65258.813472/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5167 REAL_CONST(65280.125081/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5168 REAL_CONST(65301.438431/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5169 REAL_CONST(65322.753519/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5170 REAL_CONST(65344.070347/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5171 REAL_CONST(65365.388913/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5172 REAL_CONST(65386.709218/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5173 REAL_CONST(65408.031260/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5174 REAL_CONST(65429.355041/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5175 REAL_CONST(65450.680559/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5176 REAL_CONST(65472.007814/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5177 REAL_CONST(65493.336806/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5178 REAL_CONST(65514.667535/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5179 REAL_CONST(65536.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5180 REAL_CONST(65557.334201/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5181 REAL_CONST(65578.670139/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5182 REAL_CONST(65600.007811/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5183 REAL_CONST(65621.347219/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5184 REAL_CONST(65642.688362/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5185 REAL_CONST(65664.031240/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5186 REAL_CONST(65685.375852/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5187 REAL_CONST(65706.722198/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5188 REAL_CONST(65728.070278/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5189 REAL_CONST(65749.420092/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5190 REAL_CONST(65770.771639/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5191 REAL_CONST(65792.124919/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5192 REAL_CONST(65813.479931/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5193 REAL_CONST(65834.836677/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5194 REAL_CONST(65856.195154/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5195 REAL_CONST(65877.555363/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5196 REAL_CONST(65898.917304/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5197 REAL_CONST(65920.280976/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5198 REAL_CONST(65941.646379/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5199 REAL_CONST(65963.013513/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5200 REAL_CONST(65984.382377/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5201 REAL_CONST(66005.752972/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5202 REAL_CONST(66027.125296/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5203 REAL_CONST(66048.499351/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5204 REAL_CONST(66069.875134/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5205 REAL_CONST(66091.252647/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5206 REAL_CONST(66112.631888/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5207 REAL_CONST(66134.012858/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5208 REAL_CONST(66155.395556/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5209 REAL_CONST(66176.779982/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5210 REAL_CONST(66198.166136/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5211 REAL_CONST(66219.554017/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5212 REAL_CONST(66240.943626/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5213 REAL_CONST(66262.334961/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5214 REAL_CONST(66283.728023/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5215 REAL_CONST(66305.122811/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5216 REAL_CONST(66326.519325/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5217 REAL_CONST(66347.917565/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5218 REAL_CONST(66369.317530/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5219 REAL_CONST(66390.719220/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5220 REAL_CONST(66412.122636/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5221 REAL_CONST(66433.527776/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5222 REAL_CONST(66454.934640/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5223 REAL_CONST(66476.343228/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5224 REAL_CONST(66497.753540/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5225 REAL_CONST(66519.165576/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5226 REAL_CONST(66540.579335/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5227 REAL_CONST(66561.994817/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5228 REAL_CONST(66583.412021/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5229 REAL_CONST(66604.830948/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5230 REAL_CONST(66626.251597/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5231 REAL_CONST(66647.673968/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5232 REAL_CONST(66669.098061/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5233 REAL_CONST(66690.523875/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5234 REAL_CONST(66711.951409/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5235 REAL_CONST(66733.380665/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5236 REAL_CONST(66754.811641/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5237 REAL_CONST(66776.244337/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5238 REAL_CONST(66797.678753/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5239 REAL_CONST(66819.114889/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5240 REAL_CONST(66840.552744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5241 REAL_CONST(66861.992318/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5242 REAL_CONST(66883.433611/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5243 REAL_CONST(66904.876623/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5244 REAL_CONST(66926.321353/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5245 REAL_CONST(66947.767800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5246 REAL_CONST(66969.215966/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5247 REAL_CONST(66990.665849/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5248 REAL_CONST(67012.117449/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5249 REAL_CONST(67033.570766/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5250 REAL_CONST(67055.025800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5251 REAL_CONST(67076.482549/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5252 REAL_CONST(67097.941015/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5253 REAL_CONST(67119.401197/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5254 REAL_CONST(67140.863094/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5255 REAL_CONST(67162.326707/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5256 REAL_CONST(67183.792034/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5257 REAL_CONST(67205.259077/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5258 REAL_CONST(67226.727833/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5259 REAL_CONST(67248.198304/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5260 REAL_CONST(67269.670488/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5261 REAL_CONST(67291.144387/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5262 REAL_CONST(67312.619998/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5263 REAL_CONST(67334.097323/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5264 REAL_CONST(67355.576360/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5265 REAL_CONST(67377.057110/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5266 REAL_CONST(67398.539572/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5267 REAL_CONST(67420.023746/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5268 REAL_CONST(67441.509631/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5269 REAL_CONST(67462.997228/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5270 REAL_CONST(67484.486537/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5271 REAL_CONST(67505.977556/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5272 REAL_CONST(67527.470285/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5273 REAL_CONST(67548.964725/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5274 REAL_CONST(67570.460875/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5275 REAL_CONST(67591.958735/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5276 REAL_CONST(67613.458305/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5277 REAL_CONST(67634.959583/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5278 REAL_CONST(67656.462571/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5279 REAL_CONST(67677.967267/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5280 REAL_CONST(67699.473671/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5281 REAL_CONST(67720.981784/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5282 REAL_CONST(67742.491605/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5283 REAL_CONST(67764.003133/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5284 REAL_CONST(67785.516369/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5285 REAL_CONST(67807.031311/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5286 REAL_CONST(67828.547961/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5287 REAL_CONST(67850.066317/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5288 REAL_CONST(67871.586379/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5289 REAL_CONST(67893.108147/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5290 REAL_CONST(67914.631621/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5291 REAL_CONST(67936.156800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5292 REAL_CONST(67957.683685/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5293 REAL_CONST(67979.212274/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5294 REAL_CONST(68000.742568/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5295 REAL_CONST(68022.274566/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5296 REAL_CONST(68043.808269/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5297 REAL_CONST(68065.343675/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5298 REAL_CONST(68086.880785/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5299 REAL_CONST(68108.419598/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5300 REAL_CONST(68129.960114/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5301 REAL_CONST(68151.502333/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5302 REAL_CONST(68173.046254/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5303 REAL_CONST(68194.591878/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5304 REAL_CONST(68216.139203/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5305 REAL_CONST(68237.688230/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5306 REAL_CONST(68259.238959/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5307 REAL_CONST(68280.791388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5308 REAL_CONST(68302.345519/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5309 REAL_CONST(68323.901350/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5310 REAL_CONST(68345.458881/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5311 REAL_CONST(68367.018113/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5312 REAL_CONST(68388.579044/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5313 REAL_CONST(68410.141675/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5314 REAL_CONST(68431.706005/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5315 REAL_CONST(68453.272034/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5316 REAL_CONST(68474.839762/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5317 REAL_CONST(68496.409188/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5318 REAL_CONST(68517.980312/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5319 REAL_CONST(68539.553134/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5320 REAL_CONST(68561.127654/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5321 REAL_CONST(68582.703872/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5322 REAL_CONST(68604.281786/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5323 REAL_CONST(68625.861397/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5324 REAL_CONST(68647.442705/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5325 REAL_CONST(68669.025709/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5326 REAL_CONST(68690.610409/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5327 REAL_CONST(68712.196805/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5328 REAL_CONST(68733.784897/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5329 REAL_CONST(68755.374683/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5330 REAL_CONST(68776.966165/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5331 REAL_CONST(68798.559341/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5332 REAL_CONST(68820.154212/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5333 REAL_CONST(68841.750777/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5334 REAL_CONST(68863.349036/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5335 REAL_CONST(68884.948989/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5336 REAL_CONST(68906.550635/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5337 REAL_CONST(68928.153974/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5338 REAL_CONST(68949.759006/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5339 REAL_CONST(68971.365730/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5340 REAL_CONST(68992.974147/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5341 REAL_CONST(69014.584256/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5342 REAL_CONST(69036.196057/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5343 REAL_CONST(69057.809549/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5344 REAL_CONST(69079.424732/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5345 REAL_CONST(69101.041607/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5346 REAL_CONST(69122.660172/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5347 REAL_CONST(69144.280428/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5348 REAL_CONST(69165.902373/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5349 REAL_CONST(69187.526009/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5350 REAL_CONST(69209.151335/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5351 REAL_CONST(69230.778350/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5352 REAL_CONST(69252.407054/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5353 REAL_CONST(69274.037447/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5354 REAL_CONST(69295.669528/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5355 REAL_CONST(69317.303298/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5356 REAL_CONST(69338.938756/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5357 REAL_CONST(69360.575902/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5358 REAL_CONST(69382.214735/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5359 REAL_CONST(69403.855256/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5360 REAL_CONST(69425.497464/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5361 REAL_CONST(69447.141358/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5362 REAL_CONST(69468.786939/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5363 REAL_CONST(69490.434207/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5364 REAL_CONST(69512.083160/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5365 REAL_CONST(69533.733799/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5366 REAL_CONST(69555.386124/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5367 REAL_CONST(69577.040133/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5368 REAL_CONST(69598.695828/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5369 REAL_CONST(69620.353207/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5370 REAL_CONST(69642.012271/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5371 REAL_CONST(69663.673019/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5372 REAL_CONST(69685.335451/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5373 REAL_CONST(69706.999566/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5374 REAL_CONST(69728.665365/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5375 REAL_CONST(69750.332847/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5376 REAL_CONST(69772.002011/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5377 REAL_CONST(69793.672859/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5378 REAL_CONST(69815.345388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5379 REAL_CONST(69837.019600/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5380 REAL_CONST(69858.695494/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5381 REAL_CONST(69880.373069/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5382 REAL_CONST(69902.052325/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5383 REAL_CONST(69923.733262/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5384 REAL_CONST(69945.415880/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5385 REAL_CONST(69967.100179/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5386 REAL_CONST(69988.786158/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5387 REAL_CONST(70010.473817/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5388 REAL_CONST(70032.163155/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5389 REAL_CONST(70053.854173/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5390 REAL_CONST(70075.546870/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5391 REAL_CONST(70097.241246/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5392 REAL_CONST(70118.937301/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5393 REAL_CONST(70140.635034/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5394 REAL_CONST(70162.334446/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5395 REAL_CONST(70184.035535/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5396 REAL_CONST(70205.738302/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5397 REAL_CONST(70227.442746/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5398 REAL_CONST(70249.148867/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5399 REAL_CONST(70270.856666/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5400 REAL_CONST(70292.566141/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5401 REAL_CONST(70314.277292/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5402 REAL_CONST(70335.990119/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5403 REAL_CONST(70357.704622/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5404 REAL_CONST(70379.420801/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5405 REAL_CONST(70401.138655/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5406 REAL_CONST(70422.858184/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5407 REAL_CONST(70444.579388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5408 REAL_CONST(70466.302266/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5409 REAL_CONST(70488.026819/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5410 REAL_CONST(70509.753045/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5411 REAL_CONST(70531.480946/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5412 REAL_CONST(70553.210520/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5413 REAL_CONST(70574.941767/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5414 REAL_CONST(70596.674687/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5415 REAL_CONST(70618.409280/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5416 REAL_CONST(70640.145545/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5417 REAL_CONST(70661.883483/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5418 REAL_CONST(70683.623092/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5419 REAL_CONST(70705.364373/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5420 REAL_CONST(70727.107326/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5421 REAL_CONST(70748.851950/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5422 REAL_CONST(70770.598245/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5423 REAL_CONST(70792.346210/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5424 REAL_CONST(70814.095846/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5425 REAL_CONST(70835.847152/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5426 REAL_CONST(70857.600128/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5427 REAL_CONST(70879.354773/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5428 REAL_CONST(70901.111088/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5429 REAL_CONST(70922.869072/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5430 REAL_CONST(70944.628725/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5431 REAL_CONST(70966.390047/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5432 REAL_CONST(70988.153037/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5433 REAL_CONST(71009.917695/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5434 REAL_CONST(71031.684021/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5435 REAL_CONST(71053.452014/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5436 REAL_CONST(71075.221675/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5437 REAL_CONST(71096.993003/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5438 REAL_CONST(71118.765998/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5439 REAL_CONST(71140.540659/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5440 REAL_CONST(71162.316987/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5441 REAL_CONST(71184.094980/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5442 REAL_CONST(71205.874640/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5443 REAL_CONST(71227.655965/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5444 REAL_CONST(71249.438955/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5445 REAL_CONST(71271.223611/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5446 REAL_CONST(71293.009931/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5447 REAL_CONST(71314.797916/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5448 REAL_CONST(71336.587565/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5449 REAL_CONST(71358.378878/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5450 REAL_CONST(71380.171855/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5451 REAL_CONST(71401.966495/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5452 REAL_CONST(71423.762799/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5453 REAL_CONST(71445.560766/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5454 REAL_CONST(71467.360395/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5455 REAL_CONST(71489.161687/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5456 REAL_CONST(71510.964641/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5457 REAL_CONST(71532.769257/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5458 REAL_CONST(71554.575535/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5459 REAL_CONST(71576.383475/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5460 REAL_CONST(71598.193075/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5461 REAL_CONST(71620.004337/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5462 REAL_CONST(71641.817260/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5463 REAL_CONST(71663.631842/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5464 REAL_CONST(71685.448086/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5465 REAL_CONST(71707.265989/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5466 REAL_CONST(71729.085551/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5467 REAL_CONST(71750.906774/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5468 REAL_CONST(71772.729655/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5469 REAL_CONST(71794.554196/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5470 REAL_CONST(71816.380395/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5471 REAL_CONST(71838.208253/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5472 REAL_CONST(71860.037768/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5473 REAL_CONST(71881.868942/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5474 REAL_CONST(71903.701774/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5475 REAL_CONST(71925.536263/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5476 REAL_CONST(71947.372409/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5477 REAL_CONST(71969.210212/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5478 REAL_CONST(71991.049672/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5479 REAL_CONST(72012.890788/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5480 REAL_CONST(72034.733561/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5481 REAL_CONST(72056.577989/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5482 REAL_CONST(72078.424073/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5483 REAL_CONST(72100.271813/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5484 REAL_CONST(72122.121208/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5485 REAL_CONST(72143.972257/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5486 REAL_CONST(72165.824962/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5487 REAL_CONST(72187.679321/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5488 REAL_CONST(72209.535334/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5489 REAL_CONST(72231.393001/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5490 REAL_CONST(72253.252321/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5491 REAL_CONST(72275.113295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5492 REAL_CONST(72296.975923/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5493 REAL_CONST(72318.840203/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5494 REAL_CONST(72340.706136/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5495 REAL_CONST(72362.573721/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5496 REAL_CONST(72384.442959/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5497 REAL_CONST(72406.313848/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5498 REAL_CONST(72428.186390/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5499 REAL_CONST(72450.060582/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5500 REAL_CONST(72471.936426/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5501 REAL_CONST(72493.813921/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5502 REAL_CONST(72515.693066/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5503 REAL_CONST(72537.573862/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5504 REAL_CONST(72559.456308/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5505 REAL_CONST(72581.340405/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5506 REAL_CONST(72603.226150/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5507 REAL_CONST(72625.113546/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5508 REAL_CONST(72647.002590/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5509 REAL_CONST(72668.893283/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5510 REAL_CONST(72690.785625/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5511 REAL_CONST(72712.679616/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5512 REAL_CONST(72734.575255/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5513 REAL_CONST(72756.472542/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5514 REAL_CONST(72778.371476/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5515 REAL_CONST(72800.272058/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5516 REAL_CONST(72822.174287/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5517 REAL_CONST(72844.078163/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5518 REAL_CONST(72865.983686/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5519 REAL_CONST(72887.890855/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5520 REAL_CONST(72909.799671/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5521 REAL_CONST(72931.710132/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5522 REAL_CONST(72953.622239/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5523 REAL_CONST(72975.535992/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5524 REAL_CONST(72997.451390/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5525 REAL_CONST(73019.368433/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5526 REAL_CONST(73041.287121/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5527 REAL_CONST(73063.207453/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5528 REAL_CONST(73085.129429/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5529 REAL_CONST(73107.053050/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5530 REAL_CONST(73128.978314/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5531 REAL_CONST(73150.905222/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5532 REAL_CONST(73172.833773/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5533 REAL_CONST(73194.763967/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5534 REAL_CONST(73216.695803/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5535 REAL_CONST(73238.629283/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5536 REAL_CONST(73260.564404/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5537 REAL_CONST(73282.501168/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5538 REAL_CONST(73304.439573/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5539 REAL_CONST(73326.379620/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5540 REAL_CONST(73348.321308/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5541 REAL_CONST(73370.264638/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5542 REAL_CONST(73392.209608/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5543 REAL_CONST(73414.156218/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5544 REAL_CONST(73436.104469/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5545 REAL_CONST(73458.054361/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5546 REAL_CONST(73480.005891/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5547 REAL_CONST(73501.959062/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5548 REAL_CONST(73523.913872/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5549 REAL_CONST(73545.870321/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5550 REAL_CONST(73567.828408/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5551 REAL_CONST(73589.788135/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5552 REAL_CONST(73611.749499/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5553 REAL_CONST(73633.712502/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5554 REAL_CONST(73655.677143/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5555 REAL_CONST(73677.643421/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5556 REAL_CONST(73699.611337/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5557 REAL_CONST(73721.580889/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5558 REAL_CONST(73743.552079/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5559 REAL_CONST(73765.524906/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5560 REAL_CONST(73787.499368/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5561 REAL_CONST(73809.475467/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5562 REAL_CONST(73831.453202/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5563 REAL_CONST(73853.432573/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5564 REAL_CONST(73875.413579/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5565 REAL_CONST(73897.396220/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5566 REAL_CONST(73919.380496/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5567 REAL_CONST(73941.366406/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5568 REAL_CONST(73963.353952/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5569 REAL_CONST(73985.343131/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5570 REAL_CONST(74007.333945/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5571 REAL_CONST(74029.326392/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5572 REAL_CONST(74051.320472/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5573 REAL_CONST(74073.316186/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5574 REAL_CONST(74095.313533/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5575 REAL_CONST(74117.312513/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5576 REAL_CONST(74139.313125/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5577 REAL_CONST(74161.315369/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5578 REAL_CONST(74183.319246/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5579 REAL_CONST(74205.324754/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5580 REAL_CONST(74227.331894/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5581 REAL_CONST(74249.340665/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5582 REAL_CONST(74271.351067/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5583 REAL_CONST(74293.363100/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5584 REAL_CONST(74315.376764/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5585 REAL_CONST(74337.392058/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5586 REAL_CONST(74359.408982/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5587 REAL_CONST(74381.427536/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5588 REAL_CONST(74403.447719/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5589 REAL_CONST(74425.469532/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5590 REAL_CONST(74447.492974/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5591 REAL_CONST(74469.518045/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5592 REAL_CONST(74491.544744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5593 REAL_CONST(74513.573072/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5594 REAL_CONST(74535.603028/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5595 REAL_CONST(74557.634612/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5596 REAL_CONST(74579.667824/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5597 REAL_CONST(74601.702663/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5598 REAL_CONST(74623.739130/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5599 REAL_CONST(74645.777223/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5600 REAL_CONST(74667.816943/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5601 REAL_CONST(74689.858290/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5602 REAL_CONST(74711.901263/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5603 REAL_CONST(74733.945861/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5604 REAL_CONST(74755.992086/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5605 REAL_CONST(74778.039936/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5606 REAL_CONST(74800.089412/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5607 REAL_CONST(74822.140512/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5608 REAL_CONST(74844.193237/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5609 REAL_CONST(74866.247587/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5610 REAL_CONST(74888.303561/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5611 REAL_CONST(74910.361160/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5612 REAL_CONST(74932.420382/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5613 REAL_CONST(74954.481227/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5614 REAL_CONST(74976.543697/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5615 REAL_CONST(74998.607789/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5616 REAL_CONST(75020.673504/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5617 REAL_CONST(75042.740842/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5618 REAL_CONST(75064.809802/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5619 REAL_CONST(75086.880384/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5620 REAL_CONST(75108.952589/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5621 REAL_CONST(75131.026415/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5622 REAL_CONST(75153.101862/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5623 REAL_CONST(75175.178931/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5624 REAL_CONST(75197.257621/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5625 REAL_CONST(75219.337931/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5626 REAL_CONST(75241.419862/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5627 REAL_CONST(75263.503414/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5628 REAL_CONST(75285.588585/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5629 REAL_CONST(75307.675376/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5630 REAL_CONST(75329.763787/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5631 REAL_CONST(75351.853817/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5632 REAL_CONST(75373.945466/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5633 REAL_CONST(75396.038734/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5634 REAL_CONST(75418.133620/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5635 REAL_CONST(75440.230125/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5636 REAL_CONST(75462.328248/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5637 REAL_CONST(75484.427989/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5638 REAL_CONST(75506.529348/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5639 REAL_CONST(75528.632324/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5640 REAL_CONST(75550.736917/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5641 REAL_CONST(75572.843127/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5642 REAL_CONST(75594.950954/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5643 REAL_CONST(75617.060398/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5644 REAL_CONST(75639.171457/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5645 REAL_CONST(75661.284133/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5646 REAL_CONST(75683.398424/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5647 REAL_CONST(75705.514331/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5648 REAL_CONST(75727.631854/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5649 REAL_CONST(75749.750991/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5650 REAL_CONST(75771.871743/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5651 REAL_CONST(75793.994110/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5652 REAL_CONST(75816.118091/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5653 REAL_CONST(75838.243686/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5654 REAL_CONST(75860.370896/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5655 REAL_CONST(75882.499718/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5656 REAL_CONST(75904.630155/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5657 REAL_CONST(75926.762204/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5658 REAL_CONST(75948.895866/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5659 REAL_CONST(75971.031141/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5660 REAL_CONST(75993.168029/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5661 REAL_CONST(76015.306529/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5662 REAL_CONST(76037.446640/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5663 REAL_CONST(76059.588364/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5664 REAL_CONST(76081.731699/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5665 REAL_CONST(76103.876646/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5666 REAL_CONST(76126.023203/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5667 REAL_CONST(76148.171371/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5668 REAL_CONST(76170.321150/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5669 REAL_CONST(76192.472539/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5670 REAL_CONST(76214.625539/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5671 REAL_CONST(76236.780148/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5672 REAL_CONST(76258.936367/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5673 REAL_CONST(76281.094196/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5674 REAL_CONST(76303.253633/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5675 REAL_CONST(76325.414680/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5676 REAL_CONST(76347.577335/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5677 REAL_CONST(76369.741599/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5678 REAL_CONST(76391.907471/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5679 REAL_CONST(76414.074951/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5680 REAL_CONST(76436.244039/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5681 REAL_CONST(76458.414734/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5682 REAL_CONST(76480.587037/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5683 REAL_CONST(76502.760947/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5684 REAL_CONST(76524.936463/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5685 REAL_CONST(76547.113587/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5686 REAL_CONST(76569.292316/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5687 REAL_CONST(76591.472652/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5688 REAL_CONST(76613.654594/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5689 REAL_CONST(76635.838142/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5690 REAL_CONST(76658.023295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5691 REAL_CONST(76680.210053/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5692 REAL_CONST(76702.398416/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5693 REAL_CONST(76724.588384/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5694 REAL_CONST(76746.779957/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5695 REAL_CONST(76768.973134/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5696 REAL_CONST(76791.167915/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5697 REAL_CONST(76813.364299/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5698 REAL_CONST(76835.562288/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5699 REAL_CONST(76857.761880/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5700 REAL_CONST(76879.963074/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5701 REAL_CONST(76902.165872/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5702 REAL_CONST(76924.370273/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5703 REAL_CONST(76946.576276/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5704 REAL_CONST(76968.783881/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5705 REAL_CONST(76990.993088/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5706 REAL_CONST(77013.203897/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5707 REAL_CONST(77035.416308/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5708 REAL_CONST(77057.630319/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5709 REAL_CONST(77079.845932/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5710 REAL_CONST(77102.063146/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5711 REAL_CONST(77124.281960/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5712 REAL_CONST(77146.502375/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5713 REAL_CONST(77168.724390/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5714 REAL_CONST(77190.948004/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5715 REAL_CONST(77213.173219/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5716 REAL_CONST(77235.400033/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5717 REAL_CONST(77257.628446/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5718 REAL_CONST(77279.858458/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5719 REAL_CONST(77302.090069/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5720 REAL_CONST(77324.323278/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5721 REAL_CONST(77346.558086/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5722 REAL_CONST(77368.794491/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5723 REAL_CONST(77391.032495/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5724 REAL_CONST(77413.272096/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5725 REAL_CONST(77435.513295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5726 REAL_CONST(77457.756090/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5727 REAL_CONST(77480.000483/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5728 REAL_CONST(77502.246473/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5729 REAL_CONST(77524.494058/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5730 REAL_CONST(77546.743240/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5731 REAL_CONST(77568.994019/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5732 REAL_CONST(77591.246392/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5733 REAL_CONST(77613.500362/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5734 REAL_CONST(77635.755927/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5735 REAL_CONST(77658.013086/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5736 REAL_CONST(77680.271841/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5737 REAL_CONST(77702.532191/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5738 REAL_CONST(77724.794134/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5739 REAL_CONST(77747.057672/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5740 REAL_CONST(77769.322804/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5741 REAL_CONST(77791.589530/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5742 REAL_CONST(77813.857849/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5743 REAL_CONST(77836.127761/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5744 REAL_CONST(77858.399267/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5745 REAL_CONST(77880.672365/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5746 REAL_CONST(77902.947056/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5747 REAL_CONST(77925.223339/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5748 REAL_CONST(77947.501214/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5749 REAL_CONST(77969.780681/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5750 REAL_CONST(77992.061740/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5751 REAL_CONST(78014.344391/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5752 REAL_CONST(78036.628632/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5753 REAL_CONST(78058.914465/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5754 REAL_CONST(78081.201888/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5755 REAL_CONST(78103.490902/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5756 REAL_CONST(78125.781506/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5757 REAL_CONST(78148.073700/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5758 REAL_CONST(78170.367484/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5759 REAL_CONST(78192.662858/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5760 REAL_CONST(78214.959821/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5761 REAL_CONST(78237.258374/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5762 REAL_CONST(78259.558515/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5763 REAL_CONST(78281.860245/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5764 REAL_CONST(78304.163563/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5765 REAL_CONST(78326.468470/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5766 REAL_CONST(78348.774965/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5767 REAL_CONST(78371.083048/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5768 REAL_CONST(78393.392718/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5769 REAL_CONST(78415.703976/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5770 REAL_CONST(78438.016820/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5771 REAL_CONST(78460.331252/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5772 REAL_CONST(78482.647270/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5773 REAL_CONST(78504.964875/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5774 REAL_CONST(78527.284066/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5775 REAL_CONST(78549.604843/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5776 REAL_CONST(78571.927206/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5777 REAL_CONST(78594.251155/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5778 REAL_CONST(78616.576688/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5779 REAL_CONST(78638.903807/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5780 REAL_CONST(78661.232511/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5781 REAL_CONST(78683.562799/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5782 REAL_CONST(78705.894672/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5783 REAL_CONST(78728.228129/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5784 REAL_CONST(78750.563170/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5785 REAL_CONST(78772.899795/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5786 REAL_CONST(78795.238004/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5787 REAL_CONST(78817.577795/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5788 REAL_CONST(78839.919170/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5789 REAL_CONST(78862.262128/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5790 REAL_CONST(78884.606668/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5791 REAL_CONST(78906.952791/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5792 REAL_CONST(78929.300496/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5793 REAL_CONST(78951.649783/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5794 REAL_CONST(78974.000651/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5795 REAL_CONST(78996.353101/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5796 REAL_CONST(79018.707133/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5797 REAL_CONST(79041.062745/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5798 REAL_CONST(79063.419939/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5799 REAL_CONST(79085.778713/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5800 REAL_CONST(79108.139067/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5801 REAL_CONST(79130.501002/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5802 REAL_CONST(79152.864516/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5803 REAL_CONST(79175.229610/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5804 REAL_CONST(79197.596284/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5805 REAL_CONST(79219.964537/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5806 REAL_CONST(79242.334369/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5807 REAL_CONST(79264.705780/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5808 REAL_CONST(79287.078770/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5809 REAL_CONST(79309.453338/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5810 REAL_CONST(79331.829484/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5811 REAL_CONST(79354.207208/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5812 REAL_CONST(79376.586510/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5813 REAL_CONST(79398.967390/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5814 REAL_CONST(79421.349846/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5815 REAL_CONST(79443.733880/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5816 REAL_CONST(79466.119490/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5817 REAL_CONST(79488.506678/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5818 REAL_CONST(79510.895441/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5819 REAL_CONST(79533.285781/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5820 REAL_CONST(79555.677697/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5821 REAL_CONST(79578.071188/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5822 REAL_CONST(79600.466255/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5823 REAL_CONST(79622.862897/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5824 REAL_CONST(79645.261114/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5825 REAL_CONST(79667.660907/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5826 REAL_CONST(79690.062273/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5827 REAL_CONST(79712.465215/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5828 REAL_CONST(79734.869730/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5829 REAL_CONST(79757.275819/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5830 REAL_CONST(79779.683482/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5831 REAL_CONST(79802.092719/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5832 REAL_CONST(79824.503529/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5833 REAL_CONST(79846.915911/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5834 REAL_CONST(79869.329867/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5835 REAL_CONST(79891.745396/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5836 REAL_CONST(79914.162496/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5837 REAL_CONST(79936.581169/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5838 REAL_CONST(79959.001414/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5839 REAL_CONST(79981.423231/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5840 REAL_CONST(80003.846619/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5841 REAL_CONST(80026.271579/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5842 REAL_CONST(80048.698110/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5843 REAL_CONST(80071.126211/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5844 REAL_CONST(80093.555883/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5845 REAL_CONST(80115.987126/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5846 REAL_CONST(80138.419939/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5847 REAL_CONST(80160.854322/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5848 REAL_CONST(80183.290274/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5849 REAL_CONST(80205.727796/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5850 REAL_CONST(80228.166888/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5851 REAL_CONST(80250.607548/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5852 REAL_CONST(80273.049778/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5853 REAL_CONST(80295.493576/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5854 REAL_CONST(80317.938943/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5855 REAL_CONST(80340.385877/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5856 REAL_CONST(80362.834380/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5857 REAL_CONST(80385.284451/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5858 REAL_CONST(80407.736089/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5859 REAL_CONST(80430.189295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5860 REAL_CONST(80452.644068/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5861 REAL_CONST(80475.100407/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5862 REAL_CONST(80497.558314/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5863 REAL_CONST(80520.017786/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5864 REAL_CONST(80542.478825/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5865 REAL_CONST(80564.941431/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5866 REAL_CONST(80587.405602/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5867 REAL_CONST(80609.871338/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5868 REAL_CONST(80632.338640/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5869 REAL_CONST(80654.807507/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5870 REAL_CONST(80677.277939/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5871 REAL_CONST(80699.749936/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5872 REAL_CONST(80722.223498/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5873 REAL_CONST(80744.698623/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5874 REAL_CONST(80767.175313/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5875 REAL_CONST(80789.653567/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5876 REAL_CONST(80812.133384/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5877 REAL_CONST(80834.614765/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5878 REAL_CONST(80857.097709/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5879 REAL_CONST(80879.582216/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5880 REAL_CONST(80902.068285/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5881 REAL_CONST(80924.555918/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5882 REAL_CONST(80947.045112/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5883 REAL_CONST(80969.535869/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5884 REAL_CONST(80992.028188/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5885 REAL_CONST(81014.522068/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5886 REAL_CONST(81037.017510/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5887 REAL_CONST(81059.514513/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5888 REAL_CONST(81082.013077/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5889 REAL_CONST(81104.513202/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5890 REAL_CONST(81127.014888/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5891 REAL_CONST(81149.518134/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5892 REAL_CONST(81172.022940/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5893 REAL_CONST(81194.529306/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5894 REAL_CONST(81217.037232/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5895 REAL_CONST(81239.546717/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5896 REAL_CONST(81262.057762/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5897 REAL_CONST(81284.570366/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5898 REAL_CONST(81307.084528/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5899 REAL_CONST(81329.600250/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5900 REAL_CONST(81352.117530/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5901 REAL_CONST(81374.636368/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5902 REAL_CONST(81397.156764/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5903 REAL_CONST(81419.678718/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5904 REAL_CONST(81442.202229/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5905 REAL_CONST(81464.727298/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5906 REAL_CONST(81487.253924/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5907 REAL_CONST(81509.782107/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5908 REAL_CONST(81532.311846/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5909 REAL_CONST(81554.843143/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5910 REAL_CONST(81577.375995/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5911 REAL_CONST(81599.910404/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5912 REAL_CONST(81622.446368/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5913 REAL_CONST(81644.983888/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5914 REAL_CONST(81667.522964/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5915 REAL_CONST(81690.063594/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5916 REAL_CONST(81712.605780/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5917 REAL_CONST(81735.149521/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5918 REAL_CONST(81757.694816/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5919 REAL_CONST(81780.241665/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5920 REAL_CONST(81802.790069/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5921 REAL_CONST(81825.340026/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5922 REAL_CONST(81847.891538/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5923 REAL_CONST(81870.444603/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5924 REAL_CONST(81892.999221/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5925 REAL_CONST(81915.555392/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5926 REAL_CONST(81938.113116/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5927 REAL_CONST(81960.672393/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5928 REAL_CONST(81983.233222/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5929 REAL_CONST(82005.795603/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5930 REAL_CONST(82028.359536/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5931 REAL_CONST(82050.925022/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5932 REAL_CONST(82073.492058/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5933 REAL_CONST(82096.060647/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5934 REAL_CONST(82118.630786/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5935 REAL_CONST(82141.202476/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5936 REAL_CONST(82163.775717/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5937 REAL_CONST(82186.350509/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5938 REAL_CONST(82208.926850/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5939 REAL_CONST(82231.504742/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5940 REAL_CONST(82254.084184/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5941 REAL_CONST(82276.665175/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5942 REAL_CONST(82299.247716/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5943 REAL_CONST(82321.831807/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5944 REAL_CONST(82344.417446/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5945 REAL_CONST(82367.004634/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5946 REAL_CONST(82389.593370/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5947 REAL_CONST(82412.183655/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5948 REAL_CONST(82434.775488/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5949 REAL_CONST(82457.368870/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5950 REAL_CONST(82479.963798/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5951 REAL_CONST(82502.560275/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5952 REAL_CONST(82525.158299/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5953 REAL_CONST(82547.757870/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5954 REAL_CONST(82570.358987/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5955 REAL_CONST(82592.961652/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5956 REAL_CONST(82615.565863/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5957 REAL_CONST(82638.171620/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5958 REAL_CONST(82660.778923/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5959 REAL_CONST(82683.387773/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5960 REAL_CONST(82705.998167/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5961 REAL_CONST(82728.610108/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5962 REAL_CONST(82751.223593/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5963 REAL_CONST(82773.838624/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5964 REAL_CONST(82796.455199/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5965 REAL_CONST(82819.073319/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5966 REAL_CONST(82841.692983/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5967 REAL_CONST(82864.314191/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5968 REAL_CONST(82886.936944/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5969 REAL_CONST(82909.561240/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5970 REAL_CONST(82932.187079/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5971 REAL_CONST(82954.814462/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5972 REAL_CONST(82977.443388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5973 REAL_CONST(83000.073857/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5974 REAL_CONST(83022.705869/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5975 REAL_CONST(83045.339423/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5976 REAL_CONST(83067.974519/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5977 REAL_CONST(83090.611158/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5978 REAL_CONST(83113.249338/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5979 REAL_CONST(83135.889060/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5980 REAL_CONST(83158.530323/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5981 REAL_CONST(83181.173128/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5982 REAL_CONST(83203.817473/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5983 REAL_CONST(83226.463360/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5984 REAL_CONST(83249.110787/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5985 REAL_CONST(83271.759754/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5986 REAL_CONST(83294.410262/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5987 REAL_CONST(83317.062309/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5988 REAL_CONST(83339.715896/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5989 REAL_CONST(83362.371023/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5990 REAL_CONST(83385.027689/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5991 REAL_CONST(83407.685894/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5992 REAL_CONST(83430.345639/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5993 REAL_CONST(83453.006921/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5994 REAL_CONST(83475.669743/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5995 REAL_CONST(83498.334102/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5996 REAL_CONST(83521.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5997 REAL_CONST(83543.667436/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5998 REAL_CONST(83566.336409/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
5999 REAL_CONST(83589.006919/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6000 REAL_CONST(83611.678967/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6001 REAL_CONST(83634.352552/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6002 REAL_CONST(83657.027674/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6003 REAL_CONST(83679.704333/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6004 REAL_CONST(83702.382527/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6005 REAL_CONST(83725.062258/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6006 REAL_CONST(83747.743525/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6007 REAL_CONST(83770.426328/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6008 REAL_CONST(83793.110667/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6009 REAL_CONST(83815.796540/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6010 REAL_CONST(83838.483949/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6011 REAL_CONST(83861.172893/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6012 REAL_CONST(83883.863372/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6013 REAL_CONST(83906.555385/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6014 REAL_CONST(83929.248932/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6015 REAL_CONST(83951.944014/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6016 REAL_CONST(83974.640630/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6017 REAL_CONST(83997.338779/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6018 REAL_CONST(84020.038462/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6019 REAL_CONST(84042.739678/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6020 REAL_CONST(84065.442427/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6021 REAL_CONST(84088.146709/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6022 REAL_CONST(84110.852523/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6023 REAL_CONST(84133.559871/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6024 REAL_CONST(84156.268750/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6025 REAL_CONST(84178.979162/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6026 REAL_CONST(84201.691105/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6027 REAL_CONST(84224.404580/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6028 REAL_CONST(84247.119586/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6029 REAL_CONST(84269.836124/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6030 REAL_CONST(84292.554192/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6031 REAL_CONST(84315.273792/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6032 REAL_CONST(84337.994922/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6033 REAL_CONST(84360.717583/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6034 REAL_CONST(84383.441773/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6035 REAL_CONST(84406.167494/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6036 REAL_CONST(84428.894744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6037 REAL_CONST(84451.623524/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6038 REAL_CONST(84474.353834/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6039 REAL_CONST(84497.085672/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6040 REAL_CONST(84519.819040/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6041 REAL_CONST(84542.553936/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6042 REAL_CONST(84565.290361/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6043 REAL_CONST(84588.028314/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6044 REAL_CONST(84610.767795/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6045 REAL_CONST(84633.508805/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6046 REAL_CONST(84656.251342/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6047 REAL_CONST(84678.995406/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6048 REAL_CONST(84701.740998/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6049 REAL_CONST(84724.488117/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6050 REAL_CONST(84747.236763/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6051 REAL_CONST(84769.986935/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6052 REAL_CONST(84792.738634/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6053 REAL_CONST(84815.491860/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6054 REAL_CONST(84838.246611/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6055 REAL_CONST(84861.002889/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6056 REAL_CONST(84883.760692/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6057 REAL_CONST(84906.520020/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6058 REAL_CONST(84929.280874/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6059 REAL_CONST(84952.043253/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6060 REAL_CONST(84974.807156/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6061 REAL_CONST(84997.572585/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6062 REAL_CONST(85020.339537/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6063 REAL_CONST(85043.108014/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6064 REAL_CONST(85065.878016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6065 REAL_CONST(85088.649540/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6066 REAL_CONST(85111.422589/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6067 REAL_CONST(85134.197161/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6068 REAL_CONST(85156.973256/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6069 REAL_CONST(85179.750874/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6070 REAL_CONST(85202.530016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6071 REAL_CONST(85225.310679/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6072 REAL_CONST(85248.092865/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6073 REAL_CONST(85270.876574/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6074 REAL_CONST(85293.661804/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6075 REAL_CONST(85316.448556/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6076 REAL_CONST(85339.236830/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6077 REAL_CONST(85362.026625/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6078 REAL_CONST(85384.817941/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6079 REAL_CONST(85407.610779/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6080 REAL_CONST(85430.405137/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6081 REAL_CONST(85453.201015/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6082 REAL_CONST(85475.998415/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6083 REAL_CONST(85498.797334/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6084 REAL_CONST(85521.597773/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6085 REAL_CONST(85544.399732/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6086 REAL_CONST(85567.203211/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6087 REAL_CONST(85590.008209/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6088 REAL_CONST(85612.814726/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6089 REAL_CONST(85635.622762/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6090 REAL_CONST(85658.432317/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6091 REAL_CONST(85681.243390/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6092 REAL_CONST(85704.055982/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6093 REAL_CONST(85726.870092/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6094 REAL_CONST(85749.685720/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6095 REAL_CONST(85772.502865/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6096 REAL_CONST(85795.321529/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6097 REAL_CONST(85818.141709/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6098 REAL_CONST(85840.963407/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6099 REAL_CONST(85863.786622/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6100 REAL_CONST(85886.611353/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6101 REAL_CONST(85909.437601/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6102 REAL_CONST(85932.265365/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6103 REAL_CONST(85955.094646/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6104 REAL_CONST(85977.925442/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6105 REAL_CONST(86000.757754/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6106 REAL_CONST(86023.591582/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6107 REAL_CONST(86046.426925/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6108 REAL_CONST(86069.263783/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6109 REAL_CONST(86092.102156/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6110 REAL_CONST(86114.942043/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6111 REAL_CONST(86137.783446/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6112 REAL_CONST(86160.626362/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6113 REAL_CONST(86183.470793/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6114 REAL_CONST(86206.316738/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6115 REAL_CONST(86229.164196/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6116 REAL_CONST(86252.013168/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6117 REAL_CONST(86274.863653/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6118 REAL_CONST(86297.715652/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6119 REAL_CONST(86320.569163/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6120 REAL_CONST(86343.424187/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6121 REAL_CONST(86366.280724/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6122 REAL_CONST(86389.138773/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6123 REAL_CONST(86411.998334/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6124 REAL_CONST(86434.859407/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6125 REAL_CONST(86457.721991/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6126 REAL_CONST(86480.586088/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6127 REAL_CONST(86503.451695/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6128 REAL_CONST(86526.318814/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6129 REAL_CONST(86549.187443/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6130 REAL_CONST(86572.057584/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6131 REAL_CONST(86594.929234/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6132 REAL_CONST(86617.802396/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6133 REAL_CONST(86640.677067/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6134 REAL_CONST(86663.553248/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6135 REAL_CONST(86686.430939/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6136 REAL_CONST(86709.310140/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6137 REAL_CONST(86732.190849/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6138 REAL_CONST(86755.073068/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6139 REAL_CONST(86777.956796/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6140 REAL_CONST(86800.842033/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6141 REAL_CONST(86823.728778/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6142 REAL_CONST(86846.617031/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6143 REAL_CONST(86869.506793/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6144 REAL_CONST(86892.398063/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6145 REAL_CONST(86915.290840/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6146 REAL_CONST(86938.185125/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6147 REAL_CONST(86961.080917/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6148 REAL_CONST(86983.978216/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6149 REAL_CONST(87006.877023/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6150 REAL_CONST(87029.777336/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6151 REAL_CONST(87052.679155/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6152 REAL_CONST(87075.582481/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6153 REAL_CONST(87098.487313/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6154 REAL_CONST(87121.393651/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6155 REAL_CONST(87144.301495/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6156 REAL_CONST(87167.210844/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6157 REAL_CONST(87190.121699/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6158 REAL_CONST(87213.034059/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6159 REAL_CONST(87235.947924/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6160 REAL_CONST(87258.863293/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6161 REAL_CONST(87281.780168/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6162 REAL_CONST(87304.698546/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6163 REAL_CONST(87327.618429/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6164 REAL_CONST(87350.539816/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6165 REAL_CONST(87373.462706/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6166 REAL_CONST(87396.387100/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6167 REAL_CONST(87419.312998/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6168 REAL_CONST(87442.240398/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6169 REAL_CONST(87465.169302/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6170 REAL_CONST(87488.099708/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6171 REAL_CONST(87511.031617/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6172 REAL_CONST(87533.965029/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6173 REAL_CONST(87556.899943/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6174 REAL_CONST(87579.836358/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6175 REAL_CONST(87602.774276/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6176 REAL_CONST(87625.713695/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6177 REAL_CONST(87648.654615/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6178 REAL_CONST(87671.597037/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6179 REAL_CONST(87694.540960/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6180 REAL_CONST(87717.486383/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6181 REAL_CONST(87740.433308/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6182 REAL_CONST(87763.381732/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6183 REAL_CONST(87786.331657/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6184 REAL_CONST(87809.283082/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6185 REAL_CONST(87832.236007/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6186 REAL_CONST(87855.190431/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6187 REAL_CONST(87878.146355/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6188 REAL_CONST(87901.103778/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6189 REAL_CONST(87924.062700/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6190 REAL_CONST(87947.023122/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6191 REAL_CONST(87969.985041/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6192 REAL_CONST(87992.948460/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6193 REAL_CONST(88015.913376/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6194 REAL_CONST(88038.879791/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6195 REAL_CONST(88061.847703/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6196 REAL_CONST(88084.817113/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6197 REAL_CONST(88107.788021/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6198 REAL_CONST(88130.760426/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6199 REAL_CONST(88153.734328/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6200 REAL_CONST(88176.709727/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6201 REAL_CONST(88199.686623/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6202 REAL_CONST(88222.665015/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6203 REAL_CONST(88245.644904/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6204 REAL_CONST(88268.626288/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6205 REAL_CONST(88291.609169/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6206 REAL_CONST(88314.593546/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6207 REAL_CONST(88337.579417/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6208 REAL_CONST(88360.566785/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6209 REAL_CONST(88383.555647/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6210 REAL_CONST(88406.546005/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6211 REAL_CONST(88429.537857/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6212 REAL_CONST(88452.531204/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6213 REAL_CONST(88475.526045/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6214 REAL_CONST(88498.522380/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6215 REAL_CONST(88521.520210/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6216 REAL_CONST(88544.519533/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6217 REAL_CONST(88567.520350/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6218 REAL_CONST(88590.522660/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6219 REAL_CONST(88613.526463/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6220 REAL_CONST(88636.531760/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6221 REAL_CONST(88659.538549/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6222 REAL_CONST(88682.546831/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6223 REAL_CONST(88705.556605/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6224 REAL_CONST(88728.567872/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6225 REAL_CONST(88751.580631/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6226 REAL_CONST(88774.594881/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6227 REAL_CONST(88797.610623/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6228 REAL_CONST(88820.627857/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6229 REAL_CONST(88843.646582/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6230 REAL_CONST(88866.666798/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6231 REAL_CONST(88889.688505/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6232 REAL_CONST(88912.711703/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6233 REAL_CONST(88935.736391/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6234 REAL_CONST(88958.762569/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6235 REAL_CONST(88981.790238/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6236 REAL_CONST(89004.819397/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6237 REAL_CONST(89027.850045/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6238 REAL_CONST(89050.882183/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6239 REAL_CONST(89073.915810/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6240 REAL_CONST(89096.950926/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6241 REAL_CONST(89119.987532/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6242 REAL_CONST(89143.025626/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6243 REAL_CONST(89166.065208/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6244 REAL_CONST(89189.106279/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6245 REAL_CONST(89212.148839/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6246 REAL_CONST(89235.192886/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6247 REAL_CONST(89258.238421/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6248 REAL_CONST(89281.285444/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6249 REAL_CONST(89304.333954/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6250 REAL_CONST(89327.383952/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6251 REAL_CONST(89350.435436/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6252 REAL_CONST(89373.488407/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6253 REAL_CONST(89396.542865/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6254 REAL_CONST(89419.598810/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6255 REAL_CONST(89442.656240/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6256 REAL_CONST(89465.715157/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6257 REAL_CONST(89488.775560/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6258 REAL_CONST(89511.837448/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6259 REAL_CONST(89534.900822/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6260 REAL_CONST(89557.965682/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6261 REAL_CONST(89581.032026/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6262 REAL_CONST(89604.099855/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6263 REAL_CONST(89627.169170/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6264 REAL_CONST(89650.239968/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6265 REAL_CONST(89673.312251/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6266 REAL_CONST(89696.386018/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6267 REAL_CONST(89719.461270/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6268 REAL_CONST(89742.538005/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6269 REAL_CONST(89765.616223/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6270 REAL_CONST(89788.695925/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6271 REAL_CONST(89811.777111/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6272 REAL_CONST(89834.859779/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6273 REAL_CONST(89857.943930/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6274 REAL_CONST(89881.029564/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6275 REAL_CONST(89904.116680/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6276 REAL_CONST(89927.205278/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6277 REAL_CONST(89950.295359/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6278 REAL_CONST(89973.386921/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6279 REAL_CONST(89996.479966/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6280 REAL_CONST(90019.574491/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6281 REAL_CONST(90042.670498/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6282 REAL_CONST(90065.767986/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6283 REAL_CONST(90088.866955/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6284 REAL_CONST(90111.967405/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6285 REAL_CONST(90135.069336/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6286 REAL_CONST(90158.172746/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6287 REAL_CONST(90181.277637/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6288 REAL_CONST(90204.384008/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6289 REAL_CONST(90227.491859/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6290 REAL_CONST(90250.601189/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6291 REAL_CONST(90273.711999/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6292 REAL_CONST(90296.824288/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6293 REAL_CONST(90319.938056/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6294 REAL_CONST(90343.053303/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6295 REAL_CONST(90366.170029/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6296 REAL_CONST(90389.288233/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6297 REAL_CONST(90412.407915/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6298 REAL_CONST(90435.529075/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6299 REAL_CONST(90458.651714/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6300 REAL_CONST(90481.775830/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6301 REAL_CONST(90504.901423/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6302 REAL_CONST(90528.028494/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6303 REAL_CONST(90551.157042/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6304 REAL_CONST(90574.287067/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6305 REAL_CONST(90597.418569/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6306 REAL_CONST(90620.551548/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6307 REAL_CONST(90643.686002/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6308 REAL_CONST(90666.821934/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6309 REAL_CONST(90689.959341/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6310 REAL_CONST(90713.098223/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6311 REAL_CONST(90736.238582/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6312 REAL_CONST(90759.380416/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6313 REAL_CONST(90782.523725/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6314 REAL_CONST(90805.668510/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6315 REAL_CONST(90828.814769/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6316 REAL_CONST(90851.962503/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6317 REAL_CONST(90875.111711/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6318 REAL_CONST(90898.262394/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6319 REAL_CONST(90921.414551/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6320 REAL_CONST(90944.568182/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6321 REAL_CONST(90967.723287/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6322 REAL_CONST(90990.879865/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6323 REAL_CONST(91014.037916/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6324 REAL_CONST(91037.197441/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6325 REAL_CONST(91060.358439/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6326 REAL_CONST(91083.520910/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6327 REAL_CONST(91106.684853/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6328 REAL_CONST(91129.850269/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6329 REAL_CONST(91153.017157/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6330 REAL_CONST(91176.185517/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6331 REAL_CONST(91199.355349/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6332 REAL_CONST(91222.526653/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6333 REAL_CONST(91245.699428/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6334 REAL_CONST(91268.873675/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6335 REAL_CONST(91292.049393/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6336 REAL_CONST(91315.226581/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6337 REAL_CONST(91338.405241/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6338 REAL_CONST(91361.585371/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6339 REAL_CONST(91384.766971/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6340 REAL_CONST(91407.950042/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6341 REAL_CONST(91431.134583/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6342 REAL_CONST(91454.320593/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6343 REAL_CONST(91477.508074/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6344 REAL_CONST(91500.697023/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6345 REAL_CONST(91523.887442/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6346 REAL_CONST(91547.079330/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6347 REAL_CONST(91570.272687/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6348 REAL_CONST(91593.467513/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6349 REAL_CONST(91616.663807/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6350 REAL_CONST(91639.861570/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6351 REAL_CONST(91663.060800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6352 REAL_CONST(91686.261499/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6353 REAL_CONST(91709.463666/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6354 REAL_CONST(91732.667300/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6355 REAL_CONST(91755.872401/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6356 REAL_CONST(91779.078970/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6357 REAL_CONST(91802.287006/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6358 REAL_CONST(91825.496509/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6359 REAL_CONST(91848.707478/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6360 REAL_CONST(91871.919914/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6361 REAL_CONST(91895.133816/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6362 REAL_CONST(91918.349185/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6363 REAL_CONST(91941.566019/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6364 REAL_CONST(91964.784319/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6365 REAL_CONST(91988.004084/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6366 REAL_CONST(92011.225315/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6367 REAL_CONST(92034.448012/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6368 REAL_CONST(92057.672173/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6369 REAL_CONST(92080.897799/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6370 REAL_CONST(92104.124889/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6371 REAL_CONST(92127.353445/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6372 REAL_CONST(92150.583464/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6373 REAL_CONST(92173.814948/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6374 REAL_CONST(92197.047895/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6375 REAL_CONST(92220.282306/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6376 REAL_CONST(92243.518181/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6377 REAL_CONST(92266.755519/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6378 REAL_CONST(92289.994320/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6379 REAL_CONST(92313.234584/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6380 REAL_CONST(92336.476311/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6381 REAL_CONST(92359.719501/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6382 REAL_CONST(92382.964153/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6383 REAL_CONST(92406.210267/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6384 REAL_CONST(92429.457843/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6385 REAL_CONST(92452.706882/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6386 REAL_CONST(92475.957382/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6387 REAL_CONST(92499.209343/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6388 REAL_CONST(92522.462766/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6389 REAL_CONST(92545.717650/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6390 REAL_CONST(92568.973995/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6391 REAL_CONST(92592.231800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6392 REAL_CONST(92615.491067/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6393 REAL_CONST(92638.751793/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6394 REAL_CONST(92662.013980/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6395 REAL_CONST(92685.277627/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6396 REAL_CONST(92708.542734/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6397 REAL_CONST(92731.809300/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6398 REAL_CONST(92755.077326/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6399 REAL_CONST(92778.346812/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6400 REAL_CONST(92801.617756/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6401 REAL_CONST(92824.890160/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6402 REAL_CONST(92848.164022/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6403 REAL_CONST(92871.439342/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6404 REAL_CONST(92894.716122/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6405 REAL_CONST(92917.994359/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6406 REAL_CONST(92941.274054/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6407 REAL_CONST(92964.555207/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6408 REAL_CONST(92987.837818/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6409 REAL_CONST(93011.121887/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6410 REAL_CONST(93034.407412/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6411 REAL_CONST(93057.694395/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6412 REAL_CONST(93080.982835/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6413 REAL_CONST(93104.272732/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6414 REAL_CONST(93127.564085/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6415 REAL_CONST(93150.856894/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6416 REAL_CONST(93174.151160/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6417 REAL_CONST(93197.446881/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6418 REAL_CONST(93220.744059/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6419 REAL_CONST(93244.042692/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6420 REAL_CONST(93267.342781/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6421 REAL_CONST(93290.644325/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6422 REAL_CONST(93313.947324/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6423 REAL_CONST(93337.251778/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6424 REAL_CONST(93360.557687/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6425 REAL_CONST(93383.865050/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6426 REAL_CONST(93407.173868/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6427 REAL_CONST(93430.484140/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6428 REAL_CONST(93453.795866/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6429 REAL_CONST(93477.109046/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6430 REAL_CONST(93500.423680/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6431 REAL_CONST(93523.739767/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6432 REAL_CONST(93547.057307/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6433 REAL_CONST(93570.376300/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6434 REAL_CONST(93593.696747/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6435 REAL_CONST(93617.018646/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6436 REAL_CONST(93640.341998/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6437 REAL_CONST(93663.666802/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6438 REAL_CONST(93686.993058/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6439 REAL_CONST(93710.320766/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6440 REAL_CONST(93733.649927/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6441 REAL_CONST(93756.980539/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6442 REAL_CONST(93780.312602/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6443 REAL_CONST(93803.646117/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6444 REAL_CONST(93826.981083/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6445 REAL_CONST(93850.317499/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6446 REAL_CONST(93873.655367/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6447 REAL_CONST(93896.994685/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6448 REAL_CONST(93920.335454/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6449 REAL_CONST(93943.677673/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6450 REAL_CONST(93967.021342/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6451 REAL_CONST(93990.366460/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6452 REAL_CONST(94013.713029/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6453 REAL_CONST(94037.061047/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6454 REAL_CONST(94060.410514/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6455 REAL_CONST(94083.761430/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6456 REAL_CONST(94107.113796/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6457 REAL_CONST(94130.467610/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6458 REAL_CONST(94153.822873/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6459 REAL_CONST(94177.179584/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6460 REAL_CONST(94200.537744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6461 REAL_CONST(94223.897351/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6462 REAL_CONST(94247.258407/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6463 REAL_CONST(94270.620910/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6464 REAL_CONST(94293.984861/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6465 REAL_CONST(94317.350259/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6466 REAL_CONST(94340.717104/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6467 REAL_CONST(94364.085396/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6468 REAL_CONST(94387.455135/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6469 REAL_CONST(94410.826321/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6470 REAL_CONST(94434.198953/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6471 REAL_CONST(94457.573032/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6472 REAL_CONST(94480.948556/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6473 REAL_CONST(94504.325527/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6474 REAL_CONST(94527.703943/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6475 REAL_CONST(94551.083805/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6476 REAL_CONST(94574.465112/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6477 REAL_CONST(94597.847864/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6478 REAL_CONST(94621.232062/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6479 REAL_CONST(94644.617704/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6480 REAL_CONST(94668.004791/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6481 REAL_CONST(94691.393322/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6482 REAL_CONST(94714.783298/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6483 REAL_CONST(94738.174718/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6484 REAL_CONST(94761.567582/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6485 REAL_CONST(94784.961890/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6486 REAL_CONST(94808.357641/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6487 REAL_CONST(94831.754835/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6488 REAL_CONST(94855.153473/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6489 REAL_CONST(94878.553554/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6490 REAL_CONST(94901.955078/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6491 REAL_CONST(94925.358045/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6492 REAL_CONST(94948.762454/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6493 REAL_CONST(94972.168305/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6494 REAL_CONST(94995.575599/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6495 REAL_CONST(95018.984335/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6496 REAL_CONST(95042.394512/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6497 REAL_CONST(95065.806131/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6498 REAL_CONST(95089.219192/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6499 REAL_CONST(95112.633694/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6500 REAL_CONST(95136.049637/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6501 REAL_CONST(95159.467021/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6502 REAL_CONST(95182.885845/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6503 REAL_CONST(95206.306111/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6504 REAL_CONST(95229.727816/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6505 REAL_CONST(95253.150962/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6506 REAL_CONST(95276.575548/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6507 REAL_CONST(95300.001574/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6508 REAL_CONST(95323.429040/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6509 REAL_CONST(95346.857945/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6510 REAL_CONST(95370.288289/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6511 REAL_CONST(95393.720073/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6512 REAL_CONST(95417.153295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6513 REAL_CONST(95440.587957/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6514 REAL_CONST(95464.024057/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6515 REAL_CONST(95487.461595/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6516 REAL_CONST(95510.900572/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6517 REAL_CONST(95534.340987/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6518 REAL_CONST(95557.782839/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6519 REAL_CONST(95581.226130/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6520 REAL_CONST(95604.670858/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6521 REAL_CONST(95628.117024/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6522 REAL_CONST(95651.564626/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6523 REAL_CONST(95675.013666/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6524 REAL_CONST(95698.464143/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6525 REAL_CONST(95721.916056/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6526 REAL_CONST(95745.369406/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6527 REAL_CONST(95768.824192/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6528 REAL_CONST(95792.280415/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6529 REAL_CONST(95815.738073/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6530 REAL_CONST(95839.197167/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6531 REAL_CONST(95862.657697/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6532 REAL_CONST(95886.119662/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6533 REAL_CONST(95909.583063/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6534 REAL_CONST(95933.047899/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6535 REAL_CONST(95956.514169/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6536 REAL_CONST(95979.981875/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6537 REAL_CONST(96003.451015/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6538 REAL_CONST(96026.921589/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6539 REAL_CONST(96050.393598/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6540 REAL_CONST(96073.867041/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6541 REAL_CONST(96097.341917/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6542 REAL_CONST(96120.818227/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6543 REAL_CONST(96144.295971/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6544 REAL_CONST(96167.775148/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6545 REAL_CONST(96191.255759/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6546 REAL_CONST(96214.737802/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6547 REAL_CONST(96238.221279/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6548 REAL_CONST(96261.706187/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6549 REAL_CONST(96285.192529/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6550 REAL_CONST(96308.680302/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6551 REAL_CONST(96332.169508/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6552 REAL_CONST(96355.660146/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6553 REAL_CONST(96379.152216/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6554 REAL_CONST(96402.645717/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6555 REAL_CONST(96426.140650/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6556 REAL_CONST(96449.637013/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6557 REAL_CONST(96473.134808/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6558 REAL_CONST(96496.634034/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6559 REAL_CONST(96520.134691/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6560 REAL_CONST(96543.636778/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6561 REAL_CONST(96567.140296/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6562 REAL_CONST(96590.645244/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6563 REAL_CONST(96614.151622/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6564 REAL_CONST(96637.659429/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6565 REAL_CONST(96661.168667/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6566 REAL_CONST(96684.679334/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6567 REAL_CONST(96708.191430/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6568 REAL_CONST(96731.704956/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6569 REAL_CONST(96755.219910/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6570 REAL_CONST(96778.736294/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6571 REAL_CONST(96802.254106/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6572 REAL_CONST(96825.773346/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6573 REAL_CONST(96849.294015/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6574 REAL_CONST(96872.816112/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6575 REAL_CONST(96896.339637/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6576 REAL_CONST(96919.864589/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6577 REAL_CONST(96943.390970/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6578 REAL_CONST(96966.918777/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6579 REAL_CONST(96990.448012/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6580 REAL_CONST(97013.978674/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6581 REAL_CONST(97037.510763/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6582 REAL_CONST(97061.044279/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6583 REAL_CONST(97084.579221/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6584 REAL_CONST(97108.115590/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6585 REAL_CONST(97131.653385/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6586 REAL_CONST(97155.192606/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6587 REAL_CONST(97178.733253/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6588 REAL_CONST(97202.275326/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6589 REAL_CONST(97225.818824/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6590 REAL_CONST(97249.363747/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6591 REAL_CONST(97272.910096/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6592 REAL_CONST(97296.457870/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6593 REAL_CONST(97320.007069/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6594 REAL_CONST(97343.557692/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6595 REAL_CONST(97367.109740/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6596 REAL_CONST(97390.663212/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6597 REAL_CONST(97414.218108/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6598 REAL_CONST(97437.774428/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6599 REAL_CONST(97461.332172/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6600 REAL_CONST(97484.891340/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6601 REAL_CONST(97508.451931/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6602 REAL_CONST(97532.013946/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6603 REAL_CONST(97555.577383/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6604 REAL_CONST(97579.142244/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6605 REAL_CONST(97602.708527/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6606 REAL_CONST(97626.276233/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6607 REAL_CONST(97649.845362/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6608 REAL_CONST(97673.415912/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6609 REAL_CONST(97696.987885/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6610 REAL_CONST(97720.561280/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6611 REAL_CONST(97744.136096/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6612 REAL_CONST(97767.712334/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6613 REAL_CONST(97791.289994/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6614 REAL_CONST(97814.869074/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6615 REAL_CONST(97838.449576/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6616 REAL_CONST(97862.031499/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6617 REAL_CONST(97885.614842/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6618 REAL_CONST(97909.199606/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6619 REAL_CONST(97932.785791/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6620 REAL_CONST(97956.373395/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6621 REAL_CONST(97979.962420/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6622 REAL_CONST(98003.552864/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6623 REAL_CONST(98027.144728/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6624 REAL_CONST(98050.738012/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6625 REAL_CONST(98074.332715/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6626 REAL_CONST(98097.928837/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6627 REAL_CONST(98121.526378/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6628 REAL_CONST(98145.125339/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6629 REAL_CONST(98168.725717/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6630 REAL_CONST(98192.327515/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6631 REAL_CONST(98215.930730/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6632 REAL_CONST(98239.535364/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6633 REAL_CONST(98263.141416/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6634 REAL_CONST(98286.748885/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6635 REAL_CONST(98310.357772/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6636 REAL_CONST(98333.968077/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6637 REAL_CONST(98357.579799/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6638 REAL_CONST(98381.192938/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6639 REAL_CONST(98404.807495/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6640 REAL_CONST(98428.423468/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6641 REAL_CONST(98452.040857/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6642 REAL_CONST(98475.659663/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6643 REAL_CONST(98499.279885/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6644 REAL_CONST(98522.901524/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6645 REAL_CONST(98546.524578/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6646 REAL_CONST(98570.149049/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6647 REAL_CONST(98593.774934/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6648 REAL_CONST(98617.402236/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6649 REAL_CONST(98641.030952/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6650 REAL_CONST(98664.661084/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6651 REAL_CONST(98688.292630/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6652 REAL_CONST(98711.925592/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6653 REAL_CONST(98735.559968/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6654 REAL_CONST(98759.195758/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6655 REAL_CONST(98782.832963/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6656 REAL_CONST(98806.471581/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6657 REAL_CONST(98830.111614/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6658 REAL_CONST(98853.753060/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6659 REAL_CONST(98877.395920/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6660 REAL_CONST(98901.040194/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6661 REAL_CONST(98924.685880/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6662 REAL_CONST(98948.332980/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6663 REAL_CONST(98971.981493/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6664 REAL_CONST(98995.631418/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6665 REAL_CONST(99019.282756/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6666 REAL_CONST(99042.935506/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6667 REAL_CONST(99066.589669/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6668 REAL_CONST(99090.245243/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6669 REAL_CONST(99113.902230/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6670 REAL_CONST(99137.560628/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6671 REAL_CONST(99161.220438/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6672 REAL_CONST(99184.881659/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6673 REAL_CONST(99208.544291/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6674 REAL_CONST(99232.208335/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6675 REAL_CONST(99255.873789/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6676 REAL_CONST(99279.540654/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6677 REAL_CONST(99303.208930/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6678 REAL_CONST(99326.878616/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6679 REAL_CONST(99350.549712/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6680 REAL_CONST(99374.222218/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6681 REAL_CONST(99397.896134/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6682 REAL_CONST(99421.571460/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6683 REAL_CONST(99445.248195/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6684 REAL_CONST(99468.926340/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6685 REAL_CONST(99492.605894/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6686 REAL_CONST(99516.286857/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6687 REAL_CONST(99539.969229/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6688 REAL_CONST(99563.653009/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6689 REAL_CONST(99587.338198/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6690 REAL_CONST(99611.024796/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6691 REAL_CONST(99634.712801/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6692 REAL_CONST(99658.402215/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6693 REAL_CONST(99682.093036/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6694 REAL_CONST(99705.785265/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6695 REAL_CONST(99729.478902/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6696 REAL_CONST(99753.173946/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6697 REAL_CONST(99776.870398/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6698 REAL_CONST(99800.568256/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6699 REAL_CONST(99824.267521/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6700 REAL_CONST(99847.968193/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6701 REAL_CONST(99871.670271/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6702 REAL_CONST(99895.373756/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6703 REAL_CONST(99919.078647/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6704 REAL_CONST(99942.784944/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6705 REAL_CONST(99966.492647/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6706 REAL_CONST(99990.201755/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6707 REAL_CONST(100013.912269/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6708 REAL_CONST(100037.624189/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6709 REAL_CONST(100061.337513/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6710 REAL_CONST(100085.052243/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6711 REAL_CONST(100108.768377/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6712 REAL_CONST(100132.485917/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6713 REAL_CONST(100156.204860/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6714 REAL_CONST(100179.925208/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6715 REAL_CONST(100203.646961/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6716 REAL_CONST(100227.370117/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6717 REAL_CONST(100251.094677/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6718 REAL_CONST(100274.820641/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6719 REAL_CONST(100298.548008/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6720 REAL_CONST(100322.276779/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6721 REAL_CONST(100346.006953/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6722 REAL_CONST(100369.738530/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6723 REAL_CONST(100393.471510/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6724 REAL_CONST(100417.205892/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6725 REAL_CONST(100440.941677/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6726 REAL_CONST(100464.678865/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6727 REAL_CONST(100488.417454/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6728 REAL_CONST(100512.157446/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6729 REAL_CONST(100535.898840/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6730 REAL_CONST(100559.641635/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6731 REAL_CONST(100583.385832/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6732 REAL_CONST(100607.131430/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6733 REAL_CONST(100630.878429/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6734 REAL_CONST(100654.626830/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6735 REAL_CONST(100678.376631/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6736 REAL_CONST(100702.127833/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6737 REAL_CONST(100725.880436/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6738 REAL_CONST(100749.634438/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6739 REAL_CONST(100773.389842/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6740 REAL_CONST(100797.146645/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6741 REAL_CONST(100820.904848/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6742 REAL_CONST(100844.664451/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6743 REAL_CONST(100868.425453/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6744 REAL_CONST(100892.187855/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6745 REAL_CONST(100915.951656/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6746 REAL_CONST(100939.716856/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6747 REAL_CONST(100963.483455/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6748 REAL_CONST(100987.251453/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6749 REAL_CONST(101011.020849/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6750 REAL_CONST(101034.791644/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6751 REAL_CONST(101058.563837/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6752 REAL_CONST(101082.337428/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6753 REAL_CONST(101106.112417/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6754 REAL_CONST(101129.888803/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6755 REAL_CONST(101153.666587/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6756 REAL_CONST(101177.445769/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6757 REAL_CONST(101201.226348/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6758 REAL_CONST(101225.008324/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6759 REAL_CONST(101248.791697/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6760 REAL_CONST(101272.576467/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6761 REAL_CONST(101296.362633/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6762 REAL_CONST(101320.150196/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6763 REAL_CONST(101343.939155/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6764 REAL_CONST(101367.729510/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6765 REAL_CONST(101391.521261/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6766 REAL_CONST(101415.314408/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6767 REAL_CONST(101439.108950/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6768 REAL_CONST(101462.904888/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6769 REAL_CONST(101486.702221/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6770 REAL_CONST(101510.500949/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6771 REAL_CONST(101534.301073/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6772 REAL_CONST(101558.102591/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6773 REAL_CONST(101581.905503/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6774 REAL_CONST(101605.709811/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6775 REAL_CONST(101629.515512/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6776 REAL_CONST(101653.322608/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6777 REAL_CONST(101677.131097/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6778 REAL_CONST(101700.940981/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6779 REAL_CONST(101724.752258/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6780 REAL_CONST(101748.564928/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6781 REAL_CONST(101772.378992/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6782 REAL_CONST(101796.194449/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6783 REAL_CONST(101820.011299/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6784 REAL_CONST(101843.829542/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6785 REAL_CONST(101867.649178/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6786 REAL_CONST(101891.470206/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6787 REAL_CONST(101915.292626/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6788 REAL_CONST(101939.116439/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6789 REAL_CONST(101962.941644/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6790 REAL_CONST(101986.768240/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6791 REAL_CONST(102010.596228/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6792 REAL_CONST(102034.425608/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6793 REAL_CONST(102058.256379/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6794 REAL_CONST(102082.088542/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6795 REAL_CONST(102105.922095/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6796 REAL_CONST(102129.757039/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6797 REAL_CONST(102153.593374/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6798 REAL_CONST(102177.431100/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6799 REAL_CONST(102201.270216/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6800 REAL_CONST(102225.110722/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6801 REAL_CONST(102248.952618/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6802 REAL_CONST(102272.795904/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6803 REAL_CONST(102296.640580/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6804 REAL_CONST(102320.486646/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6805 REAL_CONST(102344.334101/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6806 REAL_CONST(102368.182945/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6807 REAL_CONST(102392.033178/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6808 REAL_CONST(102415.884801/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6809 REAL_CONST(102439.737812/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6810 REAL_CONST(102463.592211/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6811 REAL_CONST(102487.448000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6812 REAL_CONST(102511.305176/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6813 REAL_CONST(102535.163741/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6814 REAL_CONST(102559.023693/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6815 REAL_CONST(102582.885033/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6816 REAL_CONST(102606.747761/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6817 REAL_CONST(102630.611877/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6818 REAL_CONST(102654.477380/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6819 REAL_CONST(102678.344270/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6820 REAL_CONST(102702.212547/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6821 REAL_CONST(102726.082211/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6822 REAL_CONST(102749.953261/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6823 REAL_CONST(102773.825698/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6824 REAL_CONST(102797.699521/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6825 REAL_CONST(102821.574731/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6826 REAL_CONST(102845.451327/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6827 REAL_CONST(102869.329308/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6828 REAL_CONST(102893.208675/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6829 REAL_CONST(102917.089428/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6830 REAL_CONST(102940.971566/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6831 REAL_CONST(102964.855090/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6832 REAL_CONST(102988.739998/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6833 REAL_CONST(103012.626292/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6834 REAL_CONST(103036.513970/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6835 REAL_CONST(103060.403033/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6836 REAL_CONST(103084.293480/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6837 REAL_CONST(103108.185311/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6838 REAL_CONST(103132.078527/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6839 REAL_CONST(103155.973126/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6840 REAL_CONST(103179.869110/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6841 REAL_CONST(103203.766477/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6842 REAL_CONST(103227.665227/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6843 REAL_CONST(103251.565361/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6844 REAL_CONST(103275.466878/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6845 REAL_CONST(103299.369777/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6846 REAL_CONST(103323.274060/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6847 REAL_CONST(103347.179725/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6848 REAL_CONST(103371.086773/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6849 REAL_CONST(103394.995203/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6850 REAL_CONST(103418.905016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6851 REAL_CONST(103442.816210/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6852 REAL_CONST(103466.728787/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6853 REAL_CONST(103490.642745/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6854 REAL_CONST(103514.558084/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6855 REAL_CONST(103538.474805/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6856 REAL_CONST(103562.392907/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6857 REAL_CONST(103586.312391/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6858 REAL_CONST(103610.233255/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6859 REAL_CONST(103634.155500/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6860 REAL_CONST(103658.079125/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6861 REAL_CONST(103682.004131/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6862 REAL_CONST(103705.930517/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6863 REAL_CONST(103729.858284/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6864 REAL_CONST(103753.787430/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6865 REAL_CONST(103777.717956/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6866 REAL_CONST(103801.649862/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6867 REAL_CONST(103825.583147/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6868 REAL_CONST(103849.517812/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6869 REAL_CONST(103873.453855/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6870 REAL_CONST(103897.391278/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6871 REAL_CONST(103921.330080/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6872 REAL_CONST(103945.270260/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6873 REAL_CONST(103969.211819/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6874 REAL_CONST(103993.154756/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6875 REAL_CONST(104017.099071/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6876 REAL_CONST(104041.044764/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6877 REAL_CONST(104064.991836/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6878 REAL_CONST(104088.940285/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6879 REAL_CONST(104112.890111/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6880 REAL_CONST(104136.841315/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6881 REAL_CONST(104160.793897/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6882 REAL_CONST(104184.747855/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6883 REAL_CONST(104208.703190/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6884 REAL_CONST(104232.659902/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6885 REAL_CONST(104256.617991/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6886 REAL_CONST(104280.577456/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6887 REAL_CONST(104304.538298/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6888 REAL_CONST(104328.500515/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6889 REAL_CONST(104352.464109/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6890 REAL_CONST(104376.429078/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6891 REAL_CONST(104400.395424/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6892 REAL_CONST(104424.363144/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6893 REAL_CONST(104448.332240/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6894 REAL_CONST(104472.302712/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6895 REAL_CONST(104496.274558/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6896 REAL_CONST(104520.247779/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6897 REAL_CONST(104544.222375/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6898 REAL_CONST(104568.198345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6899 REAL_CONST(104592.175690/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6900 REAL_CONST(104616.154409/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6901 REAL_CONST(104640.134503/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6902 REAL_CONST(104664.115970/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6903 REAL_CONST(104688.098811/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6904 REAL_CONST(104712.083025/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6905 REAL_CONST(104736.068613/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6906 REAL_CONST(104760.055575/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6907 REAL_CONST(104784.043909/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6908 REAL_CONST(104808.033617/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6909 REAL_CONST(104832.024697/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6910 REAL_CONST(104856.017150/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6911 REAL_CONST(104880.010976/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6912 REAL_CONST(104904.006174/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6913 REAL_CONST(104928.002744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6914 REAL_CONST(104952.000686/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6915 REAL_CONST(104976.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6916 REAL_CONST(105000.000686/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6917 REAL_CONST(105024.002743/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6918 REAL_CONST(105048.006172/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6919 REAL_CONST(105072.010972/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6920 REAL_CONST(105096.017144/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6921 REAL_CONST(105120.024686/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6922 REAL_CONST(105144.033599/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6923 REAL_CONST(105168.043882/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6924 REAL_CONST(105192.055537/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6925 REAL_CONST(105216.068561/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6926 REAL_CONST(105240.082956/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6927 REAL_CONST(105264.098720/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6928 REAL_CONST(105288.115855/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6929 REAL_CONST(105312.134359/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6930 REAL_CONST(105336.154233/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6931 REAL_CONST(105360.175476/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6932 REAL_CONST(105384.198088/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6933 REAL_CONST(105408.222070/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6934 REAL_CONST(105432.247420/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6935 REAL_CONST(105456.274140/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6936 REAL_CONST(105480.302227/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6937 REAL_CONST(105504.331684/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6938 REAL_CONST(105528.362508/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6939 REAL_CONST(105552.394701/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6940 REAL_CONST(105576.428262/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6941 REAL_CONST(105600.463190/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6942 REAL_CONST(105624.499487/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6943 REAL_CONST(105648.537150/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6944 REAL_CONST(105672.576181/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6945 REAL_CONST(105696.616580/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6946 REAL_CONST(105720.658345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6947 REAL_CONST(105744.701478/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6948 REAL_CONST(105768.745977/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6949 REAL_CONST(105792.791842/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6950 REAL_CONST(105816.839074/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6951 REAL_CONST(105840.887673/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6952 REAL_CONST(105864.937637/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6953 REAL_CONST(105888.988968/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6954 REAL_CONST(105913.041664/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6955 REAL_CONST(105937.095726/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6956 REAL_CONST(105961.151153/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6957 REAL_CONST(105985.207946/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6958 REAL_CONST(106009.266104/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6959 REAL_CONST(106033.325627/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6960 REAL_CONST(106057.386515/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6961 REAL_CONST(106081.448768/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6962 REAL_CONST(106105.512385/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6963 REAL_CONST(106129.577367/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6964 REAL_CONST(106153.643712/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6965 REAL_CONST(106177.711422/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6966 REAL_CONST(106201.780496/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6967 REAL_CONST(106225.850934/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6968 REAL_CONST(106249.922736/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6969 REAL_CONST(106273.995901/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6970 REAL_CONST(106298.070429/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6971 REAL_CONST(106322.146320/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6972 REAL_CONST(106346.223575/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6973 REAL_CONST(106370.302192/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6974 REAL_CONST(106394.382172/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6975 REAL_CONST(106418.463515/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6976 REAL_CONST(106442.546220/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6977 REAL_CONST(106466.630287/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6978 REAL_CONST(106490.715717/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6979 REAL_CONST(106514.802508/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6980 REAL_CONST(106538.890661/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6981 REAL_CONST(106562.980176/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6982 REAL_CONST(106587.071052/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6983 REAL_CONST(106611.163290/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6984 REAL_CONST(106635.256889/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6985 REAL_CONST(106659.351849/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6986 REAL_CONST(106683.448169/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6987 REAL_CONST(106707.545851/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6988 REAL_CONST(106731.644893/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6989 REAL_CONST(106755.745295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6990 REAL_CONST(106779.847058/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6991 REAL_CONST(106803.950181/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6992 REAL_CONST(106828.054663/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6993 REAL_CONST(106852.160506/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6994 REAL_CONST(106876.267708/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6995 REAL_CONST(106900.376270/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6996 REAL_CONST(106924.486191/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6997 REAL_CONST(106948.597471/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6998 REAL_CONST(106972.710110/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
6999 REAL_CONST(106996.824108/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7000 REAL_CONST(107020.939465/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7001 REAL_CONST(107045.056181/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7002 REAL_CONST(107069.174255/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7003 REAL_CONST(107093.293687/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7004 REAL_CONST(107117.414477/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7005 REAL_CONST(107141.536625/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7006 REAL_CONST(107165.660131/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7007 REAL_CONST(107189.784995/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7008 REAL_CONST(107213.911216/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7009 REAL_CONST(107238.038794/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7010 REAL_CONST(107262.167730/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7011 REAL_CONST(107286.298023/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7012 REAL_CONST(107310.429672/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7013 REAL_CONST(107334.562679/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7014 REAL_CONST(107358.697042/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7015 REAL_CONST(107382.832761/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7016 REAL_CONST(107406.969837/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7017 REAL_CONST(107431.108269/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7018 REAL_CONST(107455.248056/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7019 REAL_CONST(107479.389200/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7020 REAL_CONST(107503.531699/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7021 REAL_CONST(107527.675554/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7022 REAL_CONST(107551.820764/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7023 REAL_CONST(107575.967330/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7024 REAL_CONST(107600.115250/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7025 REAL_CONST(107624.264526/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7026 REAL_CONST(107648.415156/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7027 REAL_CONST(107672.567140/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7028 REAL_CONST(107696.720480/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7029 REAL_CONST(107720.875173/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7030 REAL_CONST(107745.031221/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7031 REAL_CONST(107769.188622/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7032 REAL_CONST(107793.347378/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7033 REAL_CONST(107817.507487/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7034 REAL_CONST(107841.668950/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7035 REAL_CONST(107865.831766/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7036 REAL_CONST(107889.995935/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7037 REAL_CONST(107914.161458/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7038 REAL_CONST(107938.328333/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7039 REAL_CONST(107962.496561/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7040 REAL_CONST(107986.666142/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7041 REAL_CONST(108010.837076/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7042 REAL_CONST(108035.009361/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7043 REAL_CONST(108059.182999/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7044 REAL_CONST(108083.357989/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7045 REAL_CONST(108107.534331/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7046 REAL_CONST(108131.712024/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7047 REAL_CONST(108155.891069/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7048 REAL_CONST(108180.071466/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7049 REAL_CONST(108204.253213/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7050 REAL_CONST(108228.436312/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7051 REAL_CONST(108252.620762/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7052 REAL_CONST(108276.806563/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7053 REAL_CONST(108300.993714/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7054 REAL_CONST(108325.182216/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7055 REAL_CONST(108349.372068/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7056 REAL_CONST(108373.563271/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7057 REAL_CONST(108397.755823/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7058 REAL_CONST(108421.949726/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7059 REAL_CONST(108446.144978/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7060 REAL_CONST(108470.341580/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7061 REAL_CONST(108494.539531/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7062 REAL_CONST(108518.738831/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7063 REAL_CONST(108542.939481/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7064 REAL_CONST(108567.141480/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7065 REAL_CONST(108591.344828/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7066 REAL_CONST(108615.549524/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7067 REAL_CONST(108639.755569/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7068 REAL_CONST(108663.962962/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7069 REAL_CONST(108688.171704/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7070 REAL_CONST(108712.381794/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7071 REAL_CONST(108736.593231/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7072 REAL_CONST(108760.806017/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7073 REAL_CONST(108785.020150/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7074 REAL_CONST(108809.235631/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7075 REAL_CONST(108833.452459/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7076 REAL_CONST(108857.670634/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7077 REAL_CONST(108881.890156/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7078 REAL_CONST(108906.111025/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7079 REAL_CONST(108930.333241/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7080 REAL_CONST(108954.556804/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7081 REAL_CONST(108978.781713/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7082 REAL_CONST(109003.007968/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7083 REAL_CONST(109027.235570/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7084 REAL_CONST(109051.464517/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7085 REAL_CONST(109075.694811/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7086 REAL_CONST(109099.926450/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7087 REAL_CONST(109124.159435/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7088 REAL_CONST(109148.393765/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7089 REAL_CONST(109172.629440/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7090 REAL_CONST(109196.866461/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7091 REAL_CONST(109221.104826/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7092 REAL_CONST(109245.344537/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7093 REAL_CONST(109269.585591/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7094 REAL_CONST(109293.827991/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7095 REAL_CONST(109318.071735/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7096 REAL_CONST(109342.316823/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7097 REAL_CONST(109366.563255/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7098 REAL_CONST(109390.811031/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7099 REAL_CONST(109415.060151/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7100 REAL_CONST(109439.310615/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7101 REAL_CONST(109463.562421/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7102 REAL_CONST(109487.815572/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7103 REAL_CONST(109512.070065/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7104 REAL_CONST(109536.325902/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7105 REAL_CONST(109560.583081/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7106 REAL_CONST(109584.841603/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7107 REAL_CONST(109609.101468/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7108 REAL_CONST(109633.362675/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7109 REAL_CONST(109657.625225/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7110 REAL_CONST(109681.889116/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7111 REAL_CONST(109706.154350/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7112 REAL_CONST(109730.420925/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7113 REAL_CONST(109754.688842/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7114 REAL_CONST(109778.958101/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7115 REAL_CONST(109803.228701/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7116 REAL_CONST(109827.500642/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7117 REAL_CONST(109851.773925/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7118 REAL_CONST(109876.048548/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7119 REAL_CONST(109900.324512/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7120 REAL_CONST(109924.601817/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7121 REAL_CONST(109948.880462/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7122 REAL_CONST(109973.160448/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7123 REAL_CONST(109997.441774/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7124 REAL_CONST(110021.724440/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7125 REAL_CONST(110046.008446/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7126 REAL_CONST(110070.293792/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7127 REAL_CONST(110094.580477/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7128 REAL_CONST(110118.868502/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7129 REAL_CONST(110143.157866/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7130 REAL_CONST(110167.448569/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7131 REAL_CONST(110191.740611/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7132 REAL_CONST(110216.033993/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7133 REAL_CONST(110240.328713/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7134 REAL_CONST(110264.624771/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7135 REAL_CONST(110288.922168/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7136 REAL_CONST(110313.220903/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7137 REAL_CONST(110337.520977/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7138 REAL_CONST(110361.822388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7139 REAL_CONST(110386.125137/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7140 REAL_CONST(110410.429224/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7141 REAL_CONST(110434.734649/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7142 REAL_CONST(110459.041411/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7143 REAL_CONST(110483.349510/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7144 REAL_CONST(110507.658946/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7145 REAL_CONST(110531.969719/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7146 REAL_CONST(110556.281830/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7147 REAL_CONST(110580.595276/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7148 REAL_CONST(110604.910060/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7149 REAL_CONST(110629.226179/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7150 REAL_CONST(110653.543635/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7151 REAL_CONST(110677.862427/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7152 REAL_CONST(110702.182555/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7153 REAL_CONST(110726.504019/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7154 REAL_CONST(110750.826818/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7155 REAL_CONST(110775.150953/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7156 REAL_CONST(110799.476423/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7157 REAL_CONST(110823.803229/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7158 REAL_CONST(110848.131369/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7159 REAL_CONST(110872.460845/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7160 REAL_CONST(110896.791655/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7161 REAL_CONST(110921.123800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7162 REAL_CONST(110945.457279/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7163 REAL_CONST(110969.792093/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7164 REAL_CONST(110994.128240/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7165 REAL_CONST(111018.465722/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7166 REAL_CONST(111042.804538/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7167 REAL_CONST(111067.144687/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7168 REAL_CONST(111091.486170/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7169 REAL_CONST(111115.828987/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7170 REAL_CONST(111140.173137/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7171 REAL_CONST(111164.518620/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7172 REAL_CONST(111188.865436/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7173 REAL_CONST(111213.213585/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7174 REAL_CONST(111237.563066/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7175 REAL_CONST(111261.913880/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7176 REAL_CONST(111286.266027/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7177 REAL_CONST(111310.619506/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7178 REAL_CONST(111334.974317/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7179 REAL_CONST(111359.330460/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7180 REAL_CONST(111383.687935/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7181 REAL_CONST(111408.046741/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7182 REAL_CONST(111432.406879/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7183 REAL_CONST(111456.768349/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7184 REAL_CONST(111481.131149/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7185 REAL_CONST(111505.495281/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7186 REAL_CONST(111529.860744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7187 REAL_CONST(111554.227538/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7188 REAL_CONST(111578.595662/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7189 REAL_CONST(111602.965117/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7190 REAL_CONST(111627.335902/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7191 REAL_CONST(111651.708018/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7192 REAL_CONST(111676.081464/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7193 REAL_CONST(111700.456239/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7194 REAL_CONST(111724.832345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7195 REAL_CONST(111749.209780/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7196 REAL_CONST(111773.588544/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7197 REAL_CONST(111797.968638/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7198 REAL_CONST(111822.350062/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7199 REAL_CONST(111846.732814/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7200 REAL_CONST(111871.116895/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7201 REAL_CONST(111895.502305/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7202 REAL_CONST(111919.889044/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7203 REAL_CONST(111944.277111/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7204 REAL_CONST(111968.666507/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7205 REAL_CONST(111993.057230/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7206 REAL_CONST(112017.449282/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7207 REAL_CONST(112041.842662/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7208 REAL_CONST(112066.237369/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7209 REAL_CONST(112090.633405/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7210 REAL_CONST(112115.030767/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7211 REAL_CONST(112139.429457/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7212 REAL_CONST(112163.829475/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7213 REAL_CONST(112188.230819/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7214 REAL_CONST(112212.633490/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7215 REAL_CONST(112237.037488/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7216 REAL_CONST(112261.442813/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7217 REAL_CONST(112285.849464/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7218 REAL_CONST(112310.257441/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7219 REAL_CONST(112334.666745/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7220 REAL_CONST(112359.077375/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7221 REAL_CONST(112383.489330/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7222 REAL_CONST(112407.902612/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7223 REAL_CONST(112432.317219/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7224 REAL_CONST(112456.733151/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7225 REAL_CONST(112481.150409/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7226 REAL_CONST(112505.568992/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7227 REAL_CONST(112529.988900/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7228 REAL_CONST(112554.410133/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7229 REAL_CONST(112578.832691/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7230 REAL_CONST(112603.256573/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7231 REAL_CONST(112627.681780/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7232 REAL_CONST(112652.108311/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7233 REAL_CONST(112676.536166/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7234 REAL_CONST(112700.965345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7235 REAL_CONST(112725.395849/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7236 REAL_CONST(112749.827676/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7237 REAL_CONST(112774.260826/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7238 REAL_CONST(112798.695300/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7239 REAL_CONST(112823.131098/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7240 REAL_CONST(112847.568218/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7241 REAL_CONST(112872.006662/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7242 REAL_CONST(112896.446428/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7243 REAL_CONST(112920.887517/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7244 REAL_CONST(112945.329929/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7245 REAL_CONST(112969.773663/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7246 REAL_CONST(112994.218720/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7247 REAL_CONST(113018.665099/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7248 REAL_CONST(113043.112800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7249 REAL_CONST(113067.561822/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7250 REAL_CONST(113092.012167/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7251 REAL_CONST(113116.463833/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7252 REAL_CONST(113140.916820/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7253 REAL_CONST(113165.371129/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7254 REAL_CONST(113189.826759/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7255 REAL_CONST(113214.283710/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7256 REAL_CONST(113238.741982/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7257 REAL_CONST(113263.201575/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7258 REAL_CONST(113287.662488/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7259 REAL_CONST(113312.124722/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7260 REAL_CONST(113336.588276/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7261 REAL_CONST(113361.053150/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7262 REAL_CONST(113385.519345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7263 REAL_CONST(113409.986859/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7264 REAL_CONST(113434.455693/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7265 REAL_CONST(113458.925846/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7266 REAL_CONST(113483.397319/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7267 REAL_CONST(113507.870112/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7268 REAL_CONST(113532.344223/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7269 REAL_CONST(113556.819654/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7270 REAL_CONST(113581.296403/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7271 REAL_CONST(113605.774471/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7272 REAL_CONST(113630.253858/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7273 REAL_CONST(113654.734563/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7274 REAL_CONST(113679.216587/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7275 REAL_CONST(113703.699929/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7276 REAL_CONST(113728.184589/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7277 REAL_CONST(113752.670566/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7278 REAL_CONST(113777.157862/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7279 REAL_CONST(113801.646475/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7280 REAL_CONST(113826.136406/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7281 REAL_CONST(113850.627654/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7282 REAL_CONST(113875.120219/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7283 REAL_CONST(113899.614101/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7284 REAL_CONST(113924.109300/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7285 REAL_CONST(113948.605816/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7286 REAL_CONST(113973.103648/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7287 REAL_CONST(113997.602797/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7288 REAL_CONST(114022.103263/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7289 REAL_CONST(114046.605044/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7290 REAL_CONST(114071.108142/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7291 REAL_CONST(114095.612555/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7292 REAL_CONST(114120.118285/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7293 REAL_CONST(114144.625330/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7294 REAL_CONST(114169.133690/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7295 REAL_CONST(114193.643366/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7296 REAL_CONST(114218.154357/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7297 REAL_CONST(114242.666663/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7298 REAL_CONST(114267.180284/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7299 REAL_CONST(114291.695220/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7300 REAL_CONST(114316.211470/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7301 REAL_CONST(114340.729035/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7302 REAL_CONST(114365.247914/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7303 REAL_CONST(114389.768108/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7304 REAL_CONST(114414.289615/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7305 REAL_CONST(114438.812437/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7306 REAL_CONST(114463.336572/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7307 REAL_CONST(114487.862021/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7308 REAL_CONST(114512.388784/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7309 REAL_CONST(114536.916860/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7310 REAL_CONST(114561.446249/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7311 REAL_CONST(114585.976951/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7312 REAL_CONST(114610.508967/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7313 REAL_CONST(114635.042295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7314 REAL_CONST(114659.576936/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7315 REAL_CONST(114684.112889/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7316 REAL_CONST(114708.650155/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7317 REAL_CONST(114733.188733/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7318 REAL_CONST(114757.728623/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7319 REAL_CONST(114782.269825/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7320 REAL_CONST(114806.812339/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7321 REAL_CONST(114831.356164/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7322 REAL_CONST(114855.901301/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7323 REAL_CONST(114880.447750/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7324 REAL_CONST(114904.995510/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7325 REAL_CONST(114929.544581/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7326 REAL_CONST(114954.094963/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7327 REAL_CONST(114978.646655/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7328 REAL_CONST(115003.199659/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7329 REAL_CONST(115027.753973/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7330 REAL_CONST(115052.309598/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7331 REAL_CONST(115076.866532/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7332 REAL_CONST(115101.424777/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7333 REAL_CONST(115125.984333/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7334 REAL_CONST(115150.545197/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7335 REAL_CONST(115175.107372/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7336 REAL_CONST(115199.670856/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7337 REAL_CONST(115224.235650/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7338 REAL_CONST(115248.801753/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7339 REAL_CONST(115273.369165/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7340 REAL_CONST(115297.937886/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7341 REAL_CONST(115322.507917/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7342 REAL_CONST(115347.079256/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7343 REAL_CONST(115371.651903/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7344 REAL_CONST(115396.225859/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7345 REAL_CONST(115420.801123/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7346 REAL_CONST(115445.377696/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7347 REAL_CONST(115469.955577/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7348 REAL_CONST(115494.534765/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7349 REAL_CONST(115519.115261/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7350 REAL_CONST(115543.697065/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7351 REAL_CONST(115568.280177/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7352 REAL_CONST(115592.864596/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7353 REAL_CONST(115617.450322/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7354 REAL_CONST(115642.037355/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7355 REAL_CONST(115666.625695/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7356 REAL_CONST(115691.215342/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7357 REAL_CONST(115715.806296/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7358 REAL_CONST(115740.398556/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7359 REAL_CONST(115764.992122/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7360 REAL_CONST(115789.586995/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7361 REAL_CONST(115814.183174/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7362 REAL_CONST(115838.780659/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7363 REAL_CONST(115863.379450/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7364 REAL_CONST(115887.979546/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7365 REAL_CONST(115912.580948/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7366 REAL_CONST(115937.183656/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7367 REAL_CONST(115961.787668/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7368 REAL_CONST(115986.392986/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7369 REAL_CONST(116010.999609/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7370 REAL_CONST(116035.607537/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7371 REAL_CONST(116060.216769/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7372 REAL_CONST(116084.827307/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7373 REAL_CONST(116109.439148/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7374 REAL_CONST(116134.052294/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7375 REAL_CONST(116158.666744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7376 REAL_CONST(116183.282498/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7377 REAL_CONST(116207.899556/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7378 REAL_CONST(116232.517918/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7379 REAL_CONST(116257.137583/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7380 REAL_CONST(116281.758552/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7381 REAL_CONST(116306.380824/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7382 REAL_CONST(116331.004400/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7383 REAL_CONST(116355.629278/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7384 REAL_CONST(116380.255460/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7385 REAL_CONST(116404.882944/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7386 REAL_CONST(116429.511731/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7387 REAL_CONST(116454.141820/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7388 REAL_CONST(116478.773212/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7389 REAL_CONST(116503.405906/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7390 REAL_CONST(116528.039902/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7391 REAL_CONST(116552.675201/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7392 REAL_CONST(116577.311801/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7393 REAL_CONST(116601.949702/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7394 REAL_CONST(116626.588905/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7395 REAL_CONST(116651.229410/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7396 REAL_CONST(116675.871216/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7397 REAL_CONST(116700.514323/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7398 REAL_CONST(116725.158731/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7399 REAL_CONST(116749.804440/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7400 REAL_CONST(116774.451450/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7401 REAL_CONST(116799.099760/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7402 REAL_CONST(116823.749371/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7403 REAL_CONST(116848.400282/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7404 REAL_CONST(116873.052494/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7405 REAL_CONST(116897.706005/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7406 REAL_CONST(116922.360816/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7407 REAL_CONST(116947.016927/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7408 REAL_CONST(116971.674338/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7409 REAL_CONST(116996.333048/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7410 REAL_CONST(117020.993058/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7411 REAL_CONST(117045.654367/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7412 REAL_CONST(117070.316974/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7413 REAL_CONST(117094.980881/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7414 REAL_CONST(117119.646087/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7415 REAL_CONST(117144.312591/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7416 REAL_CONST(117168.980394/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7417 REAL_CONST(117193.649495/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7418 REAL_CONST(117218.319895/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7419 REAL_CONST(117242.991593/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7420 REAL_CONST(117267.664588/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7421 REAL_CONST(117292.338882/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7422 REAL_CONST(117317.014473/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7423 REAL_CONST(117341.691362/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7424 REAL_CONST(117366.369548/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7425 REAL_CONST(117391.049032/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7426 REAL_CONST(117415.729813/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7427 REAL_CONST(117440.411891/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7428 REAL_CONST(117465.095266/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7429 REAL_CONST(117489.779937/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7430 REAL_CONST(117514.465905/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7431 REAL_CONST(117539.153170/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7432 REAL_CONST(117563.841731/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7433 REAL_CONST(117588.531588/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7434 REAL_CONST(117613.222741/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7435 REAL_CONST(117637.915191/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7436 REAL_CONST(117662.608936/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7437 REAL_CONST(117687.303977/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7438 REAL_CONST(117712.000313/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7439 REAL_CONST(117736.697945/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7440 REAL_CONST(117761.396872/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7441 REAL_CONST(117786.097094/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7442 REAL_CONST(117810.798611/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7443 REAL_CONST(117835.501423/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7444 REAL_CONST(117860.205530/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7445 REAL_CONST(117884.910931/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7446 REAL_CONST(117909.617627/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7447 REAL_CONST(117934.325617/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7448 REAL_CONST(117959.034902/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7449 REAL_CONST(117983.745480/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7450 REAL_CONST(118008.457352/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7451 REAL_CONST(118033.170518/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7452 REAL_CONST(118057.884978/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7453 REAL_CONST(118082.600731/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7454 REAL_CONST(118107.317778/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7455 REAL_CONST(118132.036118/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7456 REAL_CONST(118156.755751/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7457 REAL_CONST(118181.476677/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7458 REAL_CONST(118206.198895/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7459 REAL_CONST(118230.922407/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7460 REAL_CONST(118255.647211/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7461 REAL_CONST(118280.373307/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7462 REAL_CONST(118305.100696/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7463 REAL_CONST(118329.829377/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7464 REAL_CONST(118354.559350/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7465 REAL_CONST(118379.290615/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7466 REAL_CONST(118404.023171/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7467 REAL_CONST(118428.757019/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7468 REAL_CONST(118453.492159/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7469 REAL_CONST(118478.228590/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7470 REAL_CONST(118502.966312/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7471 REAL_CONST(118527.705326/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7472 REAL_CONST(118552.445630/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7473 REAL_CONST(118577.187225/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7474 REAL_CONST(118601.930111/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7475 REAL_CONST(118626.674287/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7476 REAL_CONST(118651.419754/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7477 REAL_CONST(118676.166511/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7478 REAL_CONST(118700.914558/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7479 REAL_CONST(118725.663895/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7480 REAL_CONST(118750.414522/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7481 REAL_CONST(118775.166438/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7482 REAL_CONST(118799.919645/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7483 REAL_CONST(118824.674140/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7484 REAL_CONST(118849.429926/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7485 REAL_CONST(118874.187000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7486 REAL_CONST(118898.945363/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7487 REAL_CONST(118923.705015/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7488 REAL_CONST(118948.465957/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7489 REAL_CONST(118973.228186/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7490 REAL_CONST(118997.991705/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7491 REAL_CONST(119022.756511/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7492 REAL_CONST(119047.522606/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7493 REAL_CONST(119072.289989/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7494 REAL_CONST(119097.058660/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7495 REAL_CONST(119121.828619/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7496 REAL_CONST(119146.599866/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7497 REAL_CONST(119171.372400/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7498 REAL_CONST(119196.146221/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7499 REAL_CONST(119220.921330/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7500 REAL_CONST(119245.697726/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7501 REAL_CONST(119270.475410/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7502 REAL_CONST(119295.254380/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7503 REAL_CONST(119320.034637/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7504 REAL_CONST(119344.816180/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7505 REAL_CONST(119369.599010/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7506 REAL_CONST(119394.383127/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7507 REAL_CONST(119419.168529/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7508 REAL_CONST(119443.955218/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7509 REAL_CONST(119468.743193/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7510 REAL_CONST(119493.532454/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7511 REAL_CONST(119518.323000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7512 REAL_CONST(119543.114832/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7513 REAL_CONST(119567.907949/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7514 REAL_CONST(119592.702352/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7515 REAL_CONST(119617.498040/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7516 REAL_CONST(119642.295013/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7517 REAL_CONST(119667.093271/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7518 REAL_CONST(119691.892813/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7519 REAL_CONST(119716.693641/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7520 REAL_CONST(119741.495752/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7521 REAL_CONST(119766.299149/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7522 REAL_CONST(119791.103829/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7523 REAL_CONST(119815.909794/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7524 REAL_CONST(119840.717042/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7525 REAL_CONST(119865.525575/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7526 REAL_CONST(119890.335391/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7527 REAL_CONST(119915.146490/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7528 REAL_CONST(119939.958874/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7529 REAL_CONST(119964.772540/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7530 REAL_CONST(119989.587490/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7531 REAL_CONST(120014.403723/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7532 REAL_CONST(120039.221238/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7533 REAL_CONST(120064.040037/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7534 REAL_CONST(120088.860118/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7535 REAL_CONST(120113.681481/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7536 REAL_CONST(120138.504127/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7537 REAL_CONST(120163.328056/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7538 REAL_CONST(120188.153266/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7539 REAL_CONST(120212.979759/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7540 REAL_CONST(120237.807533/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7541 REAL_CONST(120262.636589/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7542 REAL_CONST(120287.466926/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7543 REAL_CONST(120312.298545/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7544 REAL_CONST(120337.131446/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7545 REAL_CONST(120361.965627/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7546 REAL_CONST(120386.801090/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7547 REAL_CONST(120411.637834/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7548 REAL_CONST(120436.475858/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7549 REAL_CONST(120461.315163/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7550 REAL_CONST(120486.155749/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7551 REAL_CONST(120510.997615/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7552 REAL_CONST(120535.840761/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7553 REAL_CONST(120560.685188/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7554 REAL_CONST(120585.530894/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7555 REAL_CONST(120610.377881/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7556 REAL_CONST(120635.226147/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7557 REAL_CONST(120660.075692/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7558 REAL_CONST(120684.926518/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7559 REAL_CONST(120709.778622/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7560 REAL_CONST(120734.632006/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7561 REAL_CONST(120759.486669/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7562 REAL_CONST(120784.342611/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7563 REAL_CONST(120809.199831/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7564 REAL_CONST(120834.058331/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7565 REAL_CONST(120858.918109/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7566 REAL_CONST(120883.779165/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7567 REAL_CONST(120908.641500/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7568 REAL_CONST(120933.505113/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7569 REAL_CONST(120958.370004/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7570 REAL_CONST(120983.236172/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7571 REAL_CONST(121008.103619/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7572 REAL_CONST(121032.972343/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7573 REAL_CONST(121057.842345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7574 REAL_CONST(121082.713624/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7575 REAL_CONST(121107.586180/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7576 REAL_CONST(121132.460014/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7577 REAL_CONST(121157.335124/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7578 REAL_CONST(121182.211512/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7579 REAL_CONST(121207.089176/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7580 REAL_CONST(121231.968116/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7581 REAL_CONST(121256.848333/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7582 REAL_CONST(121281.729827/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7583 REAL_CONST(121306.612597/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7584 REAL_CONST(121331.496642/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7585 REAL_CONST(121356.381964/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7586 REAL_CONST(121381.268561/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7587 REAL_CONST(121406.156435/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7588 REAL_CONST(121431.045583/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7589 REAL_CONST(121455.936007/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7590 REAL_CONST(121480.827707/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7591 REAL_CONST(121505.720681/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7592 REAL_CONST(121530.614931/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7593 REAL_CONST(121555.510455/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7594 REAL_CONST(121580.407255/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7595 REAL_CONST(121605.305329/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7596 REAL_CONST(121630.204677/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7597 REAL_CONST(121655.105300/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7598 REAL_CONST(121680.007197/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7599 REAL_CONST(121704.910368/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7600 REAL_CONST(121729.814813/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7601 REAL_CONST(121754.720532/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7602 REAL_CONST(121779.627525/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7603 REAL_CONST(121804.535791/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7604 REAL_CONST(121829.445331/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7605 REAL_CONST(121854.356144/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7606 REAL_CONST(121879.268230/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7607 REAL_CONST(121904.181589/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7608 REAL_CONST(121929.096222/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7609 REAL_CONST(121954.012127/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7610 REAL_CONST(121978.929304/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7611 REAL_CONST(122003.847755/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7612 REAL_CONST(122028.767478/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7613 REAL_CONST(122053.688473/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7614 REAL_CONST(122078.610740/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7615 REAL_CONST(122103.534279/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7616 REAL_CONST(122128.459090/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7617 REAL_CONST(122153.385173/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7618 REAL_CONST(122178.312528/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7619 REAL_CONST(122203.241154/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7620 REAL_CONST(122228.171051/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7621 REAL_CONST(122253.102220/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7622 REAL_CONST(122278.034660/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7623 REAL_CONST(122302.968370/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7624 REAL_CONST(122327.903352/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7625 REAL_CONST(122352.839604/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7626 REAL_CONST(122377.777127/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7627 REAL_CONST(122402.715921/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7628 REAL_CONST(122427.655985/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7629 REAL_CONST(122452.597319/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7630 REAL_CONST(122477.539923/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7631 REAL_CONST(122502.483797/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7632 REAL_CONST(122527.428941/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7633 REAL_CONST(122552.375354/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7634 REAL_CONST(122577.323038/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7635 REAL_CONST(122602.271990/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7636 REAL_CONST(122627.222212/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7637 REAL_CONST(122652.173703/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7638 REAL_CONST(122677.126463/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7639 REAL_CONST(122702.080493/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7640 REAL_CONST(122727.035790/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7641 REAL_CONST(122751.992357/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7642 REAL_CONST(122776.950192/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7643 REAL_CONST(122801.909296/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7644 REAL_CONST(122826.869667/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7645 REAL_CONST(122851.831307/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7646 REAL_CONST(122876.794215/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7647 REAL_CONST(122901.758391/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7648 REAL_CONST(122926.723835/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7649 REAL_CONST(122951.690546/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7650 REAL_CONST(122976.658525/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7651 REAL_CONST(123001.627771/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7652 REAL_CONST(123026.598284/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7653 REAL_CONST(123051.570065/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7654 REAL_CONST(123076.543112/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7655 REAL_CONST(123101.517427/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7656 REAL_CONST(123126.493008/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7657 REAL_CONST(123151.469855/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7658 REAL_CONST(123176.447970/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7659 REAL_CONST(123201.427350/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7660 REAL_CONST(123226.407997/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7661 REAL_CONST(123251.389910/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7662 REAL_CONST(123276.373088/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7663 REAL_CONST(123301.357533/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7664 REAL_CONST(123326.343243/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7665 REAL_CONST(123351.330219/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7666 REAL_CONST(123376.318461/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7667 REAL_CONST(123401.307967/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7668 REAL_CONST(123426.298739/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7669 REAL_CONST(123451.290776/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7670 REAL_CONST(123476.284078/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7671 REAL_CONST(123501.278645/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7672 REAL_CONST(123526.274476/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7673 REAL_CONST(123551.271572/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7674 REAL_CONST(123576.269933/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7675 REAL_CONST(123601.269557/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7676 REAL_CONST(123626.270446/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7677 REAL_CONST(123651.272599/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7678 REAL_CONST(123676.276016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7679 REAL_CONST(123701.280696/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7680 REAL_CONST(123726.286641/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7681 REAL_CONST(123751.293849/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7682 REAL_CONST(123776.302320/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7683 REAL_CONST(123801.312054/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7684 REAL_CONST(123826.323052/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7685 REAL_CONST(123851.335312/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7686 REAL_CONST(123876.348836/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7687 REAL_CONST(123901.363622/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7688 REAL_CONST(123926.379671/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7689 REAL_CONST(123951.396983/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7690 REAL_CONST(123976.415557/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7691 REAL_CONST(124001.435393/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7692 REAL_CONST(124026.456491/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7693 REAL_CONST(124051.478851/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7694 REAL_CONST(124076.502473/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7695 REAL_CONST(124101.527357/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7696 REAL_CONST(124126.553503/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7697 REAL_CONST(124151.580910/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7698 REAL_CONST(124176.609578/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7699 REAL_CONST(124201.639508/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7700 REAL_CONST(124226.670698/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7701 REAL_CONST(124251.703150/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7702 REAL_CONST(124276.736862/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7703 REAL_CONST(124301.771836/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7704 REAL_CONST(124326.808070/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7705 REAL_CONST(124351.845564/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7706 REAL_CONST(124376.884319/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7707 REAL_CONST(124401.924334/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7708 REAL_CONST(124426.965609/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7709 REAL_CONST(124452.008144/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7710 REAL_CONST(124477.051938/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7711 REAL_CONST(124502.096993/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7712 REAL_CONST(124527.143307/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7713 REAL_CONST(124552.190881/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7714 REAL_CONST(124577.239714/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7715 REAL_CONST(124602.289806/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7716 REAL_CONST(124627.341157/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7717 REAL_CONST(124652.393767/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7718 REAL_CONST(124677.447636/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7719 REAL_CONST(124702.502764/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7720 REAL_CONST(124727.559150/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7721 REAL_CONST(124752.616795/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7722 REAL_CONST(124777.675698/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7723 REAL_CONST(124802.735859/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7724 REAL_CONST(124827.797279/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7725 REAL_CONST(124852.859956/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7726 REAL_CONST(124877.923891/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7727 REAL_CONST(124902.989084/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7728 REAL_CONST(124928.055534/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7729 REAL_CONST(124953.123242/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7730 REAL_CONST(124978.192207/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7731 REAL_CONST(125003.262430/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7732 REAL_CONST(125028.333909/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7733 REAL_CONST(125053.406645/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7734 REAL_CONST(125078.480638/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7735 REAL_CONST(125103.555888/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7736 REAL_CONST(125128.632395/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7737 REAL_CONST(125153.710157/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7738 REAL_CONST(125178.789176/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7739 REAL_CONST(125203.869452/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7740 REAL_CONST(125228.950983/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7741 REAL_CONST(125254.033770/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7742 REAL_CONST(125279.117813/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7743 REAL_CONST(125304.203112/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7744 REAL_CONST(125329.289666/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7745 REAL_CONST(125354.377476/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7746 REAL_CONST(125379.466541/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7747 REAL_CONST(125404.556861/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7748 REAL_CONST(125429.648437/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7749 REAL_CONST(125454.741267/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7750 REAL_CONST(125479.835352/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7751 REAL_CONST(125504.930692/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7752 REAL_CONST(125530.027286/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7753 REAL_CONST(125555.125134/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7754 REAL_CONST(125580.224237/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7755 REAL_CONST(125605.324594/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7756 REAL_CONST(125630.426205/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7757 REAL_CONST(125655.529071/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7758 REAL_CONST(125680.633189/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7759 REAL_CONST(125705.738562/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7760 REAL_CONST(125730.845188/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7761 REAL_CONST(125755.953067/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7762 REAL_CONST(125781.062200/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7763 REAL_CONST(125806.172586/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7764 REAL_CONST(125831.284225/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7765 REAL_CONST(125856.397117/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7766 REAL_CONST(125881.511262/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7767 REAL_CONST(125906.626659/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7768 REAL_CONST(125931.743309/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7769 REAL_CONST(125956.861211/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7770 REAL_CONST(125981.980366/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7771 REAL_CONST(126007.100773/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7772 REAL_CONST(126032.222432/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7773 REAL_CONST(126057.345343/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7774 REAL_CONST(126082.469505/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7775 REAL_CONST(126107.594919/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7776 REAL_CONST(126132.721585/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7777 REAL_CONST(126157.849502/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7778 REAL_CONST(126182.978671/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7779 REAL_CONST(126208.109090/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7780 REAL_CONST(126233.240761/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7781 REAL_CONST(126258.373683/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7782 REAL_CONST(126283.507855/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7783 REAL_CONST(126308.643278/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7784 REAL_CONST(126333.779952/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7785 REAL_CONST(126358.917876/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7786 REAL_CONST(126384.057051/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7787 REAL_CONST(126409.197475/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7788 REAL_CONST(126434.339150/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7789 REAL_CONST(126459.482074/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7790 REAL_CONST(126484.626249/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7791 REAL_CONST(126509.771673/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7792 REAL_CONST(126534.918346/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7793 REAL_CONST(126560.066269/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7794 REAL_CONST(126585.215442/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7795 REAL_CONST(126610.365863/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7796 REAL_CONST(126635.517534/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7797 REAL_CONST(126660.670453/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7798 REAL_CONST(126685.824622/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7799 REAL_CONST(126710.980039/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7800 REAL_CONST(126736.136704/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7801 REAL_CONST(126761.294618/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7802 REAL_CONST(126786.453780/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7803 REAL_CONST(126811.614191/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7804 REAL_CONST(126836.775849/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7805 REAL_CONST(126861.938756/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7806 REAL_CONST(126887.102910/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7807 REAL_CONST(126912.268312/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7808 REAL_CONST(126937.434962/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7809 REAL_CONST(126962.602859/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7810 REAL_CONST(126987.772003/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7811 REAL_CONST(127012.942395/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7812 REAL_CONST(127038.114034/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7813 REAL_CONST(127063.286919/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7814 REAL_CONST(127088.461052/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7815 REAL_CONST(127113.636431/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7816 REAL_CONST(127138.813057/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7817 REAL_CONST(127163.990929/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7818 REAL_CONST(127189.170047/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7819 REAL_CONST(127214.350412/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7820 REAL_CONST(127239.532023/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7821 REAL_CONST(127264.714880/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7822 REAL_CONST(127289.898982/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7823 REAL_CONST(127315.084331/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7824 REAL_CONST(127340.270925/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7825 REAL_CONST(127365.458764/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7826 REAL_CONST(127390.647849/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7827 REAL_CONST(127415.838179/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7828 REAL_CONST(127441.029754/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7829 REAL_CONST(127466.222574/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7830 REAL_CONST(127491.416639/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7831 REAL_CONST(127516.611949/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7832 REAL_CONST(127541.808503/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7833 REAL_CONST(127567.006302/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7834 REAL_CONST(127592.205345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7835 REAL_CONST(127617.405632/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7836 REAL_CONST(127642.607164/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7837 REAL_CONST(127667.809939/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7838 REAL_CONST(127693.013959/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7839 REAL_CONST(127718.219222/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7840 REAL_CONST(127743.425729/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7841 REAL_CONST(127768.633479/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7842 REAL_CONST(127793.842473/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7843 REAL_CONST(127819.052710/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7844 REAL_CONST(127844.264190/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7845 REAL_CONST(127869.476913/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7846 REAL_CONST(127894.690879/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7847 REAL_CONST(127919.906088/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7848 REAL_CONST(127945.122539/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7849 REAL_CONST(127970.340233/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7850 REAL_CONST(127995.559169/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7851 REAL_CONST(128020.779348/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7852 REAL_CONST(128046.000769/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7853 REAL_CONST(128071.223431/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7854 REAL_CONST(128096.447336/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7855 REAL_CONST(128121.672483/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7856 REAL_CONST(128146.898871/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7857 REAL_CONST(128172.126501/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7858 REAL_CONST(128197.355372/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7859 REAL_CONST(128222.585484/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7860 REAL_CONST(128247.816838/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7861 REAL_CONST(128273.049433/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7862 REAL_CONST(128298.283268/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7863 REAL_CONST(128323.518345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7864 REAL_CONST(128348.754662/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7865 REAL_CONST(128373.992220/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7866 REAL_CONST(128399.231018/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7867 REAL_CONST(128424.471056/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7868 REAL_CONST(128449.712335/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7869 REAL_CONST(128474.954854/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7870 REAL_CONST(128500.198612/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7871 REAL_CONST(128525.443611/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7872 REAL_CONST(128550.689849/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7873 REAL_CONST(128575.937327/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7874 REAL_CONST(128601.186045/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7875 REAL_CONST(128626.436001/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7876 REAL_CONST(128651.687197/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7877 REAL_CONST(128676.939632/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7878 REAL_CONST(128702.193306/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7879 REAL_CONST(128727.448219/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7880 REAL_CONST(128752.704371/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7881 REAL_CONST(128777.961761/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7882 REAL_CONST(128803.220390/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7883 REAL_CONST(128828.480257/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7884 REAL_CONST(128853.741363/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7885 REAL_CONST(128879.003706/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7886 REAL_CONST(128904.267288/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7887 REAL_CONST(128929.532107/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7888 REAL_CONST(128954.798165/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7889 REAL_CONST(128980.065460/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7890 REAL_CONST(129005.333992/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7891 REAL_CONST(129030.603762/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7892 REAL_CONST(129055.874769/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7893 REAL_CONST(129081.147013/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7894 REAL_CONST(129106.420495/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7895 REAL_CONST(129131.695213/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7896 REAL_CONST(129156.971168/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7897 REAL_CONST(129182.248360/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7898 REAL_CONST(129207.526788/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7899 REAL_CONST(129232.806453/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7900 REAL_CONST(129258.087354/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7901 REAL_CONST(129283.369491/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7902 REAL_CONST(129308.652865/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7903 REAL_CONST(129333.937474/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7904 REAL_CONST(129359.223319/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7905 REAL_CONST(129384.510400/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7906 REAL_CONST(129409.798716/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7907 REAL_CONST(129435.088268/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7908 REAL_CONST(129460.379056/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7909 REAL_CONST(129485.671078/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7910 REAL_CONST(129510.964336/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7911 REAL_CONST(129536.258829/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7912 REAL_CONST(129561.554556/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7913 REAL_CONST(129586.851518/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7914 REAL_CONST(129612.149715/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7915 REAL_CONST(129637.449147/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7916 REAL_CONST(129662.749812/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7917 REAL_CONST(129688.051713/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7918 REAL_CONST(129713.354847/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7919 REAL_CONST(129738.659215/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7920 REAL_CONST(129763.964817/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7921 REAL_CONST(129789.271653/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7922 REAL_CONST(129814.579723/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7923 REAL_CONST(129839.889026/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7924 REAL_CONST(129865.199562/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7925 REAL_CONST(129890.511332/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7926 REAL_CONST(129915.824335/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7927 REAL_CONST(129941.138572/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7928 REAL_CONST(129966.454041/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7929 REAL_CONST(129991.770743/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7930 REAL_CONST(130017.088677/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7931 REAL_CONST(130042.407844/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7932 REAL_CONST(130067.728244/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7933 REAL_CONST(130093.049876/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7934 REAL_CONST(130118.372740/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7935 REAL_CONST(130143.696837/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7936 REAL_CONST(130169.022165/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7937 REAL_CONST(130194.348725/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7938 REAL_CONST(130219.676517/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7939 REAL_CONST(130245.005541/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7940 REAL_CONST(130270.335796/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7941 REAL_CONST(130295.667282/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7942 REAL_CONST(130321.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7943 REAL_CONST(130346.333949/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7944 REAL_CONST(130371.669129/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7945 REAL_CONST(130397.005540/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7946 REAL_CONST(130422.343181/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7947 REAL_CONST(130447.682054/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7948 REAL_CONST(130473.022156/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7949 REAL_CONST(130498.363490/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7950 REAL_CONST(130523.706053/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7951 REAL_CONST(130549.049847/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7952 REAL_CONST(130574.394871/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7953 REAL_CONST(130599.741125/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7954 REAL_CONST(130625.088608/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7955 REAL_CONST(130650.437322/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7956 REAL_CONST(130675.787264/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7957 REAL_CONST(130701.138437/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7958 REAL_CONST(130726.490839/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7959 REAL_CONST(130751.844470/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7960 REAL_CONST(130777.199330/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7961 REAL_CONST(130802.555419/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7962 REAL_CONST(130827.912737/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7963 REAL_CONST(130853.271284/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7964 REAL_CONST(130878.631059/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7965 REAL_CONST(130903.992063/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7966 REAL_CONST(130929.354295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7967 REAL_CONST(130954.717756/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7968 REAL_CONST(130980.082445/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7969 REAL_CONST(131005.448362/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7970 REAL_CONST(131030.815506/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7971 REAL_CONST(131056.183879/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7972 REAL_CONST(131081.553479/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7973 REAL_CONST(131106.924307/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7974 REAL_CONST(131132.296362/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7975 REAL_CONST(131157.669645/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7976 REAL_CONST(131183.044155/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7977 REAL_CONST(131208.419892/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7978 REAL_CONST(131233.796855/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7979 REAL_CONST(131259.175046/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7980 REAL_CONST(131284.554464/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7981 REAL_CONST(131309.935108/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7982 REAL_CONST(131335.316978/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7983 REAL_CONST(131360.700075/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7984 REAL_CONST(131386.084399/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7985 REAL_CONST(131411.469948/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7986 REAL_CONST(131436.856724/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7987 REAL_CONST(131462.244725/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7988 REAL_CONST(131487.633952/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7989 REAL_CONST(131513.024405/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7990 REAL_CONST(131538.416083/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7991 REAL_CONST(131563.808987/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7992 REAL_CONST(131589.203116/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7993 REAL_CONST(131614.598471/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7994 REAL_CONST(131639.995050/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7995 REAL_CONST(131665.392854/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7996 REAL_CONST(131690.791884/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7997 REAL_CONST(131716.192138/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7998 REAL_CONST(131741.593616/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
7999 REAL_CONST(131766.996319/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8000 REAL_CONST(131792.400247/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8001 REAL_CONST(131817.805398/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8002 REAL_CONST(131843.211774/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8003 REAL_CONST(131868.619374/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8004 REAL_CONST(131894.028198/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8005 REAL_CONST(131919.438245/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8006 REAL_CONST(131944.849517/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8007 REAL_CONST(131970.262011/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8008 REAL_CONST(131995.675730/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8009 REAL_CONST(132021.090671/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8010 REAL_CONST(132046.506836/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8011 REAL_CONST(132071.924224/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8012 REAL_CONST(132097.342834/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8013 REAL_CONST(132122.762668/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8014 REAL_CONST(132148.183724/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8015 REAL_CONST(132173.606003/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8016 REAL_CONST(132199.029504/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8017 REAL_CONST(132224.454228/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8018 REAL_CONST(132249.880174/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8019 REAL_CONST(132275.307342/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8020 REAL_CONST(132300.735733/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8021 REAL_CONST(132326.165345/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8022 REAL_CONST(132351.596179/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8023 REAL_CONST(132377.028234/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8024 REAL_CONST(132402.461511/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8025 REAL_CONST(132427.896010/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8026 REAL_CONST(132453.331729/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8027 REAL_CONST(132478.768671/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8028 REAL_CONST(132504.206833/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8029 REAL_CONST(132529.646216/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8030 REAL_CONST(132555.086820/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8031 REAL_CONST(132580.528644/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8032 REAL_CONST(132605.971690/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8033 REAL_CONST(132631.415955/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8034 REAL_CONST(132656.861441/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8035 REAL_CONST(132682.308148/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8036 REAL_CONST(132707.756074/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8037 REAL_CONST(132733.205221/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8038 REAL_CONST(132758.655587/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8039 REAL_CONST(132784.107174/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8040 REAL_CONST(132809.559980/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8041 REAL_CONST(132835.014005/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8042 REAL_CONST(132860.469250/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8043 REAL_CONST(132885.925714/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8044 REAL_CONST(132911.383398/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8045 REAL_CONST(132936.842300/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8046 REAL_CONST(132962.302422/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8047 REAL_CONST(132987.763762/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8048 REAL_CONST(133013.226321/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8049 REAL_CONST(133038.690099/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8050 REAL_CONST(133064.155095/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8051 REAL_CONST(133089.621310/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8052 REAL_CONST(133115.088743/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8053 REAL_CONST(133140.557394/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8054 REAL_CONST(133166.027263/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8055 REAL_CONST(133191.498350/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8056 REAL_CONST(133216.970655/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8057 REAL_CONST(133242.444178/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8058 REAL_CONST(133267.918918/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8059 REAL_CONST(133293.394876/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8060 REAL_CONST(133318.872051/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8061 REAL_CONST(133344.350443/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8062 REAL_CONST(133369.830052/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8063 REAL_CONST(133395.310878/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8064 REAL_CONST(133420.792921/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8065 REAL_CONST(133446.276181/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8066 REAL_CONST(133471.760658/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8067 REAL_CONST(133497.246351/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8068 REAL_CONST(133522.733261/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8069 REAL_CONST(133548.221386/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8070 REAL_CONST(133573.710728/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8071 REAL_CONST(133599.201286/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8072 REAL_CONST(133624.693060/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8073 REAL_CONST(133650.186050/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8074 REAL_CONST(133675.680256/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8075 REAL_CONST(133701.175677/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8076 REAL_CONST(133726.672314/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8077 REAL_CONST(133752.170166/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8078 REAL_CONST(133777.669233/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8079 REAL_CONST(133803.169515/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8080 REAL_CONST(133828.671013/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8081 REAL_CONST(133854.173725/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8082 REAL_CONST(133879.677652/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8083 REAL_CONST(133905.182794/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8084 REAL_CONST(133930.689150/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8085 REAL_CONST(133956.196721/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8086 REAL_CONST(133981.705506/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8087 REAL_CONST(134007.215506/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8088 REAL_CONST(134032.726719/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8089 REAL_CONST(134058.239147/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8090 REAL_CONST(134083.752788/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8091 REAL_CONST(134109.267643/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8092 REAL_CONST(134134.783712/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8093 REAL_CONST(134160.300994/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8094 REAL_CONST(134185.819489/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8095 REAL_CONST(134211.339198/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8096 REAL_CONST(134236.860120/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8097 REAL_CONST(134262.382255/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8098 REAL_CONST(134287.905604/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8099 REAL_CONST(134313.430164/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8100 REAL_CONST(134338.955938/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8101 REAL_CONST(134364.482924/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8102 REAL_CONST(134390.011123/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8103 REAL_CONST(134415.540534/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8104 REAL_CONST(134441.071157/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8105 REAL_CONST(134466.602993/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8106 REAL_CONST(134492.136040/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8107 REAL_CONST(134517.670300/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8108 REAL_CONST(134543.205771/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8109 REAL_CONST(134568.742454/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8110 REAL_CONST(134594.280348/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8111 REAL_CONST(134619.819454/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8112 REAL_CONST(134645.359771/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8113 REAL_CONST(134670.901299/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8114 REAL_CONST(134696.444039/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8115 REAL_CONST(134721.987989/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8116 REAL_CONST(134747.533151/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8117 REAL_CONST(134773.079523/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8118 REAL_CONST(134798.627106/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8119 REAL_CONST(134824.175899/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8120 REAL_CONST(134849.725902/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8121 REAL_CONST(134875.277116/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8122 REAL_CONST(134900.829541/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8123 REAL_CONST(134926.383175/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8124 REAL_CONST(134951.938019/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8125 REAL_CONST(134977.494073/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8126 REAL_CONST(135003.051337/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8127 REAL_CONST(135028.609810/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8128 REAL_CONST(135054.169493/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8129 REAL_CONST(135079.730385/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8130 REAL_CONST(135105.292487/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8131 REAL_CONST(135130.855798/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8132 REAL_CONST(135156.420317/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8133 REAL_CONST(135181.986046/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8134 REAL_CONST(135207.552983/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8135 REAL_CONST(135233.121129/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8136 REAL_CONST(135258.690484/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8137 REAL_CONST(135284.261047/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8138 REAL_CONST(135309.832819/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8139 REAL_CONST(135335.405799/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8140 REAL_CONST(135360.979987/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8141 REAL_CONST(135386.555383/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8142 REAL_CONST(135412.131986/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8143 REAL_CONST(135437.709798/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8144 REAL_CONST(135463.288817/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8145 REAL_CONST(135488.869044/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8146 REAL_CONST(135514.450478/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8147 REAL_CONST(135540.033120/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8148 REAL_CONST(135565.616969/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8149 REAL_CONST(135591.202025/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8150 REAL_CONST(135616.788287/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8151 REAL_CONST(135642.375757/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8152 REAL_CONST(135667.964434/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8153 REAL_CONST(135693.554317/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8154 REAL_CONST(135719.145407/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8155 REAL_CONST(135744.737703/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8156 REAL_CONST(135770.331205/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8157 REAL_CONST(135795.925914/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8158 REAL_CONST(135821.521828/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8159 REAL_CONST(135847.118949/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8160 REAL_CONST(135872.717275/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8161 REAL_CONST(135898.316808/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8162 REAL_CONST(135923.917545/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8163 REAL_CONST(135949.519489/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8164 REAL_CONST(135975.122637/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8165 REAL_CONST(136000.726991/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8166 REAL_CONST(136026.332551/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8167 REAL_CONST(136051.939315/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8168 REAL_CONST(136077.547284/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8169 REAL_CONST(136103.156458/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8170 REAL_CONST(136128.766837/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8171 REAL_CONST(136154.378420/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8172 REAL_CONST(136179.991208/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8173 REAL_CONST(136205.605200/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8174 REAL_CONST(136231.220396/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8175 REAL_CONST(136256.836797/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8176 REAL_CONST(136282.454401/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8177 REAL_CONST(136308.073210/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8178 REAL_CONST(136333.693222/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8179 REAL_CONST(136359.314438/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8180 REAL_CONST(136384.936858/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8181 REAL_CONST(136410.560481/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8182 REAL_CONST(136436.185307/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8183 REAL_CONST(136461.811337/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8184 REAL_CONST(136487.438570/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8185 REAL_CONST(136513.067006/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8186 REAL_CONST(136538.696644/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8187 REAL_CONST(136564.327486/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8188 REAL_CONST(136589.959530/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8189 REAL_CONST(136615.592777/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8190 REAL_CONST(136641.227226/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8191 REAL_CONST(136666.862877/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8192 REAL_CONST(136692.499731/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8193 REAL_CONST(136718.137787/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8194 REAL_CONST(136743.777045/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8195 REAL_CONST(136769.417505/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8196 REAL_CONST(136795.059166/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8197 REAL_CONST(136820.702029/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8198 REAL_CONST(136846.346094/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8199 REAL_CONST(136871.991360/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8200 REAL_CONST(136897.637828/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8201 REAL_CONST(136923.285496/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8202 REAL_CONST(136948.934366/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8203 REAL_CONST(136974.584437/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8204 REAL_CONST(137000.235709/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8205 REAL_CONST(137025.888181/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8206 REAL_CONST(137051.541854/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8207 REAL_CONST(137077.196728/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8208 REAL_CONST(137102.852802/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8209 REAL_CONST(137128.510076/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8210 REAL_CONST(137154.168551/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8211 REAL_CONST(137179.828225/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8212 REAL_CONST(137205.489100/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8213 REAL_CONST(137231.151174/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8214 REAL_CONST(137256.814449/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8215 REAL_CONST(137282.478922/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8216 REAL_CONST(137308.144596/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8217 REAL_CONST(137333.811469/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8218 REAL_CONST(137359.479541/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8219 REAL_CONST(137385.148812/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8220 REAL_CONST(137410.819282/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8221 REAL_CONST(137436.490952/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8222 REAL_CONST(137462.163820/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8223 REAL_CONST(137487.837887/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8224 REAL_CONST(137513.513152/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8225 REAL_CONST(137539.189617/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8226 REAL_CONST(137564.867279/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8227 REAL_CONST(137590.546140/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8228 REAL_CONST(137616.226199/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8229 REAL_CONST(137641.907456/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8230 REAL_CONST(137667.589911/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8231 REAL_CONST(137693.273564/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8232 REAL_CONST(137718.958414/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8233 REAL_CONST(137744.644462/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8234 REAL_CONST(137770.331708/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8235 REAL_CONST(137796.020151/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8236 REAL_CONST(137821.709792/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8237 REAL_CONST(137847.400629/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8238 REAL_CONST(137873.092664/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8239 REAL_CONST(137898.785896/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8240 REAL_CONST(137924.480324/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8241 REAL_CONST(137950.175949/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8242 REAL_CONST(137975.872771/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8243 REAL_CONST(138001.570789/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8244 REAL_CONST(138027.270004/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8245 REAL_CONST(138052.970415/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8246 REAL_CONST(138078.672022/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8247 REAL_CONST(138104.374826/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8248 REAL_CONST(138130.078825/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8249 REAL_CONST(138155.784020/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8250 REAL_CONST(138181.490410/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8251 REAL_CONST(138207.197997/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8252 REAL_CONST(138232.906779/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8253 REAL_CONST(138258.616756/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8254 REAL_CONST(138284.327929/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8255 REAL_CONST(138310.040296/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8256 REAL_CONST(138335.753859/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8257 REAL_CONST(138361.468617/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8258 REAL_CONST(138387.184569/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8259 REAL_CONST(138412.901717/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8260 REAL_CONST(138438.620059/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8261 REAL_CONST(138464.339595/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8262 REAL_CONST(138490.060326/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8263 REAL_CONST(138515.782251/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8264 REAL_CONST(138541.505370/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8265 REAL_CONST(138567.229684/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8266 REAL_CONST(138592.955191/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8267 REAL_CONST(138618.681892/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8268 REAL_CONST(138644.409787/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8269 REAL_CONST(138670.138876/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8270 REAL_CONST(138695.869158/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8271 REAL_CONST(138721.600633/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8272 REAL_CONST(138747.333302/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8273 REAL_CONST(138773.067164/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8274 REAL_CONST(138798.802219/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8275 REAL_CONST(138824.538467/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8276 REAL_CONST(138850.275907/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8277 REAL_CONST(138876.014541/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8278 REAL_CONST(138901.754367/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8279 REAL_CONST(138927.495386/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8280 REAL_CONST(138953.237597/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8281 REAL_CONST(138978.981000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8282 REAL_CONST(139004.725596/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8283 REAL_CONST(139030.471383/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8284 REAL_CONST(139056.218363/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8285 REAL_CONST(139081.966534/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8286 REAL_CONST(139107.715897/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8287 REAL_CONST(139133.466452/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8288 REAL_CONST(139159.218198/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8289 REAL_CONST(139184.971136/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8290 REAL_CONST(139210.725265/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8291 REAL_CONST(139236.480585/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8292 REAL_CONST(139262.237097/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8293 REAL_CONST(139287.994799/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8294 REAL_CONST(139313.753692/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8295 REAL_CONST(139339.513776/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8296 REAL_CONST(139365.275050/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8297 REAL_CONST(139391.037515/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8298 REAL_CONST(139416.801171/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8299 REAL_CONST(139442.566017/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8300 REAL_CONST(139468.332052/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8301 REAL_CONST(139494.099279/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8302 REAL_CONST(139519.867695/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8303 REAL_CONST(139545.637300/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8304 REAL_CONST(139571.408096/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8305 REAL_CONST(139597.180081/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8306 REAL_CONST(139622.953256/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8307 REAL_CONST(139648.727621/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8308 REAL_CONST(139674.503174/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8309 REAL_CONST(139700.279917/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8310 REAL_CONST(139726.057849/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8311 REAL_CONST(139751.836970/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8312 REAL_CONST(139777.617280/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8313 REAL_CONST(139803.398778/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8314 REAL_CONST(139829.181465/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8315 REAL_CONST(139854.965341/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8316 REAL_CONST(139880.750405/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8317 REAL_CONST(139906.536658/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8318 REAL_CONST(139932.324099/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8319 REAL_CONST(139958.112728/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8320 REAL_CONST(139983.902544/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8321 REAL_CONST(140009.693549/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8322 REAL_CONST(140035.485742/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8323 REAL_CONST(140061.279122/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8324 REAL_CONST(140087.073690/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8325 REAL_CONST(140112.869445/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8326 REAL_CONST(140138.666388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8327 REAL_CONST(140164.464518/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8328 REAL_CONST(140190.263835/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8329 REAL_CONST(140216.064339/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8330 REAL_CONST(140241.866030/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8331 REAL_CONST(140267.668907/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8332 REAL_CONST(140293.472972/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8333 REAL_CONST(140319.278223/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8334 REAL_CONST(140345.084660/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8335 REAL_CONST(140370.892284/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8336 REAL_CONST(140396.701094/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8337 REAL_CONST(140422.511090/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8338 REAL_CONST(140448.322273/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8339 REAL_CONST(140474.134641/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8340 REAL_CONST(140499.948195/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8341 REAL_CONST(140525.762935/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8342 REAL_CONST(140551.578860/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8343 REAL_CONST(140577.395971/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8344 REAL_CONST(140603.214267/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8345 REAL_CONST(140629.033749/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8346 REAL_CONST(140654.854416/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8347 REAL_CONST(140680.676267/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8348 REAL_CONST(140706.499304/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8349 REAL_CONST(140732.323526/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8350 REAL_CONST(140758.148932/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8351 REAL_CONST(140783.975523/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8352 REAL_CONST(140809.803298/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8353 REAL_CONST(140835.632258/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8354 REAL_CONST(140861.462402/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8355 REAL_CONST(140887.293730/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8356 REAL_CONST(140913.126243/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8357 REAL_CONST(140938.959939/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8358 REAL_CONST(140964.794819/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8359 REAL_CONST(140990.630883/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8360 REAL_CONST(141016.468131/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8361 REAL_CONST(141042.306562/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8362 REAL_CONST(141068.146177/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8363 REAL_CONST(141093.986975/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8364 REAL_CONST(141119.828956/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8365 REAL_CONST(141145.672120/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8366 REAL_CONST(141171.516467/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8367 REAL_CONST(141197.361998/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8368 REAL_CONST(141223.208710/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8369 REAL_CONST(141249.056606/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8370 REAL_CONST(141274.905684/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8371 REAL_CONST(141300.755945/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8372 REAL_CONST(141326.607388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8373 REAL_CONST(141352.460013/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8374 REAL_CONST(141378.313820/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8375 REAL_CONST(141404.168810/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8376 REAL_CONST(141430.024981/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8377 REAL_CONST(141455.882334/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8378 REAL_CONST(141481.740869/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8379 REAL_CONST(141507.600585/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8380 REAL_CONST(141533.461483/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8381 REAL_CONST(141559.323562/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8382 REAL_CONST(141585.186823/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8383 REAL_CONST(141611.051264/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8384 REAL_CONST(141636.916887/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8385 REAL_CONST(141662.783691/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8386 REAL_CONST(141688.651675/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8387 REAL_CONST(141714.520840/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8388 REAL_CONST(141740.391186/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8389 REAL_CONST(141766.262713/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8390 REAL_CONST(141792.135419/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8391 REAL_CONST(141818.009306/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8392 REAL_CONST(141843.884374/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8393 REAL_CONST(141869.760621/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8394 REAL_CONST(141895.638048/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8395 REAL_CONST(141921.516655/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8396 REAL_CONST(141947.396442/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8397 REAL_CONST(141973.277409/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8398 REAL_CONST(141999.159555/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8399 REAL_CONST(142025.042881/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8400 REAL_CONST(142050.927385/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8401 REAL_CONST(142076.813070/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8402 REAL_CONST(142102.699933/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8403 REAL_CONST(142128.587975/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8404 REAL_CONST(142154.477196/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8405 REAL_CONST(142180.367596/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8406 REAL_CONST(142206.259175/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8407 REAL_CONST(142232.151932/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8408 REAL_CONST(142258.045867/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8409 REAL_CONST(142283.940981/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8410 REAL_CONST(142309.837274/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8411 REAL_CONST(142335.734744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8412 REAL_CONST(142361.633393/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8413 REAL_CONST(142387.533219/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8414 REAL_CONST(142413.434223/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8415 REAL_CONST(142439.336405/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8416 REAL_CONST(142465.239765/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8417 REAL_CONST(142491.144302/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8418 REAL_CONST(142517.050016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8419 REAL_CONST(142542.956908/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8420 REAL_CONST(142568.864977/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8421 REAL_CONST(142594.774223/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8422 REAL_CONST(142620.684646/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8423 REAL_CONST(142646.596246/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8424 REAL_CONST(142672.509022/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8425 REAL_CONST(142698.422975/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8426 REAL_CONST(142724.338105/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8427 REAL_CONST(142750.254411/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8428 REAL_CONST(142776.171894/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8429 REAL_CONST(142802.090553/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8430 REAL_CONST(142828.010388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8431 REAL_CONST(142853.931399/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8432 REAL_CONST(142879.853585/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8433 REAL_CONST(142905.776948/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8434 REAL_CONST(142931.701486/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8435 REAL_CONST(142957.627200/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8436 REAL_CONST(142983.554090/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8437 REAL_CONST(143009.482154/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8438 REAL_CONST(143035.411394/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8439 REAL_CONST(143061.341809/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8440 REAL_CONST(143087.273400/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8441 REAL_CONST(143113.206165/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8442 REAL_CONST(143139.140105/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8443 REAL_CONST(143165.075219/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8444 REAL_CONST(143191.011509/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8445 REAL_CONST(143216.948973/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8446 REAL_CONST(143242.887611/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8447 REAL_CONST(143268.827423/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8448 REAL_CONST(143294.768410/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8449 REAL_CONST(143320.710571/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8450 REAL_CONST(143346.653906/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8451 REAL_CONST(143372.598415/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8452 REAL_CONST(143398.544097/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8453 REAL_CONST(143424.490953/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8454 REAL_CONST(143450.438983/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8455 REAL_CONST(143476.388186/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8456 REAL_CONST(143502.338563/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8457 REAL_CONST(143528.290112/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8458 REAL_CONST(143554.242835/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8459 REAL_CONST(143580.196731/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8460 REAL_CONST(143606.151800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8461 REAL_CONST(143632.108042/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8462 REAL_CONST(143658.065456/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8463 REAL_CONST(143684.024043/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8464 REAL_CONST(143709.983803/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8465 REAL_CONST(143735.944735/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8466 REAL_CONST(143761.906839/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8467 REAL_CONST(143787.870115/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8468 REAL_CONST(143813.834564/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8469 REAL_CONST(143839.800184/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8470 REAL_CONST(143865.766976/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8471 REAL_CONST(143891.734940/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8472 REAL_CONST(143917.704076/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8473 REAL_CONST(143943.674383/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8474 REAL_CONST(143969.645862/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8475 REAL_CONST(143995.618512/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8476 REAL_CONST(144021.592333/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8477 REAL_CONST(144047.567326/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8478 REAL_CONST(144073.543489/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8479 REAL_CONST(144099.520823/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8480 REAL_CONST(144125.499329/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8481 REAL_CONST(144151.479004/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8482 REAL_CONST(144177.459851/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8483 REAL_CONST(144203.441868/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8484 REAL_CONST(144229.425055/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8485 REAL_CONST(144255.409413/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8486 REAL_CONST(144281.394940/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8487 REAL_CONST(144307.381638/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8488 REAL_CONST(144333.369506/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8489 REAL_CONST(144359.358544/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8490 REAL_CONST(144385.348751/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8491 REAL_CONST(144411.340128/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8492 REAL_CONST(144437.332675/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8493 REAL_CONST(144463.326391/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8494 REAL_CONST(144489.321276/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8495 REAL_CONST(144515.317331/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8496 REAL_CONST(144541.314555/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8497 REAL_CONST(144567.312947/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8498 REAL_CONST(144593.312509/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8499 REAL_CONST(144619.313240/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8500 REAL_CONST(144645.315139/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8501 REAL_CONST(144671.318207/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8502 REAL_CONST(144697.322443/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8503 REAL_CONST(144723.327848/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8504 REAL_CONST(144749.334421/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8505 REAL_CONST(144775.342162/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8506 REAL_CONST(144801.351071/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8507 REAL_CONST(144827.361148/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8508 REAL_CONST(144853.372393/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8509 REAL_CONST(144879.384806/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8510 REAL_CONST(144905.398386/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8511 REAL_CONST(144931.413134/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8512 REAL_CONST(144957.429050/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8513 REAL_CONST(144983.446133/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8514 REAL_CONST(145009.464383/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8515 REAL_CONST(145035.483800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8516 REAL_CONST(145061.504384/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8517 REAL_CONST(145087.526135/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8518 REAL_CONST(145113.549053/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8519 REAL_CONST(145139.573138/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8520 REAL_CONST(145165.598389/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8521 REAL_CONST(145191.624807/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8522 REAL_CONST(145217.652391/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8523 REAL_CONST(145243.681141/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8524 REAL_CONST(145269.711058/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8525 REAL_CONST(145295.742140/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8526 REAL_CONST(145321.774389/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8527 REAL_CONST(145347.807804/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8528 REAL_CONST(145373.842384/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8529 REAL_CONST(145399.878130/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8530 REAL_CONST(145425.915041/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8531 REAL_CONST(145451.953119/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8532 REAL_CONST(145477.992361/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8533 REAL_CONST(145504.032768/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8534 REAL_CONST(145530.074341/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8535 REAL_CONST(145556.117079/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8536 REAL_CONST(145582.160982/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8537 REAL_CONST(145608.206049/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8538 REAL_CONST(145634.252282/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8539 REAL_CONST(145660.299679/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8540 REAL_CONST(145686.348240/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8541 REAL_CONST(145712.397966/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8542 REAL_CONST(145738.448856/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8543 REAL_CONST(145764.500910/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8544 REAL_CONST(145790.554129/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8545 REAL_CONST(145816.608511/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8546 REAL_CONST(145842.664058/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8547 REAL_CONST(145868.720768/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8548 REAL_CONST(145894.778642/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8549 REAL_CONST(145920.837679/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8550 REAL_CONST(145946.897880/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8551 REAL_CONST(145972.959244/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8552 REAL_CONST(145999.021772/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8553 REAL_CONST(146025.085463/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8554 REAL_CONST(146051.150317/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8555 REAL_CONST(146077.216333/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8556 REAL_CONST(146103.283513/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8557 REAL_CONST(146129.351855/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8558 REAL_CONST(146155.421360/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8559 REAL_CONST(146181.492028/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8560 REAL_CONST(146207.563858/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8561 REAL_CONST(146233.636850/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8562 REAL_CONST(146259.711005/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8563 REAL_CONST(146285.786321/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8564 REAL_CONST(146311.862800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8565 REAL_CONST(146337.940441/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8566 REAL_CONST(146364.019243/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8567 REAL_CONST(146390.099208/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8568 REAL_CONST(146416.180333/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8569 REAL_CONST(146442.262621/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8570 REAL_CONST(146468.346069/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8571 REAL_CONST(146494.430679/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8572 REAL_CONST(146520.516451/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8573 REAL_CONST(146546.603383/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8574 REAL_CONST(146572.691476/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8575 REAL_CONST(146598.780731/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8576 REAL_CONST(146624.871146/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8577 REAL_CONST(146650.962721/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8578 REAL_CONST(146677.055457/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8579 REAL_CONST(146703.149354/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8580 REAL_CONST(146729.244411/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8581 REAL_CONST(146755.340629/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8582 REAL_CONST(146781.438006/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8583 REAL_CONST(146807.536544/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8584 REAL_CONST(146833.636241/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8585 REAL_CONST(146859.737099/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8586 REAL_CONST(146885.839116/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8587 REAL_CONST(146911.942293/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8588 REAL_CONST(146938.046629/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8589 REAL_CONST(146964.152125/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8590 REAL_CONST(146990.258780/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8591 REAL_CONST(147016.366595/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8592 REAL_CONST(147042.475568/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8593 REAL_CONST(147068.585701/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8594 REAL_CONST(147094.696992/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8595 REAL_CONST(147120.809443/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8596 REAL_CONST(147146.923052/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8597 REAL_CONST(147173.037819/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8598 REAL_CONST(147199.153746/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8599 REAL_CONST(147225.270830/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8600 REAL_CONST(147251.389073/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8601 REAL_CONST(147277.508474/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8602 REAL_CONST(147303.629034/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8603 REAL_CONST(147329.750751/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8604 REAL_CONST(147355.873626/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8605 REAL_CONST(147381.997659/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8606 REAL_CONST(147408.122850/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8607 REAL_CONST(147434.249198/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8608 REAL_CONST(147460.376704/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8609 REAL_CONST(147486.505367/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8610 REAL_CONST(147512.635187/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8611 REAL_CONST(147538.766165/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8612 REAL_CONST(147564.898300/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8613 REAL_CONST(147591.031591/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8614 REAL_CONST(147617.166040/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8615 REAL_CONST(147643.301645/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8616 REAL_CONST(147669.438407/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8617 REAL_CONST(147695.576326/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8618 REAL_CONST(147721.715401/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8619 REAL_CONST(147747.855632/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8620 REAL_CONST(147773.997020/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8621 REAL_CONST(147800.139564/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8622 REAL_CONST(147826.283264/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8623 REAL_CONST(147852.428119/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8624 REAL_CONST(147878.574131/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8625 REAL_CONST(147904.721299/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8626 REAL_CONST(147930.869622/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8627 REAL_CONST(147957.019100/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8628 REAL_CONST(147983.169734/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8629 REAL_CONST(148009.321524/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8630 REAL_CONST(148035.474469/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8631 REAL_CONST(148061.628568/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8632 REAL_CONST(148087.783823/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8633 REAL_CONST(148113.940233/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8634 REAL_CONST(148140.097798/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8635 REAL_CONST(148166.256517/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8636 REAL_CONST(148192.416391/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8637 REAL_CONST(148218.577420/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8638 REAL_CONST(148244.739603/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8639 REAL_CONST(148270.902940/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8640 REAL_CONST(148297.067431/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8641 REAL_CONST(148323.233077/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8642 REAL_CONST(148349.399877/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8643 REAL_CONST(148375.567830/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8644 REAL_CONST(148401.736938/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8645 REAL_CONST(148427.907199/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8646 REAL_CONST(148454.078613/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8647 REAL_CONST(148480.251182/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8648 REAL_CONST(148506.424903/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8649 REAL_CONST(148532.599778/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8650 REAL_CONST(148558.775806/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8651 REAL_CONST(148584.952987/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8652 REAL_CONST(148611.131322/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8653 REAL_CONST(148637.310809/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8654 REAL_CONST(148663.491449/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8655 REAL_CONST(148689.673241/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8656 REAL_CONST(148715.856187/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8657 REAL_CONST(148742.040284/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8658 REAL_CONST(148768.225534/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8659 REAL_CONST(148794.411937/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8660 REAL_CONST(148820.599491/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8661 REAL_CONST(148846.788198/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8662 REAL_CONST(148872.978057/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8663 REAL_CONST(148899.169067/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8664 REAL_CONST(148925.361230/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8665 REAL_CONST(148951.554544/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8666 REAL_CONST(148977.749009/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8667 REAL_CONST(149003.944626/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8668 REAL_CONST(149030.141395/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8669 REAL_CONST(149056.339315/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8670 REAL_CONST(149082.538386/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8671 REAL_CONST(149108.738608/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8672 REAL_CONST(149134.939981/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8673 REAL_CONST(149161.142504/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8674 REAL_CONST(149187.346179/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8675 REAL_CONST(149213.551004/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8676 REAL_CONST(149239.756980/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8677 REAL_CONST(149265.964106/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8678 REAL_CONST(149292.172383/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8679 REAL_CONST(149318.381810/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8680 REAL_CONST(149344.592387/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8681 REAL_CONST(149370.804115/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8682 REAL_CONST(149397.016992/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8683 REAL_CONST(149423.231019/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8684 REAL_CONST(149449.446196/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8685 REAL_CONST(149475.662522/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8686 REAL_CONST(149501.879998/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8687 REAL_CONST(149528.098623/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8688 REAL_CONST(149554.318398/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8689 REAL_CONST(149580.539322/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8690 REAL_CONST(149606.761396/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8691 REAL_CONST(149632.984618/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8692 REAL_CONST(149659.208989/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8693 REAL_CONST(149685.434509/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8694 REAL_CONST(149711.661178/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8695 REAL_CONST(149737.888996/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8696 REAL_CONST(149764.117962/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8697 REAL_CONST(149790.348076/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8698 REAL_CONST(149816.579339/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8699 REAL_CONST(149842.811751/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8700 REAL_CONST(149869.045310/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8701 REAL_CONST(149895.280017/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8702 REAL_CONST(149921.515873/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8703 REAL_CONST(149947.752876/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8704 REAL_CONST(149973.991027/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8705 REAL_CONST(150000.230325/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8706 REAL_CONST(150026.470771/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8707 REAL_CONST(150052.712365/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8708 REAL_CONST(150078.955106/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8709 REAL_CONST(150105.198994/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8710 REAL_CONST(150131.444029/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8711 REAL_CONST(150157.690212/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8712 REAL_CONST(150183.937541/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8713 REAL_CONST(150210.186017/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8714 REAL_CONST(150236.435640/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8715 REAL_CONST(150262.686410/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8716 REAL_CONST(150288.938326/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8717 REAL_CONST(150315.191388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8718 REAL_CONST(150341.445597/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8719 REAL_CONST(150367.700952/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8720 REAL_CONST(150393.957453/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8721 REAL_CONST(150420.215101/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8722 REAL_CONST(150446.473894/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8723 REAL_CONST(150472.733833/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8724 REAL_CONST(150498.994918/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8725 REAL_CONST(150525.257149/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8726 REAL_CONST(150551.520525/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8727 REAL_CONST(150577.785046/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8728 REAL_CONST(150604.050713/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8729 REAL_CONST(150630.317525/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8730 REAL_CONST(150656.585482/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8731 REAL_CONST(150682.854585/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8732 REAL_CONST(150709.124832/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8733 REAL_CONST(150735.396224/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8734 REAL_CONST(150761.668761/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8735 REAL_CONST(150787.942442/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8736 REAL_CONST(150814.217268/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8737 REAL_CONST(150840.493239/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8738 REAL_CONST(150866.770354/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8739 REAL_CONST(150893.048613/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8740 REAL_CONST(150919.328016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8741 REAL_CONST(150945.608563/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8742 REAL_CONST(150971.890255/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8743 REAL_CONST(150998.173090/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8744 REAL_CONST(151024.457068/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8745 REAL_CONST(151050.742191/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8746 REAL_CONST(151077.028457/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8747 REAL_CONST(151103.315866/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8748 REAL_CONST(151129.604419/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8749 REAL_CONST(151155.894115/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8750 REAL_CONST(151182.184955/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8751 REAL_CONST(151208.476937/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8752 REAL_CONST(151234.770062/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8753 REAL_CONST(151261.064330/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8754 REAL_CONST(151287.359741/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8755 REAL_CONST(151313.656295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8756 REAL_CONST(151339.953991/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8757 REAL_CONST(151366.252829/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8758 REAL_CONST(151392.552810/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8759 REAL_CONST(151418.853934/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8760 REAL_CONST(151445.156199/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8761 REAL_CONST(151471.459606/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8762 REAL_CONST(151497.764156/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8763 REAL_CONST(151524.069847/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8764 REAL_CONST(151550.376680/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8765 REAL_CONST(151576.684655/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8766 REAL_CONST(151602.993771/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8767 REAL_CONST(151629.304028/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8768 REAL_CONST(151655.615427/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8769 REAL_CONST(151681.927968/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8770 REAL_CONST(151708.241649/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8771 REAL_CONST(151734.556472/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8772 REAL_CONST(151760.872435/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8773 REAL_CONST(151787.189540/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8774 REAL_CONST(151813.507785/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8775 REAL_CONST(151839.827171/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8776 REAL_CONST(151866.147697/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8777 REAL_CONST(151892.469364/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8778 REAL_CONST(151918.792172/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8779 REAL_CONST(151945.116119/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8780 REAL_CONST(151971.441207/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8781 REAL_CONST(151997.767435/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8782 REAL_CONST(152024.094803/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8783 REAL_CONST(152050.423310/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8784 REAL_CONST(152076.752958/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8785 REAL_CONST(152103.083745/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8786 REAL_CONST(152129.415672/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8787 REAL_CONST(152155.748738/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8788 REAL_CONST(152182.082944/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8789 REAL_CONST(152208.418289/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8790 REAL_CONST(152234.754773/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8791 REAL_CONST(152261.092396/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8792 REAL_CONST(152287.431158/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8793 REAL_CONST(152313.771060/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8794 REAL_CONST(152340.112100/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8795 REAL_CONST(152366.454278/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8796 REAL_CONST(152392.797595/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8797 REAL_CONST(152419.142051/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8798 REAL_CONST(152445.487645/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8799 REAL_CONST(152471.834378/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8800 REAL_CONST(152498.182249/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8801 REAL_CONST(152524.531257/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8802 REAL_CONST(152550.881404/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8803 REAL_CONST(152577.232689/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8804 REAL_CONST(152603.585111/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8805 REAL_CONST(152629.938672/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8806 REAL_CONST(152656.293370/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8807 REAL_CONST(152682.649205/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8808 REAL_CONST(152709.006178/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8809 REAL_CONST(152735.364288/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8810 REAL_CONST(152761.723535/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8811 REAL_CONST(152788.083920/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8812 REAL_CONST(152814.445442/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8813 REAL_CONST(152840.808100/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8814 REAL_CONST(152867.171895/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8815 REAL_CONST(152893.536827/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8816 REAL_CONST(152919.902896/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8817 REAL_CONST(152946.270101/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8818 REAL_CONST(152972.638443/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8819 REAL_CONST(152999.007921/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8820 REAL_CONST(153025.378535/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8821 REAL_CONST(153051.750286/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8822 REAL_CONST(153078.123172/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8823 REAL_CONST(153104.497195/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8824 REAL_CONST(153130.872353/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8825 REAL_CONST(153157.248647/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8826 REAL_CONST(153183.626077/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8827 REAL_CONST(153210.004642/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8828 REAL_CONST(153236.384343/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8829 REAL_CONST(153262.765179/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8830 REAL_CONST(153289.147150/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8831 REAL_CONST(153315.530257/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8832 REAL_CONST(153341.914499/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8833 REAL_CONST(153368.299875/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8834 REAL_CONST(153394.686387/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8835 REAL_CONST(153421.074033/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8836 REAL_CONST(153447.462814/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8837 REAL_CONST(153473.852729/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8838 REAL_CONST(153500.243779/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8839 REAL_CONST(153526.635964/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8840 REAL_CONST(153553.029283/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8841 REAL_CONST(153579.423735/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8842 REAL_CONST(153605.819322/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8843 REAL_CONST(153632.216043/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8844 REAL_CONST(153658.613898/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8845 REAL_CONST(153685.012887/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8846 REAL_CONST(153711.413010/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8847 REAL_CONST(153737.814266/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8848 REAL_CONST(153764.216655/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8849 REAL_CONST(153790.620178/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8850 REAL_CONST(153817.024834/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8851 REAL_CONST(153843.430624/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8852 REAL_CONST(153869.837547/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8853 REAL_CONST(153896.245602/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8854 REAL_CONST(153922.654791/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8855 REAL_CONST(153949.065112/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8856 REAL_CONST(153975.476566/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8857 REAL_CONST(154001.889153/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8858 REAL_CONST(154028.302873/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8859 REAL_CONST(154054.717724/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8860 REAL_CONST(154081.133709/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8861 REAL_CONST(154107.550825/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8862 REAL_CONST(154133.969074/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8863 REAL_CONST(154160.388454/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8864 REAL_CONST(154186.808967/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8865 REAL_CONST(154213.230611/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8866 REAL_CONST(154239.653387/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8867 REAL_CONST(154266.077295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8868 REAL_CONST(154292.502335/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8869 REAL_CONST(154318.928506/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8870 REAL_CONST(154345.355808/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8871 REAL_CONST(154371.784241/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8872 REAL_CONST(154398.213806/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8873 REAL_CONST(154424.644502/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8874 REAL_CONST(154451.076329/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8875 REAL_CONST(154477.509287/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8876 REAL_CONST(154503.943375/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8877 REAL_CONST(154530.378594/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8878 REAL_CONST(154556.814944/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8879 REAL_CONST(154583.252425/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8880 REAL_CONST(154609.691035/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8881 REAL_CONST(154636.130776/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8882 REAL_CONST(154662.571648/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8883 REAL_CONST(154689.013649/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8884 REAL_CONST(154715.456781/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8885 REAL_CONST(154741.901042/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8886 REAL_CONST(154768.346433/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8887 REAL_CONST(154794.792954/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8888 REAL_CONST(154821.240605/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8889 REAL_CONST(154847.689385/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8890 REAL_CONST(154874.139294/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8891 REAL_CONST(154900.590333/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8892 REAL_CONST(154927.042501/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8893 REAL_CONST(154953.495799/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8894 REAL_CONST(154979.950225/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8895 REAL_CONST(155006.405780/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8896 REAL_CONST(155032.862464/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8897 REAL_CONST(155059.320277/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8898 REAL_CONST(155085.779219/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8899 REAL_CONST(155112.239289/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8900 REAL_CONST(155138.700488/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8901 REAL_CONST(155165.162815/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8902 REAL_CONST(155191.626270/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8903 REAL_CONST(155218.090854/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8904 REAL_CONST(155244.556566/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8905 REAL_CONST(155271.023405/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8906 REAL_CONST(155297.491373/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8907 REAL_CONST(155323.960468/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8908 REAL_CONST(155350.430691/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8909 REAL_CONST(155376.902042/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8910 REAL_CONST(155403.374520/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8911 REAL_CONST(155429.848126/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8912 REAL_CONST(155456.322859/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8913 REAL_CONST(155482.798719/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8914 REAL_CONST(155509.275706/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8915 REAL_CONST(155535.753821/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8916 REAL_CONST(155562.233062/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8917 REAL_CONST(155588.713430/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8918 REAL_CONST(155615.194925/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8919 REAL_CONST(155641.677547/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8920 REAL_CONST(155668.161295/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8921 REAL_CONST(155694.646170/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8922 REAL_CONST(155721.132171/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8923 REAL_CONST(155747.619298/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8924 REAL_CONST(155774.107551/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8925 REAL_CONST(155800.596931/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8926 REAL_CONST(155827.087436/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8927 REAL_CONST(155853.579068/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8928 REAL_CONST(155880.071825/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8929 REAL_CONST(155906.565708/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8930 REAL_CONST(155933.060716/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8931 REAL_CONST(155959.556850/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8932 REAL_CONST(155986.054110/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8933 REAL_CONST(156012.552494/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8934 REAL_CONST(156039.052004/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8935 REAL_CONST(156065.552639/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8936 REAL_CONST(156092.054399/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8937 REAL_CONST(156118.557284/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8938 REAL_CONST(156145.061294/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8939 REAL_CONST(156171.566429/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8940 REAL_CONST(156198.072688/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8941 REAL_CONST(156224.580072/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8942 REAL_CONST(156251.088580/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8943 REAL_CONST(156277.598213/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8944 REAL_CONST(156304.108970/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8945 REAL_CONST(156330.620851/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8946 REAL_CONST(156357.133856/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8947 REAL_CONST(156383.647985/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8948 REAL_CONST(156410.163238/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8949 REAL_CONST(156436.679615/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8950 REAL_CONST(156463.197115/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8951 REAL_CONST(156489.715740/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8952 REAL_CONST(156516.235487/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8953 REAL_CONST(156542.756358/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8954 REAL_CONST(156569.278352/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8955 REAL_CONST(156595.801470/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8956 REAL_CONST(156622.325711/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8957 REAL_CONST(156648.851074/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8958 REAL_CONST(156675.377561/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8959 REAL_CONST(156701.905170/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8960 REAL_CONST(156728.433903/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8961 REAL_CONST(156754.963757/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8962 REAL_CONST(156781.494735/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8963 REAL_CONST(156808.026835/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8964 REAL_CONST(156834.560057/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8965 REAL_CONST(156861.094401/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8966 REAL_CONST(156887.629868/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8967 REAL_CONST(156914.166457/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8968 REAL_CONST(156940.704168/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8969 REAL_CONST(156967.243000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8970 REAL_CONST(156993.782955/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8971 REAL_CONST(157020.324031/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8972 REAL_CONST(157046.866228/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8973 REAL_CONST(157073.409548/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8974 REAL_CONST(157099.953988/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8975 REAL_CONST(157126.499550/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8976 REAL_CONST(157153.046233/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8977 REAL_CONST(157179.594038/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8978 REAL_CONST(157206.142963/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8979 REAL_CONST(157232.693009/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8980 REAL_CONST(157259.244176/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8981 REAL_CONST(157285.796464/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8982 REAL_CONST(157312.349873/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8983 REAL_CONST(157338.904402/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8984 REAL_CONST(157365.460051/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8985 REAL_CONST(157392.016821/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8986 REAL_CONST(157418.574712/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8987 REAL_CONST(157445.133722/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8988 REAL_CONST(157471.693853/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8989 REAL_CONST(157498.255103/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8990 REAL_CONST(157524.817473/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8991 REAL_CONST(157551.380964/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8992 REAL_CONST(157577.945574/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8993 REAL_CONST(157604.511303/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8994 REAL_CONST(157631.078152/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8995 REAL_CONST(157657.646121/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8996 REAL_CONST(157684.215208/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8997 REAL_CONST(157710.785415/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8998 REAL_CONST(157737.356742/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
8999 REAL_CONST(157763.929187/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9000 REAL_CONST(157790.502751/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9001 REAL_CONST(157817.077434/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9002 REAL_CONST(157843.653236/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9003 REAL_CONST(157870.230157/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9004 REAL_CONST(157896.808196/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9005 REAL_CONST(157923.387353/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9006 REAL_CONST(157949.967629/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9007 REAL_CONST(157976.549023/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9008 REAL_CONST(158003.131536/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9009 REAL_CONST(158029.715167/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9010 REAL_CONST(158056.299915/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9011 REAL_CONST(158082.885782/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9012 REAL_CONST(158109.472766/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9013 REAL_CONST(158136.060868/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9014 REAL_CONST(158162.650088/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9015 REAL_CONST(158189.240425/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9016 REAL_CONST(158215.831880/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9017 REAL_CONST(158242.424452/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9018 REAL_CONST(158269.018141/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9019 REAL_CONST(158295.612948/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9020 REAL_CONST(158322.208871/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9021 REAL_CONST(158348.805912/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9022 REAL_CONST(158375.404070/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9023 REAL_CONST(158402.003344/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9024 REAL_CONST(158428.603735/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9025 REAL_CONST(158455.205242/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9026 REAL_CONST(158481.807866/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9027 REAL_CONST(158508.411607/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9028 REAL_CONST(158535.016464/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9029 REAL_CONST(158561.622437/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9030 REAL_CONST(158588.229526/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9031 REAL_CONST(158614.837731/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9032 REAL_CONST(158641.447053/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9033 REAL_CONST(158668.057490/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9034 REAL_CONST(158694.669042/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9035 REAL_CONST(158721.281711/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9036 REAL_CONST(158747.895495/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9037 REAL_CONST(158774.510395/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9038 REAL_CONST(158801.126410/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9039 REAL_CONST(158827.743540/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9040 REAL_CONST(158854.361785/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9041 REAL_CONST(158880.981146/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9042 REAL_CONST(158907.601621/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9043 REAL_CONST(158934.223212/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9044 REAL_CONST(158960.845917/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9045 REAL_CONST(158987.469737/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9046 REAL_CONST(159014.094672/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9047 REAL_CONST(159040.720721/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9048 REAL_CONST(159067.347885/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9049 REAL_CONST(159093.976163/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9050 REAL_CONST(159120.605556/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9051 REAL_CONST(159147.236062/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9052 REAL_CONST(159173.867683/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9053 REAL_CONST(159200.500417/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9054 REAL_CONST(159227.134266/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9055 REAL_CONST(159253.769228/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9056 REAL_CONST(159280.405304/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9057 REAL_CONST(159307.042494/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9058 REAL_CONST(159333.680797/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9059 REAL_CONST(159360.320214/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9060 REAL_CONST(159386.960744/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9061 REAL_CONST(159413.602387/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9062 REAL_CONST(159440.245143/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9063 REAL_CONST(159466.889012/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9064 REAL_CONST(159493.533995/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9065 REAL_CONST(159520.180090/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9066 REAL_CONST(159546.827298/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9067 REAL_CONST(159573.475619/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9068 REAL_CONST(159600.125052/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9069 REAL_CONST(159626.775598/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9070 REAL_CONST(159653.427256/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9071 REAL_CONST(159680.080027/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9072 REAL_CONST(159706.733909/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9073 REAL_CONST(159733.388904/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9074 REAL_CONST(159760.045011/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9075 REAL_CONST(159786.702230/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9076 REAL_CONST(159813.360561/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9077 REAL_CONST(159840.020003/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9078 REAL_CONST(159866.680557/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9079 REAL_CONST(159893.342223/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9080 REAL_CONST(159920.005000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9081 REAL_CONST(159946.668889/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9082 REAL_CONST(159973.333889/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9083 REAL_CONST(160000.000000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9084 REAL_CONST(160026.667222/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9085 REAL_CONST(160053.335555/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9086 REAL_CONST(160080.005000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9087 REAL_CONST(160106.675555/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9088 REAL_CONST(160133.347220/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9089 REAL_CONST(160160.019997/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9090 REAL_CONST(160186.693884/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9091 REAL_CONST(160213.368881/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9092 REAL_CONST(160240.044989/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9093 REAL_CONST(160266.722207/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9094 REAL_CONST(160293.400535/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9095 REAL_CONST(160320.079973/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9096 REAL_CONST(160346.760522/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9097 REAL_CONST(160373.442180/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9098 REAL_CONST(160400.124948/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9099 REAL_CONST(160426.808826/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9100 REAL_CONST(160453.493813/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9101 REAL_CONST(160480.179910/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9102 REAL_CONST(160506.867116/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9103 REAL_CONST(160533.555432/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9104 REAL_CONST(160560.244857/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9105 REAL_CONST(160586.935391/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9106 REAL_CONST(160613.627035/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9107 REAL_CONST(160640.319787/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9108 REAL_CONST(160667.013648/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9109 REAL_CONST(160693.708618/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9110 REAL_CONST(160720.404697/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9111 REAL_CONST(160747.101884/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9112 REAL_CONST(160773.800180/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9113 REAL_CONST(160800.499584/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9114 REAL_CONST(160827.200097/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9115 REAL_CONST(160853.901717/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9116 REAL_CONST(160880.604446/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9117 REAL_CONST(160907.308283/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9118 REAL_CONST(160934.013228/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9119 REAL_CONST(160960.719281/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9120 REAL_CONST(160987.426442/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9121 REAL_CONST(161014.134710/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9122 REAL_CONST(161040.844086/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9123 REAL_CONST(161067.554570/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9124 REAL_CONST(161094.266161/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9125 REAL_CONST(161120.978859/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9126 REAL_CONST(161147.692665/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9127 REAL_CONST(161174.407577/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9128 REAL_CONST(161201.123597/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9129 REAL_CONST(161227.840724/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9130 REAL_CONST(161254.558957/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9131 REAL_CONST(161281.278298/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9132 REAL_CONST(161307.998745/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9133 REAL_CONST(161334.720298/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9134 REAL_CONST(161361.442958/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9135 REAL_CONST(161388.166725/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9136 REAL_CONST(161414.891598/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9137 REAL_CONST(161441.617577/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9138 REAL_CONST(161468.344662/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9139 REAL_CONST(161495.072853/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9140 REAL_CONST(161521.802151/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9141 REAL_CONST(161548.532554/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9142 REAL_CONST(161575.264062/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9143 REAL_CONST(161601.996677/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9144 REAL_CONST(161628.730397/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9145 REAL_CONST(161655.465223/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9146 REAL_CONST(161682.201154/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9147 REAL_CONST(161708.938190/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9148 REAL_CONST(161735.676332/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9149 REAL_CONST(161762.415579/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9150 REAL_CONST(161789.155930/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9151 REAL_CONST(161815.897387/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9152 REAL_CONST(161842.639949/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9153 REAL_CONST(161869.383615/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9154 REAL_CONST(161896.128386/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9155 REAL_CONST(161922.874261/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9156 REAL_CONST(161949.621242/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9157 REAL_CONST(161976.369326/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9158 REAL_CONST(162003.118515/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9159 REAL_CONST(162029.868808/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9160 REAL_CONST(162056.620205/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9161 REAL_CONST(162083.372706/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9162 REAL_CONST(162110.126311/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9163 REAL_CONST(162136.881020/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9164 REAL_CONST(162163.636833/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9165 REAL_CONST(162190.393750/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9166 REAL_CONST(162217.151770/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9167 REAL_CONST(162243.910893/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9168 REAL_CONST(162270.671120/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9169 REAL_CONST(162297.432450/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9170 REAL_CONST(162324.194884/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9171 REAL_CONST(162350.958420/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9172 REAL_CONST(162377.723060/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9173 REAL_CONST(162404.488802/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9174 REAL_CONST(162431.255648/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9175 REAL_CONST(162458.023596/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9176 REAL_CONST(162484.792647/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9177 REAL_CONST(162511.562800/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9178 REAL_CONST(162538.334056/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9179 REAL_CONST(162565.106414/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9180 REAL_CONST(162591.879875/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9181 REAL_CONST(162618.654438/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9182 REAL_CONST(162645.430103/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9183 REAL_CONST(162672.206870/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9184 REAL_CONST(162698.984739/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9185 REAL_CONST(162725.763710/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9186 REAL_CONST(162752.543782/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9187 REAL_CONST(162779.324957/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9188 REAL_CONST(162806.107232/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9189 REAL_CONST(162832.890610/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9190 REAL_CONST(162859.675089/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9191 REAL_CONST(162886.460669/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9192 REAL_CONST(162913.247350/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9193 REAL_CONST(162940.035132/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9194 REAL_CONST(162966.824016/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9195 REAL_CONST(162993.614000/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9196 REAL_CONST(163020.405085/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9197 REAL_CONST(163047.197271/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9198 REAL_CONST(163073.990558/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9199 REAL_CONST(163100.784945/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9200 REAL_CONST(163127.580433/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9201 REAL_CONST(163154.377021/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9202 REAL_CONST(163181.174710/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9203 REAL_CONST(163207.973499/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9204 REAL_CONST(163234.773388/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9205 REAL_CONST(163261.574377/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9206 REAL_CONST(163288.376465/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9207 REAL_CONST(163315.179654/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9208 REAL_CONST(163341.983943/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9209 REAL_CONST(163368.789331/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9210 REAL_CONST(163395.595819/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9211 REAL_CONST(163422.403406/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9212 REAL_CONST(163449.212093/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9213 REAL_CONST(163476.021879/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9214 REAL_CONST(163502.832764/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9215 REAL_CONST(163529.644749/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9216 REAL_CONST(163556.457832/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9217 REAL_CONST(163583.272015/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9218 REAL_CONST(163610.087296/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9219 REAL_CONST(163636.903676/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9220 REAL_CONST(163663.721155/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9221 REAL_CONST(163690.539732/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9222 REAL_CONST(163717.359408/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9223 REAL_CONST(163744.180182/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9224 REAL_CONST(163771.002055/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9225 REAL_CONST(163797.825026/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9226 REAL_CONST(163824.649095/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9227 REAL_CONST(163851.474262/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9228 REAL_CONST(163878.300527/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9229 REAL_CONST(163905.127890/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9230 REAL_CONST(163931.956351/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9231 REAL_CONST(163958.785910/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9232 REAL_CONST(163985.616566/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9233 REAL_CONST(164012.448320/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9234 REAL_CONST(164039.281171/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9235 REAL_CONST(164066.115119/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9236 REAL_CONST(164092.950165/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9237 REAL_CONST(164119.786308/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9238 REAL_CONST(164146.623548/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9239 REAL_CONST(164173.461884/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9240 REAL_CONST(164200.301318/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9241 REAL_CONST(164227.141849/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9242 REAL_CONST(164253.983476/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9243 REAL_CONST(164280.826200/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9244 REAL_CONST(164307.670021/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9245 REAL_CONST(164334.514938/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9246 REAL_CONST(164361.360951/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9247 REAL_CONST(164388.208061/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9248 REAL_CONST(164415.056266/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9249 REAL_CONST(164441.905568/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9250 REAL_CONST(164468.755966/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9251 REAL_CONST(164495.607460/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9252 REAL_CONST(164522.460049/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9253 REAL_CONST(164549.313735/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9254 REAL_CONST(164576.168516/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9255 REAL_CONST(164603.024392/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9256 REAL_CONST(164629.881364/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9257 REAL_CONST(164656.739432/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9258 REAL_CONST(164683.598594/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9259 REAL_CONST(164710.458852/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9260 REAL_CONST(164737.320205/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9261 REAL_CONST(164764.182653/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9262 REAL_CONST(164791.046196/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9263 REAL_CONST(164817.910834/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9264 REAL_CONST(164844.776566/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9265 REAL_CONST(164871.643393/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9266 REAL_CONST(164898.511315/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9267 REAL_CONST(164925.380331/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9268 REAL_CONST(164952.250442/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9269 REAL_CONST(164979.121647/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9270 REAL_CONST(165005.993946/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9271 REAL_CONST(165032.867339/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9272 REAL_CONST(165059.741827/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9273 REAL_CONST(165086.617408/8.0),
3185f64f6350 synced with current cvs
alex
parents: 10725
diff changeset
9274 REAL_CONST(165113.494083/8.0)
10725
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
9275 };
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
9276
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
9277 #endif
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
9278
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
9279 #ifdef __cplusplus
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
9280 }
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
9281 #endif
e989150f8216 libfaad2 v2.0rc1 imported
arpi
parents:
diff changeset
9282 #endif