langtools/test/tools/javac/HexThree.java
author mikejwre
Wed, 09 Jun 2010 18:56:41 -0700
changeset 5634 895b66935810
parent 5520 86e4b9a9da40
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2985
diff changeset
     2
 * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2985
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2985
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 2985
diff changeset
    21
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
/*
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
 * @test
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
 * @bug 4920023
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
 * @summary Test hex floating-point literals
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
 * @author darcy
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
public class HexThree {
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
    public static void main(String argv[]) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
        double [] testValues = {
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
            +0X.0030000000000P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
            +0X.0030000000000P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
            +0X.0030000000000P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
            +0X.0030000000000P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
            +0X.0030000000000P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
            +0X.0030000000000P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
            +0X.0030000000000P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
            +0X.0030000000000P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
            +0X.0030000000000P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
            +0X.0030000000000P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
            +0X.0030000000000p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
            +0X.0030000000000p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
            +0X.0030000000000p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
            +0X.0030000000000p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
            +0X.0030000000000p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
            +0X.0030000000000p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
            +0X.0030000000000p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
            +0X.0030000000000p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
            +0X.0030000000000p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
            +0X.0030000000000p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
            +0X.0030P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
            +0X.0030P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
            +0X.0030P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
            +0X.0030P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
            +0X.0030P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
            +0X.0030P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
            +0X.0030P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
            +0X.0030P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
            +0X.0030P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
            +0X.0030P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
            +0X.0030p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
            +0X.0030p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
            +0X.0030p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
            +0X.0030p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
            +0X.0030p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
            +0X.0030p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
            +0X.0030p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
            +0X.0030p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
            +0X.0030p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
            +0X.0030p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
            +0X.003P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
            +0X.003P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
            +0X.003P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
            +0X.003P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
            +0X.003P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
            +0X.003P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
            +0X.003P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
            +0X.003P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
            +0X.003P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
            +0X.003P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
            +0X.003p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
            +0X.003p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
            +0X.003p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
            +0X.003p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
            +0X.003p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
            +0X.003p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
            +0X.003p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
            +0X.003p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
            +0X.003p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
            +0X.003p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
            +0X.3P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
            +0X.3P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
            +0X.3P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
            +0X.3P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
            +0X.3P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
            +0X.3P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
            +0X.3P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
            +0X.3P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
            +0X.3P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
            +0X.3P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
            +0X.3p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
            +0X.3p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
            +0X.3p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
            +0X.3p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
            +0X.3p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
            +0X.3p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
            +0X.3p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
            +0X.3p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
            +0X.3p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
            +0X.3p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
            +0X.C0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
            +0X.C0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
            +0X.C0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
            +0X.C0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
            +0X.C0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
            +0X.C0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
            +0X.C0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
            +0X.C0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
            +0X.C0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
            +0X.C0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
            +0X.C0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
            +0X.C0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
            +0X.C0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
            +0X.C0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
            +0X.C0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
            +0X.C0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
            +0X.C0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
            +0X.C0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
            +0X.C0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
            +0X.C0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
            +0X.CP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
            +0X.CP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
            +0X.CP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
            +0X.CP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
            +0X.CP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
            +0X.CP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
            +0X.CP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
            +0X.CP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
            +0X.CP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
            +0X.CP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
            +0X.Cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
            +0X.Cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
            +0X.Cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
            +0X.Cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
            +0X.Cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
            +0X.Cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
            +0X.Cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
            +0X.Cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
            +0X.Cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
            +0X.Cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
            +0X.c0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
            +0X.c0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
            +0X.c0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
            +0X.c0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
            +0X.c0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
            +0X.c0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
            +0X.c0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
            +0X.c0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
            +0X.c0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
            +0X.c0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
            +0X.c0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
            +0X.c0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
            +0X.c0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
            +0X.c0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
            +0X.c0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
            +0X.c0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
            +0X.c0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
            +0X.c0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
            +0X.c0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
            +0X.c0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
            +0X.cP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
            +0X.cP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
            +0X.cP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
            +0X.cP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
            +0X.cP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
            +0X.cP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
            +0X.cP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
            +0X.cP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
            +0X.cP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
            +0X.cP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
            +0X.cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
            +0X.cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
            +0X.cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
            +0X.cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
            +0X.cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
            +0X.cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
            +0X.cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
            +0X.cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
            +0X.cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
            +0X.cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
            +0X0.30P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
            +0X0.30P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
            +0X0.30P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
            +0X0.30P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
            +0X0.30P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
            +0X0.30P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
            +0X0.30P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
            +0X0.30P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
            +0X0.30P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
            +0X0.30P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
            +0X0.30p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
            +0X0.30p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
            +0X0.30p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
            +0X0.30p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
            +0X0.30p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
            +0X0.30p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
            +0X0.30p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
            +0X0.30p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
            +0X0.30p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
            +0X0.30p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
            +0X0.3P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
            +0X0.3P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
            +0X0.3P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
            +0X0.3P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
            +0X0.3P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
            +0X0.3P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
            +0X0.3P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
            +0X0.3P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
            +0X0.3P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
            +0X0.3P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
            +0X0.3p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
            +0X0.3p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
            +0X0.3p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
            +0X0.3p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
            +0X0.3p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
            +0X0.3p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
            +0X0.3p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
            +0X0.3p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
            +0X0.3p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
            +0X0.3p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
            +0X0.C0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
            +0X0.C0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
            +0X0.C0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
            +0X0.C0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
            +0X0.C0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
            +0X0.C0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
            +0X0.C0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
            +0X0.C0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
            +0X0.C0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
            +0X0.C0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
            +0X0.C0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
            +0X0.C0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
            +0X0.C0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
            +0X0.C0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
            +0X0.C0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
            +0X0.C0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
            +0X0.C0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
            +0X0.C0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
            +0X0.C0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
            +0X0.C0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
            +0X0.CP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
            +0X0.CP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
            +0X0.CP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
            +0X0.CP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
            +0X0.CP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
            +0X0.CP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
            +0X0.CP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
            +0X0.CP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
            +0X0.CP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
            +0X0.CP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
            +0X0.Cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
            +0X0.Cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
            +0X0.Cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
            +0X0.Cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
            +0X0.Cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
            +0X0.Cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
            +0X0.Cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
            +0X0.Cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
            +0X0.Cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
            +0X0.Cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
            +0X0.c0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
            +0X0.c0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
            +0X0.c0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
            +0X0.c0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
            +0X0.c0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
            +0X0.c0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
            +0X0.c0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
            +0X0.c0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
            +0X0.c0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
            +0X0.c0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
            +0X0.c0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
            +0X0.c0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
            +0X0.c0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
            +0X0.c0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
            +0X0.c0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
            +0X0.c0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
            +0X0.c0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
            +0X0.c0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
            +0X0.c0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
            +0X0.c0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
            +0X0.cP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
            +0X0.cP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
            +0X0.cP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
            +0X0.cP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
            +0X0.cP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
            +0X0.cP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
            +0X0.cP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
            +0X0.cP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
            +0X0.cP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
            +0X0.cP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
            +0X0.cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
            +0X0.cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
            +0X0.cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
            +0X0.cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
            +0X0.cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
            +0X0.cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
            +0X0.cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
            +0X0.cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
            +0X0.cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
            +0X0.cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
            +0X000000000.0030000000000P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
            +0X000000000.0030000000000P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
            +0X000000000.0030000000000P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
            +0X000000000.0030000000000P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
            +0X000000000.0030000000000P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
            +0X000000000.0030000000000P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
            +0X000000000.0030000000000P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
            +0X000000000.0030000000000P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
            +0X000000000.0030000000000P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
            +0X000000000.0030000000000P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
            +0X000000000.0030000000000p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
            +0X000000000.0030000000000p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
            +0X000000000.0030000000000p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
            +0X000000000.0030000000000p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
            +0X000000000.0030000000000p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
            +0X000000000.0030000000000p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
            +0X000000000.0030000000000p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
            +0X000000000.0030000000000p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
            +0X000000000.0030000000000p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
            +0X000000000.0030000000000p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
            +0X00003P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
            +0X00003P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   337
            +0X00003P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
            +0X00003P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
            +0X00003P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
            +0X00003P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
            +0X00003P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
            +0X00003P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
            +0X00003P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
            +0X00003P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
            +0X00003P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   346
            +0X00003P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
            +0X00003P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
            +0X00003P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
            +0X00003P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
            +0X00003p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
            +0X00003p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
            +0X00003p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
            +0X00003p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
            +0X00003p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
            +0X00003p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
            +0X00003p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
            +0X00003p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
            +0X00003p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
            +0X00003p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
            +0X00003p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
            +0X00003p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
            +0X00003p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
            +0X00003p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
            +0X00003p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
            +0X0003.P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
            +0X0003.P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
            +0X0003.P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
            +0X0003.P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
            +0X0003.P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
            +0X0003.P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
            +0X0003.P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
            +0X0003.P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
            +0X0003.P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
            +0X0003.P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
            +0X0003.P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
            +0X0003.P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
            +0X0003.P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   378
            +0X0003.P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
            +0X0003.P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
            +0X0003.p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
            +0X0003.p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
            +0X0003.p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
            +0X0003.p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
            +0X0003.p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
            +0X0003.p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
            +0X0003.p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   387
            +0X0003.p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   388
            +0X0003.p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
            +0X0003.p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
            +0X0003.p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
            +0X0003.p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
            +0X0003.p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
            +0X0003.p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
            +0X0003.p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   395
            +0X0003P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   396
            +0X0003P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   397
            +0X0003P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   398
            +0X0003P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   399
            +0X0003P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
            +0X0003P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   401
            +0X0003P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
            +0X0003P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
            +0X0003P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
            +0X0003P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
            +0X0003P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   406
            +0X0003P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
            +0X0003P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
            +0X0003P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
            +0X0003P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
            +0X0003p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
            +0X0003p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
            +0X0003p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
            +0X0003p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
            +0X0003p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
            +0X0003p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
            +0X0003p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
            +0X0003p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   418
            +0X0003p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
            +0X0003p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
            +0X0003p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   421
            +0X0003p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
            +0X0003p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
            +0X0003p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
            +0X0003p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
            +0X01.80P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
            +0X01.80P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
            +0X01.80P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
            +0X01.80P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
            +0X01.80P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
            +0X01.80P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   431
            +0X01.80P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
            +0X01.80P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
            +0X01.80P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
            +0X01.80P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
            +0X01.80p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
            +0X01.80p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   437
            +0X01.80p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   438
            +0X01.80p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
            +0X01.80p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
            +0X01.80p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   441
            +0X01.80p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
            +0X01.80p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
            +0X01.80p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
            +0X01.80p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
            +0X01.8P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
            +0X01.8P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
            +0X01.8P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   448
            +0X01.8P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   449
            +0X01.8P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   450
            +0X01.8P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   451
            +0X01.8P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
            +0X01.8P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
            +0X01.8P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   454
            +0X01.8P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   455
            +0X01.8p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   456
            +0X01.8p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
            +0X01.8p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   458
            +0X01.8p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   459
            +0X01.8p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
            +0X01.8p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   461
            +0X01.8p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
            +0X01.8p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
            +0X01.8p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
            +0X01.8p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
            +0X1.80P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   466
            +0X1.80P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   467
            +0X1.80P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   468
            +0X1.80P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   469
            +0X1.80P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   470
            +0X1.80P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   471
            +0X1.80P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
            +0X1.80P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   473
            +0X1.80P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   474
            +0X1.80P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   475
            +0X1.80p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
            +0X1.80p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   477
            +0X1.80p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   478
            +0X1.80p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   479
            +0X1.80p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   480
            +0X1.80p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   481
            +0X1.80p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   482
            +0X1.80p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
            +0X1.80p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
            +0X1.80p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   485
            +0X1.8P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
            +0X1.8P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
            +0X1.8P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
            +0X1.8P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   489
            +0X1.8P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   490
            +0X1.8P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   491
            +0X1.8P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
            +0X1.8P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   493
            +0X1.8P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
            +0X1.8P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
            +0X1.8p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
            +0X1.8p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   497
            +0X1.8p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   498
            +0X1.8p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   499
            +0X1.8p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   500
            +0X1.8p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   501
            +0X1.8p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   502
            +0X1.8p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   503
            +0X1.8p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   504
            +0X1.8p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   505
            +0X18.0P-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
   506
            +0X18.0P-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   507
            +0X18.0P-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   508
            +0X18.0P-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   509
            +0X18.0P-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   510
            +0X18.0p-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
   511
            +0X18.0p-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   512
            +0X18.0p-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   513
            +0X18.0p-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   514
            +0X18.0p-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   515
            +0X18P-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
   516
            +0X18P-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   517
            +0X18P-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   518
            +0X18P-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   519
            +0X18P-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   520
            +0X18p-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
   521
            +0X18p-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   522
            +0X18p-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   523
            +0X18p-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   524
            +0X18p-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   525
            +0X3.000000P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   526
            +0X3.000000P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   527
            +0X3.000000P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   528
            +0X3.000000P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   529
            +0X3.000000P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   530
            +0X3.000000P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   531
            +0X3.000000P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   532
            +0X3.000000P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   533
            +0X3.000000P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   534
            +0X3.000000P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   535
            +0X3.000000P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   536
            +0X3.000000P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   537
            +0X3.000000P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   538
            +0X3.000000P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   539
            +0X3.000000P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   540
            +0X3.000000p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   541
            +0X3.000000p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   542
            +0X3.000000p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   543
            +0X3.000000p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   544
            +0X3.000000p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   545
            +0X3.000000p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   546
            +0X3.000000p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   547
            +0X3.000000p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   548
            +0X3.000000p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   549
            +0X3.000000p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   550
            +0X3.000000p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   551
            +0X3.000000p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   552
            +0X3.000000p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   553
            +0X3.000000p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   554
            +0X3.000000p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   555
            +0X3.0P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   556
            +0X3.0P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   557
            +0X3.0P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   558
            +0X3.0P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   559
            +0X3.0P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   560
            +0X3.0P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   561
            +0X3.0P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   562
            +0X3.0P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   563
            +0X3.0P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   564
            +0X3.0P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   565
            +0X3.0P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   566
            +0X3.0P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   567
            +0X3.0P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   568
            +0X3.0P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   569
            +0X3.0P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   570
            +0X3.0p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   571
            +0X3.0p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   572
            +0X3.0p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   573
            +0X3.0p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   574
            +0X3.0p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   575
            +0X3.0p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   576
            +0X3.0p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   577
            +0X3.0p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   578
            +0X3.0p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   579
            +0X3.0p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   580
            +0X3.0p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   581
            +0X3.0p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   582
            +0X3.0p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   583
            +0X3.0p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   584
            +0X3.0p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   585
            +0X3.P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   586
            +0X3.P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   587
            +0X3.P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   588
            +0X3.P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   589
            +0X3.P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   590
            +0X3.P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   591
            +0X3.P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   592
            +0X3.P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   593
            +0X3.P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   594
            +0X3.P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   595
            +0X3.P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   596
            +0X3.P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   597
            +0X3.P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   598
            +0X3.P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   599
            +0X3.P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   600
            +0X3.p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   601
            +0X3.p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   602
            +0X3.p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   603
            +0X3.p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   604
            +0X3.p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   605
            +0X3.p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   606
            +0X3.p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   607
            +0X3.p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   608
            +0X3.p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   609
            +0X3.p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   610
            +0X3.p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   611
            +0X3.p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   612
            +0X3.p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   613
            +0X3.p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   614
            +0X3.p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   615
            +0X3000000.0000P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
   616
            +0X3000000.0000P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   617
            +0X3000000.0000P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   618
            +0X3000000.0000P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   619
            +0X3000000.0000P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   620
            +0X3000000.0000p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
   621
            +0X3000000.0000p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   622
            +0X3000000.0000p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   623
            +0X3000000.0000p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   624
            +0X3000000.0000p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   625
            +0X3000000.P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
   626
            +0X3000000.P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   627
            +0X3000000.P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   628
            +0X3000000.P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   629
            +0X3000000.P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   630
            +0X3000000.p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
   631
            +0X3000000.p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   632
            +0X3000000.p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   633
            +0X3000000.p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   634
            +0X3000000.p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   635
            +0X3000000P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
   636
            +0X3000000P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   637
            +0X3000000P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   638
            +0X3000000P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   639
            +0X3000000P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   640
            +0X3000000p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
   641
            +0X3000000p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   642
            +0X3000000p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   643
            +0X3000000p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   644
            +0X3000000p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   645
            +0X3P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   646
            +0X3P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   647
            +0X3P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   648
            +0X3P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   649
            +0X3P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   650
            +0X3P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   651
            +0X3P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   652
            +0X3P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   653
            +0X3P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   654
            +0X3P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   655
            +0X3P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   656
            +0X3P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   657
            +0X3P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   658
            +0X3P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   659
            +0X3P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   660
            +0X3p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   661
            +0X3p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   662
            +0X3p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   663
            +0X3p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   664
            +0X3p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   665
            +0X3p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   666
            +0X3p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   667
            +0X3p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   668
            +0X3p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   669
            +0X3p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   670
            +0X3p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
   671
            +0X3p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   672
            +0X3p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   673
            +0X3p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   674
            +0X3p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   675
            +0XC.0P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   676
            +0XC.0P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   677
            +0XC.0P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   678
            +0XC.0P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   679
            +0XC.0P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   680
            +0XC.0p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   681
            +0XC.0p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   682
            +0XC.0p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   683
            +0XC.0p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   684
            +0XC.0p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   685
            +0XC.P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   686
            +0XC.P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   687
            +0XC.P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   688
            +0XC.P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   689
            +0XC.P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   690
            +0XC.p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   691
            +0XC.p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   692
            +0XC.p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   693
            +0XC.p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   694
            +0XC.p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   695
            +0XCP-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   696
            +0XCP-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   697
            +0XCP-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   698
            +0XCP-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   699
            +0XCP-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   700
            +0XCp-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   701
            +0XCp-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   702
            +0XCp-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   703
            +0XCp-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   704
            +0XCp-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   705
            +0Xc.0P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   706
            +0Xc.0P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   707
            +0Xc.0P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   708
            +0Xc.0P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   709
            +0Xc.0P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   710
            +0Xc.0p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   711
            +0Xc.0p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   712
            +0Xc.0p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   713
            +0Xc.0p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   714
            +0Xc.0p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   715
            +0Xc.P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   716
            +0Xc.P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   717
            +0Xc.P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   718
            +0Xc.P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   719
            +0Xc.P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   720
            +0Xc.p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   721
            +0Xc.p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   722
            +0Xc.p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   723
            +0Xc.p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   724
            +0Xc.p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   725
            +0XcP-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   726
            +0XcP-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   727
            +0XcP-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   728
            +0XcP-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   729
            +0XcP-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   730
            +0Xcp-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   731
            +0Xcp-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   732
            +0Xcp-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   733
            +0Xcp-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   734
            +0Xcp-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   735
            +0x.0030000000000P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   736
            +0x.0030000000000P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   737
            +0x.0030000000000P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   738
            +0x.0030000000000P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   739
            +0x.0030000000000P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   740
            +0x.0030000000000P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   741
            +0x.0030000000000P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   742
            +0x.0030000000000P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   743
            +0x.0030000000000P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   744
            +0x.0030000000000P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   745
            +0x.0030000000000p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   746
            +0x.0030000000000p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   747
            +0x.0030000000000p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   748
            +0x.0030000000000p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   749
            +0x.0030000000000p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   750
            +0x.0030000000000p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   751
            +0x.0030000000000p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   752
            +0x.0030000000000p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   753
            +0x.0030000000000p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   754
            +0x.0030000000000p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   755
            +0x.0030P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   756
            +0x.0030P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   757
            +0x.0030P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   758
            +0x.0030P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   759
            +0x.0030P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   760
            +0x.0030P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   761
            +0x.0030P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   762
            +0x.0030P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   763
            +0x.0030P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   764
            +0x.0030P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   765
            +0x.0030p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   766
            +0x.0030p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   767
            +0x.0030p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   768
            +0x.0030p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   769
            +0x.0030p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   770
            +0x.0030p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   771
            +0x.0030p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   772
            +0x.0030p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   773
            +0x.0030p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   774
            +0x.0030p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   775
            +0x.003P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   776
            +0x.003P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   777
            +0x.003P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   778
            +0x.003P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   779
            +0x.003P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   780
            +0x.003P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   781
            +0x.003P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   782
            +0x.003P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   783
            +0x.003P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   784
            +0x.003P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   785
            +0x.003p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   786
            +0x.003p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   787
            +0x.003p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   788
            +0x.003p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   789
            +0x.003p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   790
            +0x.003p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   791
            +0x.003p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   792
            +0x.003p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   793
            +0x.003p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   794
            +0x.003p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   795
            +0x.3P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   796
            +0x.3P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   797
            +0x.3P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   798
            +0x.3P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   799
            +0x.3P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   800
            +0x.3P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   801
            +0x.3P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   802
            +0x.3P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   803
            +0x.3P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   804
            +0x.3P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   805
            +0x.3p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   806
            +0x.3p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   807
            +0x.3p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   808
            +0x.3p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   809
            +0x.3p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   810
            +0x.3p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   811
            +0x.3p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   812
            +0x.3p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   813
            +0x.3p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   814
            +0x.3p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   815
            +0x.C0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   816
            +0x.C0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   817
            +0x.C0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   818
            +0x.C0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   819
            +0x.C0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   820
            +0x.C0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   821
            +0x.C0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   822
            +0x.C0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   823
            +0x.C0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   824
            +0x.C0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   825
            +0x.C0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   826
            +0x.C0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   827
            +0x.C0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   828
            +0x.C0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   829
            +0x.C0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   830
            +0x.C0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   831
            +0x.C0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   832
            +0x.C0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   833
            +0x.C0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   834
            +0x.C0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   835
            +0x.CP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   836
            +0x.CP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   837
            +0x.CP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   838
            +0x.CP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   839
            +0x.CP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   840
            +0x.CP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   841
            +0x.CP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   842
            +0x.CP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   843
            +0x.CP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   844
            +0x.CP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   845
            +0x.Cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   846
            +0x.Cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   847
            +0x.Cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   848
            +0x.Cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   849
            +0x.Cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   850
            +0x.Cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   851
            +0x.Cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   852
            +0x.Cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   853
            +0x.Cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   854
            +0x.Cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   855
            +0x.c0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   856
            +0x.c0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   857
            +0x.c0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   858
            +0x.c0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   859
            +0x.c0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   860
            +0x.c0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   861
            +0x.c0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   862
            +0x.c0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   863
            +0x.c0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   864
            +0x.c0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   865
            +0x.c0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   866
            +0x.c0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   867
            +0x.c0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   868
            +0x.c0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   869
            +0x.c0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   870
            +0x.c0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   871
            +0x.c0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   872
            +0x.c0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   873
            +0x.c0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   874
            +0x.c0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   875
            +0x.cP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   876
            +0x.cP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   877
            +0x.cP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   878
            +0x.cP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   879
            +0x.cP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   880
            +0x.cP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   881
            +0x.cP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   882
            +0x.cP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   883
            +0x.cP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   884
            +0x.cP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   885
            +0x.cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   886
            +0x.cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   887
            +0x.cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   888
            +0x.cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   889
            +0x.cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   890
            +0x.cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   891
            +0x.cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   892
            +0x.cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   893
            +0x.cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   894
            +0x.cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   895
            +0x0.30P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   896
            +0x0.30P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   897
            +0x0.30P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   898
            +0x0.30P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   899
            +0x0.30P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   900
            +0x0.30P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   901
            +0x0.30P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   902
            +0x0.30P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   903
            +0x0.30P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   904
            +0x0.30P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   905
            +0x0.30p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   906
            +0x0.30p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   907
            +0x0.30p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   908
            +0x0.30p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   909
            +0x0.30p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   910
            +0x0.30p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   911
            +0x0.30p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   912
            +0x0.30p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   913
            +0x0.30p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   914
            +0x0.30p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   915
            +0x0.3P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   916
            +0x0.3P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   917
            +0x0.3P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   918
            +0x0.3P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   919
            +0x0.3P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   920
            +0x0.3P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   921
            +0x0.3P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   922
            +0x0.3P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   923
            +0x0.3P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   924
            +0x0.3P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   925
            +0x0.3p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   926
            +0x0.3p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   927
            +0x0.3p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   928
            +0x0.3p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   929
            +0x0.3p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   930
            +0x0.3p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   931
            +0x0.3p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   932
            +0x0.3p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   933
            +0x0.3p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   934
            +0x0.3p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   935
            +0x0.C0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   936
            +0x0.C0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   937
            +0x0.C0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   938
            +0x0.C0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   939
            +0x0.C0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   940
            +0x0.C0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   941
            +0x0.C0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   942
            +0x0.C0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   943
            +0x0.C0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   944
            +0x0.C0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   945
            +0x0.C0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   946
            +0x0.C0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   947
            +0x0.C0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   948
            +0x0.C0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   949
            +0x0.C0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   950
            +0x0.C0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   951
            +0x0.C0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   952
            +0x0.C0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   953
            +0x0.C0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   954
            +0x0.C0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   955
            +0x0.CP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   956
            +0x0.CP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   957
            +0x0.CP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   958
            +0x0.CP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   959
            +0x0.CP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   960
            +0x0.CP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   961
            +0x0.CP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   962
            +0x0.CP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   963
            +0x0.CP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   964
            +0x0.CP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   965
            +0x0.Cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   966
            +0x0.Cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   967
            +0x0.Cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   968
            +0x0.Cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   969
            +0x0.Cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   970
            +0x0.Cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   971
            +0x0.Cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   972
            +0x0.Cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   973
            +0x0.Cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   974
            +0x0.Cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   975
            +0x0.c0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   976
            +0x0.c0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   977
            +0x0.c0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   978
            +0x0.c0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   979
            +0x0.c0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   980
            +0x0.c0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   981
            +0x0.c0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   982
            +0x0.c0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   983
            +0x0.c0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   984
            +0x0.c0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   985
            +0x0.c0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   986
            +0x0.c0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   987
            +0x0.c0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   988
            +0x0.c0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   989
            +0x0.c0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   990
            +0x0.c0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   991
            +0x0.c0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   992
            +0x0.c0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   993
            +0x0.c0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   994
            +0x0.c0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
   995
            +0x0.cP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   996
            +0x0.cP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
   997
            +0x0.cP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
   998
            +0x0.cP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
   999
            +0x0.cP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1000
            +0x0.cP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1001
            +0x0.cP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1002
            +0x0.cP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1003
            +0x0.cP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1004
            +0x0.cP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1005
            +0x0.cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1006
            +0x0.cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1007
            +0x0.cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1008
            +0x0.cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1009
            +0x0.cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1010
            +0x0.cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1011
            +0x0.cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1012
            +0x0.cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1013
            +0x0.cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1014
            +0x0.cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1015
            +0x000000000.0030000000000P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1016
            +0x000000000.0030000000000P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1017
            +0x000000000.0030000000000P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1018
            +0x000000000.0030000000000P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1019
            +0x000000000.0030000000000P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1020
            +0x000000000.0030000000000P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1021
            +0x000000000.0030000000000P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1022
            +0x000000000.0030000000000P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1023
            +0x000000000.0030000000000P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1024
            +0x000000000.0030000000000P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1025
            +0x000000000.0030000000000p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1026
            +0x000000000.0030000000000p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1027
            +0x000000000.0030000000000p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1028
            +0x000000000.0030000000000p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1029
            +0x000000000.0030000000000p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1030
            +0x000000000.0030000000000p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1031
            +0x000000000.0030000000000p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1032
            +0x000000000.0030000000000p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1033
            +0x000000000.0030000000000p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1034
            +0x000000000.0030000000000p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1035
            +0x00003P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1036
            +0x00003P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1037
            +0x00003P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1038
            +0x00003P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1039
            +0x00003P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1040
            +0x00003P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1041
            +0x00003P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1042
            +0x00003P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1043
            +0x00003P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1044
            +0x00003P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1045
            +0x00003P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1046
            +0x00003P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1047
            +0x00003P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1048
            +0x00003P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1049
            +0x00003P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1050
            +0x00003p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1051
            +0x00003p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1052
            +0x00003p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1053
            +0x00003p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1054
            +0x00003p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1055
            +0x00003p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1056
            +0x00003p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1057
            +0x00003p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1058
            +0x00003p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1059
            +0x00003p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1060
            +0x00003p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1061
            +0x00003p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1062
            +0x00003p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1063
            +0x00003p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1064
            +0x00003p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1065
            +0x0003.P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1066
            +0x0003.P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1067
            +0x0003.P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1068
            +0x0003.P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1069
            +0x0003.P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1070
            +0x0003.P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1071
            +0x0003.P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1072
            +0x0003.P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1073
            +0x0003.P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1074
            +0x0003.P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1075
            +0x0003.P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1076
            +0x0003.P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1077
            +0x0003.P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1078
            +0x0003.P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1079
            +0x0003.P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1080
            +0x0003.p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1081
            +0x0003.p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1082
            +0x0003.p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1083
            +0x0003.p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1084
            +0x0003.p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1085
            +0x0003.p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1086
            +0x0003.p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1087
            +0x0003.p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1088
            +0x0003.p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1089
            +0x0003.p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1090
            +0x0003.p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1091
            +0x0003.p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1092
            +0x0003.p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1093
            +0x0003.p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1094
            +0x0003.p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1095
            +0x0003P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1096
            +0x0003P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1097
            +0x0003P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1098
            +0x0003P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1099
            +0x0003P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1100
            +0x0003P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1101
            +0x0003P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1102
            +0x0003P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1103
            +0x0003P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1104
            +0x0003P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1105
            +0x0003P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1106
            +0x0003P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1107
            +0x0003P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1108
            +0x0003P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1109
            +0x0003P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1110
            +0x0003p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1111
            +0x0003p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1112
            +0x0003p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1113
            +0x0003p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1114
            +0x0003p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1115
            +0x0003p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1116
            +0x0003p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1117
            +0x0003p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1118
            +0x0003p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1119
            +0x0003p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1120
            +0x0003p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1121
            +0x0003p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1122
            +0x0003p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1123
            +0x0003p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1124
            +0x0003p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1125
            +0x01.80P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1126
            +0x01.80P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1127
            +0x01.80P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1128
            +0x01.80P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1129
            +0x01.80P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1130
            +0x01.80P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1131
            +0x01.80P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1132
            +0x01.80P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1133
            +0x01.80P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1134
            +0x01.80P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1135
            +0x01.80p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1136
            +0x01.80p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1137
            +0x01.80p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1138
            +0x01.80p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1139
            +0x01.80p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1140
            +0x01.80p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1141
            +0x01.80p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1142
            +0x01.80p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1143
            +0x01.80p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1144
            +0x01.80p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1145
            +0x01.8P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1146
            +0x01.8P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1147
            +0x01.8P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1148
            +0x01.8P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1149
            +0x01.8P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1150
            +0x01.8P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1151
            +0x01.8P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1152
            +0x01.8P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1153
            +0x01.8P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1154
            +0x01.8P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1155
            +0x01.8p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1156
            +0x01.8p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1157
            +0x01.8p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1158
            +0x01.8p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1159
            +0x01.8p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1160
            +0x01.8p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1161
            +0x01.8p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1162
            +0x01.8p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1163
            +0x01.8p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1164
            +0x01.8p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1165
            +0x1.80P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1166
            +0x1.80P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1167
            +0x1.80P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1168
            +0x1.80P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1169
            +0x1.80P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1170
            +0x1.80P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1171
            +0x1.80P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1172
            +0x1.80P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1173
            +0x1.80P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1174
            +0x1.80P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1175
            +0x1.80p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1176
            +0x1.80p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1177
            +0x1.80p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1178
            +0x1.80p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1179
            +0x1.80p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1180
            +0x1.80p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1181
            +0x1.80p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1182
            +0x1.80p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1183
            +0x1.80p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1184
            +0x1.80p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1185
            +0x1.8P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1186
            +0x1.8P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1187
            +0x1.8P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1188
            +0x1.8P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1189
            +0x1.8P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1190
            +0x1.8P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1191
            +0x1.8P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1192
            +0x1.8P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1193
            +0x1.8P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1194
            +0x1.8P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1195
            +0x1.8p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1196
            +0x1.8p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1197
            +0x1.8p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1198
            +0x1.8p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1199
            +0x1.8p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1200
            +0x1.8p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1201
            +0x1.8p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1202
            +0x1.8p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1203
            +0x1.8p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1204
            +0x1.8p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1205
            +0x18.0P-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1206
            +0x18.0P-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1207
            +0x18.0P-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1208
            +0x18.0P-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1209
            +0x18.0P-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1210
            +0x18.0p-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1211
            +0x18.0p-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1212
            +0x18.0p-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1213
            +0x18.0p-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1214
            +0x18.0p-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1215
            +0x18P-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1216
            +0x18P-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1217
            +0x18P-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1218
            +0x18P-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1219
            +0x18P-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1220
            +0x18p-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1221
            +0x18p-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1222
            +0x18p-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1223
            +0x18p-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1224
            +0x18p-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1225
            +0x3.000000P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1226
            +0x3.000000P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1227
            +0x3.000000P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1228
            +0x3.000000P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1229
            +0x3.000000P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1230
            +0x3.000000P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1231
            +0x3.000000P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1232
            +0x3.000000P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1233
            +0x3.000000P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1234
            +0x3.000000P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1235
            +0x3.000000P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1236
            +0x3.000000P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1237
            +0x3.000000P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1238
            +0x3.000000P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1239
            +0x3.000000P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1240
            +0x3.000000p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1241
            +0x3.000000p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1242
            +0x3.000000p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1243
            +0x3.000000p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1244
            +0x3.000000p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1245
            +0x3.000000p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1246
            +0x3.000000p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1247
            +0x3.000000p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1248
            +0x3.000000p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1249
            +0x3.000000p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1250
            +0x3.000000p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1251
            +0x3.000000p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1252
            +0x3.000000p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1253
            +0x3.000000p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1254
            +0x3.000000p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1255
            +0x3.0P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1256
            +0x3.0P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1257
            +0x3.0P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1258
            +0x3.0P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1259
            +0x3.0P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1260
            +0x3.0P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1261
            +0x3.0P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1262
            +0x3.0P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1263
            +0x3.0P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1264
            +0x3.0P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1265
            +0x3.0P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1266
            +0x3.0P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1267
            +0x3.0P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1268
            +0x3.0P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1269
            +0x3.0P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1270
            +0x3.0p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1271
            +0x3.0p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1272
            +0x3.0p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1273
            +0x3.0p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1274
            +0x3.0p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1275
            +0x3.0p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1276
            +0x3.0p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1277
            +0x3.0p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1278
            +0x3.0p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1279
            +0x3.0p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1280
            +0x3.0p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1281
            +0x3.0p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1282
            +0x3.0p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1283
            +0x3.0p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1284
            +0x3.0p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1285
            +0x3.P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1286
            +0x3.P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1287
            +0x3.P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1288
            +0x3.P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1289
            +0x3.P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1290
            +0x3.P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1291
            +0x3.P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1292
            +0x3.P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1293
            +0x3.P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1294
            +0x3.P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1295
            +0x3.P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1296
            +0x3.P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1297
            +0x3.P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1298
            +0x3.P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1299
            +0x3.P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1300
            +0x3.p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1301
            +0x3.p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1302
            +0x3.p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1303
            +0x3.p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1304
            +0x3.p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1305
            +0x3.p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1306
            +0x3.p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1307
            +0x3.p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1308
            +0x3.p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1309
            +0x3.p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1310
            +0x3.p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1311
            +0x3.p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1312
            +0x3.p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1313
            +0x3.p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1314
            +0x3.p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1315
            +0x3000000.0000P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1316
            +0x3000000.0000P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1317
            +0x3000000.0000P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1318
            +0x3000000.0000P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1319
            +0x3000000.0000P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1320
            +0x3000000.0000p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1321
            +0x3000000.0000p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1322
            +0x3000000.0000p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1323
            +0x3000000.0000p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1324
            +0x3000000.0000p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1325
            +0x3000000.P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1326
            +0x3000000.P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1327
            +0x3000000.P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1328
            +0x3000000.P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1329
            +0x3000000.P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1330
            +0x3000000.p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1331
            +0x3000000.p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1332
            +0x3000000.p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1333
            +0x3000000.p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1334
            +0x3000000.p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1335
            +0x3000000P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1336
            +0x3000000P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1337
            +0x3000000P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1338
            +0x3000000P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1339
            +0x3000000P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1340
            +0x3000000p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1341
            +0x3000000p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1342
            +0x3000000p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1343
            +0x3000000p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1344
            +0x3000000p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1345
            +0x3P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1346
            +0x3P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1347
            +0x3P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1348
            +0x3P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1349
            +0x3P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1350
            +0x3P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1351
            +0x3P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1352
            +0x3P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1353
            +0x3P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1354
            +0x3P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1355
            +0x3P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1356
            +0x3P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1357
            +0x3P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1358
            +0x3P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1359
            +0x3P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1360
            +0x3p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1361
            +0x3p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1362
            +0x3p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1363
            +0x3p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1364
            +0x3p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1365
            +0x3p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1366
            +0x3p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1367
            +0x3p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1368
            +0x3p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1369
            +0x3p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1370
            +0x3p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1371
            +0x3p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1372
            +0x3p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1373
            +0x3p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1374
            +0x3p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1375
            +0xC.0P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1376
            +0xC.0P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1377
            +0xC.0P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1378
            +0xC.0P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1379
            +0xC.0P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1380
            +0xC.0p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1381
            +0xC.0p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1382
            +0xC.0p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1383
            +0xC.0p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1384
            +0xC.0p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1385
            +0xC.P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1386
            +0xC.P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1387
            +0xC.P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1388
            +0xC.P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1389
            +0xC.P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1390
            +0xC.p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1391
            +0xC.p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1392
            +0xC.p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1393
            +0xC.p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1394
            +0xC.p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1395
            +0xCP-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1396
            +0xCP-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1397
            +0xCP-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1398
            +0xCP-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1399
            +0xCP-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1400
            +0xCp-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1401
            +0xCp-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1402
            +0xCp-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1403
            +0xCp-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1404
            +0xCp-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1405
            +0xc.0P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1406
            +0xc.0P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1407
            +0xc.0P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1408
            +0xc.0P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1409
            +0xc.0P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1410
            +0xc.0p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1411
            +0xc.0p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1412
            +0xc.0p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1413
            +0xc.0p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1414
            +0xc.0p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1415
            +0xc.P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1416
            +0xc.P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1417
            +0xc.P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1418
            +0xc.P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1419
            +0xc.P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1420
            +0xc.p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1421
            +0xc.p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1422
            +0xc.p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1423
            +0xc.p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1424
            +0xc.p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1425
            +0xcP-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1426
            +0xcP-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1427
            +0xcP-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1428
            +0xcP-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1429
            +0xcP-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1430
            +0xcp-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1431
            +0xcp-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1432
            +0xcp-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1433
            +0xcp-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1434
            +0xcp-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1435
            -0X.0030000000000P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1436
            -0X.0030000000000P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1437
            -0X.0030000000000P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1438
            -0X.0030000000000P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1439
            -0X.0030000000000P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1440
            -0X.0030000000000P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1441
            -0X.0030000000000P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1442
            -0X.0030000000000P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1443
            -0X.0030000000000P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1444
            -0X.0030000000000P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1445
            -0X.0030000000000p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1446
            -0X.0030000000000p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1447
            -0X.0030000000000p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1448
            -0X.0030000000000p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1449
            -0X.0030000000000p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1450
            -0X.0030000000000p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1451
            -0X.0030000000000p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1452
            -0X.0030000000000p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1453
            -0X.0030000000000p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1454
            -0X.0030000000000p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1455
            -0X.0030P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1456
            -0X.0030P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1457
            -0X.0030P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1458
            -0X.0030P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1459
            -0X.0030P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1460
            -0X.0030P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1461
            -0X.0030P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1462
            -0X.0030P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1463
            -0X.0030P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1464
            -0X.0030P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1465
            -0X.0030p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1466
            -0X.0030p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1467
            -0X.0030p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1468
            -0X.0030p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1469
            -0X.0030p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1470
            -0X.0030p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1471
            -0X.0030p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1472
            -0X.0030p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1473
            -0X.0030p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1474
            -0X.0030p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1475
            -0X.003P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1476
            -0X.003P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1477
            -0X.003P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1478
            -0X.003P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1479
            -0X.003P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1480
            -0X.003P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1481
            -0X.003P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1482
            -0X.003P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1483
            -0X.003P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1484
            -0X.003P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1485
            -0X.003p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1486
            -0X.003p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1487
            -0X.003p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1488
            -0X.003p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1489
            -0X.003p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1490
            -0X.003p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1491
            -0X.003p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1492
            -0X.003p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1493
            -0X.003p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1494
            -0X.003p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1495
            -0X.3P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1496
            -0X.3P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1497
            -0X.3P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1498
            -0X.3P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1499
            -0X.3P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1500
            -0X.3P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1501
            -0X.3P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1502
            -0X.3P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1503
            -0X.3P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1504
            -0X.3P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1505
            -0X.3p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1506
            -0X.3p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1507
            -0X.3p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1508
            -0X.3p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1509
            -0X.3p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1510
            -0X.3p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1511
            -0X.3p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1512
            -0X.3p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1513
            -0X.3p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1514
            -0X.3p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1515
            -0X.C0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1516
            -0X.C0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1517
            -0X.C0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1518
            -0X.C0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1519
            -0X.C0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1520
            -0X.C0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1521
            -0X.C0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1522
            -0X.C0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1523
            -0X.C0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1524
            -0X.C0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1525
            -0X.C0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1526
            -0X.C0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1527
            -0X.C0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1528
            -0X.C0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1529
            -0X.C0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1530
            -0X.C0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1531
            -0X.C0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1532
            -0X.C0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1533
            -0X.C0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1534
            -0X.C0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1535
            -0X.CP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1536
            -0X.CP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1537
            -0X.CP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1538
            -0X.CP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1539
            -0X.CP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1540
            -0X.CP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1541
            -0X.CP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1542
            -0X.CP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1543
            -0X.CP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1544
            -0X.CP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1545
            -0X.Cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1546
            -0X.Cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1547
            -0X.Cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1548
            -0X.Cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1549
            -0X.Cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1550
            -0X.Cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1551
            -0X.Cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1552
            -0X.Cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1553
            -0X.Cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1554
            -0X.Cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1555
            -0X.c0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1556
            -0X.c0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1557
            -0X.c0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1558
            -0X.c0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1559
            -0X.c0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1560
            -0X.c0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1561
            -0X.c0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1562
            -0X.c0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1563
            -0X.c0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1564
            -0X.c0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1565
            -0X.c0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1566
            -0X.c0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1567
            -0X.c0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1568
            -0X.c0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1569
            -0X.c0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1570
            -0X.c0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1571
            -0X.c0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1572
            -0X.c0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1573
            -0X.c0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1574
            -0X.c0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1575
            -0X.cP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1576
            -0X.cP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1577
            -0X.cP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1578
            -0X.cP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1579
            -0X.cP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1580
            -0X.cP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1581
            -0X.cP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1582
            -0X.cP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1583
            -0X.cP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1584
            -0X.cP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1585
            -0X.cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1586
            -0X.cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1587
            -0X.cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1588
            -0X.cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1589
            -0X.cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1590
            -0X.cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1591
            -0X.cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1592
            -0X.cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1593
            -0X.cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1594
            -0X.cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1595
            -0X0.30P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1596
            -0X0.30P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1597
            -0X0.30P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1598
            -0X0.30P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1599
            -0X0.30P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1600
            -0X0.30P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1601
            -0X0.30P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1602
            -0X0.30P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1603
            -0X0.30P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1604
            -0X0.30P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1605
            -0X0.30p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1606
            -0X0.30p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1607
            -0X0.30p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1608
            -0X0.30p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1609
            -0X0.30p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1610
            -0X0.30p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1611
            -0X0.30p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1612
            -0X0.30p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1613
            -0X0.30p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1614
            -0X0.30p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1615
            -0X0.3P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1616
            -0X0.3P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1617
            -0X0.3P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1618
            -0X0.3P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1619
            -0X0.3P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1620
            -0X0.3P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1621
            -0X0.3P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1622
            -0X0.3P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1623
            -0X0.3P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1624
            -0X0.3P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1625
            -0X0.3p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1626
            -0X0.3p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1627
            -0X0.3p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1628
            -0X0.3p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1629
            -0X0.3p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1630
            -0X0.3p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1631
            -0X0.3p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1632
            -0X0.3p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1633
            -0X0.3p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1634
            -0X0.3p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1635
            -0X0.C0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1636
            -0X0.C0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1637
            -0X0.C0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1638
            -0X0.C0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1639
            -0X0.C0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1640
            -0X0.C0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1641
            -0X0.C0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1642
            -0X0.C0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1643
            -0X0.C0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1644
            -0X0.C0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1645
            -0X0.C0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1646
            -0X0.C0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1647
            -0X0.C0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1648
            -0X0.C0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1649
            -0X0.C0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1650
            -0X0.C0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1651
            -0X0.C0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1652
            -0X0.C0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1653
            -0X0.C0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1654
            -0X0.C0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1655
            -0X0.CP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1656
            -0X0.CP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1657
            -0X0.CP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1658
            -0X0.CP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1659
            -0X0.CP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1660
            -0X0.CP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1661
            -0X0.CP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1662
            -0X0.CP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1663
            -0X0.CP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1664
            -0X0.CP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1665
            -0X0.Cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1666
            -0X0.Cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1667
            -0X0.Cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1668
            -0X0.Cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1669
            -0X0.Cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1670
            -0X0.Cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1671
            -0X0.Cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1672
            -0X0.Cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1673
            -0X0.Cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1674
            -0X0.Cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1675
            -0X0.c0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1676
            -0X0.c0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1677
            -0X0.c0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1678
            -0X0.c0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1679
            -0X0.c0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1680
            -0X0.c0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1681
            -0X0.c0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1682
            -0X0.c0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1683
            -0X0.c0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1684
            -0X0.c0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1685
            -0X0.c0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1686
            -0X0.c0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1687
            -0X0.c0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1688
            -0X0.c0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1689
            -0X0.c0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1690
            -0X0.c0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1691
            -0X0.c0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1692
            -0X0.c0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1693
            -0X0.c0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1694
            -0X0.c0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1695
            -0X0.cP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1696
            -0X0.cP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1697
            -0X0.cP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1698
            -0X0.cP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1699
            -0X0.cP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1700
            -0X0.cP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1701
            -0X0.cP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1702
            -0X0.cP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1703
            -0X0.cP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1704
            -0X0.cP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1705
            -0X0.cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1706
            -0X0.cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1707
            -0X0.cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1708
            -0X0.cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1709
            -0X0.cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1710
            -0X0.cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1711
            -0X0.cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1712
            -0X0.cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1713
            -0X0.cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1714
            -0X0.cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1715
            -0X000000000.0030000000000P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1716
            -0X000000000.0030000000000P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1717
            -0X000000000.0030000000000P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1718
            -0X000000000.0030000000000P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1719
            -0X000000000.0030000000000P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1720
            -0X000000000.0030000000000P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1721
            -0X000000000.0030000000000P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1722
            -0X000000000.0030000000000P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1723
            -0X000000000.0030000000000P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1724
            -0X000000000.0030000000000P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1725
            -0X000000000.0030000000000p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1726
            -0X000000000.0030000000000p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1727
            -0X000000000.0030000000000p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1728
            -0X000000000.0030000000000p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1729
            -0X000000000.0030000000000p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1730
            -0X000000000.0030000000000p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1731
            -0X000000000.0030000000000p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1732
            -0X000000000.0030000000000p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1733
            -0X000000000.0030000000000p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1734
            -0X000000000.0030000000000p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1735
            -0X00003P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1736
            -0X00003P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1737
            -0X00003P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1738
            -0X00003P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1739
            -0X00003P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1740
            -0X00003P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1741
            -0X00003P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1742
            -0X00003P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1743
            -0X00003P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1744
            -0X00003P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1745
            -0X00003P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1746
            -0X00003P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1747
            -0X00003P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1748
            -0X00003P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1749
            -0X00003P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1750
            -0X00003p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1751
            -0X00003p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1752
            -0X00003p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1753
            -0X00003p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1754
            -0X00003p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1755
            -0X00003p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1756
            -0X00003p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1757
            -0X00003p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1758
            -0X00003p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1759
            -0X00003p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1760
            -0X00003p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1761
            -0X00003p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1762
            -0X00003p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1763
            -0X00003p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1764
            -0X00003p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1765
            -0X0003.P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1766
            -0X0003.P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1767
            -0X0003.P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1768
            -0X0003.P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1769
            -0X0003.P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1770
            -0X0003.P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1771
            -0X0003.P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1772
            -0X0003.P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1773
            -0X0003.P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1774
            -0X0003.P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1775
            -0X0003.P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1776
            -0X0003.P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1777
            -0X0003.P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1778
            -0X0003.P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1779
            -0X0003.P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1780
            -0X0003.p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1781
            -0X0003.p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1782
            -0X0003.p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1783
            -0X0003.p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1784
            -0X0003.p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1785
            -0X0003.p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1786
            -0X0003.p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1787
            -0X0003.p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1788
            -0X0003.p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1789
            -0X0003.p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1790
            -0X0003.p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1791
            -0X0003.p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1792
            -0X0003.p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1793
            -0X0003.p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1794
            -0X0003.p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1795
            -0X0003P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1796
            -0X0003P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1797
            -0X0003P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1798
            -0X0003P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1799
            -0X0003P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1800
            -0X0003P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1801
            -0X0003P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1802
            -0X0003P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1803
            -0X0003P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1804
            -0X0003P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1805
            -0X0003P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1806
            -0X0003P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1807
            -0X0003P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1808
            -0X0003P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1809
            -0X0003P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1810
            -0X0003p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1811
            -0X0003p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1812
            -0X0003p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1813
            -0X0003p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1814
            -0X0003p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1815
            -0X0003p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1816
            -0X0003p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1817
            -0X0003p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1818
            -0X0003p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1819
            -0X0003p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1820
            -0X0003p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1821
            -0X0003p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1822
            -0X0003p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1823
            -0X0003p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1824
            -0X0003p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1825
            -0X01.80P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1826
            -0X01.80P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1827
            -0X01.80P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1828
            -0X01.80P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1829
            -0X01.80P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1830
            -0X01.80P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1831
            -0X01.80P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1832
            -0X01.80P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1833
            -0X01.80P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1834
            -0X01.80P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1835
            -0X01.80p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1836
            -0X01.80p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1837
            -0X01.80p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1838
            -0X01.80p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1839
            -0X01.80p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1840
            -0X01.80p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1841
            -0X01.80p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1842
            -0X01.80p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1843
            -0X01.80p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1844
            -0X01.80p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1845
            -0X01.8P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1846
            -0X01.8P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1847
            -0X01.8P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1848
            -0X01.8P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1849
            -0X01.8P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1850
            -0X01.8P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1851
            -0X01.8P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1852
            -0X01.8P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1853
            -0X01.8P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1854
            -0X01.8P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1855
            -0X01.8p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1856
            -0X01.8p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1857
            -0X01.8p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1858
            -0X01.8p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1859
            -0X01.8p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1860
            -0X01.8p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1861
            -0X01.8p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1862
            -0X01.8p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1863
            -0X01.8p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1864
            -0X01.8p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1865
            -0X1.80P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1866
            -0X1.80P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1867
            -0X1.80P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1868
            -0X1.80P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1869
            -0X1.80P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1870
            -0X1.80P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1871
            -0X1.80P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1872
            -0X1.80P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1873
            -0X1.80P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1874
            -0X1.80P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1875
            -0X1.80p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1876
            -0X1.80p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1877
            -0X1.80p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1878
            -0X1.80p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1879
            -0X1.80p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1880
            -0X1.80p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1881
            -0X1.80p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1882
            -0X1.80p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1883
            -0X1.80p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1884
            -0X1.80p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1885
            -0X1.8P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1886
            -0X1.8P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1887
            -0X1.8P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1888
            -0X1.8P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1889
            -0X1.8P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1890
            -0X1.8P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1891
            -0X1.8P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1892
            -0X1.8P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1893
            -0X1.8P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1894
            -0X1.8P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1895
            -0X1.8p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1896
            -0X1.8p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1897
            -0X1.8p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1898
            -0X1.8p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1899
            -0X1.8p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1900
            -0X1.8p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1901
            -0X1.8p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1902
            -0X1.8p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1903
            -0X1.8p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1904
            -0X1.8p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1905
            -0X18.0P-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1906
            -0X18.0P-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1907
            -0X18.0P-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1908
            -0X18.0P-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1909
            -0X18.0P-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1910
            -0X18.0p-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1911
            -0X18.0p-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1912
            -0X18.0p-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1913
            -0X18.0p-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1914
            -0X18.0p-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1915
            -0X18P-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1916
            -0X18P-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1917
            -0X18P-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1918
            -0X18P-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1919
            -0X18P-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1920
            -0X18p-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1921
            -0X18p-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1922
            -0X18p-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1923
            -0X18p-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1924
            -0X18p-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1925
            -0X3.000000P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1926
            -0X3.000000P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1927
            -0X3.000000P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1928
            -0X3.000000P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1929
            -0X3.000000P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1930
            -0X3.000000P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1931
            -0X3.000000P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1932
            -0X3.000000P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1933
            -0X3.000000P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1934
            -0X3.000000P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1935
            -0X3.000000P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1936
            -0X3.000000P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1937
            -0X3.000000P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1938
            -0X3.000000P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1939
            -0X3.000000P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1940
            -0X3.000000p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1941
            -0X3.000000p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1942
            -0X3.000000p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1943
            -0X3.000000p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1944
            -0X3.000000p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1945
            -0X3.000000p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1946
            -0X3.000000p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1947
            -0X3.000000p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1948
            -0X3.000000p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1949
            -0X3.000000p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1950
            -0X3.000000p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1951
            -0X3.000000p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1952
            -0X3.000000p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1953
            -0X3.000000p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1954
            -0X3.000000p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1955
            -0X3.0P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1956
            -0X3.0P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1957
            -0X3.0P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1958
            -0X3.0P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1959
            -0X3.0P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1960
            -0X3.0P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1961
            -0X3.0P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1962
            -0X3.0P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1963
            -0X3.0P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1964
            -0X3.0P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1965
            -0X3.0P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1966
            -0X3.0P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1967
            -0X3.0P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1968
            -0X3.0P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1969
            -0X3.0P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1970
            -0X3.0p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1971
            -0X3.0p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1972
            -0X3.0p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1973
            -0X3.0p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1974
            -0X3.0p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1975
            -0X3.0p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1976
            -0X3.0p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1977
            -0X3.0p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1978
            -0X3.0p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1979
            -0X3.0p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1980
            -0X3.0p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1981
            -0X3.0p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1982
            -0X3.0p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1983
            -0X3.0p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1984
            -0X3.0p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1985
            -0X3.P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1986
            -0X3.P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1987
            -0X3.P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1988
            -0X3.P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1989
            -0X3.P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1990
            -0X3.P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1991
            -0X3.P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1992
            -0X3.P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1993
            -0X3.P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1994
            -0X3.P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1995
            -0X3.P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1996
            -0X3.P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1997
            -0X3.P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1998
            -0X3.P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  1999
            -0X3.P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2000
            -0X3.p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2001
            -0X3.p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2002
            -0X3.p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2003
            -0X3.p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2004
            -0X3.p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2005
            -0X3.p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2006
            -0X3.p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2007
            -0X3.p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2008
            -0X3.p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2009
            -0X3.p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2010
            -0X3.p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2011
            -0X3.p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2012
            -0X3.p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2013
            -0X3.p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2014
            -0X3.p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2015
            -0X3000000.0000P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2016
            -0X3000000.0000P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2017
            -0X3000000.0000P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2018
            -0X3000000.0000P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2019
            -0X3000000.0000P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2020
            -0X3000000.0000p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2021
            -0X3000000.0000p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2022
            -0X3000000.0000p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2023
            -0X3000000.0000p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2024
            -0X3000000.0000p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2025
            -0X3000000.P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2026
            -0X3000000.P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2027
            -0X3000000.P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2028
            -0X3000000.P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2029
            -0X3000000.P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2030
            -0X3000000.p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2031
            -0X3000000.p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2032
            -0X3000000.p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2033
            -0X3000000.p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2034
            -0X3000000.p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2035
            -0X3000000P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2036
            -0X3000000P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2037
            -0X3000000P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2038
            -0X3000000P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2039
            -0X3000000P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2040
            -0X3000000p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2041
            -0X3000000p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2042
            -0X3000000p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2043
            -0X3000000p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2044
            -0X3000000p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2045
            -0X3P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2046
            -0X3P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2047
            -0X3P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2048
            -0X3P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2049
            -0X3P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2050
            -0X3P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2051
            -0X3P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2052
            -0X3P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2053
            -0X3P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2054
            -0X3P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2055
            -0X3P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2056
            -0X3P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2057
            -0X3P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2058
            -0X3P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2059
            -0X3P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2060
            -0X3p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2061
            -0X3p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2062
            -0X3p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2063
            -0X3p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2064
            -0X3p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2065
            -0X3p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2066
            -0X3p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2067
            -0X3p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2068
            -0X3p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2069
            -0X3p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2070
            -0X3p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2071
            -0X3p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2072
            -0X3p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2073
            -0X3p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2074
            -0X3p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2075
            -0XC.0P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2076
            -0XC.0P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2077
            -0XC.0P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2078
            -0XC.0P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2079
            -0XC.0P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2080
            -0XC.0p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2081
            -0XC.0p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2082
            -0XC.0p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2083
            -0XC.0p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2084
            -0XC.0p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2085
            -0XC.P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2086
            -0XC.P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2087
            -0XC.P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2088
            -0XC.P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2089
            -0XC.P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2090
            -0XC.p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2091
            -0XC.p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2092
            -0XC.p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2093
            -0XC.p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2094
            -0XC.p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2095
            -0XCP-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2096
            -0XCP-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2097
            -0XCP-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2098
            -0XCP-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2099
            -0XCP-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2100
            -0XCp-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2101
            -0XCp-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2102
            -0XCp-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2103
            -0XCp-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2104
            -0XCp-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2105
            -0Xc.0P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2106
            -0Xc.0P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2107
            -0Xc.0P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2108
            -0Xc.0P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2109
            -0Xc.0P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2110
            -0Xc.0p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2111
            -0Xc.0p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2112
            -0Xc.0p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2113
            -0Xc.0p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2114
            -0Xc.0p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2115
            -0Xc.P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2116
            -0Xc.P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2117
            -0Xc.P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2118
            -0Xc.P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2119
            -0Xc.P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2120
            -0Xc.p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2121
            -0Xc.p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2122
            -0Xc.p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2123
            -0Xc.p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2124
            -0Xc.p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2125
            -0XcP-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2126
            -0XcP-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2127
            -0XcP-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2128
            -0XcP-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2129
            -0XcP-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2130
            -0Xcp-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2131
            -0Xcp-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2132
            -0Xcp-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2133
            -0Xcp-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2134
            -0Xcp-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2135
            -0x.0030000000000P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2136
            -0x.0030000000000P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2137
            -0x.0030000000000P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2138
            -0x.0030000000000P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2139
            -0x.0030000000000P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2140
            -0x.0030000000000P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2141
            -0x.0030000000000P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2142
            -0x.0030000000000P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2143
            -0x.0030000000000P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2144
            -0x.0030000000000P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2145
            -0x.0030000000000p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2146
            -0x.0030000000000p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2147
            -0x.0030000000000p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2148
            -0x.0030000000000p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2149
            -0x.0030000000000p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2150
            -0x.0030000000000p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2151
            -0x.0030000000000p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2152
            -0x.0030000000000p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2153
            -0x.0030000000000p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2154
            -0x.0030000000000p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2155
            -0x.0030P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2156
            -0x.0030P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2157
            -0x.0030P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2158
            -0x.0030P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2159
            -0x.0030P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2160
            -0x.0030P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2161
            -0x.0030P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2162
            -0x.0030P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2163
            -0x.0030P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2164
            -0x.0030P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2165
            -0x.0030p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2166
            -0x.0030p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2167
            -0x.0030p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2168
            -0x.0030p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2169
            -0x.0030p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2170
            -0x.0030p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2171
            -0x.0030p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2172
            -0x.0030p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2173
            -0x.0030p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2174
            -0x.0030p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2175
            -0x.003P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2176
            -0x.003P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2177
            -0x.003P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2178
            -0x.003P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2179
            -0x.003P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2180
            -0x.003P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2181
            -0x.003P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2182
            -0x.003P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2183
            -0x.003P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2184
            -0x.003P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2185
            -0x.003p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2186
            -0x.003p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2187
            -0x.003p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2188
            -0x.003p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2189
            -0x.003p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2190
            -0x.003p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2191
            -0x.003p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2192
            -0x.003p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2193
            -0x.003p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2194
            -0x.003p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2195
            -0x.3P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2196
            -0x.3P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2197
            -0x.3P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2198
            -0x.3P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2199
            -0x.3P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2200
            -0x.3P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2201
            -0x.3P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2202
            -0x.3P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2203
            -0x.3P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2204
            -0x.3P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2205
            -0x.3p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2206
            -0x.3p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2207
            -0x.3p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2208
            -0x.3p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2209
            -0x.3p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2210
            -0x.3p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2211
            -0x.3p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2212
            -0x.3p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2213
            -0x.3p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2214
            -0x.3p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2215
            -0x.C0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2216
            -0x.C0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2217
            -0x.C0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2218
            -0x.C0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2219
            -0x.C0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2220
            -0x.C0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2221
            -0x.C0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2222
            -0x.C0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2223
            -0x.C0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2224
            -0x.C0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2225
            -0x.C0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2226
            -0x.C0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2227
            -0x.C0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2228
            -0x.C0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2229
            -0x.C0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2230
            -0x.C0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2231
            -0x.C0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2232
            -0x.C0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2233
            -0x.C0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2234
            -0x.C0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2235
            -0x.CP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2236
            -0x.CP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2237
            -0x.CP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2238
            -0x.CP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2239
            -0x.CP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2240
            -0x.CP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2241
            -0x.CP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2242
            -0x.CP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2243
            -0x.CP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2244
            -0x.CP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2245
            -0x.Cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2246
            -0x.Cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2247
            -0x.Cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2248
            -0x.Cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2249
            -0x.Cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2250
            -0x.Cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2251
            -0x.Cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2252
            -0x.Cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2253
            -0x.Cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2254
            -0x.Cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2255
            -0x.c0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2256
            -0x.c0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2257
            -0x.c0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2258
            -0x.c0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2259
            -0x.c0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2260
            -0x.c0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2261
            -0x.c0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2262
            -0x.c0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2263
            -0x.c0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2264
            -0x.c0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2265
            -0x.c0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2266
            -0x.c0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2267
            -0x.c0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2268
            -0x.c0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2269
            -0x.c0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2270
            -0x.c0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2271
            -0x.c0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2272
            -0x.c0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2273
            -0x.c0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2274
            -0x.c0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2275
            -0x.cP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2276
            -0x.cP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2277
            -0x.cP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2278
            -0x.cP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2279
            -0x.cP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2280
            -0x.cP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2281
            -0x.cP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2282
            -0x.cP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2283
            -0x.cP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2284
            -0x.cP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2285
            -0x.cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2286
            -0x.cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2287
            -0x.cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2288
            -0x.cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2289
            -0x.cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2290
            -0x.cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2291
            -0x.cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2292
            -0x.cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2293
            -0x.cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2294
            -0x.cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2295
            -0x0.30P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2296
            -0x0.30P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2297
            -0x0.30P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2298
            -0x0.30P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2299
            -0x0.30P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2300
            -0x0.30P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2301
            -0x0.30P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2302
            -0x0.30P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2303
            -0x0.30P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2304
            -0x0.30P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2305
            -0x0.30p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2306
            -0x0.30p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2307
            -0x0.30p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2308
            -0x0.30p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2309
            -0x0.30p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2310
            -0x0.30p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2311
            -0x0.30p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2312
            -0x0.30p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2313
            -0x0.30p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2314
            -0x0.30p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2315
            -0x0.3P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2316
            -0x0.3P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2317
            -0x0.3P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2318
            -0x0.3P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2319
            -0x0.3P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2320
            -0x0.3P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2321
            -0x0.3P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2322
            -0x0.3P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2323
            -0x0.3P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2324
            -0x0.3P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2325
            -0x0.3p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2326
            -0x0.3p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2327
            -0x0.3p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2328
            -0x0.3p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2329
            -0x0.3p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2330
            -0x0.3p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2331
            -0x0.3p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2332
            -0x0.3p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2333
            -0x0.3p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2334
            -0x0.3p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2335
            -0x0.C0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2336
            -0x0.C0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2337
            -0x0.C0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2338
            -0x0.C0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2339
            -0x0.C0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2340
            -0x0.C0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2341
            -0x0.C0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2342
            -0x0.C0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2343
            -0x0.C0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2344
            -0x0.C0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2345
            -0x0.C0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2346
            -0x0.C0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2347
            -0x0.C0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2348
            -0x0.C0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2349
            -0x0.C0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2350
            -0x0.C0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2351
            -0x0.C0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2352
            -0x0.C0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2353
            -0x0.C0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2354
            -0x0.C0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2355
            -0x0.CP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2356
            -0x0.CP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2357
            -0x0.CP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2358
            -0x0.CP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2359
            -0x0.CP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2360
            -0x0.CP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2361
            -0x0.CP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2362
            -0x0.CP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2363
            -0x0.CP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2364
            -0x0.CP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2365
            -0x0.Cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2366
            -0x0.Cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2367
            -0x0.Cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2368
            -0x0.Cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2369
            -0x0.Cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2370
            -0x0.Cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2371
            -0x0.Cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2372
            -0x0.Cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2373
            -0x0.Cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2374
            -0x0.Cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2375
            -0x0.c0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2376
            -0x0.c0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2377
            -0x0.c0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2378
            -0x0.c0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2379
            -0x0.c0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2380
            -0x0.c0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2381
            -0x0.c0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2382
            -0x0.c0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2383
            -0x0.c0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2384
            -0x0.c0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2385
            -0x0.c0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2386
            -0x0.c0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2387
            -0x0.c0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2388
            -0x0.c0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2389
            -0x0.c0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2390
            -0x0.c0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2391
            -0x0.c0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2392
            -0x0.c0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2393
            -0x0.c0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2394
            -0x0.c0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2395
            -0x0.cP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2396
            -0x0.cP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2397
            -0x0.cP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2398
            -0x0.cP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2399
            -0x0.cP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2400
            -0x0.cP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2401
            -0x0.cP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2402
            -0x0.cP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2403
            -0x0.cP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2404
            -0x0.cP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2405
            -0x0.cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2406
            -0x0.cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2407
            -0x0.cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2408
            -0x0.cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2409
            -0x0.cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2410
            -0x0.cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2411
            -0x0.cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2412
            -0x0.cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2413
            -0x0.cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2414
            -0x0.cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2415
            -0x000000000.0030000000000P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2416
            -0x000000000.0030000000000P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2417
            -0x000000000.0030000000000P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2418
            -0x000000000.0030000000000P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2419
            -0x000000000.0030000000000P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2420
            -0x000000000.0030000000000P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2421
            -0x000000000.0030000000000P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2422
            -0x000000000.0030000000000P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2423
            -0x000000000.0030000000000P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2424
            -0x000000000.0030000000000P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2425
            -0x000000000.0030000000000p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2426
            -0x000000000.0030000000000p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2427
            -0x000000000.0030000000000p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2428
            -0x000000000.0030000000000p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2429
            -0x000000000.0030000000000p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2430
            -0x000000000.0030000000000p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2431
            -0x000000000.0030000000000p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2432
            -0x000000000.0030000000000p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2433
            -0x000000000.0030000000000p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2434
            -0x000000000.0030000000000p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2435
            -0x00003P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2436
            -0x00003P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2437
            -0x00003P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2438
            -0x00003P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2439
            -0x00003P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2440
            -0x00003P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2441
            -0x00003P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2442
            -0x00003P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2443
            -0x00003P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2444
            -0x00003P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2445
            -0x00003P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2446
            -0x00003P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2447
            -0x00003P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2448
            -0x00003P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2449
            -0x00003P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2450
            -0x00003p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2451
            -0x00003p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2452
            -0x00003p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2453
            -0x00003p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2454
            -0x00003p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2455
            -0x00003p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2456
            -0x00003p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2457
            -0x00003p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2458
            -0x00003p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2459
            -0x00003p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2460
            -0x00003p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2461
            -0x00003p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2462
            -0x00003p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2463
            -0x00003p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2464
            -0x00003p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2465
            -0x0003.P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2466
            -0x0003.P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2467
            -0x0003.P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2468
            -0x0003.P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2469
            -0x0003.P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2470
            -0x0003.P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2471
            -0x0003.P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2472
            -0x0003.P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2473
            -0x0003.P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2474
            -0x0003.P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2475
            -0x0003.P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2476
            -0x0003.P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2477
            -0x0003.P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2478
            -0x0003.P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2479
            -0x0003.P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2480
            -0x0003.p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2481
            -0x0003.p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2482
            -0x0003.p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2483
            -0x0003.p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2484
            -0x0003.p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2485
            -0x0003.p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2486
            -0x0003.p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2487
            -0x0003.p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2488
            -0x0003.p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2489
            -0x0003.p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2490
            -0x0003.p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2491
            -0x0003.p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2492
            -0x0003.p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2493
            -0x0003.p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2494
            -0x0003.p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2495
            -0x0003P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2496
            -0x0003P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2497
            -0x0003P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2498
            -0x0003P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2499
            -0x0003P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2500
            -0x0003P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2501
            -0x0003P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2502
            -0x0003P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2503
            -0x0003P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2504
            -0x0003P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2505
            -0x0003P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2506
            -0x0003P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2507
            -0x0003P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2508
            -0x0003P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2509
            -0x0003P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2510
            -0x0003p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2511
            -0x0003p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2512
            -0x0003p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2513
            -0x0003p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2514
            -0x0003p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2515
            -0x0003p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2516
            -0x0003p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2517
            -0x0003p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2518
            -0x0003p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2519
            -0x0003p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2520
            -0x0003p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2521
            -0x0003p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2522
            -0x0003p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2523
            -0x0003p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2524
            -0x0003p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2525
            -0x01.80P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2526
            -0x01.80P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2527
            -0x01.80P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2528
            -0x01.80P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2529
            -0x01.80P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2530
            -0x01.80P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2531
            -0x01.80P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2532
            -0x01.80P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2533
            -0x01.80P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2534
            -0x01.80P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2535
            -0x01.80p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2536
            -0x01.80p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2537
            -0x01.80p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2538
            -0x01.80p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2539
            -0x01.80p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2540
            -0x01.80p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2541
            -0x01.80p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2542
            -0x01.80p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2543
            -0x01.80p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2544
            -0x01.80p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2545
            -0x01.8P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2546
            -0x01.8P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2547
            -0x01.8P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2548
            -0x01.8P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2549
            -0x01.8P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2550
            -0x01.8P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2551
            -0x01.8P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2552
            -0x01.8P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2553
            -0x01.8P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2554
            -0x01.8P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2555
            -0x01.8p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2556
            -0x01.8p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2557
            -0x01.8p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2558
            -0x01.8p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2559
            -0x01.8p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2560
            -0x01.8p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2561
            -0x01.8p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2562
            -0x01.8p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2563
            -0x01.8p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2564
            -0x01.8p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2565
            -0x1.80P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2566
            -0x1.80P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2567
            -0x1.80P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2568
            -0x1.80P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2569
            -0x1.80P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2570
            -0x1.80P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2571
            -0x1.80P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2572
            -0x1.80P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2573
            -0x1.80P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2574
            -0x1.80P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2575
            -0x1.80p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2576
            -0x1.80p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2577
            -0x1.80p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2578
            -0x1.80p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2579
            -0x1.80p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2580
            -0x1.80p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2581
            -0x1.80p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2582
            -0x1.80p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2583
            -0x1.80p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2584
            -0x1.80p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2585
            -0x1.8P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2586
            -0x1.8P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2587
            -0x1.8P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2588
            -0x1.8P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2589
            -0x1.8P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2590
            -0x1.8P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2591
            -0x1.8P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2592
            -0x1.8P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2593
            -0x1.8P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2594
            -0x1.8P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2595
            -0x1.8p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2596
            -0x1.8p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2597
            -0x1.8p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2598
            -0x1.8p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2599
            -0x1.8p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2600
            -0x1.8p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2601
            -0x1.8p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2602
            -0x1.8p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2603
            -0x1.8p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2604
            -0x1.8p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2605
            -0x18.0P-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2606
            -0x18.0P-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2607
            -0x18.0P-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2608
            -0x18.0P-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2609
            -0x18.0P-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2610
            -0x18.0p-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2611
            -0x18.0p-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2612
            -0x18.0p-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2613
            -0x18.0p-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2614
            -0x18.0p-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2615
            -0x18P-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2616
            -0x18P-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2617
            -0x18P-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2618
            -0x18P-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2619
            -0x18P-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2620
            -0x18p-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2621
            -0x18p-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2622
            -0x18p-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2623
            -0x18p-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2624
            -0x18p-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2625
            -0x3.000000P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2626
            -0x3.000000P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2627
            -0x3.000000P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2628
            -0x3.000000P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2629
            -0x3.000000P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2630
            -0x3.000000P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2631
            -0x3.000000P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2632
            -0x3.000000P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2633
            -0x3.000000P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2634
            -0x3.000000P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2635
            -0x3.000000P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2636
            -0x3.000000P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2637
            -0x3.000000P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2638
            -0x3.000000P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2639
            -0x3.000000P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2640
            -0x3.000000p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2641
            -0x3.000000p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2642
            -0x3.000000p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2643
            -0x3.000000p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2644
            -0x3.000000p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2645
            -0x3.000000p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2646
            -0x3.000000p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2647
            -0x3.000000p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2648
            -0x3.000000p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2649
            -0x3.000000p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2650
            -0x3.000000p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2651
            -0x3.000000p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2652
            -0x3.000000p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2653
            -0x3.000000p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2654
            -0x3.000000p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2655
            -0x3.0P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2656
            -0x3.0P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2657
            -0x3.0P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2658
            -0x3.0P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2659
            -0x3.0P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2660
            -0x3.0P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2661
            -0x3.0P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2662
            -0x3.0P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2663
            -0x3.0P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2664
            -0x3.0P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2665
            -0x3.0P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2666
            -0x3.0P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2667
            -0x3.0P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2668
            -0x3.0P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2669
            -0x3.0P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2670
            -0x3.0p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2671
            -0x3.0p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2672
            -0x3.0p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2673
            -0x3.0p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2674
            -0x3.0p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2675
            -0x3.0p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2676
            -0x3.0p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2677
            -0x3.0p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2678
            -0x3.0p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2679
            -0x3.0p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2680
            -0x3.0p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2681
            -0x3.0p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2682
            -0x3.0p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2683
            -0x3.0p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2684
            -0x3.0p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2685
            -0x3.P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2686
            -0x3.P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2687
            -0x3.P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2688
            -0x3.P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2689
            -0x3.P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2690
            -0x3.P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2691
            -0x3.P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2692
            -0x3.P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2693
            -0x3.P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2694
            -0x3.P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2695
            -0x3.P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2696
            -0x3.P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2697
            -0x3.P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2698
            -0x3.P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2699
            -0x3.P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2700
            -0x3.p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2701
            -0x3.p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2702
            -0x3.p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2703
            -0x3.p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2704
            -0x3.p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2705
            -0x3.p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2706
            -0x3.p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2707
            -0x3.p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2708
            -0x3.p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2709
            -0x3.p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2710
            -0x3.p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2711
            -0x3.p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2712
            -0x3.p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2713
            -0x3.p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2714
            -0x3.p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2715
            -0x3000000.0000P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2716
            -0x3000000.0000P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2717
            -0x3000000.0000P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2718
            -0x3000000.0000P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2719
            -0x3000000.0000P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2720
            -0x3000000.0000p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2721
            -0x3000000.0000p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2722
            -0x3000000.0000p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2723
            -0x3000000.0000p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2724
            -0x3000000.0000p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2725
            -0x3000000.P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2726
            -0x3000000.P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2727
            -0x3000000.P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2728
            -0x3000000.P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2729
            -0x3000000.P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2730
            -0x3000000.p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2731
            -0x3000000.p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2732
            -0x3000000.p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2733
            -0x3000000.p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2734
            -0x3000000.p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2735
            -0x3000000P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2736
            -0x3000000P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2737
            -0x3000000P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2738
            -0x3000000P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2739
            -0x3000000P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2740
            -0x3000000p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2741
            -0x3000000p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2742
            -0x3000000p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2743
            -0x3000000p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2744
            -0x3000000p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2745
            -0x3P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2746
            -0x3P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2747
            -0x3P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2748
            -0x3P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2749
            -0x3P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2750
            -0x3P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2751
            -0x3P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2752
            -0x3P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2753
            -0x3P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2754
            -0x3P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2755
            -0x3P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2756
            -0x3P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2757
            -0x3P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2758
            -0x3P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2759
            -0x3P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2760
            -0x3p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2761
            -0x3p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2762
            -0x3p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2763
            -0x3p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2764
            -0x3p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2765
            -0x3p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2766
            -0x3p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2767
            -0x3p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2768
            -0x3p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2769
            -0x3p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2770
            -0x3p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2771
            -0x3p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2772
            -0x3p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2773
            -0x3p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2774
            -0x3p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2775
            -0xC.0P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2776
            -0xC.0P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2777
            -0xC.0P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2778
            -0xC.0P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2779
            -0xC.0P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2780
            -0xC.0p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2781
            -0xC.0p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2782
            -0xC.0p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2783
            -0xC.0p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2784
            -0xC.0p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2785
            -0xC.P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2786
            -0xC.P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2787
            -0xC.P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2788
            -0xC.P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2789
            -0xC.P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2790
            -0xC.p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2791
            -0xC.p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2792
            -0xC.p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2793
            -0xC.p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2794
            -0xC.p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2795
            -0xCP-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2796
            -0xCP-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2797
            -0xCP-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2798
            -0xCP-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2799
            -0xCP-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2800
            -0xCp-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2801
            -0xCp-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2802
            -0xCp-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2803
            -0xCp-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2804
            -0xCp-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2805
            -0xc.0P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2806
            -0xc.0P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2807
            -0xc.0P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2808
            -0xc.0P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2809
            -0xc.0P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2810
            -0xc.0p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2811
            -0xc.0p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2812
            -0xc.0p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2813
            -0xc.0p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2814
            -0xc.0p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2815
            -0xc.P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2816
            -0xc.P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2817
            -0xc.P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2818
            -0xc.P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2819
            -0xc.P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2820
            -0xc.p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2821
            -0xc.p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2822
            -0xc.p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2823
            -0xc.p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2824
            -0xc.p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2825
            -0xcP-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2826
            -0xcP-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2827
            -0xcP-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2828
            -0xcP-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2829
            -0xcP-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2830
            -0xcp-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2831
            -0xcp-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2832
            -0xcp-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2833
            -0xcp-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2834
            -0xcp-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2835
            0X.0030000000000P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2836
            0X.0030000000000P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2837
            0X.0030000000000P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2838
            0X.0030000000000P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2839
            0X.0030000000000P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2840
            0X.0030000000000P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2841
            0X.0030000000000P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2842
            0X.0030000000000P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2843
            0X.0030000000000P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2844
            0X.0030000000000P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2845
            0X.0030000000000p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2846
            0X.0030000000000p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2847
            0X.0030000000000p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2848
            0X.0030000000000p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2849
            0X.0030000000000p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2850
            0X.0030000000000p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2851
            0X.0030000000000p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2852
            0X.0030000000000p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2853
            0X.0030000000000p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2854
            0X.0030000000000p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2855
            0X.0030P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2856
            0X.0030P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2857
            0X.0030P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2858
            0X.0030P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2859
            0X.0030P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2860
            0X.0030P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2861
            0X.0030P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2862
            0X.0030P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2863
            0X.0030P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2864
            0X.0030P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2865
            0X.0030p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2866
            0X.0030p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2867
            0X.0030p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2868
            0X.0030p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2869
            0X.0030p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2870
            0X.0030p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2871
            0X.0030p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2872
            0X.0030p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2873
            0X.0030p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2874
            0X.0030p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2875
            0X.003P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2876
            0X.003P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2877
            0X.003P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2878
            0X.003P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2879
            0X.003P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2880
            0X.003P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2881
            0X.003P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2882
            0X.003P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2883
            0X.003P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2884
            0X.003P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2885
            0X.003p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2886
            0X.003p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2887
            0X.003p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2888
            0X.003p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2889
            0X.003p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2890
            0X.003p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2891
            0X.003p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2892
            0X.003p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2893
            0X.003p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2894
            0X.003p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2895
            0X.3P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2896
            0X.3P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2897
            0X.3P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2898
            0X.3P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2899
            0X.3P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2900
            0X.3P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2901
            0X.3P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2902
            0X.3P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2903
            0X.3P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2904
            0X.3P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2905
            0X.3p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2906
            0X.3p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2907
            0X.3p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2908
            0X.3p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2909
            0X.3p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2910
            0X.3p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2911
            0X.3p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2912
            0X.3p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2913
            0X.3p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2914
            0X.3p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2915
            0X.C0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2916
            0X.C0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2917
            0X.C0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2918
            0X.C0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2919
            0X.C0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2920
            0X.C0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2921
            0X.C0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2922
            0X.C0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2923
            0X.C0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2924
            0X.C0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2925
            0X.C0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2926
            0X.C0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2927
            0X.C0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2928
            0X.C0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2929
            0X.C0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2930
            0X.C0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2931
            0X.C0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2932
            0X.C0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2933
            0X.C0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2934
            0X.C0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2935
            0X.CP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2936
            0X.CP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2937
            0X.CP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2938
            0X.CP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2939
            0X.CP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2940
            0X.CP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2941
            0X.CP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2942
            0X.CP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2943
            0X.CP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2944
            0X.CP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2945
            0X.Cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2946
            0X.Cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2947
            0X.Cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2948
            0X.Cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2949
            0X.Cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2950
            0X.Cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2951
            0X.Cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2952
            0X.Cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2953
            0X.Cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2954
            0X.Cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2955
            0X.c0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2956
            0X.c0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2957
            0X.c0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2958
            0X.c0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2959
            0X.c0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2960
            0X.c0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2961
            0X.c0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2962
            0X.c0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2963
            0X.c0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2964
            0X.c0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2965
            0X.c0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2966
            0X.c0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2967
            0X.c0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2968
            0X.c0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2969
            0X.c0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2970
            0X.c0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2971
            0X.c0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2972
            0X.c0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2973
            0X.c0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2974
            0X.c0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2975
            0X.cP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2976
            0X.cP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2977
            0X.cP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2978
            0X.cP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2979
            0X.cP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2980
            0X.cP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2981
            0X.cP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2982
            0X.cP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2983
            0X.cP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2984
            0X.cP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2985
            0X.cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2986
            0X.cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2987
            0X.cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2988
            0X.cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2989
            0X.cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2990
            0X.cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2991
            0X.cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2992
            0X.cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2993
            0X.cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2994
            0X.cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2995
            0X0.30P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2996
            0X0.30P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2997
            0X0.30P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2998
            0X0.30P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  2999
            0X0.30P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3000
            0X0.30P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3001
            0X0.30P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3002
            0X0.30P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3003
            0X0.30P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3004
            0X0.30P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3005
            0X0.30p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3006
            0X0.30p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3007
            0X0.30p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3008
            0X0.30p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3009
            0X0.30p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3010
            0X0.30p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3011
            0X0.30p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3012
            0X0.30p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3013
            0X0.30p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3014
            0X0.30p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3015
            0X0.3P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3016
            0X0.3P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3017
            0X0.3P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3018
            0X0.3P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3019
            0X0.3P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3020
            0X0.3P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3021
            0X0.3P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3022
            0X0.3P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3023
            0X0.3P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3024
            0X0.3P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3025
            0X0.3p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3026
            0X0.3p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3027
            0X0.3p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3028
            0X0.3p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3029
            0X0.3p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3030
            0X0.3p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3031
            0X0.3p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3032
            0X0.3p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3033
            0X0.3p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3034
            0X0.3p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3035
            0X0.C0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3036
            0X0.C0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3037
            0X0.C0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3038
            0X0.C0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3039
            0X0.C0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3040
            0X0.C0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3041
            0X0.C0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3042
            0X0.C0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3043
            0X0.C0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3044
            0X0.C0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3045
            0X0.C0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3046
            0X0.C0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3047
            0X0.C0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3048
            0X0.C0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3049
            0X0.C0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3050
            0X0.C0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3051
            0X0.C0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3052
            0X0.C0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3053
            0X0.C0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3054
            0X0.C0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3055
            0X0.CP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3056
            0X0.CP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3057
            0X0.CP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3058
            0X0.CP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3059
            0X0.CP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3060
            0X0.CP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3061
            0X0.CP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3062
            0X0.CP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3063
            0X0.CP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3064
            0X0.CP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3065
            0X0.Cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3066
            0X0.Cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3067
            0X0.Cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3068
            0X0.Cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3069
            0X0.Cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3070
            0X0.Cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3071
            0X0.Cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3072
            0X0.Cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3073
            0X0.Cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3074
            0X0.Cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3075
            0X0.c0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3076
            0X0.c0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3077
            0X0.c0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3078
            0X0.c0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3079
            0X0.c0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3080
            0X0.c0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3081
            0X0.c0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3082
            0X0.c0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3083
            0X0.c0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3084
            0X0.c0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3085
            0X0.c0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3086
            0X0.c0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3087
            0X0.c0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3088
            0X0.c0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3089
            0X0.c0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3090
            0X0.c0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3091
            0X0.c0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3092
            0X0.c0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3093
            0X0.c0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3094
            0X0.c0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3095
            0X0.cP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3096
            0X0.cP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3097
            0X0.cP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3098
            0X0.cP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3099
            0X0.cP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3100
            0X0.cP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3101
            0X0.cP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3102
            0X0.cP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3103
            0X0.cP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3104
            0X0.cP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3105
            0X0.cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3106
            0X0.cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3107
            0X0.cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3108
            0X0.cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3109
            0X0.cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3110
            0X0.cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3111
            0X0.cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3112
            0X0.cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3113
            0X0.cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3114
            0X0.cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3115
            0X000000000.0030000000000P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3116
            0X000000000.0030000000000P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3117
            0X000000000.0030000000000P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3118
            0X000000000.0030000000000P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3119
            0X000000000.0030000000000P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3120
            0X000000000.0030000000000P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3121
            0X000000000.0030000000000P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3122
            0X000000000.0030000000000P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3123
            0X000000000.0030000000000P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3124
            0X000000000.0030000000000P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3125
            0X000000000.0030000000000p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3126
            0X000000000.0030000000000p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3127
            0X000000000.0030000000000p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3128
            0X000000000.0030000000000p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3129
            0X000000000.0030000000000p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3130
            0X000000000.0030000000000p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3131
            0X000000000.0030000000000p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3132
            0X000000000.0030000000000p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3133
            0X000000000.0030000000000p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3134
            0X000000000.0030000000000p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3135
            0X00003P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3136
            0X00003P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3137
            0X00003P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3138
            0X00003P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3139
            0X00003P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3140
            0X00003P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3141
            0X00003P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3142
            0X00003P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3143
            0X00003P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3144
            0X00003P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3145
            0X00003P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3146
            0X00003P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3147
            0X00003P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3148
            0X00003P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3149
            0X00003P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3150
            0X00003p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3151
            0X00003p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3152
            0X00003p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3153
            0X00003p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3154
            0X00003p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3155
            0X00003p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3156
            0X00003p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3157
            0X00003p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3158
            0X00003p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3159
            0X00003p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3160
            0X00003p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3161
            0X00003p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3162
            0X00003p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3163
            0X00003p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3164
            0X00003p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3165
            0X0003.P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3166
            0X0003.P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3167
            0X0003.P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3168
            0X0003.P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3169
            0X0003.P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3170
            0X0003.P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3171
            0X0003.P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3172
            0X0003.P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3173
            0X0003.P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3174
            0X0003.P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3175
            0X0003.P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3176
            0X0003.P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3177
            0X0003.P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3178
            0X0003.P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3179
            0X0003.P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3180
            0X0003.p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3181
            0X0003.p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3182
            0X0003.p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3183
            0X0003.p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3184
            0X0003.p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3185
            0X0003.p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3186
            0X0003.p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3187
            0X0003.p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3188
            0X0003.p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3189
            0X0003.p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3190
            0X0003.p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3191
            0X0003.p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3192
            0X0003.p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3193
            0X0003.p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3194
            0X0003.p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3195
            0X0003P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3196
            0X0003P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3197
            0X0003P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3198
            0X0003P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3199
            0X0003P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3200
            0X0003P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3201
            0X0003P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3202
            0X0003P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3203
            0X0003P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3204
            0X0003P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3205
            0X0003P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3206
            0X0003P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3207
            0X0003P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3208
            0X0003P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3209
            0X0003P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3210
            0X0003p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3211
            0X0003p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3212
            0X0003p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3213
            0X0003p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3214
            0X0003p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3215
            0X0003p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3216
            0X0003p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3217
            0X0003p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3218
            0X0003p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3219
            0X0003p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3220
            0X0003p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3221
            0X0003p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3222
            0X0003p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3223
            0X0003p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3224
            0X0003p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3225
            0X01.80P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3226
            0X01.80P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3227
            0X01.80P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3228
            0X01.80P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3229
            0X01.80P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3230
            0X01.80P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3231
            0X01.80P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3232
            0X01.80P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3233
            0X01.80P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3234
            0X01.80P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3235
            0X01.80p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3236
            0X01.80p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3237
            0X01.80p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3238
            0X01.80p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3239
            0X01.80p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3240
            0X01.80p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3241
            0X01.80p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3242
            0X01.80p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3243
            0X01.80p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3244
            0X01.80p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3245
            0X01.8P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3246
            0X01.8P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3247
            0X01.8P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3248
            0X01.8P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3249
            0X01.8P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3250
            0X01.8P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3251
            0X01.8P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3252
            0X01.8P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3253
            0X01.8P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3254
            0X01.8P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3255
            0X01.8p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3256
            0X01.8p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3257
            0X01.8p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3258
            0X01.8p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3259
            0X01.8p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3260
            0X01.8p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3261
            0X01.8p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3262
            0X01.8p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3263
            0X01.8p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3264
            0X01.8p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3265
            0X1.80P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3266
            0X1.80P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3267
            0X1.80P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3268
            0X1.80P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3269
            0X1.80P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3270
            0X1.80P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3271
            0X1.80P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3272
            0X1.80P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3273
            0X1.80P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3274
            0X1.80P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3275
            0X1.80p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3276
            0X1.80p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3277
            0X1.80p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3278
            0X1.80p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3279
            0X1.80p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3280
            0X1.80p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3281
            0X1.80p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3282
            0X1.80p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3283
            0X1.80p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3284
            0X1.80p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3285
            0X1.8P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3286
            0X1.8P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3287
            0X1.8P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3288
            0X1.8P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3289
            0X1.8P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3290
            0X1.8P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3291
            0X1.8P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3292
            0X1.8P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3293
            0X1.8P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3294
            0X1.8P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3295
            0X1.8p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3296
            0X1.8p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3297
            0X1.8p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3298
            0X1.8p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3299
            0X1.8p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3300
            0X1.8p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3301
            0X1.8p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3302
            0X1.8p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3303
            0X1.8p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3304
            0X1.8p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3305
            0X18.0P-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3306
            0X18.0P-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3307
            0X18.0P-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3308
            0X18.0P-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3309
            0X18.0P-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3310
            0X18.0p-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3311
            0X18.0p-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3312
            0X18.0p-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3313
            0X18.0p-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3314
            0X18.0p-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3315
            0X18P-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3316
            0X18P-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3317
            0X18P-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3318
            0X18P-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3319
            0X18P-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3320
            0X18p-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3321
            0X18p-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3322
            0X18p-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3323
            0X18p-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3324
            0X18p-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3325
            0X3.000000P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3326
            0X3.000000P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3327
            0X3.000000P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3328
            0X3.000000P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3329
            0X3.000000P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3330
            0X3.000000P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3331
            0X3.000000P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3332
            0X3.000000P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3333
            0X3.000000P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3334
            0X3.000000P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3335
            0X3.000000P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3336
            0X3.000000P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3337
            0X3.000000P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3338
            0X3.000000P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3339
            0X3.000000P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3340
            0X3.000000p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3341
            0X3.000000p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3342
            0X3.000000p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3343
            0X3.000000p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3344
            0X3.000000p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3345
            0X3.000000p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3346
            0X3.000000p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3347
            0X3.000000p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3348
            0X3.000000p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3349
            0X3.000000p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3350
            0X3.000000p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3351
            0X3.000000p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3352
            0X3.000000p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3353
            0X3.000000p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3354
            0X3.000000p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3355
            0X3.0P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3356
            0X3.0P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3357
            0X3.0P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3358
            0X3.0P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3359
            0X3.0P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3360
            0X3.0P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3361
            0X3.0P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3362
            0X3.0P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3363
            0X3.0P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3364
            0X3.0P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3365
            0X3.0P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3366
            0X3.0P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3367
            0X3.0P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3368
            0X3.0P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3369
            0X3.0P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3370
            0X3.0p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3371
            0X3.0p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3372
            0X3.0p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3373
            0X3.0p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3374
            0X3.0p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3375
            0X3.0p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3376
            0X3.0p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3377
            0X3.0p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3378
            0X3.0p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3379
            0X3.0p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3380
            0X3.0p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3381
            0X3.0p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3382
            0X3.0p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3383
            0X3.0p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3384
            0X3.0p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3385
            0X3.P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3386
            0X3.P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3387
            0X3.P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3388
            0X3.P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3389
            0X3.P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3390
            0X3.P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3391
            0X3.P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3392
            0X3.P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3393
            0X3.P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3394
            0X3.P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3395
            0X3.P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3396
            0X3.P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3397
            0X3.P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3398
            0X3.P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3399
            0X3.P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3400
            0X3.p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3401
            0X3.p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3402
            0X3.p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3403
            0X3.p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3404
            0X3.p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3405
            0X3.p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3406
            0X3.p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3407
            0X3.p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3408
            0X3.p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3409
            0X3.p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3410
            0X3.p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3411
            0X3.p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3412
            0X3.p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3413
            0X3.p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3414
            0X3.p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3415
            0X3000000.0000P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3416
            0X3000000.0000P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3417
            0X3000000.0000P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3418
            0X3000000.0000P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3419
            0X3000000.0000P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3420
            0X3000000.0000p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3421
            0X3000000.0000p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3422
            0X3000000.0000p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3423
            0X3000000.0000p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3424
            0X3000000.0000p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3425
            0X3000000.P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3426
            0X3000000.P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3427
            0X3000000.P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3428
            0X3000000.P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3429
            0X3000000.P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3430
            0X3000000.p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3431
            0X3000000.p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3432
            0X3000000.p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3433
            0X3000000.p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3434
            0X3000000.p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3435
            0X3000000P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3436
            0X3000000P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3437
            0X3000000P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3438
            0X3000000P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3439
            0X3000000P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3440
            0X3000000p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3441
            0X3000000p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3442
            0X3000000p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3443
            0X3000000p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3444
            0X3000000p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3445
            0X3P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3446
            0X3P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3447
            0X3P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3448
            0X3P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3449
            0X3P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3450
            0X3P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3451
            0X3P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3452
            0X3P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3453
            0X3P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3454
            0X3P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3455
            0X3P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3456
            0X3P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3457
            0X3P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3458
            0X3P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3459
            0X3P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3460
            0X3p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3461
            0X3p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3462
            0X3p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3463
            0X3p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3464
            0X3p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3465
            0X3p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3466
            0X3p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3467
            0X3p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3468
            0X3p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3469
            0X3p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3470
            0X3p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3471
            0X3p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3472
            0X3p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3473
            0X3p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3474
            0X3p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3475
            0XC.0P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3476
            0XC.0P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3477
            0XC.0P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3478
            0XC.0P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3479
            0XC.0P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3480
            0XC.0p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3481
            0XC.0p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3482
            0XC.0p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3483
            0XC.0p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3484
            0XC.0p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3485
            0XC.P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3486
            0XC.P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3487
            0XC.P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3488
            0XC.P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3489
            0XC.P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3490
            0XC.p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3491
            0XC.p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3492
            0XC.p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3493
            0XC.p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3494
            0XC.p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3495
            0XCP-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3496
            0XCP-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3497
            0XCP-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3498
            0XCP-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3499
            0XCP-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3500
            0XCp-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3501
            0XCp-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3502
            0XCp-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3503
            0XCp-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3504
            0XCp-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3505
            0Xc.0P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3506
            0Xc.0P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3507
            0Xc.0P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3508
            0Xc.0P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3509
            0Xc.0P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3510
            0Xc.0p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3511
            0Xc.0p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3512
            0Xc.0p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3513
            0Xc.0p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3514
            0Xc.0p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3515
            0Xc.P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3516
            0Xc.P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3517
            0Xc.P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3518
            0Xc.P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3519
            0Xc.P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3520
            0Xc.p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3521
            0Xc.p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3522
            0Xc.p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3523
            0Xc.p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3524
            0Xc.p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3525
            0XcP-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3526
            0XcP-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3527
            0XcP-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3528
            0XcP-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3529
            0XcP-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3530
            0Xcp-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3531
            0Xcp-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3532
            0Xcp-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3533
            0Xcp-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3534
            0Xcp-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3535
            0x.0030000000000P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3536
            0x.0030000000000P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3537
            0x.0030000000000P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3538
            0x.0030000000000P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3539
            0x.0030000000000P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3540
            0x.0030000000000P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3541
            0x.0030000000000P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3542
            0x.0030000000000P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3543
            0x.0030000000000P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3544
            0x.0030000000000P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3545
            0x.0030000000000p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3546
            0x.0030000000000p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3547
            0x.0030000000000p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3548
            0x.0030000000000p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3549
            0x.0030000000000p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3550
            0x.0030000000000p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3551
            0x.0030000000000p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3552
            0x.0030000000000p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3553
            0x.0030000000000p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3554
            0x.0030000000000p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3555
            0x.0030P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3556
            0x.0030P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3557
            0x.0030P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3558
            0x.0030P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3559
            0x.0030P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3560
            0x.0030P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3561
            0x.0030P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3562
            0x.0030P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3563
            0x.0030P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3564
            0x.0030P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3565
            0x.0030p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3566
            0x.0030p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3567
            0x.0030p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3568
            0x.0030p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3569
            0x.0030p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3570
            0x.0030p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3571
            0x.0030p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3572
            0x.0030p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3573
            0x.0030p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3574
            0x.0030p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3575
            0x.003P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3576
            0x.003P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3577
            0x.003P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3578
            0x.003P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3579
            0x.003P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3580
            0x.003P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3581
            0x.003P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3582
            0x.003P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3583
            0x.003P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3584
            0x.003P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3585
            0x.003p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3586
            0x.003p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3587
            0x.003p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3588
            0x.003p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3589
            0x.003p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3590
            0x.003p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3591
            0x.003p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3592
            0x.003p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3593
            0x.003p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3594
            0x.003p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3595
            0x.3P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3596
            0x.3P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3597
            0x.3P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3598
            0x.3P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3599
            0x.3P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3600
            0x.3P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3601
            0x.3P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3602
            0x.3P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3603
            0x.3P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3604
            0x.3P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3605
            0x.3p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3606
            0x.3p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3607
            0x.3p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3608
            0x.3p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3609
            0x.3p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3610
            0x.3p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3611
            0x.3p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3612
            0x.3p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3613
            0x.3p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3614
            0x.3p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3615
            0x.C0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3616
            0x.C0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3617
            0x.C0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3618
            0x.C0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3619
            0x.C0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3620
            0x.C0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3621
            0x.C0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3622
            0x.C0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3623
            0x.C0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3624
            0x.C0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3625
            0x.C0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3626
            0x.C0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3627
            0x.C0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3628
            0x.C0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3629
            0x.C0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3630
            0x.C0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3631
            0x.C0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3632
            0x.C0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3633
            0x.C0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3634
            0x.C0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3635
            0x.CP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3636
            0x.CP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3637
            0x.CP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3638
            0x.CP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3639
            0x.CP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3640
            0x.CP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3641
            0x.CP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3642
            0x.CP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3643
            0x.CP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3644
            0x.CP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3645
            0x.Cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3646
            0x.Cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3647
            0x.Cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3648
            0x.Cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3649
            0x.Cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3650
            0x.Cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3651
            0x.Cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3652
            0x.Cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3653
            0x.Cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3654
            0x.Cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3655
            0x.c0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3656
            0x.c0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3657
            0x.c0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3658
            0x.c0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3659
            0x.c0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3660
            0x.c0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3661
            0x.c0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3662
            0x.c0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3663
            0x.c0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3664
            0x.c0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3665
            0x.c0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3666
            0x.c0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3667
            0x.c0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3668
            0x.c0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3669
            0x.c0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3670
            0x.c0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3671
            0x.c0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3672
            0x.c0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3673
            0x.c0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3674
            0x.c0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3675
            0x.cP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3676
            0x.cP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3677
            0x.cP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3678
            0x.cP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3679
            0x.cP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3680
            0x.cP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3681
            0x.cP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3682
            0x.cP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3683
            0x.cP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3684
            0x.cP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3685
            0x.cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3686
            0x.cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3687
            0x.cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3688
            0x.cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3689
            0x.cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3690
            0x.cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3691
            0x.cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3692
            0x.cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3693
            0x.cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3694
            0x.cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3695
            0x0.30P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3696
            0x0.30P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3697
            0x0.30P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3698
            0x0.30P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3699
            0x0.30P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3700
            0x0.30P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3701
            0x0.30P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3702
            0x0.30P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3703
            0x0.30P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3704
            0x0.30P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3705
            0x0.30p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3706
            0x0.30p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3707
            0x0.30p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3708
            0x0.30p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3709
            0x0.30p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3710
            0x0.30p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3711
            0x0.30p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3712
            0x0.30p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3713
            0x0.30p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3714
            0x0.30p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3715
            0x0.3P+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3716
            0x0.3P+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3717
            0x0.3P+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3718
            0x0.3P+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3719
            0x0.3P+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3720
            0x0.3P4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3721
            0x0.3P4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3722
            0x0.3P4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3723
            0x0.3P4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3724
            0x0.3P4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3725
            0x0.3p+4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3726
            0x0.3p+4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3727
            0x0.3p+4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3728
            0x0.3p+4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3729
            0x0.3p+4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3730
            0x0.3p4,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3731
            0x0.3p4D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3732
            0x0.3p4F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3733
            0x0.3p4d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3734
            0x0.3p4f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3735
            0x0.C0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3736
            0x0.C0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3737
            0x0.C0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3738
            0x0.C0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3739
            0x0.C0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3740
            0x0.C0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3741
            0x0.C0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3742
            0x0.C0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3743
            0x0.C0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3744
            0x0.C0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3745
            0x0.C0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3746
            0x0.C0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3747
            0x0.C0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3748
            0x0.C0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3749
            0x0.C0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3750
            0x0.C0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3751
            0x0.C0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3752
            0x0.C0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3753
            0x0.C0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3754
            0x0.C0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3755
            0x0.CP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3756
            0x0.CP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3757
            0x0.CP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3758
            0x0.CP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3759
            0x0.CP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3760
            0x0.CP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3761
            0x0.CP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3762
            0x0.CP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3763
            0x0.CP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3764
            0x0.CP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3765
            0x0.Cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3766
            0x0.Cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3767
            0x0.Cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3768
            0x0.Cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3769
            0x0.Cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3770
            0x0.Cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3771
            0x0.Cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3772
            0x0.Cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3773
            0x0.Cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3774
            0x0.Cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3775
            0x0.c0P+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3776
            0x0.c0P+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3777
            0x0.c0P+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3778
            0x0.c0P+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3779
            0x0.c0P+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3780
            0x0.c0P2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3781
            0x0.c0P2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3782
            0x0.c0P2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3783
            0x0.c0P2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3784
            0x0.c0P2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3785
            0x0.c0p+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3786
            0x0.c0p+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3787
            0x0.c0p+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3788
            0x0.c0p+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3789
            0x0.c0p+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3790
            0x0.c0p2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3791
            0x0.c0p2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3792
            0x0.c0p2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3793
            0x0.c0p2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3794
            0x0.c0p2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3795
            0x0.cP+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3796
            0x0.cP+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3797
            0x0.cP+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3798
            0x0.cP+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3799
            0x0.cP+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3800
            0x0.cP2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3801
            0x0.cP2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3802
            0x0.cP2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3803
            0x0.cP2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3804
            0x0.cP2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3805
            0x0.cp+2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3806
            0x0.cp+2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3807
            0x0.cp+2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3808
            0x0.cp+2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3809
            0x0.cp+2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3810
            0x0.cp2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3811
            0x0.cp2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3812
            0x0.cp2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3813
            0x0.cp2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3814
            0x0.cp2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3815
            0x000000000.0030000000000P+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3816
            0x000000000.0030000000000P+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3817
            0x000000000.0030000000000P+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3818
            0x000000000.0030000000000P+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3819
            0x000000000.0030000000000P+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3820
            0x000000000.0030000000000P12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3821
            0x000000000.0030000000000P12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3822
            0x000000000.0030000000000P12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3823
            0x000000000.0030000000000P12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3824
            0x000000000.0030000000000P12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3825
            0x000000000.0030000000000p+12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3826
            0x000000000.0030000000000p+12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3827
            0x000000000.0030000000000p+12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3828
            0x000000000.0030000000000p+12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3829
            0x000000000.0030000000000p+12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3830
            0x000000000.0030000000000p12,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3831
            0x000000000.0030000000000p12D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3832
            0x000000000.0030000000000p12F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3833
            0x000000000.0030000000000p12d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3834
            0x000000000.0030000000000p12f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3835
            0x00003P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3836
            0x00003P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3837
            0x00003P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3838
            0x00003P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3839
            0x00003P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3840
            0x00003P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3841
            0x00003P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3842
            0x00003P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3843
            0x00003P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3844
            0x00003P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3845
            0x00003P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3846
            0x00003P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3847
            0x00003P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3848
            0x00003P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3849
            0x00003P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3850
            0x00003p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3851
            0x00003p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3852
            0x00003p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3853
            0x00003p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3854
            0x00003p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3855
            0x00003p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3856
            0x00003p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3857
            0x00003p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3858
            0x00003p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3859
            0x00003p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3860
            0x00003p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3861
            0x00003p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3862
            0x00003p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3863
            0x00003p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3864
            0x00003p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3865
            0x0003.P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3866
            0x0003.P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3867
            0x0003.P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3868
            0x0003.P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3869
            0x0003.P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3870
            0x0003.P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3871
            0x0003.P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3872
            0x0003.P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3873
            0x0003.P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3874
            0x0003.P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3875
            0x0003.P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3876
            0x0003.P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3877
            0x0003.P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3878
            0x0003.P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3879
            0x0003.P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3880
            0x0003.p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3881
            0x0003.p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3882
            0x0003.p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3883
            0x0003.p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3884
            0x0003.p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3885
            0x0003.p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3886
            0x0003.p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3887
            0x0003.p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3888
            0x0003.p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3889
            0x0003.p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3890
            0x0003.p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3891
            0x0003.p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3892
            0x0003.p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3893
            0x0003.p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3894
            0x0003.p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3895
            0x0003P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3896
            0x0003P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3897
            0x0003P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3898
            0x0003P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3899
            0x0003P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3900
            0x0003P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3901
            0x0003P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3902
            0x0003P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3903
            0x0003P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3904
            0x0003P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3905
            0x0003P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3906
            0x0003P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3907
            0x0003P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3908
            0x0003P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3909
            0x0003P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3910
            0x0003p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3911
            0x0003p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3912
            0x0003p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3913
            0x0003p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3914
            0x0003p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3915
            0x0003p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3916
            0x0003p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3917
            0x0003p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3918
            0x0003p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3919
            0x0003p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3920
            0x0003p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3921
            0x0003p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3922
            0x0003p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3923
            0x0003p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3924
            0x0003p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3925
            0x01.80P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3926
            0x01.80P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3927
            0x01.80P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3928
            0x01.80P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3929
            0x01.80P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3930
            0x01.80P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3931
            0x01.80P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3932
            0x01.80P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3933
            0x01.80P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3934
            0x01.80P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3935
            0x01.80p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3936
            0x01.80p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3937
            0x01.80p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3938
            0x01.80p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3939
            0x01.80p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3940
            0x01.80p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3941
            0x01.80p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3942
            0x01.80p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3943
            0x01.80p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3944
            0x01.80p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3945
            0x01.8P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3946
            0x01.8P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3947
            0x01.8P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3948
            0x01.8P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3949
            0x01.8P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3950
            0x01.8P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3951
            0x01.8P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3952
            0x01.8P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3953
            0x01.8P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3954
            0x01.8P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3955
            0x01.8p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3956
            0x01.8p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3957
            0x01.8p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3958
            0x01.8p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3959
            0x01.8p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3960
            0x01.8p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3961
            0x01.8p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3962
            0x01.8p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3963
            0x01.8p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3964
            0x01.8p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3965
            0x1.80P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3966
            0x1.80P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3967
            0x1.80P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3968
            0x1.80P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3969
            0x1.80P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3970
            0x1.80P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3971
            0x1.80P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3972
            0x1.80P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3973
            0x1.80P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3974
            0x1.80P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3975
            0x1.80p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3976
            0x1.80p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3977
            0x1.80p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3978
            0x1.80p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3979
            0x1.80p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3980
            0x1.80p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3981
            0x1.80p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3982
            0x1.80p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3983
            0x1.80p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3984
            0x1.80p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3985
            0x1.8P+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3986
            0x1.8P+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3987
            0x1.8P+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3988
            0x1.8P+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3989
            0x1.8P+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3990
            0x1.8P1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3991
            0x1.8P1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3992
            0x1.8P1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3993
            0x1.8P1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3994
            0x1.8P1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3995
            0x1.8p+1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3996
            0x1.8p+1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3997
            0x1.8p+1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3998
            0x1.8p+1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  3999
            0x1.8p+1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4000
            0x1.8p1,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4001
            0x1.8p1D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4002
            0x1.8p1F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4003
            0x1.8p1d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4004
            0x1.8p1f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4005
            0x18.0P-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4006
            0x18.0P-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4007
            0x18.0P-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4008
            0x18.0P-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4009
            0x18.0P-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4010
            0x18.0p-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4011
            0x18.0p-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4012
            0x18.0p-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4013
            0x18.0p-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4014
            0x18.0p-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4015
            0x18P-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4016
            0x18P-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4017
            0x18P-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4018
            0x18P-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4019
            0x18P-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4020
            0x18p-3,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4021
            0x18p-3D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4022
            0x18p-3F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4023
            0x18p-3d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4024
            0x18p-3f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4025
            0x3.000000P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4026
            0x3.000000P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4027
            0x3.000000P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4028
            0x3.000000P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4029
            0x3.000000P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4030
            0x3.000000P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4031
            0x3.000000P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4032
            0x3.000000P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4033
            0x3.000000P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4034
            0x3.000000P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4035
            0x3.000000P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4036
            0x3.000000P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4037
            0x3.000000P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4038
            0x3.000000P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4039
            0x3.000000P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4040
            0x3.000000p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4041
            0x3.000000p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4042
            0x3.000000p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4043
            0x3.000000p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4044
            0x3.000000p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4045
            0x3.000000p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4046
            0x3.000000p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4047
            0x3.000000p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4048
            0x3.000000p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4049
            0x3.000000p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4050
            0x3.000000p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4051
            0x3.000000p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4052
            0x3.000000p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4053
            0x3.000000p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4054
            0x3.000000p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4055
            0x3.0P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4056
            0x3.0P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4057
            0x3.0P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4058
            0x3.0P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4059
            0x3.0P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4060
            0x3.0P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4061
            0x3.0P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4062
            0x3.0P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4063
            0x3.0P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4064
            0x3.0P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4065
            0x3.0P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4066
            0x3.0P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4067
            0x3.0P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4068
            0x3.0P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4069
            0x3.0P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4070
            0x3.0p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4071
            0x3.0p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4072
            0x3.0p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4073
            0x3.0p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4074
            0x3.0p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4075
            0x3.0p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4076
            0x3.0p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4077
            0x3.0p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4078
            0x3.0p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4079
            0x3.0p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4080
            0x3.0p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4081
            0x3.0p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4082
            0x3.0p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4083
            0x3.0p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4084
            0x3.0p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4085
            0x3.P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4086
            0x3.P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4087
            0x3.P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4088
            0x3.P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4089
            0x3.P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4090
            0x3.P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4091
            0x3.P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4092
            0x3.P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4093
            0x3.P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4094
            0x3.P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4095
            0x3.P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4096
            0x3.P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4097
            0x3.P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4098
            0x3.P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4099
            0x3.P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4100
            0x3.p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4101
            0x3.p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4102
            0x3.p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4103
            0x3.p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4104
            0x3.p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4105
            0x3.p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4106
            0x3.p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4107
            0x3.p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4108
            0x3.p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4109
            0x3.p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4110
            0x3.p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4111
            0x3.p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4112
            0x3.p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4113
            0x3.p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4114
            0x3.p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4115
            0x3000000.0000P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4116
            0x3000000.0000P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4117
            0x3000000.0000P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4118
            0x3000000.0000P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4119
            0x3000000.0000P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4120
            0x3000000.0000p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4121
            0x3000000.0000p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4122
            0x3000000.0000p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4123
            0x3000000.0000p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4124
            0x3000000.0000p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4125
            0x3000000.P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4126
            0x3000000.P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4127
            0x3000000.P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4128
            0x3000000.P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4129
            0x3000000.P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4130
            0x3000000.p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4131
            0x3000000.p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4132
            0x3000000.p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4133
            0x3000000.p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4134
            0x3000000.p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4135
            0x3000000P-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4136
            0x3000000P-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4137
            0x3000000P-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4138
            0x3000000P-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4139
            0x3000000P-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4140
            0x3000000p-24,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4141
            0x3000000p-24D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4142
            0x3000000p-24F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4143
            0x3000000p-24d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4144
            0x3000000p-24f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4145
            0x3P+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4146
            0x3P+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4147
            0x3P+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4148
            0x3P+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4149
            0x3P+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4150
            0x3P-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4151
            0x3P-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4152
            0x3P-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4153
            0x3P-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4154
            0x3P-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4155
            0x3P0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4156
            0x3P0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4157
            0x3P0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4158
            0x3P0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4159
            0x3P0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4160
            0x3p+0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4161
            0x3p+0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4162
            0x3p+0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4163
            0x3p+0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4164
            0x3p+0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4165
            0x3p-0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4166
            0x3p-0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4167
            0x3p-0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4168
            0x3p-0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4169
            0x3p-0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4170
            0x3p0,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4171
            0x3p0D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4172
            0x3p0F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4173
            0x3p0d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4174
            0x3p0f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4175
            0xC.0P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4176
            0xC.0P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4177
            0xC.0P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4178
            0xC.0P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4179
            0xC.0P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4180
            0xC.0p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4181
            0xC.0p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4182
            0xC.0p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4183
            0xC.0p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4184
            0xC.0p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4185
            0xC.P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4186
            0xC.P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4187
            0xC.P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4188
            0xC.P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4189
            0xC.P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4190
            0xC.p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4191
            0xC.p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4192
            0xC.p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4193
            0xC.p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4194
            0xC.p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4195
            0xCP-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4196
            0xCP-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4197
            0xCP-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4198
            0xCP-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4199
            0xCP-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4200
            0xCp-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4201
            0xCp-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4202
            0xCp-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4203
            0xCp-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4204
            0xCp-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4205
            0xc.0P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4206
            0xc.0P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4207
            0xc.0P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4208
            0xc.0P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4209
            0xc.0P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4210
            0xc.0p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4211
            0xc.0p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4212
            0xc.0p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4213
            0xc.0p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4214
            0xc.0p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4215
            0xc.P-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4216
            0xc.P-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4217
            0xc.P-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4218
            0xc.P-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4219
            0xc.P-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4220
            0xc.p-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4221
            0xc.p-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4222
            0xc.p-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4223
            0xc.p-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4224
            0xc.p-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4225
            0xcP-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4226
            0xcP-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4227
            0xcP-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4228
            0xcP-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4229
            0xcP-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4230
            0xcp-2,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4231
            0xcp-2D,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4232
            0xcp-2F,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4233
            0xcp-2d,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4234
            0xcp-2f,
06bc494ca11e Initial load
duke
parents:
diff changeset
  4235
        };
06bc494ca11e Initial load
duke
parents:
diff changeset
  4236
06bc494ca11e Initial load
duke
parents:
diff changeset
  4237
        for(int i = 0; i <  testValues.length; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
  4238
            double d = testValues[i];
06bc494ca11e Initial load
duke
parents:
diff changeset
  4239
            if (Math.abs(d) != 3.0)
06bc494ca11e Initial load
duke
parents:
diff changeset
  4240
                throw new RuntimeException("Bad value for literal at index " +
06bc494ca11e Initial load
duke
parents:
diff changeset
  4241
                                           i + "." );
06bc494ca11e Initial load
duke
parents:
diff changeset
  4242
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
  4243
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
  4244
}