Install CMake 3.18.1 for Flutter

This commit is contained in:
Janez T
2026-02-28 20:06:52 +01:00
parent 0dd408e60d
commit 6a83624823
255 changed files with 117346 additions and 18 deletions

View File

@@ -13,7 +13,6 @@ env:
FLUTTER_VERSION: "3.35.6"
APP_NAME: meshcore-sar
ANDROID_NDK_VERSION: "27.0.12077973"
ANDROID_CMAKE_VERSION: "3.18.1"
jobs:
build-android:
@@ -45,13 +44,8 @@ jobs:
with:
path: |
/usr/local/lib/android/sdk/ndk/${{ env.ANDROID_NDK_VERSION }}
/usr/local/lib/android/sdk/cmake/${{ env.ANDROID_CMAKE_VERSION }}
/usr/local/lib/android/sdk/licenses
key: ${{ runner.os }}-android-ndk-${{ env.ANDROID_NDK_VERSION }}-cmake-${{ env.ANDROID_CMAKE_VERSION }}
- name: Install Android CMake
run: |
/usr/local/lib/android/sdk/cmdline-tools/latest/bin/sdkmanager "cmake;${ANDROID_CMAKE_VERSION}"
key: ${{ runner.os }}-android-ndk-${{ env.ANDROID_NDK_VERSION }}
- name: Install dependencies
run: flutter pub get

View File

@@ -1,5 +1,6 @@
import 'dart:typed_data';
import 'package:codec2_flutter/codec2_flutter.dart';
import 'package:flutter/foundation.dart';
import '../utils/voice_message_parser.dart';
export 'package:codec2_flutter/codec2_flutter.dart' show Codec2Mode;
@@ -27,14 +28,24 @@ VoicePacketMode voiceModeForBandwidth(int radioBandwidthHz) {
/// High-level codec service that provides async Codec2 encode/decode
/// executed in a background isolate so the UI thread is never blocked.
class VoiceCodecService {
void _ensureCodec2Supported() {
if (kIsWeb || defaultTargetPlatform != TargetPlatform.iOS) {
throw UnsupportedError('Codec2 is enabled only on iOS.');
}
}
/// Encode [pcm] (Int16 samples, 8000 Hz mono) with [mode].
/// Returns the raw Codec2-encoded bytes.
Future<Uint8List> encode(Int16List pcm, VoicePacketMode mode) =>
Codec2.encodeInIsolate(pcm, codec2ModeFor(mode));
Future<Uint8List> encode(Int16List pcm, VoicePacketMode mode) {
_ensureCodec2Supported();
return Codec2.encodeInIsolate(pcm, codec2ModeFor(mode));
}
/// Decode [codec2Bytes] back to Int16 PCM (8000 Hz mono) with [mode].
Future<Int16List> decode(Uint8List codec2Bytes, VoicePacketMode mode) =>
Codec2.decodeInIsolate(codec2Bytes, codec2ModeFor(mode));
Future<Int16List> decode(Uint8List codec2Bytes, VoicePacketMode mode) {
_ensureCodec2Supported();
return Codec2.decodeInIsolate(codec2Bytes, codec2ModeFor(mode));
}
/// Decode and concatenate multiple [packets] into a single PCM Int16List.
/// Packets with null/missing entries are substituted with silence.
@@ -42,6 +53,7 @@ class VoiceCodecService {
List<VoicePacket?> packets,
VoicePacketMode mode,
) async {
_ensureCodec2Supported();
final c2Mode = codec2ModeFor(mode);
final c2 = Codec2.create(c2Mode);
final spf = c2.samplesPerFrame;

View File

@@ -132,11 +132,9 @@ packages:
codec2_flutter:
dependency: "direct main"
description:
path: "."
ref: HEAD
resolved-ref: "8b0c621bd84deb50d98ad4f2c4b819e0268210d4"
url: "https://github.com/dz0ny/codec2_flutter.git"
source: git
path: "vendor/codec2_flutter_ios_only"
relative: true
source: path
version: "0.1.0"
collection:
dependency: transitive

View File

@@ -47,8 +47,7 @@ dependencies:
# Codec2 ultra-low-bitrate speech codec (FFI plugin)
codec2_flutter:
git:
url: https://github.com/dz0ny/codec2_flutter.git
path: vendor/codec2_flutter_ios_only
ffi: ^2.1.0
# Voice recording (raw PCM stream at 8000 Hz)

View File

@@ -0,0 +1,23 @@
# Dart / Flutter
.dart_tool/
.packages
build/
*.g.dart
# macOS Xcode
*.xcworkspace/
Pods/
macos/Flutter/GeneratedPluginRegistrant.swift
# iOS Xcode
ios/Pods/
ios/Flutter/Debug.xcconfig
ios/Flutter/Release.xcconfig
# Android
android/.gradle/
android/local.properties
android/key.properties
# OS
.DS_Store

View File

View File

@@ -0,0 +1,8 @@
import Flutter
import UIKit
/// Stub plugin class all functionality is exposed via Dart FFI (DynamicLibrary.process()).
/// No method channels are used.
public class Codec2FlutterPlugin: NSObject, FlutterPlugin {
public static func register(with registrar: FlutterPluginRegistrar) {}
}

View File

@@ -0,0 +1,2 @@
/* Separate TU so that 'codes0' etc. do not collide across codebook files. */
#include "../../src/codec2_generated/codebook.c"

View File

@@ -0,0 +1,2 @@
/* Separate TU so that 'codes0' etc. do not collide across codebook files. */
#include "../../src/codec2_generated/codebookd.c"

View File

@@ -0,0 +1,2 @@
/* Separate TU so that 'codes0' etc. do not collide across codebook files. */
#include "../../src/codec2_generated/codebookge.c"

View File

@@ -0,0 +1,2 @@
/* Separate TU so that 'codes0' etc. do not collide across codebook files. */
#include "../../src/codec2_generated/codebookjmv.c"

View File

@@ -0,0 +1,2 @@
/* Separate TU so that 'codes0' etc. do not collide across codebook files. */
#include "../../src/codec2_generated/codebooknewamp1.c"

View File

@@ -0,0 +1,2 @@
/* Separate TU so that 'codes0' etc. do not collide across codebook files. */
#include "../../src/codec2_generated/codebooknewamp1_energy.c"

View File

@@ -0,0 +1,2 @@
/* Separate TU so that 'codes0' etc. do not collide across codebook files. */
#include "../../src/codec2_generated/codebooknewamp2.c"

View File

@@ -0,0 +1,2 @@
/* Separate TU so that 'codes0' etc. do not collide across codebook files. */
#include "../../src/codec2_generated/codebooknewamp2_energy.c"

View File

@@ -0,0 +1,32 @@
// codec2_amalgam.c — Unity build of all Codec2 sources needed for the Flutter FFI plugin.
// CocoaPods only compiles files inside the pod's own directory tree, so we include
// the upstream sources via relative paths from here.
//
// Codec2 source lives at: packages/codec2_flutter/src/codec2/src/
// This file lives at: packages/codec2_flutter/ios/Classes/
// Relative path from here: ../../src/codec2/src/
#define DUMP 0 // disable file-based debug dump in codec2
#define CORTEX_M4 0 // not on an ARM Cortex-M4
#include "../../src/codec2/src/codec2.c"
#include "../../src/codec2/src/lpc.c"
#include "../../src/codec2/src/lsp.c"
#include "../../src/codec2/src/quantise.c"
#include "../../src/codec2/src/phase.c"
#include "../../src/codec2/src/postfilter.c"
#include "../../src/codec2/src/sine.c"
#include "../../src/codec2/src/interp.c"
#include "../../src/codec2/src/nlp.c"
#include "../../src/codec2/src/pack.c"
#include "../../src/codec2/src/dump.c"
#include "../../src/codec2/src/mbest.c"
#include "../../src/codec2/src/newamp1.c"
// codec2_fft.c, kiss_fft.c, and kiss_fftr.c are in separate translation units
// (codec2_fft_wrap.c / kiss_fft_wrap.c / kiss_fftr_wrap.c) because _kiss_fft_guts.h
// has no include guard and would cause redefinition of kiss_fft_state if included twice.
// The 8 codebook*.c files are also compiled as separate TUs (codebook.c, codebookd.c, ...)
// because generate_codebook emits non-static 'codes0'/'codes1'/... arrays that would
// collide if all codebooks were included in a single translation unit.

View File

@@ -0,0 +1,4 @@
/* Compiled as a separate translation unit to avoid _kiss_fft_guts.h redefinition. */
#define DUMP 0
#define CORTEX_M4 0
#include "../../src/codec2/src/codec2_fft.c"

View File

@@ -0,0 +1,4 @@
/* Compiled as a separate translation unit to avoid _kiss_fft_guts.h redefinition. */
#define DUMP 0
#define CORTEX_M4 0
#include "../../src/codec2/src/kiss_fft.c"

View File

@@ -0,0 +1,4 @@
/* Compiled as a separate translation unit to avoid _kiss_fft_guts.h redefinition. */
#define DUMP 0
#define CORTEX_M4 0
#include "../../src/codec2/src/kiss_fftr.c"

View File

@@ -0,0 +1,26 @@
Pod::Spec.new do |s|
s.name = 'codec2_flutter'
s.version = '0.1.0'
s.summary = 'Flutter FFI plugin wrapping Codec2 ultra-low-bitrate speech codec.'
s.homepage = 'https://github.com/dz0ny/meshcore-sar'
s.license = { :type => 'LGPL-2.1', :file => '../src/codec2/COPYING' }
s.author = { 'MeshCore SAR' => 'noreply@example.com' }
s.source = { :path => '.' }
s.platform = :ios, '12.0'
s.swift_version = '5.0'
# All Codec2 C sources are unity-built via Classes/codec2_amalgam.c,
# which #includes them relative to that file. CocoaPods only picks up
# files inside the pod directory tree, so we cannot reference ../src directly.
s.source_files = 'Classes/**/*'
s.public_header_files = []
s.pod_target_xcconfig = {
'HEADER_SEARCH_PATHS' => "$(PODS_TARGET_SRCROOT)/../src/codec2/src $(PODS_TARGET_SRCROOT)/../src/codec2_generated",
'GCC_PREPROCESSOR_DEFINITIONS' => 'DUMP=0 CORTEX_M4=0',
'DEFINES_MODULE' => 'YES',
}
s.dependency 'Flutter'
end

View File

@@ -0,0 +1,231 @@
import 'dart:ffi';
import 'dart:io';
import 'dart:typed_data';
import 'dart:isolate';
import 'package:ffi/ffi.dart';
// ── Codec2 mode constants (match codec2.h) ───────────────────────────────────
/// Codec2 operating modes.
/// Numeric values match the C constants in codec2.h.
enum Codec2Mode {
/// 2400 bps — higher quality, ~300 bytes/sec output at 8kHz.
mode2400(1),
/// 1300 bps — good quality for LoRa, ~175 bytes/sec at 8kHz (25 fps × 7 B).
mode1300(4),
/// 1200 bps — ~150 bytes/sec at 8kHz (25 fps × 6 B).
mode1200(5),
/// 700C bps — minimum bandwidth for very narrow LoRa / ham radio channels.
/// ~100 bytes/sec output at 8kHz.
mode700c(6);
const Codec2Mode(this.c2ModeId);
/// The integer passed to codec2_create() in C.
final int c2ModeId;
/// Audio frames per second for this mode (all modes use 8000 Hz sample rate).
int get framesPerSecond => this == mode2400 ? 50 : 25;
/// Samples per frame (8000 Hz / framesPerSecond).
int get samplesPerFrame => 8000 ~/ framesPerSecond;
/// Payload bytes per second (bitsPerFrame × framesPerSecond / 8).
/// Used to calculate packet duration for the 172-byte BLE frame limit.
int get bytesPerSecond {
switch (this) {
case mode700c:
return 100; // ceil(28/8)=4 B × 25 fps
case mode1200:
return 150; // 6 B × 25 fps
case mode1300:
return 175; // ceil(52/8)=7 B × 25 fps
case mode2400:
return 300; // 6 B × 50 fps
}
}
/// Maximum Codec2 bytes per radio packet.
/// MAX_FRAME_SIZE=172, minus 4 bytes pushRawData header, minus 8 bytes voice header.
static const int _maxBytesPerPacket = 160;
/// Optimal packet duration in milliseconds so the encoded data fits in one BLE frame.
/// Calculated as: floor(maxBytes / bytesPerFrame) frames × frame duration.
int get packetDurationMs {
final bytesPerFrame = bytesPerSecond / framesPerSecond; // e.g. 6 B for 1200
final framesPerPacket = (_maxBytesPerPacket / bytesPerFrame).floor();
return (framesPerPacket * 1000 ~/ framesPerSecond);
}
}
// ── Native type definitions ──────────────────────────────────────────────────
typedef _Codec2CreateFn = Pointer<Void> Function(Int32 mode);
typedef _Codec2CreateDart = Pointer<Void> Function(int mode);
typedef _Codec2DestroyFn = Void Function(Pointer<Void> c2);
typedef _Codec2DestroyDart = void Function(Pointer<Void> c2);
typedef _Codec2EncodeFn = Void Function(Pointer<Void> c2, Pointer<Uint8> bits, Pointer<Int16> speech);
typedef _Codec2EncodeDart = void Function(Pointer<Void> c2, Pointer<Uint8> bits, Pointer<Int16> speech);
typedef _Codec2DecodeFn = Void Function(Pointer<Void> c2, Pointer<Int16> speech, Pointer<Uint8> bits);
typedef _Codec2DecodeDart = void Function(Pointer<Void> c2, Pointer<Int16> speech, Pointer<Uint8> bits);
typedef _Codec2IntFn = Int32 Function(Pointer<Void> c2);
typedef _Codec2IntDart = int Function(Pointer<Void> c2);
// ── Library loader ────────────────────────────────────────────────────────────
DynamicLibrary _loadLib() {
if (Platform.isAndroid) return DynamicLibrary.open('libcodec2_flutter.so');
// iOS & macOS link statically via CocoaPods — all symbols live in the process.
return DynamicLibrary.process();
}
// ── Codec2 instance ───────────────────────────────────────────────────────────
/// A single Codec2 encoder/decoder instance.
///
/// Create with [Codec2.create], call [encode]/[decode], then [destroy].
///
/// **Thread safety**: each instance must be used from a single thread/isolate.
/// Use [Codec2.encodeInIsolate] / [Codec2.decodeInIsolate] for off-UI encoding.
class Codec2 {
Codec2._(this._c2, this._lib, this.mode);
final Pointer<Void> _c2;
final DynamicLibrary _lib;
final Codec2Mode mode;
late final _Codec2EncodeDart _encode =
_lib.lookupFunction<_Codec2EncodeFn, _Codec2EncodeDart>('codec2_encode');
late final _Codec2DecodeDart _decode =
_lib.lookupFunction<_Codec2DecodeFn, _Codec2DecodeDart>('codec2_decode');
late final _Codec2IntDart _samplesPerFrame =
_lib.lookupFunction<_Codec2IntFn, _Codec2IntDart>('codec2_samples_per_frame');
late final _Codec2IntDart _bitsPerFrame =
_lib.lookupFunction<_Codec2IntFn, _Codec2IntDart>('codec2_bits_per_frame');
/// Samples per frame for this codec mode.
int get samplesPerFrame => _samplesPerFrame(_c2);
/// Bits per frame for this codec mode.
int get bitsPerFrame => _bitsPerFrame(_c2);
/// Bytes per frame (rounded up from bitsPerFrame).
int get bytesPerFrame => (bitsPerFrame + 7) ~/ 8;
/// Create a new Codec2 instance for [mode].
static Codec2 create(Codec2Mode mode) {
final lib = _loadLib();
final createFn =
lib.lookupFunction<_Codec2CreateFn, _Codec2CreateDart>('codec2_create');
final c2 = createFn(mode.c2ModeId);
if (c2 == nullptr) throw StateError('codec2_create(${mode.c2ModeId}) returned null');
return Codec2._(c2, lib, mode);
}
/// Encode [pcmSamples] (Int16, 8000 Hz mono) to Codec2 bytes.
///
/// [pcmSamples.length] must be a multiple of [samplesPerFrame].
Uint8List encode(Int16List pcmSamples) {
final spf = samplesPerFrame;
final bpf = bytesPerFrame;
final nFrames = pcmSamples.length ~/ spf;
if (nFrames == 0) return Uint8List(0);
final outputBytes = nFrames * bpf;
final speechPtr = calloc<Int16>(spf);
final bitsPtr = calloc<Uint8>(bpf);
final result = Uint8List(outputBytes);
try {
for (var f = 0; f < nFrames; f++) {
// Copy one frame of PCM into native memory
for (var s = 0; s < spf; s++) {
speechPtr[s] = pcmSamples[f * spf + s];
}
_encode(_c2, bitsPtr, speechPtr);
// Copy encoded bits into result
final offset = f * bpf;
for (var b = 0; b < bpf; b++) {
result[offset + b] = bitsPtr[b];
}
}
} finally {
calloc.free(speechPtr);
calloc.free(bitsPtr);
}
return result;
}
/// Decode Codec2 [encoded] bytes to Int16 PCM samples (8000 Hz mono).
///
/// [encoded.length] must be a multiple of [bytesPerFrame].
Int16List decode(Uint8List encoded) {
final spf = samplesPerFrame;
final bpf = bytesPerFrame;
final nFrames = encoded.length ~/ bpf;
if (nFrames == 0) return Int16List(0);
final totalSamples = nFrames * spf;
final speechPtr = calloc<Int16>(spf);
final bitsPtr = calloc<Uint8>(bpf);
final result = Int16List(totalSamples);
try {
for (var f = 0; f < nFrames; f++) {
final offset = f * bpf;
for (var b = 0; b < bpf; b++) {
bitsPtr[b] = encoded[offset + b];
}
_decode(_c2, speechPtr, bitsPtr);
final sOffset = f * spf;
for (var s = 0; s < spf; s++) {
result[sOffset + s] = speechPtr[s];
}
}
} finally {
calloc.free(speechPtr);
calloc.free(bitsPtr);
}
return result;
}
/// Free the native Codec2 instance. Must be called when done.
void destroy() {
final destroyFn =
_lib.lookupFunction<_Codec2DestroyFn, _Codec2DestroyDart>('codec2_destroy');
destroyFn(_c2);
}
// ── Isolate helpers ──────────────────────────────────────────────────────
/// Encode [pcm] in a separate [Isolate] (avoids blocking the UI thread).
static Future<Uint8List> encodeInIsolate(Int16List pcm, Codec2Mode mode) {
return Isolate.run(() {
final c2 = Codec2.create(mode);
try {
return c2.encode(pcm);
} finally {
c2.destroy();
}
});
}
/// Decode [encoded] bytes in a separate [Isolate].
static Future<Int16List> decodeInIsolate(Uint8List encoded, Codec2Mode mode) {
return Isolate.run(() {
final c2 = Codec2.create(mode);
try {
return c2.decode(encoded);
} finally {
c2.destroy();
}
});
}
}

View File

@@ -0,0 +1,197 @@
# Generated by pub
# See https://dart.dev/tools/pub/glossary#lockfile
packages:
async:
dependency: transitive
description:
name: async
sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
url: "https://pub.dev"
source: hosted
version: "2.13.0"
boolean_selector:
dependency: transitive
description:
name: boolean_selector
sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea"
url: "https://pub.dev"
source: hosted
version: "2.1.2"
characters:
dependency: transitive
description:
name: characters
sha256: f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803
url: "https://pub.dev"
source: hosted
version: "1.4.0"
clock:
dependency: transitive
description:
name: clock
sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b
url: "https://pub.dev"
source: hosted
version: "1.1.2"
collection:
dependency: transitive
description:
name: collection
sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76"
url: "https://pub.dev"
source: hosted
version: "1.19.1"
fake_async:
dependency: transitive
description:
name: fake_async
sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
url: "https://pub.dev"
source: hosted
version: "1.3.3"
ffi:
dependency: "direct main"
description:
name: ffi
sha256: "6d7fd89431262d8f3125e81b50d3847a091d846eafcd4fdb88dd06f36d705a45"
url: "https://pub.dev"
source: hosted
version: "2.2.0"
flutter:
dependency: "direct main"
description: flutter
source: sdk
version: "0.0.0"
flutter_test:
dependency: "direct dev"
description: flutter
source: sdk
version: "0.0.0"
leak_tracker:
dependency: transitive
description:
name: leak_tracker
sha256: "33e2e26bdd85a0112ec15400c8cbffea70d0f9c3407491f672a2fad47915e2de"
url: "https://pub.dev"
source: hosted
version: "11.0.2"
leak_tracker_flutter_testing:
dependency: transitive
description:
name: leak_tracker_flutter_testing
sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
url: "https://pub.dev"
source: hosted
version: "3.0.10"
leak_tracker_testing:
dependency: transitive
description:
name: leak_tracker_testing
sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
url: "https://pub.dev"
source: hosted
version: "3.0.2"
matcher:
dependency: transitive
description:
name: matcher
sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2
url: "https://pub.dev"
source: hosted
version: "0.12.17"
material_color_utilities:
dependency: transitive
description:
name: material_color_utilities
sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
url: "https://pub.dev"
source: hosted
version: "0.11.1"
meta:
dependency: transitive
description:
name: meta
sha256: "23f08335362185a5ea2ad3a4e597f1375e78bce8a040df5c600c8d3552ef2394"
url: "https://pub.dev"
source: hosted
version: "1.17.0"
path:
dependency: transitive
description:
name: path
sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
url: "https://pub.dev"
source: hosted
version: "1.9.1"
sky_engine:
dependency: transitive
description: flutter
source: sdk
version: "0.0.0"
source_span:
dependency: transitive
description:
name: source_span
sha256: "56a02f1f4cd1a2d96303c0144c93bd6d909eea6bee6bf5a0e0b685edbd4c47ab"
url: "https://pub.dev"
source: hosted
version: "1.10.2"
stack_trace:
dependency: transitive
description:
name: stack_trace
sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
url: "https://pub.dev"
source: hosted
version: "1.12.1"
stream_channel:
dependency: transitive
description:
name: stream_channel
sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
url: "https://pub.dev"
source: hosted
version: "2.1.4"
string_scanner:
dependency: transitive
description:
name: string_scanner
sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
url: "https://pub.dev"
source: hosted
version: "1.4.1"
term_glyph:
dependency: transitive
description:
name: term_glyph
sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
url: "https://pub.dev"
source: hosted
version: "1.2.2"
test_api:
dependency: transitive
description:
name: test_api
sha256: ab2726c1a94d3176a45960b6234466ec367179b87dd74f1611adb1f3b5fb9d55
url: "https://pub.dev"
source: hosted
version: "0.7.7"
vector_math:
dependency: transitive
description:
name: vector_math
sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
url: "https://pub.dev"
source: hosted
version: "2.2.0"
vm_service:
dependency: transitive
description:
name: vm_service
sha256: "45caa6c5917fa127b5dbcfbd1fa60b14e583afdc08bfc96dda38886ca252eb60"
url: "https://pub.dev"
source: hosted
version: "15.0.2"
sdks:
dart: ">=3.9.2 <4.0.0"
flutter: ">=3.18.0-18.0.pre.54"

View File

@@ -0,0 +1,23 @@
name: codec2_flutter
description: Flutter FFI plugin wrapping the Codec2 ultra-low-bitrate speech codec.
version: 0.1.0
publish_to: 'none'
environment:
sdk: ^3.9.2
flutter: ">=3.0.0"
dependencies:
flutter:
sdk: flutter
ffi: ^2.1.0
dev_dependencies:
flutter_test:
sdk: flutter
flutter:
plugin:
platforms:
ios:
ffiPlugin: true

View File

@@ -0,0 +1,387 @@
#
# Generated sources
#
set(D ${CMAKE_CURRENT_SOURCE_DIR}/codebook)
# lsp quantisers (2400/1400/1300 modes)
set(CODEBOOKS
${D}/lsp1.txt
${D}/lsp2.txt
${D}/lsp3.txt
${D}/lsp4.txt
${D}/lsp5.txt
${D}/lsp6.txt
${D}/lsp7.txt
${D}/lsp8.txt
${D}/lsp9.txt
${D}/lsp10.txt
)
# lspd quantisers (3200 mode)
set(CODEBOOKSD
${D}/dlsp1.txt
${D}/dlsp2.txt
${D}/dlsp3.txt
${D}/dlsp4.txt
${D}/dlsp5.txt
${D}/dlsp6.txt
${D}/dlsp7.txt
${D}/dlsp8.txt
${D}/dlsp9.txt
${D}/dlsp10.txt
)
# LSP VQ (1200 mode)
set(CODEBOOKSJMV
${D}/lspjmv1.txt
${D}/lspjmv2.txt
${D}/lspjmv3.txt
)
# Joint Wo-energy VQ (1200 mode)
set(CODEBOOKSGE ${D}/gecb.txt)
# 700C two stage VQ
set(CODEBOOKSNEWAMP1
${D}/train_120_1.txt
${D}/train_120_2.txt
)
set(CODEBOOKSNEWAMP1_ENERGY
${D}/newamp1_energy_q.txt
)
# 450 mode two stage VQ
set(CODEBOOKSNEWAMP2
${D}/codes_450.txt
)
set(CODEBOOKSNEWAMP2_ENERGY
${D}/newamp2_energy_q.txt
)
# when crosscompiling we need a native executable
if(CMAKE_CROSSCOMPILING)
set(CMAKE_DISABLE_SOURCE_CHANGES OFF)
include(ExternalProject)
ExternalProject_Add(codec2_native
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/..
BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/codec2_native
BUILD_COMMAND ${CMAKE_COMMAND} --build . --target generate_codebook
INSTALL_COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/codec2_native/src/generate_codebook ${CMAKE_CURRENT_BINARY_DIR}
BUILD_BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/generate_codebook
)
add_executable(generate_codebook IMPORTED)
set_target_properties(generate_codebook PROPERTIES
IMPORTED_LOCATION ${CMAKE_CURRENT_BINARY_DIR}/generate_codebook)
add_dependencies(generate_codebook codec2_native)
set(CMAKE_DISABLE_SOURCE_CHANGES ON)
else(CMAKE_CROSSCOMPILING)
# Build code generator binaries. These do not get installed.
# generate_codebook
add_executable(generate_codebook generate_codebook.c)
target_link_libraries(generate_codebook m)
# Make native builds available for cross-compiling.
export(TARGETS generate_codebook
FILE ${CMAKE_BINARY_DIR}/ImportExecutables.cmake)
endif(CMAKE_CROSSCOMPILING)
# codebook.c
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/codebook.c
COMMAND generate_codebook lsp_cb ${CODEBOOKS} > ${CMAKE_CURRENT_BINARY_DIR}/codebook.c
DEPENDS generate_codebook ${CODEBOOKS}
)
# codebookd.c
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/codebookd.c
COMMAND generate_codebook lsp_cbd ${CODEBOOKSD} > ${CMAKE_CURRENT_BINARY_DIR}/codebookd.c
DEPENDS generate_codebook ${CODEBOOKSD}
)
# codebookjmv.c
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/codebookjmv.c
COMMAND generate_codebook lsp_cbjmv ${CODEBOOKSJMV} > ${CMAKE_CURRENT_BINARY_DIR}/codebookjmv.c
DEPENDS generate_codebook ${CODEBOOKSJMV}
)
# codebookge.c
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/codebookge.c
COMMAND generate_codebook ge_cb ${CODEBOOKSGE} > ${CMAKE_CURRENT_BINARY_DIR}/codebookge.c
DEPENDS generate_codebook ${CODEBOOKSGE}
)
# codebooknewamp1.c
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/codebooknewamp1.c
COMMAND generate_codebook newamp1vq_cb ${CODEBOOKSNEWAMP1} > ${CMAKE_CURRENT_BINARY_DIR}/codebooknewamp1.c
DEPENDS generate_codebook ${CODEBOOKSNEWAMP1}
)
# codebooknewamp1_energy.c
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/codebooknewamp1_energy.c
COMMAND generate_codebook newamp1_energy_cb ${CODEBOOKSNEWAMP1_ENERGY} > ${CMAKE_CURRENT_BINARY_DIR}/codebooknewamp1_energy.c
DEPENDS generate_codebook ${CODEBOOKSNEWAMP1_ENERGY}
)
# codebooknewamp2.c
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/codebooknewamp2.c
COMMAND generate_codebook newamp2vq_cb ${CODEBOOKSNEWAMP2} > ${CMAKE_CURRENT_BINARY_DIR}/codebooknewamp2.c
DEPENDS generate_codebook ${CODEBOOKSNEWAMP2}
)
# codebooknewamp2_energy.c
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/codebooknewamp2_energy.c
COMMAND generate_codebook newamp2_energy_cb ${CODEBOOKSNEWAMP2_ENERGY} > ${CMAKE_CURRENT_BINARY_DIR}/codebooknewamp2_energy.c
DEPENDS generate_codebook ${CODEBOOKSNEWAMP2_ENERGY}
)
#
# codec2 library sources
#
set(CODEC2_SRCS
dump.c
lpc.c
nlp.c
postfilter.c
sine.c
codec2.c
codec2_fft.c
cohpsk.c
codec2_fifo.c
fdmdv.c
fm.c
fsk.c
fmfsk.c
kiss_fft.c
kiss_fftr.c
linreg.c
interp.c
lsp.c
mbest.c
newamp1.c
ofdm.c
ofdm_mode.c
phase.c
quantise.c
pack.c
codebook.c
codebookd.c
codebookjmv.c
codebookge.c
codebooknewamp1.c
codebooknewamp1_energy.c
codebooknewamp2.c
codebooknewamp2_energy.c
golay23.c
freedv_api.c
freedv_1600.c
freedv_700.c
freedv_2020.c
freedv_fsk.c
freedv_vhf_framing.c
freedv_data_channel.c
varicode.c
modem_stats.c
ofdm.c
mpdecode_core.c
phi0.c
gp_interleaver.c
interldpc.c
filter.c
HRA_112_112.c
HRA_56_56.c
HRAb_396_504.c
H_256_768_22.c
H_256_512_4.c
HRAa_1536_512.c
H_128_256_5.c
H_2064_516_sparse.c
H_4096_8192_3d.c
H_16200_9720.c
H_1024_2048_4f.c
H_212_158.c
ldpc_codes.c
lpcnet_freq.c
reliable_text.c
)
set(CODEC2_PUBLIC_HEADERS
codec2.h
codec2_fdmdv.h
codec2_cohpsk.h
codec2_fm.h
codec2_ofdm.h
fsk.h
codec2_fifo.h
comp.h
modem_stats.h
freedv_api.h
reliable_text.h
codec2_math.h
${CODEC2_VERSION_PATH}/version.h
)
#
# Debug options
#
#add_definitions(-DDEBUG_ALLOC)
#
# Setup the codec2 library
#
# Patch level version bumps should not change API/ABI.
set(SOVERSION "${CODEC2_VERSION_MAJOR}.${CODEC2_VERSION_MINOR}")
message(STATUS "codec2 version: ${CODEC2_VERSION}")
add_library(codec2 ${CODEC2_SRCS})
if(UNIX)
target_link_libraries(codec2 PUBLIC m)
endif(UNIX)
if(LPCNET AND lpcnetfreedv_FOUND)
target_link_libraries(codec2 PRIVATE lpcnetfreedv)
endif()
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
set_target_properties(codec2 PROPERTIES
SOVERSION ${SOVERSION}
PUBLIC_HEADER "${CODEC2_PUBLIC_HEADERS}"
)
# Required include directories for export
target_include_directories(codec2 INTERFACE
$<INSTALL_INTERFACE:include/codec2>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
$<BUILD_INTERFACE:${CMAKE_BINARY_DIR}>
)
# Export config for import from full install
install(EXPORT codec2-config
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/codec2
)
# Export config for import from build tree.
export(TARGETS codec2
FILE ${CMAKE_BINARY_DIR}/codec2.cmake
)
add_executable(c2enc c2enc.c)
target_link_libraries(c2enc codec2)
add_executable(c2dec c2dec.c)
target_link_libraries(c2dec codec2)
add_executable(c2sim c2sim.c sd.c)
target_link_libraries(c2sim codec2)
add_executable(fdmdv_get_test_bits fdmdv_get_test_bits.c fdmdv.c kiss_fft.c codec2_fft.c kiss_fftr.c)
target_link_libraries(fdmdv_get_test_bits m)
add_executable(fdmdv_mod fdmdv_mod.c fdmdv.c kiss_fft.c codec2_fft.c kiss_fftr.c)
target_link_libraries(fdmdv_mod m)
add_executable(fdmdv_demod fdmdv_demod.c fdmdv.c kiss_fft.c octave.c modem_stats.c codec2_fft.c kiss_fftr.c)
target_link_libraries(fdmdv_demod m)
add_executable(fdmdv_put_test_bits fdmdv_put_test_bits.c fdmdv.c kiss_fft.c codec2_fft.c kiss_fftr.c)
target_link_libraries(fdmdv_put_test_bits m)
add_executable(freedv_tx freedv_tx.c)
target_link_libraries(freedv_tx codec2)
add_executable(freedv_rx freedv_rx.c)
target_link_libraries(freedv_rx codec2)
add_executable(freedv_data_raw_tx freedv_data_raw_tx.c)
target_link_libraries(freedv_data_raw_tx codec2)
add_executable(freedv_data_raw_rx freedv_data_raw_rx.c octave.c)
target_link_libraries(freedv_data_raw_rx codec2)
add_executable(freedv_data_tx freedv_data_tx.c)
target_link_libraries(freedv_data_tx codec2)
add_executable(freedv_data_rx freedv_data_rx.c)
target_link_libraries(freedv_data_rx codec2)
add_executable(freedv_mixed_tx freedv_mixed_tx.c)
target_link_libraries(freedv_mixed_tx codec2)
add_executable(freedv_mixed_rx freedv_mixed_rx.c)
target_link_libraries(freedv_mixed_rx codec2)
add_executable(fsk_mod fsk_mod.c)
target_link_libraries(fsk_mod codec2)
add_executable(fsk_demod fsk_demod.c modem_probe.c octave.c)
target_link_libraries(fsk_demod codec2)
add_executable(fsk_get_test_bits fsk_get_test_bits.c)
target_link_libraries(fsk_get_test_bits)
add_executable(fsk_put_test_bits fsk_put_test_bits.c)
target_link_libraries(fsk_put_test_bits codec2)
add_executable(framer framer.c)
target_link_libraries(framer)
add_executable(deframer deframer.c)
target_link_libraries(deframer)
add_executable(cohpsk_mod cohpsk_mod.c)
target_link_libraries(cohpsk_mod codec2)
add_executable(ofdm_get_test_bits ofdm_get_test_bits.c)
target_link_libraries(ofdm_get_test_bits codec2)
add_executable(ofdm_put_test_bits ofdm_put_test_bits.c)
target_link_libraries(ofdm_put_test_bits codec2)
add_executable(ofdm_mod ofdm_mod.c)
target_link_libraries(ofdm_mod codec2)
add_executable(ofdm_demod ofdm_demod.c octave.c)
target_link_libraries(ofdm_demod codec2)
add_executable(vhf_deframe_c2 vhf_deframe_c2.c)
target_link_libraries(vhf_deframe_c2 codec2)
add_executable(vhf_frame_c2 vhf_frame_c2.c)
target_link_libraries(vhf_frame_c2 codec2)
add_executable(cohpsk_demod cohpsk_demod.c octave.c)
target_link_libraries(cohpsk_demod codec2)
add_executable(cohpsk_get_test_bits cohpsk_get_test_bits.c)
target_link_libraries(cohpsk_get_test_bits codec2)
add_executable(cohpsk_put_test_bits cohpsk_put_test_bits.c octave.c)
target_link_libraries(cohpsk_put_test_bits codec2)
add_executable(ch ch.c)
target_link_libraries(ch codec2)
add_executable(tollr tollr.c)
add_executable(ldpc_noise ldpc_noise.c)
target_link_libraries(ldpc_noise m)
add_executable(ldpc_enc ldpc_enc.c)
target_link_libraries(ldpc_enc codec2)
add_executable(ldpc_dec ldpc_dec.c)
target_link_libraries(ldpc_dec codec2)
install(TARGETS codec2 EXPORT codec2-config
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT lib
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} COMPONENT lib
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/codec2 COMPONENT dev
)

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,145 @@
/*
FILE....: HRA_112_112.c
Static arrays for LDPC codec HRA_112_112, generated by ldpc_gen_c_h_file.m.
*/
#include "HRA_112_112.h"
#include <stdint.h>
const uint16_t HRA_112_112_H_rows[] = {
22, 18, 15, 63, 16, 13, 1, 2, 29, 25, 28, 4, 36, 10, 38,
7, 60, 23, 11, 38, 28, 1, 12, 31, 57, 45, 57, 30, 23, 59,
67, 14, 16, 4, 14, 62, 15, 50, 7, 70, 64, 6, 42, 48, 9,
31, 19, 40, 49, 2, 25, 3, 41, 49, 36, 9, 29, 39, 31, 5,
17, 1, 29, 25, 11, 21, 18, 2, 8, 22, 39, 15, 8, 22, 13,
3, 19, 4, 21, 62, 34, 43, 6, 24, 17, 60, 8, 74, 6, 44,
60, 10, 33, 12, 26, 24, 45, 81, 69, 80, 41, 28, 23, 5, 10,
20, 52, 18, 13, 86, 3, 7, 59, 21, 65, 72, 34, 37, 26, 55,
47, 48, 34, 5, 44, 47, 68, 96, 82, 111, 61, 74, 30, 17, 55,
98, 81, 66, 89, 35, 74, 82, 91, 51, 55, 51, 30, 89, 61, 75,
40, 71, 73, 11, 56, 54, 19, 47, 94, 69, 64, 20, 64, 12, 54,
77, 42, 88, 36, 52, 90, 63, 70, 27, 32, 73, 91, 32, 56, 46,
9, 78, 51, 68, 88, 67, 20, 43, 40, 14, 66, 86, 39, 97, 38,
27, 50, 84, 54, 92, 61, 46, 67, 24, 58, 35, 58, 37, 98, 85,
73, 84, 48, 35, 57, 16, 26, 37, 65, 32, 72, 95, 107, 33, 77,
33, 85, 105, 106, 75, 56, 71, 79, 59, 52, 105, 79, 90, 93, 100,
88, 112, 86, 80, 65, 42, 106, 100, 93, 94, 99, 97, 93, 101, 111,
99, 83, 53, 85, 95, 108, 107, 41, 109, 84, 78, 104, 101, 69, 110,
98, 103, 80, 83, 77, 71, 76, 78, 87, 102, 104, 95, 96, 83, 87,
50, 110, 103, 112, 45, 58, 70, 94, 91, 89, 81, 101, 82, 63, 72,
100, 97, 76, 112, 53, 105, 49, 75, 109, 102, 66, 111, 68, 87, 92,
79, 96, 43, 90, 44, 110, 99, 102, 92, 103, 106, 62, 53, 27, 46,
108, 104, 107, 108, 109, 76};
const uint16_t HRA_112_112_H_cols[] = {
7, 8, 52, 12, 12, 42, 16, 69, 45, 14, 19, 23, 6, 32, 3,
5, 22, 2, 45, 50, 2, 1, 18, 84, 10, 7, 62, 11, 9, 21,
24, 63, 2, 5, 28, 13, 6, 15, 58, 39, 39, 22, 76, 13, 26,
68, 9, 10, 49, 38, 32, 11, 34, 44, 8, 7, 25, 67, 1, 17,
19, 36, 4, 41, 3, 26, 31, 15, 45, 40, 8, 4, 41, 20, 6,
53, 1, 42, 9, 20, 25, 17, 33, 41, 3, 19, 55, 17, 27, 14,
31, 88, 15, 26, 36, 16, 28, 24, 27, 16, 30, 56, 48, 43, 4,
5, 38, 37, 40, 46, 18, 18, 22, 50, 76, 34, 60, 83, 39, 73,
56, 92, 42, 52, 75, 35, 37, 33, 61, 67, 47, 75, 66, 70, 29,
92, 51, 95, 84, 21, 57, 28, 46, 66, 93, 11, 94, 55, 96, 20,
71, 48, 53, 43, 82, 90, 66, 90, 14, 44, 54, 62, 34, 58, 81,
53, 23, 43, 27, 93, 10, 86, 37, 80, 60, 49, 21, 79, 74, 72,
48, 61, 40, 76, 64, 29, 38, 79, 51, 54, 13, 49, 72, 30, 50,
86, 35, 80, 61, 56, 36, 59, 65, 91, 25, 47, 58, 59, 78, 47,
32, 24, 44, 86, 64, 57, 12, 23, 109, 107, 85, 63, 31, 65, 62,
68, 111, 78, 104, 89, 112, 87, 69, 105, 65, 94, 109, 78, 72, 104,
85, 108, 77, 106, 79, 74, 103, 96, 64, 105, 105, 102, 63, 35, 59,
108, 112, 81, 102, 57, 106, 83, 81, 77, 101, 55, 94, 96, 97, 106,
46, 101, 83, 85, 71, 107, 104, 87, 33, 67, 103, 95, 30, 91, 89,
103, 75, 51, 107, 87, 91, 89, 99, 68, 52, 109, 99, 88, 84, 112,
54, 70, 92, 100, 98, 74, 60, 100, 98, 110, 90, 73, 71, 95, 70,
100, 29, 69, 110, 93, 82, 97, 98, 77, 73, 99, 101, 108, 82, 102,
111, 110, 111, 97, 88, 80};
const float HRA_112_112_input[] = {
-3.7496794787890972, 14.372112019392226, -7.5640452729302359,
6.9426063455159657, 5.3103644888713299, -6.9203550501252273,
8.4296575778653775, 13.495087143587781, 18.111520666852243,
-9.9125748623510912, 10.601298534930972, -10.468591112149715,
-9.0757329437720475, -14.471433733514324, 5.2048820572852641,
-11.353785810284556, -9.4511008284496416, -9.5255219979484025,
-2.0499245561876696, -9.8739646459388748, 22.03442141444015,
-9.9745566449839878, -8.4276711655946226, -4.9811962116476307,
-13.018434575859896, -5.3358535334627293, -5.6704294937789648,
14.243964608060018, -11.417925510314507, 9.1332657371467878,
-14.380214782394296, 14.090409878618974, 6.5602278279998272,
15.53025696352436, -9.1752771765906616, -11.384503450560766,
12.240329442222599, -12.640059450058276, -11.824715154614376,
-13.487656131954735, 15.38073452845444, -13.816294924566529,
6.3461114450644454, -2.5192445130977559, -11.916088712873863,
5.4360722876642518, 0.038031547223147381, -12.367220238860654,
-2.747864039796549, -14.920508782249289, 16.487336720060863,
-13.290002442259247, 19.142698450560925, -0.39443060583296108,
11.723442316413736, -3.6131702833965047, -4.6196487103817017,
-11.794290650694531, -14.342351103186955, 2.8079943208330334,
-15.290175151123936, 9.0801740558512414, 10.184385069676226,
8.400722260237572, 9.3504690108712936, -14.223531676384166,
11.752768386971752, 11.36995822251677, -15.285021241405444,
-13.070613695054403, -11.869191325617697, 4.3191750845563401,
2.0836933404582791, -16.363829786416495, -5.7778094839806595,
11.06389861779129, 13.285433846434705, 9.2552396418849021,
-11.065999403824057, -10.167040394420443, -7.0107225044503565,
2.3886881673282474, 5.0014484787306932, -9.2464083853314278,
-12.043309174487364, -11.638411967211738, -16.302815497922911,
13.347129717938067, -4.1390259986125226, 0.7947480277507295,
11.538620744796759, -7.4410706619926028, 14.572449028311253,
12.392747919231169, -3.3027890746379289, -9.8431096813736687,
11.582657487369399, -7.85736442083219, -7.3780721969188443,
-7.4006260265172212, -8.3937994980934327, -6.6804071011469555,
19.656301355404196, 1.1084340389939762, 3.6028635453146465,
-4.5409495140900562, 7.3831459854578982, -5.5905999874445662,
-13.852328482738232, 8.9999210644983041, 8.4742375282492315,
16.989947243749878, 7.5590035165610168, -6.154674423116183,
4.1119120658251855, 12.351217703790844, 11.070972687846792,
11.182587746846833, -4.9345619923565645, 9.0054892370887334,
-10.841725474869696, 13.902796293412067, -6.7575171884905396,
-5.8196703210757335, 1.9284357540668857, 9.9905382141440455,
-13.983067199220674, -4.9130522479706453, -8.2369300184767908,
6.8953565265629644, 2.9285103862640871, -2.6303471135655325,
-8.3563361642086047, 9.5712349244763715, 4.9728623009661161,
-11.045088919587242, -5.7781337596219604, -17.732999074602972,
8.1353860976076646, -11.066240843831284, -1.7079574457159534,
-16.411685365171998, -9.0471090651358299, -10.959376227315447,
8.5840398495674126, 6.6373658260736024, 11.422094029020409,
14.85785089306844, 13.185747281780415, 4.2063935223916191,
-6.9166135608899282, 10.843153262137262, 5.3913075109409441,
-10.744469667642237, -12.491640291445655, 14.141118162062066,
16.425476099516025, 9.8833761863476042, 2.8719064151687883,
14.982021915112442, 1.3588165304065343, -11.657839635726177,
11.066314862965077, -3.0565490195476204, 1.7820159270701772,
-13.535333311782074, 4.4026933190218367, -11.097334550496313,
-11.322820869044248, 16.418516996530371, 5.8239202459876136,
15.054905601216154, -9.3058742038490152, 8.48902767802557,
-8.3853534273227748, -7.9255089736435176, -9.6156735881618811,
11.502594413898008, -6.0542015398269911, 7.1229229147355149,
0.31483632310264387, -11.482093481730768, -9.3225703551629309,
5.8001228713062831, -9.3515917458791051, 7.9778737065172969,
9.7095180444854847, -14.060064536791135, 4.9797253221020545,
-6.9210799657794224, 6.6736460552213845, -7.7636429824024606,
10.233132490278882, 8.401747393605044, -10.861100567451366,
13.631509744686715, -15.723791754613185, -8.7931294115815923,
-9.9520037489001609, -10.312792052906007, -8.0681893911111917,
-15.411052087079765, 10.938779471602952, -8.751795633239853,
-9.1302029882284419, -2.3357314769649777, -7.9130658335895596,
2.7508172894969509, -9.1666780515772324, 12.793063537524359,
-13.39091818112591, 7.2827402370664842, -10.400778532411657,
-1.90854156128735, -4.1272702472088971, 12.696932922959466,
-4.0180403457213805, 10.828999052972396, 14.720617452742685,
-8.3763729074389719, 3.955093172344033, 0.90932711822659873,
-5.6696817865337819, -5.8822086115513805};
const char HRA_112_112_detected_data[] = {
1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1,
1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1,
0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1,
0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1,
1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0,
0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0,
1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1,
1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1,
1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1};

View File

@@ -0,0 +1,20 @@
/*
FILE....: HRA_112_112.h
Static arrays for LDPC codec HRA_112_112, generated by ldpc_gen_c_h_file.m.
*/
#define HRA_112_112_NUMBERPARITYBITS 112
#define HRA_112_112_MAX_ROW_WEIGHT 3
#define HRA_112_112_CODELENGTH 224
#define HRA_112_112_NUMBERROWSHCOLS 112
#define HRA_112_112_MAX_COL_WEIGHT 3
#define HRA_112_112_DEC_TYPE 0
#define HRA_112_112_MAX_ITER 100
#include <stdint.h>
extern const uint16_t HRA_112_112_H_rows[];
extern const uint16_t HRA_112_112_H_cols[];
extern const float HRA_112_112_input[];
extern const char HRA_112_112_detected_data[];

View File

@@ -0,0 +1,153 @@
/*
FILE....: ../src/HRA_112_112.h
Static arrays for CML LDPC, generated by ldpc_gen_h_file.m.
*/
#define HRA_112_112_NUMBERPARITYBITS 112
#define HRA_112_112_MAX_ROW_WEIGHT 3
#define HRA_112_112_CODELENGTH 224
#define HRA_112_112_NUMBERROWSHCOLS 112
#define HRA_112_112_MAX_COL_WEIGHT 3
#define HRA_112_112_DEC_TYPE 0
#define HRA_112_112_MAX_ITER 100
#include <stdint.h>
uint16_t HRA_112_112_H_rows[] = {
22, 18, 15, 63, 16, 13, 1, 2, 29, 25, 28, 4, 36, 10, 38,
7, 60, 23, 11, 38, 28, 1, 12, 31, 57, 45, 57, 30, 23, 59,
67, 14, 16, 4, 14, 62, 15, 50, 7, 70, 64, 6, 42, 48, 9,
31, 19, 40, 49, 2, 25, 3, 41, 49, 36, 9, 29, 39, 31, 5,
17, 1, 29, 25, 11, 21, 18, 2, 8, 22, 39, 15, 8, 22, 13,
3, 19, 4, 21, 62, 34, 43, 6, 24, 17, 60, 8, 74, 6, 44,
60, 10, 33, 12, 26, 24, 45, 81, 69, 80, 41, 28, 23, 5, 10,
20, 52, 18, 13, 86, 3, 7, 59, 21, 65, 72, 34, 37, 26, 55,
47, 48, 34, 5, 44, 47, 68, 96, 82, 111, 61, 74, 30, 17, 55,
98, 81, 66, 89, 35, 74, 82, 91, 51, 55, 51, 30, 89, 61, 75,
40, 71, 73, 11, 56, 54, 19, 47, 94, 69, 64, 20, 64, 12, 54,
77, 42, 88, 36, 52, 90, 63, 70, 27, 32, 73, 91, 32, 56, 46,
9, 78, 51, 68, 88, 67, 20, 43, 40, 14, 66, 86, 39, 97, 38,
27, 50, 84, 54, 92, 61, 46, 67, 24, 58, 35, 58, 37, 98, 85,
73, 84, 48, 35, 57, 16, 26, 37, 65, 32, 72, 95, 107, 33, 77,
33, 85, 105, 106, 75, 56, 71, 79, 59, 52, 105, 79, 90, 93, 100,
88, 112, 86, 80, 65, 42, 106, 100, 93, 94, 99, 97, 93, 101, 111,
99, 83, 53, 85, 95, 108, 107, 41, 109, 84, 78, 104, 101, 69, 110,
98, 103, 80, 83, 77, 71, 76, 78, 87, 102, 104, 95, 96, 83, 87,
50, 110, 103, 112, 45, 58, 70, 94, 91, 89, 81, 101, 82, 63, 72,
100, 97, 76, 112, 53, 105, 49, 75, 109, 102, 66, 111, 68, 87, 92,
79, 96, 43, 90, 44, 110, 99, 102, 92, 103, 106, 62, 53, 27, 46,
108, 104, 107, 108, 109, 76};
uint16_t HRA_112_112_H_cols[] = {
7, 8, 52, 12, 12, 42, 16, 69, 45, 14, 19, 23, 6, 32, 3,
5, 22, 2, 45, 50, 2, 1, 18, 84, 10, 7, 62, 11, 9, 21,
24, 63, 2, 5, 28, 13, 6, 15, 58, 39, 39, 22, 76, 13, 26,
68, 9, 10, 49, 38, 32, 11, 34, 44, 8, 7, 25, 67, 1, 17,
19, 36, 4, 41, 3, 26, 31, 15, 45, 40, 8, 4, 41, 20, 6,
53, 1, 42, 9, 20, 25, 17, 33, 41, 3, 19, 55, 17, 27, 14,
31, 88, 15, 26, 36, 16, 28, 24, 27, 16, 30, 56, 48, 43, 4,
5, 38, 37, 40, 46, 18, 18, 22, 50, 76, 34, 60, 83, 39, 73,
56, 92, 42, 52, 75, 35, 37, 33, 61, 67, 47, 75, 66, 70, 29,
92, 51, 95, 84, 21, 57, 28, 46, 66, 93, 11, 94, 55, 96, 20,
71, 48, 53, 43, 82, 90, 66, 90, 14, 44, 54, 62, 34, 58, 81,
53, 23, 43, 27, 93, 10, 86, 37, 80, 60, 49, 21, 79, 74, 72,
48, 61, 40, 76, 64, 29, 38, 79, 51, 54, 13, 49, 72, 30, 50,
86, 35, 80, 61, 56, 36, 59, 65, 91, 25, 47, 58, 59, 78, 47,
32, 24, 44, 86, 64, 57, 12, 23, 109, 107, 85, 63, 31, 65, 62,
68, 111, 78, 104, 89, 112, 87, 69, 105, 65, 94, 109, 78, 72, 104,
85, 108, 77, 106, 79, 74, 103, 96, 64, 105, 105, 102, 63, 35, 59,
108, 112, 81, 102, 57, 106, 83, 81, 77, 101, 55, 94, 96, 97, 106,
46, 101, 83, 85, 71, 107, 104, 87, 33, 67, 103, 95, 30, 91, 89,
103, 75, 51, 107, 87, 91, 89, 99, 68, 52, 109, 99, 88, 84, 112,
54, 70, 92, 100, 98, 74, 60, 100, 98, 110, 90, 73, 71, 95, 70,
100, 29, 69, 110, 93, 82, 97, 98, 77, 73, 99, 101, 108, 82, 102,
111, 110, 111, 97, 88, 80};
float HRA_112_112_input[] = {
-5.7868467875518395, -6.340739523388657, 3.6654768375589399,
4.1452438183910827, -4.6746135252043111, -4.8353634065473701,
-6.0729133999971285, 4.0335561282226271, -6.1114855315699135,
4.1029513876344916, -4.6481634503883624, 5.7650915278538646,
6.5567610490570312, 5.1810523550761207, 3.4789051916752669,
4.2678848515507122, 4.0314705275547089, 6.0297078342283799,
4.9101169653222163, -6.4577297598332324, -7.4273487270443095,
3.472130985267488, -6.5346233967202254, 7.5312028458762414,
-5.2618748211985915, 6.4198074556254969, 3.7500207659511484,
5.4040878141701141, 5.7554260586578803, 3.3973620625026886,
7.1815269888532907, 5.0031747952824963, 5.1377243276145599,
5.385229914081755, -0.61384230253605643, 0.46954911161835722,
3.5182611493679663, 3.393698829567279, 6.147483866535171,
3.8374563885989228, 1.3663773773557015, -4.0917661778352352,
-3.2968298202652835, -6.0371912041431148, -8.4279246895331781,
-0.98556788606912304, -3.515442879601625, 4.2642476942514875,
-5.5905016743156972, 3.6920101668161727, -4.035860013856472,
5.3290190966269995, -2.9729656070594057, -2.5054371041338537,
6.8683150013190115, -7.1109038108500098, 6.7301890172695158,
2.5782062882356374, 4.4161464916633282, 2.2692851122935322,
-1.3682527221025034, 3.0794629981237631, -7.8655412763279973,
1.1479897597156494, 0.22370696314520414, 1.1222453403894148,
-3.1335220808128219, -3.8352985265277089, -1.2463521619727009,
2.9511814015293218, -8.668811041413111, 3.0185610517830548,
-6.9592962351476091, 3.9653416636625414, -3.9384322074229408,
1.6789027505247516, 2.9579632055145502, -2.1212672699995125,
-3.8892168640945193, 7.516114544807583, -0.84285604179011253,
4.1295390817792512, 0.26093278495228162, -3.6071666499996047,
-0.065323173773821908, -1.9146584862100915, 4.7951161310834367,
5.5440002982088803, 3.5917539980319364, -0.81416023563684481,
-2.6588977758747721, -3.0404494660606227, 4.5389936536649662,
2.7870543501114082, 3.5622966707453889, 5.1982116994791161,
2.4775319712999302, 0.70541080068007755, 0.89622787904518464,
4.3789020039207758, -2.4976040580619445, -0.7201255450933205,
4.2071986295109394, -5.2418379271657001, -4.092365654835163,
-4.3510198326542557, 3.7404138637596001, 1.2496890930262492,
-7.1053909336149728, -4.8888279905256748, -6.3523901926735249,
-1.8757980409249277, 3.6256343910366273, -3.6165398844758228,
-0.38322352317510561, -0.84747550047769449, -1.2717892264620718,
-2.3899810721111154, 4.1368500898628637, 3.0440159002314924,
3.4235543074310728, -2.146097053557551, -1.7537615307751735,
-1.0280987119225686, 4.9009275359419204, 5.0046047156368116,
-0.47700833783807428, -4.5989492891875567, 1.4154839158712684,
0.33410724822249849, -4.771937854508927, -1.1817007924012972,
-2.5960865023249302, 0.30422629502493687, -2.2097849377516763,
-4.343244940878872, 1.9464288912612249, -9.0976989032526809,
-8.6454142547592685, -1.8164317522989997, 2.2780845702169961,
-4.8775405042023356, -0.61834757216625769, -1.985554501661331,
-0.87599558657596699, -8.0610201531782124, -5.9847574894882554,
-10.365536404711067, 2.9782191161319376, -6.9443820217795169,
0.72935566343949876, -4.5326632961380664, 1.1307250622386897,
-4.0853969692041314, 5.4926924507347596, 5.6722555096362042,
-2.5069992226180222, 2.0460084066662092, 2.5375899018238197,
-3.5264293517823679, 3.2103083878487557, 5.793713046583183,
-2.7633653287377995, 6.482851815629938, -1.2471646528152021,
3.0010491047486085, 0.29072399293868856, -4.0686659405747738,
-2.6253508133431289, -6.3896590677017171, 5.7054076607727886,
4.3053292399977092, 2.2372599539047151, -4.8975607398431897,
5.8124794005531406, -0.69648233429781359, 5.5509723605410004,
2.0900652762982923, -4.7944253330785118, -2.9224693872108287,
6.0218579796888303, 4.7027436964063387, -4.1564871824868659,
-1.324779121305123, 0.38031612697724176, -0.69335927945709175,
-0.4028295686263082, 2.0967669774299189, 2.7947186736855909,
2.1473880039026203, 6.368702510367898, -3.0691782325684049,
1.6125827087903837, 3.5925359669662518, 5.178224480471127,
-2.5070763799556617, 4.4280512389456632, -6.5385259627250134,
2.8047951999607603, -3.0185715385981151, -0.33348983718789993,
-4.3285127692183556, -7.9609407359365134, 7.064973172264966,
0.95714371675898213, -5.5481272272415545, -1.6024149180708045,
-4.5740915350065992, -1.5117120929647263, 1.9996824689403947,
5.9527526663437724, 5.0239857792804967, 6.2677418491798784,
-1.9758548902654505, 2.1709284879472324, 2.5054563138111572,
4.4483685492445115, 3.2098357106645676, -4.5306213859481099,
1.1291114493451548, 1.5827945023160555, -5.2733490015732292,
5.0664709821503457, 1.9652801880230106};
char HRA_112_112_detected_data[] = {
1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0,
1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 1,
1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0,
1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0,
0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1,
0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0,
0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0,
1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0};

View File

@@ -0,0 +1,76 @@
/*
FILE....: HRA_56_56.c
Static arrays for LDPC codec HRA_56_56, generated by ldpc_gen_c_h_file.m.
*/
#include "HRA_56_56.h"
#include <stdint.h>
const uint16_t HRA_56_56_H_rows[] = {
4, 33, 22, 2, 7, 12, 15, 41, 6, 2, 8, 4, 1, 7, 20, 10, 2, 1, 28,
7, 3, 25, 18, 19, 17, 15, 8, 13, 9, 12, 39, 6, 17, 32, 3, 6, 10, 18,
4, 34, 1, 14, 9, 5, 15, 12, 5, 35, 5, 17, 16, 36, 20, 9, 34, 33, 14,
46, 39, 27, 43, 22, 19, 45, 16, 23, 31, 52, 3, 8, 51, 13, 31, 11, 31, 36,
11, 28, 30, 21, 38, 26, 42, 29, 23, 33, 45, 19, 28, 40, 10, 23, 41, 25, 29,
36, 29, 49, 38, 11, 30, 42, 16, 37, 49, 35, 18, 47, 24, 25, 54, 34, 41, 55,
47, 44, 56, 46, 20, 55, 21, 40, 37, 53, 13, 32, 52, 22, 32, 24, 44, 42, 49,
38, 48, 24, 56, 48, 50, 39, 26, 50, 54, 26, 37, 56, 14, 27, 46, 44, 45, 43,
53, 52, 40, 21, 51, 47, 30, 50, 51, 43, 27, 54, 53, 48, 55, 35};
const uint16_t HRA_56_56_H_cols[] = {
13, 4, 13, 1, 44, 9, 5, 11, 29, 16, 18, 6, 13, 1, 7, 9, 25, 23, 7,
7, 9, 3, 10, 18, 22, 26, 4, 19, 28, 23, 11, 14, 2, 40, 48, 20, 11, 22,
3, 10, 1, 20, 5, 4, 8, 2, 3, 23, 21, 27, 15, 12, 12, 31, 2, 5, 18,
10, 21, 12, 47, 32, 14, 14, 43, 35, 21, 30, 16, 35, 26, 47, 33, 38, 24, 15,
24, 6, 29, 24, 38, 29, 36, 22, 39, 45, 17, 17, 30, 55, 50, 40, 33, 25, 28,
34, 8, 27, 40, 19, 31, 6, 46, 26, 42, 30, 45, 15, 41, 52, 8, 25, 41, 17,
35, 39, 49, 36, 20, 27, 54, 37, 44, 46, 28, 42, 45, 51, 50, 51, 32, 53, 44,
16, 36, 53, 54, 32, 51, 33, 41, 47, 19, 34, 56, 56, 56, 52, 48, 43, 31, 43,
37, 46, 50, 38, 39, 37, 52, 54, 49, 48, 49, 42, 53, 55, 55, 34};
const float HRA_56_56_input[] = {
14.298032547127473, -11.608683311452998, 0.061009204291271366,
8.7391847645722684, -12.795277326577247, 6.7260364215470982,
-7.5723272788156795, 3.020497481136375, 8.2196966933834599,
11.034906196221687, 8.9543980103634855, 7.577128824074272,
11.270326150592165, 8.9523294544722756, 13.083603245905977,
10.444986837116906, 14.412579891463047, -0.8166007558942513,
9.668894733671868, 9.8522676575640613, 7.5958239024346623,
3.3746023851032851, 12.95322595905497, -7.1449563352606029,
1.2577795908906082, -9.5332224407426533, -17.239402070035631,
-6.3014111920535631, -6.3042395285059891, 10.610150547425137,
-3.8501667154717536, 13.993722156033463, -11.103807489470984,
-0.23655217621193034, -11.820607488167541, -14.520377014662206,
14.480439663208152, -14.74956701516993, 5.8803502868629876,
16.404549902101486, 1.7430972286160022, 3.5578988903336057,
-10.514179494138832, 15.893919839476579, -15.088901968318774,
8.8240079988183187, -11.214227098114568, 15.245351554277944,
-8.0630908862483555, -4.2718917016539022, -6.8904115533020676,
7.1059188065004335, -15.465940930478686, 7.1911507113949069,
-7.3855595052175262, 8.2801168546061081, 7.7415094545890444,
12.447605971579639, -7.1709811194443134, -16.91513428272188,
-7.1177366282735868, -15.474578777159717, -9.5942142791182636,
-6.9537488066001139, -7.7476201276622323, 4.1904181285877389,
-6.2099572289514366, 10.754678540144104, -3.9339356682709932,
14.679906470086319, -8.142754803364026, -9.9243587954743582,
-8.3178402502703221, 12.312937678168655, 8.8921607910136853,
12.075156922922833, 16.513528553689049, -13.145624744678896,
3.5338893311207094, -1.1150068888984415, 17.69091341508814,
-7.0011692651766051, 11.611823808269614, -2.2724478894865379,
5.5105851969653212, 10.230592589300167, -10.45300755375545,
2.3936930052496277, -12.582400877459929, -10.207872559757952,
11.527552494414541, -6.8352398173173716, -5.9832808666428097,
-10.392213829350812, -19.448491316457705, -3.5592349479718512,
-7.2921546103361257, 12.917679155812705, -16.567433882993001,
8.2654374923309515, -12.878121359778884, 6.2541630279508933,
-12.780545162108599, -10.751773785029803, 9.429146662721827,
10.341931054806189, 18.701038410743397, 9.823780098709431,
14.192912051007719, -16.603334298788742, 7.2592993795204217,
13.495247736424982};
const char HRA_56_56_detected_data[] = {
0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0,
1, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0,
1, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 1,
0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1,
1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0};

View File

@@ -0,0 +1,20 @@
/*
FILE....: HRA_56_56.h
Static arrays for LDPC codec HRA_56_56, generated by ldpc_gen_c_h_file.m.
*/
#define HRA_56_56_NUMBERPARITYBITS 56
#define HRA_56_56_MAX_ROW_WEIGHT 3
#define HRA_56_56_CODELENGTH 112
#define HRA_56_56_NUMBERROWSHCOLS 56
#define HRA_56_56_MAX_COL_WEIGHT 3
#define HRA_56_56_DEC_TYPE 0
#define HRA_56_56_MAX_ITER 100
#include <stdint.h>
extern const uint16_t HRA_56_56_H_rows[];
extern const uint16_t HRA_56_56_H_cols[];
extern const float HRA_56_56_input[];
extern const char HRA_56_56_detected_data[];

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,20 @@
/*
FILE....: HRAa_1536_512.h
Static arrays for LDPC codec HRAa_1536_512, generated by ldpc_gen_c_h_file.m.
*/
#define HRAa_1536_512_NUMBERPARITYBITS 512
#define HRAa_1536_512_MAX_ROW_WEIGHT 12
#define HRAa_1536_512_CODELENGTH 2048
#define HRAa_1536_512_NUMBERROWSHCOLS 1536
#define HRAa_1536_512_MAX_COL_WEIGHT 4
#define HRAa_1536_512_DEC_TYPE 0
#define HRAa_1536_512_MAX_ITER 100
#include <stdint.h>
extern const uint16_t HRAa_1536_512_H_rows[];
extern const uint16_t HRAa_1536_512_H_cols[];
extern const float HRAa_1536_512_input[];
extern const char HRAa_1536_512_detected_data[];

View File

@@ -0,0 +1,476 @@
/*
FILE....: HRAb_396_504.c
Static arrays for LDPC codec HRAb_396_504, generated by ldpc_gen_c_h_file.m.
*/
#include "HRAb_396_504.h"
#include <stdint.h>
const uint16_t HRAb_396_504_H_rows[] = {
10, 53, 56, 11, 21, 4, 12, 33, 41, 2, 19, 10, 20, 14, 61,
31, 7, 24, 37, 5, 34, 13, 27, 59, 8, 26, 21, 5, 3, 26,
1, 28, 4, 18, 16, 6, 15, 7, 24, 30, 17, 25, 10, 35, 61,
6, 9, 64, 14, 2, 13, 28, 84, 1, 15, 20, 8, 64, 12, 27,
11, 18, 22, 33, 5, 29, 19, 4, 3, 31, 23, 21, 35, 9, 34,
6, 16, 28, 23, 14, 26, 10, 20, 8, 7, 17, 12, 24, 15, 18,
33, 36, 21, 31, 29, 3, 25, 32, 5, 2, 13, 1, 19, 30, 4,
27, 22, 11, 38, 129, 63, 46, 62, 19, 13, 44, 76, 117, 25, 75,
63, 29, 65, 54, 23, 47, 144, 15, 39, 41, 42, 82, 36, 70, 67,
58, 53, 89, 22, 72, 17, 45, 50, 9, 34, 41, 63, 40, 47, 55,
48, 44, 64, 72, 19, 67, 57, 66, 54, 42, 143, 36, 43, 46, 52,
108, 71, 49, 16, 39, 32, 38, 70, 62, 69, 26, 37, 55, 56, 50,
58, 65, 56, 61, 67, 52, 53, 50, 48, 39, 59, 37, 47, 51, 63,
70, 46, 60, 40, 71, 57, 72, 54, 68, 44, 42, 49, 45, 38, 64,
43, 62, 66, 69, 55, 41, 64, 138, 115, 107, 81, 30, 39, 55, 91,
155, 48, 87, 90, 49, 84, 98, 68, 64, 180, 32, 88, 108, 71, 111,
86, 112, 73, 126, 90, 114, 57, 134, 52, 51, 73, 40, 59, 87, 86,
90, 101, 68, 51, 102, 89, 85, 37, 124, 99, 75, 76, 95, 205, 48,
77, 97, 73, 114, 98, 94, 45, 53, 58, 92, 80, 103, 100, 65, 93,
105, 79, 91, 80, 79, 102, 75, 91, 96, 78, 90, 82, 97, 83, 108,
89, 119, 85, 95, 105, 99, 103, 100, 93, 92, 86, 88, 76, 81, 104,
94, 101, 87, 73, 106, 84, 74, 98, 77, 141, 149, 123, 214, 87, 64,
45, 60, 114, 173, 103, 115, 102, 95, 88, 101, 93, 71, 188, 66, 175,
136, 77, 170, 127, 126, 140, 135, 97, 117, 119, 149, 80, 96, 85, 110,
78, 122, 105, 111, 121, 160, 81, 125, 131, 107, 60, 170, 151, 120, 109,
133, 220, 96, 142, 98, 112, 123, 129, 157, 74, 85, 82, 113, 121, 144,
139, 83, 139, 130, 117, 141, 133, 120, 136, 141, 132, 114, 143, 107, 123,
131, 138, 122, 128, 147, 113, 111, 125, 126, 135, 134, 144, 140, 112, 109,
142, 124, 137, 139, 130, 127, 115, 118, 121, 129, 110, 117, 215, 185, 179,
261, 105, 94, 69, 158, 130, 210, 113, 132, 183, 148, 107, 133, 112, 74,
280, 67, 176, 172, 78, 193, 141, 153, 146, 160, 156, 147, 132, 150, 100,
168, 138, 161, 99, 176, 138, 192, 136, 186, 85, 167, 168, 118, 104, 200,
215, 147, 161, 177, 244, 116, 165, 119, 210, 156, 132, 191, 106, 135, 115,
180, 155, 163, 146, 178, 153, 166, 149, 175, 153, 155, 145, 169, 150, 179,
165, 116, 158, 167, 176, 168, 146, 158, 178, 149, 154, 138, 166, 145, 152,
161, 175, 148, 172, 156, 162, 177, 171, 157, 159, 164, 173, 203, 151, 180,
257, 191, 231, 262, 139, 130, 124, 178, 165, 234, 170, 185, 237, 164, 114,
143, 171, 80, 291, 122, 182, 204, 104, 242, 147, 154, 166, 183, 265, 187,
159, 212, 152, 175, 189, 164, 158, 187, 143, 223, 142, 217, 140, 208, 209,
154, 134, 252, 230, 196, 216, 182, 256, 150, 198, 137, 251, 166, 162, 197,
113, 174, 128, 196, 212, 193, 189, 185, 190, 201, 181, 203, 215, 184, 205,
189, 207, 196, 214, 174, 190, 199, 211, 201, 192, 181, 186, 210, 187, 163,
213, 200, 216, 198, 185, 212, 188, 191, 204, 206, 183, 193, 209, 197, 195,
224, 202, 208, 273, 218, 274, 294, 213, 163, 187, 248, 194, 235, 260, 200,
248, 224, 137, 254, 222, 85, 292, 145, 190, 212, 131, 245, 159, 199, 181,
258, 277, 206, 178, 219, 202, 184, 241, 205, 239, 260, 148, 271, 159, 263,
152, 242, 250, 183, 151, 259, 246, 214, 225, 237, 272, 206, 213, 145, 255,
199, 196, 228, 127, 188, 172, 222, 232, 226, 207, 238, 227, 224, 248, 233,
247, 223, 245, 239, 250, 232, 252, 194, 233, 249, 219, 225, 242, 238, 240,
226, 234, 170, 238, 210, 237, 230, 228, 243, 236, 231, 248, 221, 246, 218,
229, 227, 217, 235, 222, 251, 277, 262, 299, 338, 246, 208, 220, 289, 291,
276, 267, 233, 333, 307, 264, 288, 324, 92, 325, 169, 209, 233, 192, 275,
160, 257, 247, 317, 359, 308, 194, 228, 244, 236, 272, 248, 273, 295, 184,
315, 182, 339, 195, 268, 282, 243, 169, 300, 283, 265, 240, 258, 289, 245,
218, 173, 297, 240, 236, 257, 171, 219, 230, 288, 254, 264, 231, 281, 287,
277, 279, 303, 259, 286, 277, 279, 269, 261, 255, 220, 265, 283, 278, 276,
281, 285, 268, 266, 282, 182, 244, 241, 254, 274, 256, 258, 264, 253, 287,
270, 260, 267, 273, 262, 257, 288, 284, 275, 278, 276, 323, 347, 249, 266,
232, 331, 366, 332, 304, 280, 347, 355, 268, 297, 327, 311, 345, 186, 221,
279, 226, 283, 223, 310, 296, 348, 379, 316, 252, 229, 277, 273, 286, 319,
305, 329, 235, 343, 307, 376, 251, 306, 323, 276, 275, 358, 318, 328, 269,
319, 338, 274, 286, 280, 333, 262, 278, 314, 194, 256, 311, 302, 312, 327,
261, 293, 322, 308, 284, 325, 292, 322, 302, 297, 299, 306, 290, 263, 312,
311, 315, 317, 318, 304, 305, 289, 309, 280, 316, 271, 314, 313, 296, 303,
320, 307, 298, 300, 319, 294, 308, 321, 323, 301, 291, 324, 328, 337, 362,
385, 320, 310, 346, 344, 380, 349, 322, 369, 350, 367, 302, 358, 356, 316,
368, 211, 301, 282, 302, 309, 284, 341, 306, 365, 382, 325, 253, 285, 313,
281, 287, 351, 330, 364, 313, 368, 330, 377, 270, 334, 372, 331, 296, 365,
346, 345, 309, 324, 341, 317, 298, 320, 342, 345, 310, 336, 249, 304, 333,
352, 367, 349, 354, 294, 363, 335, 301, 340, 339, 327, 332, 350, 342, 344,
329, 310, 338, 331, 354, 328, 351, 364, 325, 348, 353, 293, 340, 295, 343,
355, 360, 326, 337, 341, 346, 352, 359, 335, 356, 357, 358, 334, 349, 330,
347, 372, 381, 0, 336, 326, 383, 367, 392, 374, 386, 376, 353, 387, 378,
0, 392, 342, 389, 255, 394, 314, 371, 361, 312, 377, 373, 384, 390, 339,
315, 290, 352, 324, 321, 360, 396, 371, 344, 388, 347, 378, 356, 392, 384,
389, 348, 390, 353, 387, 374, 337, 381, 350, 359, 362, 385, 375, 355, 361,
382, 351, 360, 383, 391, 379, 369, 375, 370, 395, 357, 386, 379, 333, 387,
390, 389, 377, 391, 365, 388, 386, 385, 396, 370, 382, 372, 376, 368, 336,
371, 345, 362, 361, 395, 366, 393, 378, 392, 384, 394, 363, 380, 369, 383,
381, 373, 375, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 389, 0,
393, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 391,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366, 0,
366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0};
const uint16_t HRAb_396_504_H_cols[] = {
31, 10, 29, 6, 20, 36, 17, 25, 36, 1, 4, 7, 7, 14, 20,
35, 33, 34, 6, 13, 5, 31, 17, 18, 11, 26, 23, 32, 14, 6,
16, 20, 8, 21, 44, 25, 19, 1, 7, 36, 9, 23, 55, 8, 7,
4, 18, 11, 14, 35, 34, 33, 2, 16, 8, 3, 31, 28, 24, 8,
15, 5, 3, 1, 15, 20, 20, 17, 7, 26, 18, 32, 27, 18, 12,
9, 23, 23, 71, 18, 5, 24, 68, 15, 18, 25, 5, 15, 30, 13,
9, 18, 17, 6, 14, 34, 29, 16, 37, 33, 16, 13, 11, 23, 5,
61, 4, 22, 51, 36, 24, 17, 11, 9, 3, 54, 10, 46, 31, 50,
41, 20, 3, 7, 44, 26, 25, 63, 2, 6, 23, 12, 16, 32, 28,
22, 15, 2, 5, 27, 1, 41, 16, 19, 20, 27, 25, 14, 2, 32,
47, 33, 26, 26, 10, 29, 60, 8, 25, 25, 36, 59, 6, 14, 9,
27, 44, 34, 20, 11, 17, 22, 10, 62, 21, 21, 52, 8, 3, 19,
27, 21, 13, 34, 2, 20, 7, 19, 35, 21, 2, 23, 24, 9, 43,
50, 60, 55, 26, 12, 70, 33, 72, 22, 36, 30, 67, 6, 21, 10,
20, 22, 5, 4, 1, 51, 42, 2, 32, 7, 21, 17, 25, 14, 51,
23, 69, 32, 32, 49, 3, 7, 12, 10, 10, 34, 13, 68, 37, 51,
35, 24, 46, 33, 24, 5, 27, 8, 5, 45, 43, 31, 31, 16, 20,
53, 1, 28, 48, 11, 4, 2, 42, 15, 29, 6, 11, 15, 51, 43,
40, 35, 1, 3, 24, 2, 1, 1, 22, 12, 34, 22, 24, 25, 32,
35, 35, 16, 8, 32, 9, 19, 68, 4, 38, 27, 16, 55, 3, 48,
21, 15, 72, 11, 37, 27, 14, 30, 24, 6, 18, 25, 33, 22, 31,
18, 28, 49, 36, 5, 35, 11, 3, 17, 19, 6, 17, 1, 38, 37,
8, 10, 13, 44, 70, 5, 2, 4, 30, 72, 26, 18, 40, 8, 19,
7, 1, 28, 10, 13, 36, 33, 13, 67, 14, 17, 71, 16, 29, 36,
24, 3, 69, 38, 28, 9, 8, 19, 12, 69, 23, 2, 27, 10, 58,
12, 26, 15, 29, 9, 3, 29, 7, 28, 4, 11, 14, 40, 11, 29,
27, 9, 13, 21, 70, 37, 54, 50, 69, 33, 28, 46, 38, 57, 47,
12, 61, 59, 22, 49, 37, 61, 41, 62, 11, 56, 27, 63, 71, 39,
42, 30, 60, 52, 66, 40, 70, 63, 64, 37, 73, 54, 47, 64, 21,
40, 22, 52, 103, 44, 34, 56, 41, 43, 60, 72, 43, 57, 29, 51,
42, 71, 49, 63, 37, 47, 45, 66, 13, 6, 68, 50, 27, 42, 67,
65, 23, 46, 35, 61, 50, 51, 55, 37, 74, 33, 43, 63, 83, 53,
35, 39, 12, 21, 45, 29, 72, 64, 69, 60, 52, 54, 56, 56, 49,
67, 41, 44, 66, 47, 39, 104, 15, 58, 96, 107, 40, 26, 61, 15,
12, 80, 30, 104, 56, 74, 65, 38, 58, 48, 89, 28, 61, 85, 59,
9, 45, 31, 52, 47, 62, 41, 56, 35, 67, 43, 25, 55, 39, 66,
56, 67, 30, 39, 32, 54, 49, 43, 69, 46, 65, 58, 102, 37, 31,
28, 51, 99, 66, 36, 55, 58, 82, 45, 47, 24, 61, 63, 56, 80,
34, 38, 100, 31, 78, 64, 71, 41, 28, 39, 12, 42, 30, 62, 67,
69, 60, 40, 66, 31, 105, 59, 104, 94, 58, 48, 84, 107, 106, 99,
53, 54, 77, 44, 45, 57, 83, 32, 55, 50, 49, 93, 105, 55, 62,
53, 100, 64, 40, 70, 84, 66, 104, 60, 103, 63, 67, 65, 22, 89,
39, 59, 52, 86, 76, 58, 92, 44, 96, 53, 54, 49, 73, 13, 61,
77, 57, 48, 98, 65, 57, 62, 26, 52, 73, 38, 67, 4, 80, 66,
50, 88, 102, 44, 77, 100, 92, 53, 34, 54, 47, 10, 29, 59, 71,
19, 68, 45, 49, 71, 86, 55, 69, 64, 53, 79, 19, 73, 90, 68,
92, 47, 57, 99, 77, 100, 71, 23, 96, 62, 87, 44, 41, 70, 51,
26, 63, 65, 39, 60, 40, 30, 54, 85, 52, 56, 104, 69, 45, 34,
30, 96, 66, 50, 79, 41, 46, 75, 57, 106, 102, 60, 52, 53, 42,
91, 53, 57, 93, 39, 50, 49, 4, 47, 66, 54, 62, 64, 49, 83,
59, 43, 104, 48, 55, 63, 60, 56, 102, 86, 48, 41, 14, 40, 67,
85, 38, 45, 107, 51, 68, 42, 42, 42, 66, 103, 53, 61, 64, 45,
57, 72, 50, 81, 19, 48, 65, 17, 97, 101, 95, 84, 102, 100, 96,
68, 65, 76, 85, 84, 74, 43, 108, 87, 51, 80, 55, 77, 86, 90,
47, 83, 72, 107, 79, 88, 97, 68, 106, 78, 95, 104, 94, 98, 91,
75, 0, 92, 69, 101, 62, 91, 38, 98, 0, 97, 61, 89, 85, 54,
99, 80, 86, 78, 62, 95, 70, 75, 93, 73, 83, 90, 76, 104, 39,
18, 74, 105, 48, 96, 106, 88, 59, 94, 57, 106, 76, 97, 108, 79,
0, 65, 98, 81, 0, 105, 43, 95, 38, 96, 85, 40, 77, 94, 93,
100, 88, 78, 82, 59, 90, 92, 101, 75, 91, 99, 70, 0, 46, 84,
0, 0, 88, 57, 64, 30, 63, 0, 71, 0, 86, 0, 105, 84, 81,
98, 0, 90, 102, 0, 106, 70, 82, 59, 73, 92, 91, 75, 99, 39,
69, 94, 72, 97, 53, 93, 75, 85, 50, 96, 71, 77, 107, 93, 73,
89, 74, 98, 0, 81, 41, 42, 94, 0, 90, 104, 79, 70, 0, 84,
76, 48, 101, 97, 105, 0, 72, 83, 0, 68, 0, 108, 86, 52, 46,
74, 68, 87, 38, 97, 76, 81, 98, 85, 102, 61, 0, 64, 0, 0,
82, 92, 0, 0, 0, 0, 75, 100, 0, 108, 103, 88, 0, 65, 91,
79, 73, 0, 0, 102, 83, 80, 0, 107, 74, 106, 0, 88, 0, 95,
0, 94, 98, 78, 72, 0, 106, 97, 93, 91, 0, 87, 0, 85, 0,
91, 75, 101, 0, 36, 82, 0, 108, 79, 0, 93, 79, 95, 60, 96,
0, 101, 78, 58, 0, 97, 81, 0, 0, 87, 0, 0, 0, 0, 37,
94, 108, 46, 33, 83, 76, 56, 85, 89, 82, 107, 0, 74, 99, 106,
88, 0, 107, 0, 0, 102, 0, 95, 76, 0, 0, 0, 106, 64, 0,
86, 0, 78, 98, 103, 89, 59, 82, 81, 94, 93, 83, 91, 84, 0,
101, 97, 0, 74, 105, 52, 72, 0, 74, 84, 0, 108, 82, 0, 63,
0, 0, 90, 97, 81, 73, 0, 98, 77, 0, 78, 58, 99, 13, 88,
107, 76, 85, 100, 89, 0, 94, 103, 0, 105, 101, 95, 94, 93, 0,
0, 80, 43, 65, 89, 104, 0, 91, 87, 0, 0, 108, 88, 78, 98,
73, 0, 106, 86, 105, 100, 83, 82, 75, 0, 46, 76, 79, 44, 0,
0, 0, 0, 0, 0, 0, 105, 99, 0, 0, 0, 0, 82, 0, 0,
101, 0, 89, 0, 0, 0, 67, 0, 93, 0, 0, 0, 0, 81, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 0, 82, 0, 108, 0,
0, 0, 100, 0, 0, 81, 0, 0, 0, 0, 79, 0, 107, 0, 0,
0, 0, 0, 0, 0, 87, 45, 0, 0, 77, 0, 0, 0, 92, 0,
103, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 46, 0, 102,
0, 0, 80, 0, 0, 0, 0, 0, 0, 0, 107, 0, 0, 0, 0,
0, 0, 89, 0, 80, 0, 0, 0, 0, 95, 87, 58, 103, 0, 108,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 0, 77,
0, 0, 0, 0, 0, 83, 100, 0, 76, 0, 79, 0, 92, 0, 86,
0, 88, 0, 0, 0, 0, 0, 0, 0, 0, 86, 103, 0, 0, 0,
0, 0, 0, 91, 0, 0, 0, 90, 0, 0, 0, 0, 95, 0, 0,
87, 0, 0, 0, 90, 101, 0, 95, 0, 89, 0, 0, 0, 0, 0,
0, 80, 0, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 92, 0, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 0, 0, 0, 0,
0, 0, 0, 0, 105, 0, 0, 0, 0, 104, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 103, 0, 0, 84, 70, 0, 0, 90, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108, 87, 0, 0,
0, 0, 0, 0, 0, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 92, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 96, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 77, 0, 0, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
const float HRAb_396_504_input[] = {
-12.781911708775533, 7.551155800725204, -11.899607043049681,
17.477156604046595, -13.803361319809902, 6.2002990057867589,
-15.169569280110601, -17.341522766496183, 9.7107774319996505,
16.641703452581407, 8.4284168541090221, -11.930717934789106,
-4.4208828355542424, -1.139969227664315, 17.673081687318597,
16.121750517979301, 3.6219051813553182, -20.05687038213798,
-6.5018436610168866, 10.791743071707945, -8.0445304197245111,
-8.3324911789627567, 11.41120852689847, -11.282456703274443,
-9.2866085578109647, 9.9469665371993603, 15.140667602380192,
3.4450775767841488, 0.64231692247845451, 8.0801244936842966,
5.4636814535382374, -5.0107553707349375, 7.864699294226007,
-10.386130310145816, -12.37983397229897, -14.572379771221275,
-16.054735647120321, -11.263149256634462, 14.219711467898444,
-9.2719771070008434, 8.3099403015379476, -10.148895658714522,
14.726350071572289, -6.8215748913296936, -7.3601951789355757,
-15.40290283113702, -11.244311800452268, -7.9961343172040795,
5.1368563973467962, 9.5164063035654909, 8.4155629108106549,
16.014525967886211, 1.699070391185594, 9.954286029615325,
7.6585573567939873, 7.9223054149290961, 7.9198517179714161,
10.631081381345467, 3.2596035260666651, -4.6015483371596497,
-9.3597887942885531, 7.6740974245989673, -16.604278204111164,
-9.8303898312522513, 1.1205811253439053, 8.119179250191868,
9.5880695910130243, 8.2874878418366773, 6.0797980497495772,
-12.937113562007257, -3.1974528849557156, 13.246273287806673,
11.66494172835136, -12.103215889657571, 16.688894677207085,
2.257955028557403, -8.5424956390175151, 12.497318796297906,
-9.0900910972806521, 8.2209514183928061, 5.7402258284777101,
-20.747034176270887, 3.5631050854868058, 10.395770683064073,
-9.868223944850401, -8.6550086233418142, 3.8407639306907768,
11.327546861735177, 13.015569340310336, 25.712163835177048,
13.268816328384831, 4.6584774592149962, -13.317349857427834,
9.5406654991490569, 17.049953586489877, -4.0111152401055641,
-11.693122827989608, 7.5370223906338998, 11.277949854414416,
-11.498659185019621, 9.549753443463084, -12.055250773523783,
-10.739286977821905, 14.136269830595458, -7.782253905067039,
4.9092522955317381, -10.465638951656203, -8.0435611797655167,
-6.8433147729593813, -9.0439724403972992, 4.3359408282633236,
11.715689661715617, 19.611494165878462, 7.9190285414926178,
-3.4982694249277611, -12.338256249127136, 9.8421320440049662,
4.1138225682471781, 6.4942182289542236, 5.2066961739124622,
-9.7070041876701811, -9.1496153713901478, -11.724529081464583,
-9.3603341476943687, -5.2966983729936237, -13.015748591796211,
-3.8567718830575424, 10.135559234020649, 8.7124846719285305,
15.56420640265349, 11.252060195029108, -5.0089167203318068,
4.8507161178807445, 18.024720595741002, 17.065315044907795,
-7.1935844977610666, 4.4815982827009275, -11.880975891281834,
-12.172241984932276, 1.5152035384857121, 17.946629562223141,
5.5052899404780824, -13.120278899383999, 10.648236401527056,
-14.506377227430642, -10.143170277861179, 14.044470462529238,
-9.2254356225576046, -8.8348967562869412, -4.9590358444858067,
9.0535343466316753, 10.897394405658892, 14.0281876034117,
11.255519350361872, -13.859106646040908, 6.4504642887424621,
11.777861578819222, -11.639709904108361, -14.642162922529135,
-14.4258126604062, 13.682206617896547, 11.95057687459364,
-8.3091459570180035, 10.93961990916042, -11.907964651381601,
12.516150502079761, -13.04991156095979, 14.145576472835312,
10.632785447350683, 12.081094158208353, -6.8485025555270633,
-7.6927274273100101, 9.6552183508541098, -8.5591832251882316,
15.638135027982772, 11.926988474833571, -14.987130306515169,
14.812479105542307, -11.914804743109391, 15.824256001061817,
-8.5851098252378435, -13.901610955497368, 14.188963140600226,
6.811888787586982, 1.6003053019945943, 19.325203560888092,
-13.704678587213907, 0.31402694199929804, 15.989943699374408,
6.0088299172857802, -16.886144255198669, 10.998325725589428,
-8.2882779267894371, 2.6453088627011274, 10.412577554382436,
-14.426316461418969, 8.1138928008495217, -1.3343532339748365,
-20.340051195431247, -8.147129300539568, -2.9761356060569728,
-10.375141176280817, -3.492207168269704, 7.9187407777624479,
13.120922417727103, -13.038589243192815, -5.2220329986414589,
-15.490400289338059, 17.189589889777995, -7.0721481714310892,
12.581795403076717, 13.235922100360186, -14.068623066472972,
10.590824537759135, -15.881395141726383, -10.457045553712261,
-9.8661324776225801, 4.734922703000958, 15.360039696456523,
-3.6427404709897195, 12.283954090395133, -10.580773927999571,
0.82767864919701561, -19.322191171106951, -2.4440165020607636,
7.3561450067817269, 8.734912251555226, -10.1437777971503,
11.586163919375755, -15.408234206400728, -13.870410556862536,
-16.459582947709787, -6.3237526923701468, 11.608212905773328,
5.6613158220955073, -11.774245858420727, 3.9445738850991399,
11.580625563882155, 4.8206111058017749, 9.1501633745566071,
-7.8619603245069358, -10.01135725687336, 13.093956991526415,
-16.457925498763061, 8.7995448079979344, -6.8693123471950814,
2.7230849761708642, 14.798365672787927, 5.3137203364492533,
12.867351465034174, 15.542257577290705, 10.701888362195504,
-12.387250136917784, -7.2295230408544304, 9.6964847959436913,
-9.0249610457078298, -6.1083927724817624, 10.739040854096423,
10.841475540702188, -11.378611500586242, 15.703248605756047,
3.4356087856986508, 9.107640628528733, -10.389742419200251,
-13.652754262528372, -8.7325864940958979, -4.1006685083845982,
12.419068901103934, 18.740969634501024, -7.2686574148980894,
15.57081866775636, 7.8740814697714061, -5.3846084718512941,
10.477115100800031, -18.872361222343329, 6.1039069136118798,
17.308178559392783, -7.4815794858402631, -8.6125141656077062,
8.9583151933398391, 15.414391681552324, 11.050241874455013,
-12.807870031579375, 9.0363612736996224, 15.816822937315944,
7.8444181915777751, 9.1766300505397727, 14.827248874904317,
10.059358980544847, 8.1004443450218631, -9.9138353480289823,
-12.69584064620971, -1.2480517929964754, 4.9462685565954452,
-11.001361577099411, -14.645415102047146, -8.290528664203066,
-6.5125802605593295, -9.2390284023464098, -9.6219279810207716,
-2.4663308852408137, 7.9284843220778702, -10.739866570047806,
6.0027860732461509, 6.1871445421636109, -7.2396227218981295,
-16.909239064069116, 8.0605318273056952, -13.18199180405694,
11.423481528527208, 6.103394660237238, 11.02891865005909,
-9.0418767418601025, -12.498971584987439, 20.946414970644234,
24.362523031251186, 4.928071385179801, -9.8370658808205729,
14.539073682029368, 1.2645116781629737, 14.426946417515435,
10.026504861776269, 10.448998607938103, 10.006313240241793,
11.891150094820924, 8.8375576186697344, 8.5771389584190558,
-15.536407780091233, 13.349864120336063, -11.927556110752052,
16.068268030243942, 18.193338642202377, -11.869068102320544,
13.808406661021646, 11.216260613445977, -15.515968362285809,
-14.909791180531339, -10.071410710917538, -5.5399590746720264,
-14.934775635718978, 14.30539374658337, 7.3819695117708113,
7.7868368821638674, 15.432743081832081, -2.5950994414982973,
-12.476581448977271, -1.6564415840602271, -10.295779594978484,
4.7085935460142574, 12.24789018308865, 16.925819961116584,
-18.384663719107415, -14.057276635303813, -5.8146990314358709,
6.5631719088139118, 12.127149794502795, -15.739169438478982,
7.8271230641312846, -5.9606533200021854, 9.8721062001112347,
10.486834679901543, 6.3494439660436246, 9.9429692254989686,
19.542594690444115, 4.5180797153308676, -19.1566652225201,
15.006372860965323, -15.300035248621157, 9.7589319143789801,
-4.7363679865964263, 5.3999824517855961, 8.0578934432355496,
-19.385015013376869, -14.161802280526608, -12.881654979775632,
-12.049094820078055, -5.3829315859449007, -7.3537414475927241,
6.844714008315254, -10.931623197527411, -10.939763582880817,
-13.62500540625687, 20.49307277175809, 10.365734953239752,
4.0663542658207543, 15.929076113588478, -10.288951069929114,
7.8742158721474977, -1.422979120612724, -14.104879669064141,
-4.55280623980281, -8.1653075636365458, 14.147963542838651,
-13.933332225643916, 14.226165096278136, -13.375191283046002,
9.2088912804672614, 10.933675274282887, -9.9392697991816448,
-16.955582876153894, -11.85793097786863, 5.8569767257292948,
6.6660744272807806, -4.6888969930553994, 20.646624453011015,
-1.2485466035357267, 6.7572930222337293, -11.830468070632643,
12.387424895419418, -18.508514302306494, -15.324824129201243,
5.0862404533417127, -5.2707864200417625, -14.224777968048254,
7.6291208613793344, 5.0046921384732324, 7.9969106436802599,
-14.577995568165489, 8.1080228274897834, 12.603861058845251,
11.220434316666585, -5.7247050938128154, 11.912056122344682,
0.10886944478234604, 9.3619646262630898, -7.7302663627879742,
14.530248266518536, -15.658478259515816, -1.2907403171529221,
-6.3207955318188116, 15.484693780278064, 12.036254202990973,
4.6560888684896602, 7.678255286975908, 9.4289524624102352,
11.319695981517606, -5.4092744871032599, 6.6896098743454493,
2.1792109184280051, -11.081376849744698, -10.411817839842012,
11.057139193661996, 10.674844657971892, -7.611917928843007,
-7.7114315734656405, -10.25566388330579, -9.5816821583841509,
-3.8229805246413409, -9.4360724513005252, 8.5081398584333474,
12.93470424207193, -12.400231194882618, -9.4258414862069788,
21.836201624323113, 9.6722027120607468, -11.684243881860825,
11.18326004371732, 9.8228033099036569, -1.6298761838573241,
-14.006557406509664, 3.2619201008452663, 3.9694393534038981,
-8.8928237386570181, 6.2844903665726015, -4.7494171442219395,
5.9437023484394249, 13.979025508842865, -14.044878091079713,
-4.9661838171055548, 7.6707889728317591, -4.2457033821315688,
-1.3421305197348499, 4.9933591178833261, 1.5425117319878872,
-17.930315353239411, 12.197719685382262, -5.947358941151732,
-12.904626563212007, 6.1763577253014788, 16.076852398625185,
8.2709163525181015, -15.422610935202506, 10.890948687642558,
-9.9461592598413802, 6.34551493463914, -15.578427358705113,
15.918090853090177, 9.9516599357932982, -3.9346680898413688,
5.3410774271588748, 11.920077938590593, -2.4538357241090294,
-11.163446342656663, -10.488287129167166, -12.749714598521885,
5.4035140611182522, -7.3998902697733975, 8.1911994226222173,
-6.178143732667059, 7.1909081188653348, -16.467787621055525,
7.5865191569782464, 15.269036731801625, -8.469922589870114};
const char HRAb_396_504_detected_data[] = {
1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1,
1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0,
0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1,
1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0,
1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0,
1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0,
0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0,
1, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1,
1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0,
1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1,
1, 1, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0,
0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0,
1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1,
1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0,
0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0,
0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1,
0, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0,
1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1,
0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0,
0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1};

View File

@@ -0,0 +1,20 @@
/*
FILE....: HRAb_396_504.h
Static arrays for LDPC codec HRAb_396_504, generated by ldpc_gen_c_h_file.m.
*/
#define HRAb_396_504_NUMBERPARITYBITS 108
#define HRAb_396_504_MAX_ROW_WEIGHT 12
#define HRAb_396_504_CODELENGTH 504
#define HRAb_396_504_NUMBERROWSHCOLS 396
#define HRAb_396_504_MAX_COL_WEIGHT 7
#define HRAb_396_504_DEC_TYPE 0
#define HRAb_396_504_MAX_ITER 100
#include <stdint.h>
extern const uint16_t HRAb_396_504_H_rows[];
extern const uint16_t HRAb_396_504_H_cols[];
extern const float HRAb_396_504_input[];
extern const char HRAb_396_504_detected_data[];

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,18 @@
/*
FILE....: H_1024_2048_4f.h
Static arrays for LDPC codec H_1024_2048_4f, generated by ldpc_gen_c_h_file.m.
*/
#define H_1024_2048_4f_NUMBERPARITYBITS 1024
#define H_1024_2048_4f_MAX_ROW_WEIGHT 12
#define H_1024_2048_4f_CODELENGTH 2048
#define H_1024_2048_4f_NUMBERROWSHCOLS 1024
#define H_1024_2048_4f_MAX_COL_WEIGHT 54
#define H_1024_2048_4f_DEC_TYPE 0
#define H_1024_2048_4f_MAX_ITER 100
#include <stdint.h>
extern const uint16_t H_1024_2048_4f_H_rows[];
extern const uint16_t H_1024_2048_4f_H_cols[];

View File

@@ -0,0 +1,198 @@
/*
FILE....: H_128_256_5.c
Static arrays for LDPC codec H_128_256_5, generated by ldpc_gen_c_h_file.m.
*/
#include "H_128_256_5.h"
#include <stdint.h>
const uint16_t H_128_256_5_H_rows[] = {
2, 44, 14, 2, 15, 36, 28, 19, 17, 7, 20, 11, 3, 9, 12,
13, 29, 7, 25, 11, 31, 13, 53, 15, 11, 6, 5, 61, 9, 13,
7, 22, 8, 10, 5, 11, 32, 9, 8, 35, 17, 13, 11, 33, 1,
33, 5, 14, 12, 21, 31, 1, 20, 2, 8, 7, 22, 4, 24, 31,
71, 20, 10, 51, 3, 65, 6, 41, 3, 40, 35, 10, 6, 16, 37,
24, 21, 4, 63, 8, 17, 9, 15, 5, 3, 7, 18, 33, 6, 36,
1, 5, 74, 27, 18, 24, 22, 8, 22, 26, 23, 14, 39, 4, 30,
24, 26, 29, 15, 2, 1, 3, 29, 23, 52, 56, 45, 12, 4, 28,
23, 53, 29, 14, 16, 1, 41, 18, 70, 66, 50, 19, 37, 46, 61,
21, 33, 32, 51, 21, 57, 28, 18, 37, 41, 23, 43, 47, 42, 16,
83, 64, 66, 19, 41, 62, 10, 44, 9, 24, 46, 30, 13, 16, 41,
17, 19, 39, 49, 54, 39, 43, 2, 55, 64, 26, 46, 45, 43, 12,
21, 6, 40, 52, 32, 20, 85, 34, 73, 25, 42, 57, 25, 83, 34,
53, 15, 61, 53, 46, 28, 36, 48, 51, 36, 25, 65, 44, 38, 72,
48, 68, 12, 16, 37, 35, 45, 39, 25, 40, 80, 38, 22, 32, 49,
34, 27, 57, 35, 34, 74, 19, 56, 38, 31, 32, 26, 82, 4, 18,
58, 56, 67, 77, 76, 60, 80, 44, 86, 68, 57, 27, 37, 20, 44,
29, 72, 71, 72, 42, 83, 50, 114, 48, 39, 67, 74, 30, 63, 51,
47, 68, 47, 36, 52, 95, 82, 38, 89, 70, 77, 53, 78, 76, 84,
78, 66, 64, 62, 55, 28, 17, 75, 27, 45, 68, 61, 67, 55, 49,
14, 73, 86, 42, 55, 71, 67, 23, 50, 10, 59, 74, 80, 57, 113,
50, 88, 30, 45, 90, 38, 105, 70, 66, 30, 86, 55, 59, 111, 89,
105, 63, 58, 31, 69, 48, 54, 82, 63, 85, 26, 27, 49, 85, 62,
52, 34, 70, 90, 59, 68, 74, 54, 60, 40, 60, 58, 40, 105, 87,
58, 75, 54, 35, 47, 84, 50, 56, 73, 78, 80, 97, 107, 62, 91,
49, 102, 71, 69, 33, 47, 46, 89, 103, 91, 83, 101, 97, 94, 65,
117, 66, 88, 73, 101, 42, 76, 88, 77, 90, 48, 105, 61, 104, 107,
52, 96, 100, 110, 60, 102, 92, 120, 79, 112, 87, 99, 81, 43, 93,
114, 101, 70, 80, 75, 93, 65, 79, 92, 77, 108, 59, 79, 81, 86,
95, 63, 51, 76, 86, 111, 81, 127, 98, 112, 100, 65, 91, 117, 110,
96, 73, 59, 100, 69, 92, 120, 98, 122, 72, 112, 84, 94, 103, 84,
85, 87, 88, 92, 77, 93, 116, 94, 79, 56, 111, 120, 64, 108, 107,
90, 89, 75, 87, 67, 43, 113, 107, 93, 76, 64, 105, 96, 88, 118,
94, 81, 89, 84, 98, 114, 78, 109, 115, 104, 78, 96, 54, 75, 58,
104, 115, 118, 113, 126, 110, 99, 95, 128, 119, 109, 82, 109, 98, 103,
113, 102, 113, 60, 119, 109, 106, 123, 128, 127, 117, 116, 81, 115, 124,
123, 99, 122, 91, 100, 97, 121, 112, 122, 116, 83, 125, 104, 108, 71,
102, 109, 93, 128, 95, 106, 103, 126, 110, 107, 69, 87, 123, 115, 120,
128, 100, 115, 123, 72, 121, 0, 118, 121, 85, 106, 101, 110, 101, 124,
99, 125, 117, 125, 97, 125, 106, 92, 114, 118, 91, 97, 108, 106, 126,
117, 104, 62, 114, 122, 123, 127, 126, 124, 95, 102, 124, 79, 124, 116,
111, 99, 90, 121, 127, 98, 111, 119, 96, 119, 108, 112, 119, 120, 103,
126, 122, 116, 94, 118, 82, 127, 69, 128, 125};
const uint16_t H_128_256_5_H_cols[] = {
45, 1, 13, 58, 27, 26, 10, 33, 14, 29, 12, 15, 16, 3, 5,
22, 9, 15, 4, 11, 8, 32, 18, 32, 19, 48, 38, 7, 17, 12,
21, 10, 9, 60, 40, 6, 5, 22, 9, 55, 17, 4, 19, 2, 39,
6, 15, 8, 41, 3, 11, 19, 23, 42, 34, 91, 13, 77, 48, 17,
7, 28, 13, 24, 6, 2, 10, 16, 54, 1, 2, 1, 10, 11, 37,
13, 15, 27, 30, 40, 26, 10, 2, 29, 59, 47, 32, 9, 23, 16,
1, 28, 36, 5, 6, 23, 4, 12, 5, 24, 3, 15, 13, 20, 18,
20, 21, 42, 9, 4, 57, 31, 2, 7, 27, 25, 7, 1, 8, 29,
35, 31, 21, 28, 40, 3, 23, 7, 52, 4, 65, 78, 35, 54, 18,
39, 29, 34, 20, 49, 22, 45, 24, 36, 36, 87, 8, 53, 12, 57,
52, 59, 62, 85, 86, 14, 108, 34, 51, 37, 44, 67, 71, 18, 16,
65, 40, 70, 27, 12, 35, 30, 50, 33, 17, 17, 44, 6, 14, 22,
26, 81, 43, 105, 58, 101, 55, 26, 19, 33, 53, 32, 43, 8, 42,
40, 71, 24, 43, 3, 46, 56, 41, 28, 25, 30, 44, 57, 34, 21,
5, 78, 68, 51, 55, 14, 74, 64, 32, 45, 42, 79, 20, 67, 34,
60, 30, 33, 11, 27, 50, 41, 66, 49, 53, 47, 11, 25, 73, 36,
14, 37, 57, 38, 24, 66, 18, 58, 64, 37, 29, 73, 75, 51, 59,
22, 91, 45, 69, 104, 47, 67, 31, 55, 31, 54, 25, 52, 30, 48,
69, 74, 38, 95, 26, 58, 50, 95, 101, 76, 65, 100, 94, 35, 113,
62, 60, 57, 46, 91, 88, 74, 75, 81, 43, 92, 37, 21, 44, 80,
63, 49, 20, 75, 87, 53, 54, 56, 68, 97, 46, 112, 64, 105, 69,
98, 28, 89, 76, 47, 63, 25, 51, 84, 79, 39, 50, 63, 61, 93,
99, 55, 46, 114, 49, 93, 50, 82, 23, 81, 82, 56, 83, 61, 98,
93, 64, 72, 46, 89, 48, 109, 78, 74, 33, 60, 38, 44, 80, 90,
75, 69, 96, 86, 19, 52, 92, 61, 16, 82, 61, 88, 65, 83, 111,
73, 67, 75, 56, 97, 77, 88, 95, 47, 111, 54, 85, 111, 84, 73,
56, 80, 38, 63, 36, 85, 35, 102, 83, 86, 41, 112, 39, 62, 53,
97, 114, 96, 78, 107, 99, 73, 123, 69, 78, 96, 88, 98, 101, 77,
87, 94, 90, 99, 68, 48, 51, 120, 89, 72, 109, 80, 97, 60, 64,
90, 71, 107, 49, 114, 100, 113, 72, 100, 41, 91, 79, 94, 66, 31,
101, 95, 123, 67, 61, 76, 68, 96, 106, 106, 86, 118, 90, 115, 58,
110, 39, 110, 84, 70, 100, 84, 114, 97, 84, 81, 87, 112, 52, 112,
85, 109, 74, 62, 70, 99, 118, 121, 103, 80, 104, 95, 45, 66, 104,
77, 59, 92, 120, 103, 76, 111, 113, 93, 107, 93, 62, 100, 79, 96,
108, 59, 126, 110, 112, 119, 92, 89, 86, 98, 82, 72, 43, 118, 42,
124, 109, 125, 81, 128, 104, 126, 77, 99, 121, 106, 91, 109, 124, 120,
128, 105, 107, 108, 124, 102, 108, 90, 125, 106, 103, 102, 127, 63, 102,
127, 117, 126, 125, 83, 120, 111, 76, 115, 122, 124, 71, 116, 123, 126,
94, 118, 70, 118, 83, 107, 79, 68, 115, 122, 126, 92, 122, 82, 113,
103, 125, 117, 116, 122, 101, 119, 113, 124, 66, 115, 88, 121, 104, 110,
127, 106, 119, 85, 105, 122, 98, 123, 116, 116, 105, 70, 72, 121, 128,
127, 108, 87, 117, 114, 119, 71, 110, 115, 103, 117, 128, 121, 89, 123,
116, 117, 0, 120, 94, 102, 128, 119, 125, 127};
const float H_128_256_5_input[] = {
-8.8994349771084629, -2.2264881688239941, 15.221530002446757,
-0.39525362027279998, 13.442727654278771, -10.000442582434765,
8.5404090461277598, 16.432027973130197, 14.246872691160114,
2.6448289703038665, 11.863343696232654, 4.174651054544948,
10.288062518986955, 12.085683283784871, 3.4121899888598004,
9.1115751924588562, -10.810079499566237, 1.3739160908287105,
10.193128819909694, 3.5997991319409715, 15.252939624442645,
7.8059185917026843, -1.141552617398524, -5.4585533732512204,
-7.1985417950651627, -11.078712541348164, -3.7197747259098599,
-6.9715544083806256, 4.8350467668286372, -8.4378844630126757,
9.2909631551985523, -13.264491023395877, 13.29420431281155,
-16.107993796779667, -6.308916359108748, 11.90542068917763,
-17.405334641933944, 6.4284228626032878, 3.0768153742069018,
11.853700717454576, 17.640154289991976, -5.2721404813136417,
20.584732959872778, -6.7125902650906779, 6.5978715835307131,
-6.1735464272366514, 6.3164198345461697, -14.401260649632755,
-14.487703458954298, -5.8513629748056406, 5.5729511574836881,
-9.013132752980674, 8.9988683878222044, -11.263912700584942,
13.485110330806128, -4.8625805463887231, -8.9173751521280824,
10.960944349100908, -14.772741989217471, 1.1368460179590478,
10.533109114159828, -1.731122993192219, 6.0498682584846524,
13.360259295000249, -8.1132970979856438, 9.5693771119534112,
-12.578014725946508, 7.0229599627046593, 4.3720950386342494,
14.366897307196593, -0.2595503946882991, -8.822187045424192,
-17.794267274108481, -2.7237117577689975, 11.097280635523761,
9.7949231987861634, 15.294276496861425, 6.0841375010899243,
11.169445345055827, 11.904159075277251, 9.1840263923068974,
-5.5011617203311012, 16.754980283161505, 7.5513624901915035,
-12.170700227106005, -11.483103606370603, -12.025806209056533,
5.1085406001744822, 13.373965752403866, -13.93398032921742,
-3.3375271260328137, -5.0546492889404364, 3.4021410284759925,
6.2487730438409157, -12.667072890747553, -10.733091469360994,
-12.179180763062972, 11.176700470191063, -11.616901732983612,
-10.119483446721208, -8.6850004796910767, -12.677334280090912,
-4.3454670403804858, -9.6582743438569203, -9.4373477042683529,
-5.0933688337275695, 14.946470562034275, -9.5827796114077728,
-12.579787690724327, -5.1317618464667945, 9.7995335974617479,
3.935671855878343, -5.120219966909672, -1.0737815811081737,
12.262597164050909, 12.930462261713524, -10.002664845731484,
8.6911316894060171, 10.515367492600749, 17.842791232413518,
11.503068266000463, 0.7672764564891652, 14.793448459789646,
8.1945046885718504, -8.1324447231556771, 10.265204571293244,
10.433947332186976, -13.070884283907548, -8.3960998416231085,
4.9148913185470375, -10.422874683972211, -11.088739385454351,
-5.2623788916708749, -9.4339832891969255, -1.6059826144931535,
11.258751578423034, 12.782380682326652, 10.796361068381742,
13.81940336087583, 6.0191480445312484, 5.0635927171792945,
8.8888332858691825, -5.8812839036685194, 13.782784721594529,
12.501681731989231, 11.315875387889772, -3.773961578229545,
10.665302965437366, 1.2443349889724857, 10.748108985336613,
-10.647273973137242, -13.375772243768143, 10.778336161253916,
13.520253518547392, -0.31609537750065214, -2.475823983608934,
-8.0419367447924746, -6.4823648863210481, -4.5798319665012235,
12.710284434647598, 11.140388782304239, 8.018507577316937,
-12.549284695242829, 14.887316703670896, 15.010107967429951,
-15.399171325118063, -8.0816667358175973, -6.6302855944401404,
10.566758114915686, -9.6712985774865867, -10.989892866088582,
-2.9502229280575123, -7.8748744688277927, 13.391186021456775,
-13.450214789026996, -6.4126752277302099, -11.16710059702414,
-7.2444144765480658, -5.5672969972856778, -8.8773312015249726,
13.719522588578332, 11.07457454354517, 8.7479356580553347,
0.58609202162242569, -18.723523952614787, -1.9397327392511032,
-8.6455901886153637, 9.2918044013476511, 4.8898010354938704,
-6.9894142182003609, -0.1191884647878291, -13.44984965914426,
-3.4596444772305261, 5.1319125752378314, -10.427093821749148,
-8.5064597147739125, 14.736880938095643, -15.211136760645743,
-10.38069323739759, 0.087732074612520833, -4.7977922493487748,
3.1108186580087001, 8.1492732382718991, -2.7096006449185972,
9.4614578695259421, -18.242468149470778, -10.800555835992892,
-5.8325818881984466, 16.216906744162525, 16.028982056738251,
13.841633178111548, 3.301741016692473, -13.962273950825141,
-12.080675707754205, 7.6736779018117174, 11.959683046750843,
-9.8186269532308081, -6.8666083041682322, 10.854650842369852,
-17.865310956014465, 13.342746302221908, 10.237148734886931,
-9.5317378135033763, -3.3932680342422912, 11.135022697187321,
-5.8464827434562983, -10.855498726923935, -10.389826062676315,
17.22405328987611, -8.6670566421031872, -4.4906061687679069,
-13.926679140242809, 4.6527756761303296, 11.459319592377085,
16.469693825200174, -3.2267090796784621, -8.508420245307466,
-14.014716857177133, 17.46825981866947, 8.7394092695610119,
-10.559493481189753, 12.767938048701128, 15.138604949078795,
11.992106918420994, -4.1009466576601428, 10.895797683842719,
-11.102485145032849, 9.2740371065936902, 5.0223781181934672,
-13.009215931560048, -2.4537770130506042, 9.4538398738987919,
-9.4463497897265984, -7.4868090201247508, 4.9784182834226272,
8.3854387393004792};
const char H_128_256_5_detected_data[] = {
1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1,
1, 1, 1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1,
1, 1, 0, 1, 0, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1,
1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1, 1,
1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0,
0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0,
0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 1,
0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 1,
1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0,
1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0,
1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0};

View File

@@ -0,0 +1,20 @@
/*
FILE....: H_128_256_5.h
Static arrays for LDPC codec H_128_256_5, generated by ldpc_gen_c_h_file.m.
*/
#define H_128_256_5_NUMBERPARITYBITS 128
#define H_128_256_5_MAX_ROW_WEIGHT 5
#define H_128_256_5_CODELENGTH 256
#define H_128_256_5_NUMBERROWSHCOLS 128
#define H_128_256_5_MAX_COL_WEIGHT 5
#define H_128_256_5_DEC_TYPE 0
#define H_128_256_5_MAX_ITER 100
#include <stdint.h>
extern const uint16_t H_128_256_5_H_rows[];
extern const uint16_t H_128_256_5_H_cols[];
extern const float H_128_256_5_input[];
extern const char H_128_256_5_detected_data[];

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,18 @@
/*
FILE....: H_16200_9720.h
Static arrays for LDPC codec H_16200_9720, generated by ldpc_gen_c_h_file.m.
*/
#define H_16200_9720_NUMBERPARITYBITS 6480
#define H_16200_9720_MAX_ROW_WEIGHT 9
#define H_16200_9720_CODELENGTH 16200
#define H_16200_9720_NUMBERROWSHCOLS 9720
#define H_16200_9720_MAX_COL_WEIGHT 12
#define H_16200_9720_DEC_TYPE 0
#define H_16200_9720_MAX_ITER 100
#include <stdint.h>
extern const uint16_t H_16200_9720_H_rows[];
extern const uint16_t H_16200_9720_H_cols[];

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,22 @@
/*
FILE....: ../src/H_2064_516_sparse.h
Static arrays for CML LDPC codec, generated
by test_ldpc_fsk.m:simple_ut().
*/
#include <stdint.h>
#define NUMBERPARITYBITS 516
#define MAX_ROW_WEIGHT 12
#define CODELENGTH 2580
#define NUMBERROWSHCOLS 2064
#define MAX_COL_WEIGHT 3
#define DEC_TYPE 0
#define MAX_ITER 10
extern const uint16_t H_2064_516_sparse_H_rows[];
extern const uint16_t H_2064_516_sparse_H_cols[];
extern const float H_2064_516_sparse_input[];
extern const char H_2064_516_sparse_detected_data[];

View File

@@ -0,0 +1,132 @@
/*
FILE....: H_212_158.c
Static arrays for LDPC codec H_212_158, generated by ldpc_gen_c_h_file.m.
*/
#include "H_212_158.h"
#include <stdint.h>
const uint16_t H_212_158_H_rows[] = {
26, 3, 35, 2, 7, 22, 4, 1, 14, 11, 12, 13, 16, 6, 19,
22, 3, 6, 3, 19, 7, 4, 25, 27, 12, 3, 24, 11, 7, 2,
7, 16, 3, 40, 3, 28, 1, 22, 1, 19, 13, 44, 6, 5, 14,
25, 24, 39, 18, 8, 46, 12, 31, 22, 9, 2, 27, 23, 71, 5,
11, 56, 7, 8, 17, 34, 47, 55, 56, 61, 32, 25, 42, 36, 7,
21, 10, 23, 51, 77, 23, 5, 27, 15, 13, 22, 43, 21, 17, 61,
4, 30, 45, 33, 37, 22, 30, 54, 8, 9, 72, 53, 35, 46, 29,
27, 48, 66, 55, 27, 15, 10, 38, 32, 80, 13, 16, 66, 14, 31,
20, 49, 60, 57, 59, 73, 46, 31, 43, 62, 9, 26, 15, 27, 55,
86, 28, 11, 49, 33, 34, 44, 48, 27, 18, 67, 13, 38, 61, 35,
52, 63, 61, 84, 20, 10, 75, 112, 58, 60, 35, 50, 57, 67, 70,
29, 20, 17, 41, 65, 111, 53, 18, 118, 21, 33, 53, 61, 63, 74,
71, 78, 47, 39, 45, 67, 87, 36, 24, 58, 60, 88, 37, 25, 51,
38, 45, 60, 52, 32, 50, 69, 22, 65, 71, 41, 62, 76, 82, 89,
26, 22, 80, 118, 83, 93, 37, 54, 62, 71, 87, 34, 47, 29, 52,
92, 117, 75, 41, 121, 59, 34, 54, 80, 75, 100, 75, 104, 69, 50,
75, 74, 89, 40, 25, 69, 64, 105, 53, 44, 104, 39, 66, 68, 55,
70, 58, 91, 71, 75, 124, 55, 103, 83, 85, 109, 49, 28, 84, 125,
84, 95, 42, 55, 92, 73, 104, 78, 55, 115, 64, 99, 126, 92, 68,
130, 94, 40, 68, 89, 87, 103, 77, 107, 82, 57, 78, 82, 91, 55,
30, 81, 67, 114, 61, 70, 125, 71, 95, 73, 61, 83, 64, 98, 108,
91, 129, 59, 104, 123, 90, 120, 77, 36, 103, 133, 107, 103, 48, 56,
106, 101, 105, 98, 85, 126, 110, 102, 133, 104, 84, 131, 125, 43, 88,
94, 108, 110, 81, 110, 96, 99, 88, 86, 97, 73, 42, 100, 97, 117,
76, 81, 126, 72, 123, 79, 63, 108, 79, 106, 119, 93, 132, 96, 134,
152, 137, 124, 90, 94, 123, 146, 115, 119, 74, 65, 112, 103, 119, 133,
93, 127, 119, 109, 150, 114, 113, 132, 128, 44, 97, 96, 113, 131, 98,
111, 105, 124, 137, 109, 129, 113, 77, 135, 102, 136, 79, 86, 152, 105,
0, 85, 72, 131, 90, 114, 147, 130, 151, 109, 139, 0, 0, 136, 99,
100, 0, 155, 132, 120, 105, 107, 127, 136, 151, 134, 106, 139, 124, 123,
0, 120, 117, 153, 139, 51, 111, 102, 116, 0, 0, 122, 144, 140, 138,
128, 141, 148, 101, 137, 122, 156, 119, 103, 0, 138, 0, 105, 154, 138,
95, 118, 0, 0, 0, 116, 147, 0, 0, 143, 103, 122, 0, 156, 0,
141, 121, 139, 130, 142, 0, 149, 123, 155, 153, 0, 0, 121, 127, 0,
149, 76, 134, 131, 124, 0, 0, 123, 149, 142, 0, 140, 153, 0, 109,
141, 130, 0, 0, 132, 0, 0, 0, 129, 0, 143, 101, 139, 0, 0,
0, 135, 0, 0, 0, 147, 115, 144, 0, 0, 0, 0, 122, 146, 152,
144, 0, 154, 125, 0, 0, 0, 0, 128, 140, 0, 150, 101, 0, 0,
133, 0, 0, 141, 0, 0, 0, 151, 155, 0, 119, 142, 150, 0, 0,
0, 0, 0, 0, 146, 0, 0, 104, 0, 0, 0, 0, 0, 0, 0,
0, 148, 130, 0, 0, 0, 0, 0, 125, 0, 0, 0, 0, 0, 132,
0, 0, 0, 0, 135, 145, 0, 0, 112, 0, 0, 139, 0, 0, 143,
0, 0, 0, 0, 0, 0, 131, 145, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 116, 0, 0, 0, 0, 0, 0, 0, 0, 154, 133, 0,
0, 0, 0, 0, 148, 0, 0, 0, 0, 0, 142, 0, 0, 0, 0,
0, 0, 0, 0, 121, 0, 0, 0, 0, 0, 156, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 145, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0};
const uint16_t H_212_158_H_cols[] = {
8, 4, 2, 7, 4, 14, 5, 8, 19, 21, 5, 11, 4, 7, 21, 5, 9, 5, 15,
9, 7, 6, 2, 21, 16, 1, 1, 25, 49, 21, 8, 2, 8, 8, 3, 18, 25, 1,
16, 8, 1, 17, 8, 8, 17, 15, 11, 31, 10, 16, 8, 1, 4, 9, 12, 6, 12,
22, 7, 11, 10, 18, 11, 1, 2, 6, 18, 5, 15, 26, 3, 28, 14, 12, 4, 8,
13, 14, 25, 3, 13, 15, 32, 5, 30, 18, 11, 9, 10, 33, 19, 2, 36, 7, 29,
10, 9, 13, 2, 12, 8, 2, 12, 4, 15, 34, 14, 11, 2, 1, 3, 8, 5, 4,
43, 11, 3, 6, 1, 4, 4, 14, 2, 1, 7, 3, 5, 4, 19, 6, 6, 6, 3,
9, 4, 24, 17, 17, 7, 5, 8, 16, 14, 15, 5, 30, 35, 20, 7, 3, 18, 27,
1, 31, 19, 14, 37, 30, 17, 22, 26, 18, 7, 43, 44, 44, 10, 25, 12, 9, 28,
13, 33, 33, 20, 43, 20, 16, 22, 27, 21, 20, 22, 36, 54, 36, 16, 15, 28, 10,
38, 20, 39, 28, 28, 20, 5, 21, 17, 26, 29, 48, 15, 49, 27, 33, 23, 31, 9,
42, 20, 13, 16, 33, 13, 23, 14, 39, 31, 23, 36, 29, 23, 9, 22, 32, 13, 31,
20, 18, 11, 25, 21, 17, 30, 10, 22, 18, 40, 42, 41, 24, 19, 17, 19, 41, 34,
4, 48, 10, 33, 15, 19, 34, 16, 22, 21, 10, 26, 14, 24, 51, 47, 32, 18, 12,
9, 46, 11, 24, 47, 33, 5, 34, 21, 42, 6, 23, 14, 11, 27, 27, 51, 7, 30,
23, 10, 26, 11, 39, 22, 42, 22, 28, 11, 16, 14, 22, 32, 44, 22, 46, 39, 42,
15, 7, 37, 40, 6, 42, 46, 24, 39, 56, 19, 35, 44, 43, 19, 50, 55, 56, 26,
52, 29, 45, 55, 32, 56, 49, 40, 55, 32, 30, 25, 47, 23, 43, 24, 44, 56, 41,
53, 32, 38, 29, 47, 44, 49, 36, 48, 34, 38, 49, 31, 30, 37, 51, 55, 51, 43,
50, 27, 39, 25, 50, 23, 50, 51, 47, 38, 30, 25, 51, 40, 33, 50, 52, 34, 30,
34, 53, 28, 45, 30, 49, 13, 40, 24, 54, 33, 45, 26, 41, 47, 45, 55, 26, 53,
24, 42, 43, 36, 51, 55, 44, 48, 38, 23, 54, 43, 44, 33, 23, 39, 27, 28, 55,
50, 35, 21, 14, 14, 51, 20, 34, 56, 38, 24, 46, 25, 48, 8, 44, 29, 16, 46,
56, 56, 18, 37, 36, 12, 37, 43, 54, 38, 52, 41, 32, 34, 18, 19, 52, 42, 52,
43, 50, 42, 49, 54, 23, 53, 51, 19, 54, 56, 46, 0, 0, 26, 0, 0, 0, 21,
0, 0, 0, 28, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 26, 0,
27, 0, 0, 0, 0, 0, 0, 54, 49, 0, 0, 0, 0, 0, 0, 0, 0, 42, 0,
0, 0, 0, 0, 0, 0, 0, 46, 0, 31, 0, 0, 0, 0, 48, 31, 0, 0, 0,
0, 0, 52, 0, 0, 0, 35, 0, 52, 0, 17, 0, 43, 0, 0, 0, 0, 0, 0,
47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 0,
43, 33, 30, 0, 0, 0, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 49,
49, 40, 37, 49, 0, 0, 0, 0, 43, 21, 47, 46, 0, 0, 0, 0, 0, 39, 0,
22, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33,
0, 0, 0, 29, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 38,
0, 0, 46, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 0,
34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 0, 0, 0, 36, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 45, 39, 49, 0, 0, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0,
0, 48, 0, 0, 0, 45, 42, 55, 0, 0, 0, 0, 51, 32, 55, 54, 0, 0, 0,
0, 0, 50, 0, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 35, 0, 0, 0, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 40, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0,
0, 0, 0, 0, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 0, 0, 0, 45,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 48, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 53, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 44, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 53, 0, 0, 0, 0, 0, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};

View File

@@ -0,0 +1,18 @@
/*
FILE....: H_212_158.h
Static arrays for LDPC codec H_212_158, generated by ldpc_gen_c_h_file.m.
*/
#define H_212_158_NUMBERPARITYBITS 56
#define H_212_158_MAX_ROW_WEIGHT 14
#define H_212_158_CODELENGTH 212
#define H_212_158_NUMBERROWSHCOLS 156
#define H_212_158_MAX_COL_WEIGHT 8
#define H_212_158_DEC_TYPE 0
#define H_212_158_MAX_ITER 100
#include <stdint.h>
extern const uint16_t H_212_158_H_rows[];
extern const uint16_t H_212_158_H_cols[];

View File

@@ -0,0 +1,345 @@
/*
FILE....: H_256_512_4.c
Static arrays for LDPC codec H_256_512_4, generated by ldpc_gen_c_h_file.m.
*/
#include "H_256_512_4.h"
#include <stdint.h>
const uint16_t H_256_512_4_H_rows[] = {
31, 4, 119, 30, 148, 50, 53, 47, 6, 1, 91, 82, 20, 91, 180,
41, 42, 48, 97, 129, 5, 8, 162, 5, 55, 10, 100, 18, 111, 9,
71, 130, 26, 77, 29, 14, 9, 3, 170, 176, 18, 35, 21, 73, 80,
41, 62, 34, 72, 45, 141, 39, 121, 12, 46, 16, 91, 24, 84, 57,
16, 21, 2, 65, 44, 14, 32, 39, 143, 106, 53, 23, 31, 100, 24,
75, 27, 25, 13, 67, 23, 81, 99, 101, 28, 7, 153, 13, 43, 38,
64, 97, 7, 76, 22, 34, 35, 8, 19, 31, 40, 54, 43, 11, 52,
40, 7, 123, 21, 46, 10, 18, 98, 63, 48, 37, 25, 58, 33, 58,
84, 41, 16, 47, 185, 65, 58, 41, 8, 12, 63, 93, 60, 47, 23,
92, 4, 28, 52, 6, 74, 57, 43, 17, 148, 1, 11, 52, 12, 10,
109, 19, 74, 40, 3, 49, 69, 30, 20, 64, 31, 6, 82, 71, 89,
36, 17, 68, 67, 56, 110, 20, 172, 54, 36, 15, 56, 4, 26, 24,
14, 45, 158, 69, 5, 6, 2, 19, 16, 8, 72, 58, 108, 57, 125,
38, 24, 105, 56, 27, 73, 82, 63, 25, 22, 112, 44, 19, 14, 133,
50, 55, 3, 18, 34, 17, 42, 21, 1, 7, 26, 128, 75, 95, 111,
51, 15, 5, 3, 78, 79, 32, 1, 48, 108, 11, 32, 29, 72, 66,
15, 2, 66, 4, 2, 87, 113, 80, 84, 13, 9, 104, 23, 69, 29,
101, 54, 20, 136, 61, 203, 52, 93, 75, 9, 168, 142, 102, 140, 110,
194, 139, 160, 83, 145, 132, 62, 50, 198, 46, 94, 60, 130, 72, 192,
60, 76, 131, 50, 155, 179, 163, 12, 113, 197, 183, 120, 118, 70, 103,
120, 83, 208, 96, 172, 56, 174, 124, 161, 68, 140, 51, 139, 186, 143,
95, 93, 92, 98, 85, 107, 25, 123, 44, 155, 121, 96, 106, 133, 103,
125, 78, 59, 83, 66, 159, 112, 90, 133, 224, 131, 51, 157, 32, 49,
134, 79, 216, 11, 81, 33, 53, 128, 26, 28, 68, 85, 162, 67, 87,
68, 92, 87, 133, 40, 144, 45, 80, 187, 118, 131, 114, 35, 91, 135,
172, 98, 195, 17, 76, 213, 70, 141, 48, 70, 105, 79, 96, 149, 88,
99, 111, 38, 147, 86, 45, 77, 118, 61, 42, 161, 61, 73, 71, 44,
63, 216, 53, 117, 71, 60, 55, 81, 49, 33, 139, 134, 28, 188, 171,
176, 121, 119, 89, 70, 164, 151, 29, 195, 157, 135, 43, 59, 47, 36,
78, 35, 59, 179, 88, 13, 69, 22, 101, 119, 150, 80, 116, 171, 159,
172, 86, 122, 107, 66, 46, 100, 169, 159, 163, 101, 149, 105, 27, 54,
154, 86, 165, 170, 132, 93, 115, 142, 65, 106, 39, 150, 136, 90, 198,
124, 132, 82, 22, 183, 103, 118, 37, 30, 112, 190, 83, 98, 30, 120,
97, 39, 36, 109, 88, 33, 111, 156, 97, 94, 62, 74, 130, 34, 77,
51, 109, 175, 94, 208, 115, 217, 107, 164, 180, 10, 229, 184, 155, 158,
152, 204, 142, 187, 130, 209, 185, 110, 75, 219, 151, 95, 116, 200, 226,
194, 89, 162, 157, 78, 181, 240, 178, 77, 150, 217, 202, 179, 136, 163,
126, 204, 100, 236, 99, 183, 137, 236, 188, 217, 107, 204, 115, 218, 204,
145, 162, 241, 183, 121, 117, 160, 148, 143, 152, 169, 221, 166, 149, 153,
223, 127, 122, 144, 125, 138, 191, 146, 177, 146, 245, 153, 129, 231, 169,
73, 165, 112, 240, 15, 88, 158, 64, 163, 126, 59, 114, 137, 171, 126,
125, 176, 108, 124, 221, 202, 184, 65, 108, 230, 174, 146, 134, 87, 144,
189, 186, 106, 199, 109, 86, 219, 191, 205, 64, 173, 234, 141, 239, 168,
90, 123, 137, 76, 182, 114, 85, 102, 219, 74, 242, 215, 156, 122, 177,
156, 168, 228, 131, 173, 81, 205, 67, 85, 94, 38, 196, 161, 89, 201,
226, 206, 170, 139, 153, 178, 166, 184, 49, 203, 215, 233, 102, 62, 140,
42, 184, 57, 116, 189, 99, 37, 154, 37, 138, 196, 197, 92, 147, 243,
178, 210, 140, 180, 114, 190, 120, 104, 194, 220, 203, 200, 205, 110, 182,
161, 181, 151, 178, 225, 157, 196, 230, 152, 128, 187, 115, 160, 174, 102,
220, 207, 240, 124, 27, 197, 127, 196, 222, 84, 148, 239, 104, 228, 145,
147, 169, 61, 223, 164, 143, 134, 128, 160, 190, 229, 188, 156, 132, 79,
90, 104, 242, 252, 145, 253, 193, 238, 150, 224, 211, 117, 251, 199, 180,
254, 208, 209, 250, 248, 232, 254, 232, 144, 177, 246, 167, 159, 141, 245,
231, 210, 113, 175, 182, 227, 234, 254, 217, 154, 176, 233, 226, 182, 213,
197, 135, 254, 127, 255, 198, 206, 255, 253, 208, 247, 113, 211, 216, 253,
210, 228, 165, 243, 212, 222, 256, 227, 232, 181, 248, 209, 238, 214, 229,
215, 250, 199, 126, 147, 195, 244, 251, 221, 256, 214, 250, 214, 213, 252,
234, 193, 175, 218, 241, 193, 198, 167, 146, 235, 233, 166, 249, 239, 185,
173, 192, 252, 226, 136, 222, 256, 186, 174, 240, 242, 235, 215, 167, 129,
236, 223, 199, 123, 218, 224, 177, 243, 235, 218, 245, 256, 249, 149, 246,
225, 155, 237, 190, 95, 231, 175, 166, 201, 220, 251, 250, 221, 248, 127,
202, 201, 191, 230, 245, 191, 246, 206, 135, 96, 251, 55, 224, 222, 116,
234, 252, 231, 187, 152, 154, 233, 239, 227, 189, 205, 232, 247, 122, 138,
209, 103, 211, 185, 236, 200, 181, 105, 214, 244, 164, 213, 202, 210, 206,
246, 235, 212, 167, 192, 151, 207, 158, 189, 207, 229, 212, 223, 238, 188,
200, 165, 249, 211, 247, 238, 171, 219, 248, 227, 137, 225, 119, 170, 255,
173, 237, 255, 243, 192, 138, 203, 142, 253, 249, 230, 195, 241, 129, 244,
216, 186, 228, 201, 242, 241, 237, 247, 212, 225, 194, 237, 207, 168, 179,
220, 117, 193, 244};
const uint16_t H_256_512_4_H_cols[] = {
10, 63, 38, 2, 21, 9, 86, 22, 9, 9, 93, 37, 79, 36, 93,
56, 123, 28, 99, 2, 43, 95, 72, 58, 66, 33, 77, 85, 35, 4,
1, 67, 95, 48, 42, 166, 116, 90, 52, 101, 16, 17, 89, 65, 50,
24, 8, 18, 89, 6, 56, 6, 7, 1, 25, 50, 60, 118, 77, 26,
4, 21, 114, 91, 64, 79, 80, 54, 157, 43, 31, 28, 44, 141, 8,
31, 34, 33, 91, 45, 82, 12, 18, 59, 64, 124, 104, 94, 30, 82,
11, 62, 7, 2, 25, 48, 19, 63, 48, 27, 84, 12, 44, 201, 130,
70, 6, 106, 123, 14, 29, 81, 30, 100, 4, 26, 9, 42, 3, 41,
53, 76, 67, 52, 75, 44, 46, 97, 20, 18, 32, 20, 73, 90, 44,
3, 50, 79, 16, 13, 26, 11, 59, 21, 2, 81, 77, 5, 72, 6,
24, 14, 73, 37, 12, 146, 32, 13, 25, 17, 53, 23, 36, 7, 60,
71, 24, 10, 69, 39, 102, 49, 103, 51, 1, 38, 22, 36, 35, 8,
34, 32, 40, 11, 20, 58, 17, 52, 119, 136, 80, 29, 4, 15, 78,
160, 39, 23, 11, 27, 141, 40, 5, 15, 127, 49, 199, 3, 15, 29,
8, 62, 42, 71, 73, 56, 5, 57, 23, 142, 70, 63, 74, 7, 133,
28, 33, 59, 10, 113, 28, 18, 39, 34, 97, 47, 135, 5, 101, 35,
61, 113, 61, 79, 27, 23, 53, 17, 100, 16, 10, 1, 3, 13, 47,
64, 146, 187, 155, 137, 24, 140, 93, 98, 30, 26, 104, 54, 88, 66,
176, 61, 144, 41, 152, 13, 62, 187, 81, 75, 78, 98, 200, 99, 172,
158, 73, 88, 119, 96, 97, 175, 185, 137, 68, 106, 46, 144, 103, 68,
111, 55, 124, 115, 156, 22, 86, 105, 71, 102, 156, 170, 142, 120, 99,
30, 143, 47, 131, 96, 111, 199, 103, 100, 184, 126, 148, 49, 89, 143,
22, 94, 37, 76, 131, 112, 94, 163, 46, 121, 101, 139, 107, 134, 162,
134, 14, 106, 61, 25, 60, 71, 92, 113, 83, 46, 188, 141, 74, 236,
185, 72, 54, 112, 151, 21, 136, 91, 38, 116, 56, 162, 64, 114, 167,
45, 63, 147, 108, 107, 78, 76, 75, 218, 86, 27, 85, 214, 83, 116,
119, 42, 101, 177, 57, 55, 51, 16, 67, 77, 19, 83, 138, 66, 131,
38, 171, 68, 85, 168, 34, 149, 87, 95, 80, 65, 145, 31, 43, 170,
90, 99, 95, 133, 88, 166, 164, 120, 129, 111, 31, 40, 82, 169, 41,
12, 67, 41, 49, 110, 102, 110, 113, 163, 172, 199, 126, 104, 89, 29,
122, 189, 43, 48, 75, 183, 149, 109, 173, 45, 155, 155, 202, 14, 19,
58, 55, 195, 86, 83, 115, 92, 36, 91, 125, 203, 81, 108, 119, 84,
213, 40, 65, 151, 72, 151, 87, 20, 98, 88, 114, 51, 224, 70, 132,
92, 92, 144, 125, 187, 84, 132, 175, 68, 130, 74, 80, 87, 51, 19,
50, 82, 219, 242, 213, 178, 185, 162, 107, 129, 37, 111, 147, 130, 185,
181, 227, 123, 167, 112, 188, 159, 109, 205, 135, 180, 117, 179, 208, 138,
238, 233, 100, 232, 159, 215, 117, 179, 187, 159, 220, 109, 122, 179, 143,
149, 140, 110, 134, 128, 158, 33, 226, 139, 96, 174, 159, 177, 181, 127,
177, 133, 146, 177, 150, 128, 126, 240, 156, 105, 186, 129, 154, 191, 147,
153, 76, 124, 141, 180, 231, 191, 154, 202, 78, 233, 140, 196, 117, 184,
165, 223, 57, 136, 132, 158, 137, 132, 240, 121, 135, 74, 205, 176, 179,
252, 198, 121, 65, 193, 243, 171, 225, 206, 54, 139, 216, 182, 153, 142,
189, 200, 70, 176, 121, 225, 104, 98, 147, 222, 117, 32, 115, 226, 108,
161, 156, 107, 136, 188, 160, 178, 127, 217, 69, 110, 59, 96, 192, 145,
133, 190, 198, 167, 87, 186, 69, 247, 174, 183, 194, 221, 161, 60, 97,
188, 209, 140, 116, 150, 202, 213, 193, 173, 153, 114, 90, 105, 124, 194,
183, 15, 184, 138, 62, 171, 125, 120, 166, 207, 183, 235, 150, 197, 93,
202, 173, 215, 190, 94, 120, 205, 163, 148, 204, 55, 173, 165, 225, 47,
69, 191, 180, 204, 125, 85, 145, 151, 39, 122, 142, 224, 108, 161, 205,
123, 219, 106, 171, 237, 203, 216, 138, 66, 169, 130, 126, 118, 244, 206,
170, 112, 235, 242, 193, 237, 128, 154, 212, 146, 210, 84, 143, 105, 57,
35, 222, 109, 233, 245, 229, 244, 228, 186, 220, 190, 251, 150, 236, 149,
250, 209, 241, 189, 216, 214, 208, 172, 218, 228, 253, 197, 204, 221, 228,
162, 255, 238, 161, 237, 245, 253, 181, 242, 232, 196, 241, 154, 128, 217,
176, 207, 182, 200, 178, 234, 172, 211, 255, 148, 152, 209, 212, 199, 194,
192, 182, 155, 241, 250, 203, 160, 218, 243, 169, 168, 254, 169, 164, 239,
201, 251, 223, 137, 254, 230, 253, 248, 157, 227, 236, 249, 157, 211, 246,
244, 168, 254, 118, 191, 215, 249, 224, 157, 248, 237, 184, 201, 256, 223,
230, 255, 207, 219, 198, 235, 256, 207, 246, 234, 247, 198, 220, 192, 254,
231, 220, 239, 166, 197, 135, 227, 195, 103, 230, 246, 236, 252, 152, 252,
210, 245, 175, 222, 218, 228, 167, 196, 131, 230, 244, 118, 238, 115, 239,
234, 206, 221, 211, 217, 168, 210, 134, 251, 214, 200, 203, 247, 209, 102,
204, 243, 212, 170, 196, 251, 240, 221, 214, 195, 223, 222, 139, 165, 148,
212, 252, 197, 210, 208, 229, 180, 181, 239, 219, 250, 201, 248, 153, 227,
255, 248, 234, 231, 229, 224, 122, 208, 241, 190, 229, 58, 206, 192, 250,
52, 178, 195, 211, 246, 189, 186, 174, 238, 53, 127, 215, 253, 145, 232,
242, 160, 247, 164, 217, 240, 249, 233, 165, 174, 175, 163, 194, 182, 249,
213, 235, 226, 243, 256, 226, 256, 152, 193, 245, 216, 232, 144, 158, 164,
231, 45, 225, 129};
const float H_256_512_4_input[] = {
0.51757034789149192, 3.6747768327751107, 7.7236521981742676,
-4.7107278911943427, 7.7122230429603542, -14.946266731679888,
-9.5567730710166714, -7.5877780009775071, -8.3629835471455127,
8.4844922006171419, 9.4734932311757394, -6.8841383473145763,
-4.6284234216637214, -7.8669368046418358, 12.226645532420404,
-7.3774603770015981, 7.7649435759022252, -12.127076055381709,
7.4012504229333951, 6.5535650029238361, -12.318540215486564,
-15.835684442673877, 10.779009024429017, 11.841953278425423,
7.1804756215244456, 2.8408801132499808, -11.09563707808943,
7.1789245659484093, 10.24316438845271, 6.4838781564425041,
15.604657058526026, 17.695904359387381, 6.4313440196217382,
4.9488783865887793, 9.9527088015343548, -2.7205772402494488,
12.156344173793103, -11.205004871994769, -12.211802140176635,
-5.4465825069640195, -10.152012956739171, -1.1179875067929763,
-10.479027227263707, -8.5090340518598531, -7.5030586007744553,
-4.9370617561264698, -0.78486455084153151, -9.9902064527523908,
-7.1974696423785023, 15.904653930974046, -3.2958890233801612,
6.9052860853356819, -15.446573781345712, 8.2911853913447402,
0.40395028984397091, -1.5672283593714793, 11.262818645299314,
7.1710703603039994, 4.1597725238676002, -11.382339164684311,
14.132112287584638, 3.2925942129085506, -6.1011528087958027,
7.8516182070629279, 5.9768136552516342, 2.699484726705069,
5.2066829520768056, -0.7207484827070334, -8.2386610240355651,
6.0717182827619967, -8.5076501195080585, -13.703946410299512,
9.2623574093742604, -6.9682747118380446, -4.9023588860381846,
9.3084136203033694, 11.148851565040838, 9.1302433636417319,
-6.9420186741739887, 7.9337725600954645, 15.582342768204805,
10.766162729242598, -4.9576813210420525, 6.6727325567460882,
-12.196894026695226, 11.022208518924467, 1.6977876257198246,
-8.9073010297491386, -3.4873714683714097, 10.267082736130799,
-6.2704199741458089, -6.7409188535835654, 7.0799113259507331,
4.2517449421654421, 10.988809910933929, 8.3098010378717788,
0.65053609686067293, -9.8680908214463745, -0.13210703660490827,
10.569960823465198, 5.631834756326584, -17.599792146333385,
-7.4505114988199814, 2.0876055933892643, -11.848744235597531,
-6.370769553578242, 10.349368965148454, -11.054250547489133,
4.9685950633439182, 16.26542564640426, 8.9946743875150297,
-6.9695225550874884, -12.491901775385568, 5.221170286398829,
-14.57146740285134, -11.185574766943571, -1.4528792719442074,
16.807973653612009, -2.14773040667668, -6.5893455221648924,
-10.366321204598048, 11.545810725289135, 11.526831005704754,
3.8156547809267578, -14.793195556950453, 10.727608736368884,
4.245416988419259, -14.823682249573251, -0.055849778718978338,
0.12268898147135411, -5.3423951302536539, 8.9810197259759086,
13.968989424307708, 10.292317467705674, 10.814835776145282,
7.8639985326787416, -15.489411581463163, -5.3160377506090404,
9.6739321724911669, 7.3738788431938094, -7.2089426352102386,
3.2896767517308105, 11.134312631894316, 6.8196648270250888,
11.696870111795384, 11.33636158982544, 7.6883282280715841,
-8.5354168089995976, 5.5939282378823458, -9.6804348667718987,
10.27449691588806, -4.601540486911178, 11.476772689524227,
13.587705068864731, -5.4206086888829965, -8.2565155897262077,
11.240961601590284, 13.474564188433188, 2.9546569324344847,
6.7205439189069738, -13.857561305882877, -16.669935196013508,
7.7992349867934445, -9.1054167276310629, 13.234970834427072,
3.8904964584199755, -0.007103062296974271, -7.5226178742319778,
11.799567862083773, 10.306340656379247, -9.6031596648762214,
4.7873593091676456, -8.7508487803331807, -11.418105573040524,
-8.9917029259865018, -4.8764541287524565, -13.141445425385772,
10.478907923003296, -15.62610293315559, 12.174935599981024,
14.110425042238267, -5.3351060433143189, -10.448529758835216,
7.1555832021079713, -3.7581044977756339, 4.9877839461702953,
6.4352605191478229, 6.2681705969506636, 1.0591230129022271,
4.6014572060908856, 3.630881166938468, 5.2610118858162744,
-4.0406336475456959, 6.7089084012087339, -12.399263098594448,
-8.6885785210631923, 10.200283753268543, -9.6711128555761476,
7.9523636179902066, -1.6194893091097409, 7.8100926558018475,
4.7308921409583666, 4.2870845092503842, -5.5113211353649589,
4.6632369877554547, 13.580052366571808, -13.989676528031513,
7.4788332322884292, -7.9055834172669863, -5.4521774799559077,
-2.3832875853818489, 12.500172468473709, 4.4257047233124993,
8.6185463356078564, 1.6503341929121846, 9.3817571992318136,
14.707911493485314, -8.8168554234237906, 16.686275657629849,
8.0726217002484866, -5.7336803150162323, 11.199173436763308,
2.9624772806565214, 6.084008649398772, 13.651210034355321,
-5.3568028597546125, -8.1131526120118433, 20.586630811135656,
3.2537667200472802, 2.4661860405319476, -12.302300974267494,
10.14496212813636, 12.013406576337029, 12.48076525937795,
-7.7705021913306842, 4.4923244656818495, 3.9070226775151733,
5.2441749708856884, 5.3679526862494482, 13.94196173641695,
4.5296297811057684, -7.1127741954540973, -14.014901825754492,
-5.4003616016916451, 11.30329597194279, 13.212639183152664,
-6.7394206827710148, -9.3081209755867338, -2.8134083772289786,
12.362737057742141, -7.5816771419304487, -6.4823236067192118,
6.4368678007326325, 4.2139501741847152, -1.3015955505891499,
-7.0693979078400888, 5.1567879937036976, -14.29429720815733,
7.0965274119499995, 14.335090253318402, -1.1060086481123688,
12.280127372295182, 15.355627698217484, 7.1118230503395736,
0.080951481678914361, 4.5275811277845772, -12.807880002244142,
-7.9315604470260013, -10.460706930669154, -8.6438350740702976,
-5.0714513528336349, 4.1875900660492, 8.7133453013769007,
-9.8239011192052565, 6.2390365458120005, -8.4029965191052352,
4.984656567448889, -11.441087746951402, -2.8554666393879051,
8.7117720128765459, -10.315850818433494, 8.7178427912116181,
4.5674735423087416, 5.059245742630825, -6.9741413761506754,
6.8923077141725289, -7.3195029505868936, 7.0150611857028995,
-13.57329609597363, 2.4003974632430873, -12.79534048621632,
14.073423100856756, 13.050627886243262, -9.9719834315477431,
-8.9255382467931454, 6.4498466627026518, 7.9947952448158626,
7.2030719578630773, -13.912680862467084, 8.6608429906142881,
8.3632503895529862, 5.9305710042005879, -2.9130898919754795,
-11.254118896275536, -13.798108618024084, 13.07950958186338,
14.355477267752258, 3.222947027333253, 5.9042659378475841,
-8.1324540511219237, 7.1175191808602341, -6.585103539549686,
-9.2836832446594695, -15.365446897780474, -10.994019011437626,
4.0590717801675913, 9.5109814268426955, -4.3279461184809049,
-15.720038357484848, 11.951856945935143, 12.682014968828179,
16.336475563256471, 7.6649931256123782, 5.3001533728428951,
14.811865942579626, -7.1591674243249166, 6.9641361242422413,
2.2887071087144921, -7.4283680060564725, 9.8045942879168955,
-6.4177702207017902, 10.47585866871807, -7.6078593665950418,
8.6728241961706676, -2.3844019549449365, -12.333348889567585,
-8.0410508790992044, -15.319448351686553, 4.1439520121183158,
10.124921135545005, -2.719059876565721, -7.15172555283569,
-13.928003800487966, 5.0190908596544332, -10.550763525222086,
-9.6902455518808601, 3.4656033167131572, 5.7434253113056117,
2.2353462963087205, 8.2800699204033581, -9.5917816492257746,
6.604246872114893, 5.7926392372814988, -13.95249621884361,
-6.3255003024458976, -9.0958782067905091, 6.6894074274331334,
-16.305393183977255, -14.754831506925347, 9.9598275167453405,
-2.2953313029712268, -9.9770589384486907, -1.2849873707603492,
-11.674107434694577, 4.2308935045924834, -15.986216502652635,
-12.496143349107586, -6.961301171448163, 7.173141034418097,
-16.747323708994283, -6.1459334756956441, -7.6817564340549813,
-2.9759502920998209, 4.4290936044370053, 15.85792699420073,
3.8733475037532075, 13.282888674545026, -8.8075790389214674,
15.756528771444074, -0.9172738378747668, -5.8878468427817152,
5.3239983067421415, 7.0650495320494038, 10.266937497463937,
-6.4024274906880185, 5.7532733339731017, -16.811716029564213,
-8.4435829388264345, -14.547150170272406, -8.5663296440687802,
7.9505572216380145, 6.6923964384181422, 5.1145018718318767,
6.7546204865730397, -5.7136099383940193, 6.5164149727652187,
8.5399580765014118, 11.118659305825421, -5.11256462073184,
-7.4204131176081027, 2.4372467698010158, -11.332205684329931,
-2.300944450055125, -7.5761485315412722, 7.9239226824179134,
15.148232300109672, -8.2866195088681511, -12.500886819111757,
5.8898233180615511, 6.0191326161618939, -9.571768060299096,
8.2993401574423782, 13.192810814495525, 9.2287810197171662,
-6.3446655091317981, 4.6194007533037533, -12.299288931968976,
-11.301088930234318, -12.748142414710747, -11.089177834341021,
-11.952684158007653, -12.201173925517882, -7.8885413991638051,
6.162990209842949, 10.074139560291529, 0.33052151002636837,
-13.233240567315669, 8.5041479968410876, -3.877731464378761,
-8.4152150964636405, -4.416934778774996, -2.7605197724504817,
8.4248907474003509, 9.6866360704229582, -6.7860748062114764,
5.350251139963115, 8.0461693937601364, 5.4866837755943072,
8.2170770706027305, -4.9303099776579087, 0.19594956934783084,
-3.0366818211786448, -0.89771548197359008, -9.2559494368024176,
13.057529669212126, 1.3182610405525714, -5.379813192370591,
7.0595292864637926, -8.0652416728279732, -10.017709623333209,
-19.043167085088943, 4.2036836072934642, 7.2607959496260142,
-20.579086044233659, -10.955745136261804, 2.8075247300020623,
6.158819317084113, -4.1432994280765003, -8.4759687111809825,
-7.4063800738713441, -11.809011583528154, 3.7455788861378996,
11.055125561517878, -11.050002999845985, -12.641967828832232,
9.7182304238773387, -9.6040255370844871, 8.5406323003146039,
5.5370300264242678, 9.6390471518242808, -4.5175089872689815,
11.211130149275418, -7.0619345213828808, 9.0284753188655795,
6.5193504139524956, 5.9080653530360792, -6.9270802426346494,
-7.5939041868540862, 11.483724465414687, -6.4198704940922147,
11.594197774773704, 9.8177782003472842, 7.8573132285189722,
-14.764671284444628, 10.836352484846104, -5.1661833245215307,
-2.2845730141844491, 1.4521554038891078, 14.07531661629624,
14.874495505085839, -10.926627051439677, 1.0207490010126001,
-1.9216020879305911, 14.405401350119591, 11.010298478850032,
3.7506698273138919, -11.982303137905003, -6.2083663060173526,
6.2522765425768316, 7.7069832341275522, -18.065137191023226,
6.792106322469885, -0.93798035245625377, 7.8641939572750079,
10.30225964497456, -7.0018228039310735, -7.0742108654561564,
4.1031586655458723, 2.3748564555251002, -4.3322313906258154,
9.6230244300270638, 19.666940225626419};
const char H_256_512_4_detected_data[] = {
1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0,
0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0,
1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1,
0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0,
0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1,
0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1,
0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1,
1, 1, 0, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1,
0, 0, 0, 1, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0,
1, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1, 1, 0,
1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0,
1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 1, 0,
0, 0, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0,
1, 0, 1, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0,
1, 0, 0, 1, 1, 1, 0, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0,
0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1,
0, 1, 1, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0,
0, 1, 0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 1,
1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0,
0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0,
1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0};

View File

@@ -0,0 +1,20 @@
/*
FILE....: H_256_512_4.h
Static arrays for LDPC codec H_256_512_4, generated by ldpc_gen_c_h_file.m.
*/
#define H_256_512_4_NUMBERPARITYBITS 256
#define H_256_512_4_MAX_ROW_WEIGHT 4
#define H_256_512_4_CODELENGTH 512
#define H_256_512_4_NUMBERROWSHCOLS 256
#define H_256_512_4_MAX_COL_WEIGHT 4
#define H_256_512_4_DEC_TYPE 0
#define H_256_512_4_MAX_ITER 100
#include <stdint.h>
extern const uint16_t H_256_512_4_H_rows[];
extern const uint16_t H_256_512_4_H_cols[];
extern const float H_256_512_4_input[];
extern const char H_256_512_4_detected_data[];

View File

@@ -0,0 +1,440 @@
/*
FILE....: H_256_768_22.c
Static arrays for LDPC codec H_256_768_22, generated by ldpc_gen_c_h_file.m.
*/
#include "H_256_768_22.h"
#include <stdint.h>
const uint16_t H_256_768_22_H_rows[] = {
35, 7, 24, 203, 138, 29, 39, 28, 114, 79, 49, 43, 218, 92, 70,
192, 59, 1, 194, 129, 15, 5, 25, 62, 50, 28, 23, 119, 191, 112,
195, 18, 164, 117, 148, 82, 25, 120, 41, 100, 61, 4, 31, 7, 13,
135, 108, 128, 48, 45, 96, 201, 67, 17, 143, 42, 91, 44, 168, 49,
26, 38, 83, 169, 16, 86, 22, 25, 69, 42, 122, 94, 226, 145, 121,
242, 131, 165, 55, 81, 74, 5, 58, 46, 59, 32, 115, 139, 180, 6,
78, 20, 7, 135, 78, 88, 49, 28, 77, 158, 94, 125, 21, 152, 23,
7, 123, 160, 53, 11, 85, 82, 32, 60, 74, 65, 3, 13, 111, 143,
121, 46, 68, 121, 72, 177, 54, 166, 20, 130, 30, 139, 34, 151, 97,
47, 126, 1, 76, 72, 64, 32, 9, 125, 54, 114, 17, 82, 2, 30,
102, 29, 137, 2, 16, 206, 2, 27, 3, 13, 199, 123, 226, 20, 60,
221, 15, 53, 35, 93, 9, 124, 1, 109, 103, 73, 190, 51, 140, 90,
130, 57, 52, 225, 8, 47, 177, 66, 8, 112, 110, 62, 64, 104, 156,
33, 101, 26, 107, 60, 26, 196, 39, 34, 14, 54, 68, 17, 66, 5,
33, 104, 3, 214, 200, 35, 170, 51, 90, 113, 122, 8, 70, 65, 42,
80, 134, 157, 88, 19, 3, 98, 112, 19, 60, 119, 76, 18, 43, 232,
141, 175, 154, 118, 187, 182, 113, 37, 95, 169, 36, 17, 36, 64, 191,
51, 63, 24, 36, 21, 223, 27, 94, 142, 18, 22, 53, 45, 161, 81,
80, 68, 22, 169, 52, 109, 180, 61, 33, 121, 98, 118, 26, 96, 156,
101, 100, 73, 31, 87, 71, 20, 93, 132, 173, 1, 39, 151, 166, 106,
67, 87, 116, 196, 173, 56, 102, 120, 147, 30, 69, 137, 108, 21, 88,
84, 81, 48, 37, 102, 10, 86, 158, 78, 162, 39, 14, 144, 9, 91,
106, 96, 55, 6, 127, 135, 87, 163, 5, 25, 42, 56, 171, 225, 213,
99, 46, 133, 12, 194, 234, 159, 59, 55, 84, 10, 24, 40, 130, 228,
181, 186, 163, 72, 35, 115, 4, 149, 106, 19, 16, 67, 11, 8, 100,
144, 154, 27, 62, 37, 164, 2, 226, 11, 183, 48, 10, 176, 171, 197,
216, 155, 198, 44, 52, 75, 70, 74, 138, 184, 10, 96, 4, 99, 79,
208, 18, 62, 113, 167, 41, 38, 48, 40, 144, 97, 57, 134, 159, 211,
21, 146, 9, 83, 58, 51, 116, 32, 15, 50, 100, 6, 74, 31, 12,
19, 58, 78, 197, 162, 50, 11, 43, 89, 188, 132, 85, 94, 50, 65,
99, 66, 105, 69, 40, 157, 16, 97, 22, 63, 207, 72, 59, 142, 29,
76, 55, 206, 54, 136, 45, 40, 46, 41, 185, 6, 231, 13, 107, 208,
23, 173, 92, 145, 88, 144, 111, 119, 151, 68, 14, 129, 108, 89, 23,
36, 44, 47, 210, 4, 146, 89, 132, 111, 69, 57, 90, 117, 31, 14,
234, 183, 116, 214, 84, 249, 179, 209, 238, 47, 248, 227, 161, 125, 237,
220, 223, 237, 63, 200, 213, 240, 161, 212, 252, 250, 81, 214, 34, 159,
217, 184, 222, 240, 204, 147, 210, 211, 229, 133, 162, 185, 153, 249, 65,
15, 119, 204, 122, 161, 133, 138, 103, 204, 248, 38, 201, 173, 98, 181,
255, 73, 186, 73, 150, 189, 176, 128, 184, 101, 230, 56, 186, 160, 234,
205, 168, 243, 212, 205, 80, 147, 82, 93, 120, 214, 189, 195, 205, 141,
183, 152, 133, 255, 128, 174, 215, 229, 86, 160, 122, 206, 188, 165, 83,
246, 170, 85, 182, 219, 158, 118, 253, 104, 231, 220, 136, 191, 179, 79,
178, 166, 239, 116, 108, 167, 207, 221, 210, 207, 30, 158, 239, 209, 224,
199, 203, 142, 172, 67, 227, 75, 231, 34, 254, 145, 222, 240, 207, 107,
98, 168, 154, 233, 238, 33, 227, 236, 208, 241, 103, 141, 245, 190, 242,
128, 103, 232, 28, 159, 70, 197, 29, 155, 185, 218, 111, 188, 224, 252,
219, 164, 236, 163, 149, 241, 172, 219, 238, 216, 12, 156, 232, 217, 118,
136, 157, 247, 123, 230, 245, 202, 235, 217, 235, 64, 77, 95, 110, 140,
211, 254, 251, 235, 149, 253, 248, 226, 222, 256, 196, 170, 235, 152, 124,
168, 157, 127, 169, 184, 170, 71, 45, 247, 146, 120, 179, 176, 129, 249,
106, 251, 165, 199, 251, 220, 201, 224, 229, 194, 148, 220, 164, 193, 57,
183, 250, 52, 172, 180, 242, 175, 250, 91, 155, 187, 131, 61, 139, 252,
174, 107, 99, 77, 176, 179, 126, 192, 182, 125, 71, 124, 175, 202, 66,
178, 233, 105, 145, 140, 243, 135, 232, 85, 248, 153, 244, 115, 77, 216,
187, 139, 79, 171, 253, 204, 212, 156, 150, 218, 186, 86, 83, 198, 192,
151, 101, 127, 192, 58, 97, 208, 87, 188, 209, 137, 247, 136, 221, 154,
37, 199, 165, 126, 105, 12, 246, 187, 196, 242, 236, 256, 131, 213, 217,
230, 233, 105, 155, 198, 178, 203, 243, 228, 134, 123, 182, 49, 178, 222,
254, 244, 195, 225, 223, 193, 163, 141, 194, 252, 146, 237, 129, 76, 231,
92, 203, 177, 221, 117, 75, 197, 243, 27, 253, 92, 202, 215, 174, 228,
193, 254, 230, 239, 218, 80, 63, 223, 167, 109, 189, 228, 38, 149, 131,
210, 115, 241, 89, 193, 138, 250, 150, 171, 162, 113, 215, 185, 143, 172,
206, 245, 41, 209, 213, 216, 247, 148, 124, 44, 142, 117, 132, 127, 198,
255, 126, 110, 71, 177, 200, 175, 91, 152, 112, 212, 239, 249, 234, 140,
245, 167, 181, 104, 256, 241, 189, 244, 61, 200, 43, 148, 219, 143, 95,
174, 130, 114, 84, 244, 181, 137, 229, 95, 160, 215, 205, 24, 246, 53,
109, 251, 190, 236, 134, 153, 190, 150, 180, 227, 211, 237, 238, 153, 147,
93, 195, 201, 246, 166, 256, 56, 233, 114, 240, 202, 102, 75, 191, 225,
90, 110, 255, 224};
const uint16_t H_256_768_22_H_cols[] = {
18, 149, 117, 42, 22, 90, 2, 185, 143, 321, 110, 189, 45, 205, 21,
65, 54, 32, 230, 92, 103, 67, 27, 3, 23, 61, 158, 8, 6, 129,
43, 86, 154, 27, 1, 251, 248, 54, 7, 358, 39, 56, 12, 58, 50,
84, 8, 49, 11, 25, 178, 183, 109, 127, 79, 70, 182, 83, 17, 114,
41, 24, 17, 141, 43, 188, 53, 123, 69, 15, 230, 125, 60, 81, 140,
139, 99, 91, 10, 79, 25, 36, 63, 3, 106, 66, 290, 96, 407, 180,
57, 14, 82, 72, 206, 51, 135, 57, 271, 40, 68, 151, 51, 112, 286,
239, 148, 47, 174, 191, 119, 30, 220, 9, 87, 1, 34, 110, 28, 38,
75, 47, 107, 172, 12, 137, 226, 48, 20, 130, 77, 294, 38, 227, 46,
115, 153, 5, 88, 179, 88, 136, 55, 328, 74, 233, 34, 35, 183, 63,
134, 90, 41, 151, 172, 190, 195, 100, 28, 72, 11, 39, 182, 33, 78,
120, 124, 59, 64, 105, 302, 137, 56, 94, 242, 65, 126, 119, 5, 89,
58, 107, 89, 30, 40, 61, 245, 101, 64, 162, 29, 16, 252, 19, 31,
202, 170, 312, 134, 18, 52, 200, 4, 33, 74, 100, 125, 157, 6, 35,
36, 22, 19, 2, 95, 188, 29, 13, 108, 14, 126, 31, 15, 133, 184,
73, 10, 352, 37, 69, 113, 166, 152, 73, 201, 156, 13, 7, 121, 20,
158, 76, 76, 295, 161, 104, 196, 9, 4, 24, 211, 23, 111, 143, 59,
218, 138, 154, 159, 367, 82, 334, 44, 189, 171, 356, 373, 334, 118, 327,
44, 155, 147, 238, 234, 129, 260, 266, 105, 258, 37, 198, 262, 26, 152,
131, 289, 113, 196, 133, 169, 253, 319, 62, 203, 414, 411, 70, 239, 394,
231, 122, 136, 318, 60, 430, 218, 256, 168, 145, 333, 306, 253, 318, 85,
165, 266, 192, 257, 193, 116, 209, 138, 207, 311, 169, 279, 140, 62, 115,
379, 237, 205, 95, 118, 226, 80, 81, 103, 316, 111, 97, 302, 229, 444,
219, 262, 374, 170, 101, 249, 284, 319, 149, 346, 287, 197, 307, 159, 194,
333, 300, 199, 123, 276, 207, 175, 190, 247, 146, 296, 122, 378, 193, 45,
83, 121, 71, 162, 223, 102, 275, 316, 66, 237, 181, 265, 431, 49, 353,
94, 194, 312, 50, 132, 208, 160, 264, 120, 376, 144, 369, 80, 249, 213,
307, 298, 104, 294, 243, 263, 195, 225, 109, 168, 98, 21, 325, 338, 180,
102, 128, 397, 75, 227, 217, 343, 185, 295, 269, 260, 236, 187, 284, 117,
258, 361, 246, 254, 67, 173, 71, 264, 176, 85, 177, 116, 276, 364, 248,
86, 219, 380, 348, 161, 215, 55, 282, 135, 46, 78, 156, 128, 320, 132,
127, 209, 77, 342, 26, 386, 298, 192, 174, 179, 114, 166, 145, 261, 177,
344, 163, 139, 360, 96, 198, 141, 191, 285, 351, 203, 181, 16, 153, 131,
32, 184, 163, 289, 360, 199, 335, 232, 53, 42, 255, 240, 178, 214, 210,
92, 340, 173, 157, 213, 403, 210, 432, 93, 222, 329, 387, 384, 349, 160,
491, 167, 371, 208, 265, 370, 164, 314, 273, 481, 357, 68, 201, 378, 98,
171, 150, 434, 142, 211, 142, 216, 259, 329, 401, 297, 455, 421, 225, 443,
428, 268, 347, 186, 386, 97, 441, 256, 275, 267, 206, 354, 342, 417, 425,
353, 200, 278, 379, 395, 204, 224, 283, 301, 272, 454, 223, 291, 364, 176,
398, 396, 372, 272, 324, 301, 271, 270, 112, 311, 355, 292, 310, 321, 315,
494, 507, 330, 384, 293, 263, 463, 332, 416, 232, 404, 375, 286, 320, 165,
212, 346, 331, 270, 313, 398, 436, 487, 233, 409, 466, 366, 303, 430, 244,
236, 234, 124, 99, 197, 280, 144, 332, 335, 93, 371, 359, 341, 446, 91,
418, 290, 326, 324, 399, 267, 288, 241, 429, 417, 415, 287, 422, 309, 426,
368, 411, 314, 222, 484, 328, 347, 285, 228, 130, 352, 108, 48, 413, 363,
251, 241, 299, 410, 150, 250, 220, 389, 257, 305, 387, 281, 273, 376, 349,
235, 277, 451, 277, 385, 228, 416, 309, 299, 322, 399, 481, 255, 313, 389,
350, 361, 304, 390, 393, 242, 439, 245, 385, 350, 52, 87, 419, 147, 406,
323, 404, 420, 305, 345, 84, 415, 391, 202, 308, 186, 244, 327, 217, 363,
246, 362, 216, 155, 388, 247, 344, 373, 240, 345, 447, 212, 339, 370, 187,
392, 146, 406, 259, 351, 456, 420, 477, 325, 215, 238, 261, 243, 268, 303,
359, 434, 453, 296, 382, 231, 500, 339, 476, 106, 374, 423, 401, 442, 435,
478, 510, 429, 457, 252, 407, 436, 292, 421, 459, 495, 476, 340, 283, 382,
167, 465, 310, 509, 428, 279, 204, 365, 496, 380, 412, 326, 472, 474, 341,
459, 497, 471, 473, 498, 413, 356, 449, 426, 395, 478, 469, 467, 500, 506,
437, 463, 235, 457, 408, 460, 254, 450, 452, 372, 490, 505, 397, 437, 462,
288, 433, 506, 466, 297, 438, 405, 394, 317, 148, 424, 467, 447, 322, 337,
485, 502, 509, 441, 483, 494, 448, 472, 402, 458, 281, 451, 431, 315, 505,
175, 452, 453, 369, 479, 493, 479, 510, 504, 443, 414, 502, 405, 427, 508,
282, 488, 308, 280, 221, 354, 427, 278, 435, 432, 164, 492, 465, 403, 503,
348, 483, 336, 470, 470, 409, 300, 448, 366, 464, 462, 486, 484, 501, 493,
460, 402, 486, 489, 442, 492, 377, 392, 306, 456, 323, 419, 473, 269, 440,
365, 381, 331, 498, 450, 224, 274, 229, 412, 418, 482, 464, 440, 388, 438,
357, 274, 487, 469, 355, 512, 400, 475, 362, 336, 445, 455, 485, 507, 317,
408, 367, 495, 337, 439, 433, 330, 458, 496, 504, 375, 304, 475, 468, 461,
480, 422, 499, 489, 444, 423, 214, 474, 424, 343, 393, 461, 250, 377, 358,
396, 512, 508, 383, 488, 400, 471, 391, 477, 291, 501, 511, 221, 482, 490,
491, 445, 503, 454, 338, 381, 468, 449, 497, 425, 293, 446, 410, 480, 368,
383, 390, 511, 499};
const float H_256_768_22_input[] = {
8.9323881489912722, -14.346922710565353, 7.9693390759559781,
-5.575983146144643, -11.430007344507024, -11.797433382704103,
-7.6498596597609545, -7.881023325143766, 4.7029642025464975,
5.490489593506263, 1.4577054829853482, 7.2204914066015347,
-6.4495501165249394, 11.025143103007442, -9.6136273661905971,
-1.6292633004367878, 20.082835454091001, -15.940623976141929,
-2.9320120314706735, -4.3372895006030534, 5.8549869318024657,
-7.8135927951559925, 4.4717025005955255, -7.1804626225242245,
8.8281745058367793, 3.457866082712139, -11.660964767047432,
15.344085170249253, -14.466810773633428, -10.293997562512834,
-6.5294617860841004, 2.6337196833307024, -11.070543876657444,
5.7359108096272164, 9.0013294714941843, -9.1923366442599423,
8.3397116927192272, -7.3466443766727068, -7.0208885950279667,
-9.8833064990274835, -11.070411858783441, 16.189201249627562,
-6.6872549284064142, -11.752890503765991, 8.888774213749782,
6.0968391171951497, 4.6589995649358533, -13.575988817182116,
11.224485296177397, -10.220694397171258, -5.4572791361037458,
3.0379566142247696, -10.350052412180393, 10.682941155969285,
-4.9736564167026174, 11.948298747287996, -9.0750233401887872,
8.9486285395989267, -8.0970017828965126, -6.5844009128903371,
8.5356201812866281, 6.8576026698255736, 3.5824292008949179,
6.386672876216724, -15.44333294899913, -14.723335707927411,
-7.1535041654585925, 10.057507199075706, -6.9304518083413749,
-13.454196499566493, -4.138927837975757, -9.8229530349333984,
-4.7378733928678765, 9.7370721449903357, -11.850883212615898,
5.8425014756304456, -6.9027200123108363, 8.7507430345166597,
-2.8432533600339798, 7.1365746925349614, -6.098608401582597,
10.486813349939659, -8.8989094853818393, 7.6668852841834365,
6.3748984557020911, -5.4320648642184377, 12.959555816131948,
6.6472990487222825, -4.5586715631096242, -10.121473995028611,
13.889214737960058, 7.8618812777297702, 0.65114006436468486,
5.6488480073158049, 5.572561535915213, 2.4203295039424271,
5.3724413783839795, 10.445189341740317, -15.231581540217265,
11.189031424930562, 13.490253048718506, -7.5847033262880901,
8.1341785315194368, 4.667483152501207, 10.057012188688605,
-12.532915718955612, 17.831016306467532, -7.0233337748720057,
-8.1477498232874108, 6.5993887776727203, -6.605350841986966,
-7.0309413757967123, -0.87776810176011932, -7.9287494770117224,
5.1536577951126938, 0.56224938859050333, 7.7410604756629082,
-10.567376193912894, -2.4437814999269047, -1.2455732716974919,
-8.9878404597781163, -10.226284826932922, 4.5715929705982656,
-1.3060897521729748, 9.6931031456180285, 6.3549868823010955,
-7.6817147139176463, 8.4268904957327955, 0.72594931178019784,
-4.9826196594501706, 8.5326984912532176, 2.0637319625971493,
-4.2933223803232075, 8.0239298244286879, 1.7951957372413565,
0.084600427180267501, 9.4399601205840362, 10.396717221311645,
12.856923054222854, 3.3295462715836468, -7.6253580712992282,
4.4434471213207374, 6.3733997531278987, 5.4209913860102539,
-5.9866755286453737, -7.0287078896424156, -9.2179437166191374,
-11.790731307180192, 8.455859639343128, -8.3117274581248051,
13.838681948013669, 7.5475760198641648, -10.086023553300919,
-11.224918245135393, -3.3058930832202531, -6.8195757099451129,
11.709166727746231, 11.710100491323546, -11.077873187765078,
-10.227016885555694, -4.2941243793572408, 8.1424248467837987,
9.7722584940844754, 7.1104245309154912, 9.3804477382031415,
-7.106685163129332, -7.2437598314289575, 11.947702093459393,
-1.057260209023416, -6.765299028699161, 3.3425539547981304,
13.328906459054352, 4.4101064786390305, 1.8051901230395977,
11.535802590105595, 0.81386101415425482, -8.165348209826135,
-8.5774987728328416, -6.0775939508580219, 2.5963421619843943,
6.3292406903055642, -8.4458269581431491, 8.7662642361276717,
-5.819334215801403, -13.610981269704446, 5.0765800356900179,
8.6249353046138477, -4.9634433316247675, -3.9950013700332065,
-7.6929117100191453, -6.3633253856519749, 0.83722518023775461,
10.425061034991041, 10.934194165601433, 10.580235622153944,
-17.515337920449952, -1.537113005053216, 10.026745250979713,
18.991835102357538, -9.10384082546339, -13.768910919694958,
5.4796127108483343, -8.9244398152912101, -11.548649423930978,
15.611931291120561, -8.908049321272264, -11.715023369923955,
-8.5067714993118528, 8.669606218924919, 8.6186685199527773,
-0.30417248355831389, -14.992242521244618, -11.237143275747075,
15.47971006097473, 7.0259516978639338, 10.065037137491313,
7.8868287877920169, -12.78707872542274, 7.4550220422461217,
-16.404346129675449, 13.30456637678888, 9.9512518647161254,
7.5942461140693247, 3.7624642178418926, 9.8925251212558027,
14.146774666880505, -6.8718384088583475, -3.9981741290451276,
9.4511470096099846, 11.953465594032014, -11.215529849347973,
15.45129835369298, -7.3274909872161418, -4.9654010419320853,
7.7259448497328904, 9.8641694370073871, 1.1150439872404596,
-10.084099868296887, 12.049728969177872, 13.071957031320016,
6.9097309932538309, -0.39659296549442785, -2.9217410655323537,
-9.5561149122145306, 4.3607269616443673, -7.3795521023764916,
-11.702904880630188, -1.5433424172046679, 15.057989444533467,
-1.2565455630730749, 8.9880357276703204, 6.1129770246307693,
11.328910534091127, -2.9309511311565144, 11.207912500256919,
-5.7404867114420988, 5.9950024570017471, -5.7910643096127341,
5.4208744627397838, -4.5716714958282108, 8.1298949011896831,
-11.711123662713085, -12.017719365072217, -9.7122748441533471,
-6.6047630492267668, -14.567681472229127, 7.7859507737798745,
-13.177213209080305, 1.409111307587259, -1.5011399595588764,
12.057098493693852, 6.4171185080762427, -11.634125892968456,
11.044794834453159, -14.65558507132892, 13.72196292983746,
11.040226522930523, 6.2584434572994629, 10.730689310638432,
-4.618515034465152, -1.2143032307321182, -7.4189186448958875,
-7.669206125358758, -9.1157167366336314, 4.9339345930796563,
8.3824960985509129, 9.5126664524245168, -4.4260649375190164,
3.6144449441325635, -10.893425304008998, 8.3182825177379076,
13.628768431834336, 7.1730917891722781, 10.087828497729179,
-10.489116618742848, 3.8856613599836791, -15.602509765497121,
7.2487646720202497, 12.218582462579505, 0.49211467796430364,
-0.066484718374747426, -8.4329617736870581, -3.0127430939186324,
5.8144883342823128, 8.6729115102941527, 6.121491141792947,
12.360054236262307, 13.543171514998027, 12.1058948920289,
-12.808248849582228, 7.3365859144200227, 2.0678328559134647,
-1.7234260199225477, -13.299836520520724, -14.789707963127125,
6.6006452928112296, -11.956138068501044, -8.8455623029732315,
-2.9088913906661178, -9.2132364101435229, -5.8435384831621802,
5.8547803901805464, 8.8126231169253515, 5.5222906262970843,
-10.39753464755324, -12.211638565038697, 17.292580458421533,
-8.5876470036423616, 4.7678649428994673, -8.4226853315054129,
8.700249181036531, 12.952510035514349, -7.6833594373108234,
-3.0202355585479235, 8.7526883579126586, 11.663176352140155,
11.981232949878732, 11.031377901823634, -9.9501241218952927,
-15.089187715856323, -10.601089041749843, -6.388179627159027,
-4.6793834219078603, 3.9045854726147744, 9.8861746042718845,
0.042855319175376341, 14.3414643477855, -10.407450105082846,
3.0336086321363265, 13.793872516546351, 8.0501940947932038,
4.5991785638040428, -7.9303874601996593, 14.049591025574657,
17.380262133125449, -7.8459793004203222, 8.705024309261562,
6.6262770303011473, -10.086319438204431, 11.047015628809582,
-7.3582609209654937, 8.2545626149113698, -11.989564968227834,
2.5193529800955838, -13.244337020280915, 4.8502499826361731,
14.474602979942233, 6.9452935547158612, -7.0450024656821544,
-10.212713949627561, 13.849620674538945, 9.6833988531870752,
-5.9081325241866898, -10.018382284344064, -6.6229672412657683,
13.879028902842597, -14.33382686638503, 1.9643288191802857,
0.16885137143821174, 4.2277292060928415, 10.805548194765471,
-2.4964830143581742, -13.101405042095365, -13.302619999785827,
-5.9241726080344108, 14.467933324092012, -8.4591055199339298,
-10.184465268318146, -19.503434376811896, -15.229997219469618,
4.8345001979789908, 8.0104662922364813, 4.4017092080658031,
-10.231395640484859, 3.9727378370282236, 14.2026231360392,
-8.4599285310056196, -12.215460236402727, 5.394330835754074,
-7.3356861012337502, -3.6795675270857404, 8.0787223556775896,
-9.3271996634056915, -7.4552893328088974, 6.4828043001554736,
-5.9782833623900453, -1.9874116057406432, -7.5397619196439196,
6.0283880381663453, 7.1105241207440057, 10.966410901409223,
-12.375355422502105, -13.997023100211885, 7.7681673568373251,
6.0215105845435861, -0.44409932549081066, 5.2745451861685329,
-7.2390124351491778, 9.8045113653170404, -3.5483006663908347,
8.4455042050030151, 6.750717907091107, -9.4719350776568856,
-10.118021370720959, 2.7210293880017544, 8.2387439951112835,
-8.6980762983904132, -11.317194860133458, 14.906902369795306,
8.5196626788523204, -5.7269320734414473, -6.4873691363023527,
11.118139263369434, -5.131366585591298, -5.1884527453006095,
2.1617883533714988, -3.2189908119713868, 9.1103687701917888,
6.1325191653578388, 2.411217194453199, -3.9050656149976706,
-7.7536941054127926, -11.37779012533324, 2.2663187424687767,
-14.954242385161651, -11.78196073144464, -5.9162280171814157,
-14.78759715146799, 4.6557410991557671, -5.9735521657583144,
6.6275285823558434, 3.1024480512797177, 10.06871404793227,
-10.543486892529438, -4.7522704594310561, -0.61601641164246079,
-7.6838548304456449, 15.87411724597454, -11.665450977940896,
-4.4365872375343205, 3.8247335268174831, 6.5326004536991329,
12.435275476860919, 8.2570494940406931, -3.3808435906687064,
-4.7552502897093776, 4.5050634114776189, 10.672688962977514,
12.075918776794476, 1.7986308060137437, 4.1923629883751303,
11.752733569678064, -10.339474897439999, -16.186126637379726,
-10.796197122972746, -9.214305404692233, 13.497270712719919,
-9.4453197440185637, -15.69391834232802, 12.700707467329744,
4.7024717561391816, -10.327031105585643, 3.8477541445369963,
-5.4896217736139521, 8.0519776507030638, 5.0341370218785944,
6.0456145072449026, -10.710449576292405, -8.6533964520637863,
-12.257979327405108, -12.078971121036197, -10.881473761466781,
14.147239535310518, -2.6328735032346162, -15.716779182806999,
-9.4242407781207191, 8.1426142269915331, 8.1611227842517025,
-3.6252335542783207, -9.8025397455364676, 12.763568770750853,
-9.5331346940178729, 4.9974585644427902, 5.9879812547323237,
-6.2951737225996656, -3.9498007698755808, 10.122100576790197,
6.6618355586974447, 4.6997313218613739, 8.1707413233409465,
12.216703169693357, -12.426888921432578, -11.146002828849364,
6.3741370321379085, 7.6566213756894941, 2.2128160251661328,
-5.4585144064775051, 11.139007406371906, -0.057747253315553991,
-5.7619887506088023, 11.559333388163129, -7.7967134901859065,
1.5414474492709742, 10.25242202166922, -2.4376317695445988,
2.4485328874029482, -5.2527291639016829, 6.6966144242231938,
10.1056403723797, 9.6715660466767641, 12.199837902638398,
-9.9779918730035462, 7.0398600566727509, 13.235714186918685,
6.2264247221125624, 0.49429650260801106, 11.011555724458017,
-10.232864614422217, 1.0779763774514628, 2.3155686395401807,
13.340589994791694, -1.4927270737348184, -6.3253956772331872,
11.17892183418669, 4.6804642104000935, 9.9681133942788716,
-15.354347685766472, 12.132973558045073, 16.863099386593074,
-16.254027114251262, 8.9259599464113109, 4.4137266569998239,
13.238368561676072, 7.7024856954025447, -14.55028063381018,
2.9997759568600673, 5.9324435315675945, 8.9709392409618971,
9.9626050864742304, 6.0433161763769014, -11.094500816935717,
5.0773121433888173, 8.8653918721034444, 13.358789208346618,
-3.3614825528284049, -13.508375784100188, -9.738962524121586,
-6.8429863842661831, 9.3377608423949319, 9.1681044258536648,
2.6799203842673007, -8.1054023029408491, 3.7516032358089029,
-8.7628704110935036, -11.00085544248971, -5.7755226059613731,
-0.22395652308977335, -6.5936781093194714, -10.208015637116542,
-13.848721312194234, 9.876782398829647, 9.437177021184711,
13.967144290195598, -1.5603470410313784, -12.959548633651529,
-13.772706675904137, 9.4983989705496406, 4.8575506841930132,
-13.426339798518415, -6.8882549582242767, 10.020963852018646,
10.738289970141997, -3.5322181002015958, 8.9790411088584392,
-4.3462795772567171, 18.871182150839772, 6.1273012327332719,
-6.5695645965276261, -8.2641966395439947, 0.85103670621664851,
-16.902729440065183, 8.2697379486332849, -13.872113727992556,
13.619190901125434, -12.016737280921415, 1.639362596352592,
7.9267314843757219, 9.5913300412571747, -7.091648374422606,
5.8969231337131776, -6.4726579518981842, -4.3486881710817249,
-9.3821085024104374, 10.917473221565318, 2.0279974118340656,
11.063658410060127, 6.9102623370057179, 6.2072533209374354,
11.520596314303049, -1.5151713191609242, -6.5680763433887153,
16.444160798635387, -5.3791474454897958, -2.2789027240044306,
-11.56354929134242, 12.427791285408714, 8.610090315178283,
-4.0511067764443416, 7.8692225359304206, -6.7079554414922891,
5.3999766490636549, -8.3179099730168247, 3.6976737002905016,
-17.552301172297032, 6.1364424779438496, -9.7751306565781455,
6.1931141049267051, 16.865997593208082, 3.7361395596034965,
3.8267814056050402, 10.269712544637359, -12.797853578296257,
-11.480255281563355, -10.876303582685193, -5.4324292010775084,
-6.498689183845423, -3.8053637987749771, 13.525521072484571,
-9.0129342094166027, 12.475202758118572, 0.35156955969912357,
-13.374269540997016, -10.783210983288953, 10.807251662994091,
-12.38126506382245, -5.8440304046740765, 6.1261248782561006,
10.426389918103478, -10.251207974472264, 5.7090742604182871,
-7.3918232768010466, 14.40018609866692, 10.516336495878081,
5.0907717527746268, -10.790845519857502, -10.344691466108914,
-0.81606960094075376, 5.8009330688061373, -6.4523871686156467,
-13.804096639962156, -3.8036780326942807, 4.4403995451427036,
-6.0454707691007998, -4.457208611267375, -9.3857200039694799,
-4.2448642066932596, 11.390356801037848, -11.880538676942361,
16.20974462472968, -8.1065692722381755, 0.10605368805162664,
-4.0113679201569177, -3.6764938206674111, 7.1589548870717845,
-14.894945704589089, 19.416913935254374, 10.455230095243721,
19.094980784068856, 12.749384013660427, -10.507945794429656,
-8.6068528180875727, 6.4779699897920597, -7.4688822584989687,
11.422119526982375, 12.683635758259111, 6.9141103733570297,
-3.4807019716082186, -1.0659446865294615, -5.5303642351312705,
-8.4756723068747828, 6.5495058918879581, 17.01132173619504,
-8.6901951713633352, 0.73205096704640338, 12.18517096248061,
9.6207253649723565, -0.11293013857241167, 14.416380598864535,
-3.4842485223978721, 8.538043021108594, 7.9853181927735468,
-0.17854963422944989, 15.297082129948347, -8.6558345268403372,
-8.8359118745350518, 6.8797931777949346, -13.579058234606006,
5.6056971276091021, -4.7325737401807606, -10.043277228766703,
-8.496193000774646, 13.208604057890039, -2.6125003977921626,
-9.0028742948434246, -8.3466406676435714, 4.0100931584168364,
8.607156558507457, -9.0376712732526396, 11.431914424287775,
-0.65772909230851129, 9.5881935247089132, 14.183768387632979,
1.0198498160186804, 12.12574599778624, -8.8946934403733184,
17.588496278735882, -1.8672309187831959, -10.261023592868218,
-10.98895162511046, -2.7839860694432046, 8.6202133936627021,
-2.9996428552260639, 12.935041261170362, 10.751931118319499,
9.6367189688985686, 10.40091951562113, -9.8677128130479659,
-0.85076949696133808, -8.7094472775564959, -2.7363773372569646,
-10.036127502962517, -3.494015934190208, -4.2404950010667983,
4.590562970442905, -11.458041901958747, 9.3378179645353931,
12.328201773184455, 4.9840870074452948, 12.800873263637309,
-12.800832354798168, -8.3806105857214561, -7.1573424713736697,
-3.454056906476644, -10.568266292992009, -3.1957929098569293,
-12.197503600264985, 14.897621213566064, 4.3558337641415363};
const char H_256_768_22_detected_data[] = {
0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 0, 1, 0,
1, 1, 0, 1, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1,
1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1,
0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0,
0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 0,
0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1,
0, 0, 1, 1, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0,
1, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 1,
1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0,
0, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1,
0, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1,
0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0,
0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 1,
1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 0,
0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1,
0, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1,
1, 0, 1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0,
0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1,
0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1,
1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 0, 0, 1, 1,
0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1,
0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1,
0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1,
1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 1,
1, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1,
0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 1, 0,
0, 1, 1, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1,
1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1,
0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 1, 1, 1,
0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1,
1, 1, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0};

View File

@@ -0,0 +1,20 @@
/*
FILE....: H_256_768_22.h
Static arrays for LDPC codec H_256_768_22, generated by ldpc_gen_c_h_file.m.
*/
#define H_256_768_22_NUMBERPARITYBITS 512
#define H_256_768_22_MAX_ROW_WEIGHT 2
#define H_256_768_22_CODELENGTH 768
#define H_256_768_22_NUMBERROWSHCOLS 256
#define H_256_768_22_MAX_COL_WEIGHT 4
#define H_256_768_22_DEC_TYPE 0
#define H_256_768_22_MAX_ITER 100
#include <stdint.h>
extern const uint16_t H_256_768_22_H_rows[];
extern const uint16_t H_256_768_22_H_cols[];
extern const float H_256_768_22_input[];
extern const char H_256_768_22_detected_data[];

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,20 @@
/*
FILE....: H_4096_8192_3d.h
Static arrays for LDPC codec H_4096_8192_3d, generated by ldpc_gen_c_h_file.m.
*/
#define H_4096_8192_3d_NUMBERPARITYBITS 4096
#define H_4096_8192_3d_MAX_ROW_WEIGHT 9
#define H_4096_8192_3d_CODELENGTH 8192
#define H_4096_8192_3d_NUMBERROWSHCOLS 4096
#define H_4096_8192_3d_MAX_COL_WEIGHT 13
#define H_4096_8192_3d_DEC_TYPE 0
#define H_4096_8192_3d_MAX_ITER 100
#include <stdint.h>
extern const uint16_t H_4096_8192_3d_H_rows[];
extern const uint16_t H_4096_8192_3d_H_cols[];
extern const float H_4096_8192_3d_input[];
extern const char H_4096_8192_3d_detected_data[];

View File

@@ -0,0 +1,194 @@
/*
Copyright (c) 2003-2010, Mark Borgerding
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.
* Neither the author nor the names of any contributors may be used to
endorse or promote products derived from this software without specific prior
written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/* kiss_fft.h
defines kiss_fft_scalar as either short or a float type
and defines
typedef struct { kiss_fft_scalar r; kiss_fft_scalar i; }kiss_fft_cpx; */
#include <limits.h>
#include "kiss_fft.h"
#define MAXFACTORS 32
/* e.g. an fft of length 128 has 4 factors
as far as kissfft is concerned
4*4*4*2
*/
struct kiss_fft_state {
int nfft;
int inverse;
int factors[2 * MAXFACTORS];
kiss_fft_cpx twiddles[1];
};
/*
Explanation of macros dealing with complex math:
C_MUL(m,a,b) : m = a*b
C_FIXDIV( c , div ) : if a fixed point impl., c /= div. noop otherwise
C_SUB( res, a,b) : res = a - b
C_SUBFROM( res , a) : res -= a
C_ADDTO( res , a) : res += a
* */
#ifdef FIXED_POINT
#if (FIXED_POINT == 32)
#define FRACBITS 31
#define SAMPPROD int64_t
#define SAMP_MAX 2147483647
#else
#define FRACBITS 15
#define SAMPPROD int32_t
#define SAMP_MAX 32767
#endif
#define SAMP_MIN -SAMP_MAX
#if defined(CHECK_OVERFLOW)
#define CHECK_OVERFLOW_OP(a, op, b) \
if ((SAMPPROD)(a)op(SAMPPROD)(b) > SAMP_MAX || \
(SAMPPROD)(a)op(SAMPPROD)(b) < SAMP_MIN) { \
fprintf(stderr, \
"WARNING:overflow @ " __FILE__ "(%d): (%d " #op " %d) = %ld\n", \
__LINE__, (a), (b), (SAMPPROD)(a)op(SAMPPROD)(b)); \
}
#endif
#define smul(a, b) ((SAMPPROD)(a) * (b))
#define sround(x) (kiss_fft_scalar)(((x) + (1 << (FRACBITS - 1))) >> FRACBITS)
#define S_MUL(a, b) sround(smul(a, b))
#define C_MUL(m, a, b) \
do { \
(m).r = sround(smul((a).r, (b).r) - smul((a).i, (b).i)); \
(m).i = sround(smul((a).r, (b).i) + smul((a).i, (b).r)); \
} while (0)
#define DIVSCALAR(x, k) (x) = sround(smul(x, SAMP_MAX / k))
#define C_FIXDIV(c, div) \
do { \
DIVSCALAR((c).r, div); \
DIVSCALAR((c).i, div); \
} while (0)
#define C_MULBYSCALAR(c, s) \
do { \
(c).r = sround(smul((c).r, s)); \
(c).i = sround(smul((c).i, s)); \
} while (0)
#else /* not FIXED_POINT*/
#define S_MUL(a, b) ((a) * (b))
#define C_MUL(m, a, b) \
do { \
(m).r = (a).r * (b).r - (a).i * (b).i; \
(m).i = (a).r * (b).i + (a).i * (b).r; \
} while (0)
#define C_FIXDIV(c, div) /* NOOP */
#define C_MULBYSCALAR(c, s) \
do { \
(c).r *= (s); \
(c).i *= (s); \
} while (0)
#endif
#ifndef CHECK_OVERFLOW_OP
#define CHECK_OVERFLOW_OP(a, op, b) /* noop */
#endif
#define C_ADD(res, a, b) \
do { \
CHECK_OVERFLOW_OP((a).r, +, (b).r) \
CHECK_OVERFLOW_OP((a).i, +, (b).i) \
(res).r = (a).r + (b).r; \
(res).i = (a).i + (b).i; \
} while (0)
#define C_SUB(res, a, b) \
do { \
CHECK_OVERFLOW_OP((a).r, -, (b).r) \
CHECK_OVERFLOW_OP((a).i, -, (b).i) \
(res).r = (a).r - (b).r; \
(res).i = (a).i - (b).i; \
} while (0)
#define C_ADDTO(res, a) \
do { \
CHECK_OVERFLOW_OP((res).r, +, (a).r) \
CHECK_OVERFLOW_OP((res).i, +, (a).i) \
(res).r += (a).r; \
(res).i += (a).i; \
} while (0)
#define C_SUBFROM(res, a) \
do { \
CHECK_OVERFLOW_OP((res).r, -, (a).r) \
CHECK_OVERFLOW_OP((res).i, -, (a).i) \
(res).r -= (a).r; \
(res).i -= (a).i; \
} while (0)
#ifdef FIXED_POINT
#define KISS_FFT_COS(phase) floorf(.5 + SAMP_MAX * cosf(phase))
#define KISS_FFT_SIN(phase) floorf(.5 + SAMP_MAX * sinf(phase))
#define HALF_OF(x) ((x) >> 1)
#elif defined(USE_SIMD)
#define KISS_FFT_COS(phase) _mm_set1_ps(cosf(phase))
#define KISS_FFT_SIN(phase) _mm_set1_ps(sinf(phase))
#define HALF_OF(x) ((x)*_mm_set1_ps(.5))
#else
#define KISS_FFT_COS(phase) (kiss_fft_scalar) cosf(phase)
#define KISS_FFT_SIN(phase) (kiss_fft_scalar) sinf(phase)
#define HALF_OF(x) ((x)*.5)
#endif
#define kf_cexp(x, phase) \
do { \
(x)->r = KISS_FFT_COS(phase); \
(x)->i = KISS_FFT_SIN(phase); \
} while (0)
/* a debugging function */
#define pcpx(c) \
fprintf(stderr, "%g + %gi\n", (double)((c)->r), (double)((c)->i))
#ifdef KISS_FFT_USE_ALLOCA
// define this to allow use of alloca instead of malloc for temporary buffers
// Temporary buffers are used in two case:
// 1. FFT sizes that have "bad" factors. i.e. not 2,3 and 5
// 2. "in-place" FFTs. Notice the quotes, since kissfft does not really do an
// in-place transform.
#include <alloca.h>
#define KISS_FFT_TMP_ALLOC(nbytes) alloca(nbytes)
#define KISS_FFT_TMP_FREE(ptr)
#else
#define KISS_FFT_TMP_ALLOC(nbytes) KISS_FFT_MALLOC(nbytes)
#define KISS_FFT_TMP_FREE(ptr) KISS_FFT_FREE(ptr)
#endif

View File

@@ -0,0 +1,18 @@
#define BPF_N 101
float bpf[] = {
0.002174, 0.003245, 0.002147, 0.001866, 0.002764, 0.000567, -0.001641,
-0.000565, -0.002415, -0.005837, -0.003620, -0.002828, -0.006268, -0.002787,
0.001963, -0.001234, 0.001446, 0.009200, 0.005331, 0.003521, 0.011821,
0.006951, -0.002015, 0.005137, 0.001828, -0.013390, -0.007058, -0.003273,
-0.020458, -0.014321, 0.001751, -0.012891, -0.009730, 0.018993, 0.008544,
0.000534, 0.035755, 0.029074, -0.001192, 0.030852, 0.030983, -0.029834,
-0.009550, 0.011945, -0.081971, -0.082875, 0.000423, -0.133526, -0.211778,
0.182628, 0.514906, 0.182628, -0.211778, -0.133526, 0.000423, -0.082875,
-0.081971, 0.011945, -0.009550, -0.029834, 0.030983, 0.030852, -0.001192,
0.029074, 0.035755, 0.000534, 0.008544, 0.018993, -0.009730, -0.012891,
0.001751, -0.014321, -0.020458, -0.003273, -0.007058, -0.013390, 0.001828,
0.005137, -0.002015, 0.006951, 0.011821, 0.003521, 0.005331, 0.009200,
0.001446, -0.001234, 0.001963, -0.002787, -0.006268, -0.002828, -0.003620,
-0.005837, -0.002415, -0.000565, -0.001641, 0.000567, 0.002764, 0.001866,
0.002147, 0.003245, 0.002174};

View File

@@ -0,0 +1,18 @@
#define BPFB_N 101
float bpfb[] = {
0.003795, 0.006827, 0.002261, 0.002523, 0.005758, -0.000264, -0.000674,
0.003113, -0.004144, -0.004923, 0.000043, -0.008017, -0.008711, -0.001802,
-0.010210, -0.010428, -0.000899, -0.009413, -0.009072, 0.003469, -0.005335,
-0.004828, 0.010724, 0.000941, 0.000708, 0.018957, 0.007084, 0.004825,
0.025418, 0.010147, 0.004452, 0.027434, 0.007550, -0.002861, 0.023483,
-0.001944, -0.018138, 0.014122, -0.017583, -0.040768, 0.002598, -0.036604,
-0.069541, -0.004273, -0.054876, -0.107289, 0.010068, -0.068052, -0.200119,
0.207287, 0.597150, 0.207287, -0.200119, -0.068052, 0.010068, -0.107289,
-0.054876, -0.004273, -0.069541, -0.036604, 0.002598, -0.040768, -0.017583,
0.014122, -0.018138, -0.001944, 0.023483, -0.002861, 0.007550, 0.027434,
0.004452, 0.010147, 0.025418, 0.004825, 0.007084, 0.018957, 0.000708,
0.000941, 0.010724, -0.004828, -0.005335, 0.003469, -0.009072, -0.009413,
-0.000899, -0.010428, -0.010210, -0.001802, -0.008711, -0.008017, 0.000043,
-0.004923, -0.004144, 0.003113, -0.000674, -0.000264, 0.005758, 0.002523,
0.002261, 0.006827, 0.003795};

View File

@@ -0,0 +1,420 @@
/*---------------------------------------------------------------------------*\
FILE........: c2dec.c
AUTHOR......: David Rowe
DATE CREATED: 23/8/2010
Decodes a file of bits to a file of raw speech samples using codec2.
\*---------------------------------------------------------------------------*/
/*
Copyright (C) 2010 David Rowe
All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version 2.1, as
published by the Free Software Foundation. This program is
distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include <assert.h>
#include <errno.h>
#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "c2file.h"
#include "codec2.h"
#include "dump.h"
#define NONE 0 /* no bit errors */
#define UNIFORM 1 /* random bit errors */
#define TWO_STATE 2 /* Two state error model */
#define UNIFORM_RANGE 3 /* random bit errors over a certain range */
void print_help(const struct option *long_options, int num_opts, char *argv[]);
int main(int argc, char *argv[]) {
int mode = 0;
void *codec2;
FILE *fin;
FILE *fout;
FILE *fber = NULL;
short *buf;
unsigned char *bits;
float *softdec_bits;
char *bitperchar_bits;
int nsam, nbit, nbyte, i, byte, bits_proc, bit_errors, error_mode;
int nstart_bit, nend_bit, bit_rate;
int state, next_state;
float ber, r, burst_length, burst_period, burst_timer, ber_est;
unsigned char mask;
int natural, softdec, bit, ret, bitperchar;
#ifdef DUMP
int dump;
#endif
int report_energy;
FILE *f_ratek = NULL;
float *user_ratek;
int K;
char *opt_string = "h:";
struct option long_options[] = {{"ber", required_argument, NULL, 0},
{"startbit", required_argument, NULL, 0},
{"endbit", required_argument, NULL, 0},
{"berfile", required_argument, NULL, 0},
{"natural", no_argument, &natural, 1},
{"softdec", no_argument, &softdec, 1},
{"bitperchar", no_argument, &bitperchar, 1},
#ifdef DUMP
{"dump", required_argument, &dump, 1},
#endif
{"energy", no_argument, NULL, 0},
{"mlfeat", required_argument, NULL, 0},
{"loadcb", required_argument, NULL, 0},
{"loadratek", required_argument, NULL, 0},
{"nopf", no_argument, NULL, 0},
{"help", no_argument, NULL, 'h'},
{NULL, no_argument, NULL, 0}};
int num_opts = sizeof(long_options) / sizeof(struct option);
if (argc < 4) print_help(long_options, num_opts, argv);
if (strcmp(argv[2], "-") == 0)
fin = stdin;
else if ((fin = fopen(argv[2], "rb")) == NULL) {
fprintf(stderr, "Error opening input bit file: %s: %s.\n", argv[2],
strerror(errno));
exit(1);
}
if (strcmp(argv[3], "-") == 0)
fout = stdout;
else if ((fout = fopen(argv[3], "wb")) == NULL) {
fprintf(stderr, "Error opening output speech file: %s: %s.\n", argv[3],
strerror(errno));
exit(1);
}
// Attempt to detect a .c2 file with a header
struct c2_header in_hdr;
char *ext = strrchr(argv[2], '.');
if ((ext != NULL) && (strcmp(ext, ".c2") == 0)) {
int nread = fread(&in_hdr, sizeof(in_hdr), 1, fin);
assert(nread == 1);
if (memcmp(in_hdr.magic, c2_file_magic, sizeof(c2_file_magic)) == 0) {
fprintf(stderr, "Detected Codec2 file version %d.%d in mode %d\n",
in_hdr.version_major, in_hdr.version_minor, in_hdr.mode);
mode = in_hdr.mode;
} else {
fprintf(stderr, "Codec2 file specified but no header detected\n");
// Rewind the input file so we can try to decode
// based on command line mode selection
fseek(fin, 0, SEEK_SET);
} /* end if - magic detection */
} else {
// If we got here, we need to honor the command line mode
if (strcmp(argv[1], "3200") == 0)
mode = CODEC2_MODE_3200;
else if (strcmp(argv[1], "2400") == 0)
mode = CODEC2_MODE_2400;
else if (strcmp(argv[1], "1600") == 0)
mode = CODEC2_MODE_1600;
else if (strcmp(argv[1], "1400") == 0)
mode = CODEC2_MODE_1400;
else if (strcmp(argv[1], "1300") == 0)
mode = CODEC2_MODE_1300;
else if (strcmp(argv[1], "1200") == 0)
mode = CODEC2_MODE_1200;
else if (strcmp(argv[1], "700C") == 0)
mode = CODEC2_MODE_700C;
else {
fprintf(stderr,
"Error in mode: %s. Must be 3200, 2400, 1600, 1400, 1300, 1200, "
"700C\n",
argv[1]);
exit(1);
}
bit_rate = atoi(argv[1]);
}; /* end if - extension / header detection */
error_mode = NONE;
ber = 0.0;
burst_length = burst_period = 0.0;
burst_timer = 0.0;
natural = softdec = bitperchar = 0;
report_energy = 0;
#ifdef DUMP
dump = 0;
#endif
codec2 = codec2_create(mode);
assert(codec2 != NULL);
nsam = codec2_samples_per_frame(codec2);
nbit = codec2_bits_per_frame(codec2);
buf = (short *)malloc(nsam * sizeof(short));
nbyte = (nbit + 7) / 8;
bits = (unsigned char *)malloc(nbyte * sizeof(char));
softdec_bits = (float *)malloc(nbit * sizeof(float));
bitperchar_bits = (char *)malloc(nbit * sizeof(char));
bit_errors = bits_proc = 0;
nstart_bit = 0;
nend_bit = nbit - 1;
while (1) {
int option_index = 0;
int opt = getopt_long(argc, argv, opt_string, long_options, &option_index);
if (opt == -1) break;
switch (opt) {
case 0:
if (strcmp(long_options[option_index].name, "ber") == 0) {
ber = atof(optarg);
error_mode = UNIFORM;
} else if (strcmp(long_options[option_index].name, "startbit") == 0) {
nstart_bit = atoi(optarg);
} else if (strcmp(long_options[option_index].name, "endbit") == 0) {
nend_bit = atoi(optarg);
} else if (strcmp(long_options[option_index].name, "berfile") == 0) {
if ((fber = fopen(optarg, "wt")) == NULL) {
fprintf(stderr, "Error opening BER file: %s %s.\n", optarg,
strerror(errno));
exit(1);
}
}
#ifdef DUMP
else if (strcmp(long_options[option_index].name, "dump") == 0) {
if (dump) dump_on(optarg);
}
#endif
else if (strcmp(long_options[option_index].name, "energy") == 0) {
report_energy = 1;
} else if (strcmp(long_options[option_index].name, "loadcb") == 0) {
/* load VQ stage (700C only) */
// fprintf(stderr, "%s\n", optarg+1);
codec2_load_codebook(codec2, atoi(optarg) - 1, argv[optind]);
} else if (strcmp(long_options[option_index].name, "loadratek") == 0) {
/* load rate K vectors (by passing quantisation) for 700C VQ tests */
fprintf(stderr, "%s\n", optarg);
f_ratek = fopen(optarg, "rb");
assert(f_ratek != NULL);
user_ratek = codec2_enable_user_ratek(codec2, &K);
} else if (strcmp(long_options[option_index].name, "nopf") == 0) {
codec2_700c_post_filter(codec2, 0);
} else if (strcmp(long_options[option_index].name, "mlfeat") == 0) {
/* dump machine learning features (700C only) */
codec2_open_mlfeat(codec2, optarg, NULL);
}
break;
case 'h':
print_help(long_options, num_opts, argv);
break;
default:
/* This will never be reached */
break;
}
}
assert(nend_bit <= nbit);
codec2_set_natural_or_gray(codec2, !natural);
// printf("%d %d\n", nstart_bit, nend_bit);
// fprintf(stderr, "softdec: %d natural: %d\n", softdec, natural);
if (softdec) {
ret = (fread(softdec_bits, sizeof(float), nbit, fin) == (size_t)nbit);
}
if (bitperchar) {
ret = (fread(bitperchar_bits, sizeof(char), nbit, fin) == (size_t)nbit);
}
if (!softdec && !bitperchar) {
ret = (fread(bits, sizeof(char), nbyte, fin) == (size_t)nbyte);
}
while (ret) {
// apply bit errors, MSB of byte 0 is bit 0 in frame, only works in packed
// mode
if ((error_mode == UNIFORM) || (error_mode == UNIFORM_RANGE)) {
assert(softdec == 0);
for (i = nstart_bit; i < nend_bit + 1; i++) {
r = (float)rand() / RAND_MAX;
if (r < ber) {
byte = i / 8;
// printf("nbyte %d nbit %d i %d byte %d bits[%d] 0x%0x ", nbyte,
// nbit, i, byte, byte, bits[byte]);
mask = 1 << (7 - i + byte * 8);
bits[byte] ^= mask;
// printf("shift: %d mask: 0x%0x bits[%d] 0x%0x\n", 7 - i + byte*8,
// mask, byte, bits[byte] );
bit_errors++;
}
bits_proc++;
}
}
if (error_mode == TWO_STATE) {
assert(softdec == 0);
burst_timer += (float)nbit / bit_rate;
fprintf(stderr, "burst_timer: %f state: %d\n", burst_timer, state);
next_state = state;
switch (state) {
case 0:
/* clear channel state - no bit errors */
if (burst_timer > (burst_period - burst_length)) next_state = 1;
break;
case 1:
/* burst error state - 50% bit error rate */
for (i = nstart_bit; i < nend_bit + 1; i++) {
r = (float)rand() / RAND_MAX;
if (r < 0.5) {
byte = i / 8;
bits[byte] ^= 1 << (7 - i + byte * 8);
bit_errors++;
}
bits_proc++;
}
if (burst_timer > burst_period) {
burst_timer = 0.0;
next_state = 0;
}
break;
}
state = next_state;
}
if (fber != NULL) {
if (fread(&ber_est, sizeof(float), 1, fber) != 1) {
fprintf(stderr, "ran out of BER estimates!\n");
exit(1);
}
// fprintf(stderr, "ber_est: %f\n", ber_est);
} else
ber_est = 0.0;
if (softdec) {
/* pack bits, MSB received first */
bit = 7;
byte = 0;
memset(bits, 0, nbyte);
for (i = 0; i < nbit; i++) {
bits[byte] |= ((softdec_bits[i] < 0.0) << bit);
bit--;
if (bit < 0) {
bit = 7;
byte++;
}
}
codec2_set_softdec(codec2, softdec_bits);
}
if (bitperchar) {
/* pack bits, MSB received first */
bit = 7;
byte = 0;
memset(bits, 0, nbyte);
for (i = 0; i < nbit; i++) {
bits[byte] |= bitperchar_bits[i] << bit;
bit--;
if (bit < 0) {
bit = 7;
byte++;
}
}
}
if (report_energy)
fprintf(stderr, "Energy: %1.3f\n", codec2_get_energy(codec2, bits));
if (f_ratek != NULL) ret = fread(user_ratek, sizeof(float), K, f_ratek);
codec2_decode_ber(codec2, buf, bits, ber_est);
fwrite(buf, sizeof(short), nsam, fout);
// if this is in a pipeline, we probably don't want the usual
// buffering to occur
if (fout == stdout) fflush(stdout);
if (softdec) {
ret = (fread(softdec_bits, sizeof(float), nbit, fin) == (size_t)nbit);
}
if (bitperchar) {
ret = (fread(bitperchar_bits, sizeof(char), nbit, fin) == (size_t)nbit);
}
if (!softdec && !bitperchar) {
ret = (fread(bits, sizeof(char), nbyte, fin) == (size_t)nbyte);
}
}
if (error_mode)
fprintf(stderr, "actual BER: %1.3f\n", (float)bit_errors / bits_proc);
codec2_destroy(codec2);
free(buf);
free(bits);
free(softdec_bits);
free(bitperchar_bits);
fclose(fin);
fclose(fout);
if (fber != NULL) {
fclose(fber);
}
return 0;
}
void print_help(const struct option *long_options, int num_opts, char *argv[]) {
int i;
char *option_parameters;
fprintf(stderr,
"\nc2dec - Codec 2 decoder and bit error simulation program\n"
"usage: %s 3200|2400|1600|1400|1300|1200|700C InputFile "
"OutputRawFile [OPTIONS]\n\n"
"Options:\n",
argv[0]);
for (i = 0; i < num_opts - 1; i++) {
if (long_options[i].has_arg == no_argument) {
option_parameters = "";
} else if (strcmp("ber", long_options[i].name) == 0) {
option_parameters = " BER";
} else if (strcmp("startbit", long_options[i].name) == 0) {
option_parameters = " startBit";
} else if (strcmp("endbit", long_options[i].name) == 0) {
option_parameters = " endBit";
} else if (strcmp("berfile", long_options[i].name) == 0) {
option_parameters = " berFileName";
} else if (strcmp("dump", long_options[i].name) == 0) {
option_parameters = " dumpFilePrefix";
} else if (strcmp("lspEWov", long_options[i].name) == 0) {
option_parameters = " featureFileName";
} else {
option_parameters = " <UNDOCUMENTED parameter>";
}
fprintf(stderr, "\t--%s%s\n", long_options[i].name, option_parameters);
}
exit(1);
}

View File

@@ -0,0 +1,207 @@
/*---------------------------------------------------------------------------*\
FILE........: c2enc.c
AUTHOR......: David Rowe
DATE CREATED: 23/8/2010
Encodes a file of raw speech samples using codec2 and outputs a file
of bits.
\*---------------------------------------------------------------------------*/
/*
Copyright (C) 2010 David Rowe
All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version 2.1, as
published by the Free Software Foundation. This program is
distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include <errno.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "c2file.h"
#include "codec2.h"
int main(int argc, char *argv[]) {
int mode;
void *codec2;
FILE *fin;
FILE *fout;
short *buf;
unsigned char *bits;
int nsam, nbit, nbyte, gray, softdec, bitperchar;
float *unpacked_bits_float;
char *unpacked_bits_char;
int bit, byte, i;
int report_var = 0;
int eq = 0;
if (argc < 4) {
printf(
"usage: c2enc 3200|2400|1600|1400|1300|1200|700C "
"InputRawspeechFile OutputBitFile [--natural] [--softdec] "
"[--bitperchar] [--mlfeat f32File modelFile] [--loadcb stageNum "
"Filename] [--var] [--eq]\n");
printf("e.g. (headerless) c2enc 1300 ../raw/hts1a.raw hts1a.bin\n");
printf(
"e.g. (with header to detect mode) c2enc 1300 ../raw/hts1a.raw "
"hts1a.c2\n");
exit(1);
}
if (strcmp(argv[1], "3200") == 0)
mode = CODEC2_MODE_3200;
else if (strcmp(argv[1], "2400") == 0)
mode = CODEC2_MODE_2400;
else if (strcmp(argv[1], "1600") == 0)
mode = CODEC2_MODE_1600;
else if (strcmp(argv[1], "1400") == 0)
mode = CODEC2_MODE_1400;
else if (strcmp(argv[1], "1300") == 0)
mode = CODEC2_MODE_1300;
else if (strcmp(argv[1], "1200") == 0)
mode = CODEC2_MODE_1200;
else if (strcmp(argv[1], "700C") == 0)
mode = CODEC2_MODE_700C;
else {
fprintf(stderr,
"Error in mode: %s. Must be 3200, 2400, 1600, 1400, 1300, 1200, "
"700C\n",
argv[1]);
exit(1);
}
if (strcmp(argv[2], "-") == 0)
fin = stdin;
else if ((fin = fopen(argv[2], "rb")) == NULL) {
fprintf(stderr, "Error opening input speech file: %s: %s.\n", argv[2],
strerror(errno));
exit(1);
}
if (strcmp(argv[3], "-") == 0)
fout = stdout;
else if ((fout = fopen(argv[3], "wb")) == NULL) {
fprintf(stderr, "Error opening output compressed bit file: %s: %s.\n",
argv[3], strerror(errno));
exit(1);
}
// Write a header if we're writing to a .c2 file
char *ext = strrchr(argv[3], '.');
if (ext != NULL) {
if (strcmp(ext, ".c2") == 0) {
struct c2_header out_hdr;
memcpy(out_hdr.magic, c2_file_magic, sizeof(c2_file_magic));
out_hdr.mode = mode;
out_hdr.version_major = CODEC2_VERSION_MAJOR;
out_hdr.version_minor = CODEC2_VERSION_MINOR;
// TODO: Handle flags (this block needs to be moved down)
out_hdr.flags = 0;
fwrite(&out_hdr, sizeof(out_hdr), 1, fout);
};
};
codec2 = codec2_create(mode);
nsam = codec2_samples_per_frame(codec2);
nbit = codec2_bits_per_frame(codec2);
buf = (short *)malloc(nsam * sizeof(short));
nbyte = (nbit + 7) / 8;
bits = (unsigned char *)malloc(nbyte * sizeof(char));
unpacked_bits_float = (float *)malloc(nbit * sizeof(float));
unpacked_bits_char = (char *)malloc(nbit * sizeof(char));
gray = 1;
softdec = 0;
bitperchar = 0;
for (i = 4; i < argc; i++) {
if (strcmp(argv[i], "--natural") == 0) {
gray = 0;
}
if (strcmp(argv[i], "--softdec") == 0) {
softdec = 1;
}
if (strcmp(argv[i], "--bitperchar") == 0) {
bitperchar = 1;
}
if (strcmp(argv[i], "--mlfeat") == 0) {
/* dump machine learning features (700C only) */
codec2_open_mlfeat(codec2, argv[i + 1], argv[i + 2]);
}
if (strcmp(argv[i], "--loadcb") == 0) {
/* load VQ stage (700C only) */
codec2_load_codebook(codec2, atoi(argv[i + 1]) - 1, argv[i + 2]);
}
if (strcmp(argv[i], "--var") == 0) {
report_var = 1;
}
if (strcmp(argv[i], "--eq") == 0) {
eq = 1;
}
}
codec2_set_natural_or_gray(codec2, gray);
codec2_700c_eq(codec2, eq);
// fprintf(stderr,"gray: %d softdec: %d\n", gray, softdec);
while (fread(buf, sizeof(short), nsam, fin) == (size_t)nsam) {
codec2_encode(codec2, bits, buf);
if (softdec || bitperchar) {
/* unpack bits, MSB first, send as soft decision float */
bit = 7;
byte = 0;
for (i = 0; i < nbit; i++) {
unpacked_bits_float[i] = 1.0 - 2.0 * ((bits[byte] >> bit) & 0x1);
unpacked_bits_char[i] = (bits[byte] >> bit) & 0x1;
bit--;
if (bit < 0) {
bit = 7;
byte++;
}
}
if (softdec) {
fwrite(unpacked_bits_float, sizeof(float), nbit, fout);
}
if (bitperchar) {
fwrite(unpacked_bits_char, sizeof(char), nbit, fout);
}
} else
fwrite(bits, sizeof(char), nbyte, fout);
// if this is in a pipeline, we probably don't want the usual
// buffering to occur
if (fout == stdout) fflush(stdout);
}
if (report_var) {
float var = codec2_get_var(codec2);
fprintf(stderr, "%s var: %5.2f std: %5.2f\n", argv[2], var, sqrt(var));
}
codec2_destroy(codec2);
free(buf);
free(bits);
free(unpacked_bits_float);
free(unpacked_bits_char);
fclose(fin);
fclose(fout);
return 0;
}

View File

@@ -0,0 +1,19 @@
/*---------------------------------------------------------------------------*\
FILE........: c2file.h
AUTHOR......: Kevin Otte
DATE CREATED: 2017-08-01
Header structures for Codec2 file storage
\*---------------------------------------------------------------------------*/
const char c2_file_magic[3] = {0xc0, 0xde, 0xc2};
struct c2_header {
char magic[3];
char version_major;
char version_minor;
char mode;
char flags;
};

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,531 @@
/*---------------------------------------------------------------------------*\
FILE........: ch.c
AUTHOR......: David Rowe
DATE CREATED: May 2015
Channel simulation program for testing command line versions of modems.
\*---------------------------------------------------------------------------*/
/*
Copyright (C) 2015-2022 David Rowe
All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version 2.1, as
published by the Free Software Foundation. This program is
distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include <assert.h>
#include <errno.h>
#include <getopt.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "codec2_cohpsk.h"
#include "comp_prim.h"
#include "debug_alloc.h"
#include "freedv_api.h"
#include "ht_coeff.h"
#include "ssbfilt_coeff.h"
#define BUF_N 160
#define MPG_DELAY_MS 0.5
#define MPP_DELAY_MS 2.0
#define MPD_DELAY_MS 4.0
/* see instructions below for how to generate these files */
#define DEFAULT_FADING_DIR "unittest"
#define MPG_FADING_FILE_NAME "slow_fading_samples.float"
#define MPP_FADING_FILE_NAME "fast_fading_samples.float"
#define MPD_FADING_FILE_NAME "faster_fading_samples.float"
// Gaussian from uniform:
float gaussian(void) {
double x = (double)rand() / RAND_MAX;
double y = (double)rand() / RAND_MAX;
double z = sqrt(-2 * log(x)) * cos(2 * M_PI * y);
return sqrt(1. / 2.) * z;
}
// complex noise sample
COMP noise(void) {
COMP n = {gaussian(), gaussian()};
return n;
}
int main(int argc, char *argv[]) {
FILE *fin, *ffading, *fout;
char *fading_dir;
float NodB, foff_hz;
int fading_en, nhfdelay;
short buf[BUF_N];
float htbuf[HT_N + BUF_N];
COMP ch_in[BUF_N];
COMP ch_fdm[BUF_N];
COMP ssbfiltbuf[SSBFILT_N + BUF_N];
COMP ssbfiltout[BUF_N];
COMP phase_ch;
float No, variance;
COMP scaled_noise;
float hf_gain;
COMP *ch_fdm_delay = NULL, aspread, aspread_2ms, delayed, direct;
float tx_pwr, tx_pwr_fade, noise_pwr, user_multipath_delay;
int frames, i, j, k, Fs, ret, nclipped, noutclipped, ssbfilt_en, complex_out,
ctest;
float sam, peak, clip, papr, CNo, snr3k, gain;
if (argc < 3) {
helpmsg:
fprintf(
stderr,
"Command line channel simulation tool.\n"
"\n"
"usage: %s InputRealModemRawFile OutputRealModemRawFile [Options]\n"
"\n"
" real int16 input -> Gain -> Hilbert Transform -> clipper -> freq "
"shift ->\n"
" Multipath -> AWGN noise -> SSB filter -> real int16 output\n"
"\n"
"[--clip int16] Hilbert clipper (clip complex signal "
"magnitude, default 32767)\n"
"[--complexout] Optional int16 IQ complex output (default real "
"int16)\n"
"[--ctest] Check PAPR is around 0dB, used to support "
"ctests\n"
"[--freq FoffHz] Frequency offset (default 0Hz)\n"
"[--fading_dir Path] path to multipath fading files (default "
"'unittest')\n"
"[--Fs SampleRateHz] Sample rate of simulation (default 8000 Hz)\n"
"[--gain G] Linear gain (default 1.0)\n"
"[--mpg] Multipath good 0.1Hz Doppler, 0.5ms delay\n"
"[--mpp] Multipath poor 1.0Hz Doppler, 2.0ms delay\n"
"[--mpd] Multipath disturbed 2.0Hz Doppler, 4.0ms "
"delay\n"
"[--ssbfilt 0|1] SSB bandwidth filter (default 1 on)\n"
"[--mulipath_delay ms] Optionally adjust multipath delay\n"
"[--No dBHz] AWGN Noise density dB/Hz (default -100)"
"\n",
argv[0]);
exit(1);
}
if (strcmp(argv[1], "-") == 0)
fin = stdin;
else if ((fin = fopen(argv[1], "rb")) == NULL) {
fprintf(stderr, "ch: Error opening input modem raw file: %s: %s.\n",
argv[1], strerror(errno));
exit(1);
}
if (strcmp(argv[2], "-") == 0)
fout = stdout;
else if ((fout = fopen(argv[2], "wb")) == NULL) {
fprintf(stderr, "ch: Error opening output modem raw file: %s: %s.\n",
argv[2], strerror(errno));
exit(1);
}
NodB = -100;
Fs = 8000;
foff_hz = 0.0;
fading_en = 0;
ctest = 0;
clip = 32767;
gain = 1.0;
ssbfilt_en = 1;
complex_out = 0;
fading_dir = strdup(DEFAULT_FADING_DIR);
user_multipath_delay = -1.0;
int o = 0;
int opt_idx = 0;
while (o != -1) {
static struct option long_opts[] = {
{"complexout", no_argument, 0, 'o'},
{"ctest", no_argument, 0, 't'},
{"clip", required_argument, 0, 'c'},
{"fading_dir", required_argument, 0, 'u'},
{"freq", required_argument, 0, 'f'},
{"Fs", required_argument, 0, 'r'},
{"gain", required_argument, 0, 'g'},
{"ssbfilt", required_argument, 0, 's'},
{"help", no_argument, 0, 'h'},
{"mpg", no_argument, 0, 'i'},
{"mpp", no_argument, 0, 'p'},
{"mpd", no_argument, 0, 'd'},
{"multipath_delay", required_argument, 0, 'm'},
{"No", required_argument, 0, 'n'},
{0, 0, 0, 0}};
o = getopt_long(argc, argv, "c:df:g:im:n:opr:s:tu:h", long_opts, &opt_idx);
switch (o) {
case 'c':
clip = atof(optarg);
break;
case 'd':
fading_en = 3;
break;
case 'f':
foff_hz = atof(optarg);
break;
case 'g':
gain = atof(optarg);
break;
case 'i':
fading_en = 1;
break;
case 'm':
user_multipath_delay = atof(optarg);
break;
case 'n':
NodB = atof(optarg);
break;
case 'o':
complex_out = 1;
break;
case 'p':
fading_en = 2;
break;
case 'r':
Fs = atoi(optarg);
break;
case 's':
ssbfilt_en = atoi(optarg);
break;
case 't':
ctest = 1;
break;
case 'u':
fading_dir = strdup(optarg);
break;
case 'h':
case '?':
goto helpmsg;
break;
}
}
phase_ch.real = 1.0;
phase_ch.imag = 0.0;
/* N = var = NoFs */
// arbitrary noise scaling, to maintain backwards compatibility with many
// tests. TODO make the No units more sensible, and fix all the tests that
// depend on this scaling
No = pow(10.0, NodB / 10.0) * 1000 * 1000;
variance = Fs * No;
tx_pwr = tx_pwr_fade = noise_pwr = 0.0;
noutclipped = 0;
nclipped = 0;
peak = 0.0;
/* init HF fading model */
ffading = NULL;
nhfdelay = 0;
if (fading_en) {
char fname[256];
if (fading_en == 1) {
sprintf(fname, "%s/%s", fading_dir, MPG_FADING_FILE_NAME);
ffading = fopen(fname, "rb");
if (ffading == NULL) {
cant_load_fading_file:
fprintf(stderr,
"-----------------------------------------------------\n");
fprintf(stderr, "ch ERROR: Can't find fading file: %s\n", fname);
fprintf(
stderr,
"\nAdjust path --fading_dir or use GNU Octave to generate:\n\n");
gen_fading_file:
fprintf(stderr, "$ octave-cli\n");
fprintf(stderr, "octave:24> pkg load signal\n");
fprintf(stderr, "octave:24> time_secs=60\n");
fprintf(stderr,
"octave:25> ch_fading(\"faster_fading_samples.float\", 8000, "
"2.0, 8000*time_secs)\n");
fprintf(stderr,
"octave:26> ch_fading(\"fast_fading_samples.float\", 8000, "
"1.0, 8000*time_secs)\n");
fprintf(stderr,
"octave:27> ch_fading(\"slow_fading_samples.float\", 8000, "
"0.1, 8000*time_secs)\n");
fprintf(stderr,
"-----------------------------------------------------\n");
exit(1);
}
nhfdelay = floor(MPG_DELAY_MS * Fs / 1000);
}
if (fading_en == 2) {
sprintf(fname, "%s/%s", fading_dir, MPP_FADING_FILE_NAME);
ffading = fopen(fname, "rb");
if (ffading == NULL) goto cant_load_fading_file;
nhfdelay = floor(MPP_DELAY_MS * Fs / 1000);
}
if (fading_en == 3) {
sprintf(fname, "%s/%s", fading_dir, MPD_FADING_FILE_NAME);
ffading = fopen(fname, "rb");
if (ffading == NULL) goto cant_load_fading_file;
nhfdelay = floor(MPD_DELAY_MS * Fs / 1000);
}
ch_fdm_delay = (COMP *)MALLOC((nhfdelay + COHPSK_NOM_SAMPLES_PER_FRAME) *
sizeof(COMP));
assert(ch_fdm_delay != NULL);
for (i = 0; i < nhfdelay + COHPSK_NOM_SAMPLES_PER_FRAME; i++) {
ch_fdm_delay[i].real = 0.0;
ch_fdm_delay[i].imag = 0.0;
}
/* optionally override delay from command line */
if (user_multipath_delay >= 0.0)
nhfdelay = floor(user_multipath_delay * Fs / 1000);
/* first values in file are HF gains */
for (i = 0; i < 4; i++) ret = fread(&hf_gain, sizeof(float), 1, ffading);
// fprintf(stderr, "hf_gain: %f\n", hf_gain);
}
assert(HT_N == sizeof(ht_coeff) / sizeof(COMP));
for (i = 0; i < HT_N; i++) {
htbuf[i] = 0.0;
}
for (i = 0; i < SSBFILT_N; i++) {
ssbfiltbuf[i].real = 0.0;
ssbfiltbuf[i].imag = 0.0;
}
COMP lo_phase = {1.0, 0.0};
COMP lo_freq;
lo_freq.real = cos(2.0 * M_PI * SSBFILT_CENTRE / Fs);
lo_freq.imag = sin(2.0 * M_PI * SSBFILT_CENTRE / Fs);
fprintf(stderr,
"ch: Fs: %d NodB: %4.2f foff: %4.2f Hz fading: %d nhfdelay: %d clip: "
"%4.2f ssbfilt: %d complexout: %d\n",
Fs, NodB, foff_hz, fading_en, nhfdelay, clip, ssbfilt_en,
complex_out);
/* --------------------------------------------------------*\
Main Loop
\*---------------------------------------------------------*/
frames = 0;
while (fread(buf, sizeof(short), BUF_N, fin) == BUF_N) {
frames++;
/* Hilbert Transform to produce complex signal so we can do
single sided freq shifts, HF channel models, and analog
compression. Allows us to use real signal I/O.
As the real and imag filters both have unity gain, ch_in[]
has twice the power of the real input signal buf[].
*/
for (i = 0, j = HT_N; i < BUF_N; i++, j++) {
htbuf[j] = (float)buf[i] * gain;
/* FIR filter with HT to get imag, just delay to get real */
ch_in[i].real = 0.0;
ch_in[i].imag = 0.0;
for (k = 0; k < HT_N; k++) {
ch_in[i].real += htbuf[j - k] * ht_coeff[k].real;
ch_in[i].imag += htbuf[j - k] * ht_coeff[k].imag;
}
// printf("%d %f %f\n", i, ch_in[i].real, ch_in[i].imag);
}
assert(j <= (BUF_N + HT_N));
/* update HT memory */
for (i = 0; i < HT_N; i++) htbuf[i] = htbuf[i + BUF_N];
/* --------------------------------------------------------*\
Clipping mag of complex signal
\*---------------------------------------------------------*/
for (i = 0; i < BUF_N; i++) {
float mag =
sqrt(ch_in[i].real * ch_in[i].real + ch_in[i].imag * ch_in[i].imag);
float angle = atan2(ch_in[i].imag, ch_in[i].real);
if (mag > clip) {
mag = clip;
nclipped++;
}
tx_pwr += mag * mag;
/* we get a bit of overshoot in peak measurements if HT filter hasn't been
* primed */
if (frames * BUF_N > HT_N)
if (mag > peak) {
peak = mag;
// fprintf(stderr, "%d %f\n",frames, mag);
}
ch_in[i].real = mag * cos(angle);
ch_in[i].imag = mag * sin(angle);
}
/* --------------------------------------------------------*\
Channel
\*---------------------------------------------------------*/
fdmdv_freq_shift_coh(ch_fdm, ch_in, foff_hz, Fs, &phase_ch, BUF_N);
/* optional HF fading -------------------------------------*/
if (fading_en) {
/* update delayed signal buffer */
for (i = 0; i < nhfdelay; i++) ch_fdm_delay[i] = ch_fdm_delay[i + BUF_N];
for (j = 0; j < BUF_N; i++, j++) ch_fdm_delay[i] = ch_fdm[j];
/* combine direct and delayed paths, both multiplied by
"spreading" (Doppler) functions */
for (i = 0; i < BUF_N; i++) {
ret = fread(&aspread, sizeof(COMP), 1, ffading);
if (ret == 0) {
fprintf(stderr,
"ch: Fading file finished - simulation stopping. You may "
"need more samples:\n");
goto gen_fading_file;
}
ret = fread(&aspread_2ms, sizeof(COMP), 1, ffading);
if (ret == 0) {
fprintf(stderr,
"ch: Fading file finished - simulation stopping. You may "
"need more samples:\n");
goto gen_fading_file;
}
// printf("%f %f %f %f\n", aspread.real, aspread.imag, aspread_2ms.real,
// aspread_2ms.imag);
direct = cmult(aspread, ch_fdm[i]);
delayed = cmult(aspread_2ms, ch_fdm_delay[i]);
ch_fdm[i] = fcmult(hf_gain, cadd(direct, delayed));
}
}
/* Measure power after fading model to make sure average pwr
is the same as AWGN channels. We only output the real
signal, which is half the power. */
for (i = 0; i < BUF_N; i++) {
tx_pwr_fade += pow(ch_fdm[i].real, 2.0);
}
/* AWGN noise ------------------------------------------*/
for (i = 0; i < BUF_N; i++) {
COMP n = noise();
scaled_noise = fcmult(sqrt(variance), n);
ch_fdm[i] = cadd(ch_fdm[i], scaled_noise);
noise_pwr += pow(scaled_noise.real, 2.0) + pow(scaled_noise.imag, 2.0);
}
/* FIR filter to simulate (a rather flat) SSB filter. We
filter the complex signal by shifting it down to DC and
using real coefficients. */
for (i = 0, j = SSBFILT_N; i < BUF_N; i++, j++) {
if (ssbfilt_en) {
ssbfiltbuf[j] = cmult(ch_fdm[i], cconj(lo_phase));
ssbfiltout[i].real = 0.0;
ssbfiltout[i].imag = 0.0;
for (k = 0; k < SSBFILT_N; k++) {
ssbfiltout[i].real += ssbfiltbuf[j - k].real * ssbfilt_coeff[k];
ssbfiltout[i].imag += ssbfiltbuf[j - k].imag * ssbfilt_coeff[k];
}
ssbfiltout[i] = cmult(ssbfiltout[i], lo_phase);
lo_phase = cmult(lo_phase, lo_freq);
} else {
ssbfiltout[i] = ch_fdm[i];
}
}
/* update SSB filter memory */
for (i = 0; i < SSBFILT_N; i++) ssbfiltbuf[i] = ssbfiltbuf[i + BUF_N];
int nout = (complex_out + 1) * BUF_N;
short bufout[nout], *pout = bufout;
for (i = 0; i < BUF_N; i++) {
sam = ssbfiltout[i].real;
if (sam > 32767.0) {
noutclipped++;
sam = 32767.0;
}
if (sam < -32767.0) {
noutclipped++;
sam = -32767.0;
}
*pout++ = sam;
if (complex_out) {
sam = ssbfiltout[i].imag;
if (sam > 32767.0) {
noutclipped++;
sam = 32767.0;
}
if (sam < -32767.0) {
noutclipped++;
sam = -32767.0;
}
*pout++ = sam;
}
}
fwrite(bufout, sizeof(short), nout, fout);
/* if this is in a pipeline, we probably don't want the usual
buffering to occur */
if (fout == stdout) fflush(stdout);
}
fclose(fin);
fclose(fout);
int nsamples = frames * BUF_N;
papr = 10 * log10(peak * peak / (tx_pwr / nsamples));
CNo = 10 * log10(tx_pwr / (noise_pwr / (Fs)));
snr3k = CNo - 10 * log10(3000);
float outclipped_percent = noutclipped * 100.0 / nsamples;
fprintf(stderr, "ch: SNR3k(dB): %8.2f C/No....: %8.2f\n", snr3k, CNo);
fprintf(stderr,
"ch: peak.....: %8.2f RMS.....: %8.2f CPAPR.....: %5.2f \n", peak,
sqrt(tx_pwr / nsamples), papr);
fprintf(stderr,
"ch: Nsamples.: %8d clipped.: %8.2f%% OutClipped: %5.2f%%\n",
nsamples, nclipped * 100.0 / nsamples, outclipped_percent);
if (outclipped_percent > 0.1)
fprintf(stderr, "ch: WARNING output clipping\n");
if (ffading != NULL) fclose(ffading);
if (ch_fdm_delay != NULL) FREE(ch_fdm_delay);
if (ctest) {
/* special ctest mode: check CPAPR is around 0dB */
if (fabs(papr) < 0.7)
return 0;
else
return 1;
} else
return 0;
}

View File

@@ -0,0 +1,501 @@
41 500
11.9178 14.1558 15.0079 16.3077 17.3822 18.2611 17.4655 14.7258 9.9322 5.5523 2.3108 -0.5449 -3.1948 -5.2578 -6.6720 -7.0718 -6.2242 -3.5271 -0.4724 -0.6426 -5.5883 -11.0690 -13.9474 -14.1999 -11.6213 -9.2487 -10.7685 -15.1688 -17.7995 4.7470 5.3362 4.5288 2.0410 -0.2507 -1.4078 -1.9789 -2.0773 -2.8836 -2.6876 -5.3670 -21.5899
20.9429 19.2708 15.6619 12.7137 9.1871 6.4196 3.1467 1.6784 0.8989 1.2827 1.4966 0.1254 -2.5426 -4.5150 -6.1876 -6.3874 -6.0478 -5.9793 -6.4367 -5.2532 -2.2523 -0.5109 1.6273 0.3551 -4.4390 -9.5465 -11.7875 -11.3329 -11.5883 4.4211 3.0334 0.1707 -1.8877 -1.6176 -0.7003 0.0063 0.8933 -0.3305 -0.5297 -3.4590 -17.2335
10.3698 10.9179 12.2827 14.2252 13.1924 8.1149 3.4397 0.4163 -0.6468 -1.2093 -1.7787 -2.1501 -2.3738 -2.1698 -1.6602 -2.0012 -2.2206 -2.6679 -2.9048 -4.0924 -3.9533 -4.6653 -3.4648 -4.1545 -4.7802 -5.9292 -6.6217 -6.2599 -7.2545 -1.4487 -2.0915 -2.0764 -2.5240 -2.8369 -1.7282 0.3818 1.6462 2.6312 4.3951 3.6513 -6.6040
10.7001 9.9813 8.3287 7.1242 6.5070 6.5092 5.9516 5.2985 4.9376 4.9107 3.3698 2.1480 1.7415 1.8271 2.9065 1.7503 1.1809 -0.5973 -2.5964 -4.1194 -4.3826 -4.2663 -6.1171 -8.2455 -10.0389 -10.0722 -11.1753 -11.2765 -12.2855 0.8221 0.8933 0.0873 0.1278 -0.2444 -0.1326 0.4115 -0.0880 0.3496 0.6766 -2.9033 -13.4861
14.8732 12.7779 9.6261 7.1258 5.1364 5.1173 4.4647 4.3160 3.7550 3.9126 3.6316 2.8536 1.9930 -1.1494 -2.4465 -3.4951 -3.8807 -4.2782 -4.5140 -4.6567 -4.7573 -4.9527 -5.3524 -6.1002 -6.5648 -6.2400 -6.7782 -6.9091 -7.5078 -0.7325 -1.0470 -1.1322 -1.2300 -1.1725 -0.7847 -0.0740 0.3234 1.3703 2.8077 1.6715 -7.7106
13.0634 13.0580 11.8762 10.3012 8.7287 8.2751 6.9140 5.6997 4.4786 3.7849 4.1201 2.8106 0.7120 -1.4190 -2.0942 -2.3582 -0.5397 1.5160 0.4684 -2.9378 -7.1601 -10.1338 -10.8807 -10.0235 -7.7214 -7.4752 -9.9005 -11.5702 -11.5927 4.2630 3.6157 2.2639 2.6715 3.2976 2.2826 0.9481 -1.7723 -4.4187 -3.5441 -9.6074 -17.0075
17.4365 16.7500 15.4119 14.0262 11.9105 8.7640 5.0192 1.9276 0.0772 -0.8006 -1.8916 -2.6101 -3.2178 -2.5671 -1.7974 -0.9511 -1.6296 -2.8438 -5.2983 -6.9390 -8.1364 -7.5562 -6.4223 -7.1565 -8.5620 -8.8653 -6.3020 -4.6173 -3.1589 0.3453 2.4060 5.1191 5.4688 4.3371 3.0997 0.6091 -2.3128 -3.0561 -3.3297 -12.6865 -6.0911
13.0911 12.7368 12.4903 13.0944 13.0545 12.0753 8.9618 6.1436 4.1205 3.0040 2.5067 2.1012 1.7892 1.0194 -0.5009 -2.7054 -4.3792 -5.7855 -7.3332 -7.6356 -6.8161 -6.3032 -6.7524 -8.6805 -9.1565 -8.9761 -9.6991 -10.2280 -11.2374 -0.8915 -1.3351 -1.3279 -0.8507 -1.1734 -0.5889 -0.2953 0.9333 1.7331 2.7464 1.0499 -11.7092
20.5201 20.0295 17.9227 15.1345 11.8697 8.3087 5.1766 3.0060 1.2540 0.4174 -0.1720 -0.8532 -1.8929 -2.4981 -2.7278 -3.1121 -3.4982 -3.7976 -4.7868 -5.4073 -5.4391 -5.9033 -7.2898 -8.3095 -8.7395 -9.6577 -9.6812 -9.1534 -10.7197 -2.0265 -2.4422 -3.2898 -3.0803 -2.9851 -1.2856 0.1567 1.8910 3.3083 5.0377 4.7157 -9.9218
8.7254 11.0045 12.0666 13.2121 13.3296 12.8324 10.8510 7.8774 5.4319 2.5287 -0.0029 -1.8774 -3.6195 -5.0420 -5.6921 -5.2354 -4.4870 -3.3016 -2.0527 -2.1409 -3.9671 -5.5705 -6.5599 -6.6471 -6.1324 -6.7689 -8.5096 -9.9894 -10.2634 3.4359 2.7738 2.8295 2.9482 1.6625 0.8956 -0.0514 -1.5848 -1.4749 -2.2921 -9.1424 -14.2391
23.9657 22.7269 19.7344 15.7159 12.2183 10.6582 8.5153 6.8034 5.1757 2.7658 0.5046 -1.3116 -2.0410 -1.6635 0.4261 3.7125 3.3282 0.1068 -4.3151 -7.4691 -8.1547 -7.8283 -7.2057 -10.8214 -15.3903 -17.5933 -17.6434 -16.8095 -18.1107 1.5132 0.3244 0.0189 -0.7294 -1.1966 -0.6245 -0.5177 0.2092 1.0300 0.8494 -0.8770 -19.8535
16.6280 15.7442 12.7310 10.1009 8.2897 8.5577 8.8444 10.0560 10.3050 9.1696 6.7854 3.8917 0.3608 -3.0307 -5.8666 -7.1637 -6.5677 -5.6155 -5.1575 -4.9714 -6.5135 -7.7608 -7.9326 -8.4341 -8.5905 -8.7170 -10.2926 -12.2908 -12.5593 4.2267 2.1595 0.5102 -1.3820 -1.1131 -0.0305 -0.5306 -0.0216 -0.2857 -0.0746 -3.4583 -17.0769
13.6209 12.7507 12.8553 14.2468 15.9471 14.0699 8.8461 3.2261 -1.1845 -3.9187 -5.7488 -7.4173 -8.8555 -9.2473 -8.9917 -6.5605 -1.7283 2.9838 3.3778 -0.7316 -2.7883 -0.8816 0.0532 -4.9902 -8.7894 -10.3247 -7.5806 -5.9415 -6.2971 14.6560 9.5930 3.1821 -1.9796 -0.7713 -2.0700 -4.1354 -3.8071 -3.6360 -4.5115 -6.5203 -23.1275
23.4988 25.5182 26.1443 25.6216 23.4290 19.3707 13.9050 7.5166 1.8256 -2.4154 -5.4517 -7.7013 -9.8647 -11.2215 -12.6184 -14.4069 -15.4023 -15.6232 -14.8399 -14.5670 -14.5190 -13.7907 -10.6309 -3.4890 1.4794 1.6350 -2.2134 -1.6600 0.4710 10.9708 10.5205 11.2036 9.2796 5.4146 -1.1911 -4.4466 -8.0856 -10.7515 -10.9044 -12.0101 -11.4961
-0.5898 -1.0967 -1.1205 -1.0443 -1.2431 -3.0645 -6.3248 -9.1338 -11.1628 -12.4243 -13.5982 -14.0819 -13.6551 -13.9519 -12.0462 -9.7393 -6.5133 -1.4737 1.3159 2.7420 3.1032 9.2423 13.5689 17.8419 17.0272 18.0312 18.1676 16.3400 14.8841 4.5894 3.4070 3.1758 1.7888 1.6163 0.3158 0.2364 -0.4657 -1.0093 -2.6399 -11.0146 8.1604
13.0299 12.0907 11.0575 11.8980 14.1078 15.4469 13.8192 9.6452 5.0678 1.5872 -1.0858 -3.3552 -4.4488 -5.1355 -3.8141 0.5493 5.0898 4.4313 -0.4140 -3.7603 -4.7684 -3.6690 -4.3620 -10.8698 -15.5016 -18.4680 -18.1605 -12.2966 -7.7111 13.7174 7.2067 0.5178 -3.0887 -2.4521 -1.3997 -1.4244 -0.6539 -2.0510 -3.7269 -6.6452 -24.0840
20.2958 22.7253 24.1108 25.8434 27.1854 26.7629 24.3010 22.1308 21.1525 19.6181 13.7675 5.3826 -2.8225 -8.7282 -12.7146 -14.6989 -16.2675 -17.4195 -18.1391 -18.1287 -17.6301 -15.6767 -15.3188 -16.1464 -16.5053 -15.5852 -16.0162 -15.5577 -15.9205 1.1396 0.2956 0.2622 -0.1460 -0.2889 0.0275 0.0598 -0.0862 -0.0115 -0.3351 -0.9169 -18.8932
21.5882 22.6633 22.5911 21.7567 19.8871 16.4681 11.6127 6.5703 2.5780 -0.4539 -2.9597 -5.4269 -8.0935 -10.3291 -11.8474 -12.0219 -10.4753 -7.1877 -2.9765 -0.5555 -2.4316 -6.5984 -7.4329 -5.2211 -3.7364 -8.4581 -13.1170 -14.2101 -12.1825 9.2042 6.8442 4.1847 1.6315 -1.3411 -3.2760 -3.4037 -3.4563 -3.6074 -2.1629 -4.6172 -19.8953
10.6094 9.9560 8.4942 8.0886 9.3761 11.3323 13.7662 16.0947 16.8139 12.1179 6.8094 2.7670 1.8054 3.1768 7.3289 5.1766 -2.2376 -6.9741 -8.5553 -10.5642 -11.2643 -7.7672 -9.8975 -14.2107 -19.6460 -19.4783 -14.0319 -7.9045 -11.1818 -5.2324 -8.4640 2.9045 12.8860 11.9777 10.5541 7.9613 -4.2589 -8.3955 -8.1996 -11.7332 -19.6994
5.5041 5.3222 5.1942 5.5460 6.9576 8.9054 10.4828 11.0340 9.8032 6.8135 3.3656 -0.1277 -3.5960 -5.7793 -6.2939 -4.2863 -0.0268 4.5720 4.4361 0.4802 -3.4351 -5.2809 -4.4513 -2.2637 -4.7650 -9.6486 -13.3377 -14.7275 -10.3971 17.8073 13.8296 10.4356 9.0219 2.4512 -5.9813 -10.1712 -10.7160 -9.7016 -7.6983 -9.2773 -25.0775
16.3656 18.4878 18.9993 18.9918 18.4816 16.9653 13.5777 9.3381 5.1691 1.7384 -1.9039 -5.4804 -8.8300 -11.9448 -15.0434 -16.8969 -17.1670 -15.0995 -10.9516 -5.3056 1.0232 3.6264 1.1957 1.1028 1.6644 -3.8335 -10.3741 -12.2780 -11.6184 10.0963 5.3648 2.5424 2.4710 -0.7901 -3.2113 -3.7043 -3.1000 -2.4933 -1.9709 -5.2046 -20.9631
17.8837 18.4715 18.4874 18.4556 18.3711 17.4990 15.0865 11.4049 7.8551 5.6550 5.2257 5.9267 6.7868 6.4202 3.6161 -0.8300 -5.6377 -9.6817 -12.6005 -14.4203 -15.5246 -15.5077 -13.4622 -11.2201 -12.0997 -15.7120 -18.3392 -17.8512 -14.2586 8.3898 6.8733 5.8658 4.5307 0.2802 -3.1226 -4.8018 -4.8634 -4.4593 -3.4916 -5.2013 -22.2100
-3.1319 -2.9567 -3.5158 -3.6542 -3.9792 -4.5690 -4.2861 -2.5541 -2.2464 -1.9153 -2.4682 -3.1479 -3.0568 -4.8839 -4.5795 -5.3900 -5.0456 -3.5545 -1.3265 0.8505 3.0174 4.7498 6.6168 8.1567 6.6236 7.6792 9.3003 9.8713 9.3959 -10.5735 -12.5116 -14.0639 -7.5471 -1.3040 2.4789 5.3713 7.7962 9.4623 10.2101 10.6812 18.1437
21.9881 22.0268 21.4180 21.0501 19.7092 16.8902 12.8939 9.2408 6.1523 3.8245 2.5628 1.6418 0.8280 0.3977 0.2944 0.9841 0.5033 -2.6922 -7.8516 -11.9595 -14.1961 -14.2907 -11.4202 -8.4658 -10.2796 -16.2385 -20.8415 -22.5979 -21.5723 2.4756 1.9590 0.8663 0.5639 -0.3186 -0.6196 -0.7514 -0.8893 -0.9260 -0.4110 -1.9489 -22.2015
13.6868 14.9404 15.1000 15.5585 16.0353 14.4054 10.2425 6.2160 2.6004 0.0140 -1.0930 -1.9058 -2.2147 -3.1008 -3.0478 -1.9164 -0.2033 1.1951 -1.7083 -5.1393 -7.0402 -8.4745 -8.2053 -8.7459 -9.3367 -10.3650 -11.2280 -12.6090 -13.6605 -1.5164 -1.7406 -1.1213 -1.2392 -0.3054 0.1166 1.2891 0.8060 2.8591 2.2703 -1.4183 -13.8822
24.2507 21.6076 17.0141 11.8925 7.3451 3.9013 1.1114 -0.6837 -1.7199 -1.9483 -2.6719 -3.0002 -3.6624 -4.0397 -4.0608 -4.1225 -3.9810 -4.1129 -4.5653 -4.8917 -4.8071 -4.8794 -4.6353 -4.2726 -4.7350 -4.9508 -5.2264 -5.1675 -4.9885 -5.7398 -5.9757 -5.9417 -4.9603 -3.1354 -0.5548 2.3754 4.4296 5.8362 7.1375 6.5291 -0.9148
17.2631 17.8371 17.1292 16.2736 14.9354 14.1976 13.0153 12.0657 10.4316 7.4938 4.2444 1.4828 -0.6872 -3.7746 -5.5994 -5.3343 -3.0025 -0.6389 -0.0550 -2.7128 -6.5932 -9.9814 -10.8426 -10.0857 -9.6056 -13.2586 -18.8699 -22.5792 -22.7486 -0.7483 -1.0121 -2.2299 -2.0299 -0.7415 -0.0212 1.8597 2.9030 2.7112 2.3661 -3.0572 -22.3309
-11.1995 -10.6930 -9.1942 -8.1742 -7.6079 -6.5119 -6.9193 -7.1422 -7.9717 -7.7574 -7.1013 -6.4983 -6.0445 -5.1389 -3.0175 -0.5052 2.9571 5.6253 7.3169 6.5738 7.6017 10.0073 10.6429 11.4760 11.4863 10.6648 9.4863 8.0975 9.5413 3.3127 3.2227 3.8144 3.7156 4.3089 2.3578 0.7872 -1.2526 -2.7715 -4.3321 -13.1631 5.2507
17.1783 16.8887 14.7421 11.8348 8.0205 3.2499 -1.9129 -6.6225 -10.9397 -13.6517 -14.7230 -16.1104 -18.1604 -17.7193 -17.2055 -15.5458 -13.1652 -9.9983 -5.1836 -1.0331 1.9889 4.4501 8.5649 11.1613 14.3782 14.8611 11.2164 10.3416 13.0949 7.1449 3.2853 6.0619 4.3926 2.9056 -0.2214 -2.0011 -1.6095 -2.2370 -3.8553 -13.8661 1.4609
10.6486 10.4669 9.1585 9.0007 10.2209 13.1112 15.2667 14.3795 11.1262 6.6047 3.1822 -0.1678 -2.0727 -1.3024 2.4200 5.9038 2.7803 -3.1820 -6.2303 -8.6850 -9.4777 -6.1465 -4.6662 -9.5877 -14.2877 -18.3825 -17.6042 -13.8240 -8.6536 4.3381 -2.0474 -4.0413 0.7437 4.3435 8.0270 4.8604 0.4728 -3.1556 -4.1581 -9.3831 -21.0994
4.5339 3.0180 1.1590 -1.8077 -3.7376 -3.2592 -4.8664 -9.0451 -10.5616 -11.0424 -11.0656 -11.1375 -9.1571 -8.9187 -5.4870 -3.7659 -1.1875 -3.3535 6.8620 12.8048 15.2130 16.4198 9.1571 6.4605 6.3040 10.6463 -0.7014 -3.2795 9.7951 11.6354 5.7420 6.8106 9.3406 9.2914 6.7851 13.3750 12.3210 -24.4316 -25.4838 -25.3856 -1.3255
6.4369 5.6614 4.5505 3.2770 2.0132 1.6324 -0.2278 -1.7054 -2.5408 -2.9440 -2.5595 -3.6388 -4.3998 -3.8497 -2.4600 -0.6672 0.4797 -0.4954 -0.1361 -0.3178 -0.0794 0.9249 1.3910 0.5690 0.3416 1.0916 0.5145 1.1248 -3.9866 15.2047 12.4340 6.7379 -7.0628 -9.2462 -7.3526 -5.2530 -3.4204 -1.8366 -0.0754 -0.1298 -20.8819
13.5404 15.5222 16.2893 16.8870 17.0524 17.1327 14.7572 10.8720 6.7840 2.5400 -0.5888 -3.3697 -5.4657 -6.7879 -7.7962 -7.6553 -7.4342 -6.9197 -6.9455 -6.3541 -6.7461 -7.4159 -7.7579 -8.3178 -7.4289 -7.3424 -8.2132 -8.9949 -9.8430 0.3453 -0.2701 -0.5525 0.0397 0.0597 0.2448 0.8902 1.5587 1.2101 0.8399 -4.3658 -12.2454
24.5559 23.4130 20.6408 17.3808 14.4160 11.8493 9.6532 8.6801 7.2117 5.4621 3.0668 0.2230 -2.1120 -4.3454 -5.0915 -4.2332 -0.9253 -0.0786 -2.2834 -6.2673 -9.6185 -12.2260 -14.2603 -13.3716 -11.5386 -12.2997 -15.1963 -16.5699 -16.1351 4.5303 3.2491 1.5538 0.2521 -0.8115 -1.5855 -1.5263 -1.3266 -0.9651 -0.7138 -2.6565 -20.2257
8.1022 9.7899 9.7931 9.7477 9.2987 8.7666 6.9904 5.3290 3.0336 1.6204 0.3860 -1.2415 -2.4680 -4.1707 -5.1485 -6.7003 -7.6570 -8.3503 -8.5552 -8.8991 -9.0059 -8.7857 -7.0780 -4.5450 -2.6069 0.6288 2.8467 3.7676 5.1114 3.4695 4.5378 3.2083 2.5145 1.3409 -1.3752 -0.8674 -0.4720 -1.0186 -1.5059 -9.8318 0.0727
14.4586 14.2733 13.1879 11.9606 10.2045 9.3636 9.6651 11.0114 12.1122 12.3036 11.0280 8.7772 5.9733 2.4672 0.3102 0.0747 1.2366 0.9815 -2.8016 -7.9803 -12.3829 -14.7650 -15.7924 -13.6058 -11.0614 -13.0621 -17.8806 -20.1354 -19.9220 5.0740 2.9263 -0.3365 -1.5294 -1.0384 -0.4370 -0.2758 -0.3204 -0.0653 -0.0869 -3.9105 -24.5880
16.8931 17.8847 18.3283 18.5232 18.1990 16.7506 13.5330 8.8264 3.6715 -0.1991 -2.2432 -3.3290 -3.3054 -2.6748 -0.6690 2.7103 4.8565 3.5571 -0.4645 -5.0037 -8.7773 -10.0343 -10.0215 -10.2618 -11.9582 -16.0391 -19.8259 -20.4865 -18.4405 4.2237 7.7521 9.4271 7.7776 3.2089 -1.3047 -4.3710 -6.1258 -6.6240 -6.4665 -7.4973 -21.6119
26.2407 26.8595 25.5084 23.5987 20.6139 16.2421 10.9416 5.9994 2.3434 -0.3767 -2.7912 -5.3898 -7.9202 -9.5689 -11.3407 -12.1566 -12.5654 -12.0723 -10.0537 -6.9972 -3.0971 -1.8157 -4.5501 -5.7844 -5.5235 -7.2936 -10.9909 -13.4932 -14.5663 2.1561 1.5321 0.2818 -0.1633 -0.3426 -0.3136 0.0161 -0.3898 0.0287 -0.0952 -2.7103 -16.2994
18.3705 19.3592 20.1123 19.1051 15.6286 9.5321 3.0603 -1.6458 -4.5598 -6.3273 -7.5713 -8.4739 -9.3282 -10.3168 -10.7509 -9.1030 -6.7703 -2.5740 3.3208 6.7538 4.2453 2.9740 1.1080 -3.3077 -7.0808 -9.7837 -9.6571 -8.2866 -8.0329 10.1201 5.6162 1.7587 -0.9681 -1.7807 -2.3958 -2.4286 -1.6485 -1.8262 -1.9033 -4.5440 -20.3964
13.2741 15.4244 17.0234 18.2818 19.5432 18.9691 14.9962 9.1156 3.6419 -0.2906 -3.1570 -6.1768 -7.9818 -9.3506 -9.4656 -9.2507 -8.4602 -6.2085 -1.8201 1.5162 1.2490 -0.0059 -1.8007 -4.5282 -8.6837 -12.6709 -15.3611 -15.4209 -12.4015 7.8150 3.1728 1.5432 0.7950 -0.5318 -1.2456 -1.5988 -1.7996 -2.1907 -2.0052 -3.9542 -22.2556
15.9184 17.3622 17.4678 16.8842 14.6841 11.8317 7.6477 2.3173 -1.3712 -4.0441 -5.5323 -6.8296 -7.7101 -8.4121 -8.4766 -8.2702 -8.0827 -7.3742 -7.9359 -7.9155 -8.0671 -7.6939 -7.0166 -5.7862 -3.8811 -1.0122 2.4703 3.9838 4.8441 2.9188 2.7328 3.6011 4.0330 4.2894 1.6661 -1.5176 -1.7944 -2.1907 -2.2625 -11.4761 -0.6248
27.6543 28.3344 28.0974 27.8652 25.8810 21.2395 14.9679 8.7442 3.5965 -1.0986 -5.8391 -9.7803 -12.4065 -13.0919 -11.4339 -7.2826 -2.4552 -0.6713 -3.1822 -8.1469 -9.6767 -9.4577 -8.9612 -11.2661 -13.6229 -15.3616 -15.2642 -14.0444 -13.3373 2.3229 0.9500 0.5581 0.0389 -0.1161 0.3407 -0.3396 -0.7413 -0.8075 -0.6566 -1.5496 -16.0531
14.7743 15.8710 16.5584 17.4275 18.6438 19.6359 19.7934 19.0788 17.9177 16.9057 15.9073 14.4531 10.2026 3.0567 -4.1665 -9.7579 -13.4361 -15.9678 -18.1928 -19.8105 -20.3101 -20.0861 -19.2226 -16.1803 -12.5817 -12.1735 -14.1311 -13.5138 -10.6954 7.7639 2.5429 2.6941 2.9367 0.5893 -1.9290 -2.8709 -3.1704 -3.0337 -2.2216 -3.3012 -22.8190
12.7199 12.8622 12.1185 10.3818 7.6754 5.4729 4.0902 2.5106 1.3459 -0.1508 -1.0590 -0.9743 -1.2979 -1.7207 -2.0981 -3.4023 -3.6088 -3.7334 -2.9611 -2.7071 -3.2507 -3.7314 -4.9032 -4.9793 -5.4541 -5.3634 -5.5199 -5.9327 -6.3294 0.5719 0.7629 0.4111 0.3851 0.5406 0.3610 -0.6901 -0.4405 0.2987 0.0781 -2.2788 -7.7046
17.0925 17.2680 16.3588 15.6578 15.5233 15.8680 16.0037 14.7721 12.2920 8.7258 4.3618 0.2688 -3.5171 -6.9208 -9.2849 -8.9305 -6.2881 -2.6008 0.0832 -0.7819 -3.3713 -5.1713 -4.9040 -6.2218 -11.3970 -17.6896 -21.9017 -23.4215 -21.8734 3.1762 2.3323 1.1259 -0.1136 -0.6656 -1.1934 -1.1198 -0.3320 -0.0039 -0.1887 -3.0174 -24.2388
17.2297 15.6739 13.0707 10.1587 7.8155 7.3743 6.0217 4.4665 3.0535 2.6239 2.2641 1.9670 1.5434 0.6206 -1.2673 -3.0579 -4.7912 -5.9248 -5.9180 -6.1220 -5.8687 -6.3517 -6.5968 -7.5677 -7.4916 -7.9499 -8.0977 -8.4791 -8.3990 1.8899 2.2808 2.6284 2.1186 1.2552 0.2046 -0.3591 -0.6669 -1.5091 -1.4378 -6.4047 -11.8263
4.5933 4.7596 4.4438 5.2453 6.6446 8.2821 6.9832 4.3810 1.1278 -1.5253 -1.8904 -2.1516 -3.4268 -5.4133 -6.8772 -7.1547 -5.3998 -2.6582 1.2751 2.0882 -0.7302 -4.1881 -5.1819 -2.1264 0.8208 0.5532 -1.8235 -1.5249 0.8743 5.3771 4.5451 4.0828 5.1397 3.7744 0.3580 -1.2512 -0.7183 -2.7542 -4.1142 -14.4391 -6.0204
-2.2799 -1.7680 -3.2413 -3.9270 -2.7062 -1.0703 -1.3350 -1.9824 -2.4957 -1.3919 -2.1103 -4.0545 -4.3911 -5.7784 -7.9812 -7.7496 -7.5943 -5.8788 -3.7846 -2.6760 2.8977 4.8420 8.2162 4.4328 10.2839 10.4092 11.3489 11.1069 10.6590 -9.8885 -12.0674 -13.7764 -6.7026 -2.8416 2.6527 5.3400 7.6116 8.5217 10.1675 10.9830 18.5816
8.6790 8.1241 7.9956 9.0010 10.6051 11.9336 12.0700 10.4828 7.6040 4.4092 1.4213 -0.5435 -1.8070 -2.2849 -1.1776 2.4297 6.7853 8.4364 6.3991 4.5951 1.7264 -5.9987 -12.0781 -16.5380 -18.7068 -19.2937 -18.0295 -14.9180 -11.3219 9.6625 7.9093 9.1967 5.7578 -1.0641 -5.1134 -6.0886 -5.4946 -5.3822 -2.7102 -6.6734 -25.9833
10.3657 10.3631 9.7058 9.4298 9.0617 7.9822 5.9655 2.6688 -0.5238 -2.6855 -3.0614 -3.3624 -4.7739 -5.3797 -4.5954 -3.2382 -1.5077 -1.7236 -2.7671 -2.9653 -4.5764 -6.3959 -5.0542 -3.3922 -3.4383 -5.4556 -2.3727 -2.0655 3.7923 -5.2260 -22.0236 -1.5093 6.4261 7.5104 7.6639 4.2871 1.2994 0.5479 5.7985 -4.7744 7.7899
10.4446 10.4588 9.0587 7.0901 3.1501 -0.3318 -2.7060 -4.6185 -5.7165 -6.2274 -5.5457 -6.1342 -6.9016 -7.4068 -6.2107 -3.8982 -1.1383 -1.7125 -3.1209 -2.5081 -2.3909 0.2919 4.6445 2.6432 2.6694 4.3011 3.5911 6.8931 1.3315 21.7970 18.1696 11.3834 -3.1623 -8.4098 -8.5693 -7.6899 -7.0385 -5.9998 -5.4794 -5.0009 -22.6316
17.2287 17.7616 17.8929 19.2677 20.8170 21.4764 18.7667 14.2036 10.5122 8.1941 7.8420 9.4381 10.7037 7.2143 -0.2794 -6.1524 -10.8365 -13.8587 -16.1691 -17.3352 -17.2280 -14.8106 -11.1914 -12.3040 -16.0739 -18.1082 -16.4868 -14.5719 -15.9127 2.3379 0.5208 0.3528 -0.1779 -0.6500 -0.5172 -0.1244 -0.1086 0.2128 -0.1577 -1.6885 -22.6503
18.5355 20.4972 20.1850 18.5749 15.6167 12.2745 7.9486 3.0171 -0.8357 -2.7695 -4.9000 -6.7903 -8.0533 -9.4775 -9.7203 -10.0951 -9.4960 -9.2581 -9.1995 -6.3741 -2.3905 0.4560 1.0899 -0.4465 -1.4521 -2.6965 -6.3247 -8.5287 -9.3872 0.7079 0.5683 -0.4043 -0.7092 -0.1113 1.5441 2.4584 1.8607 0.7709 -0.1603 -6.5252 -13.3875
15.7485 14.5502 12.3547 10.1884 8.6909 8.0435 6.3074 4.6065 2.2122 -0.1930 -1.2413 -2.4859 -3.7253 -4.0244 -2.8733 -1.9500 -1.0559 -2.6557 -3.6275 -3.0937 -3.1904 -3.2420 -3.8325 -6.0485 -6.6724 -6.1617 -7.5456 -8.3219 -10.7613 9.0819 5.6131 0.9836 -3.3767 -5.1130 -4.5161 -2.5844 -1.0875 -0.3335 0.8807 0.4519 -18.4860
13.0658 12.0977 9.3051 6.8101 5.9796 6.1211 5.3037 4.3634 4.1469 2.3546 0.6265 -1.0456 -1.8168 -2.1623 -1.4037 -2.0812 -2.8168 -3.4540 -4.9104 -5.6641 -6.1702 -5.2274 -3.5942 -3.4678 -3.4265 -4.9099 -5.1651 -6.2588 -6.5997 3.1896 2.3931 3.5929 2.5385 1.8123 0.7336 -0.3261 -0.9462 -1.5350 -2.5520 -8.9007 -9.6432
6.9128 6.7304 6.9243 6.4631 5.6472 3.9796 1.7898 -0.2489 -2.4436 -2.6508 -2.5470 -2.8932 -3.7418 -4.0472 -3.7409 -4.1721 -4.5045 -2.5398 -1.2681 -2.2512 -4.0819 -2.5504 -0.5617 -0.8125 -6.3247 -16.4522 5.3598 10.4107 13.6148 2.9041 3.9937 4.1878 3.1505 2.3718 2.0861 -0.7564 -2.8980 -3.0100 -1.1906 -10.8392 7.8990
15.3717 14.4646 14.0665 15.2685 17.8890 16.6173 10.8299 5.4591 1.3248 -1.5112 -3.5105 -5.0396 -4.7139 -3.2327 0.4893 6.6080 9.2663 7.1616 4.6529 0.9359 -6.9866 -12.7386 -15.0655 -16.3268 -15.5303 -12.5805 -11.4429 -13.9588 -17.7676 4.4548 2.5041 -0.5574 -1.9092 -1.6954 -0.7980 -0.8178 0.6929 0.2455 0.1742 -2.2936 -23.5972
15.1415 17.2129 18.5276 20.2576 22.0435 22.9410 21.3301 18.4906 16.7921 16.6351 16.5489 13.5214 7.0026 -0.4264 -6.3907 -10.2154 -12.0432 -13.8717 -14.8140 -14.5501 -12.6863 -11.2906 -14.4502 -19.3250 -21.0242 -20.2029 -17.6079 -17.4052 -20.1409 -0.1152 0.2933 0.6422 0.8539 0.5304 -0.1244 -0.6918 -0.3401 -0.1677 0.0292 -0.9099 -22.1229
16.3527 16.4358 14.5529 11.7515 8.0259 5.7593 4.7947 5.2455 6.9418 9.3793 10.6924 9.9655 9.0457 8.3252 8.4762 6.3689 3.4623 -0.5745 -4.6846 -8.5680 -10.9887 -12.4636 -14.7640 -14.5242 -15.3129 -17.5422 -18.4522 -18.6412 -19.0596 4.6132 1.4513 -0.0514 -0.1917 -0.3334 -0.1370 -0.0439 -0.2954 -0.2393 -0.9118 -3.8606 -24.6234
3.0149 3.3679 2.0858 1.6705 1.6501 2.5867 1.6237 0.5766 -1.3320 -2.3047 -2.9270 -3.0607 -3.6274 -5.2376 -5.7845 -5.3526 -3.5342 -1.1532 1.8140 2.9895 2.7465 1.9285 1.7068 1.7703 2.2200 1.9728 0.2297 -1.0946 1.4544 -2.0981 -1.6916 0.2350 2.2065 3.1538 2.2516 2.8930 1.2452 0.2641 0.7151 -9.1746 0.1743
33.1383 31.0792 25.7434 19.1612 13.8370 10.1403 5.0657 -0.9848 -4.0125 -3.8049 -1.4317 2.9301 4.0459 0.1222 -5.3168 -8.1684 -10.0826 -10.8448 -10.2597 -10.3317 -9.4719 -5.7311 -3.3677 -4.7251 -6.3960 -9.1268 -12.2844 -14.4200 -14.5022 2.6060 2.2289 1.6967 0.1399 -0.9831 -0.9608 -0.8510 -1.0292 -0.7889 -0.5855 -1.4730 -15.7149
27.2923 26.1076 23.8786 21.3130 19.0418 17.1720 15.5267 14.4631 14.0462 13.5070 12.4676 9.9142 5.6853 0.5980 -4.4056 -8.3465 -10.4675 -12.5667 -14.3166 -15.5842 -15.4689 -15.0589 -15.5652 -16.4950 -16.8464 -17.9497 -19.4354 -19.6539 -18.8530 1.2956 0.1647 -0.0666 -0.5622 -1.0818 -1.0177 -0.6516 0.0389 0.9296 1.4023 -0.4513 -20.2788
26.6766 26.7374 25.7566 24.0280 20.4779 14.6637 7.8330 1.9621 -2.0700 -4.7989 -7.3077 -9.0786 -9.6220 -7.7331 -4.7410 0.1848 4.4070 2.7266 -2.1973 -5.5028 -7.5677 -8.3692 -9.3827 -11.2185 -12.6814 -12.9582 -12.5667 -13.3838 -14.2742 2.1312 0.7483 0.4117 -0.1309 -0.2886 -0.2604 -0.4816 0.0583 -0.0383 -0.2744 -1.8754 -17.9569
3.3978 4.4684 4.2593 3.9748 2.4838 0.6609 -2.0182 -4.4753 -6.9532 -7.4489 -7.9821 -8.8126 -7.7701 -6.4035 -3.2114 -0.1726 4.0273 6.9857 8.4846 6.3510 4.9727 4.6470 4.6414 3.6916 1.9176 0.3255 -2.6101 -3.4750 -3.9565 1.7533 1.1049 0.6470 -0.2625 -0.1699 -0.7934 -1.0459 -1.6085 0.7985 2.6353 -3.0588 -6.3429
10.0599 9.5448 6.9010 4.3178 2.5886 1.5303 0.1509 -1.0275 -2.6254 -2.8291 -3.0667 -3.4775 -4.4368 -5.1122 -6.2497 -6.7213 -5.2797 -3.8800 -2.4109 -1.6128 -3.0693 -4.8056 -5.1575 -1.7918 2.5625 3.7623 3.5521 7.7141 10.8696 8.0651 6.4772 6.6051 3.5600 1.8517 -0.5246 -1.7934 -2.7395 -3.6923 -4.3495 -13.4599 0.6565
25.7569 24.1232 20.4182 16.1881 12.4409 10.9425 10.5212 10.6127 10.0690 8.9583 6.8593 5.3047 4.2774 2.9654 1.7215 -0.5266 -3.2445 -6.9442 -10.3293 -12.7061 -14.0210 -14.2363 -13.7968 -14.0351 -15.0354 -15.6847 -16.5621 -16.6992 -17.3378 1.2536 0.3575 0.1415 -0.1561 -0.1699 -0.6288 -0.4370 0.0255 0.2138 0.5498 -1.1499 -20.2166
0.0231 -0.9014 -1.8167 -1.2335 -0.9356 0.1659 0.0099 -0.3194 -1.2785 -1.6159 -0.9934 -0.9581 -1.8280 -2.2803 -1.6717 -0.1281 -0.6227 0.0211 -0.2651 -0.5372 -0.9352 -1.0325 0.2653 -0.4461 0.6598 1.5850 4.5525 6.2731 6.2437 6.2289 7.1906 6.8806 4.1911 2.5668 0.0429 -1.5955 -2.8462 -4.6688 -4.0492 -13.9413 -0.0713
7.9284 9.1572 9.8203 10.6262 11.7687 13.2204 14.0222 13.2111 10.5107 6.8116 3.6111 0.4955 -2.3899 -5.1121 -6.5572 -6.6556 -5.2199 -2.9231 -0.5211 -0.8570 -4.7480 -9.1464 -11.8191 -10.7137 -6.0224 -4.8220 -8.0630 -12.3598 -13.2532 13.1773 12.7484 9.6243 5.0688 -0.9409 -6.7845 -7.3453 -6.4726 -6.1985 -4.8683 -8.0086 -24.4428
20.6590 19.3955 16.2834 13.6379 12.4445 12.1295 10.9807 10.1646 10.4918 11.3802 11.3612 11.2354 10.6339 6.7227 1.1138 -3.7021 -6.4288 -7.9590 -9.9760 -11.0475 -13.1574 -15.9863 -18.1733 -17.6149 -16.1809 -16.3342 -15.4709 -13.2473 -13.3553 6.4606 2.2334 0.0904 -1.0983 -1.1535 -1.8710 -1.3953 -0.4539 -0.1442 0.1951 -2.8632 -21.9027
11.5076 12.0660 12.7170 14.7721 15.3221 13.0928 8.0689 3.5812 1.5428 1.2390 0.9197 -0.0146 -2.1654 -5.8495 -7.9985 -6.4957 -1.4612 4.6035 5.2013 1.9497 -2.2153 -5.5580 -2.2714 -3.5929 -8.3748 -16.9482 -17.6920 -14.1565 -11.7896 -0.1089 2.8427 6.3890 4.6360 3.9712 2.8762 -3.4553 0.8911 -3.1126 -3.8817 -11.0478 -18.2605
9.1012 8.2983 7.7090 8.2796 9.7170 11.3893 12.9622 12.4812 9.4717 5.4783 2.6937 2.0314 2.3476 3.7201 7.2459 7.9823 4.2063 -1.0767 -4.4784 -6.7559 -4.5456 -4.6976 -8.2963 -18.7549 -25.0006 -24.3482 -13.5441 -8.7468 -4.8700 9.4162 -0.0518 -5.6394 -1.8175 2.8460 5.7461 4.9827 2.5039 -4.5892 -5.3372 -8.0598 -24.0108
25.3914 22.4719 18.4847 14.1484 9.8827 6.3827 3.7424 2.3869 2.0026 2.1806 2.2067 2.4594 2.5334 2.7925 2.7285 2.5917 0.9336 -1.3314 -3.7507 -6.3146 -9.9633 -12.2523 -11.7329 -10.5539 -10.5613 -12.8970 -14.8061 -16.0931 -13.0635 9.4907 8.6133 6.9669 5.2967 0.8483 -2.8965 -3.7224 -5.4526 -6.1034 -5.5404 -7.5006 -19.2567
14.7633 21.0347 26.5178 28.8557 23.3660 14.8939 7.8472 4.1479 1.6451 0.1940 -1.0241 -1.7100 -2.7839 -5.4888 -5.8766 -6.7065 -6.5101 -6.3172 -7.4748 -8.1349 -8.6673 -9.2054 -8.7696 -9.2949 -9.5243 -9.8586 -10.6206 -12.3755 -12.9225 0.5464 0.3011 -0.4717 -0.8221 -0.5981 -0.7596 -0.1787 0.0888 0.2680 1.7014 -0.0756 -13.4143
14.5722 15.9781 17.0264 17.6175 17.4232 16.5459 14.6151 11.6122 8.3872 5.7241 3.1297 0.7916 -1.8948 -4.6319 -7.4829 -9.0432 -9.8372 -10.2623 -9.8461 -8.3463 -7.1311 -7.5141 -8.8925 -9.9645 -10.0906 -8.0182 -7.1753 -10.4665 -12.8258 7.5756 9.5196 10.3723 8.1609 3.4930 -3.1717 -6.1605 -6.9929 -7.1805 -6.8863 -8.7297 -20.7652
37.2037 35.8111 32.3205 28.0474 23.2802 17.7045 11.6084 5.8427 0.2670 -3.7432 -6.2669 -8.1167 -9.3928 -10.1312 -10.3467 -10.0877 -9.5979 -9.7744 -10.3207 -10.6331 -9.9469 -8.6203 -8.3585 -9.6074 -10.8446 -11.5167 -11.7789 -11.6363 -11.3647 0.3839 0.1181 -0.0142 -0.2099 -0.2835 0.1550 -0.0340 0.1033 0.0295 0.1568 -0.4049 -11.8075
25.2715 25.9731 25.5019 24.4387 22.0168 17.9875 12.8839 8.1186 4.0883 0.9493 -1.8320 -4.9719 -7.8984 -10.8034 -12.5203 -12.4959 -10.7116 -8.3345 -4.1201 -0.1578 0.1929 0.1873 -2.8273 -8.7555 -14.7009 -17.5950 -18.3997 -17.0685 -14.4171 1.9066 0.3797 0.2936 0.7746 -0.4377 -0.0940 0.1464 -0.0351 0.2602 -0.8075 -2.3869 -18.3683
-1.7829 -2.9115 -3.3197 -3.0219 -3.0103 -2.1963 -1.8274 -1.5453 -1.3834 -0.5971 -0.1822 -0.0707 -0.4004 -0.4751 0.5738 0.6319 1.4145 1.0927 1.3496 1.6238 1.3746 1.5109 1.6452 1.4227 2.6607 1.9921 2.0933 1.3984 1.9401 -5.1733 -5.1451 -4.0887 -4.3334 -2.3485 -1.2750 1.8849 3.8802 5.4984 6.3884 4.7120 5.8699
3.0884 3.6195 4.4987 5.4241 5.9234 4.3151 1.2318 -2.0672 -4.8560 -6.7176 -7.7263 -9.2051 -9.8093 -9.8027 -9.8649 -7.5800 -3.5471 1.2395 3.8333 2.4520 -0.1380 -0.1169 2.7696 4.2835 3.0029 2.8349 6.1975 8.5550 8.1619 3.4262 3.7255 2.9723 1.5679 0.6856 0.7789 0.0324 -0.0400 -1.0930 -1.5814 -10.4745 2.5083
7.7805 8.5455 8.0969 7.4180 6.0322 4.2643 0.7072 -3.9008 -6.6106 -8.5279 -9.9913 -12.2197 -13.9875 -14.6194 -13.4585 -8.5866 -0.1410 5.8556 2.7328 -4.3868 -7.6497 1.0307 6.7604 2.0849 -2.0565 4.3945 7.6154 14.5442 18.2732 15.9793 12.4675 8.6361 9.3177 7.1620 -0.4370 -7.8068 -13.5960 -11.2218 -10.5975 -9.9034 -5.2521
15.1743 16.3078 16.6845 19.2037 24.9642 26.0482 22.2299 20.1754 18.1609 11.9813 3.3906 -4.1269 -9.8102 -12.4054 -13.1972 -14.9771 -15.2101 -17.0350 -17.5402 -17.2730 -16.8388 -14.0848 -9.7661 -6.4551 -6.0572 -3.5105 -0.1292 -3.2831 -12.6212 2.6750 0.5089 0.3940 -0.3851 -0.0012 -0.1207 -0.3792 0.6121 -0.3176 -1.0554 -1.9307 -19.7041
31.5560 30.0892 27.2291 23.5683 19.0546 13.2491 7.4257 2.9756 1.0209 1.0243 1.3700 0.6757 -1.0362 -3.4535 -5.1118 -5.5508 -4.6428 -3.9233 -3.2906 -5.2994 -8.4124 -11.6578 -14.3387 -15.5177 -14.9184 -14.0360 -14.9127 -16.4768 -16.6595 1.6433 1.3970 1.0165 0.6310 -0.0752 -0.3736 -0.5030 -0.7080 -0.7791 -0.4687 -1.7802 -17.0148
10.1749 8.8485 5.1795 4.5617 6.0171 6.4829 4.3672 1.6019 -1.6450 -2.9876 -3.6524 -3.2008 -2.3296 -2.1644 -0.9768 0.4251 1.9391 3.4981 4.6467 4.5048 2.1218 -0.3094 -2.3029 -5.7620 -6.5009 -7.7314 -8.7890 -8.6982 -7.3190 -8.3023 -3.9045 0.7597 3.5083 5.6470 8.4380 8.9270 8.1570 4.5045 0.2453 -27.9802 0.6878
-2.6861 19.2221 33.9780 25.1761 5.3276 0.9553 6.0941 10.8857 -5.1659 -6.6908 10.2870 5.5719 -7.7825 0.7662 -3.2785 -9.7089 2.1449 -8.4950 -0.8482 -8.2638 -3.5649 -9.0557 -5.1930 -8.2034 -6.3047 -4.3602 -8.0851 -11.0228 -11.6996 3.2339 2.5869 1.5692 0.5614 -0.4616 -0.6459 -1.3729 -1.3736 -1.2425 -0.6779 -2.1770 -11.9897
7.7287 10.4343 12.3692 13.9892 14.6808 14.5459 13.0629 9.8660 5.8851 1.8545 -0.9409 -3.2758 -5.5305 -7.8527 -9.4747 -10.4586 -10.7336 -9.8759 -8.2611 -5.1685 -1.7008 0.1176 -2.2902 -4.5858 -4.0962 -2.2000 -2.3668 -6.9728 -8.7495 13.3085 14.0301 12.5973 11.0446 6.5436 -2.6637 -9.4551 -11.0645 -11.2845 -10.7446 -12.3117 -20.4326
10.7360 10.3386 8.2768 6.4632 4.7302 3.0267 0.5796 0.1120 1.9363 5.0018 8.3004 9.8879 8.2713 4.5555 2.8097 1.8606 2.8946 3.7421 5.2970 1.2683 -4.7378 -8.7201 -12.8564 -12.4960 -9.6753 -7.5251 -10.0781 -16.3686 -17.6314 11.3379 8.1471 4.3411 2.5211 1.4007 -1.3607 -3.3014 -4.3151 -5.9538 -5.2614 -7.5554 -24.6877
15.8329 15.5150 15.4055 16.5837 18.1854 17.6604 13.6126 8.4914 4.4891 2.4328 0.8814 0.7780 2.6950 5.3091 6.6587 3.8545 -1.3529 -6.1324 -10.5147 -12.4571 -13.5735 -11.0746 -7.2535 -11.2844 -17.2383 -20.4683 -17.4107 -10.9397 -8.6853 6.2333 2.1814 0.2320 -2.1897 -2.6025 -1.7475 0.3359 2.9117 0.0927 -0.1075 -5.3398 -21.1984
7.6562 6.5870 4.6968 5.1260 9.8218 14.9709 16.0850 11.5684 4.7265 -0.2176 -2.9979 -6.0694 -8.2544 -9.4950 -8.0755 -5.7955 -0.4807 4.7296 3.3026 -0.0914 -2.8102 -1.2809 -0.3393 -3.3149 -5.6215 -8.5469 -6.6780 -7.8970 -11.3047 12.3298 6.3356 1.6165 -2.5162 -1.6392 -1.6454 -1.7173 -2.3908 -2.4175 -3.1101 -4.8454 -23.7397
4.9452 5.0593 3.8655 4.3020 7.6977 11.2424 13.0502 11.2196 6.9219 2.6857 0.2056 -1.5076 -2.7845 -3.1104 -0.8091 1.9648 6.1634 5.4049 1.2240 0.3494 -1.5074 -1.8246 -3.5432 -4.5137 -4.3268 -8.6129 -12.2904 -18.8599 -22.6111 7.0748 5.7565 2.9123 -0.3591 -1.5206 -1.7280 -1.8572 -1.6318 -2.3011 -2.3197 -4.0261 -26.4685
6.0640 7.2189 7.3048 8.3637 9.3160 10.4746 10.1941 8.3124 5.0444 1.9281 -0.2645 -1.4345 -2.1250 -2.6210 -3.0015 -2.7992 -2.6148 -2.9666 -3.0696 -3.8743 -4.5941 -4.8980 -5.6820 -5.7978 -5.5722 -5.1973 -5.4147 -6.4176 -5.8765 -6.4521 -7.2215 -4.2413 -2.7669 -0.8266 1.9295 3.3149 5.2440 5.9014 6.7572 -1.6387 -0.2567
5.2371 4.8863 3.3100 2.1337 3.1492 5.6939 8.7998 11.5679 12.8023 11.4528 9.0298 8.9298 10.6661 11.0071 6.4326 0.2441 -4.1637 -7.7062 -9.8518 -10.2264 -9.5820 -9.1951 -8.6992 -10.3299 -13.3858 -12.1048 -8.3569 -6.0495 -5.6913 14.1502 9.0286 4.5400 -1.0010 -2.1523 -1.3098 -3.6803 -4.2446 -3.9915 -4.5409 -6.7984 -22.3276
1.1749 2.9147 3.8400 5.6634 7.4575 9.0125 7.3532 4.8392 2.7190 0.8710 -1.4481 -2.7601 -4.4452 -5.2662 -3.9827 -3.4617 -3.6219 -3.1639 0.2716 3.4947 2.5863 2.0483 0.3695 -1.8223 -3.0550 -5.5600 -5.1761 -5.3683 -5.4841 2.7668 2.1577 3.0912 2.4351 2.4455 2.9457 1.4490 -1.5314 -2.8660 -2.9647 -9.9290 -9.9768
25.7146 25.3619 23.9564 22.3568 19.1718 13.1052 5.5763 -0.1008 -2.7575 -4.2993 -6.3232 -7.4184 -9.0999 -12.1658 -14.7424 -14.2269 -13.0082 -10.2417 -6.6055 -0.9140 1.6308 -1.8199 -3.8874 -1.8765 -3.1164 -7.7016 -9.3481 -4.2820 -2.9383 8.4368 1.7117 -0.7722 -1.4926 -2.2285 -1.9674 -1.0460 -0.6567 0.1437 0.9502 -3.0790 -15.7527
10.7572 9.4885 7.7426 6.5423 6.0951 6.6895 8.5238 11.1515 12.9326 13.0679 11.3687 8.6878 5.8071 4.2486 4.2979 5.1375 3.6691 -0.4487 -5.7940 -9.6188 -11.6687 -12.0791 -10.1837 -7.1986 -9.3267 -15.4942 -18.3956 -19.0668 -16.9329 10.8057 6.4011 3.3690 1.5029 -0.9587 -2.8947 -3.7517 -3.2931 -2.8022 -2.8052 -5.5731 -27.3774
30.7504 28.4951 25.5185 22.1742 18.1099 13.0360 7.7976 3.5112 0.1176 -2.6569 -5.1898 -7.4966 -10.1459 -13.1401 -15.8245 -17.0970 -17.1868 -16.6198 -16.0292 -14.4009 -11.3257 -6.9370 0.0110 2.6766 1.9106 1.9904 0.8448 -1.2215 -1.6723 13.9837 12.0732 6.7883 4.2122 -0.6419 -6.1564 -6.8790 -7.3232 -5.7545 -3.2248 -7.0778 -13.8733
5.5235 4.9142 3.2141 2.6590 2.9961 4.2989 2.3547 0.5028 -0.8260 -1.5841 -2.8526 -2.4476 -1.1830 1.5505 2.5932 1.4615 -0.9550 -2.6992 -1.4620 0.7531 3.9055 4.2326 1.8576 -1.8966 -2.2755 -5.1995 -7.0773 -7.5304 -4.8283 8.7008 8.7053 7.0759 3.5239 0.2213 -0.4716 -2.9649 -4.4365 -3.8970 -5.6460 -10.8111 -11.0662
10.0683 11.2576 9.1250 5.5609 2.1927 2.3916 0.5672 -0.6821 -1.7701 -2.4144 -2.1229 -2.5051 -3.0931 -3.4474 -3.5498 -4.6568 -4.0419 -2.9786 -1.6058 0.2043 0.2119 -0.9338 -2.1449 -1.5900 -1.2476 -0.0367 -0.7467 -1.0002 -1.0118 -12.1871 -7.6015 -6.0260 -2.6153 1.8019 5.1419 7.0075 7.4839 6.3084 5.7281 -5.0417 11.1839
19.0914 19.5418 18.5550 17.3149 15.8219 14.6893 12.7457 11.1878 8.8607 6.1729 3.1425 -0.6029 -5.0284 -9.2811 -12.4294 -13.9531 -12.8183 -10.2445 -6.0419 -0.7352 0.9087 -2.2874 -5.6745 -5.3857 -4.8993 -8.6787 -14.4653 -17.3889 -18.1181 2.0079 2.3051 0.1550 -1.9709 -2.1518 -1.0518 -0.2981 0.9220 1.4828 1.7198 -3.1202 -19.8209
7.5768 6.6930 5.4155 4.9157 5.4796 5.7470 5.5734 5.4561 5.0927 4.7098 4.4827 3.6618 2.9817 3.2600 4.2867 6.6922 8.7811 7.7587 3.8523 -0.1532 -4.4933 -6.9881 -8.1454 -8.9490 -9.5267 -13.8968 -17.7691 -17.7758 -14.7195 9.4196 10.2634 10.4478 8.8124 5.1507 1.4872 -4.9411 -9.3928 -9.8991 -10.0090 -11.3391 -24.4463
6.3112 6.1145 5.3668 4.5313 3.6954 4.7877 6.2658 8.3789 10.2936 11.7688 11.4084 9.5320 6.9810 5.0657 4.7615 5.5904 6.1808 3.6441 -0.8606 -5.0517 -7.7101 -8.0207 -7.3867 -7.9980 -11.4209 -15.6623 -18.3210 -19.2583 -18.9878 1.9218 -1.0898 -2.1315 -2.6064 -0.3290 1.3612 2.7055 3.4481 2.1270 0.3937 -5.8006 -23.8910
4.7133 7.0828 7.4451 6.1536 5.1026 6.1735 5.5620 4.7204 2.3449 0.0662 -0.0552 -1.4746 -1.3028 -2.0833 -2.3742 -3.0032 -1.8959 -3.1532 -2.7407 -2.7522 -3.1457 -4.1303 -3.0723 -3.0359 -3.2114 -2.1394 -2.2842 -3.9496 -3.5601 -9.5458 -8.5225 -2.1447 -3.0135 -13.5275 -8.7010 7.2088 11.6588 11.7890 11.7226 3.0758 6.7721
14.9989 17.5318 17.0021 15.1799 12.5029 9.0797 3.8559 0.1428 -2.0371 -1.8983 1.1780 2.7230 2.0463 1.0309 1.6621 0.5141 -1.5732 -3.0527 -4.0016 -5.2671 -5.7073 -7.6154 -8.5918 -8.8827 -8.7941 -6.7438 -5.5924 -13.4525 -16.2384 -1.0040 -2.5012 -0.5919 1.0505 3.9201 5.2244 4.5335 2.9522 -3.9239 1.3432 -11.0028 -13.7590
23.3831 23.9860 23.9088 23.9899 24.5442 24.7231 23.4676 20.9361 19.0352 18.1315 16.6484 13.2407 6.9323 -0.8530 -7.8736 -12.5420 -15.8304 -18.1801 -19.7679 -20.6937 -20.6499 -19.8660 -18.7929 -17.4798 -16.8484 -17.7541 -18.9554 -19.1779 -17.6622 2.2274 0.2658 0.2329 0.5563 -0.2993 -0.6411 -0.8349 -0.8217 -0.3946 0.3529 -0.6438 -20.4737
27.1582 28.3012 27.2357 25.1547 21.7324 15.2318 7.9956 2.0196 -1.2674 -2.1412 -2.5552 -3.8180 -5.5360 -7.5787 -8.8477 -9.9856 -10.6186 -10.6812 -11.5427 -13.0580 -14.0180 -14.2114 -12.3911 -5.9856 -0.0551 2.4393 -1.0062 -8.7488 -13.2219 8.5421 8.1274 3.1062 1.0714 -1.1957 -2.6079 -3.1237 -3.4444 -3.3713 -3.1296 -3.9745 -17.2997
0.2274 1.5742 0.9030 -0.0755 -0.9929 -0.0010 0.9686 1.1448 0.4783 -0.3525 -0.1336 -0.1913 -1.6241 -4.5094 -5.8249 -5.3840 -4.2690 -0.9607 3.2627 5.8265 5.0034 2.6931 1.4156 0.6324 1.3181 1.5226 -0.7562 -0.2634 -1.6323 10.1447 8.1369 6.9278 1.8273 -2.8348 -3.1502 -3.8258 -3.2103 -3.0403 -2.8386 -8.1368 -10.7452
2.2030 2.3567 2.2770 1.9391 1.4807 2.4535 3.7369 4.5955 4.8497 4.7689 3.9314 2.9060 0.5571 -2.2750 -3.2233 -2.8254 -1.7099 0.7810 3.0014 3.5591 0.5135 -3.7594 -6.0245 -4.9397 -2.1317 -1.1080 -3.4783 -7.2902 -7.1450 17.4214 15.9833 12.5560 11.8901 6.7955 -3.1206 -12.2737 -12.4585 -12.5086 -11.3448 -12.9400 -23.4673
1.7001 2.1276 3.1509 3.8711 3.4450 3.9578 3.9916 2.2726 1.5860 2.9582 1.5039 -0.3172 -1.6934 0.0480 1.7637 5.8108 12.7325 15.4092 10.2323 1.6370 -5.9209 -8.2841 -8.8154 -8.6341 -8.8994 -8.7332 -8.8580 -9.4260 -8.6166 1.0902 -0.3804 -1.8380 -2.1594 -2.0188 -0.5336 -0.2356 0.9072 1.9988 2.4507 0.7188 -11.1533
3.3470 4.2651 3.1581 1.5899 1.3593 5.4416 9.6912 10.3789 8.2781 5.7621 2.3516 -1.6093 -4.6703 -4.3014 -2.0948 1.2895 4.5826 5.8867 2.7580 -0.5921 -1.6254 -0.3408 -0.8297 -4.7115 -8.7548 -10.1950 -9.4023 -10.1017 -10.9107 5.4257 1.3752 -1.6808 -1.6847 0.0776 4.2441 3.7807 1.7086 -1.1629 -3.5093 -8.5743 -19.3479
16.0698 16.0234 16.6242 18.4265 19.5793 17.7359 12.2454 6.7061 2.9279 1.0254 1.3081 3.1537 6.2322 6.7809 1.2833 -4.6315 -8.4988 -10.9702 -12.9812 -12.8617 -10.8763 -6.7933 -7.5585 -12.2110 -13.1807 -11.6979 -8.6529 -10.8315 -14.3767 3.5106 2.2779 0.8347 -0.4316 0.4812 -0.3548 -0.9580 -0.3001 -0.9639 -1.0077 -3.0884 -21.7124
14.8614 14.3243 13.2597 11.9042 11.3617 12.9241 16.0023 18.6135 19.9112 18.7801 18.0215 16.7944 15.0590 9.5509 2.2373 -3.7737 -7.9433 -11.6438 -15.8775 -19.0534 -20.0063 -19.8849 -17.4072 -14.6677 -14.9214 -15.6185 -17.3399 -17.4032 -18.0650 0.4331 -1.3874 -1.3387 -1.2657 0.1397 0.9913 1.3715 1.5636 0.9626 0.3031 -1.7729 -22.4910
24.4358 25.1322 25.6771 26.9458 25.4271 20.1741 13.1848 7.1606 2.9511 -1.5207 -6.2228 -9.1615 -10.2139 -7.9615 -3.5511 0.8947 -0.0640 -5.6909 -11.8880 -15.0418 -13.4238 -8.6724 -10.1392 -15.6141 -16.4146 -15.3775 -9.3359 -5.8457 -5.8440 5.3670 0.7714 -1.2803 -0.3316 0.0917 1.3247 -0.3166 -0.6629 -0.4726 -0.9886 -3.5022 -15.8979
11.2574 14.5322 17.1770 19.4370 21.2176 22.0240 20.3915 16.7178 12.6022 9.4053 7.3741 6.1361 6.4430 7.2023 6.6378 2.8391 -3.5908 -9.0350 -12.7524 -16.0348 -18.3668 -20.0831 -20.1715 -19.0743 -16.0476 -13.9450 -16.7267 -18.3902 -17.1759 6.7669 3.5601 1.4726 1.2131 0.8001 -1.0515 -1.7968 -2.1212 -2.4567 -2.6039 -3.7828 -21.2313
9.8296 10.9668 11.4657 12.4379 13.8874 14.6363 14.3342 12.4038 8.9235 5.0490 2.1177 -0.5223 -2.7832 -4.1482 -4.6107 -3.0828 -0.2052 2.3942 2.4641 -1.9911 -6.8813 -9.3285 -9.5593 -6.0838 -4.8651 -9.6703 -15.7893 -21.0597 -20.3293 7.8335 9.3572 8.2255 6.2992 3.6571 -1.3039 -4.8523 -6.7448 -6.9973 -6.7242 -8.7501 -23.8675
10.0961 10.4449 9.9127 8.5711 6.2180 4.5618 2.4521 1.1110 -0.1627 -0.3653 0.8918 1.6279 1.8907 0.7438 -0.7728 -1.2107 -1.2055 -1.5566 -3.2793 -4.1807 -4.1312 -5.1981 -4.9412 -5.1286 -4.9138 -5.1042 -5.2876 -6.4396 -4.6442 -4.2766 -4.5588 -1.6946 -0.6815 1.6923 2.6384 3.7940 3.9827 3.1253 3.8234 -7.8447 -3.7539
0.0757 -0.0653 -0.5789 0.6712 3.3974 5.2272 3.8057 1.3204 -0.9531 -1.2566 -1.6955 -1.1717 -0.9735 0.2237 1.1803 4.3319 6.8301 9.0463 9.4433 7.5902 3.7433 0.0327 -1.4644 -4.7154 -6.0059 -7.2747 -9.9821 -10.6151 -10.1672 1.8545 3.4334 6.1661 5.8556 3.1158 1.3495 -0.3375 -1.2855 -2.2198 -4.5273 -13.4049 -11.7714
18.8320 19.0344 19.1952 19.5440 18.8449 14.8697 8.6867 2.7879 -1.6869 -4.7635 -7.1363 -8.8780 -9.6594 -9.0777 -6.9523 -1.8282 3.5267 4.4511 -1.5807 -5.6560 -7.8512 -4.0511 0.2367 -5.4146 -11.3280 -13.9141 -12.8660 -9.0793 -8.2860 7.2253 2.3080 0.9914 -1.0476 -1.1123 -1.0979 0.2181 0.5772 -1.1907 -1.8790 -4.9926 -19.5991
6.9436 25.3648 31.2509 23.4659 7.6212 8.5476 13.4044 12.1024 6.3310 6.4395 11.2808 6.4453 3.3798 -0.4108 -2.6193 -4.1535 -5.4353 -7.8115 -9.9117 -10.8599 -12.3626 -13.5397 -13.0447 -13.1340 -12.5666 -12.9922 -14.2050 -14.7731 -14.7573 0.6782 0.2930 1.1419 0.5868 -0.3036 -0.7149 -0.2401 0.2321 -0.6483 0.2892 -1.3142 -13.0829
8.0630 8.5930 8.9037 9.6389 9.9192 8.6430 5.1562 1.1687 -2.6850 -5.3768 -7.2472 -8.6966 -9.7539 -8.2770 -7.3009 -4.7332 -2.5381 -2.7034 -3.2364 -4.1264 -4.6546 -3.9840 -4.4745 -3.1865 -2.7693 0.2429 6.0573 8.4087 10.9490 1.5828 2.2857 2.4626 4.2564 3.1914 1.9048 -0.4814 -1.9794 -1.6878 -0.6562 -10.8788 6.9006
15.3121 14.0216 12.3150 10.8984 9.8481 9.4860 9.9555 11.2336 12.1475 11.5421 9.5080 6.1797 2.1804 -1.5586 -4.1037 -3.8925 -2.2145 -0.5740 -2.0726 -5.8999 -9.5870 -12.3986 -13.2888 -11.0931 -8.6950 -10.6144 -15.3843 -17.4751 -15.7759 11.6735 8.2281 4.7038 3.1666 1.7515 -3.5926 -5.6951 -5.7508 -5.1915 -3.4390 -5.8544 -26.0008
10.5147 10.1953 9.3949 9.1051 8.3007 7.6855 5.3821 2.1136 -0.5365 -2.3955 -3.8024 -5.3725 -5.6568 -4.8775 -2.4291 0.2566 4.4555 7.9385 8.4324 6.4827 2.9059 0.5262 -2.9536 -6.3130 -9.2242 -10.0210 -12.3911 -13.7930 -13.9236 -1.0018 -1.0252 -1.9659 -2.6464 -2.9740 -1.2967 0.3806 1.6370 3.3651 4.3609 1.1664 -14.6511
17.2460 16.9637 17.1204 18.8740 20.7478 19.3865 13.9822 8.1265 3.2880 0.7780 -0.2592 -1.0141 0.0742 3.2639 4.6036 2.5181 -3.1653 -6.8864 -8.0795 -7.3818 -6.3471 -6.8628 -11.5495 -14.8984 -15.4665 -15.7120 -14.8453 -15.6943 -18.8106 1.4980 1.4377 1.0081 0.1939 -0.3867 0.3736 -0.2884 -0.4032 -0.4237 -0.7102 -2.2990 -21.4765
29.1324 27.4472 23.9346 19.8815 15.3348 10.3288 4.4524 -0.1346 -3.0576 -4.7063 -5.5439 -5.9222 -5.9328 -6.6024 -6.7197 -6.0365 -5.2696 -5.1176 -6.4818 -7.5705 -8.4454 -8.5007 -8.4654 -7.9097 -7.0136 -8.1875 -7.3437 -4.3020 -1.2484 4.1307 4.9307 5.3321 3.9185 2.3886 0.5401 -1.5333 -2.6429 -3.4176 -4.0077 -9.6393 -7.8398
26.1063 27.1257 26.4958 24.5623 21.0909 16.0392 10.3606 5.2224 1.2830 -1.7057 -5.2899 -8.7872 -11.5471 -13.8485 -15.6146 -16.5388 -16.6318 -15.7526 -14.3061 -11.8594 -6.9641 0.2736 3.2894 2.3319 2.1876 -0.1464 -6.9487 -10.5477 -9.8802 8.0155 5.1637 1.2918 -0.1585 -1.6768 -2.1876 -2.1575 -2.3734 -1.4901 -0.3422 -4.0850 -16.2781
-2.8938 0.5854 4.9032 19.8896 33.0777 27.8431 5.8284 -0.8777 -0.4212 7.5419 14.4523 0.5889 -7.2843 -5.7721 2.2765 -3.8670 -7.0376 -2.4089 -1.9230 -6.9736 -5.0540 -6.8128 -9.1282 -7.6378 -9.9538 -8.0762 -10.1133 -10.3156 -10.4365 1.7900 1.2930 1.2513 1.1649 -0.0523 -0.1935 -1.3719 -0.6466 -0.7256 -0.6226 -1.8868 -11.7248
5.0511 7.2825 7.4756 7.6284 6.3099 6.5711 6.0062 5.2464 4.1337 3.5789 2.7344 1.9171 -0.0947 -4.7055 -6.3175 -6.7260 -8.3754 -7.5699 -4.4289 -0.5061 0.5491 -0.6121 -1.6630 -2.5886 -1.0683 -1.0286 -4.3484 -7.2928 -7.1586 2.8359 1.6298 0.9777 0.2594 0.2894 -0.2649 -0.2767 0.5984 -0.0902 -0.5417 -5.4171 -8.5849
26.8109 26.2612 24.6562 22.4444 19.7975 16.2207 11.9006 7.5618 4.2432 1.1620 -1.9686 -4.6999 -7.0035 -8.7711 -9.4863 -9.0559 -7.8923 -6.8802 -7.0120 -8.4837 -11.2123 -13.1769 -13.1832 -11.7848 -8.9173 -7.9697 -7.9495 -8.0762 -7.5350 6.9413 5.9114 4.4559 1.9045 -0.2220 -1.5629 -2.1181 -2.9624 -3.1458 -3.1496 -6.0522 -15.8707
15.4221 13.9665 11.5956 9.4217 7.3471 4.9825 2.5822 1.1306 -0.4479 -0.0543 0.4224 2.6264 2.4323 2.9777 3.9679 4.5466 4.0757 2.5862 0.7066 -2.3566 -5.4206 -6.8028 -9.1716 -8.9333 -8.9478 -9.7023 -11.2057 -13.2026 -14.5445 4.5118 3.2465 1.4635 1.0112 0.8257 -0.5633 -0.8311 -1.4185 -1.8127 -1.1914 -5.2417 -16.4127
28.0070 28.9811 29.1691 29.0099 27.2163 23.1256 18.5752 16.0256 16.0772 16.0792 13.4415 7.1002 -1.0509 -7.6202 -12.1978 -14.6100 -16.0350 -16.8734 -17.1512 -17.3461 -17.2821 -16.7355 -16.3289 -16.1605 -16.3294 -16.8373 -17.0316 -17.0117 -16.2062 0.8143 -0.0316 0.0425 -0.0469 -0.5600 -0.2604 -0.2934 -0.0397 0.1815 0.6487 -0.4551 -17.2928
21.3473 20.2800 18.5835 16.4034 13.0771 9.2891 7.0954 6.8063 9.6682 13.1023 14.6281 13.8935 12.0583 11.5472 11.1879 7.7716 2.5072 -3.2634 -8.4595 -14.0714 -18.2085 -21.2308 -24.2103 -24.5753 -21.1428 -16.8159 -16.8684 -20.7499 -19.6500 7.8883 2.8059 -0.2509 0.2746 0.5770 -0.7075 -1.0613 -1.6761 -2.1520 -2.4962 -3.2017 -23.7494
16.7277 16.5100 14.9737 13.3864 11.3764 9.4606 7.4445 4.9221 3.5715 2.4337 1.9778 1.0209 0.1128 -1.6904 -3.3639 -3.2615 -1.5944 -0.2581 -0.9030 -2.3174 -4.1698 -4.9533 -4.5665 -6.1912 -10.0495 -13.2340 -15.5995 -16.5459 -15.2199 5.3973 5.3767 6.3500 5.5996 2.0913 -2.3482 -4.2670 -3.6648 -4.0077 -3.9263 -6.6010 -20.6386
3.6641 3.0720 2.1390 1.3959 0.5821 0.1856 -0.7457 -1.8010 -2.5799 -2.9996 -3.1922 -3.7936 -4.3073 -4.4608 -3.7250 -2.3583 -1.9204 -1.2606 -2.2907 -2.8190 -3.6214 -3.1415 -2.0045 0.0938 2.4493 4.0398 6.5627 10.1038 12.7333 -5.2898 -3.8412 -0.6529 0.7502 1.5439 2.5070 2.6854 3.8159 2.2321 3.0585 -6.8092 14.5213
7.5981 6.7937 5.2222 4.6535 5.7305 7.9847 10.0100 10.9988 9.0694 6.0491 3.4695 2.2020 3.1237 4.5225 7.5338 7.0660 2.8900 -1.4622 -5.4401 -6.1963 -7.3166 -5.9799 -7.7791 -10.5609 -13.5413 -13.8804 -12.9467 -9.4679 -10.3461 11.6866 9.3826 4.4701 -2.9772 -5.4470 -4.9307 -2.7270 -0.1581 -1.4072 -1.6802 -6.2119 -24.8632
5.8372 5.4933 4.4445 3.1566 1.2701 1.1435 -1.1096 -2.4243 -3.5109 -2.2282 0.6573 2.1785 1.1141 0.6038 -0.9270 -0.1010 0.3438 0.9773 1.8036 -0.1658 -2.1507 -2.6201 -1.5194 -0.3072 1.7488 -3.1481 -4.7553 -3.5314 -2.2733 1.5456 3.9136 6.0524 4.7910 5.6839 4.8261 0.4655 -3.9096 -15.7692 1.8630 -9.4624 -9.4890
4.6026 4.2957 4.0221 3.8863 4.8775 7.7799 11.9268 15.6438 16.1838 13.0359 8.2259 3.9397 1.1633 -0.5844 -0.4453 1.6720 3.9861 4.4822 0.7429 -4.6835 -8.2254 -8.6845 -8.8455 -9.2050 -9.3625 -12.1150 -14.9115 -16.6057 -16.7984 9.4268 8.2301 5.4360 2.2444 -2.8020 -3.6865 -3.4374 -3.6210 -3.4624 -3.4351 -4.8928 -25.4465
31.7873 30.4727 26.1023 20.2575 14.3546 8.3050 2.5479 -2.7242 -6.2652 -7.8786 -9.5076 -10.7253 -11.9221 -12.5796 -13.0020 -12.4110 -11.3787 -10.5858 -9.2885 -7.2279 -5.6862 -4.5481 -3.8155 -3.1810 -0.2688 1.7479 2.4086 2.6005 2.4118 6.0159 2.6937 1.8092 1.2143 0.6228 -0.1962 -1.5166 -0.7925 -1.1563 -2.0509 -6.6433 -6.4991
18.8196 18.8060 19.0012 19.7425 18.9386 15.1920 9.3626 3.8042 -0.7101 -2.8913 -4.5793 -4.8562 -4.2855 -1.5235 2.8079 3.9527 -0.6820 -6.1064 -9.0907 -10.7715 -10.2261 -6.8530 -5.4028 -9.0538 -11.2966 -11.9744 -10.3023 -9.0454 -10.7763 4.8079 2.0464 0.5831 -0.5085 -0.7115 -0.6171 -0.2759 -0.3213 -0.2270 -0.8577 -3.9185 -18.4439
29.8848 29.1207 27.5698 25.5473 23.0863 20.0333 16.4515 12.7057 8.6525 4.4123 0.1328 -3.7662 -7.0685 -9.2222 -10.1967 -10.3862 -9.4399 -7.5052 -6.1986 -7.0520 -9.6530 -11.7447 -12.8170 -13.2994 -13.4411 -14.5193 -16.0619 -17.4467 -17.7785 0.6444 0.9150 1.0957 0.6198 -0.2661 -0.3037 -0.4308 -0.4697 -0.3863 -0.3182 -1.1000 -17.5027
18.4803 19.3278 19.3456 18.5446 16.5534 13.5838 10.0057 6.5241 3.2399 0.5440 -2.4922 -5.5969 -8.4750 -10.0774 -10.9952 -10.9028 -10.6525 -9.9639 -8.7708 -5.9295 -0.9987 2.2097 -2.2176 -6.2966 -4.0572 -2.0702 -5.9921 -9.8384 -13.0318 9.7202 8.7919 5.8500 1.2627 -3.1473 -4.0847 -3.9814 -3.8063 -3.2668 -2.9485 -4.3897 -21.4605
10.8936 10.0376 8.9233 8.3835 9.1909 11.1956 12.7625 12.8310 11.2547 8.6892 5.7674 5.0532 5.1919 6.4652 5.5698 1.2762 -3.6991 -7.9057 -10.9535 -12.3006 -13.0325 -12.0668 -10.2756 -8.9081 -9.5586 -12.4845 -12.5292 -10.6874 -9.0841 6.7548 4.3777 7.2866 11.0895 5.9012 -3.2191 -7.2773 -7.4247 -5.9063 -4.6316 -6.9510 -23.6620
14.1801 13.6094 10.2460 6.2621 3.2304 0.4920 -3.3704 -5.1542 -6.4379 -7.1331 -6.8071 -6.7010 -7.0994 -6.7923 -5.4284 -4.1081 -2.2588 -0.3405 0.3901 -0.1306 0.2111 1.2777 2.6120 2.4542 2.4177 2.7283 1.9381 0.6674 -0.9548 1.3373 0.4195 0.2246 -0.2612 -0.5780 -0.3401 0.2289 0.3082 1.5502 2.1823 -5.0717 -1.9154
7.4197 7.6107 5.1248 2.8926 2.5158 5.2747 7.9445 9.5554 9.8134 10.8602 11.2127 10.8181 10.8451 8.6337 3.4818 -1.7126 -6.6143 -9.2501 -11.7550 -13.8987 -14.1553 -13.7199 -12.4906 -7.9780 -7.1759 -5.4179 -4.3134 -2.3617 -3.1596 3.7397 0.2684 -0.7543 2.0473 3.1074 3.1748 0.6925 0.1021 -1.9327 -0.9979 -9.4471 -15.9473
5.0374 7.8743 10.5060 13.2551 15.8405 18.1863 17.6870 15.2297 11.9245 8.8446 6.8821 5.5715 2.9277 -1.1968 -4.6014 -6.2302 -7.5567 -8.8097 -8.9946 -8.6106 -9.0917 -8.5223 -8.8031 -10.3066 -10.5465 -10.5120 -10.3576 -11.9252 -13.7020 3.7640 1.8720 2.0488 1.2415 0.9134 -0.5949 -1.6362 -1.3248 -1.6433 -1.0179 -3.6227 -18.8186
19.2311 20.9055 21.1816 19.8035 16.7640 10.9316 4.3014 -1.2152 -6.3082 -9.8229 -12.4158 -14.6010 -15.1960 -13.5529 -10.4860 -6.0010 -0.0077 5.5394 4.4883 0.8609 -0.7114 -0.5882 -2.0714 -4.1988 -3.5305 -2.7385 -3.9119 -6.6059 -10.0440 6.8589 1.6709 -0.4277 -0.8756 -0.7567 -0.4132 -0.3654 -0.2776 -1.2933 -1.0276 -3.0928 -19.7110
24.3921 23.8657 21.7178 19.5721 17.2483 13.0391 8.2780 4.5096 2.1017 1.4583 0.4028 -1.6986 -2.5413 -2.4202 -3.3681 -6.3081 -8.4179 -8.6508 -8.3994 -5.6233 -2.8768 -2.4582 -4.6987 -11.0260 -15.7297 -17.5495 -16.4980 -11.2445 -7.0765 10.9683 8.5482 1.6240 -0.8116 -2.3291 -2.0794 -2.7065 -3.3384 -2.8326 -2.6102 -4.4326 -18.4205
21.6293 21.2629 20.0435 18.0462 14.0665 8.5047 3.1435 -1.3209 -4.4014 -5.7444 -6.2440 -6.5178 -6.8764 -6.1381 -3.8131 -1.3478 -0.7585 -3.8085 -6.8211 -8.0966 -7.5890 -5.2013 -2.5966 -3.9678 -5.8322 -4.8627 -3.8164 -4.4574 -6.4845 7.4192 3.5944 0.8769 -1.2773 -0.8711 -1.2539 -1.2063 -1.1651 -0.7991 -1.1807 -4.1369 -15.4669
25.3218 25.2194 24.6132 23.8034 22.1467 19.2686 16.0070 12.6244 9.8907 7.3439 4.6106 2.0173 -0.2300 -3.1887 -6.2778 -8.9287 -10.7500 -12.4083 -13.6221 -14.5295 -14.0216 -11.6668 -8.2900 -7.1780 -8.6454 -13.0929 -18.1357 -20.6369 -21.2645 0.6490 1.5279 1.4976 1.2259 -0.2509 -0.5437 -1.0645 -0.9697 -0.4026 0.0229 -1.6919 -19.5268
-1.2546 -1.5446 -0.9486 0.9829 1.7405 1.8511 2.6120 4.5582 4.2836 3.2383 1.9250 1.5674 0.4781 -1.1296 -1.5011 -0.3895 1.2177 2.8828 3.7419 3.9893 0.6886 -1.3040 -2.8370 -5.6790 -3.6007 -1.0630 -1.5598 -5.1076 -7.8381 10.2277 6.2474 2.9832 -0.8736 -8.4082 -6.4397 -4.2854 -1.8654 0.4359 0.9540 1.0241 -18.8314
-3.6520 -0.9802 0.6330 3.0142 3.7152 4.2246 3.0650 2.2808 0.7668 -0.9696 -2.1283 -3.4617 -5.6960 -9.1999 -10.9932 -10.5950 -8.8872 -8.3491 -3.9024 3.8951 4.5732 4.1833 4.4267 5.3015 7.1630 6.8136 3.6000 4.1437 7.0149 8.8113 4.5339 4.3320 3.8462 2.4702 0.0061 -1.7359 -2.2461 -3.3967 -3.6881 -12.9329 -0.9921
24.1276 23.4144 21.9515 19.2491 15.3233 10.6683 5.7075 1.4491 -1.9622 -3.4974 -4.3346 -5.2640 -5.4783 -4.5424 -2.5563 1.0471 2.9749 1.0585 -4.2112 -7.7040 -8.5161 -8.5574 -7.1906 -8.4892 -11.7312 -13.8838 -13.1386 -9.4367 -6.4770 -5.2323 -4.7057 -2.1760 0.8632 2.4803 4.6972 3.2524 3.1237 0.8651 3.0078 -6.1758 -9.0277
9.2070 8.6269 7.9993 9.2567 10.6048 10.9179 8.2726 5.4801 2.9587 1.4349 1.6895 0.8687 -0.1341 -1.4667 -2.2954 -2.9979 -3.1146 -3.5248 -3.6823 -3.9108 -4.7040 -5.0502 -5.2411 -6.0582 -6.2892 -7.1229 -6.8496 -7.8359 -7.0393 1.0164 0.3126 0.2560 0.1094 0.1566 -0.0117 -0.2184 0.2660 0.0029 0.5627 -2.4525 -9.3388
19.0542 19.7864 20.4414 20.8883 19.4828 14.6899 8.0652 2.5866 -1.9610 -4.2899 -5.3264 -5.8141 -5.3969 -2.8814 0.6767 3.6783 2.8172 -1.1754 -3.8287 -4.3496 -4.1271 -2.7566 -3.4552 -6.5139 -9.4384 -14.1688 -17.1871 -19.0448 -20.4515 1.8392 0.8553 0.2154 -0.0271 -0.4104 -0.2449 -0.1708 0.0249 -0.0369 -0.2525 -1.7922 -22.7099
22.2875 23.2966 21.0875 19.4172 19.4631 20.2489 19.0860 14.7884 9.6247 4.7618 -1.1341 -7.8711 -13.4709 -16.4039 -17.9473 -16.0183 -8.7161 -0.3674 4.2198 1.8970 -0.6141 -0.3383 1.4297 -1.9778 -12.2530 -18.9367 -22.1657 -22.0094 -21.3840 0.0857 -0.3388 -0.3844 -0.6424 -0.7435 -0.5609 -0.1067 0.1511 0.7988 1.0267 0.7142 -22.3449
1.5997 0.7952 0.5771 -0.1086 -0.9165 -0.4936 -0.5385 -1.1104 -2.3027 -2.7303 -1.7093 -1.2741 -1.2559 0.1339 2.1512 4.2566 4.4113 3.2940 1.9275 1.1660 0.9857 0.1003 -0.1015 -0.9056 -0.5391 -0.5752 -1.0655 -2.5147 -3.2570 1.4399 1.6942 1.2365 0.6457 -0.0065 0.5875 0.3795 -0.0796 0.4453 1.0116 -7.3540 -5.9661
17.6306 19.8446 20.6406 20.9119 20.8696 19.9715 17.0436 12.6644 7.8356 3.7315 0.0618 -2.5156 -4.0666 -3.6383 -2.3405 -0.6112 -0.7237 -3.4603 -8.5171 -12.2394 -14.9608 -15.8437 -14.9681 -12.6150 -11.0775 -11.0437 -12.1047 -15.2272 -15.2522 3.8383 2.7442 1.4004 0.6138 -0.4141 -0.6861 -1.0225 -0.8449 -0.9118 -0.8189 -3.8984 -19.7618
4.0159 4.7341 5.0428 5.4476 5.5823 5.0017 4.7364 5.0152 5.4244 7.2281 10.0426 12.1892 12.5133 10.8886 9.4587 9.9271 9.6594 6.2877 1.1672 -4.8743 -9.8309 -10.9887 -10.4195 -8.8449 -10.0345 -14.2880 -19.4282 -23.5124 -22.1410 9.6326 8.1547 3.0154 -1.3662 -1.9025 -0.9827 -0.5431 -2.6536 -3.4587 -4.0540 -5.8420 -26.6165
1.3951 2.3341 2.7846 3.6043 3.9813 5.2605 5.5279 4.8460 3.2475 2.3327 1.8366 1.4325 0.6121 -0.4539 -1.6285 -2.8274 -4.2077 -4.6993 -5.0706 -4.2874 -4.4071 -3.4175 -3.0547 -3.3504 -1.7471 -0.7879 -0.0749 -0.1170 0.9361 4.5093 3.2132 3.2053 2.7775 1.5517 -0.0446 -1.3922 -2.0535 -0.9648 -1.7751 -9.0269 -4.5860
28.2916 29.7152 29.0955 27.1159 23.3768 18.1997 11.9697 5.6704 0.9205 -2.5625 -6.9213 -11.4860 -15.0627 -16.3635 -16.7915 -16.8262 -16.2290 -14.5129 -11.0684 -5.6647 2.9493 7.1450 4.8374 2.6581 -2.8551 -9.6290 -15.3060 -15.9776 -14.6886 0.7674 -0.5757 -1.0994 -0.2628 -0.3330 0.2608 0.1505 0.3201 0.6736 0.6525 -0.5539 -15.2205
21.3574 19.0821 16.0689 13.5763 11.7756 9.8197 7.1626 5.6591 4.1988 2.6866 1.2839 0.2970 -0.7392 -2.1025 -2.9588 -3.9692 -4.2266 -4.5449 -5.2046 -5.5074 -6.5396 -7.8927 -8.7128 -9.1400 -9.3002 -10.0030 -10.3190 -10.7968 -11.0108 1.2272 0.8607 0.9681 0.0462 -0.4903 -0.1304 -0.4412 -0.1460 0.3281 0.9330 -3.1554 -13.2931
-11.9427 -9.0347 -8.1854 0.5355 16.2351 30.0772 15.6863 -0.5026 -5.1802 -3.4273 8.1185 14.3030 3.9959 -5.7275 -2.8537 5.8633 2.1444 -4.9037 -1.6011 1.0216 -1.4938 -3.6235 -5.0675 -4.7195 -2.6927 -4.8393 -5.4537 -9.4932 -7.2387 4.1282 1.8786 1.9953 0.5488 -0.3819 -1.3723 -1.0026 0.0804 -1.6472 -0.9937 -3.2335 -11.7554
18.4490 17.8582 16.6014 15.4593 14.0319 12.3568 10.0803 7.8236 5.7070 4.5343 3.6070 3.4959 2.7669 0.5453 -0.9860 -2.0713 -2.6104 -3.5225 -5.5660 -7.1856 -8.5038 -9.9136 -10.8379 -12.1072 -13.2841 -13.7883 -13.6681 -14.0513 -15.2210 1.9454 1.7954 1.7868 0.9124 0.3779 -0.2762 -0.6521 -0.9212 -0.7314 -0.0795 -4.1574 -18.4931
11.8976 17.9510 18.5286 15.1944 9.4977 6.4581 3.3668 -0.2268 -3.9011 -5.4058 -5.9886 -7.2383 -7.8525 -10.3087 -12.8063 -12.1794 -11.0999 -8.8156 -8.1165 -6.1532 -4.2252 -4.0395 -1.3151 0.5738 3.9550 8.7131 6.7113 1.7138 5.1116 0.9965 1.4759 3.0237 2.9344 5.1266 4.6639 2.7831 2.9561 0.3334 -5.8448 -18.4487 1.1692
0.9487 1.4130 0.9479 -0.0826 0.2145 3.2170 4.0687 3.2987 3.5035 4.5743 4.0544 3.4101 4.0914 4.5664 4.8132 6.4401 9.3451 8.9607 6.0790 2.7728 0.8498 -0.8017 -2.4432 -4.7032 -9.3198 -12.6235 -15.1492 -15.7996 -16.6466 -0.8633 -0.9141 -0.0119 -0.3370 -0.1759 0.0244 0.0238 0.6518 1.0910 1.8672 -1.3560 -15.2177
34.1302 32.0599 27.8887 23.7603 19.3256 13.9648 7.8176 2.2845 -0.8316 -2.8468 -4.8687 -6.8758 -8.2507 -10.0280 -11.0038 -9.9438 -7.5333 -4.6451 -2.1804 -2.2669 -3.7303 -5.3382 -6.9605 -9.3264 -11.3621 -13.0806 -13.5868 -13.1789 -13.3930 0.4195 0.2121 0.0329 0.2371 0.0989 0.1780 0.0464 0.0275 0.3526 0.0885 -1.6936 -14.6518
15.6422 15.2859 14.7754 15.3593 17.2032 19.1105 18.2304 15.0687 12.0800 11.4521 13.3209 14.1182 10.1435 2.4651 -4.8883 -9.3800 -12.5864 -13.8568 -15.1276 -15.6378 -14.1885 -9.7248 -6.9518 -9.9796 -12.4385 -13.0782 -14.0208 -19.5089 -22.8872 0.4990 0.8082 1.3862 0.4212 0.1198 -0.3486 -1.0547 -0.4030 0.3854 -0.1208 -1.6927 -24.4489
31.6974 29.4780 26.6290 23.2620 19.3188 14.1307 8.2731 2.8100 -1.0940 -3.2472 -4.2290 -4.8290 -5.3248 -6.1539 -6.7558 -5.9669 -4.6964 -4.4401 -6.1920 -8.0753 -8.1121 -6.2825 -6.0789 -5.7147 -3.3695 -8.9378 -16.7789 -19.5464 -19.7736 3.0519 6.0787 1.0322 -0.6589 -1.6175 -2.1104 -1.9403 -1.7062 -0.9516 0.4810 -1.6590 -17.7143
6.6516 7.1945 6.2582 4.9369 3.5619 3.6748 2.0770 0.4189 -2.1975 -3.8860 -3.9613 -3.8644 -5.3511 -7.2609 -7.6175 -7.1661 -5.7976 -4.5218 -1.9308 1.4480 5.0915 4.7364 4.6719 3.6113 3.3328 2.0626 -1.5330 -2.8815 -1.7589 6.4246 5.9081 6.0283 5.5237 2.9559 -0.7124 -3.2659 -4.6501 -4.6857 -3.8757 -9.6509 -8.7268
12.9326 13.6158 13.6027 13.5734 13.4039 13.8175 13.8659 12.7258 9.7632 6.3103 2.7321 -0.5733 -3.8746 -7.0860 -9.6450 -10.7832 -10.3935 -8.3777 -4.8027 -1.1394 -0.1906 -2.9954 -5.6539 -5.3461 -4.3930 -8.2738 -13.2039 -15.2593 -14.3519 12.0896 7.9934 4.3314 2.9333 -0.2922 -3.9740 -5.2453 -5.1292 -4.2466 -2.5427 -5.9177 -24.1706
3.3111 5.7192 7.6731 8.6538 8.7816 9.2367 10.2956 10.7802 8.7371 5.9609 4.1644 2.5137 0.7897 -0.7157 -1.6711 -1.2978 -0.9879 -0.5737 -1.7029 -3.8746 -6.2120 -6.9054 -7.5755 -8.5853 -8.6630 -8.4875 -9.3126 -9.4585 -10.5934 1.9845 0.8889 0.2842 -0.9179 -1.4593 -0.6826 -0.6777 -0.0392 0.8979 1.4414 -1.7202 -13.5455
14.2205 14.4641 13.7854 13.0598 13.2991 14.8419 16.1502 16.5712 15.2079 11.8669 7.9213 4.5068 2.1444 1.2542 2.5468 4.6558 4.3109 0.6255 -5.1870 -9.7699 -11.4109 -10.1544 -8.4757 -11.5168 -17.9764 -22.4698 -24.8959 -25.1837 -24.3922 1.4299 0.4130 0.0191 -0.2559 0.4822 -0.2917 -0.0644 0.3763 0.0596 -0.3088 -1.8594 -27.0927
-2.8758 15.2556 21.0124 15.2890 2.1565 2.6722 2.9230 4.3949 0.4460 -0.9254 1.7753 1.3640 0.4328 -3.9146 -4.3331 -4.1112 -3.8881 -5.2841 -2.7539 -1.9759 -0.4884 -4.8231 -3.5586 -3.5100 -2.3689 -4.3495 -5.1658 -7.1944 -6.2007 -2.4750 -1.0212 2.7562 1.1019 2.0472 2.2292 2.3273 2.8928 -1.1663 -0.0381 -8.6541 -3.0398
18.8285 20.4979 21.7173 23.1703 24.2063 23.5814 21.0896 17.9453 15.6430 14.4782 13.1430 9.6223 4.1452 -1.1378 -5.0589 -7.8909 -10.5229 -13.0157 -15.3961 -16.7612 -17.5151 -17.5485 -17.4267 -17.8018 -18.7396 -19.9281 -20.0342 -16.8630 -12.4276 8.6336 4.4955 1.3996 -0.2307 -1.5565 -2.0497 -2.3230 -2.1696 -2.1650 -1.6041 -2.4300 -20.8387
16.1197 16.1677 13.0422 10.1574 7.4820 4.6731 0.9828 -1.4519 -2.9998 -3.7625 -4.0148 -4.3809 -5.3027 -6.4756 -7.1149 -7.3309 -7.7257 -6.9484 -6.1237 -4.9958 -3.5063 -1.5803 0.7658 1.7860 3.3939 3.3871 0.1351 -1.5829 -2.7956 3.7721 2.8811 2.6980 2.1046 1.6496 1.6430 0.3146 -1.1205 -1.2974 -2.3187 -10.3263 -6.3444
33.2222 30.5262 25.0634 19.0582 13.7573 9.6221 5.3575 1.7730 -0.2567 -0.9304 -1.7632 -2.8645 -3.7480 -4.1938 -4.1659 -4.0416 -4.7502 -6.0605 -7.9728 -8.5077 -8.1116 -7.8726 -8.1931 -9.0767 -10.5826 -11.3078 -11.2136 -11.3407 -11.4260 0.8122 0.4880 0.3714 -0.1432 -0.1971 -0.2624 -0.2558 -0.0613 0.0880 0.0913 -0.9310 -13.3990
23.3644 24.0993 25.3117 28.0710 27.1967 22.1136 17.5071 15.1758 14.3350 11.1400 4.3238 -3.0833 -8.0197 -10.4359 -12.1778 -13.4366 -14.3352 -15.1818 -14.9458 -14.4610 -13.8720 -11.3742 -10.2486 -10.0143 -11.6705 -10.3545 -10.9010 -13.4149 -14.7113 -0.0476 -0.0526 0.7467 1.6512 0.2779 1.1979 -0.1397 -0.0153 -0.2711 -0.9085 -2.4389 -16.2622
14.4881 12.3355 8.8723 6.0773 3.3394 2.1115 0.8125 0.2147 0.0560 -0.0137 -0.2214 -0.6427 -0.7267 -1.5641 -2.3561 -2.2954 -2.4665 -2.8622 -3.0085 -3.0425 -3.2164 -3.5410 -3.2388 -3.2830 -3.0079 -3.0781 -3.2229 -3.1753 -3.3443 0.6505 0.0498 -0.1331 -1.1260 -0.6639 -0.2628 -0.2090 0.4291 0.7281 1.5146 -0.9773 -5.3512
2.0621 1.4120 0.1443 -0.6564 0.5194 4.1270 7.3667 9.7238 11.5833 11.3655 7.7646 4.2923 2.5041 4.7009 7.5418 8.5568 4.4916 -1.2294 -4.3559 -5.7809 -5.5627 -3.7357 -4.6814 -7.6996 -10.0830 -11.5284 -10.0528 -10.0753 -12.7146 1.7722 -0.0816 -0.3269 0.6524 2.3093 3.6584 1.5222 0.4498 -1.3345 -1.6645 -6.9568 -19.6830
25.4648 24.2073 21.4183 18.0385 14.5373 11.3133 7.9671 5.3323 3.4067 2.4589 2.3509 1.9998 0.7508 -0.6518 -2.8305 -5.4658 -7.9173 -10.2576 -11.4401 -11.9089 -12.2924 -10.4402 -8.9248 -9.3520 -7.9692 -5.3374 -6.5850 -12.1411 -15.7319 4.8043 4.3614 2.1470 0.1372 -1.2225 -1.5199 -1.6170 -1.6460 -1.4994 -1.0956 -2.8494 -19.5630
10.4477 9.9103 9.3167 9.9753 13.0396 16.4188 16.2006 11.2422 5.4920 2.0198 -0.5193 -2.2228 -3.7621 -2.3955 0.6073 4.9323 5.7164 1.9080 -3.8530 -5.3428 -5.1549 -4.4637 -8.4757 -12.2439 -13.8905 -14.2780 -11.6814 -12.1684 -16.7752 0.6951 -0.4140 -0.2150 -0.4177 -0.1652 2.0344 0.4827 0.3849 0.6488 0.2765 -3.3105 -20.9730
11.6894 11.5653 11.7767 13.6634 16.8841 16.8356 11.6070 5.3075 0.2573 -3.0445 -5.5117 -6.5939 -7.5658 -6.4151 -2.9369 2.5810 5.6008 0.1628 -5.9773 -6.9647 -6.5125 -3.3783 -4.0081 -8.2854 -9.9143 -9.2857 -6.2357 -5.9007 -9.4002 10.4552 5.0807 0.6307 -1.3477 -0.5399 -0.5873 -1.8383 -1.7997 -2.0570 -2.8514 -5.1454 -22.0833
21.2161 21.5655 20.7743 20.2657 20.4741 20.8267 19.9547 17.4467 13.8013 9.3303 4.0053 -0.5555 -4.3050 -6.2844 -5.9649 -3.2920 -0.3039 -0.5084 -4.2075 -9.2735 -12.3913 -12.0554 -11.2851 -13.2289 -17.6674 -21.0646 -22.6765 -22.3615 -22.2348 0.6227 0.2943 0.3156 -0.0153 -0.3658 -0.4357 -0.0101 0.1177 0.2549 0.3115 -1.0897 -21.8725
-5.8017 -5.8902 -5.5846 -4.7620 -4.4881 -3.9174 -4.2830 -5.1666 -6.3677 -6.8882 -6.9995 -6.8752 -7.3225 -8.7191 -9.5016 -8.7540 -7.1882 -3.8658 -0.5597 2.3798 1.4716 2.7987 5.8548 11.0383 14.5525 16.8697 19.0261 18.9539 19.9898 7.1234 3.7053 2.7491 2.3946 1.8894 -0.2885 -0.8988 -0.3606 -0.2356 -2.8434 -13.2350 10.7649
29.8544 29.8362 28.5318 26.5320 23.6452 19.3290 14.5539 10.2840 6.4573 3.1100 0.1941 -2.1012 -5.6884 -9.9636 -12.8520 -13.5951 -13.0431 -13.2967 -13.3194 -12.2195 -9.3679 -5.0767 -1.3008 -4.8112 -12.0561 -15.7608 -16.8756 -16.0321 -14.9678 2.1806 0.2835 -0.2562 -0.3860 -0.6570 -0.1415 -0.2170 -0.2013 0.4029 0.2038 -1.2117 -16.0450
8.0644 8.0499 7.1416 6.5893 5.5981 4.3993 3.4826 2.7143 2.8318 2.3580 2.4915 1.9093 -0.3049 -1.4506 -1.2401 -2.3404 -1.2673 -2.2808 -2.4575 -3.4995 -3.9318 -5.0149 -5.3296 -3.8867 -4.4533 -4.5744 -4.0511 -4.8087 -4.7385 -9.0466 -10.6663 -9.9253 -6.6473 -2.6332 0.9689 4.1205 6.3340 8.2517 9.8032 9.4405 1.9804
9.5207 9.0443 7.8069 7.3329 7.3094 8.0083 9.9299 12.4518 13.0618 11.3574 7.8442 3.8017 -0.1018 -3.9012 -6.5018 -7.0985 -5.6241 -2.4385 1.2347 1.1544 -2.3784 -5.3165 -6.5624 -5.5597 -5.2937 -9.9992 -14.6755 -17.3896 -17.0176 9.0473 5.4785 3.0998 0.8918 -1.3974 -3.6623 -3.5233 -2.5034 -1.0502 -1.2373 -5.1436 -25.0416
-5.0642 -5.1796 -4.6005 -5.1034 -4.7822 -2.6885 -1.4531 -1.7854 -2.0629 -2.7192 -4.4520 -3.9290 -3.4335 -4.7675 -6.1288 -7.0944 -6.6330 -5.1475 -3.2790 1.1530 2.3119 6.3456 6.1984 9.1249 10.9774 11.5921 12.7428 11.4754 8.3823 -9.7326 -13.5256 -14.6472 -7.0881 -1.2233 -0.9864 6.1958 7.2048 10.0661 12.3652 11.3714 19.0050
6.7705 6.0726 4.7668 4.7287 5.5025 5.2104 3.6077 1.7454 0.3953 -0.3480 -0.7236 -1.1397 -2.5075 -2.4282 -2.0351 -1.5354 -0.9783 -1.1816 -2.7792 -3.3855 -3.4229 -4.1416 -3.3236 -3.6243 -3.9451 -2.9592 -1.2582 1.2767 1.6406 9.6325 11.3324 9.8681 5.5229 2.3829 -0.2309 -2.8115 -5.0973 -6.3038 -7.6243 -16.6711 -7.8822
18.7275 18.7602 15.1086 10.7098 6.9559 5.0306 2.7456 0.2771 -1.9055 -2.8108 -2.7768 -3.7007 -4.2089 -5.7436 -6.2204 -5.8236 -4.9148 -3.2075 -2.8848 -3.1210 -2.7428 -4.5923 -3.8926 -3.7191 -2.9927 -3.2069 -3.9982 -3.8130 -2.0396 -6.3039 -3.8256 -2.1569 0.2409 3.3218 4.6289 5.0475 3.5987 1.8219 1.8959 -8.2692 2.9296
19.0392 17.4654 14.9352 12.2077 10.4970 11.1852 10.4778 8.4045 4.8902 1.7924 -0.8760 -4.1317 -6.0495 -6.1897 -5.0150 -1.4390 2.3264 1.7138 -1.0924 -3.4019 -4.3020 -3.5935 -2.4494 -6.4110 -11.3840 -13.3423 -14.0158 -14.8337 -16.4080 5.2170 2.0001 0.7957 -0.6171 -0.8902 -1.2003 -1.1541 -0.6336 -0.6395 -0.6616 -2.2164 -21.3670
10.4791 9.9395 9.0805 9.1584 10.6784 12.7374 14.6952 15.0752 12.8090 9.8648 7.8350 7.5607 9.0798 10.1615 7.6961 2.2376 -2.6758 -6.5418 -9.4708 -10.5541 -11.1366 -10.0882 -12.2916 -15.8392 -17.7528 -18.3635 -16.7645 -14.5122 -13.0970 9.0915 6.6105 3.9354 -0.3391 -3.1013 -3.4367 -2.5040 -2.1417 -1.8401 -1.7766 -4.4978 -24.3538
2.0821 3.1287 4.0753 5.4302 5.7802 6.6537 7.2130 6.6951 4.5960 2.8045 2.4487 1.8103 0.4415 -1.7609 -3.0165 -2.8462 0.1898 3.3827 4.3190 1.6896 -2.8185 -5.5524 -7.0484 -7.5484 -6.1090 -5.9753 -4.7225 -7.1165 -8.2257 3.6680 2.9008 1.3962 0.7099 1.6828 1.2318 -0.5067 -1.7458 -1.5988 -1.6313 -6.1069 -11.5601
1.1497 1.3200 1.2707 2.0082 2.0004 1.8044 1.1270 -0.2158 -1.8933 -2.4634 -3.4218 -4.7937 -4.7100 -4.6869 -4.1693 -4.4056 -4.9100 -4.6525 -4.3514 -5.3638 -6.5281 -5.1288 -3.6008 -0.1517 2.6878 7.2240 11.7457 15.7449 17.3640 6.9238 4.8734 3.1279 0.9919 0.1466 -0.3872 -0.1158 -0.4139 -1.8167 -1.7305 -11.5996 8.8903
9.7978 8.0725 4.8934 3.5284 2.7083 3.7014 4.0313 4.6282 3.9292 3.2742 2.0518 0.7154 -1.2921 -1.9667 -1.5639 -1.3033 -0.5627 -0.4778 -0.7607 -2.2442 -3.8987 -4.4781 -4.2520 -4.6421 -4.1577 -4.5224 -4.4218 -5.2138 -5.5740 0.7391 -0.0616 -0.3222 0.1802 -0.1541 -0.5544 -0.0900 0.4549 0.4530 0.6154 -1.2603 -6.8376
11.0218 10.5069 8.2672 5.9543 3.9578 3.9631 2.6698 1.5498 0.3926 0.3180 0.1925 0.7238 -0.6282 -2.8873 -3.5603 -4.0488 -2.8863 0.6168 3.2951 2.8007 -0.0448 -2.6501 -4.7672 -5.2381 -5.1827 -6.3352 -6.8157 -6.0030 -5.1825 5.7059 6.0081 5.5317 5.2309 1.9392 -0.7052 -2.9950 -3.4059 -4.2816 -4.2198 -8.8083 -12.1555
30.7220 30.4352 28.7635 26.8276 23.0072 17.1944 10.8428 5.1151 0.6042 -2.9361 -6.0945 -8.6787 -10.4457 -11.4951 -12.7062 -13.0113 -13.2579 -13.2793 -13.0584 -12.0898 -10.8056 -8.6431 -7.2774 -8.7256 -10.1911 -7.2394 -2.5936 -0.3436 -0.6396 5.5942 2.8807 1.9726 1.6097 0.9653 0.3476 -0.8863 -1.5202 -2.1940 -2.7497 -6.0197 -9.7496
11.0431 11.2874 10.7540 9.9197 8.6647 8.6958 8.6183 9.9875 10.0470 8.3112 7.2898 5.9718 4.5865 2.1034 -0.7735 -2.4122 -3.3246 -3.2844 -4.4966 -6.4114 -8.1119 -10.1936 -10.6919 -10.5371 -10.9794 -10.4475 -10.1218 -12.4300 -13.0643 -8.4396 -8.4986 -5.5124 -3.9624 -1.0920 -0.4675 2.3907 5.5877 7.2456 8.0230 4.7255 -8.4177
12.7397 11.0783 9.2586 6.5612 4.1628 2.3704 1.9316 1.0515 -1.0350 -1.2451 -1.9616 -3.0021 -4.2825 -5.4905 -5.6435 -5.6210 -6.6154 -6.2022 -5.0535 -4.7672 -3.5637 -2.1688 -1.0431 0.1656 0.9547 1.6420 2.0989 1.7796 1.9001 -9.9315 -12.1933 -12.6352 -7.0282 -1.8872 1.8245 4.5894 7.3621 9.3193 10.4805 10.0998 9.3097
15.1389 17.4197 18.3393 18.5836 17.5461 15.0277 11.1098 6.8515 2.5234 -0.3132 -2.9049 -4.0328 -5.4435 -6.6072 -7.1258 -7.1761 -6.4666 -4.5330 -0.7343 1.2614 -1.3012 -6.3734 -11.7238 -12.6667 -10.4556 -6.4641 -7.1625 -10.7517 -11.5648 8.7437 7.8620 8.4762 9.1692 5.7736 -1.6953 -4.9554 -7.2071 -8.1718 -8.3657 -9.6294 -20.1832
18.7350 18.8415 17.7238 16.7790 16.8597 17.9978 19.1477 18.5999 16.1427 12.4936 8.6595 5.9831 4.9948 5.7667 5.5880 1.9462 -3.6217 -9.0782 -13.3577 -15.7337 -14.0069 -9.9754 -8.9549 -15.6483 -21.5520 -23.5522 -23.6830 -23.3131 -23.7818 0.3454 -0.0420 -0.0575 0.3156 0.1128 -0.3066 -0.4222 -0.0008 0.1796 0.4486 -0.5731 -24.7214
16.6836 16.0011 14.2761 12.3355 8.6965 4.5639 -0.4844 -4.1980 -4.7650 -4.1296 -4.0155 -2.9656 -1.7970 0.4680 1.9673 2.9994 4.5000 3.5757 1.1168 -0.5475 -1.7944 -2.5137 -4.8674 -5.5801 -7.1945 -9.0212 -11.1995 -10.8822 -11.2279 0.2823 -1.5628 -3.0013 -1.8679 -2.2856 -1.4908 0.7971 1.9446 3.1469 4.5357 -0.4981 -12.2633
19.0033 19.2025 17.7777 15.3002 12.6650 9.5501 5.6575 1.8616 -1.6276 -3.6035 -5.2976 -7.4545 -9.9218 -11.0550 -12.1614 -12.3330 -11.7581 -10.8363 -9.3486 -5.9142 -0.9878 3.2625 3.7572 3.2186 3.6513 0.3807 -3.4386 -5.0746 -4.4758 13.3555 8.9978 5.4532 3.6182 -1.0628 -3.2096 -4.4349 -5.7492 -5.1348 -3.5353 -8.2981 -16.8230
18.4297 15.9331 11.2397 7.8129 5.5380 4.6599 3.1356 2.3935 1.0751 1.0970 0.6480 -0.2160 -2.0789 -2.6802 -3.0441 -2.3536 -0.3163 1.8936 2.7495 0.5565 -3.1908 -5.3708 -7.0075 -7.5402 -7.2433 -8.2848 -9.2167 -9.4201 -9.1988 2.6256 2.0510 1.3148 0.5355 0.0630 -0.6332 -0.4758 -0.6747 -0.4639 -0.1424 -4.2000 -12.3908
7.3097 7.7813 7.8527 7.8546 8.1128 8.9506 10.6384 12.8363 14.6251 15.4901 15.1366 13.4976 11.9988 11.7295 11.3616 8.4914 2.9159 -3.6536 -9.4800 -13.7350 -17.1927 -18.7882 -17.6248 -13.8464 -10.5674 -13.8181 -18.1434 -20.8743 -18.8591 11.3245 8.7172 3.5788 -0.9416 -1.5672 -2.3545 -2.3414 -3.3449 -3.9610 -3.8438 -5.2662 -25.7869
-1.6196 -1.5619 -1.3693 -0.0041 0.6985 1.0211 -0.2712 -1.1631 -2.5701 -3.8567 -4.4749 -4.1959 -4.6373 -5.4392 -6.6320 -6.8724 -5.3058 -4.2328 -1.9447 -0.2533 0.7399 0.5052 2.5635 6.5244 9.7417 10.9027 8.3775 5.7836 9.5462 -0.9205 1.3066 3.5975 5.1438 4.6369 2.9620 -0.2142 1.2689 -0.0412 -3.1056 -14.6343 6.0567
14.2155 14.8572 14.6396 15.6515 18.4554 21.3207 21.2950 16.5870 10.7997 7.0073 4.3743 2.9850 1.5061 3.2006 -0.1576 -6.6249 -11.7054 -14.9389 -16.7542 -15.9586 -13.4133 -9.9384 -8.4859 -12.4268 -14.9176 -16.0461 -14.1275 -6.4255 -4.9741 5.5063 0.3654 3.5212 7.9053 3.8839 -1.5841 -4.1647 -4.5145 -3.5450 -1.9892 -5.3846 -20.3075
9.1018 8.8735 7.5282 6.8650 7.5449 8.2635 6.4844 3.4564 0.6817 -1.5163 -2.2174 -2.8199 -3.2880 -2.4514 -0.1202 2.7625 4.3459 5.3239 3.3628 -0.1718 -3.0498 -4.4866 -5.5655 -6.7973 -7.4857 -9.1801 -9.3929 -8.4690 -7.5827 4.3844 4.6419 5.2823 3.5134 1.9965 0.2705 -0.4359 -2.5064 -3.1275 -3.8266 -10.1926 -14.0516
22.6352 23.6582 24.5865 26.3890 26.4341 23.2091 17.7722 13.5350 11.1208 9.9800 8.2759 4.0348 -1.7705 -7.8105 -12.5187 -14.9802 -16.3623 -17.3820 -17.7578 -17.6490 -15.5778 -12.8018 -11.4459 -14.3128 -16.3520 -15.2082 -10.9596 -5.2865 -3.4553 7.6752 3.5999 2.0739 1.1336 -0.6895 -1.5345 -2.4580 -2.0781 -1.8815 -2.5118 -3.3292 -17.5176
1.8750 1.8662 1.4311 0.9127 -0.1302 -0.3760 -0.5434 -0.2220 1.2349 3.6442 6.7696 8.9037 8.5438 6.1520 3.7222 3.0903 4.4232 5.4581 6.2833 3.7218 -0.7522 -4.4112 -6.2164 -5.4842 -3.9166 -5.9630 -10.1542 -15.3434 -14.5193 13.3682 11.1151 8.2449 5.7945 3.1501 -1.3709 -6.5216 -8.3030 -8.2964 -7.6878 -9.4930 -25.2906
23.8996 24.1043 23.8658 23.6680 21.5342 15.4333 6.3905 -1.1158 -4.6322 -5.8867 -6.7301 -7.6112 -8.9183 -10.1939 -10.8837 -8.9691 -3.9727 3.1911 5.9335 0.9841 -5.6662 -8.2167 -5.1918 -3.2488 -11.7754 -15.7999 -16.0905 -9.0460 -5.0555 9.1930 1.3362 -0.8279 -1.4971 -1.9949 -1.9954 -1.0397 -0.8391 0.6715 0.8150 -3.8216 -17.2628
2.1343 3.1072 3.1035 2.4651 1.0770 2.5793 2.6348 1.2152 -0.5649 -2.3867 -0.6920 0.8781 1.3547 -0.8951 -2.8053 -3.6858 -2.1707 1.9580 5.8746 8.3664 5.4534 -0.2992 -2.5199 -5.0547 -5.4956 -3.5790 -4.0494 -3.2599 -4.7435 6.3175 4.3640 4.2936 4.0751 4.2436 2.1309 -2.1883 -4.5757 -4.9307 -4.5770 -9.1531 -11.6403
24.1543 25.3380 25.2642 24.2890 21.5268 15.8776 8.7349 1.8963 -3.3513 -6.9022 -9.3648 -10.8355 -12.1831 -12.5211 -12.8565 -12.9812 -11.8854 -11.1641 -9.2860 -5.4976 -0.9263 3.4028 4.7240 3.7754 2.3125 -4.4255 -11.3777 -13.5943 -12.1432 6.6341 8.4368 8.7627 5.8486 0.7153 -3.2965 -5.0124 -5.0678 -5.2114 -4.9009 -6.9086 -15.7320
33.3595 30.8257 27.3940 23.1538 18.5480 12.9357 7.6481 4.1721 3.2632 3.4360 3.9739 4.0188 3.3042 2.7990 2.1257 0.5313 -1.9459 -5.6161 -9.5935 -12.9587 -14.8978 -16.0532 -16.3206 -16.6767 -16.1054 -16.6153 -17.9698 -18.6045 -18.1317 1.5134 0.8260 -0.0981 -0.1095 -0.5148 -0.5502 -0.3922 -0.2658 -0.1093 0.4252 -0.7246 -17.8748
1.6216 0.9985 0.7656 2.7126 3.5846 4.9869 4.3162 4.0409 2.9716 0.7825 0.4168 0.2302 -0.1647 -1.1633 -1.3128 -0.8806 -0.1106 -0.3406 -2.2081 -3.7852 -4.1417 -2.9134 -2.1959 -1.8077 -1.5502 -2.2082 -1.4934 -0.6950 -0.4569 -7.0535 -3.1321 1.0676 0.9741 1.5466 3.3522 3.6041 3.9392 1.3441 1.8148 -7.4571 2.7151
15.5981 19.5861 21.1052 20.7702 17.9972 13.4362 8.4295 3.6958 -0.0748 -3.8419 -6.8494 -8.7952 -9.5977 -10.9677 -13.2231 -11.6825 -9.6560 -6.9659 -3.1059 0.6508 -2.2959 -4.9921 -6.5950 -5.9531 -3.2910 -4.7702 -3.9870 -1.7940 -2.8308 -2.5000 -4.6538 -0.7258 4.7330 8.3235 5.3781 -0.4169 -0.0664 0.8379 -2.0639 -8.8455 -9.7704
23.7863 25.9404 25.3891 21.9998 16.2579 9.6322 3.4737 -1.7621 -6.1163 -9.2774 -11.9071 -13.8355 -14.8079 -15.2219 -15.4960 -14.7850 -13.1085 -11.2726 -7.3218 -0.9826 6.1996 7.8610 5.9579 4.5346 0.9527 -4.2620 -5.8570 -3.1595 -2.8119 8.3142 3.6630 2.1376 0.0170 -1.3069 -1.1574 -2.2597 -2.0274 -1.1056 -1.2385 -5.0363 -15.6945
20.3765 22.4983 23.2522 22.4935 18.6192 11.9388 4.7215 -2.2228 -6.9248 -8.7614 -9.4361 -10.4167 -12.0447 -14.3511 -15.7581 -15.0919 -13.4051 -11.6659 -8.9412 -4.6688 1.6099 5.0989 2.6335 0.0407 0.1956 0.6445 -1.3875 -1.9917 2.9449 22.4551 18.5214 5.2727 6.1503 -0.1446 -8.9143 -8.7222 -9.1792 -9.3487 -7.5459 -8.5445 -16.1222
11.1076 12.0485 11.0550 10.5716 11.0874 11.6622 9.9206 4.9761 0.3715 -2.6436 -4.8249 -9.2210 -10.4786 -11.6233 -11.8990 -10.3869 -9.3054 -5.4126 -0.0922 1.7786 1.9733 2.3237 2.4041 2.1518 -0.8245 -3.1849 -3.9744 -5.1713 -4.3894 1.3910 -2.4885 -4.1076 -3.8565 -1.6768 1.3241 2.8087 3.8092 4.3728 3.2455 -4.8218 -10.0894
-0.2633 -1.4544 -2.4182 -3.0882 -3.5531 -4.3925 -6.6002 -8.5372 -9.6704 -9.8444 -10.3936 -9.9956 -8.9278 -7.5639 -5.9124 -1.9933 2.8919 6.3172 5.9440 4.7295 5.0606 5.2459 8.2338 8.7234 10.0863 10.2509 9.9392 9.0613 8.1243 1.1238 0.9922 1.1101 1.8146 2.6706 2.2247 1.2363 1.1432 -0.1842 -0.9655 -11.1660 5.3441
6.9294 5.0117 2.6132 2.2629 4.5422 9.5764 14.7837 15.8748 11.9468 7.4679 4.5656 4.3597 5.8184 8.6426 5.8541 -0.7924 -5.2311 -8.0360 -9.7347 -8.9000 -8.2834 -6.3029 -5.0720 -7.3093 -8.1284 -8.3417 -7.7152 -10.4763 -15.9260 4.7158 2.3141 1.3121 1.3526 1.5962 -0.3417 -1.3860 -1.6767 -1.7760 -1.6516 -4.4588 -23.6471
20.5611 21.4990 21.6805 21.4105 19.9564 16.4129 11.0090 4.5495 -0.7043 -3.4671 -4.6121 -5.3523 -6.5924 -7.7881 -8.2287 -7.0226 -4.0117 -0.4161 1.7880 1.3595 -1.3403 -3.8721 -3.9650 -4.9622 -8.7031 -14.8711 -18.9891 -20.1269 -15.2011 9.5765 9.6090 6.3797 4.6167 -0.3327 -3.7082 -4.7974 -5.1837 -5.3397 -4.8761 -5.9441 -20.3305
28.9011 29.1365 27.4009 24.4914 20.2583 14.7607 8.7681 4.0956 2.2405 2.3157 3.7552 5.6036 6.0319 3.0401 -2.3373 -6.5825 -9.1181 -11.5190 -13.0607 -13.4398 -13.0287 -11.6613 -11.3947 -12.1649 -13.2592 -14.7276 -15.9052 -16.4327 -16.1678 0.8050 0.5113 0.4244 -0.0076 -0.2346 -0.4785 -0.2332 -0.0629 -0.0095 0.3865 -1.1010 -17.2993
14.0295 13.9502 13.6228 13.9615 14.5159 15.7344 16.5458 16.6583 15.8760 14.9767 14.5095 14.6169 14.1664 10.4532 3.0906 -3.2947 -6.9042 -10.1425 -12.3464 -13.3132 -12.9262 -11.8067 -11.4974 -15.4253 -20.2544 -22.9691 -22.5572 -21.6390 -21.6312 2.0180 1.7654 2.8940 1.2851 1.2694 -0.7044 -1.7554 -1.1719 -1.4637 -0.7534 -3.3831 -24.9877
14.3136 12.8038 10.7600 9.9164 8.0164 4.8641 0.3656 -1.3980 -2.3438 -1.8387 -0.9641 -0.4343 -1.8428 -3.9974 -5.5735 -6.9534 -5.2614 -1.8837 -0.6653 -2.2186 -4.1385 -7.9205 -4.8743 -0.0041 -1.6958 -8.8891 -5.9515 2.5199 5.2890 -0.4214 3.3144 7.7656 5.2578 2.3868 4.6757 -4.9484 1.0462 -11.2993 2.2105 -9.9881 -1.0110
15.2498 16.8589 17.4454 17.3595 15.7318 12.0402 6.8196 1.9584 -1.8950 -4.1206 -5.7554 -6.5663 -7.4096 -8.0543 -8.0905 -5.7704 -1.8905 1.4927 2.8765 0.6930 -2.5985 -3.9517 -2.8026 -3.1264 -6.0718 -8.7896 -10.8740 -11.1991 -9.5592 1.0250 2.5513 3.7885 4.2634 3.9729 3.4142 0.3627 -0.0631 -2.7607 -5.0823 -11.4719 -15.3324
19.7099 20.3722 20.4412 20.5912 20.9609 21.5266 21.3284 19.9806 17.9191 15.7219 13.9555 12.9719 11.7125 7.8879 1.8651 -4.0484 -8.3840 -12.3338 -16.2678 -19.1476 -20.5188 -20.7942 -19.7332 -19.5087 -20.0131 -21.1706 -22.0267 -21.8280 -21.1700 2.6261 1.4238 0.5675 0.1586 -0.3335 -0.7530 -0.6950 -0.8150 -0.6504 -0.3559 -1.1732 -23.1129
1.8825 1.5975 0.7650 0.8382 1.0970 2.3121 1.7334 1.3645 1.6653 2.5832 3.6249 3.8831 3.7892 3.6596 2.8817 2.2713 1.6918 1.3161 0.6652 0.0342 -2.3559 -3.5644 -4.4403 -3.4709 -4.1781 -4.9507 -5.6105 -5.7659 -5.3190 -4.6785 -6.2814 -4.4170 -3.7355 -2.9146 -0.6060 2.7131 5.1159 5.7786 5.8363 3.1891 -2.7682
20.9204 18.3266 13.9646 10.3450 7.1213 4.7949 2.3975 0.3252 -0.8377 -1.2032 -1.3516 -1.2322 -1.3903 -2.0806 -3.2115 -3.8099 -3.7972 -3.8008 -4.4221 -4.5737 -4.8822 -4.8118 -5.0104 -5.0121 -4.8009 -5.1006 -5.4825 -5.7785 -5.6058 0.0304 0.0212 -0.8099 -1.0990 -0.8995 -1.1798 -0.0605 0.4825 1.2857 1.8683 0.3606 -7.2005
5.2951 4.6853 3.2703 1.4395 -0.0679 -1.5464 -4.0205 -5.2710 -6.2684 -7.4709 -7.5305 -6.6769 -5.9752 -5.0052 -2.1987 1.0365 4.3659 5.4876 4.1372 2.9011 2.0765 1.4275 2.2620 2.4970 2.1857 1.8463 1.4213 2.7180 2.9788 2.6542 4.1837 4.7936 4.0109 4.2119 2.0348 0.3166 -0.4254 -3.1810 -4.8204 -13.7789 -1.2474
10.5896 10.0518 9.5208 11.5878 14.9277 14.1122 8.4894 2.1708 -2.5335 -5.3221 -7.6712 -9.9945 -11.5742 -11.8957 -12.0296 -10.9304 -8.1129 -3.4826 2.2855 6.7275 2.7163 2.8417 3.8437 1.4929 -1.9462 -3.7791 -2.6804 -3.2326 -6.1727 14.4024 9.7441 3.2594 -2.4965 -1.6315 -2.6240 -3.3409 -3.9874 -3.0303 -4.0633 -6.2319 -23.1513
12.3877 13.4337 14.0526 15.3719 16.7230 17.0301 15.6932 13.1714 10.9923 10.1200 9.9867 8.1477 4.6596 0.5220 -3.1428 -6.2242 -8.4106 -10.5360 -11.5260 -13.2012 -11.1252 -8.8838 -9.7283 -14.6481 -19.0045 -16.0374 -8.1446 -9.6615 -12.0177 -3.6514 -5.1768 -3.3816 -0.8285 1.8774 4.0666 6.6919 6.7739 0.8553 -0.3990 -6.8277 -19.5820
7.5130 6.3917 4.4090 3.2713 2.4681 1.4505 -0.7914 -2.2729 -2.7937 -1.4184 0.5941 1.7683 1.7245 2.1691 0.8665 0.4093 0.8033 3.3147 3.5683 -0.9897 -3.9384 -5.0587 -4.1462 -2.0529 -1.2512 -5.3164 -7.9226 -1.6494 -1.1198 3.1545 4.1780 6.4164 4.4137 1.4380 1.5613 -8.5713 -1.5266 -2.1776 0.8939 -9.7803 -10.1082
-0.4172 3.9814 -2.5335 4.7982 6.2404 9.5386 1.7280 -2.6347 7.9832 -10.0263 -1.0230 2.1623 7.0028 7.7748 15.0971 5.6506 5.2734 4.3666 -5.3182 -6.5883 -8.8498 1.1908 5.5230 -1.1525 -3.9009 -23.1871 0.2212 -1.9086 -20.9924 7.1776 8.9477 9.4213 0.6845 6.7206 6.8189 0.9603 -10.6166 0.5146 -13.1811 -17.4476 -7.6137
23.3780 25.0892 26.2191 26.9457 24.6201 18.5566 11.6556 4.9788 0.6249 -3.7400 -8.5904 -12.3926 -14.7270 -15.9297 -15.7620 -14.5514 -11.9079 -8.2268 -0.1798 5.9532 4.5772 3.1484 0.2938 -5.5237 -12.1896 -14.8172 -14.8798 -12.4827 -10.1404 3.2764 -1.6281 -2.1589 -1.3730 -0.4182 0.5715 -0.2811 1.7069 1.5263 1.5414 -2.7632 -16.8809
26.2968 26.9773 27.1574 27.9417 26.5696 21.5857 14.8761 8.6361 4.1683 0.7533 -1.9295 -2.5208 -0.0812 2.2250 0.9523 -3.4957 -8.2811 -11.7647 -14.3663 -15.2907 -14.5936 -12.5687 -12.9612 -14.8338 -16.5565 -16.2573 -15.0745 -13.8830 -13.6813 1.4448 -0.0533 -0.0920 -0.0314 -0.2973 0.5069 -0.2172 -0.1011 -0.0306 -0.0946 -1.0343 -16.8789
15.2599 15.8558 16.5112 17.1923 16.9184 12.7155 6.7767 1.6437 -3.4349 -7.8714 -10.5492 -12.4016 -14.2321 -14.9460 -15.0099 -14.2604 -12.3944 -9.9130 -6.0566 3.4214 4.0393 0.9850 0.9812 5.2322 5.1852 2.0753 2.8816 0.5603 -7.1654 13.9261 10.8083 1.8284 -2.6412 -3.5133 -2.9693 -2.9300 -3.3031 -3.3193 -3.2617 -4.6248 -21.7463
17.6998 15.3407 11.6586 7.2522 2.9030 1.1270 0.2870 0.3993 0.1515 0.9131 1.2039 0.8350 0.6170 -0.2241 -0.4502 -0.7194 -0.2872 -1.3096 -2.7798 -3.9323 -4.0148 -5.4557 -5.6772 -5.5259 -5.6333 -6.0967 -5.8797 -6.4353 -5.9666 -4.2226 -4.1479 -4.5146 -4.3292 -2.7654 -0.8517 1.0845 2.9370 4.9613 6.0166 5.8320 -4.0046
6.7958 6.6180 6.8562 7.7048 9.3200 10.2947 9.2183 6.4762 2.7485 -0.8988 -3.4430 -4.6190 -6.3031 -8.1363 -8.6511 -7.2066 -4.4822 -1.4434 2.6598 5.1827 2.6866 -0.9832 -2.3089 -1.3324 -0.7075 -3.4975 -7.3602 -8.3172 -6.8713 15.6013 14.5952 12.4864 10.1694 6.7654 -5.1118 -14.7309 -11.9476 -9.2847 -6.6284 -11.9143 -21.6331
14.4296 12.7223 10.1123 8.5522 7.7405 6.5977 2.6762 -1.5488 -4.1290 -3.7931 -3.0890 -3.1619 -4.0464 -5.1734 -7.7679 -6.3552 -4.2463 2.5055 5.5392 0.2036 -3.7031 -5.8323 -6.0258 -1.1405 -6.8812 -8.2643 -6.4325 2.2624 8.2490 -1.6654 -1.1619 -3.5190 -1.9517 -1.3057 -0.4120 0.2731 3.0941 3.3892 6.7202 -3.4609 4.9976
16.2171 16.8083 17.6167 19.1924 18.7528 14.2594 8.5818 3.6957 -0.9158 -4.4517 -7.0958 -9.3910 -11.6987 -13.3940 -14.5794 -13.1362 -10.8013 -7.4970 -2.2178 3.9550 3.3524 1.1405 1.7320 1.1123 -4.7613 -8.8800 -8.5945 -6.1985 -2.8033 13.6191 7.9112 3.4818 -0.7153 -0.3308 -2.3878 -3.9144 -3.8872 -3.3753 -4.2532 -6.1481 -19.8313
6.8744 6.6595 5.9608 5.6270 4.3932 3.6619 1.6033 0.6207 0.2849 0.0399 0.6193 -0.4371 -1.6617 -0.9777 1.0971 4.1974 5.9086 2.2600 -0.0342 1.3932 -0.7669 -2.8459 -3.3270 -4.4869 -4.5589 -4.9693 -7.5630 -7.8037 -11.7691 6.8143 4.0009 -0.8944 -7.1111 -6.4611 -4.2217 -1.7229 0.4360 2.1972 3.2561 3.7068 -18.5017
18.3619 17.7217 16.1766 13.4866 10.6915 10.2793 11.8384 14.1579 15.8226 15.6994 14.1178 12.1825 10.7237 10.1085 8.7558 5.2488 -0.0978 -5.2425 -10.2876 -14.5133 -15.8759 -16.5173 -16.7647 -16.0517 -18.5506 -21.5370 -23.2401 -23.8593 -22.8353 1.5487 0.0279 -0.5628 -0.2643 0.4887 -0.1023 -0.4874 0.2721 0.8224 -0.1650 -1.5779 -24.7124
31.7198 31.7692 29.2043 25.0452 19.3123 12.8393 5.9234 0.3241 -2.4789 -4.4056 -7.0192 -8.8068 -10.3571 -11.5877 -12.2897 -12.4950 -12.4338 -12.1031 -11.1686 -9.2498 -5.8575 -2.3369 -1.3750 -2.0352 -2.1517 -3.4040 -5.9186 -8.2233 -10.4400 -0.0554 -0.5312 0.1527 0.4184 0.6585 0.9224 0.6649 0.9519 0.5466 -0.5067 -3.2220 -11.4604
20.9886 21.1123 20.4027 20.0167 19.1884 16.5783 12.5867 8.3317 4.5773 1.2778 -1.2341 -2.6474 -2.9142 -1.9783 -0.0434 0.4668 -1.7813 -4.6738 -7.2502 -9.3057 -10.6229 -10.4876 -10.2177 -11.8410 -13.1790 -14.6712 -15.1393 -14.2870 -13.2531 -3.3960 -1.5619 2.3074 5.7136 6.3342 5.5398 2.4437 0.2877 -1.8718 -4.5073 -11.2895 -13.3591
19.3924 20.6124 21.6255 22.8929 23.6118 22.1117 17.5653 12.1779 8.8663 7.6147 7.1982 7.2343 9.0939 9.9573 8.6027 6.9323 4.6278 -0.1742 -9.4767 -17.6803 -21.3590 -22.4801 -22.5914 -22.5224 -22.4181 -22.3005 -22.8483 -23.1612 -23.1052 0.6133 0.2252 -0.4348 -0.4131 -0.5289 -0.3970 -0.2180 0.1438 0.5713 0.4924 -0.0541 -22.3321
-5.4361 -5.8530 -6.3360 -5.5397 -4.6575 -4.7263 -5.3668 -5.7909 -7.2619 -6.2038 -4.8838 -2.3553 -0.0793 2.8083 6.1069 7.9082 8.9577 8.4116 6.9427 5.3831 4.8464 3.2166 2.9690 3.6037 2.4221 1.8058 0.2551 -0.2588 -0.8880 1.1827 1.8083 1.5989 1.9336 1.4331 1.4150 1.0200 0.1423 -1.1623 -0.5400 -8.8315 -3.2727
15.8074 16.7591 16.8279 14.8127 12.3398 10.0795 6.3564 1.5357 -1.2393 -3.3949 -5.2006 -6.9275 -7.1545 -7.4402 -8.2594 -9.4265 -11.1999 -12.9999 -8.0859 -4.8163 -2.9284 1.3560 0.0774 -2.3044 -1.8591 0.1665 -4.2809 -4.0953 5.4946 9.8215 5.0171 7.0888 8.4199 6.4234 3.6409 10.6458 9.4642 -18.5810 -21.0542 -20.8865 -9.8207
16.5885 17.1406 17.0874 16.5509 14.5628 11.8287 11.6860 12.5074 11.7212 10.7081 10.1468 9.1212 8.3750 5.9474 2.4174 0.3172 -1.3076 -2.3870 -7.4556 -13.1264 -14.3324 -15.1303 -14.9156 -14.1134 -15.0136 -16.5819 -19.3100 -21.7927 -21.2401 -7.0652 -6.6847 -6.5388 -5.2451 -2.6953 0.0429 2.8899 5.3552 6.8840 7.0718 5.9852 -18.2709
5.7159 5.5464 5.7456 6.9034 7.0731 7.8586 8.0236 8.6981 9.1036 9.3530 10.1684 9.7683 7.9546 5.4206 1.7391 -0.2107 -1.2165 -2.1493 -3.9988 -5.8835 -7.1432 -9.2187 -9.9765 -11.1680 -10.8259 -10.9835 -11.5153 -12.5521 -12.2304 0.1902 0.2673 0.6601 -0.0091 -0.1874 -0.6461 -0.5035 -1.0433 0.8599 2.7028 -2.2908 -14.5718
17.6557 17.3889 17.6615 17.9794 16.5379 12.1975 5.9007 0.5883 -3.1335 -4.8335 -5.4254 -6.2659 -6.3932 -5.9023 -4.4098 -0.6232 2.7006 4.3695 3.8488 2.2808 0.7423 -2.7461 -8.2729 -11.5807 -12.4732 -11.8352 -10.1651 -11.6722 -14.1196 8.4864 3.3593 0.1360 -1.6129 -1.5632 -1.3569 -1.6250 -0.1613 -1.1646 -1.4389 -3.0589 -22.3338
-10.3940 -11.3059 -10.7072 -9.0929 -7.9625 -7.9528 -9.4227 -10.3318 -10.9410 -11.1389 -11.6416 -11.7743 -11.8888 -11.1901 -10.5924 -9.4860 -5.0151 0.7991 6.1915 8.4506 7.5920 12.1623 17.6583 20.5566 20.2652 20.3690 19.7694 19.3174 17.7068 3.6441 3.3200 3.1784 2.3126 2.6626 2.7456 1.7616 0.1272 -1.6565 -3.6722 -14.4236 11.3192
-5.2800 -6.7018 -5.8538 -2.9829 -0.9541 -0.9051 -2.3575 -3.5615 -3.7286 -3.6750 -3.1606 -4.9611 -3.9368 -5.7580 -6.7510 -8.2890 -7.8523 -5.0164 -1.2817 -1.0886 3.4595 6.5066 6.9768 10.1455 9.1411 11.6105 10.9980 12.7941 12.4636 -8.2776 -14.0532 -15.1503 -7.3901 -2.1067 2.8745 5.7677 7.7844 9.1465 10.3125 11.0923 19.6399
29.3262 30.3667 30.8460 31.0752 29.3541 25.4538 21.7947 19.7689 18.2651 13.3813 5.5283 -2.7838 -9.2904 -12.5752 -14.3270 -15.2147 -15.6347 -15.9580 -16.2781 -16.2588 -15.7969 -15.4712 -15.0026 -15.2417 -15.4496 -14.8024 -15.4856 -15.3255 -14.2641 0.8519 0.0729 -0.0994 -0.0081 -0.3526 -0.2653 0.2798 -0.1248 -0.0021 0.1016 -0.4538 -15.6262
15.4867 33.4494 31.0670 16.7893 6.4957 16.0571 16.9999 3.5875 -1.1144 4.8625 -0.6863 -3.8211 -1.9744 -8.9072 -8.5418 -10.0978 -9.2052 -7.2961 -7.0614 -7.4703 -6.4488 -9.4828 -7.1526 -6.4892 -6.7913 -8.1872 -9.9015 -12.0879 -12.0780 0.2229 0.6948 1.1380 0.0739 -0.1888 -0.1421 0.1878 0.2524 -0.6463 0.3346 -1.9272 -10.9140
5.6609 8.4186 9.2335 8.5627 6.3863 5.2965 4.7202 4.1210 2.2470 0.4513 -1.5117 -3.6436 -5.3381 -8.3221 -7.4711 -7.9576 -7.8478 -7.1587 -4.1684 -2.5146 -2.1257 -2.2843 -1.1957 -1.5497 0.8946 0.9399 1.4159 1.7779 2.9627 -5.4497 -6.1886 -3.2681 -2.1330 -0.0404 3.3281 4.7853 6.2760 5.5714 2.7564 -5.6374 7.7525
8.2746 28.7187 36.6976 28.2924 10.6085 7.9432 11.5220 11.0743 -0.8646 -3.5525 2.5564 -2.1952 -6.5887 -4.6155 -7.3323 -7.9392 -7.8581 -8.4524 -7.5176 -8.1708 -7.7429 -8.5235 -8.2840 -8.3037 -8.0554 -8.4741 -9.7485 -10.9377 -10.5310 0.6140 0.5808 0.5660 -0.0413 0.0489 -0.0922 -0.0506 -0.0413 -0.2020 -0.1189 -1.2632 -9.9199
11.0404 11.4527 12.0166 13.1928 15.2678 14.9233 9.1277 2.3164 -2.7085 -5.3527 -7.7675 -9.0506 -9.7011 -10.3636 -8.8246 -5.5374 -1.0381 4.5069 6.0732 3.0152 -2.7476 -2.7839 0.0922 -1.8194 -6.8672 -9.4573 -9.4575 -5.7898 -3.7583 10.8326 2.8363 2.0266 -5.3026 -6.6996 -2.9341 1.7162 6.9334 1.7529 -2.8185 -8.3432 -20.4214
12.4387 12.5027 11.9274 11.7982 12.5741 13.7391 15.0701 16.2946 15.8718 14.4312 13.1234 12.3489 12.0782 10.4253 5.1065 -2.4414 -7.7163 -11.2866 -14.5564 -17.0603 -18.3751 -18.6502 -16.8442 -12.5688 -10.3598 -13.7062 -17.0023 -16.5492 -12.6137 10.1763 4.1712 1.7946 2.0076 0.9052 -2.1595 -3.3835 -3.6172 -3.1645 -2.4570 -4.2730 -25.1913
23.6574 23.7960 23.2767 22.0580 20.0235 16.6036 11.9504 7.3306 3.6864 1.7264 0.9711 0.7044 1.0710 2.2585 2.9655 1.1649 -2.9500 -7.6177 -11.4979 -13.5632 -15.3135 -16.4809 -16.2070 -14.4023 -12.2974 -13.2762 -14.7359 -14.0530 -10.8494 8.8738 6.6767 4.8152 2.7736 0.0848 -2.4935 -3.4294 -4.0796 -4.0216 -3.7791 -5.4208 -19.2524
24.5799 26.6882 26.1210 23.6936 19.3829 13.8994 6.2899 -0.2105 -4.0678 -6.8423 -8.5308 -9.6576 -10.9976 -12.5439 -13.9320 -14.6340 -14.8621 -14.4895 -13.6415 -12.6341 -10.1213 -4.5540 2.3810 5.5155 4.5043 4.6729 1.5540 -3.0055 -4.5582 9.0263 7.4732 2.8612 0.7241 -2.0536 -2.7733 -3.2059 -2.7189 -1.5532 -1.3601 -6.4198 -12.7575
7.6213 8.4172 8.9876 10.4827 12.2597 15.2393 17.4791 18.0965 15.0336 10.0484 5.7655 2.6712 0.2945 -1.4627 -1.9710 -1.0660 1.1600 3.0980 1.1433 -4.1444 -8.2970 -10.7541 -12.9877 -13.8031 -13.3996 -14.1617 -17.1393 -19.3636 -19.2476 6.5354 4.7648 2.4269 0.5232 -1.4945 -1.8813 -1.9640 -1.7311 -1.6530 -1.7955 -3.7308 -24.6643
13.5087 13.5242 12.7722 11.8179 11.1371 10.7172 10.5263 11.1693 11.9327 11.7410 11.0557 10.1108 9.3715 8.9355 7.6249 5.0772 0.6107 -4.7883 -10.1816 -14.0801 -16.8600 -18.9941 -20.5775 -19.3418 -15.1559 -10.7533 -12.0838 -14.9402 -13.8764 11.0621 7.6386 4.9345 4.3245 3.4049 0.2756 -3.5276 -6.3143 -7.1008 -6.6692 -8.0282 -24.5342
5.8438 4.0764 2.2130 1.0693 0.2917 0.2268 0.3178 0.0571 -0.1220 -0.3299 -0.5484 -0.7221 -0.5026 -0.6535 -0.8270 -0.8342 -1.1830 -1.4780 -1.3638 -1.1982 -1.1886 -1.0489 -0.6640 -0.3974 -0.3609 -0.2538 0.0154 -0.0545 -0.3807 -6.2176 -6.9549 -7.1781 -6.1296 -3.0722 0.1331 2.5736 4.6982 6.3374 7.5607 8.2495 4.9755
0.8084 -0.3755 -1.4286 -0.3083 0.4094 0.3217 -1.3855 -3.3308 -4.9621 -6.0578 -7.2055 -8.3467 -8.9662 -9.8798 -8.8811 -7.5773 -5.2881 -2.3523 -0.7359 -2.0640 -3.5321 3.1588 7.1883 8.4965 6.8253 10.0820 14.4185 16.1906 14.7782 2.7472 3.1780 3.1134 1.3703 0.6380 0.5841 -0.0788 -0.4106 -0.5281 -1.2372 -9.3762 9.7708
6.0347 7.9306 7.3087 7.5860 8.0389 6.2727 1.7726 -1.9510 -5.1723 -6.4728 -8.8919 -11.0154 -12.2556 -12.0671 -11.6595 -10.0395 -9.5655 -7.4114 -6.3370 -7.0881 -7.2175 -0.9489 2.4220 5.6816 9.0238 12.3465 14.6450 14.7417 14.2888 2.3315 1.6729 1.0736 1.3455 0.9342 1.8468 0.4757 0.6854 0.1631 -0.4447 -10.0841 9.3461
46.3168 40.1857 32.9910 25.4126 18.0879 11.1478 4.7370 -0.5137 -4.1524 -5.9367 -6.6956 -7.3488 -7.7462 -7.7468 -7.3670 -6.8462 -6.4988 -7.1096 -8.3038 -9.1796 -8.8798 -8.2279 -8.5672 -9.4950 -9.9228 -10.8964 -12.0330 -12.6718 -12.7395 0.0319 0.3618 0.0496 -0.3085 -0.3788 -0.2193 -0.1354 0.1832 0.4305 0.6666 -0.6818 -13.3710
11.6554 10.6537 9.3283 9.0008 10.6684 13.7237 16.3020 16.4883 14.7382 14.1678 15.6614 15.7353 11.5669 3.2738 -3.5965 -7.5962 -9.3860 -11.3905 -12.5797 -12.1046 -11.4132 -10.6087 -9.1391 -12.6739 -14.9908 -15.8921 -11.8803 -12.2627 -17.4496 3.4680 2.4160 1.3256 -0.8144 0.1187 -0.6282 -0.9031 -0.1242 -0.9050 -0.7535 -3.1999 -23.5324
12.1675 12.7254 13.2135 14.1985 15.5137 16.9806 16.3379 13.0366 8.3660 4.1955 1.8866 0.9609 0.6094 1.9753 4.6385 5.7596 1.8347 -3.2804 -8.2098 -10.9983 -11.7998 -9.9732 -7.5792 -9.7338 -14.2230 -17.7555 -18.8744 -17.4527 -14.5201 8.5409 5.7667 4.9560 3.2564 0.0271 -3.4128 -3.9385 -3.7737 -3.3325 -3.1328 -4.9568 -24.6241
9.1120 9.5643 6.4962 4.5254 2.7757 3.3307 2.9999 2.2174 0.0229 -1.1179 0.0764 1.8616 1.8079 -0.7101 -2.7389 -1.9102 -1.6224 -0.6549 0.4717 -1.0044 -2.5700 -7.5968 -14.5192 -14.0727 -5.9300 1.9148 1.1204 1.1277 5.0226 -1.2631 1.5663 1.1958 1.8714 2.7703 3.0917 1.6973 0.4038 -0.8317 -0.0474 -10.4545 2.3160
17.4130 18.4485 19.8230 21.9391 23.4308 21.8507 17.8532 15.0747 14.5401 16.0453 15.3416 9.4703 1.3616 -5.8986 -10.9098 -13.9034 -16.0964 -17.8246 -18.9143 -19.3551 -18.7588 -15.8862 -10.9884 -9.6544 -11.1991 -11.1716 -7.9982 -9.7072 -14.3257 2.4025 0.4919 0.6628 -0.0126 0.2100 -0.6177 -0.6937 -0.1321 -0.2311 -0.0316 -2.0484 -21.0953
23.3464 23.7587 23.3198 22.6359 21.2675 18.8080 15.3692 11.2959 7.5849 4.5951 2.3321 0.6206 0.1406 1.2537 2.7028 2.3454 -1.0568 -5.4629 -9.1807 -11.1211 -11.6330 -11.0576 -12.1808 -16.0691 -19.9208 -21.7935 -21.7452 -20.5008 -19.6545 1.7728 0.6055 0.3687 0.2898 0.0010 -0.3228 -0.5114 -0.4052 -0.3988 -0.1360 -1.2637 -21.5300
-3.6391 -1.8280 -2.2141 -2.8117 -2.3529 -0.6648 0.7132 2.6314 3.0327 3.8765 4.7159 6.0331 6.9840 8.0909 8.2184 7.4433 5.1418 1.2303 -2.8864 -5.9181 -7.2732 -6.6797 -6.8357 -5.8669 -3.4482 -1.6078 -1.4231 -1.7328 -0.9288 5.0214 2.8439 1.2445 2.6452 1.4416 1.0353 -0.6548 -1.6658 0.1662 -1.8989 -10.1785 -9.4487
28.5900 28.4485 26.4597 24.2982 20.1833 14.5406 9.8101 7.1801 4.6176 2.4138 0.7001 -2.5862 -4.1909 -6.9729 -9.1018 -9.6205 -10.8810 -11.6812 -10.5387 -10.4340 -10.1742 -2.9512 -0.7690 -7.7471 -11.9011 -14.8085 -14.9057 -14.9118 -13.0663 -2.8812 -2.2219 3.1021 7.3299 4.0256 5.0339 1.4276 -2.9978 -1.6788 -3.5104 -7.6288 -12.8330
17.2116 17.2987 16.9789 18.3176 20.7510 21.2753 16.7522 10.5133 5.1142 1.0710 -1.6324 -4.2824 -5.9266 -7.1525 -5.1415 -0.8661 3.3622 1.3492 -3.6601 -7.4519 -9.7242 -8.3497 -5.3860 -9.2331 -14.7369 -17.5440 -17.6867 -15.9040 -15.3169 3.1075 0.5173 0.2992 -0.3406 -0.3000 0.1907 0.1940 0.1470 -0.5000 -0.5615 -2.7535 -21.0709
-3.1988 -4.0916 -5.2881 -5.3666 -5.4604 -5.6690 -4.5675 -2.8244 -2.3646 -2.2769 -2.5378 -3.9469 -5.3482 -6.8601 -7.9884 -9.9236 -10.0360 -5.5943 -1.7619 2.5871 4.2247 6.6177 8.6593 10.3741 10.0072 13.2806 13.3423 12.7747 13.2373 -10.5369 -13.7286 -14.4672 -7.5571 -1.4016 2.5948 5.6055 7.4460 9.7262 10.9589 11.3600 20.0322
6.7783 7.2343 7.5331 7.7761 7.5074 7.6964 8.5725 10.1613 11.2545 11.2432 10.1640 8.2217 5.7244 3.0761 1.5943 2.2900 3.8412 4.4389 2.8003 -1.0955 -5.1726 -8.1891 -9.0934 -10.2132 -12.0854 -15.5298 -19.4471 -23.4981 -23.5838 4.8567 5.6416 5.2432 4.8449 4.3077 1.0329 -3.6054 -4.7530 -5.3304 -4.6545 -7.5837 -26.8960
8.4973 9.5790 10.3958 11.0142 10.3482 7.3892 3.2338 0.0093 -2.2260 -2.9444 -3.5594 -3.3833 -3.1035 -3.2915 -3.1816 -1.7272 -1.5694 -1.3090 -0.9698 -1.6827 -1.8826 -2.4935 -2.7299 -3.3411 -3.5987 -3.5349 -4.0664 -5.5150 -4.3567 3.6788 2.2969 2.2073 2.2050 0.4179 -0.5426 -0.2219 -1.2268 -0.5609 -0.3836 -7.8702 -9.1107
17.6231 17.9262 18.5472 20.0216 20.3023 17.2887 12.1996 7.3566 4.7274 3.6547 4.0756 5.8810 5.5040 1.8555 -4.4820 -8.8437 -12.2983 -14.1074 -15.7010 -15.7749 -15.0957 -12.7982 -7.9092 -8.3535 -11.5389 -11.4704 -7.3965 -5.1788 -6.0150 7.6735 4.3849 2.0779 0.2256 -0.3031 -1.8488 -2.2661 -1.6177 -1.6092 -1.8719 -4.8451 -18.7476
12.8205 14.2684 15.5868 16.7831 17.8071 18.5983 18.8925 18.1800 16.6295 15.0296 14.4114 15.1384 15.0538 11.9286 6.3973 0.5192 -5.4829 -11.2613 -15.9150 -19.5693 -22.3818 -23.8883 -24.2652 -24.1324 -21.6570 -17.7761 -13.9964 -14.5120 -13.2068 12.3627 9.0753 5.2809 2.4178 1.3885 -1.6252 -3.9036 -5.7988 -6.3917 -5.9659 -6.8402 -21.2728
20.5006 19.7859 17.9876 15.5578 13.4254 11.0431 7.8434 4.6796 1.3542 -1.1988 -3.1242 -4.8289 -6.6124 -8.2071 -8.4241 -6.4513 -2.4710 0.8654 0.4899 -3.0973 -6.3396 -7.6626 -7.3643 -5.6214 -3.7466 -5.6286 -8.3519 -11.4399 -12.9632 6.3044 6.3906 3.8753 0.4819 -1.9504 -2.6460 -2.8098 -2.5547 -2.1552 -0.9715 -3.9646 -18.7636
4.9500 4.5607 3.1720 2.1209 0.3490 -1.0626 -3.5132 -4.7851 -6.2971 -7.3286 -6.8625 -6.4027 -6.8983 -8.1437 -7.2159 -6.5081 -6.2430 -5.2328 -3.1319 -1.8582 -0.2079 -0.4158 1.4593 6.3046 10.2618 11.6043 10.4890 12.3236 14.5120 7.5422 7.3893 6.7744 4.7439 3.7082 1.4685 -2.1681 -2.4628 -6.2634 -5.1931 -15.5390 4.5238
-7.1410 -6.5576 -5.8532 -3.8568 -2.3391 -0.1389 -0.2988 -0.6152 -1.3909 -2.2598 -3.3096 -3.1888 -4.0487 -5.2444 -3.1046 -1.2460 -0.3725 1.6801 1.7857 1.4104 0.4592 2.1738 4.1615 5.0013 6.4493 6.5541 6.1320 7.0552 8.1032 1.4568 1.3024 1.2345 0.1461 -0.9716 0.5343 1.2784 1.2357 -0.0481 1.4818 -7.6504 7.6553
2.7066 2.4471 1.1636 -0.0118 -0.1417 -0.8857 -3.1245 -4.8414 -6.9143 -7.7640 -7.8038 -8.1750 -9.1533 -9.9253 -10.0476 -7.9885 -5.4758 -0.6781 2.4938 3.5356 5.3377 10.4949 13.4549 12.5233 9.2737 7.1566 5.3825 4.3104 2.6502 1.7997 1.0976 0.5063 0.9888 -0.0215 0.8543 0.3799 1.5785 0.4497 0.6056 -8.2389 0.7587
15.6038 13.7257 10.7610 8.3191 6.7695 6.1252 5.5801 6.3511 7.5592 7.0879 5.0425 2.3556 -0.6287 -2.0902 -1.8476 1.1771 5.2180 6.2633 2.3465 -3.3395 -7.6295 -9.3311 -8.2251 -8.2814 -12.4973 -15.3911 -16.5987 -12.5111 -11.9141 6.9187 2.6660 -0.5025 -2.5042 -3.4261 -3.1605 -1.1635 1.6816 1.5678 1.5285 -3.6059 -21.5346
17.6619 19.2955 19.3999 18.1758 14.7064 10.3380 5.4051 0.8448 -2.7673 -5.8069 -8.5749 -10.4074 -11.7428 -13.3545 -14.7279 -15.0946 -14.9717 -14.1635 -12.0366 -9.1704 -5.5296 1.7983 8.7621 10.6721 9.0083 6.2520 0.4593 -2.8951 -1.5362 17.6102 14.9660 11.8151 6.0356 -2.6221 -10.0292 -11.4635 -9.0063 -4.3623 -3.1041 -9.8395 -15.6595
15.5037 19.5752 20.4189 20.0547 19.0780 16.8051 14.6828 13.1886 10.1566 3.7762 -1.1340 -2.4739 -2.6979 -3.0349 -2.9212 -1.9641 -2.1390 -4.2528 -5.4908 -5.4648 -2.3822 1.3316 0.1433 -8.8993 -18.5802 -23.4001 -24.1794 -22.3013 -23.3986 -0.5049 2.4704 -2.1518 0.1889 8.8275 7.0883 -1.7491 -2.8957 -3.5389 -3.5800 -4.1549 -22.0424
22.2571 23.2194 23.3933 23.2954 22.5841 20.0392 15.7479 11.5849 8.7700 7.9103 8.1392 8.4163 7.8831 4.6926 -0.6859 -6.5062 -11.4228 -14.8570 -17.9311 -19.2012 -19.8667 -20.3831 -19.2002 -15.1301 -11.0896 -11.7977 -14.4130 -13.8987 -11.5493 6.2481 3.7903 3.5761 3.3013 -0.8054 -2.9745 -3.0920 -3.5267 -2.4910 -0.8625 -3.1636 -20.4183
9.8965 9.6623 8.3290 7.4658 5.9247 5.2895 3.6738 3.1009 1.1973 -0.2394 0.0744 -0.2488 -1.7673 -2.8794 -4.7879 -4.3784 -4.5885 -3.9967 -2.8591 -1.8656 -2.4063 -3.7709 -4.0771 -4.7175 -3.4331 -2.4372 -2.8219 -1.4458 -1.8932 10.2458 7.5639 2.7680 -9.9537 -3.5803 -1.8907 0.2144 0.7131 -0.3057 0.1415 -5.9163 -11.5491
15.2412 13.6648 11.7460 11.4262 12.4640 13.7257 13.2285 9.7944 4.8606 1.4831 -0.3682 -1.5802 -2.2343 -0.4399 3.1592 4.1899 -0.2603 -4.7397 -7.1446 -6.9457 -6.2341 -4.9071 -5.6164 -9.2612 -10.3548 -11.0953 -11.7433 -14.5977 -17.4609 6.0283 4.4046 1.6269 -0.9371 -1.3835 -1.4248 -1.2533 -0.8106 -1.1426 -1.5174 -3.5905 -22.8504
10.9657 10.2369 8.6562 6.5066 5.4153 4.3801 3.7307 2.9701 3.0231 3.9620 5.6227 6.8354 6.8607 7.7333 9.3711 9.9052 7.3966 2.1887 -3.3161 -8.0311 -11.2107 -14.2345 -15.6874 -15.1299 -12.3738 -7.8431 -8.1800 -10.6370 -9.1168 12.4941 8.2803 6.3797 5.8238 4.5394 1.5368 -3.0238 -7.3749 -9.2127 -8.2187 -11.2239 -21.6561
-1.8184 2.4357 5.5586 6.9268 6.9316 6.6729 5.8397 5.6316 4.9978 3.5427 2.8029 2.1519 1.5431 0.6158 0.3469 -0.5160 -0.7873 -1.1647 -1.4196 -2.0573 -2.9471 -3.3866 -4.0651 -4.9043 -5.5018 -6.2789 -6.6909 -6.9740 -7.4862 0.3871 0.0109 -0.4655 -0.7491 -0.9646 -0.7984 -0.5764 -0.2825 0.8617 1.8001 0.7766 -8.6084
26.9824 24.7422 20.3883 16.4687 12.7850 8.7194 4.1423 1.1187 0.4923 1.2950 1.3167 -1.4325 -5.9855 -8.8959 -10.4619 -7.3170 -2.2777 -2.0173 -3.2424 -2.3419 0.2272 1.3235 1.3113 -5.1772 -12.0604 -15.3385 -15.4975 -15.3067 -13.9604 3.9044 0.9553 -0.1050 -0.6867 -0.6467 -0.6666 -0.6241 -0.2928 -0.2046 -0.3915 -1.2419 -18.1483
17.4264 17.8739 18.0003 19.1004 20.7794 20.0129 15.2235 9.3432 5.1301 3.7231 2.3327 1.2995 1.8338 4.1579 7.7891 10.5489 10.0894 9.6396 4.8572 -4.9005 -15.2998 -20.5168 -23.2742 -23.9530 -23.5530 -22.1290 -20.9638 -20.9315 -23.6395 0.5658 0.7030 -0.1044 -0.6743 -0.6856 -0.7350 -0.3973 0.2942 0.8749 0.8195 -0.6608 -23.7592
11.0645 10.9010 10.3455 9.1551 8.2401 8.4773 10.1716 11.9195 13.3973 14.3030 14.0566 13.0477 11.7356 9.5219 7.8300 6.8087 4.1182 -0.0372 -5.3649 -10.0547 -11.7439 -11.6649 -9.2813 -10.9454 -17.6273 -22.3121 -25.1873 -26.7049 -24.1694 1.5313 -0.0939 -0.8118 -1.4436 1.2266 2.0907 1.6972 1.5907 -0.0005 -1.5372 -4.2496 -26.6400
7.2201 8.5015 11.5206 11.9242 7.9280 3.2514 0.5668 0.7646 1.2768 1.9716 3.4275 3.9772 2.0908 -0.4764 -2.4307 -1.9307 -0.2561 1.3364 0.1271 -2.1785 -4.4197 -5.1263 -6.3740 -7.1163 -6.5611 -6.9173 -7.2567 -7.3864 -7.4542 4.2215 2.4770 1.4908 0.9538 0.2780 -2.2207 -1.8537 -1.0888 -0.2235 0.3010 -4.3353 -11.8723
9.0358 8.4259 6.9459 5.2890 4.7496 6.3098 9.2991 13.3013 15.9079 15.5390 12.4964 10.6440 9.7104 9.7273 8.5423 3.6988 -2.7453 -8.0067 -11.5004 -13.3609 -14.6771 -13.2598 -11.3050 -7.8208 -9.6607 -12.4588 -13.3476 -14.2784 -17.2010 1.6164 -1.2748 -1.3834 -0.4721 0.9792 1.3035 2.0628 2.1638 0.6958 -0.7525 -4.9387 -23.7718
9.9565 8.4628 5.9625 4.3300 2.9878 3.3325 3.4110 2.9855 3.4264 4.1032 5.0697 5.2769 4.9009 3.1001 1.4373 -0.2640 -1.8960 -3.0143 -3.5656 -4.3939 -4.4464 -4.6800 -5.3044 -6.0923 -5.6495 -6.5418 -7.2604 -8.5353 -7.0993 1.0313 1.1537 1.5169 0.9291 0.7698 0.3306 -0.6705 -0.6783 -0.1746 -0.1455 -4.0627 -9.9902
8.8206 8.3311 7.6969 7.4773 8.8832 10.4436 11.5039 11.5920 9.4044 5.3729 2.7965 1.9244 0.8440 0.9343 3.0627 6.0994 4.9989 -0.1279 -4.3740 -6.7306 -7.8914 -6.9026 -5.4598 -8.4881 -12.8495 -16.5109 -17.0277 -14.2238 -9.5997 15.6704 10.6049 9.8440 7.9028 1.2354 -5.4491 -8.2374 -7.8730 -7.9121 -7.2858 -8.5000 -25.1681
28.0340 39.0868 27.1887 10.6361 11.9455 17.4394 5.1212 0.4727 0.9604 -3.2583 -4.9003 -4.7245 -5.4538 -5.8998 -6.9947 -8.1227 -7.9559 -7.4467 -7.2961 -8.3144 -8.2615 -7.4930 -6.2339 -6.9302 -6.7710 -7.9933 -8.7878 -9.0802 -8.9666 0.2832 0.1164 0.0146 0.0499 -0.3417 -0.2028 0.0292 -0.0176 0.3328 0.3092 -0.5731 -8.1546
13.2856 13.6736 13.8385 14.2800 16.0154 17.1010 16.3952 13.2274 9.9508 8.9754 9.0915 10.0588 8.7910 4.7013 -0.6836 -5.8039 -9.0189 -11.2256 -12.7340 -12.4440 -11.1395 -8.8600 -7.8172 -12.7618 -18.4517 -20.0185 -18.1437 -12.9371 -7.3458 15.2491 9.0836 7.8889 2.1805 -3.0815 -5.2994 -5.5285 -5.1346 -5.1469 -4.4882 -5.7230 -22.9727
13.2791 36.0460 37.8677 20.5156 1.8115 5.3912 6.3369 -1.8419 -4.5104 -2.1483 -1.6031 -4.4187 -2.3622 -5.5552 -5.8859 -5.4153 -6.3869 -5.0848 -6.7256 -6.3113 -6.6644 -6.7067 -6.3379 -7.1113 -6.5094 -6.6908 -7.2644 -7.5701 -8.1431 0.0788 -0.2498 0.1241 -0.2112 0.0855 -0.0675 0.3132 0.2893 0.0553 0.4068 -0.8245 -8.0347
7.9344 6.5125 3.7957 3.5965 6.7588 12.6940 16.5097 15.1028 8.0593 1.9598 -1.2146 -2.5926 -3.3772 -1.3486 3.1728 5.8914 1.9225 -4.7654 -9.1401 -9.7051 -8.8318 -4.5607 -2.0376 -6.2450 -8.0736 -8.0805 -5.2827 -6.9369 -11.7180 7.2258 3.3652 1.3586 -1.1046 0.1664 -0.3445 -1.1860 -1.2597 -1.3364 -2.1233 -4.7616 -22.1072
21.0378 20.1437 17.5203 14.9435 12.2481 9.7639 5.5990 1.4969 -1.3751 -3.1146 -3.9190 -4.7517 -4.5423 -4.8816 -3.7907 -3.1560 -2.1567 -0.7505 0.1795 -0.4587 -2.1088 -3.6718 -5.6034 -7.3929 -8.2906 -9.5520 -10.5896 -12.2849 -10.5415 -10.7549 -8.4301 -5.8121 -1.4994 2.1408 6.5891 7.6924 9.5764 7.2596 6.0779 -12.8398 -1.9629
10.7156 9.5865 7.6225 6.9649 7.0204 6.9685 5.2279 3.7124 2.4551 1.6576 1.9988 3.6736 4.0688 1.8389 -1.2786 -2.3368 -0.4395 1.0954 3.9267 3.5576 -1.4334 -6.6048 -9.7760 -10.9008 -10.7709 -9.3430 -10.2106 -9.7590 -9.2378 2.5943 0.3766 -1.2329 -1.3523 -0.5254 -0.1927 -0.3463 -0.4383 0.4702 1.6846 -1.0379 -12.5558
24.0580 24.4379 23.9745 23.0444 20.8465 16.8979 11.8130 7.1514 3.3680 0.5959 -1.6053 -3.7180 -5.6992 -7.0693 -6.5902 -3.1806 1.0957 2.1175 -1.3667 -5.8106 -7.7326 -6.3061 -6.7167 -11.4328 -17.2877 -19.9514 -19.4929 -18.2702 -17.1703 1.8172 -0.1844 -0.2118 -0.1481 -0.6409 -0.6132 -0.3659 0.2614 0.3884 0.5934 -0.8960 -20.2332
19.4765 20.1390 19.4603 17.8222 14.3397 10.2003 4.8581 -0.7364 -4.1646 -6.0966 -7.2789 -8.6454 -10.5389 -11.5302 -9.4624 -7.2408 -3.9524 -2.2222 -4.3879 -6.9029 -9.6078 -8.5139 -4.7196 -4.0072 -5.4425 -3.2306 1.5193 5.0300 5.8358 16.6913 13.7800 8.0790 4.9477 0.9965 -4.7924 -7.0379 -7.8346 -6.8472 -7.4504 -10.5321 -11.1317
18.8135 17.0829 14.0965 11.2672 7.9285 3.6326 1.0246 1.6274 5.2441 9.5096 12.7855 11.9891 9.9900 8.1345 7.9624 7.3196 8.1668 7.4695 3.3884 -5.5692 -13.6276 -18.3033 -22.2152 -22.3568 -16.4382 -9.9941 -12.6602 -22.2049 -24.0632 8.0300 3.8659 0.4870 0.5409 0.8745 -0.3373 -1.1358 -2.3213 -3.1408 -3.2458 -3.6172 -26.2789
-3.1846 -2.1461 -1.3884 -2.1168 -3.4536 -2.2068 -1.9328 -3.2837 -4.0724 -3.4451 -3.7064 -3.4490 -5.5867 -7.8526 -8.9224 -10.9618 -10.4140 -7.1444 -2.6930 1.6890 4.0196 6.3300 6.7767 10.2897 10.6153 11.6584 13.3164 12.9788 10.2869 -8.7628 -13.5736 -14.7094 -7.7628 -1.0738 2.3985 3.7455 7.9153 9.1097 10.9709 11.7425 19.7352
7.2036 10.7988 12.0301 12.6700 13.9090 16.0294 17.1742 15.7924 13.0556 11.3737 9.8981 9.7580 10.0550 8.6757 4.3930 0.9731 -2.5467 -5.8685 -7.3935 -7.9704 -6.2553 -7.4006 -13.7008 -21.8328 -25.5284 -24.9555 -17.2740 -13.6475 -19.4157 -0.8046 -1.7221 0.6106 5.7975 8.4089 4.3333 -1.5262 -3.2110 -3.4206 -4.0492 -4.4166 -25.3279
15.5255 15.8281 15.8649 15.5717 15.2512 14.5946 13.3549 11.7660 10.2176 8.4641 7.0906 6.0253 5.1563 4.7439 4.4714 3.6019 0.9681 -2.7655 -6.2281 -9.0931 -11.2485 -13.4855 -15.2719 -16.2999 -17.2510 -18.5206 -20.9106 -20.3915 -17.0300 7.3780 8.0307 7.8850 7.6236 5.1345 1.2557 -3.7418 -6.8045 -8.6459 -8.6051 -9.5101 -22.9827
26.7348 25.8552 24.2536 22.1680 19.2892 15.0670 11.8818 10.3490 10.6841 11.6366 12.5339 12.4939 11.6206 9.1288 4.6195 -0.5596 -5.8142 -10.4221 -14.3446 -17.6431 -19.9802 -21.2101 -22.1807 -21.9000 -20.1487 -18.1387 -18.1454 -19.6347 -18.1941 5.5041 1.7390 -0.1498 0.3482 -0.1172 -0.9670 -1.1456 -1.3452 -1.2394 -1.1363 -1.4910 -21.2326
16.9370 16.4331 14.8117 13.5840 11.6269 10.1575 7.6822 5.8162 3.2955 0.7078 -0.9400 -2.4858 -3.3054 -4.9715 -5.4040 -5.2105 -5.0578 -4.9223 -4.7159 -4.8903 -5.6388 -6.4062 -6.4586 -6.1964 -6.2205 -6.7543 -6.8166 -7.3223 -7.3349 -2.3860 -1.5474 -0.5275 -0.2007 0.8700 2.1354 2.2672 1.9194 1.3885 1.7931 -5.7120 -7.0233
18.1837 17.9105 17.8502 18.6001 17.6649 14.2299 8.9135 3.9793 0.2595 -2.5341 -4.9127 -7.3705 -8.6080 -10.0958 -9.6568 -8.5105 -6.6859 -1.7349 3.3029 3.1008 0.1928 -0.6889 -2.6251 -6.0340 -10.0800 -12.4257 -10.0527 -7.9815 -14.1909 -0.8841 -2.2545 -2.1948 -0.1934 1.8452 1.5870 0.0467 0.8860 1.7017 2.0046 -2.5444 -18.3771
8.7179 7.6147 4.8975 2.3828 0.6009 0.0492 0.7007 3.0024 5.6126 8.3164 9.7108 8.5643 5.5842 2.4437 0.8618 1.4883 2.2665 4.0837 2.0839 -2.0359 -5.2412 -7.0937 -7.9286 -7.0963 -7.3007 -8.8955 -10.5985 -11.5307 -11.2613 4.1091 1.9827 0.6908 -1.0075 -0.1945 -0.4742 -0.4650 0.2047 0.0728 -0.1453 -4.7735 -16.8928
26.5577 26.0733 24.6549 22.5723 19.6449 15.1079 9.6936 5.0965 2.0343 0.4929 -0.5100 -0.7852 -0.6639 -1.6495 -4.5761 -7.3418 -9.5136 -10.9969 -12.3139 -12.6940 -11.8566 -8.9787 -3.5622 1.2887 1.2102 -6.9904 -16.4084 -22.1027 -23.4832 -1.8879 0.4885 2.0094 -0.3326 -2.5347 -2.2882 -2.5729 -1.0909 0.4876 5.9716 1.7500 -19.5897
35.3242 34.3711 32.2680 29.4806 25.8876 21.5217 17.0469 12.7325 8.2745 3.7170 -0.9461 -5.4939 -9.1998 -10.9322 -11.5916 -11.7605 -11.9938 -12.5431 -13.0923 -13.2971 -13.3947 -13.1377 -12.6123 -12.5003 -13.0962 -13.2815 -13.6530 -14.1174 -13.9808 0.5697 0.0342 -0.0298 -0.0559 -0.1023 0.0891 -0.0151 -0.1749 -0.0061 0.0508 -0.3598 -13.8339
10.0703 9.7251 9.1433 8.8944 8.6180 8.9798 8.7995 7.6156 6.5867 6.0265 5.9165 4.8201 3.4139 2.6360 2.7630 3.8113 3.0665 -0.1580 -4.1852 -6.9646 -8.5002 -7.9262 -6.4833 -8.3135 -11.7801 -15.4185 -14.2921 -13.7284 -13.1365 1.2932 3.3955 6.0907 4.2778 4.2667 1.2855 -2.6003 -1.0796 -3.6746 -1.8634 -11.3916 -19.3656
23.3051 24.1993 23.9215 23.6862 23.1858 21.5213 18.1183 13.5369 8.5586 3.3648 -2.7305 -8.4197 -12.7332 -14.9501 -15.7545 -16.1289 -14.8115 -12.7042 -10.1815 -6.8723 -4.1455 -3.1746 -3.2618 -1.9552 -2.0348 -7.0796 -14.1032 -17.0807 -15.2758 6.0612 4.0067 0.6827 -0.7321 -1.3626 -1.3544 -1.3699 -1.2448 -1.0738 -0.8706 -2.7423 -19.3798
15.2674 16.9866 17.1277 16.7099 15.7308 13.2318 9.2970 4.9391 0.8073 -2.3215 -4.1763 -5.4190 -5.9209 -6.5426 -6.5178 -6.1109 -5.5659 -5.2001 -5.0134 -5.0517 -5.0368 -5.4231 -5.5314 -6.1976 -6.3703 -6.2889 -5.3624 -6.1367 -5.9099 -8.0750 -7.3361 -4.4931 -3.1183 -2.2693 -0.4450 2.6648 5.7080 7.3558 8.7204 1.2878 -1.4334
16.2521 17.5727 18.3716 19.7318 20.2218 17.5895 11.4595 3.5824 -4.4163 -9.7646 -11.0944 -11.4598 -11.7153 -11.2087 -10.3436 -9.4990 -7.9409 -5.7447 -1.7839 3.2246 5.5449 5.2691 3.5281 1.4077 -0.7885 -7.8706 -13.4426 -14.7741 -11.9087 8.1501 11.0831 13.4143 10.3995 2.9803 -3.3969 -7.2017 -8.5882 -8.4386 -8.7227 -9.6791 -18.7880
13.3298 15.6004 16.9495 17.9742 18.6413 18.0052 15.3407 10.8188 5.7704 1.6139 -1.5541 -4.5241 -6.8500 -8.6887 -10.0915 -10.3456 -9.1067 -7.2349 -3.6908 -0.4604 -0.7272 -4.5894 -7.5233 -6.1277 -2.5212 -4.8361 -11.8782 -16.9767 -16.3176 9.5140 11.6129 9.6344 6.8283 1.8214 -5.0008 -6.9907 -7.4822 -6.7860 -5.3530 -7.7983 -21.5097
5.8509 5.0121 4.1809 3.1146 2.3783 3.1729 5.0219 8.3707 10.9759 11.2270 8.3063 4.3902 0.4943 -2.3167 -1.6450 1.9935 5.6473 4.3761 -0.8021 -4.8923 -7.3829 -8.9257 -7.0734 -4.5608 -5.6127 -9.9029 -12.5815 -12.1258 -6.6911 19.4769 13.9666 10.8452 9.4207 4.2670 -4.7851 -10.4839 -11.6782 -11.7512 -9.0329 -10.2450 -24.1213
21.8999 23.2973 23.7997 23.4635 22.0363 18.0109 11.7586 5.0662 0.6662 -2.2727 -5.6763 -8.5064 -10.4473 -10.5884 -9.8688 -7.3515 -1.6565 4.9891 8.0386 5.1463 1.6954 -0.6651 -6.4585 -12.0333 -17.0640 -19.1042 -20.0560 -19.6043 -18.5148 1.3036 -0.0062 -0.2979 -0.3133 -0.5330 -0.7489 -0.3368 0.3007 0.2781 0.7521 -0.3986 -20.6963
-10.8987 -3.8431 0.8023 3.7818 5.0658 6.8699 5.8536 5.2186 3.8311 2.2420 1.7635 0.0185 -1.2264 -1.7443 -3.2128 -1.6985 -0.4682 -0.6943 1.3731 2.1612 2.0833 0.9470 -0.8848 -2.3964 -2.7117 -2.4339 -2.8978 -3.2996 -3.6012 2.7097 2.9692 3.1594 3.0175 3.5504 2.5518 -0.2289 -2.0950 -2.3143 -3.3310 -9.9888 -7.1246
24.4808 26.3759 27.5940 28.3806 27.5669 22.5831 15.7417 10.5723 9.0486 9.8475 11.5983 11.3131 7.1102 0.2086 -7.1702 -11.9730 -14.3609 -16.1449 -17.3317 -17.8091 -17.4066 -16.0482 -15.0664 -15.2895 -16.4422 -17.0076 -17.0725 -17.2911 -16.0079 1.3349 -0.0323 -0.0023 -0.0696 -0.4582 -0.2103 -0.2903 -0.1486 -0.0517 0.5839 -0.6555 -18.4443
17.9414 16.0904 14.3699 13.3391 11.1223 8.3964 4.9840 2.4988 0.7921 0.1608 -0.2310 0.1816 -0.4705 -2.1166 -2.9171 -3.7835 -3.0302 -2.2559 -1.9600 -0.9583 -1.2307 -3.4055 -6.3253 -8.4085 -9.7194 -10.3891 -10.6675 -10.8207 -11.1873 1.0986 0.4777 -0.0911 -0.0850 -0.2734 0.0140 -0.2098 0.7129 0.8980 1.8977 -4.4395 -12.1029
12.4723 14.3737 15.7331 17.5345 18.5865 17.4102 13.1675 8.1222 3.7914 0.4168 -2.7856 -5.0694 -6.1658 -6.8186 -6.5122 -3.9192 0.1995 5.0703 4.8669 1.2909 -0.9029 -1.6452 -6.8885 -13.7427 -17.9265 -18.6395 -13.8409 -11.8927 -16.2860 1.0018 -0.4130 0.2921 0.9706 3.0372 2.3311 -1.1419 -1.4680 -0.8370 -1.0945 -2.6785 -23.0503
16.1352 15.6199 13.6322 10.9321 8.0808 7.3912 8.2284 10.3433 11.9724 11.5988 9.3631 5.6849 2.7468 -0.1363 -1.7113 -0.5317 2.3026 3.9081 0.3916 -4.3635 -7.2068 -8.5384 -8.4550 -8.9540 -13.2029 -18.1608 -21.6849 -22.2538 -23.1320 1.1059 0.2225 -0.9789 -1.0458 -0.6792 -0.6786 -0.0893 1.8547 2.2928 0.8548 -2.8591 -24.9911
28.0419 26.8927 23.9676 20.3423 17.0949 14.1432 11.1170 8.5048 5.9497 3.7523 1.8284 -1.1682 -4.2200 -7.3805 -9.6413 -9.8772 -7.8838 -5.3446 -3.5410 -3.9253 -6.0372 -7.8179 -8.6390 -8.2594 -11.0251 -14.9594 -17.1292 -17.6345 -17.1513 2.0146 1.0165 0.2708 -0.3124 -0.5924 -0.7003 -0.5256 -0.1176 0.1111 -0.0740 -1.0907 -18.2597
30.4937 29.9533 27.0130 23.2537 19.3056 15.2225 11.4303 9.6244 9.1658 8.8058 7.5946 3.9214 -0.3706 -4.6724 -8.3883 -10.6272 -11.6333 -12.3129 -12.9451 -13.0994 -12.8851 -12.7290 -13.3639 -13.9071 -13.6304 -13.0095 -13.0398 -14.2416 -14.9284 0.6244 0.4573 0.2518 -0.4563 -0.2954 -0.1108 -0.0098 0.1405 0.0912 0.3156 -1.0087 -16.5521
23.7058 24.6386 24.6540 23.9896 22.7528 20.4522 16.9148 13.0348 9.6982 7.0016 4.5976 2.1220 -0.6149 -3.6746 -5.8863 -5.9902 -4.5281 -3.6266 -4.8920 -9.1128 -13.5269 -16.4106 -17.2411 -16.4096 -15.1425 -15.8149 -18.5726 -21.0323 -21.0860 0.9700 2.5909 2.5737 1.8731 0.5116 -0.3889 -0.5545 -1.3812 -1.8817 -1.7258 -2.5873 -20.1722
22.2050 22.3808 20.3781 16.4796 12.6684 8.8562 3.8726 -0.8910 -3.6288 -4.2849 -3.4387 -1.6917 0.1253 1.9297 2.5614 1.1487 -1.7631 -3.8451 -4.6916 -4.6895 -4.3072 -5.2689 -7.0584 -8.3927 -8.7357 -10.2762 -11.8104 -13.7994 -14.0324 5.7540 5.5094 3.1104 0.8059 0.0318 -1.6334 -2.2746 -2.0707 -2.1335 -1.8766 -5.2228 -18.1315
17.6753 18.8195 20.1357 22.2056 22.9569 20.8704 15.5249 10.2701 6.9749 6.5302 7.5814 7.0271 2.6959 -1.7891 -4.8427 -7.5373 -9.7567 -11.0890 -11.6891 -11.8800 -12.2196 -11.3183 -11.2853 -12.8185 -14.2184 -14.2772 -13.2856 -15.1315 -16.1298 1.6839 0.9589 0.5363 0.3560 0.0003 -0.3851 -0.4445 -0.1741 -0.4978 -0.0434 -1.9906 -19.7528
16.9830 17.0052 16.9926 18.4021 19.9925 19.1283 15.4081 10.3401 5.5724 1.5019 -1.4332 -3.0065 -3.3422 -1.3956 2.0439 4.2794 1.1281 -3.7178 -7.4632 -8.5376 -7.6364 -6.3039 -11.6545 -18.3967 -21.4453 -20.7880 -16.5366 -10.0359 -7.0843 11.0713 4.6537 0.5072 -0.3393 -0.6602 0.5953 -2.0626 -2.4851 -3.0603 -3.5773 -4.6428 -20.8691
17.7707 19.5364 20.6287 20.9849 20.0930 17.6674 14.5484 11.0817 6.9020 2.2545 -2.3356 -5.7371 -8.9898 -12.8304 -15.5822 -17.0433 -18.8124 -19.7104 -19.4116 -18.1842 -15.3531 -8.7155 -0.1993 4.7176 5.4518 4.7364 1.7967 -2.2008 -3.0647 15.0410 12.3154 5.6659 1.3689 -3.8672 -5.9083 -6.0931 -4.9235 -3.3736 -2.9423 -7.2832 -16.8582
9.1549 8.6933 7.8990 7.7096 7.5098 8.0171 9.2410 10.6919 12.1971 13.4831 13.6508 14.1654 13.7371 10.9089 4.6506 -2.3217 -5.6454 -8.0201 -9.9057 -10.0159 -10.6042 -10.3898 -8.1978 -9.7430 -12.7378 -17.4512 -17.2848 -13.5900 -15.8022 0.6882 4.3643 6.0400 2.5052 2.9297 1.4706 -1.9898 -0.8867 -4.2772 -3.0450 -7.7994 -22.2645
-7.8843 -6.8506 -6.0261 -4.4439 -3.8369 -1.9649 0.3352 2.3185 3.0465 3.3257 3.5540 4.6680 3.7349 2.5291 2.4128 3.7790 4.5682 5.6219 5.4149 4.7479 2.2185 -0.8515 -1.7161 -2.4559 -2.0632 -2.2051 -3.7165 -3.1032 -5.1569 8.1350 6.3528 5.3232 1.0605 1.2735 0.2509 -2.2104 -2.9957 -3.4893 -2.5108 -11.1898 -12.1806
19.3396 19.9410 20.3727 21.0809 21.0327 19.1352 15.1028 10.7594 7.8609 7.5499 8.5005 9.7060 9.1824 5.3617 -1.3028 -5.6212 -8.2717 -9.5373 -9.7484 -8.8869 -7.1221 -9.0450 -14.6697 -18.5948 -20.2891 -20.4076 -19.8130 -20.1946 -21.4218 1.2915 0.6782 0.3569 -0.0683 -0.4830 -0.2926 -0.3937 0.2610 0.1608 0.1333 -1.6440 -22.5256
2.7246 2.5148 1.4831 1.8238 1.6121 2.4035 2.7381 2.9387 2.1358 2.0826 2.3275 2.3406 1.9098 0.1135 -0.7424 -0.9928 -0.9805 -0.2098 0.5803 0.3688 0.0187 -1.6561 -1.4168 -1.4577 -1.3632 -2.6140 -4.7663 -7.0691 -6.8479 2.3665 2.3301 1.9626 1.0968 1.9491 1.1267 -0.1355 -0.0256 -1.2772 -1.4379 -7.9556 -8.3907
4.5290 1.5249 0.3659 0.0056 0.8630 3.3152 1.1307 -3.3632 -4.3601 -3.7553 -5.0257 -5.6659 -5.3754 -4.9885 -4.3119 -4.9927 -6.0531 -10.2279 -4.3307 2.1887 3.8591 8.8378 4.5088 3.9006 4.9936 11.1237 3.0140 -1.5171 9.8068 13.2445 7.3306 5.9252 9.0687 7.7216 4.0675 11.9777 11.3110 -23.2633 -23.8643 -23.5193 -4.4759
22.1510 23.1727 23.3097 23.0639 21.6223 18.4164 13.8969 8.9695 4.5053 1.2957 -1.3036 -3.3247 -5.1402 -7.1172 -8.6948 -7.8753 -4.6461 -1.4461 -1.0227 -4.3094 -8.8842 -11.9962 -11.9234 -9.0257 -6.5369 -10.3321 -16.4292 -19.9706 -20.4250 2.3851 5.8201 6.5059 3.9876 0.3330 -2.1429 -2.8980 -3.4857 -3.4682 -2.4183 -4.6186 -20.0780
11.7456 12.7989 13.3162 13.8312 14.7779 15.3799 14.0233 10.9089 7.3194 4.1768 1.7992 0.0512 -0.9458 -0.5202 1.3786 3.4860 2.0668 -2.3920 -7.4022 -10.7590 -12.9261 -14.3064 -12.7761 -8.6791 -8.3015 -10.8632 -13.2729 -14.2798 -9.6355 15.8594 13.6933 9.1741 8.4349 3.8782 -4.9728 -8.7226 -9.3197 -9.3643 -8.7767 -9.8839 -22.4690
22.5139 20.9546 19.1373 16.9050 14.6133 12.3135 10.2395 8.4844 6.9510 5.0069 2.4662 -0.4380 -3.5684 -7.0424 -9.9771 -11.1936 -9.8800 -6.3251 -3.0189 -1.9735 -4.9442 -9.7372 -12.9352 -11.8709 -6.8801 -5.6880 -9.6188 -12.4995 -11.9948 12.0588 11.2938 8.1711 2.3960 -3.1587 -5.3733 -5.8980 -5.6220 -4.8347 -3.2857 -5.7474 -21.5935
26.6734 23.8620 18.3470 12.7193 8.0473 4.8602 2.4155 1.4627 1.0558 0.6193 0.2671 -0.5986 -1.6798 -2.4678 -2.2065 -2.9360 -2.8372 -4.0092 -4.4380 -5.3046 -5.8491 -6.4148 -7.4157 -7.9456 -8.4776 -9.0352 -9.1998 -9.5061 -10.0078 1.6300 1.3410 0.6385 0.2013 -0.3629 -0.2927 -0.3661 -0.3133 -0.0630 0.4392 -2.8520 -12.0787
9.0155 7.9133 6.4106 6.4968 8.6477 11.6576 14.8601 16.0323 14.2529 11.8653 10.9041 9.9373 7.2309 2.3059 -4.1636 -8.0163 -9.7982 -12.7129 -15.1421 -15.4797 -14.8005 -12.8340 -10.4715 -5.8560 -5.3611 -5.0344 -3.5840 -5.3517 -8.9240 11.0430 4.7986 3.1188 -0.3636 -1.4561 -1.9319 -2.5464 -2.3041 -2.3666 -3.0258 -4.9659 -22.6702
9.0489 10.4274 10.5425 10.8125 12.0032 13.7184 13.0711 9.6959 5.4837 1.6077 -1.9964 -4.4495 -7.8808 -10.2103 -11.6407 -11.4255 -9.7241 -7.5467 -3.5478 1.8951 3.5718 1.5955 -0.5403 0.5662 0.2415 -4.3154 -9.5295 -11.0052 -10.4693 11.1024 7.2333 6.1462 4.3929 0.7029 -2.0309 -3.7294 -5.1402 -4.8388 -4.6151 -9.2233 -21.2734
11.5593 10.3420 8.9170 7.7962 6.0867 5.9638 3.8519 0.4188 -0.7715 -1.3184 -1.5894 -1.6173 -0.5956 0.0397 0.9980 0.6720 -0.2103 -4.0838 0.9485 2.7667 1.7723 -0.8231 -4.4419 -7.1686 -8.5571 -4.2281 -12.0695 -12.5608 -2.0974 7.0256 2.5786 2.8194 7.2989 5.3493 3.5256 11.6032 11.1767 -16.6084 -17.8153 -16.9535 -14.6567
24.2288 25.1078 25.3408 25.2954 24.6890 22.7229 18.9908 14.5853 10.6023 7.4918 5.2132 4.6660 5.1836 5.0476 2.8795 -1.3269 -6.1170 -10.7585 -14.7563 -17.5071 -18.3274 -18.4398 -17.9983 -17.5700 -18.5575 -19.7750 -20.4184 -20.5476 -19.9453 1.4677 0.8990 0.5256 0.5195 -0.1930 -0.5086 -0.7678 -0.6113 -0.2499 -0.1187 -0.9625 -20.0880
1.3606 0.3524 -0.4981 -3.0376 -5.4591 -5.1861 -5.3381 -7.9395 -4.6276 -1.6746 -2.1073 -1.7720 2.3082 5.2620 5.3649 4.6501 3.6803 -1.4394 4.4940 9.4882 7.6591 6.7428 -0.6196 -2.1749 -1.2855 2.9511 -4.6673 -9.5251 3.0380 18.0806 14.1151 9.1210 5.7949 2.4151 -7.5054 6.8950 -0.4827 -16.5385 -16.0700 -15.8252 -15.5778
21.5243 22.4067 22.6543 21.9383 19.0581 14.0232 8.4188 2.8494 -1.1924 -2.9917 -3.8222 -4.1823 -4.8633 -4.9565 -2.8338 0.9516 2.0941 -1.6445 -6.8552 -9.9590 -11.1205 -11.0602 -8.6668 -7.9525 -10.6286 -14.0950 -13.9349 -10.3116 -4.8478 13.9994 11.9398 8.0010 4.2542 -0.6981 -4.9047 -6.1557 -6.5212 -6.7797 -5.8456 -7.2894 -17.9998
13.8275 13.6751 13.2793 13.1536 13.5104 14.6497 15.6909 16.1684 15.2109 12.8857 9.6156 6.4230 4.2876 3.2525 3.1015 2.9273 0.8232 -3.7600 -9.4442 -13.3046 -15.6203 -16.1398 -14.4329 -11.4384 -11.9914 -16.0394 -20.1422 -21.4553 -18.7137 9.9896 6.0754 2.5716 1.2147 -0.1252 -2.8394 -3.5768 -3.1998 -3.2277 -2.5626 -4.3197 -26.1243
1.0072 1.0349 0.4547 2.0233 3.1568 3.6248 2.6871 2.1595 0.3986 -1.1817 -0.8372 -0.4964 -1.1310 -1.3530 -1.2089 0.5624 1.6332 2.6953 2.6143 2.1661 1.0687 -0.5002 -1.8630 -2.0422 -1.9290 -2.0051 -4.7328 -5.7009 -2.3057 -9.2017 -9.1260 -10.3545 -1.5749 2.8548 5.5584 7.3199 8.4704 7.1113 6.4743 -7.5320 8.8174
22.3237 20.1229 16.3186 14.9885 15.8060 14.2422 9.0206 4.5767 2.3692 1.2439 -0.3609 -2.4418 -4.3713 -8.0945 -10.8110 -9.9282 -5.6299 1.8658 5.9594 1.6554 -4.8836 -8.0129 -7.8686 -4.1518 -10.8846 -16.3956 -17.6436 -10.8807 -8.1336 8.1699 0.1374 -2.1155 -2.7808 -2.5717 -2.5099 -1.4743 0.4020 2.8792 2.7754 -2.9117 -19.9846
14.9448 13.3235 11.0690 7.7970 3.6467 1.2905 -0.1418 0.0865 0.0848 0.1249 -0.0042 -0.4006 -0.5457 -2.0216 -2.4005 -2.6631 -2.7574 -3.4930 -3.6341 -4.8530 -3.8008 -4.5467 -3.9983 -3.1834 -3.3005 -2.2570 -2.3485 -2.8054 -3.2121 -8.3072 -10.2892 -11.0655 -7.2025 -2.5835 1.3158 3.9103 6.1494 8.7822 9.4411 9.8490 4.1623
17.4109 16.3957 12.7323 9.0568 6.0296 4.0628 1.3809 -1.0636 -2.5917 -3.1282 -2.4806 -2.6332 -2.6331 -3.0197 -3.1246 -3.2078 -3.2369 -3.3087 -3.5259 -3.6952 -3.2777 -3.5126 -3.3483 -4.6082 -4.5229 -3.9702 -2.8815 -2.2298 -1.0686 10.2492 8.7238 6.5287 4.1319 1.3909 -1.3457 -3.1912 -4.0830 -5.8573 -5.7467 -10.8007 -10.7504
3.6810 4.8086 4.9739 5.5677 4.9032 4.1256 1.8122 0.1556 -1.1456 -2.1369 -2.2315 -2.0785 -3.1848 -4.0677 -5.2026 -5.8769 -6.5043 -6.1685 -5.6023 -5.9105 -4.2511 -1.3453 1.8335 3.4033 5.1448 5.5509 4.8678 3.4921 1.3864 4.5899 3.1561 2.1086 1.0104 -0.3847 -0.6586 -0.6429 -0.1120 -0.4119 -0.3363 -8.3185 -3.2346
3.1333 2.2434 0.5660 -0.1689 0.6551 3.1370 6.4778 9.1712 8.4572 6.3300 4.6298 2.8657 0.1787 -1.1319 -0.2827 2.3196 5.5007 6.1676 2.4317 -1.1696 -3.2988 -3.3141 -2.9589 -3.5360 -5.2348 -8.6527 -10.1506 -11.6535 -12.7119 12.8762 10.2239 6.7637 2.0074 -1.9484 -4.8866 -5.3018 -4.5051 -4.3255 -3.6989 -7.2049 -23.9005
8.6220 10.8825 12.2872 13.3601 14.2280 15.3604 14.9416 12.8140 8.4375 3.9118 -0.1235 -3.3572 -6.8491 -10.5514 -12.6045 -13.2373 -13.4285 -13.2888 -12.4858 -9.8652 -5.1267 0.8370 1.7581 3.1241 4.1350 -0.4102 -5.4532 -8.8060 -9.1118 14.9701 12.4418 7.1314 0.5687 -6.4070 -6.8941 -5.5568 -3.3084 -2.3663 -1.6449 -8.9346 -21.6106
19.1182 16.6713 12.8335 8.8739 6.1759 6.2230 7.5297 9.2506 9.4142 7.8053 5.9066 4.3378 3.9155 4.5696 4.9822 3.2409 -0.8415 -5.8082 -9.1525 -11.0999 -12.9425 -14.8404 -14.6104 -11.5397 -8.3035 -9.3615 -9.7422 -9.9642 -12.6415 4.2777 1.5675 1.0684 0.6135 0.0628 -0.5807 -1.1085 -1.0788 -0.8209 -0.6136 -3.3875 -20.5875
0.8644 0.9240 0.5001 1.9751 3.9631 6.3687 6.1077 3.6220 0.7094 -1.0962 -1.8495 -2.7933 -4.0125 -4.8808 -2.1854 1.6422 4.3506 5.1936 3.1952 -0.0683 -2.2673 -2.2756 -2.5661 -3.5305 -3.3037 -2.7368 -2.4517 -1.7145 -1.6839 4.7659 4.9768 3.8161 1.7084 0.2338 0.0457 -0.5947 -0.8458 -1.4961 -2.2835 -10.3266 -8.0604
22.8493 23.0279 22.4564 21.7830 19.7630 14.2941 7.4867 2.4477 1.1542 1.7020 2.1450 2.1381 2.9526 3.5821 3.5140 2.5293 1.8263 1.6906 -0.1177 -4.3580 -9.4178 -13.6122 -17.0109 -18.1586 -18.2289 -17.0887 -18.0638 -20.2393 -21.0462 1.9050 0.4924 0.1429 -0.1603 -0.2972 -0.2106 -0.5323 -0.0051 -0.0488 0.0713 -1.3573 -21.7449
-5.0691 5.7916 20.3977 33.7608 20.5478 6.3862 -0.6167 2.4285 7.7738 0.6480 -5.4985 -5.1477 -2.1058 -9.1202 -9.7561 -5.6897 -8.4994 -6.6489 -4.0490 -6.3900 -1.1222 -4.7105 -1.2435 -3.1404 -0.4670 -1.2691 -3.2353 -6.3597 -7.5957 2.6335 2.9453 2.3526 1.7483 0.5793 -0.6841 -0.6920 -0.5880 -1.6805 -2.0348 -4.5797 -8.0873
27.8982 26.1875 22.3314 17.8436 13.6570 9.3782 4.5001 1.0587 -0.1319 0.5334 2.2176 3.9007 4.3904 2.8784 -0.5056 -2.7187 -4.2442 -4.9618 -6.1501 -6.6560 -6.3475 -6.6372 -7.4694 -9.8220 -14.6530 -16.2989 -16.6133 -16.9745 -16.5912 1.5751 0.2732 0.3920 -0.1605 -0.6644 -0.5397 -0.0300 -0.1057 -0.0387 0.4893 -1.1907 -17.7674
4.0687 5.1941 6.0984 7.7169 8.4142 8.8229 7.3250 5.7734 4.1436 2.4793 2.4633 2.0981 1.0790 0.0726 -0.0934 -1.1969 -2.7251 -3.5007 -3.7768 -4.1983 -4.4360 -4.9365 -5.3239 -6.0842 -6.5913 -6.0399 -5.6196 -5.4516 -5.7753 2.3864 4.1318 4.1698 4.0758 2.9462 1.5278 0.0907 -0.4889 -3.3101 -2.5223 -13.0073 -9.7421
-2.5217 6.6906 18.9380 32.5385 26.0727 10.4378 1.8923 3.8920 11.1274 10.8157 0.2901 -2.1358 1.8304 0.1110 -6.1198 -3.9839 -1.5639 -5.8130 -5.0685 -6.2978 -9.3560 -8.6952 -9.9906 -9.6668 -9.2810 -8.9004 -9.6041 -12.9599 -12.6780 1.0846 1.2730 0.8512 0.3292 0.2685 0.1416 -0.4299 -0.2512 -0.6945 -0.7869 -1.7857 -11.2964
9.0608 8.3549 5.9106 3.0223 1.5989 1.4872 0.5967 -0.7899 -2.0584 -2.6475 -1.9940 -0.9341 -0.2649 0.8782 0.8190 0.7941 0.2218 -0.2750 -0.3771 -0.9402 -2.1665 -2.7001 -2.9780 -2.6056 -1.9810 -2.2466 -2.1946 -2.6591 -2.9316 2.9882 2.9231 2.3934 1.2468 1.7808 1.5958 0.9538 0.0307 -1.6679 -1.9384 -10.3063 -6.9292
25.3209 26.4747 25.0162 21.0118 15.7497 9.7187 3.2049 -2.7534 -7.5484 -11.3498 -13.8939 -15.3292 -16.7275 -17.7766 -18.3047 -18.0188 -16.5419 -14.8140 -11.1748 -6.2506 1.1228 5.4465 3.3274 4.0262 6.8686 6.7842 4.5450 4.7788 7.0872 14.4073 8.6959 4.9137 0.7333 -0.0689 -3.2729 -3.9427 -4.6901 -3.7843 -4.7606 -8.2309 -11.1556
39.3240 35.1580 30.1649 24.8807 19.4559 14.1503 9.3376 5.7395 2.9171 0.8743 -0.1600 -1.5610 -3.3663 -5.4790 -7.0899 -8.1039 -8.6121 -9.3362 -10.6742 -11.7063 -11.8889 -11.6310 -11.7325 -11.7388 -11.4894 -12.8703 -14.4784 -15.0647 -15.0195 0.4215 0.7196 0.4543 0.0332 -0.2347 -0.2869 -0.3136 -0.1185 -0.0711 0.1485 -0.7523 -15.3163
4.1198 2.4046 -0.9207 -3.0537 -4.9411 -4.5132 -4.0855 -3.8951 -3.8661 -1.0021 0.5493 0.6922 -0.1138 -0.3066 0.1108 -0.0251 0.8424 2.6646 9.2170 6.3754 2.4274 3.2110 3.9376 2.5394 1.3314 0.0248 -3.5589 -5.2404 -4.9255 -3.5255 -3.1009 -3.7604 -3.4700 -2.8733 -1.9992 0.5113 3.0512 5.1249 4.8231 5.2190 -1.6532
3.6620 2.9859 3.0040 3.0506 2.2625 2.4007 2.1773 2.2676 1.7231 1.4288 1.2160 0.5069 -0.1552 -0.1104 -0.1481 -0.3494 -0.2743 -0.5949 -0.9982 -1.2915 -1.7757 -1.8432 -2.0500 -2.8592 -2.5411 -2.0302 -1.9641 -2.8754 -4.8244 7.6823 3.2328 -2.8255 -7.4261 -7.6683 -4.0922 -1.2719 1.1834 2.9852 4.1242 4.0762 -14.2392
12.2682 12.4958 10.6370 8.6802 6.1895 3.3521 0.0120 -3.1196 -5.8915 -7.9346 -8.4726 -9.2365 -10.2529 -11.6156 -12.3872 -11.4245 -9.0191 -6.8545 -3.2918 -0.0972 1.4040 0.7813 2.7012 7.4433 10.4513 8.1526 4.8220 3.6293 6.5779 3.5887 2.5442 4.8598 3.9894 2.1825 1.8990 -1.1549 -1.3419 -2.5535 -1.8075 -12.2060 0.8433
15.4243 14.3712 10.5979 6.0053 3.6236 3.1660 2.6457 3.0378 3.3307 2.9774 1.6056 0.6289 -1.2252 -2.5293 -2.5259 -3.3644 -3.2999 -2.9968 -4.1243 -3.1379 -4.5943 -5.1946 -6.5332 -5.4258 -4.3474 -2.4580 -3.2897 -3.9496 -8.4184 12.5953 13.0978 8.0807 2.0800 -3.4741 -5.6039 -6.0827 -5.2556 -5.1645 -4.3359 -5.9370 -19.1939
12.6031 11.5140 9.5918 8.9721 11.2278 16.3861 18.3055 15.2493 9.3533 5.1262 3.4090 2.8449 4.2190 7.3448 7.1824 2.1285 -4.7265 -9.0679 -11.7653 -12.9187 -12.3770 -9.8860 -9.0188 -10.4117 -12.4113 -14.1603 -11.8340 -11.7956 -15.0847 1.6333 -0.1749 -0.1240 -0.2004 0.4426 1.4656 0.2738 0.7777 -0.0047 -0.2122 -3.8769 -21.6008
15.7554 16.8394 17.1615 17.2884 17.4030 17.2657 15.8921 13.5652 10.3715 6.8406 3.5351 0.5517 -2.1632 -4.1460 -4.2553 -2.4789 0.2986 0.9530 -2.3858 -7.5703 -11.2229 -12.1150 -10.5591 -8.6344 -11.4398 -17.0807 -20.6444 -20.9882 -18.0373 8.3336 5.5551 2.4710 1.8701 0.0297 -2.8652 -3.4720 -2.9808 -2.8086 -2.1702 -3.9628 -24.3752
27.9412 27.2421 22.9503 16.5254 9.6885 4.5967 0.6997 -3.4665 -6.6867 -7.8148 -9.1495 -10.0610 -11.4055 -11.7392 -11.8813 -11.3038 -9.8795 -7.5418 -2.5870 4.6153 3.8429 0.5688 -2.8955 -0.2237 1.9886 1.7001 1.8074 -3.1272 -14.4038 -3.8881 -2.8329 -1.6443 1.8671 3.1413 1.8729 0.1398 2.8367 0.3757 1.7313 -3.5996 -13.3850
9.1831 9.4128 8.6344 9.5797 10.1063 10.3011 8.2263 4.5395 1.0974 -1.7556 -3.6105 -4.8265 -5.4684 -5.8802 -4.5931 -3.1888 -0.4075 0.3805 -0.9063 -3.4050 -4.9101 -5.9677 -5.8009 -5.0301 -5.4306 -6.4969 -3.0810 -2.1162 1.4143 -5.1355 -2.3496 -0.0420 3.9648 4.8248 5.4912 2.0450 -0.1732 0.0828 0.7502 -9.4585 1.8224
4.4588 4.2389 3.3197 3.1330 4.0702 5.7759 7.7099 9.0876 11.1245 12.6510 12.5527 11.9764 10.9501 11.0837 11.4805 9.3639 4.7521 -0.5944 -4.4402 -7.1309 -8.3207 -8.3043 -9.4810 -12.7554 -15.5784 -17.8883 -18.8492 -17.9501 -16.4359 5.8124 3.4155 3.3830 3.3147 1.6832 -0.5370 -2.7626 -3.1367 -2.1515 -2.7970 -6.2238 -24.3008
11.3859 11.2940 10.4575 10.5198 11.2222 12.7124 13.5178 13.4129 10.5164 5.9792 2.3897 -0.1138 -1.9321 -3.1972 -3.1420 -0.7773 2.4075 3.1154 -1.3266 -7.1228 -10.5939 -11.1307 -9.8760 -7.3492 -6.6029 -10.8829 -13.8968 -15.3987 -15.5878 8.9895 6.7302 4.3952 0.2012 -4.6771 -5.1924 -3.7684 -1.4949 -0.4984 -0.0670 -4.6178 -24.6307
18.9158 19.7886 19.7526 19.1358 18.1177 16.4664 14.0122 10.8818 7.5481 4.5462 1.5367 -0.9445 -2.7129 -3.9653 -5.5016 -7.5102 -9.0864 -9.0742 -9.0767 -10.2313 -9.4105 -5.3027 -1.9268 -1.3910 -3.5726 -10.4635 -17.0711 -22.1873 -21.2730 5.4315 7.4977 3.9877 0.2418 -1.1556 -2.9339 -2.8218 -3.2557 -2.2125 -0.4250 -4.3542 -22.8328
28.1526 28.1117 24.7174 18.3759 10.6219 2.4804 -4.1378 -7.4788 -9.3437 -10.8490 -12.5556 -14.1384 -15.1322 -15.0182 -14.6140 -14.5304 -14.2862 -13.9234 -11.7259 -8.2717 -1.7653 6.2167 7.1311 7.8239 8.7319 8.2789 7.6074 7.1853 2.3358 3.7971 -0.5557 -1.9296 -2.2395 -1.0081 1.6256 1.1217 0.2632 1.4311 1.1466 -3.6525 -7.2238
-1.9896 -1.5846 -1.1882 -1.5851 -4.5749 -6.7021 -4.6940 -3.5898 -2.8275 -4.0926 -5.1006 -4.1183 -4.9559 -5.2145 -6.9309 -7.9964 -7.8043 -5.1453 -1.8211 -0.6339 3.5622 6.5139 7.8184 9.0948 11.5264 11.4601 10.4022 10.4535 11.7185 -9.6611 -13.7925 -13.7882 -6.6479 -2.4133 2.1029 4.5429 8.2581 9.4338 9.8315 12.1338 18.9608
29.0162 27.1449 23.5731 20.2452 17.5110 14.7918 12.0251 9.1599 6.0664 3.8158 0.8485 -1.4407 -3.2916 -4.0983 -4.3970 -4.3435 -5.2630 -7.1322 -9.5766 -10.6471 -11.1044 -11.3079 -11.3508 -11.6324 -11.9889 -12.9298 -13.9392 -14.6929 -15.0614 0.4975 0.3394 -0.0827 -0.4799 -0.4676 -0.3009 0.0384 0.1607 0.4964 0.5891 -0.7905 -17.1701
8.4713 7.5563 6.3767 6.1947 6.0689 6.3779 4.9213 3.5036 2.5255 3.0901 4.1254 6.3043 8.3238 9.4464 9.3170 6.5660 2.2721 -0.8163 -4.4840 -7.0774 -8.1734 -9.5687 -10.5231 -10.5767 -10.2078 -10.4331 -9.7161 -9.9741 -9.8905 3.2535 1.2694 0.1807 -0.6651 -1.0284 -0.5802 0.6037 0.3968 0.3279 1.2972 -5.0555 -13.8489
8.3726 8.7329 8.5586 8.5134 8.7002 9.8765 11.6676 13.2674 13.5452 12.0942 10.0691 7.6401 4.8660 2.8680 2.7547 3.9563 4.9074 3.0494 -2.0753 -8.4742 -13.3840 -15.8240 -17.8178 -16.4808 -10.6391 -9.9987 -14.2994 -17.0600 -17.3864 10.6631 9.4847 5.5492 1.3050 -3.1070 -4.8971 -4.8382 -4.5691 -2.3532 -2.1714 -5.0660 -26.2617
19.0595 18.3832 15.9029 12.6530 10.0486 8.1560 6.2927 4.3924 2.8935 2.2985 1.7559 0.7258 -0.7293 -3.1142 -3.9530 -4.8127 -4.7935 -5.2925 -6.6673 -7.3117 -8.4213 -8.8278 -9.2400 -8.0623 -7.4252 -7.1006 -5.9527 -5.3881 -5.4699 10.5325 9.0445 4.9973 0.1331 -3.2907 -4.1662 -4.1984 -3.1495 -2.7117 -2.1058 -5.0850 -17.2009
52.2372 44.3578 36.5608 28.9176 21.5115 14.4397 7.8187 1.8482 -3.2520 -7.1355 -9.4888 -11.6207 -13.4063 -14.7098 -15.4667 -15.9341 -16.1369 -16.0366 -15.3538 -13.7588 -10.6277 -7.7814 -6.1144 -5.0819 -4.0409 -3.9360 -4.9781 -5.9562 -6.8747 3.7022 1.4660 0.4111 0.1370 -0.3542 -0.1182 -0.1120 -0.5566 -0.7197 -0.2876 -3.5680 -11.6568
18.5298 18.5912 18.1337 17.4860 16.8943 16.3587 16.0594 15.4122 13.4402 10.4256 7.3367 4.6520 2.5497 1.6836 2.6521 4.2050 4.7439 1.2637 -5.1624 -11.9630 -16.8360 -19.0690 -18.8984 -17.4618 -16.1587 -17.2824 -20.6892 -23.3973 -23.4997 3.2388 3.5069 1.9919 0.0447 -0.5876 -0.7419 -0.9096 -1.1897 -1.2370 -1.2266 -2.8899 -24.3059
14.2216 15.1107 15.4424 14.9543 12.7476 8.8407 3.8349 -1.2250 -5.2339 -7.6335 -9.5259 -10.5663 -11.3480 -10.7110 -9.3182 -6.6849 -3.0625 0.0032 2.0229 0.5151 -0.5651 -0.4048 0.5255 -0.7083 -2.6478 -3.1557 -2.5836 -2.0039 -0.8405 3.7139 1.8811 2.0645 2.2576 1.8972 2.7893 0.9195 -0.0976 -1.1232 -2.5385 -11.7639 -9.8006
27.6767 26.3073 23.1657 18.9402 14.2694 9.6933 4.9155 1.3429 -1.0736 -2.1647 -2.4791 -3.7245 -5.2366 -7.8495 -9.6757 -10.3534 -9.9166 -8.3142 -6.6376 -3.9530 -4.0753 -4.3093 -3.5187 -3.9010 -5.2935 -7.7755 -9.0692 -8.2730 -8.7168 5.8445 3.8687 2.4179 0.0649 -0.8031 -1.3677 -1.4763 -1.6757 -1.5716 -1.5700 -3.7316 -15.5980
7.4225 6.3812 4.2676 2.9128 1.8225 2.6330 3.2026 3.4899 4.3798 5.0782 4.0849 3.8689 3.6113 4.5683 5.8542 4.5947 0.2532 -3.2821 -6.4774 -7.4650 -7.9861 -7.4196 -6.0622 -5.4357 -5.0398 -5.4225 -4.6902 -3.4197 -5.7249 10.3884 8.1074 7.3911 3.6782 0.8704 -2.0339 -3.8319 -4.9728 -4.3725 -5.2689 -9.9555 -15.7366
17.5213 20.4430 21.9190 22.2701 21.3171 18.9687 14.6306 9.0767 3.5198 -0.8778 -4.3458 -6.9865 -9.5480 -11.1420 -12.3506 -13.4175 -13.6194 -14.0717 -13.7947 -12.3999 -9.1656 -3.9176 -0.2193 -1.5457 -4.1719 -2.7467 -2.4932 -5.3995 -7.4528 7.1434 7.0238 7.2627 6.7980 5.2527 1.0139 -3.4114 -6.5230 -7.8521 -6.8412 -9.8668 -15.3691
23.8876 22.5517 20.2028 18.0102 15.3733 12.6542 9.1010 5.3097 1.3988 -1.1554 -2.5833 -3.9593 -5.0937 -4.9268 -4.3385 -4.0356 -4.4731 -5.2411 -5.8573 -6.0798 -6.4837 -6.6593 -7.2930 -7.7787 -8.4220 -9.5983 -10.7066 -11.6689 -12.1349 1.8395 1.5059 0.7809 0.7822 0.3229 0.0573 -0.1778 0.0288 -0.5032 -0.4347 -4.2018 -15.0448
13.9062 13.1904 12.4290 13.6194 15.2333 15.2034 12.0474 7.3708 3.0090 -0.0473 -1.0773 -1.4032 0.0264 2.8347 3.5334 0.2574 -4.8606 -8.4990 -10.3461 -10.2062 -9.1724 -6.5298 -5.6943 -9.5272 -11.1766 -10.7021 -7.7752 -7.2838 -8.3598 9.0389 8.3462 5.7086 0.2994 -0.2224 -1.6621 -3.2697 -3.1981 -3.4783 -4.1342 -7.4282 -20.6505
-0.1956 12.8891 25.9590 29.2372 11.9659 3.6545 1.9759 11.5615 8.2666 -2.4823 2.1238 10.6975 3.0083 -5.1305 2.5407 -3.5456 -5.3431 1.0377 -4.8653 -4.1095 -8.9872 -10.0069 -10.6630 -10.8153 -10.0788 -9.9282 -11.0117 -13.4387 -14.3160 0.9647 0.5126 1.4038 0.7744 0.0988 -0.4577 -0.1039 -0.1823 -0.4661 -0.3208 -2.2235 -13.2318
25.9629 27.1177 27.8480 28.1350 27.2179 24.6308 20.8300 16.5838 12.6784 8.6134 4.1825 0.4406 -2.7846 -5.2345 -6.7282 -7.9739 -9.5601 -11.2902 -13.5857 -15.5917 -16.3027 -16.6819 -16.4912 -15.9456 -15.7750 -16.8350 -17.5886 -18.0613 -17.8109 1.0702 0.8294 0.1689 0.5813 -0.0091 0.1284 -0.3058 -0.7039 -0.5520 -0.2521 -0.9553 -17.8347
28.3817 26.3242 22.4988 18.1016 13.8114 9.4292 5.2503 1.4133 -1.6541 -2.4802 -2.4725 -3.0842 -3.4601 -3.8401 -3.4525 -2.3946 -2.6693 -1.6244 -0.8581 0.9642 0.0547 -3.6789 -8.6927 -12.3146 -14.1720 -14.6132 -14.5422 -14.6064 -15.6195 1.2358 -0.1021 -0.4812 -0.1634 -0.1968 0.6015 -0.1027 -0.0844 -0.0133 0.2510 -0.9445 -16.6483
14.8559 14.2769 13.3144 13.4636 14.5210 15.1971 13.3361 10.1599 6.7908 5.5468 6.0091 7.5005 8.7471 7.3385 1.8761 -2.5391 -5.4603 -7.6289 -8.7381 -8.1046 -7.0789 -6.1772 -7.8795 -11.4586 -14.0732 -15.6269 -16.7078 -19.9955 -21.4649 1.8161 1.8568 0.7960 0.3224 0.4841 -0.7227 -0.9581 0.3734 -0.1277 -0.0325 -3.8078 -24.4035
5.4535 4.2960 0.7585 -1.6071 -2.7931 -2.2472 -2.8178 -3.1626 -2.5628 -1.3912 -0.3660 1.6795 4.2030 6.4164 7.0674 7.5227 7.0796 4.9076 4.3543 2.9287 -0.1541 -2.4266 -4.0876 -4.9944 -4.2282 -4.2178 -6.4840 -7.8159 -5.3111 9.2246 8.2902 7.1840 5.6544 4.3170 2.1934 1.5215 -2.4633 -8.8855 -12.3322 -14.7039 -13.9292
9.0980 9.2332 9.0227 7.8900 7.2001 9.3060 12.7460 15.4304 15.0788 11.5632 8.2993 7.2707 8.2449 10.9986 9.5064 3.6569 -2.3332 -7.1688 -8.9599 -9.8137 -8.1433 -4.6312 -6.5469 -11.9994 -16.1445 -17.5300 -16.1820 -19.8515 -25.2405 0.4708 -0.3092 0.2379 1.4804 -0.1717 -0.9282 -1.5045 0.4378 1.4582 0.6172 -1.7888 -27.1180
30.5921 29.7607 27.5057 24.3076 20.2670 15.1816 9.3486 3.1611 -1.4937 -4.0966 -4.8189 -4.9920 -5.0548 -3.9493 -2.7660 -2.8294 -4.1521 -6.8587 -8.9405 -9.3227 -7.2576 -3.2574 -2.6669 -7.8789 -12.9388 -16.4992 -17.2553 -16.5402 -16.5552 0.5625 0.3502 0.0083 -0.1840 -0.6199 -0.4748 -0.2997 -0.1545 0.4846 0.8919 -0.5646 -16.4454
14.8981 14.8814 13.6043 11.5145 9.5013 6.6072 1.9200 -2.1840 -4.2500 -5.6701 -6.3798 -6.5602 -7.0938 -7.2697 -4.0665 -0.3509 2.6024 2.4125 -0.1554 -3.0971 -4.9214 -6.2652 -5.4681 -4.3507 -3.9793 -4.8021 -2.3819 -1.6978 3.0025 2.8620 3.2617 6.8021 5.2352 3.3376 0.5084 -1.9352 -2.2484 -1.4495 -1.6734 -14.7006 -2.2554
19.3171 19.5822 19.1016 18.4606 17.7886 17.3421 16.7071 15.2413 12.1252 7.5570 2.4543 -2.6968 -6.6532 -9.4513 -11.1611 -10.7979 -8.4551 -5.8510 -3.9750 -5.4484 -8.6775 -10.2725 -9.6723 -8.1110 -6.9238 -9.5412 -14.0157 -16.8585 -17.1147 6.4595 5.2042 2.6176 0.4543 -1.5212 -2.1299 -2.1223 -2.0336 -1.9001 -1.4360 -3.5925 -21.8904
10.0554 11.4918 12.0024 11.9869 11.4982 10.7952 8.7236 5.9738 2.4552 -0.5185 -1.8366 -4.1108 -5.5111 -6.6353 -6.8364 -7.0970 -6.1121 -5.4311 -4.4856 -3.2530 -4.1916 -5.5562 -5.6815 -5.4794 -4.5844 -3.0317 -1.6070 -1.6034 -1.4198 6.0457 6.4584 6.3816 6.2004 3.9293 1.7377 -2.4799 -5.0585 -4.1685 -5.2278 -13.8183 -8.6957
5.1528 4.1179 3.0625 2.9843 1.9679 0.9714 1.4744 4.4833 5.5293 4.7030 3.5767 3.8031 1.7543 -1.0533 -1.2774 0.9570 5.1278 5.5900 4.5922 0.5748 -5.0484 -6.9525 -6.3139 -9.2098 -9.0484 -9.2166 -5.0713 -4.7295 -2.5016 10.5692 7.5278 2.2517 0.6253 2.9159 0.5499 -2.4843 -3.5780 -4.6422 -4.8638 -8.8714 -13.8790
18.7418 15.9185 12.8438 10.2040 7.5183 6.1018 4.7206 3.9908 3.3693 2.4047 1.4410 0.1504 -0.1335 -0.4013 0.1702 -0.4796 -1.4923 -3.1582 -4.6899 -4.8726 -5.5428 -6.5059 -7.1643 -7.5192 -7.9222 -8.7815 -9.4290 -9.6309 -9.8521 -0.4363 -0.6716 -0.6321 -1.0615 -1.3192 -0.9262 0.1030 0.7901 1.5962 2.2939 0.2637 -10.2983
35.3923 32.3026 26.5029 19.6975 12.6365 5.9222 0.1370 -3.8927 -5.9336 -6.6867 -6.9777 -6.7865 -6.2733 -4.3479 -3.5674 -3.6341 -3.7323 -5.0584 -6.3190 -6.1046 -4.6307 -4.8921 -3.7741 -3.8037 -7.6419 -9.4026 -9.7867 -9.3143 -10.0304 -0.3209 -0.8025 -0.7882 -0.9161 -0.6206 -0.3729 0.2723 0.9229 1.0626 1.2478 0.3157 -11.3279
15.1154 17.2376 18.5113 18.6287 17.8606 16.0374 12.3870 7.3049 2.2274 -1.2547 -3.4619 -4.9984 -7.5019 -10.3433 -11.9860 -13.4479 -13.9092 -13.7812 -13.8196 -12.9157 -11.1559 -7.1870 -2.1572 1.9368 1.9384 1.8602 1.8940 -1.4092 -3.6107 13.9690 15.4855 13.9780 10.9462 5.3217 -5.0870 -10.7886 -11.2651 -11.1873 -9.5973 -11.7750 -16.7260
18.2228 18.4615 17.4249 17.1396 16.6125 14.4185 10.8568 8.6164 6.3579 5.2370 3.8560 1.9252 -0.6359 -4.2750 -5.1889 -6.7505 -7.9919 -9.0778 -10.1000 -9.9142 -8.7383 -6.1658 -3.7111 -6.1760 -9.8971 -12.5047 -12.7338 -12.8872 -12.3808 -0.8130 0.6976 0.3804 0.6457 1.5482 2.4749 3.0413 2.8395 -0.4708 -2.7284 -7.6154 -15.6555
6.0325 10.0051 11.3341 12.3589 13.8900 16.1481 16.3116 12.7566 8.9105 7.2557 4.4785 2.2316 0.9797 -0.6614 0.5661 4.8341 6.5458 3.6213 -1.1381 -4.3272 -5.4198 -6.5113 -7.7865 -12.3725 -19.9330 -25.0176 -17.8042 -15.8364 -21.4525 -3.1483 -3.2143 -0.2635 8.5907 13.2637 6.6922 -2.8514 -3.6166 -4.6591 -4.9686 -5.8249 -25.4194
17.3207 17.7695 17.5402 17.0035 16.5266 15.9285 14.7115 13.0615 10.7412 7.7296 4.5970 1.7062 -1.0815 -3.0472 -3.6756 -2.2649 -0.4084 -0.9339 -5.2361 -10.6763 -14.8835 -17.2271 -17.8907 -15.6384 -10.4668 -8.4525 -11.8808 -15.4044 -15.4675 8.8476 9.5703 6.9625 3.1090 -0.1253 -3.6220 -4.8452 -5.4253 -5.0540 -3.4938 -5.9236 -22.7477
18.2320 19.5978 19.7190 18.7548 16.3427 13.6150 10.6951 8.6087 5.9251 3.1428 1.8336 0.1222 -0.3161 -1.8892 -3.4565 -4.4788 -4.1025 -3.7501 -4.9649 -7.4742 -8.6908 -9.9373 -10.8830 -11.3028 -11.4257 -11.5192 -12.7474 -14.6156 -15.0348 -8.1772 -8.1988 -6.2878 -4.9710 -3.0389 -0.0545 3.6911 6.8598 7.3721 8.3424 4.4628 -8.8778
13.8589 12.2371 9.8247 7.6249 6.1891 5.8925 4.1202 1.8072 0.1905 -0.9244 -0.4689 0.1547 0.5703 1.3955 2.0470 2.6142 1.4776 -0.3379 -2.6582 -5.2107 -5.8303 -6.1283 -6.7972 -7.3151 -7.5206 -7.3966 -7.0187 -6.1092 -6.2882 2.8357 1.3808 1.5156 0.8705 -0.2752 -0.1447 -0.1738 -1.0712 -0.4308 -0.5020 -4.0050 -11.0460
25.9341 27.7320 28.2232 27.7876 25.5774 21.4281 15.8329 10.0447 4.4219 -0.7932 -4.9567 -7.9480 -9.7086 -10.7951 -11.8434 -13.0235 -13.3873 -13.9249 -14.4275 -14.4362 -13.1477 -10.3022 -6.8516 -4.3801 -3.0535 -2.9543 -6.5274 -11.6580 -12.8631 5.4748 4.2973 2.0928 0.3859 -0.0500 -1.0781 -1.5335 -2.0293 -2.0870 -2.0482 -3.4246 -15.9155
12.5611 14.6864 16.3579 17.9048 19.1559 20.0003 19.3273 16.6175 11.9366 7.1513 3.6125 1.1772 -0.6760 -2.6536 -3.6769 -3.9465 -1.4534 2.8613 3.1405 -2.9573 -11.3536 -17.9162 -20.1933 -20.5787 -18.1872 -12.9460 -11.7495 -17.2172 -20.9852 3.0886 4.0379 3.6614 1.7858 1.8672 1.0455 -1.0249 -2.3716 -3.3037 -4.0002 -4.7860 -22.6731
6.3873 6.0538 5.2554 4.7605 3.7352 4.0478 3.0878 1.1603 -0.4100 -0.4842 0.3498 0.7144 -0.2324 -1.6604 -3.0147 -3.2036 -2.2852 0.4500 5.1996 6.1851 1.9002 -1.2909 -2.8734 -4.7090 -4.8637 -4.9906 -6.0915 -6.1561 -7.0214 -0.4395 -0.6291 -0.8046 -1.1373 -1.0367 -1.1976 -0.5358 0.8614 1.5251 2.7259 0.6681 -8.1549
6.4678 24.1453 28.3564 16.3768 0.9487 6.1492 9.9337 5.7837 0.7687 2.7379 7.4627 2.6615 2.1447 -1.7243 -4.9079 -3.6716 -5.1260 -1.3976 -1.3562 -1.3187 -5.1578 -9.3517 -9.8801 -10.0344 -8.5754 -9.5176 -12.9621 -14.5277 -14.4277 2.6144 2.0177 2.0939 -0.3296 0.2968 -0.6507 -0.6394 0.0217 -1.9957 -0.1306 -3.2985 -14.8655
12.5510 12.4285 11.8955 12.7578 16.9371 21.2938 20.7903 16.7803 12.6688 11.7788 11.6300 7.3846 0.3301 -5.6353 -9.1568 -12.4924 -14.5919 -16.2950 -17.9481 -16.1853 -15.7323 -12.4489 -10.0349 -7.7045 -8.7699 -6.9254 -3.1598 -3.0985 -9.0472 7.8424 3.8265 0.9376 -0.6967 -1.1188 -1.5694 -1.9503 -0.6167 -1.4541 -2.2369 -2.9635 -21.8681
15.6754 16.7432 16.5153 12.3311 4.2455 0.2050 -0.6894 2.1431 4.3595 7.5720 9.8733 9.2508 5.8913 2.6955 1.6669 2.5024 2.1823 0.5005 -4.3623 -8.7120 -8.4826 -7.8486 -12.0698 -13.3968 -11.9915 -10.9867 -12.2995 -11.0273 -12.4867 -2.7836 -4.4120 -5.1131 -4.1277 -2.4732 -0.9720 1.3438 3.6062 4.7125 5.6821 4.5370 -11.9000
22.3286 23.0046 23.0498 23.5807 23.1994 18.4599 10.9563 4.0795 0.4966 -1.4210 -3.5925 -5.4787 -5.7217 -4.6302 -2.1947 3.6628 9.5300 10.8217 9.1886 2.5031 -8.0477 -14.9331 -18.4387 -19.9305 -20.4501 -20.2597 -19.9758 -19.4479 -20.3392 1.1842 0.4014 0.0219 -0.1675 -0.5484 -0.3769 -0.3371 -0.0928 -0.0308 0.3091 -0.3631 -21.5338
21.9984 23.9238 25.3357 26.4343 26.0313 22.5182 16.6027 9.8676 5.2339 2.4325 -0.1466 -2.8415 -2.8856 -0.9913 3.1553 6.9975 6.7848 4.8021 -2.7887 -13.1318 -18.6046 -20.0234 -20.0047 -19.9587 -19.6763 -19.9132 -20.3439 -20.4619 -20.3457 1.2714 0.3555 0.0928 -0.1438 -0.1909 -0.1061 -0.2499 -0.3508 -0.1985 -0.1750 -0.3048 -19.6659
-0.2567 -0.2113 -0.8684 0.4465 3.3786 5.2759 2.6214 -1.2665 -3.2281 -4.9538 -5.9464 -5.0624 -5.8449 -5.2078 -4.5607 -2.4460 -0.3193 2.4345 5.4910 8.1750 9.7870 9.0613 6.6768 1.8115 -0.9513 -2.1611 -3.7070 -3.7433 -4.4246 0.1631 2.1256 4.6102 5.3221 6.3935 4.7668 3.6937 3.2175 -0.8613 -8.2952 -21.1360 -6.1298
3.8793 4.4914 2.0392 1.3477 -1.0271 -0.6639 0.1117 -1.7816 -3.2330 -2.3240 -1.7798 -3.8111 -6.4867 -7.2086 -6.2062 -8.1286 -2.5000 3.3550 12.4119 16.8546 9.9403 10.7928 11.8490 6.7929 -4.7030 -7.2697 -8.7835 -9.4026 -8.5564 -1.1740 -2.4092 -2.9332 -3.4178 -3.5228 -2.2895 -0.3280 1.5973 4.1640 4.8094 5.5038 -5.9517
55.6246 47.8318 40.1222 32.5666 25.2478 18.2625 11.7233 5.7654 0.6757 -2.9249 -4.9251 -6.7338 -8.2843 -9.4091 -10.0166 -10.5275 -11.0842 -11.8508 -12.6565 -13.2845 -13.4392 -13.4505 -13.5945 -14.1300 -14.9588 -15.8320 -16.5919 -17.0696 -17.0561 -0.1692 -0.1054 -0.1641 -0.3548 -0.4054 -0.2499 -0.1197 0.3574 0.6137 0.7290 -0.1316 -16.1029
28.3480 28.4457 26.9174 24.2222 20.0737 14.3497 7.6659 1.6711 -2.2930 -4.4091 -5.0514 -3.9119 -1.1398 2.5446 4.7855 3.9543 0.0941 -4.3143 -7.5760 -9.0354 -10.4294 -11.2170 -12.2003 -12.8513 -13.7072 -15.1900 -16.7728 -16.6535 -16.3197 1.6890 1.2293 1.4980 1.0200 -0.3583 -0.7205 -0.7464 -0.7978 -0.7991 -0.4289 -1.5854 -17.0352
7.1738 5.8760 3.4170 2.3215 1.3711 0.5440 -1.4461 -3.1488 -4.5999 -4.7859 -4.3101 -4.0022 -3.9658 -3.1268 -2.0884 -1.4297 -0.0002 0.9577 1.5670 1.5085 1.0721 0.3227 0.5110 0.7323 0.8496 1.7441 0.7228 0.7656 1.4470 -8.6193 -7.2247 -5.3667 -3.5827 -1.8357 0.6166 4.1585 4.9638 7.0248 8.8447 1.0209 8.4769
-0.7467 0.3554 1.8709 0.8731 -1.4638 -3.3430 -6.6672 -9.5951 -10.4012 -10.6421 -11.0116 -11.8429 -12.2455 -11.7931 -7.9381 -3.6179 4.3015 10.3005 10.2729 5.6096 4.1790 4.6704 9.5416 5.1426 3.2307 6.6932 7.3970 11.6314 15.2383 14.9214 12.3993 10.3175 9.4781 6.5290 0.7143 -6.7843 -12.1011 -12.5497 -11.0634 -11.8611 -4.9295
8.9473 8.9587 8.3247 7.7486 7.2645 6.8446 6.7225 7.4361 8.0756 8.3721 7.8521 5.8385 3.2013 -0.0003 -2.2581 -3.0372 -2.3326 -0.4339 2.2803 1.7881 -3.0603 -8.5789 -12.0665 -11.7987 -9.2546 -6.5489 -9.3084 -14.6968 -16.2796 11.5926 10.4770 8.8581 8.3385 5.3110 -2.0531 -7.5440 -8.5312 -8.7087 -8.2386 -9.5016 -25.9443
17.7853 20.4425 22.0494 22.6794 21.5241 17.2874 10.6686 4.0415 -0.8452 -3.3573 -4.8317 -6.2098 -8.0414 -10.4109 -12.4433 -13.6668 -13.5852 -12.5998 -10.4309 -6.2165 -0.7444 0.8686 -2.2118 -2.8842 -0.1978 -1.0432 -7.6768 -11.1308 -8.8188 14.1142 12.1567 7.0646 6.3108 1.5813 -5.6339 -6.7414 -7.8081 -7.7366 -5.6857 -7.6219 -18.4403
10.4095 10.1666 9.2271 8.0860 6.4145 4.2188 0.0306 -2.2509 -4.0464 -2.5048 0.7199 3.4238 3.2446 1.8968 2.3554 2.4242 1.5237 2.3494 4.0741 2.8937 -1.4622 -5.2927 -9.7781 -9.2472 -7.3050 -3.6229 -4.1228 -9.1846 -14.6411 8.1502 5.2313 1.0580 1.4879 3.7251 2.9439 -0.5626 -1.1335 -5.4441 -3.6896 -11.7665 -16.0896
16.3683 15.7368 14.0789 11.8221 8.6363 4.8193 0.7944 -2.5033 -4.2969 -5.1383 -5.1385 -5.8567 -6.7831 -7.2715 -6.1940 -4.4484 -2.8402 -2.2612 -2.0718 -1.0756 0.0928 1.1543 1.4991 -0.3000 0.0566 -0.6778 -3.4172 -5.3252 -9.4588 11.6386 8.1885 3.6288 -1.2989 -3.6855 -3.9476 -4.1335 -3.4808 -2.6249 -1.8682 -2.4166 -19.6188
9.9289 9.2679 7.9267 8.7379 10.9513 13.7239 14.8623 12.3233 7.4753 3.3088 0.9949 -1.1257 -2.9647 -3.3198 -1.5514 1.8208 1.1498 -4.6271 -7.9003 -10.0749 -11.1748 -10.0605 -6.3035 -5.8941 -7.6734 -10.1071 -9.5489 -6.0056 -4.1400 9.5365 2.6560 3.6743 6.2251 4.9344 -1.5821 -4.9354 -4.9959 -4.2490 -3.3389 -7.9251 -19.9895
15.7601 15.5371 14.5879 13.6852 13.7329 14.2619 14.5602 14.1050 11.9855 9.0424 5.9338 2.9248 1.1175 -0.2175 -0.4564 -0.8056 -2.8269 -5.9252 -9.3719 -12.1962 -12.8615 -12.5210 -10.3147 -10.3071 -11.7171 -13.5357 -14.5158 -14.3799 -15.2819 0.2685 -1.1025 -1.4893 -1.4317 -1.3748 -0.8857 -0.0388 0.9292 2.3295 3.5114 -0.7158 -18.7537
10.0771 10.8307 10.8465 11.7532 13.7152 14.8042 13.3142 9.3177 4.2443 -0.1370 -2.8245 -4.9084 -6.2428 -7.4346 -7.1199 -4.5048 -0.3499 3.4684 5.2923 2.9229 -0.3932 -2.4266 -2.9696 -4.8989 -8.2386 -13.2276 -16.6579 -16.3335 -11.9188 12.1564 11.5591 10.1368 8.7589 4.6074 -3.2222 -8.3162 -9.1139 -8.8367 -7.9752 -9.7544 -23.1025
11.5053 11.7027 11.7371 13.2093 15.2251 15.5948 12.9282 8.2370 4.0626 1.5654 0.2206 -0.6203 0.1854 2.0975 5.0249 6.2795 5.6030 2.9180 1.3161 -0.0224 -2.9425 -5.8601 -7.8659 -9.4742 -11.9620 -17.3077 -22.0414 -24.8530 -26.4631 0.6245 0.8430 0.7564 -0.0344 0.1860 0.2573 0.0022 0.3483 -0.0033 -0.3539 -2.6260 -27.0235
5.1441 5.4989 4.5886 4.8890 4.4149 4.7882 4.1037 2.1106 -0.5897 -1.6882 -2.0231 -2.3075 -4.0395 -5.9980 -7.0714 -7.2239 -6.8500 -6.2178 -5.8790 -4.2255 -3.0049 -0.9642 0.5881 1.8550 5.0224 5.6412 5.3310 2.5657 1.5411 13.0414 12.1678 10.8758 8.3500 3.9695 -1.2713 -6.6778 -7.5357 -8.1366 -9.8150 -14.9679 -9.0970
5.6158 4.9839 2.6123 0.8571 -0.5963 -0.3233 -0.2214 -0.3194 -0.1370 0.4421 0.3275 0.0835 -0.5170 -0.8713 -0.8569 -0.8339 -0.8554 -0.5354 -0.0395 -0.0558 -0.9263 -0.8835 -0.8978 -0.6944 -0.6268 -0.8091 -1.0483 -1.4194 -1.4539 -1.4149 -1.4513 -1.7313 -2.1794 -1.7446 -0.9286 0.2594 1.3903 2.1796 3.3663 2.2545 -1.2043
10.7080 10.7135 9.5629 8.5444 8.8788 10.1398 10.5302 9.9131 6.6128 3.5565 2.0899 1.1039 0.3794 0.6277 -0.1980 -1.3526 -2.7157 -4.4999 -6.1998 -7.9255 -8.1415 -9.2812 -8.2556 -8.1488 -8.8083 -9.3952 -7.3216 -6.7527 -4.3647 -4.2821 -3.0286 0.3702 1.9504 4.2670 4.9800 3.4858 0.8969 -0.2219 0.7569 -9.1747 -5.7376
15.6199 17.2444 17.3338 14.6899 10.1694 6.6473 3.7155 2.2358 1.5381 1.6499 1.6341 0.4488 0.1506 -1.4323 -2.9510 -3.5813 -3.4819 -3.2311 -4.3442 -6.2089 -6.4666 -6.7538 -7.4724 -7.2719 -7.5336 -7.1999 -7.6644 -8.4572 -9.0267 -8.4693 -10.5727 -9.7580 -6.2924 -2.3994 1.2587 4.0421 6.4837 8.0877 9.5585 8.0612 -1.6481
19.7459 20.2278 18.1630 15.0090 12.1531 9.9790 6.2260 3.3367 0.8576 -0.7079 -0.8905 -2.1529 -4.1404 -5.6658 -7.0620 -8.8380 -8.6505 -8.0785 -6.8102 -4.7097 -3.3992 -4.6255 -5.7732 -5.7892 -3.5462 -3.1831 -5.7363 -8.6675 -7.2716 4.1141 4.3678 4.3289 4.1542 4.0907 1.7285 -0.9643 -1.7912 -4.9181 -4.5913 -10.5192 -12.1315
6.1392 7.2498 8.1626 7.6850 6.4337 6.4811 6.2044 4.4007 3.1418 2.4995 0.9290 0.1185 -0.7668 1.7199 1.8949 2.0578 0.9328 -0.2110 -2.8546 -2.7195 -3.0066 -5.4613 -5.4714 -6.1331 -7.3092 -7.3810 -7.7191 -8.5523 -8.4648 -2.4870 -2.6525 -3.0263 -3.5473 -2.5564 -1.0930 0.1556 2.3664 3.5226 4.7554 4.5624 -7.5910
9.3110 9.9536 9.2138 10.0448 12.2215 15.3929 16.8943 15.4237 10.3171 4.7547 1.0177 -2.1707 -4.9877 -7.5219 -7.9593 -6.9345 -4.8837 -0.9854 3.2044 2.3045 -0.4463 -2.4338 -5.1476 -7.8900 -10.6310 -12.6634 -14.4919 -15.1208 -15.7863 5.6159 2.3509 0.9141 -0.3540 -1.9709 -1.3207 -0.8350 -0.2962 -0.1715 -0.2711 -3.6616 -23.6214
23.3043 22.9242 21.5293 19.5762 16.1241 10.4648 6.0084 4.4333 5.1608 6.7668 7.1607 5.7544 1.6077 -1.1787 -4.1636 -7.1966 -8.5322 -8.3418 -7.6815 -6.4004 -5.6492 -7.9013 -12.6029 -15.0772 -12.4774 -7.5784 -9.0924 -17.5597 -19.3815 3.7144 2.6198 1.4796 0.4420 -0.5744 -0.9102 -0.6355 -1.0076 -1.4038 -1.1279 -2.5963 -20.6144
11.2061 12.3118 12.8295 13.0523 13.1146 12.3645 9.9362 5.7743 1.7043 -1.8769 -4.8871 -7.3022 -10.0064 -12.5843 -14.2598 -13.6895 -11.6784 -9.5138 -6.1691 -0.5296 5.2373 5.2179 3.4380 3.0836 2.2733 -1.6391 -6.1888 -7.6374 -3.5815 20.8484 18.6436 8.9742 10.0179 3.8790 -7.4403 -11.3642 -12.3105 -11.5853 -8.9330 -10.7298 -20.8771
16.8529 17.4255 16.4102 15.5784 15.8674 17.4950 18.1947 15.9349 11.7120 7.2655 2.7249 -1.9527 -5.0648 -6.5508 -5.6015 -1.5230 3.8782 6.4704 3.5684 -1.2082 -2.4831 -2.6718 -6.1617 -14.2995 -21.6998 -24.5766 -25.7294 -25.4801 -24.3755 1.7078 0.3442 -0.1860 -0.3639 -0.6031 -0.7615 -0.5273 -0.1524 0.1610 0.3883 -0.0071 -25.9432
3.6247 4.1362 4.7304 5.4643 6.0686 6.7599 7.3700 7.9086 8.2045 8.2007 8.3050 7.9346 6.5060 5.2072 4.9010 4.7326 5.1044 4.6386 2.5145 -2.6750 -8.8497 -12.8927 -16.3752 -16.1979 -12.4272 -9.0385 -10.4849 -12.3511 -11.0196 16.8771 16.0363 12.4221 5.0921 -2.2734 -6.9441 -6.2634 -7.9111 -8.6040 -8.3171 -10.1145 -25.1507
20.4102 22.2333 21.4536 19.4223 16.2855 13.0015 8.6431 4.0577 0.1512 -3.0550 -6.8588 -9.9672 -11.6652 -13.5703 -15.4009 -14.9881 -14.1899 -13.0588 -12.1440 -10.7868 -7.9129 -2.9873 -1.1110 -1.0826 1.2318 4.7844 4.0367 1.8708 1.1966 1.4837 -0.6523 -2.7877 -2.3545 -1.2604 3.0293 4.4380 2.6853 3.1820 0.1563 -7.9197 -4.8422
24.4801 24.0824 22.4438 19.5938 14.6940 8.6790 3.7523 0.8565 -0.9075 -1.5140 -0.7636 1.4427 4.6338 4.7800 -0.4807 -5.3801 -6.6867 -7.1351 -7.2085 -6.8900 -7.0642 -5.4063 1.9414 1.1193 -8.0610 -17.4390 -17.6573 -19.7125 -20.1924 -1.8469 0.7851 2.9495 5.7461 5.1153 0.0343 1.2368 -1.4044 -2.4151 -4.0039 -6.1967 -17.9837
34.2380 33.5242 31.1201 27.6874 23.0098 16.3994 8.7955 1.8365 -2.8561 -4.7762 -4.6828 -3.5969 -2.7477 -3.7154 -5.8733 -6.7781 -7.1404 -9.1196 -11.1436 -11.7088 -11.2040 -10.1729 -10.8046 -9.7894 -7.4004 -10.6648 -13.8125 -14.2674 -14.3560 0.7706 1.2161 0.2010 -0.2054 -0.4100 -0.3813 -0.4077 -0.2383 -0.1037 0.0286 -0.4699 -14.1437
28.8775 29.5132 28.5106 26.2574 21.3404 14.0753 6.0344 -0.6419 -5.0399 -7.8669 -10.5378 -12.6348 -13.9599 -14.7351 -14.0154 -11.1568 -6.4165 -1.6004 -0.2199 -4.6568 -7.7877 -4.3270 -3.6815 -7.3611 -9.9812 -9.0522 -3.7854 -1.0622 -4.0886 4.5036 0.0436 -1.2620 0.1566 0.7061 0.9930 -0.1034 -0.8841 -0.1473 -0.6208 -3.3851 -11.7638
23.7811 23.4799 22.5985 21.1811 19.2950 16.9827 14.1530 11.0015 7.6758 4.3321 1.3770 -1.2257 -4.1809 -8.0560 -12.0663 -14.7575 -16.2562 -16.8262 -16.6031 -14.6213 -10.8590 -6.2555 -3.6846 -3.6450 -3.7342 -4.0353 -7.6132 -10.8660 -10.5716 9.6447 7.8023 3.9088 0.9709 -1.2963 -2.9548 -3.6717 -3.5325 -2.8548 -2.7867 -5.2300 -17.9213
7.3168 7.9817 8.1669 8.3682 8.5119 8.7999 8.5177 8.2240 7.9760 7.1004 4.9797 2.8440 -0.2787 -2.8393 -5.1812 -6.5010 -7.8099 -7.3824 -4.9246 -1.2066 1.0202 -1.2524 -5.5773 -6.6635 -6.2109 -4.9615 -7.0357 -10.7105 -11.2719 12.8705 11.8805 10.2523 9.3642 5.4904 -1.6627 -6.1562 -9.1055 -10.2004 -10.6557 -12.0775 -23.3035
29.5404 29.4681 28.4882 26.7591 23.9950 19.9029 14.9906 9.9884 4.9431 0.7201 -2.7182 -4.9295 -5.8329 -5.2835 -3.1411 -1.0337 -1.2994 -4.6551 -9.2940 -12.6166 -14.4507 -14.7304 -13.5533 -12.6574 -13.3765 -15.4995 -17.3894 -18.2530 -18.0815 0.4964 0.5507 1.1546 0.7370 -0.0255 -0.3498 -0.5226 -0.4656 -0.4711 -0.2868 -0.8174 -17.8110
-1.0744 14.9003 33.1596 35.0523 13.0736 2.0052 -0.7661 8.7597 2.7166 -6.4950 -4.2610 3.7720 -4.3426 -8.7782 -3.2656 -7.4382 -8.4893 -4.5093 -7.9161 -3.7247 -7.0520 -3.6709 -6.2650 -4.4960 -4.0238 -4.7559 -5.1416 -7.8610 -9.1128 0.6813 1.7272 1.1217 0.4323 -0.0682 -0.2650 -0.1787 -0.4185 -0.8065 -0.2104 -2.0153 -10.3544
17.3596 17.5673 15.0858 11.4644 7.3814 4.0226 -0.1410 -3.3849 -5.6204 -6.9233 -7.1105 -7.9534 -8.3396 -9.0384 -9.3087 -9.0779 -7.7416 -7.4684 -7.3969 -6.6548 -5.2109 -4.5759 -2.5217 -0.3381 2.7650 6.1586 8.7075 9.5670 8.7272 5.4636 3.5914 3.5111 3.4034 3.2185 1.4996 -0.7001 -2.2097 -2.6342 -2.6685 -12.4751 1.7656
9.2805 8.3218 6.4144 5.5901 4.5122 4.1170 2.0243 0.4668 -1.3946 -1.9080 -1.6016 -2.3054 -3.2805 -3.6877 -3.6998 -3.1360 -2.3723 -2.0691 -2.5325 -3.5697 -3.7685 -3.6638 -2.4370 -2.4841 -1.3748 -1.3849 -0.1182 1.3637 4.6978 -2.5191 0.6452 3.8178 5.9716 6.9002 5.0344 1.4694 -0.9067 -2.4853 -4.2997 -13.6280 3.6107
14.3113 15.3825 16.0172 17.0841 17.9406 17.4527 13.8237 9.1622 4.4761 0.4333 -1.8491 -4.1973 -6.2352 -7.3255 -6.6956 -3.8665 0.4871 1.8452 -1.9049 -6.4158 -9.6692 -9.9954 -8.3868 -6.3274 -7.5276 -11.6979 -13.0950 -12.8586 -10.3679 12.6405 9.4300 6.8308 1.9954 -1.8154 -4.0500 -4.6445 -4.9400 -4.6161 -4.1410 -6.6897 -21.7106
15.9574 13.5685 10.9183 9.2647 7.9607 6.5007 4.5878 3.5591 3.2169 1.2933 -0.0510 -0.9224 -2.2752 -2.6282 -3.7623 -4.7934 -4.9449 -4.3779 -4.6931 -3.1458 -4.4724 -5.0318 -4.9908 -4.4859 -5.0580 -5.3554 -5.0038 -5.0901 -5.7451 -5.4116 -5.6692 -5.7576 -5.1885 -3.0995 -0.5277 2.1995 4.1437 5.6134 6.8760 6.8216 -1.5471
19.4303 18.5843 17.0128 17.0462 18.3032 19.0230 17.0309 14.9915 13.9671 13.7472 10.8472 5.3475 -0.7858 -5.0732 -8.3887 -9.9459 -10.5501 -11.5448 -12.0790 -11.0765 -11.3340 -10.8130 -12.3197 -14.8319 -14.5526 -12.6243 -11.2782 -13.0457 -15.0877 2.8732 1.8570 1.3694 -0.0267 -0.8287 -0.4903 -0.4684 -0.4454 -0.2649 -0.5119 -3.0635 -20.4302
12.4117 13.0466 13.2331 13.4850 13.9028 13.3369 10.6679 6.6169 2.3362 -0.7175 -3.1184 -5.0629 -7.1577 -9.3769 -10.5260 -9.6526 -5.9526 -0.9724 3.2956 3.3183 -0.2154 -2.7832 -2.1155 -2.0009 -5.4287 -9.8635 -12.0371 -11.7310 -6.9389 19.8935 17.5132 8.1204 5.9513 -0.9114 -7.8096 -9.0959 -8.7765 -8.7232 -7.8238 -8.3381 -22.9941
5.4465 6.1545 6.5960 7.3692 6.5453 5.6331 3.5394 2.3607 0.8659 0.0509 -0.6899 -0.6602 -0.8114 -0.9871 -2.0620 -2.1051 -2.1293 -2.4346 -2.8842 -2.7862 -2.7031 -2.7005 -2.3058 -2.4182 -2.9614 -3.3012 -3.6250 -3.4399 -3.5562 1.1375 0.9550 0.1967 0.2876 -0.3489 -0.1347 -0.2618 -0.2052 0.1031 0.1921 -1.9213 -5.8132
19.3219 18.6070 17.2268 15.7037 13.2112 9.2621 6.1735 5.2932 6.8689 8.1175 8.5297 6.2006 2.9639 0.2106 -1.5424 -3.0741 -3.6228 -1.7612 1.1881 0.4888 -4.7011 -12.4521 -18.8925 -20.1895 -15.2633 -7.7586 -8.4595 -18.6161 -23.0341 7.2675 6.3572 1.7187 0.3913 0.3928 -0.3109 -1.9821 -2.8777 -3.2372 -3.3101 -4.4095 -25.2010
8.4541 8.1779 7.1194 5.4725 2.9601 1.1998 -0.3538 -1.2461 -1.9054 -1.1532 -0.8697 -0.7216 -1.4868 -2.8361 -3.9114 -3.9948 -3.2868 -2.9321 -1.6346 0.6941 1.5767 0.1133 -0.6901 -1.9526 -1.7040 -0.6393 -1.7853 -2.0227 -0.6415 6.3775 3.5011 1.7742 0.8521 -0.8807 -2.4262 -1.9793 -2.7130 -1.0301 -0.2906 -3.1850 -7.4694
10.0438 9.5730 9.4079 10.5993 13.6404 15.4525 14.4990 10.5598 6.2936 3.7658 1.8182 2.4916 3.9516 5.8549 9.0644 9.6627 6.8173 4.3977 1.3490 -4.2076 -12.0535 -17.0808 -19.6338 -19.7015 -18.7275 -16.8855 -13.8529 -11.6701 -15.4293 6.2710 4.5162 0.1386 -2.0908 -1.7858 -2.0793 -1.8138 0.2844 0.7409 0.2032 -4.3846 -24.8049
25.0551 24.1141 20.9653 16.3108 10.8527 5.3678 0.7364 -2.8219 -5.0859 -5.7650 -6.1499 -6.6367 -7.4276 -7.5696 -8.0119 -6.4695 -2.7893 0.4057 2.0532 0.8610 -1.2343 -2.5971 -2.0921 -3.1259 -5.4032 -7.7358 -7.6535 -8.0640 -10.0890 1.7165 0.5619 0.1133 -0.0994 -0.1364 -0.2660 -0.4353 0.5041 0.4384 0.8615 -3.2587 -14.5713
-0.2824 -1.2002 -1.1857 -0.7688 -0.8143 -0.7172 -1.5304 -2.1288 -3.0516 -3.6018 -4.8378 -6.1535 -7.7320 -6.8121 -6.1824 -3.6103 -1.4311 0.9978 1.1937 0.8415 2.4841 6.3803 8.8835 7.0925 6.7752 9.2623 5.7944 2.8315 -0.4967 18.7297 14.2388 10.8799 4.2826 -6.9342 -8.6376 -8.3976 -6.7575 -6.0459 -5.4581 -5.9001 -18.8293
10.1128 8.8893 7.3473 6.5214 7.2930 10.3397 14.0197 15.8841 13.7146 8.7127 4.4971 1.7567 0.2355 0.5650 2.5360 6.4325 6.1884 1.5759 -3.2537 -5.8565 -5.4444 -3.8630 -6.5876 -12.9364 -16.8492 -18.9964 -18.8056 -16.0076 -18.0217 3.9553 2.3698 1.9291 -0.0877 -0.9652 -0.9019 -0.4445 -0.6487 -0.2555 -1.3366 -3.6140 -25.1871
12.2726 11.2280 9.4632 7.3787 5.2189 3.6600 2.1581 1.8973 1.7208 1.1692 2.6675 2.1480 0.1934 -0.9062 -0.5766 -0.7741 -0.2722 -1.4842 -1.6982 -2.2141 -2.7162 -2.8899 -3.2527 -3.3476 -3.8185 -5.7582 -8.5254 -9.5927 -13.3491 2.9336 -0.0614 -5.1792 -7.8262 -5.8818 -2.4979 0.2810 2.5842 4.2687 5.4567 5.9224 -16.9053
37.2172 34.3913 31.2113 27.7111 23.6697 19.0839 14.6521 10.8663 7.8437 5.4886 3.9602 2.5869 0.5600 -1.9033 -4.6862 -7.3190 -10.0710 -12.7038 -14.7680 -15.8511 -16.1191 -16.1652 -16.2159 -15.9004 -15.8958 -16.8057 -17.9478 -18.4940 -18.3957 0.4419 0.2835 -0.0357 -0.2713 -0.3987 -0.3334 -0.2999 -0.1625 0.2757 0.6740 -0.1736 -16.8775
11.3753 13.7268 15.9469 19.2400 21.6371 21.2732 16.6665 10.0971 4.1118 -0.3896 -3.6531 -5.5614 -8.0681 -10.2817 -11.6723 -11.5104 -10.0734 -10.1816 -8.5685 -7.1045 -6.4138 -4.8696 -3.9548 -5.7824 -5.0034 -4.9254 -6.3935 -5.3682 -4.2986 12.8596 6.0788 2.4099 2.8908 0.0595 -2.3723 -2.9619 -4.0883 -4.5273 -4.0164 -6.3324 -17.4382
26.4179 26.6038 25.6315 22.7118 17.4654 11.2374 4.5630 -0.6721 -3.6490 -5.1965 -6.8885 -8.5149 -9.9685 -10.5303 -10.6988 -9.8426 -8.6196 -5.7793 -0.9658 3.2322 2.5498 0.5196 -0.4196 -3.4101 -7.4205 -10.7757 -11.9107 -12.1132 -13.5565 2.4448 1.0270 0.2616 -0.2763 -0.6725 -0.5323 -0.4687 -0.3345 0.1168 0.1296 -1.6954 -17.0871
18.4471 16.7466 13.9277 10.8916 8.7857 7.1932 5.5568 4.1778 3.8018 3.6509 4.1995 4.5197 3.7143 2.0835 1.0146 0.3919 -0.3931 -1.7518 -3.7102 -5.6106 -7.0424 -8.2355 -8.7436 -9.9803 -10.8971 -12.1221 -12.4526 -14.0451 -14.1182 1.5911 1.3311 0.9816 0.2592 0.5671 -0.1500 -0.6917 -0.0710 -0.0271 0.0589 -3.8492 -16.0146
5.9232 5.3337 3.8014 2.9697 3.4359 4.2543 3.4648 1.7717 0.1194 -0.0269 0.7474 1.7656 2.2681 3.3777 5.5350 7.6925 7.1170 5.0594 1.6134 -2.8840 -4.6636 -5.6498 -6.7260 -7.6581 -7.7482 -7.0077 -8.1003 -8.2149 -7.5709 2.7271 3.2452 3.0964 1.8085 1.2978 0.1047 -1.3807 -1.5844 -0.8243 -0.5104 -7.9799 -12.0827
12.4719 12.1361 10.1546 7.9843 6.3039 5.8891 4.6571 2.6181 -0.1657 -1.9369 -2.8607 -3.3105 -4.8578 -7.0042 -7.1916 -5.9866 -4.1997 -1.7831 1.5238 4.3316 3.2165 1.1019 0.2627 -0.7887 -2.3974 -4.1659 -7.7383 -8.8914 -9.3732 3.3631 2.1730 1.7422 1.8227 1.4558 0.1916 -0.0971 -0.1883 -1.5408 -1.1423 -7.7797 -11.8474
11.3451 10.9000 8.9585 6.1028 3.1858 -1.1621 -5.3836 -9.5575 -11.5639 -12.6129 -13.2817 -13.1921 -12.6233 -11.4537 -9.9063 -7.2485 -2.9323 -0.1679 2.3451 3.4644 4.1413 6.5832 8.0312 9.6000 9.3866 8.3390 7.0332 6.2115 5.4582 2.4819 2.4952 2.5332 1.3146 1.2840 1.1744 1.4075 1.6533 -0.7910 -1.1435 -12.4097 1.0916
23.6029 24.2878 23.1930 21.6752 20.1647 17.8825 13.5147 9.0959 4.9067 0.9398 -2.2819 -4.7976 -6.5405 -7.8935 -8.5957 -8.1319 -5.7029 -2.9010 -1.4003 -3.8107 -7.7146 -10.9603 -11.9185 -11.3097 -10.0262 -10.8911 -13.0763 -15.2199 -16.0905 -4.3614 -2.5556 -2.1777 -1.8997 -0.5988 1.0869 2.5785 3.4868 4.0967 3.3192 -2.9749 -12.6358
4.1481 24.8058 32.0050 24.1070 7.9048 5.1844 9.4865 6.9930 -4.1867 -5.3105 -0.1042 -5.3429 -7.9480 -8.8340 -11.8488 -10.9382 -11.6153 -10.8429 -8.8763 -8.2063 -5.9086 -4.6780 -0.7362 0.9339 1.6189 1.2420 -2.1650 -5.4458 -5.4417 3.8026 4.9367 2.9396 1.2003 0.8096 -0.4055 -1.2653 -1.7631 -2.9130 -1.4945 -5.8474 -8.5756
23.7954 23.1921 21.7016 20.0766 17.1113 13.7019 10.3999 7.0724 4.4505 3.2062 3.6711 5.1040 6.2303 4.8847 -0.1659 -4.8929 -7.3427 -9.3139 -10.9450 -11.4728 -10.0337 -7.5622 -3.5203 -5.8211 -14.2213 -19.1068 -19.3958 -20.2365 -20.5672 -0.5258 0.0632 2.1808 3.9092 2.4964 -0.3407 -0.5190 -0.8656 -0.9771 -1.7973 -3.6241 -20.0182
-3.7360 -3.6185 -3.3879 -2.0035 -2.0453 -3.0452 -2.1024 -2.2759 -2.6516 -4.3569 -3.6456 -2.3824 -3.7115 -5.0829 -6.2136 -7.0765 -6.8802 -6.4042 -2.6943 1.3032 2.8085 -2.4198 6.8476 8.5220 10.8666 10.9764 11.8694 11.6880 10.8525 -10.1854 -14.3979 -14.1885 -6.1104 -2.3069 3.0598 3.2787 7.7402 9.9334 10.5862 12.5907 18.9431
13.3492 12.8348 12.1001 10.6097 8.9141 7.8597 5.9391 3.8673 2.6411 2.3479 2.7602 2.8027 2.2779 0.4287 -1.3226 -2.0315 -2.1676 -1.5551 -1.2222 -2.1197 -4.0818 -6.1594 -8.1874 -9.3177 -9.4499 -9.7874 -10.1789 -10.6801 -10.4712 -3.7681 -4.8313 -5.1537 -4.2661 -3.2035 -1.4351 1.4217 3.2157 5.2602 6.9893 5.7708 -7.9426
23.1558 23.5472 22.1677 18.7915 13.0187 6.0783 -0.4803 -4.5728 -6.1861 -7.0011 -7.3578 -8.0890 -10.0377 -12.2340 -12.8288 -11.4502 -9.5173 -6.4728 -2.1175 2.0048 1.3570 -2.9595 -2.6436 1.5180 3.0406 -2.5769 -4.8065 -2.5134 -0.8343 3.1119 3.3528 5.9276 3.6737 2.5908 1.6925 -3.4674 -1.5813 -3.2207 -2.1812 -9.8987 -8.8538
26.4920 27.5278 23.5895 18.4003 14.4396 11.3628 6.6147 2.4341 -0.2444 -2.4075 -4.2073 -6.4485 -7.8162 -9.2259 -9.5571 -9.3064 -9.0910 -7.0174 -7.1701 -7.0279 -7.6510 -7.5329 -8.2698 -7.2504 -4.4537 -4.4137 -4.3225 -4.9571 -2.4902 -7.3866 -6.0243 -3.8745 0.0041 2.7020 4.9257 5.6046 5.2905 3.4738 1.6970 -6.4124 2.1053
20.0311 32.4089 21.4065 3.8740 5.8630 17.0357 3.7543 2.9904 15.6577 4.2113 -0.9665 3.2682 -4.9242 0.9109 -5.5297 -0.9790 -5.0003 -0.7131 -5.5269 -8.0296 -9.9403 -10.8809 -10.2649 -9.9965 -9.6956 -10.6759 -12.5982 -13.0794 -12.6109 0.8915 0.0604 -0.2305 -0.0021 -0.6053 -0.3414 -0.0731 0.4824 0.7549 -0.1062 -0.8306 -13.4365
16.7766 17.5169 16.4982 14.0891 10.0932 5.3461 0.6341 -3.6859 -5.9242 -6.3128 -5.9350 -5.7548 -6.0307 -6.0498 -6.4996 -6.5626 -4.8816 -3.2502 -3.2922 -4.2819 -4.8479 -5.5791 -4.7813 -3.1384 -3.4900 -2.8954 0.2902 4.4573 7.4915 -5.5534 -4.1269 -1.5355 0.4168 0.9124 3.0599 2.1241 2.4262 2.5000 4.5034 -4.7272 8.0549
14.2987 14.8926 15.4168 16.0974 16.7877 16.0424 12.9710 8.0251 2.9090 -0.5642 -2.9640 -4.5656 -6.3342 -5.7781 -3.4597 0.3272 2.7738 -0.3574 -4.8087 -8.1398 -9.6152 -7.9303 -6.2270 -7.0986 -10.3018 -13.1453 -11.2961 -9.1627 -8.7927 1.0994 1.8123 2.8974 2.9050 4.6509 3.4505 -0.6010 -1.4758 -2.7795 -2.4745 -9.4847 -15.4782
19.5896 21.6796 21.9059 19.1821 14.0268 8.5044 2.2676 -4.7266 -10.6450 -13.0460 -14.0860 -14.5335 -14.9498 -14.7870 -14.0697 -11.4549 -8.2147 -4.0260 0.3628 4.9113 3.4988 0.5780 1.9943 2.9810 0.8573 -1.3207 -0.0740 2.1207 1.4740 10.3387 1.2319 -0.4911 -1.8207 -1.0700 -0.8286 0.3764 0.2040 -0.8290 -1.6698 -5.4418 -14.7994
7.6904 8.5944 9.5072 9.8820 10.2276 10.5222 10.3373 9.3607 7.6459 4.8852 2.1707 -0.1575 -1.8433 -2.7877 -2.2526 -0.5664 2.3824 4.3345 3.5440 -0.6514 -5.2439 -9.2918 -11.7988 -14.1092 -12.7385 -9.1451 -9.6551 -10.7736 -10.0695 11.9243 11.2262 10.3898 9.8282 8.0787 3.3521 -3.2649 -10.5053 -13.2404 -13.3007 -14.4881 -21.2847
30.3070 29.5477 26.4796 21.7752 16.6251 11.7301 7.3299 3.8872 0.7290 -1.2037 -2.4737 -3.5896 -4.8044 -5.4589 -6.3339 -6.5407 -6.0748 -6.4957 -7.6726 -8.7065 -8.7749 -8.8999 -9.3481 -9.1891 -9.9612 -10.0486 -10.5500 -11.2845 -11.0000 -6.1498 -6.3059 -5.5965 -4.5595 -2.8356 0.0899 2.7110 4.5977 5.7639 7.0861 5.1987 -6.4033
12.2542 12.1227 12.1295 13.7252 16.2506 16.1281 10.9394 4.8988 -0.4731 -3.6819 -5.4021 -7.4944 -8.2715 -8.0576 -6.1477 -3.0306 1.9117 4.0560 2.1482 0.8098 0.1207 0.0058 -2.3034 -4.0466 -3.9220 -6.4147 -11.2118 -17.1187 -19.9247 6.0099 3.6952 1.2907 -0.5044 -0.8291 -1.0627 -1.1957 -1.1416 -1.4267 -1.5418 -3.2939 -24.4860
9.7234 8.7897 6.5360 5.5091 6.6941 8.8748 9.0238 7.6482 4.3129 1.4757 -0.7289 -2.4072 -4.4322 -5.3461 -3.7806 -1.1393 2.9797 3.5166 -1.5034 -4.0711 -4.3945 -4.4639 -5.1951 -6.0761 -6.0336 -6.9960 -6.5160 -4.9520 -7.0480 14.6458 13.1436 9.1440 2.7564 -0.8129 -3.8913 -6.6500 -6.1267 -6.0986 -6.7696 -9.3407 -21.2384
8.5519 7.5224 5.9151 4.8177 3.5030 2.2565 1.1622 0.1988 -0.5493 -0.3850 -0.1928 -0.4114 -0.8801 -1.0153 -1.0764 -1.4171 -1.4905 -1.3971 -1.0636 -1.1738 -0.9725 -1.8880 -2.3866 -2.7467 -2.5988 -2.5326 -3.1114 -3.2783 -3.3604 -3.8082 -3.8849 -4.0621 -3.5801 -2.8055 -1.5136 0.9076 2.8350 4.3455 5.8838 5.6825 -0.4474
7.7224 9.4298 7.9025 6.4102 5.0524 7.1733 6.8444 5.1985 1.7514 0.1644 0.4222 1.0885 -0.3101 -2.4745 -2.9872 -2.3617 -3.5889 -3.7306 -1.5428 -0.5556 -0.6425 -2.7366 -1.5405 -2.2119 -3.2504 -3.1003 -4.4891 -10.0519 -13.5853 -15.9446 -3.2508 0.2918 -0.9236 3.5700 5.1357 5.1789 6.0048 3.6122 3.0229 -6.6974 0.4660
12.4572 13.5760 13.8205 13.8979 14.7964 17.0228 18.4159 17.4577 14.0275 10.4467 7.5633 5.8220 5.5014 6.0819 6.4280 5.7453 2.9483 0.4368 -2.0706 -3.5909 -6.3177 -11.4245 -17.9894 -23.7008 -25.5017 -25.0724 -24.5956 -23.3443 -22.8376 1.8005 0.4050 -0.0309 -0.4072 -0.7903 -0.7639 -0.6330 0.2496 0.9862 0.2958 -1.1118 -25.7677
4.7942 4.1637 3.1217 3.4886 5.7426 8.4586 9.4051 8.4408 4.0573 -0.0847 -2.6488 -4.2622 -6.8882 -7.9882 -8.0785 -6.5745 -3.6736 0.0836 3.7506 4.2950 1.4430 1.7647 2.5945 0.5096 -1.4030 -2.4095 -4.2409 -7.3362 -10.5254 14.3716 9.9001 5.5613 -0.4343 -4.0106 -4.4911 -4.7396 -4.3992 -3.5933 -3.3021 -4.8629 -20.9215
21.6217 21.5816 19.9361 17.4078 14.6925 11.4780 7.7360 4.5567 2.3261 1.3757 0.8699 1.0465 1.1010 -0.3579 -2.1883 -4.1422 -5.5220 -7.4591 -9.7124 -11.0673 -12.8828 -14.8063 -14.5786 -12.2038 -9.6561 -7.6717 -6.6862 -4.4940 -2.3008 -2.8294 -2.2589 -0.7299 1.8580 3.4539 3.4053 2.7591 1.9997 0.5308 0.5471 -8.7356 -3.9438
1.0482 0.8820 0.3120 -0.0147 0.1548 1.1642 2.5065 4.2829 6.8793 9.8376 11.4462 10.6004 8.7525 7.4364 7.3679 8.2254 7.9411 4.8316 -0.5361 -4.6026 -6.7708 -7.8326 -7.7624 -5.3939 -6.4851 -9.7433 -13.7435 -16.3579 -14.4263 10.9932 7.6190 5.9532 4.7231 0.1759 -2.5109 -4.5002 -5.8815 -4.2941 -4.7897 -7.4879 -24.0798
8.4638 7.6638 6.7405 6.7849 9.6108 11.6513 11.2989 8.3544 3.0440 -0.8467 -3.9303 -4.9339 -3.7358 -4.1317 -2.0585 2.7514 7.6579 7.9793 2.3491 -1.2307 -6.1104 -5.2397 -3.7933 -5.5972 -9.8841 -12.1146 -11.4629 -8.7974 -10.4828 8.1529 4.6235 5.0235 -3.9150 -7.5503 -5.3361 -1.2531 6.4683 2.2949 -0.0550 -8.4536 -22.5498
9.8543 8.7085 6.2122 3.2566 2.0932 1.8184 0.6210 -1.4796 -2.3312 -2.6373 -4.0537 -4.6289 -4.6135 -3.7432 -2.1216 0.8603 3.6326 5.0735 3.4051 1.8301 1.3556 -1.1657 -2.6873 -3.2580 -2.3407 -3.5712 -3.7082 -3.8659 -2.5155 -3.0106 -3.6582 1.1257 3.5876 5.1138 3.8620 1.9732 0.5329 1.0253 -0.8077 -9.7439 -1.3313
-2.9689 -3.6925 -3.2882 -2.1408 -0.3207 1.4181 2.0372 0.1628 -1.5615 -1.1744 -1.1748 -2.3007 -3.8174 -4.8189 -4.0221 -1.3971 3.2927 7.6888 9.8326 7.1859 3.6459 2.2387 1.1579 1.6876 0.0249 -1.1344 -3.2237 -2.0378 -1.2991 8.2053 7.6257 7.4526 5.2692 0.6619 -2.5875 -5.5343 -3.5316 -3.8077 -4.5073 -9.2463 -10.5134
9.7903 6.5524 4.2187 2.8629 1.5301 2.6090 2.8671 -0.4058 0.1443 2.1025 2.2641 2.2540 2.8227 4.2305 2.6246 0.1011 -0.5037 -2.5281 5.9816 8.8018 3.5902 -2.1055 -8.2336 -7.5542 -8.3988 -6.7700 -12.1221 -12.6274 -4.0986 15.9214 10.1934 4.0555 -0.7395 -4.4850 -5.0408 1.8975 -3.7215 -6.1218 -5.7613 -6.1980 -17.6420
29.2898 29.1270 27.9887 26.0350 22.7880 18.9325 14.8741 10.7353 6.3361 1.5435 -3.4721 -8.0918 -11.5471 -14.2024 -15.5430 -16.5237 -17.5387 -18.0503 -18.3862 -18.0321 -17.2039 -14.4258 -7.6289 -2.1492 -0.8256 -0.4858 0.7007 -0.7217 -3.5225 7.7486 6.5879 3.6481 0.1102 -1.4486 -1.4917 -1.7642 -2.4587 -2.7189 -2.3171 -5.8956 -12.2398
4.4923 5.9961 3.5313 -0.1456 -2.9561 -3.9972 -5.5178 -6.5495 -8.2904 -9.4007 -9.5368 -9.2154 -10.6132 -12.2389 -12.1450 -11.3212 -9.2653 -6.1867 -0.5047 2.8376 -1.5645 1.0645 6.8296 12.9030 17.1169 16.2097 16.8799 17.2979 14.2904 3.6672 1.4385 0.6939 -0.7824 -1.0548 0.7585 1.5905 1.4809 1.2351 0.7042 -9.7316 9.0007
17.1014 20.3617 22.1941 23.6186 23.8203 21.4980 16.0993 10.2193 4.4688 0.3152 -2.6232 -4.4565 -5.7629 -7.4399 -7.9702 -8.7398 -8.6156 -7.5758 -5.6113 -3.8507 -4.7710 -7.9311 -11.5008 -12.9375 -11.7921 -9.1891 -8.8722 -13.4431 -16.6139 2.6455 3.2595 3.6340 3.0753 1.5772 -0.5994 -1.7486 -1.8960 -2.7589 -2.4890 -4.6996 -18.2534
-6.7950 -4.3945 -2.1814 -0.0391 1.0243 2.1577 2.4659 2.7954 2.9978 2.3847 1.7726 1.1096 -0.1514 -3.1834 -4.1688 -4.9229 -4.7410 -4.3919 -0.8572 1.4319 1.2097 1.1996 -0.6138 0.0932 1.9431 3.2864 3.0149 3.0300 4.5238 -4.4471 -6.9731 -3.2184 -0.9733 0.9643 1.9409 2.7291 5.1726 4.8981 5.2725 -5.3657 7.6481

View File

@@ -0,0 +1,35 @@
1 32
25
50
75
100
125
150
175
200
225
250
275
300
325
350
375
400
425
450
475
500
525
550
575
600
625
650
675
700
725
750
775
800

View File

@@ -0,0 +1,35 @@
1 32
25
50
75
100
125
150
175
200
225
250
275
300
325
350
375
400
425
450
475
500
525
550
575
600
625
650
675
700
725
750
775
800

View File

@@ -0,0 +1,35 @@
1 32
25
50
75
100
125
150
175
200
225
250
275
300
325
350
375
400
425
450
475
500
525
550
575
600
625
650
675
700
725
750
775
800

View File

@@ -0,0 +1,35 @@
1 32
25
50
75
100
125
150
175
200
225
250
275
300
325
350
375
400
425
450
475
500
525
550
575
600
625
650
675
700
725
750
775
800

View File

@@ -0,0 +1,35 @@
1 32
25
50
75
100
125
150
175
200
250
300
350
400
450
500
550
600
650
700
750
800
850
900
950
1000
1050
1100
1150
1200
1250
1300
1350
1400

View File

@@ -0,0 +1,35 @@
1 32
25
50
75
100
125
150
175
200
250
300
350
400
450
500
550
600
650
700
750
800
850
900
950
1000
1050
1100
1150
1200
1250
1300
1350
1400

View File

@@ -0,0 +1,35 @@
1 32
25
50
75
100
125
150
175
200
250
300
350
400
450
500
550
600
650
700
750
800
850
900
950
1000
1050
1100
1150
1200
1250
1300
1350
1400

View File

@@ -0,0 +1,35 @@
1 32
25
50
75
100
125
150
175
200
225
250
275
300
325
350
375
400
425
450
475
500
525
550
575
600
625
650
675
700
725
750
775
800

View File

@@ -0,0 +1,35 @@
1 32
25
50
75
100
125
150
175
200
225
250
275
300
325
350
375
400
425
450
475
500
525
550
575
600
625
650
675
700
725
750
775
800

View File

@@ -0,0 +1,35 @@
1 32
25
50
75
100
125
150
175
200
225
250
275
300
325
350
375
400
425
450
475
500
525
550
575
600
625
650
675
700
725
750
775
800

View File

@@ -0,0 +1,257 @@
2 256
2.709998 12.018395
0.046750 -2.738813
0.120993 8.388947
-1.580275 -0.892307
1.193065 -1.915609
0.187101 -3.276788
0.332251 -7.664550
-1.479436 31.246122
1.527612 27.709463
-0.524379 5.250122
0.553330 7.438797
-0.843451 -1.952987
2.263885 8.610286
0.143143 2.365493
0.616506 1.284268
-1.711327 22.096672
1.008128 17.396519
-0.106718 1.418905
-0.136246 14.273605
-1.709087 -20.531881
1.657866 -3.391068
0.138049 -4.957845
0.536729 -1.943748
0.196307 36.851948
1.272479 22.556494
-0.670219 -1.906045
0.382092 6.401132
-0.756911 -4.901017
1.829313 4.613800
0.318794 0.736830
0.612815 -2.075045
-0.410151 24.787077
1.776016 13.190924
0.106457 -0.104492
0.192206 10.183844
-1.824423 -7.715654
0.931346 4.348355
0.308813 -4.086001
0.397143 -11.808859
-0.048715 41.227314
0.877342 35.850311
-0.759794 0.476634
0.978593 7.674673
-1.195056 3.038826
2.639894 -3.411063
0.191127 3.603507
0.402932 1.084298
-2.152022 18.107616
1.546802 8.322713
-0.143089 -4.075922
-0.150142 5.866741
-1.408444 -3.250696
1.566148 -10.413164
0.178171 -10.226697
0.362164 -0.028556
-0.070125 24.390722
0.594752 17.482765
-0.286980 -6.904069
0.464818 10.205451
-1.006841 -14.357209
2.329569 -3.691613
0.335745 2.407139
1.019658 -3.155647
-1.259455 7.991899
2.383695 19.680567
-0.094947 -2.413742
0.209330 6.664768
-2.221034 1.379860
1.292387 2.046333
0.243626 -0.890741
0.428773 -7.193658
-1.113744 41.341354
2.609799 31.140514
-0.446468 2.534188
0.490104 4.627575
-1.117226 -3.241744
1.791562 8.414926
0.156012 0.183336
0.532447 3.154545
-0.764484 18.513958
0.952395 11.771298
-0.332567 0.346987
0.202165 14.716752
-2.129240 -15.558954
1.353583 -1.926790
-0.010963 -16.336386
0.399053 -2.790569
0.750657 31.148336
0.655743 24.481859
-0.453210 -0.735879
0.286900 6.546703
-0.715673 -12.357815
1.548488 3.872171
0.271874 0.802339
0.502073 -4.854850
-0.497037 17.761904
1.191161 13.954446
0.015630 1.331566
0.341867 8.935369
-2.316009 -5.395058
0.758610 1.964505
0.241320 -3.237686
0.267151 -11.234388
-0.273126 32.624771
1.753523 40.431995
-0.784011 3.045757
0.705987 5.661178
-1.386400 1.353557
2.376458 1.674851
0.242973 4.732178
0.491227 0.354061
-1.606762 8.658955
1.167111 5.987103
-0.137601 -12.041750
-0.251375 10.397204
-1.431514 -8.904108
0.988280 -13.208963
0.261484 -6.354970
0.395932 -0.702529
0.283704 26.899563
0.420959 15.441778
-0.355804 -13.727784
0.527372 12.398515
-1.169559 -15.998457
1.906688 -5.816055
0.354492 3.851572
0.825760 -4.162642
-0.490190 13.057229
2.255773 13.526449
-0.004956 -3.237127
0.026709 7.866448
-1.810372 -0.451183
1.083827 -0.183620
0.135836 -2.266582
0.375812 -5.512248
-1.966443 38.682854
1.977988 24.565481
-0.704656 6.358810
0.480786 7.051749
-0.976417 -2.422727
2.502148 6.759346
0.083588 3.258795
0.543629 0.910013
-1.231959 23.091507
0.785492 14.807000
-0.213554 1.688002
0.004748 18.171820
-1.547192 -16.116837
1.501045 -3.281141
0.080133 -4.634724
0.476592 -2.180929
0.442470 40.303989
1.072766 27.592009
-0.594738 -4.166807
0.422480 7.616091
-0.927521 -7.274406
1.991623 1.296359
0.291307 2.398781
0.721081 -1.950625
-0.804256 24.929474
1.648388 19.119692
0.060852 -0.590639
0.266085 9.103249
-1.957399 -2.884607
1.116929 2.672397
0.354580 -2.748541
0.330733 -14.156131
-0.527851 39.575626
0.991152 43.194984
-0.589619 1.269186
0.787401 8.730713
-1.013800 1.025075
2.825403 1.895381
0.240890 2.745566
0.427195 2.544456
-1.953109 12.243958
1.448616 12.060747
-0.210492 -3.379058
-0.056713 10.204020
-1.652370 -5.102737
1.294748 -12.270802
0.111608 -8.675921
0.326634 -1.167627
0.021781 31.125782
0.455335 21.468430
-0.375440 -3.371207
0.393620 11.301987
-0.851456 -19.414892
2.107030 -2.228865
0.373233 1.924056
0.884438 -1.720581
-0.975127 9.840128
2.003303 17.395407
-0.036915 -1.111372
0.148456 5.399970
-1.914412 4.773819
1.447907 0.537122
0.194979 -1.038179
0.495771 -9.955025
-1.058987 32.947052
2.011222 32.454418
-0.309650 4.719106
0.436082 4.635524
-1.237105 -1.254284
2.022740 9.428345
0.190342 1.460767
0.479017 2.484788
-1.078483 16.221748
1.207642 9.654212
-0.258087 -1.672358
0.071852 13.415978
-1.877228 -16.072031
1.289568 -4.871185
0.067713 -13.442700
0.435551 -4.165503
0.466140 30.589535
0.904895 21.597990
-0.518369 -2.532048
0.337363 5.637264
-0.554975 -17.400511
1.691879 1.145742
0.227934 0.889297
0.587303 -5.729732
-0.262133 18.666620
1.395048 17.002878
-0.019090 4.308379
0.304235 12.669943
-2.074059 -6.460845
0.920546 1.212957
0.284927 -1.785466
0.209724 -16.023964
-0.636067 31.576820
1.349887 34.677502
-0.971625 5.300859
0.590249 4.449709
-1.567867 3.602385
2.145497 4.516663
0.296022 4.120170
0.445299 0.868772
-1.441931 14.128431
1.355752 6.007401
-0.012814 -7.496573
-0.430000 8.500124
-1.204693 -7.113256
1.101018 -6.836818
0.196463 -6.234002
0.436747 -1.129788
0.141052 22.854876
0.290821 18.811443
-0.529536 -7.732510
0.634280 10.789847
-1.334721 -20.325773
1.815645 -1.903316
0.394778 3.797577
0.732682 -8.183819
-0.741244 11.768337

View File

@@ -0,0 +1,17 @@
1 16
225
250
275
300
325
350
375
400
425
450
475
500
525
550
575
600

View File

@@ -0,0 +1,6 @@
1 4
2900
3100
3300
3500

View File

@@ -0,0 +1,17 @@
1 16
325
350
375
400
425
450
475
500
525
550
575
600
625
650
675
700

View File

@@ -0,0 +1,17 @@
1 16
500
550
600
650
700
750
800
850
900
950
1000
1050
1100
1150
1200
1250

View File

@@ -0,0 +1,17 @@
1 16
700
800
900
1000
1100
1200
1300
1400
1500
1600
1700
1800
1900
2000
2100
2200

View File

@@ -0,0 +1,19 @@
1 16
950
1050
1150
1250
1350
1450
1550
1650
1750
1850
1950
2050
2150
2250
2350
2450

View File

@@ -0,0 +1,19 @@
1 16
1100
1200
1300
1400
1500
1600
1700
1800
1900
2000
2100
2200
2300
2400
2500
2600

View File

@@ -0,0 +1,19 @@
1 16
1500
1600
1700
1800
1900
2000
2100
2200
2300
2400
2500
2600
2700
2800
2900
3000

View File

@@ -0,0 +1,11 @@
1 8
2300
2400
2500
2600
2700
2800
2900
3000

View File

@@ -0,0 +1,65 @@
3 64
2.048073 2.534502 2.645915
2.019670 2.269744 2.605462
1.961101 2.329646 2.562857
1.968573 2.532712 2.616918
2.183480 2.514381 2.629582
2.259379 2.516615 2.620410
2.172791 2.462460 2.567064
2.097666 2.303933 2.421685
2.052990 2.353242 2.546992
2.043642 2.232362 2.499262
2.106151 2.393131 2.488401
2.099167 2.437862 2.558655
2.013877 2.422875 2.530071
2.033848 2.483776 2.584598
2.114474 2.516856 2.602372
2.229214 2.584056 2.678855
2.131151 2.584299 2.674845
1.472721 2.477091 2.630241
2.010907 2.598415 2.682989
2.353653 2.524066 2.619773
2.419897 2.623938 2.699605
2.319080 2.602148 2.689044
1.860342 2.503881 2.616576
1.910517 2.386693 2.610126
1.748689 2.371809 2.496542
1.618495 2.403425 2.554956
1.844073 2.437026 2.533443
1.924810 2.388543 2.502698
1.937227 2.258363 2.501697
1.687554 2.209123 2.545239
1.851950 2.278628 2.565632
1.868154 2.330150 2.444883
1.874180 2.213118 2.351940
1.757311 2.030626 2.433836
1.650306 2.152371 2.243421
1.612794 1.884686 2.339313
1.745431 2.278895 2.389449
1.590923 2.304155 2.408510
1.475982 2.275548 2.509897
1.508695 2.045463 2.455520
1.872054 2.061777 2.246202
1.983947 2.159155 2.445535
1.745180 2.483765 2.593698
1.900116 2.079600 2.407479
1.841672 2.167042 2.486827
1.932912 2.148464 2.569850
2.134174 2.363673 2.584252
2.106094 2.450645 2.638417
1.954135 2.460313 2.666512
1.907634 2.573801 2.674025
1.625579 2.539569 2.656363
1.785866 2.572616 2.676082
1.798447 2.376454 2.624298
2.020033 2.397244 2.619868
1.946581 2.468791 2.564185
2.008920 2.342400 2.469132
1.983846 2.271044 2.395408
1.988039 2.154150 2.317920
2.077197 2.216622 2.389101
2.117255 2.283907 2.512242
2.177233 2.334622 2.458268
2.214655 2.425510 2.620013
2.199931 2.390272 2.520731
2.271755 2.448682 2.552649

View File

@@ -0,0 +1,11 @@
1 8
2500
2600
2700
2800
2900
3000
3100
3200

View File

@@ -0,0 +1,513 @@
10 512
0.435217 0.668864 1.010296 1.220420 1.503978 1.784675 2.135458 2.357467 2.618905 2.738042
0.179285 0.333160 0.500638 0.796950 1.039987 1.234969 1.652301 1.848233 2.625555 2.804968
0.268785 0.356576 0.595753 1.044339 1.249382 1.428680 1.686986 1.864689 2.339905 2.513801
0.120070 0.165585 0.484694 0.959160 1.237528 1.529146 1.837513 2.107730 2.487495 2.766846
0.150214 0.229487 0.628240 0.961255 1.337065 1.598306 1.919745 2.217861 2.537318 2.759560
0.268624 0.345980 0.569637 0.754737 0.916538 1.508543 1.786354 1.954418 2.369530 2.501822
0.246064 0.468874 0.662711 0.890015 1.147153 1.510431 1.781056 2.095943 2.655391 2.800369
0.191631 0.280628 0.393229 0.611761 1.420170 1.707741 1.873032 2.101553 2.280348 2.499488
0.361668 0.507047 0.789974 1.045992 1.502378 1.677032 1.905337 2.162555 2.432259 2.590873
0.208160 0.294285 0.448634 0.694229 0.872517 1.070315 1.703352 2.168742 2.426189 2.603657
0.316939 0.513618 0.705487 0.917036 1.175989 1.311140 1.618599 2.037840 2.450523 2.579395
0.241068 0.377728 0.521595 0.717203 1.310414 1.539991 1.736431 2.098926 2.297917 2.587348
0.234937 0.281875 0.780422 1.440733 1.609428 1.756430 1.977206 2.148605 2.602032 2.722501
0.178679 0.242672 0.416988 0.708348 0.955620 1.176671 1.781798 2.054488 2.281591 2.448112
0.345036 0.421080 0.740887 1.165442 1.324944 1.488798 1.763463 1.906174 2.395050 2.649158
0.249586 0.357494 0.520747 0.847195 1.428408 1.597779 1.778194 2.178502 2.413437 2.564662
0.295235 0.574231 1.249097 1.464097 1.727559 1.926790 2.095363 2.284830 2.567065 2.722480
0.341930 0.427307 0.634001 0.804212 0.905629 1.333373 1.790329 1.892756 2.445823 2.602828
0.363948 0.508985 0.667357 0.946354 1.437562 1.626545 1.811141 2.039091 2.291882 2.435493
0.163514 0.277407 0.409207 0.902065 1.189070 1.339636 1.802411 1.960770 2.652930 2.818987
0.302643 0.359753 0.651207 1.208021 1.423702 1.548149 1.882130 2.015591 2.260535 2.578896
0.155928 0.216908 0.381812 0.654803 1.112373 1.589935 1.847562 1.976716 2.224078 2.725337
0.274981 0.347675 0.572000 0.736046 0.894248 1.632373 1.891391 2.056890 2.602900 2.721779
0.154496 0.243461 0.348174 0.689505 1.573807 1.700306 1.943182 2.101580 2.564661 2.773169
0.292612 0.466612 0.795936 1.047468 1.413693 1.750848 2.062894 2.340073 2.613612 2.769493
0.242896 0.361500 0.555859 0.793597 0.932291 1.409467 1.863863 2.009534 2.464500 2.677491
0.221646 0.344724 0.554564 0.729403 1.136575 1.301772 1.529181 2.163590 2.395821 2.610805
0.160969 0.224467 0.371545 0.626879 1.160953 1.444229 1.675966 1.879779 2.478590 2.672023
0.214172 0.341585 0.676575 0.977397 1.325429 1.720096 2.072595 2.369539 2.635285 2.778792
0.203311 0.289438 0.458739 0.914153 1.122885 1.302925 1.583844 1.886828 2.187869 2.427039
0.280383 0.371600 0.824827 1.100246 1.236225 1.398923 1.578041 2.016000 2.368973 2.506732
0.170627 0.251778 0.393686 0.608347 1.287599 1.446665 1.793278 2.036554 2.310153 2.752439
0.180580 0.288746 0.987854 1.431706 1.677216 1.915661 2.124939 2.289452 2.589612 2.754264
0.176335 0.266263 0.445421 0.706403 0.875402 1.422918 1.758670 1.960910 2.410676 2.601751
0.216173 0.287404 0.480696 1.009765 1.291304 1.476644 1.895584 2.064286 2.284064 2.483108
0.176523 0.273934 0.403407 0.966139 1.304724 1.436612 1.944728 2.084836 2.544458 2.762416
0.311836 0.550501 0.879591 1.096228 1.276661 1.477859 1.817706 2.154340 2.560467 2.779841
0.179765 0.250560 0.455939 1.023886 1.225132 1.475662 1.734617 1.918713 2.147342 2.438235
0.271033 0.457235 0.599622 0.821049 0.940125 1.200937 1.849716 1.986656 2.548168 2.751578
0.179326 0.248002 0.426405 0.817060 1.285888 1.565019 2.117359 2.298712 2.572404 2.752701
0.374409 0.535936 0.897009 1.185070 1.591569 1.757202 1.967944 2.179985 2.457394 2.622641
0.185472 0.282752 0.409439 0.657499 0.856446 1.029396 1.879933 2.069323 2.344742 2.753103
0.375964 0.578457 0.758945 0.929339 1.127475 1.259437 1.704109 2.122973 2.336031 2.498298
0.225641 0.361030 0.501679 0.783379 1.314851 1.452621 1.714150 1.987157 2.225703 2.724361
0.144996 0.252919 0.632145 1.226038 1.575343 1.901549 2.171481 2.390554 2.682293 2.809834
0.172022 0.263338 0.448634 0.729435 0.984007 1.171597 1.757049 1.990232 2.321305 2.771210
0.235731 0.351117 0.796871 1.055711 1.300224 1.591818 1.895875 2.122918 2.417888 2.599817
0.254053 0.319371 0.455623 1.086141 1.664667 1.915882 2.059084 2.233416 2.452037 2.586788
0.375538 0.742993 1.139911 1.337758 1.735562 2.013906 2.315012 2.483433 2.651575 2.755211
0.247245 0.481131 0.710366 0.897602 1.121094 1.271709 1.787346 2.199502 2.429663 2.740668
0.226103 0.311441 0.501648 0.844424 1.362818 1.531338 1.777474 1.989925 2.187493 2.358501
0.195862 0.296224 0.609554 0.783241 1.243472 1.445477 1.637032 2.022645 2.483557 2.646137
0.233302 0.299441 0.472792 1.249457 1.457875 1.601860 1.831433 1.993719 2.597193 2.755433
0.168096 0.224183 0.382700 0.596214 1.060587 1.294418 1.605760 1.848489 2.357695 2.569186
0.330050 0.445912 0.661713 0.874446 1.000792 1.452973 1.943987 2.076916 2.423883 2.612359
0.226382 0.287303 0.517631 0.806229 1.309009 1.885280 2.160514 2.286410 2.526377 2.660822
0.203170 0.499314 0.887358 1.235074 1.462922 1.698260 1.999316 2.229225 2.571613 2.766691
0.307531 0.378353 0.573606 0.712218 0.850169 1.308996 2.059092 2.263816 2.497943 2.676815
0.276203 0.510250 0.686800 0.902844 1.205197 1.327979 1.718894 2.038947 2.256393 2.697149
0.161948 0.229115 0.393619 0.683613 1.137811 1.322692 1.783723 1.961584 2.389073 2.636082
0.201334 0.276773 0.468994 0.967017 1.475971 1.632424 1.965774 2.197278 2.480593 2.701553
0.214587 0.315421 0.469498 0.733397 1.146003 1.277911 1.727839 2.227135 2.440264 2.681122
0.255602 0.394609 0.743393 0.977796 1.199085 1.405972 1.918336 2.224828 2.479187 2.663394
0.245989 0.352625 0.517055 0.802830 1.558712 1.795653 1.944055 2.133640 2.333267 2.479982
0.337423 0.480433 0.869036 1.139571 1.630764 1.822959 2.074843 2.292613 2.479130 2.625317
0.220974 0.358850 0.571640 0.752791 0.937013 1.151721 1.674398 2.062466 2.558717 2.784838
0.267518 0.331708 0.541111 1.116547 1.411121 1.532868 1.792949 1.933520 2.248940 2.628644
0.084613 0.105083 0.297424 0.916949 1.256301 1.567029 1.885388 2.189875 2.522795 2.792102
0.205328 0.287223 0.724462 1.032395 1.457708 1.642169 1.925628 2.175524 2.429638 2.605488
0.232554 0.338724 0.502115 0.859975 1.044090 1.245652 1.806555 1.999641 2.261164 2.459984
0.291638 0.379172 0.626072 0.792796 0.959124 1.504886 1.734465 1.919612 2.614359 2.722709
0.191554 0.263114 0.426797 0.610628 1.077406 1.829543 2.021948 2.210572 2.427652 2.613828
0.389151 0.679476 0.915414 1.036635 1.250846 1.586610 2.040972 2.281500 2.567941 2.718815
0.203200 0.301280 0.470357 0.668716 0.851737 0.980327 1.570862 2.037617 2.289067 2.693877
0.304064 0.405934 0.710274 0.962705 1.128820 1.341667 1.635050 1.845382 2.079916 2.507510
0.171777 0.240705 0.409371 0.786432 1.223202 1.375689 1.691760 1.866080 2.350406 2.493942
0.231251 0.277994 0.557867 1.325822 1.660352 1.779477 2.007138 2.172322 2.440457 2.652308
0.188101 0.259494 0.412543 0.624843 0.839549 1.033700 1.634128 1.931944 2.246076 2.425773
0.361304 0.419465 0.795676 1.184605 1.296796 1.578447 1.841746 1.997361 2.540538 2.687139
0.274372 0.338938 0.492443 0.963516 1.509514 1.706378 1.869885 2.077166 2.261281 2.444183
0.415990 0.652103 1.031293 1.269551 1.572746 1.772975 2.004659 2.175272 2.430606 2.596553
0.242045 0.370942 0.534392 0.763529 1.001165 1.129764 1.682192 2.144644 2.324478 2.715697
0.377438 0.588168 0.765394 0.976873 1.356652 1.490088 1.737970 2.006774 2.213691 2.389973
0.191625 0.284123 0.405342 1.016777 1.432730 1.547592 1.813930 1.958317 2.470765 2.649257
0.272672 0.349555 0.633911 1.152234 1.303938 1.547640 1.919504 2.047696 2.562779 2.730575
0.168423 0.236330 0.421468 0.831345 1.083543 1.553448 1.880726 2.064701 2.370864 2.632945
0.219318 0.301481 0.513617 0.765086 1.026019 1.514647 2.048203 2.248568 2.499810 2.657069
0.232695 0.347947 0.495203 0.718830 1.423013 1.722493 1.879584 2.165044 2.420251 2.589658
0.270284 0.336865 0.684929 1.155789 1.690421 1.876744 2.027359 2.226178 2.446748 2.582000
0.149701 0.193747 0.352019 0.520123 0.823974 1.434753 1.686592 1.961148 2.370914 2.693067
0.254818 0.412303 0.601514 0.771438 1.175450 1.376569 1.539029 1.937039 2.408576 2.563621
0.233713 0.355886 0.593725 0.762880 1.271479 1.563900 1.797523 2.094688 2.538627 2.711734
0.179028 0.237103 0.396818 1.042021 1.633539 1.762676 2.123935 2.322391 2.588193 2.751345
0.182027 0.251039 0.434581 0.714302 0.950997 1.437895 1.813570 1.969103 2.145882 2.353968
0.501538 0.692148 0.848860 1.071308 1.350543 1.489476 1.841643 2.104284 2.341536 2.515294
0.274530 0.381470 0.526682 0.922143 1.444946 1.573605 1.858767 2.066747 2.284796 2.626819
0.360617 0.583131 0.979491 1.254083 1.488351 1.797557 2.219518 2.482176 2.742366 2.862025
0.140913 0.220301 0.619552 0.818307 1.052429 1.339972 1.830726 2.133953 2.536378 2.751128
0.293514 0.391691 0.790080 0.962740 1.160319 1.526602 1.805491 2.041462 2.361619 2.564962
0.199542 0.290571 0.452891 0.689515 1.258530 1.409879 1.886242 2.228126 2.465677 2.726646
0.296920 0.356356 0.784287 0.996540 1.146175 1.623865 1.815498 2.038297 2.600627 2.705700
0.206451 0.276025 0.537547 0.802572 1.220407 1.642060 1.863625 2.001978 2.215339 2.585384
0.333650 0.464751 0.653772 0.966306 1.103865 1.340203 1.784701 1.914591 2.470171 2.686916
0.181861 0.244870 0.376456 0.554383 1.329897 1.810440 2.047836 2.202318 2.660855 2.817057
0.450565 0.647291 0.951172 1.229431 1.519644 1.686812 2.049107 2.267169 2.501284 2.650596
0.219996 0.320591 0.427747 0.601183 0.753448 0.929578 1.741979 2.285789 2.472633 2.749566
0.333848 0.423373 0.658791 1.031299 1.222625 1.365771 1.901889 2.121101 2.290306 2.531185
0.166064 0.233902 0.383355 0.661806 1.226567 1.399684 1.771269 1.974537 2.173487 2.566344
0.189286 0.243602 0.390584 1.387930 1.588719 1.763237 2.091118 2.316314 2.593526 2.755080
0.158404 0.224878 0.385000 0.668463 0.942954 1.411967 1.700313 1.828069 2.059396 2.692546
0.325989 0.461263 0.851471 1.045709 1.284028 1.516199 1.797341 2.088387 2.437669 2.627215
0.223709 0.289190 0.632812 0.858738 1.541903 1.746766 1.935738 2.184816 2.404330 2.583013
0.545842 0.952420 1.340820 1.516838 1.838879 2.012890 2.244968 2.403170 2.592285 2.691119
0.238526 0.349079 0.494582 0.987665 1.170746 1.348229 1.468645 2.296964 2.644160 2.787381
0.270857 0.442003 0.655998 0.881913 1.259254 1.428358 1.769867 1.998528 2.395589 2.652840
0.154384 0.211806 0.489481 0.997257 1.249817 1.541232 1.778865 1.949397 2.319136 2.623391
0.268258 0.312888 0.589114 1.258625 1.572705 1.675430 1.912780 2.070458 2.279933 2.564230
0.170715 0.224965 0.374011 0.540197 1.161887 1.499072 1.925865 2.082569 2.246619 2.469724
0.324358 0.391989 0.706816 0.833614 1.015725 1.568995 1.735976 2.127068 2.558411 2.653871
0.178059 0.258575 0.374125 0.536831 1.334827 1.798628 1.986978 2.189252 2.432266 2.626696
0.198857 0.420955 0.817664 1.178363 1.466742 1.821295 2.207327 2.474411 2.738275 2.851185
0.188344 0.324302 0.470468 0.790033 0.934101 1.188722 1.887171 2.052833 2.448325 2.630236
0.201295 0.365646 0.526513 0.758388 1.140096 1.267331 1.650173 1.879342 2.102889 2.600286
0.135058 0.169428 0.307348 0.503160 1.018083 1.447946 1.810984 2.134002 2.480277 2.759846
0.178006 0.266610 0.390327 0.928681 1.501613 1.621327 1.871356 2.025864 2.580442 2.770801
0.246182 0.424290 0.644023 0.801168 1.114876 1.277757 1.503317 2.074888 2.295695 2.501380
0.322996 0.430355 0.631600 1.047698 1.221840 1.426726 1.903081 2.032223 2.516726 2.708452
0.292994 0.430599 0.619178 0.794567 1.283029 1.652817 1.840836 2.069946 2.385375 2.528246
0.525494 0.787797 1.121816 1.387482 1.674574 1.936221 2.224042 2.390624 2.634276 2.743234
0.299504 0.409196 0.602235 0.892336 1.056426 1.253766 1.489136 1.639876 2.427480 2.650368
0.423758 0.520480 0.758987 1.041257 1.173655 1.423676 1.818235 1.936407 2.363001 2.626644
0.155042 0.247496 0.641445 0.954509 1.224970 1.465850 1.837841 2.090456 2.451501 2.716155
0.251949 0.421094 0.706797 0.975659 1.259906 1.520067 1.816310 2.122017 2.474913 2.716671
0.215220 0.302248 0.730598 0.896343 1.145567 1.370192 1.700685 2.022563 2.283265 2.489220
0.285230 0.453559 0.663670 0.861526 1.011602 1.247419 1.655985 1.861291 2.578936 2.731333
0.162067 0.219409 0.373433 0.544669 1.103298 1.597178 1.921040 2.143402 2.406499 2.660484
0.342367 0.511499 0.931350 1.163219 1.393645 1.611146 1.972769 2.194416 2.470766 2.649264
0.251010 0.364125 0.560956 0.746545 1.019837 1.170725 1.532945 2.288671 2.577088 2.723074
0.315001 0.489412 0.720682 0.877607 1.090466 1.253848 1.448221 1.922954 2.255887 2.408634
0.174666 0.235793 0.387644 0.554402 1.231089 1.456137 1.688034 2.127450 2.367035 2.597270
0.215113 0.341915 1.043717 1.322751 1.495414 1.741895 1.961164 2.239824 2.544905 2.703945
0.219852 0.301770 0.513912 0.705474 0.877540 1.295896 1.699002 1.987057 2.287968 2.496966
0.290638 0.366442 0.655155 1.044990 1.172154 1.532536 1.800791 1.948931 2.509679 2.660055
0.232252 0.313770 0.658552 0.941977 1.463174 1.665488 1.862461 2.027843 2.534016 2.701236
0.326539 0.552681 1.121731 1.331381 1.520072 1.867084 2.082861 2.332474 2.606039 2.737092
0.190254 0.340428 0.492777 0.739738 0.895461 1.079371 1.643156 1.795290 2.491822 2.729382
0.283586 0.418440 0.587306 0.870866 1.418553 1.577030 1.799498 2.069398 2.274484 2.438103
0.235752 0.357650 0.502891 1.012434 1.258853 1.407789 1.820057 1.955830 2.505903 2.734330
0.278412 0.343137 0.849977 1.232895 1.350504 1.590626 1.787519 2.091578 2.541360 2.663856
0.162966 0.243159 0.439238 0.684821 0.887783 1.462899 1.881739 2.044253 2.289393 2.705002
0.235063 0.371799 0.578210 0.752199 1.008546 1.476284 1.804912 2.271399 2.655042 2.789653
0.154939 0.223696 0.344718 0.667555 1.495659 1.669436 2.069883 2.307215 2.627692 2.811343
0.239702 0.335917 0.716616 1.131805 1.452514 1.639133 2.105515 2.279822 2.502030 2.669220
0.226818 0.331261 0.472705 0.651974 0.781639 1.219798 1.822904 2.082732 2.439327 2.610900
0.223413 0.359594 0.534704 0.741518 1.225894 1.389874 1.618191 2.009911 2.207000 2.459844
0.171308 0.268378 0.383799 0.858926 1.376293 1.519165 1.780601 1.922915 2.623094 2.802402
0.140134 0.212320 0.443224 0.967457 1.264241 1.562153 1.929148 2.217388 2.668341 2.830751
0.221323 0.322124 0.485563 0.818589 1.011837 1.198984 1.423616 1.669403 2.157523 2.363190
0.369687 0.525655 0.719213 0.939654 1.137631 1.312217 1.599935 1.826813 2.355221 2.580680
0.211975 0.314411 0.489148 0.739213 1.377801 1.554504 1.824373 2.158875 2.352992 2.722621
0.170698 0.296368 0.934285 1.243133 1.555900 1.866544 2.159940 2.363436 2.585032 2.738530
0.189263 0.305887 0.439912 0.784610 1.227264 1.342508 1.587650 1.754907 2.439893 2.721315
0.296339 0.385169 0.612012 1.081322 1.276361 1.437178 1.871470 2.001718 2.339094 2.640217
0.229588 0.320544 0.517278 0.969137 1.142560 1.626089 1.877916 2.115461 2.546741 2.708025
0.248869 0.420193 0.732388 1.049015 1.303410 1.601458 1.949210 2.239464 2.648223 2.822614
0.207600 0.292320 0.496539 0.857149 1.182294 1.399849 1.714165 1.868238 2.027936 2.200737
0.225558 0.396897 0.541783 0.873366 1.178972 1.299579 1.677191 1.849602 2.330475 2.752717
0.176821 0.231377 0.372767 0.508565 1.152819 1.808050 2.112679 2.250073 2.571342 2.748550
0.352149 0.515765 1.023238 1.260221 1.443565 1.622067 1.872804 2.100177 2.489280 2.671043
0.166138 0.263444 0.370151 0.590066 0.754819 0.940533 1.761870 1.946611 2.445015 2.758191
0.342082 0.476411 0.656223 0.851774 1.003992 1.153372 1.694401 2.065625 2.255642 2.440148
0.227237 0.376514 0.514329 0.894887 1.141673 1.283052 1.831377 1.985902 2.334470 2.784878
0.215891 0.269548 0.684111 1.405658 1.674813 1.800925 2.172085 2.339395 2.591569 2.730100
0.236240 0.400377 0.533684 0.750343 0.910405 1.089112 1.737729 1.912807 2.192519 2.688733
0.169242 0.284879 0.916252 1.169769 1.433683 1.644376 1.919124 2.161625 2.482664 2.682591
0.270731 0.336506 0.477594 1.042714 1.605840 1.796859 1.945909 2.160039 2.354913 2.520950
0.420586 0.652563 1.117162 1.406006 1.747537 1.947424 2.203094 2.359970 2.547902 2.682168
0.281552 0.395037 0.640181 0.944531 1.193959 1.330492 1.718657 2.188389 2.444591 2.578673
0.311824 0.476892 0.633431 0.845825 1.332518 1.491656 1.693614 2.041082 2.289317 2.439399
0.133945 0.200790 0.647237 0.927687 1.188883 1.369658 1.699557 1.972777 2.295259 2.678185
0.204796 0.278215 0.443465 1.270484 1.405209 1.640920 1.824252 2.327085 2.599637 2.772533
0.183970 0.244116 0.410594 0.639103 1.221589 1.404867 1.628358 1.902439 2.168632 2.306804
0.343622 0.434735 0.666599 0.868069 1.048942 1.532778 1.819835 1.971884 2.288701 2.448745
0.238017 0.320361 0.657255 0.917611 1.303306 1.727361 1.988909 2.181455 2.442965 2.613322
0.323613 0.545056 0.930173 1.226059 1.440181 1.772300 2.056890 2.347811 2.689382 2.820616
0.288930 0.401387 0.617124 0.836453 0.990306 1.261227 1.913283 2.110049 2.324584 2.557162
0.332670 0.480804 0.656147 0.880536 1.029566 1.230493 1.769063 1.932296 2.200370 2.585210
0.185551 0.265352 0.409432 0.608847 1.034698 1.222821 1.876965 2.171647 2.403502 2.666441
0.155026 0.223348 0.401684 1.079141 1.415789 1.620021 2.045515 2.258512 2.631625 2.802291
0.183461 0.263081 0.425694 0.635685 1.188664 1.357556 1.574991 2.085982 2.288725 2.511108
0.314738 0.463011 0.648733 0.877651 1.002890 1.265811 2.005414 2.198095 2.481535 2.714178
0.244411 0.318444 0.546578 0.793615 1.326150 1.735479 1.945598 2.114662 2.315350 2.478535
0.326237 0.543540 0.987361 1.304413 1.684932 1.902147 2.207172 2.374273 2.557527 2.716216
0.157795 0.283302 0.430398 0.660379 0.811060 1.142539 1.479298 1.718714 2.670264 2.847556
0.220856 0.283872 0.779935 1.074940 1.312211 1.626329 1.837609 1.968885 2.155988 2.602381
0.140763 0.205719 0.406561 0.762459 1.041266 1.486993 1.838306 2.114606 2.552810 2.772285
0.140451 0.395920 0.792110 1.108001 1.402642 1.623079 1.943151 2.227952 2.546163 2.773998
0.229862 0.336462 0.546590 0.810150 1.201906 1.346787 1.825323 2.092925 2.285730 2.473359
0.224913 0.328246 0.517269 0.874793 1.012587 1.452178 1.695778 2.014930 2.511447 2.672574
0.247745 0.335741 0.546558 0.710177 1.170556 1.727789 1.970678 2.158532 2.482819 2.628913
0.398252 0.555087 0.890367 1.121205 1.381533 1.601228 1.866647 2.066612 2.405164 2.588016
0.198563 0.288867 0.478054 0.658477 0.851841 1.027105 1.539739 2.021106 2.579462 2.784184
0.304271 0.371642 0.661590 1.068976 1.224249 1.411927 1.680524 1.869770 2.100073 2.308554
0.188223 0.257939 0.432402 0.735050 1.318038 1.485528 1.828110 2.046435 2.307018 2.457237
0.246723 0.297276 0.604475 1.310901 1.570442 1.688851 1.913658 2.051334 2.556011 2.714965
0.158309 0.234509 0.435792 0.667900 0.957567 1.235918 1.592945 1.818158 2.307389 2.768973
0.419843 0.501412 0.766892 1.073173 1.189374 1.480225 1.766597 1.922151 2.537937 2.694771
0.275140 0.335563 0.678421 1.081521 1.592379 1.772635 1.931245 2.140699 2.333804 2.490857
0.372056 0.856814 1.239538 1.409989 1.690297 1.863018 2.072702 2.273547 2.532657 2.690517
0.321254 0.422981 0.604856 0.793437 0.912112 1.128454 1.795979 2.173232 2.360146 2.536137
0.395214 0.598779 0.771997 0.946713 1.213777 1.330433 1.660335 1.977154 2.165056 2.344018
0.225286 0.317828 0.464801 1.112329 1.369512 1.511999 1.921954 2.053407 2.593519 2.777285
0.330612 0.407807 0.730129 1.259731 1.459811 1.605671 1.981307 2.137009 2.465971 2.679722
0.213145 0.305305 0.507016 0.662299 1.056848 1.479862 1.671904 2.102707 2.369871 2.581994
0.219658 0.296096 0.443507 0.610973 0.799691 1.676579 1.965487 2.153235 2.502228 2.692999
0.174947 0.257739 0.373547 0.552567 1.405316 1.614249 1.848917 2.117795 2.317884 2.711904
0.209667 0.297529 0.756195 1.095304 1.564196 1.844775 2.103697 2.292657 2.520051 2.679489
0.170138 0.240310 0.452247 0.684414 0.880102 1.366921 1.741648 2.131295 2.505730 2.732611
0.278164 0.468635 0.707518 0.853693 1.054780 1.210458 1.540941 2.174562 2.410662 2.612138
0.155738 0.238890 0.352836 0.621012 1.441438 1.619698 1.825165 1.975331 2.525373 2.748574
0.223776 0.274424 0.479048 0.797871 1.694190 1.878135 2.135285 2.373726 2.595422 2.729787
0.151088 0.198286 0.326558 0.536276 0.845893 1.141653 1.460565 1.762868 2.025851 2.177303
0.434445 0.614208 0.887657 1.028446 1.191359 1.392204 1.786886 2.062481 2.423405 2.619356
0.180755 0.275311 0.397787 0.859366 1.409762 1.523325 1.908846 2.082319 2.389720 2.743887
0.275975 0.508416 0.889894 1.318925 1.633314 1.904728 2.169012 2.374655 2.726973 2.847666
0.156239 0.262624 0.406657 0.739074 1.044495 1.201234 1.810887 2.005600 2.581700 2.804889
0.195391 0.258771 0.654924 0.824371 1.315259 1.500728 1.765938 2.063992 2.341176 2.513659
0.178034 0.301047 0.463020 0.716172 1.198868 1.340454 1.834558 2.022132 2.400750 2.776294
0.340368 0.404236 0.843747 1.039238 1.202107 1.708051 1.914952 2.169509 2.521521 2.623348
0.218465 0.289694 0.528045 0.817051 1.132337 1.580464 1.838891 1.983392 2.147493 2.348131
0.322509 0.458058 0.654679 0.958976 1.118211 1.321565 1.901390 2.046409 2.360931 2.664215
0.191821 0.252321 0.389176 0.581111 1.529667 1.931689 2.083614 2.270465 2.566855 2.713879
0.493961 0.710827 0.982260 1.196274 1.419327 1.620910 1.928015 2.145652 2.429769 2.601973
0.213148 0.311589 0.424636 0.602664 0.736895 1.022165 1.992278 2.218533 2.611628 2.850324
0.288129 0.434441 0.629313 0.856153 1.289667 1.424520 1.875795 2.150240 2.351814 2.536843
0.160031 0.230716 0.406654 0.870424 1.156517 1.392317 1.804098 1.951437 2.210479 2.735164
0.229340 0.293962 0.503222 1.242097 1.475824 1.624647 1.998680 2.144499 2.578549 2.753270
0.158770 0.220035 0.363386 0.577761 0.963090 1.174939 1.738169 1.979202 2.162436 2.661916
0.346062 0.444816 0.716985 1.180717 1.370580 1.522996 1.892173 2.066682 2.395796 2.627659
0.307495 0.389330 0.612607 0.969283 1.557708 1.839939 1.996737 2.172382 2.420627 2.539195
0.437804 0.726957 1.291168 1.503297 1.765428 1.962121 2.163647 2.336227 2.579616 2.708524
0.232184 0.333678 0.528368 0.706749 1.203280 1.379018 1.611161 2.154678 2.592903 2.750319
0.272652 0.461710 0.625777 0.839609 1.342021 1.496726 1.715376 2.137572 2.370040 2.597390
0.184908 0.302324 0.454883 0.880307 1.104383 1.292526 1.777203 1.943364 2.444174 2.622726
0.265644 0.341261 0.553228 1.139475 1.427148 1.560441 1.933941 2.084129 2.393307 2.654135
0.167920 0.207301 0.370331 0.525538 1.030891 1.368163 1.782474 2.062404 2.332762 2.526299
0.343172 0.433912 0.717501 0.889734 1.052060 1.695278 2.053156 2.208456 2.608869 2.718320
0.216527 0.305247 0.445890 0.729271 1.639736 1.903284 2.053351 2.221254 2.432253 2.568018
0.110545 0.209955 0.844788 1.174205 1.492201 1.810243 2.177274 2.440496 2.697294 2.835232
0.217384 0.337412 0.488999 0.761842 0.879715 1.209528 1.970747 2.120795 2.611654 2.791762
0.190459 0.296484 0.469967 0.800649 1.105561 1.278527 1.516938 1.693066 2.114420 2.716739
0.134814 0.175978 0.300425 0.496817 1.244295 1.485308 1.861721 2.131233 2.485046 2.773884
0.210174 0.278266 0.435508 0.927538 1.606908 1.753898 1.957554 2.166283 2.398518 2.749609
0.213766 0.315300 0.509924 0.709930 0.964724 1.106776 1.382615 2.001070 2.323214 2.565314
0.400615 0.524954 0.798552 1.012852 1.135488 1.474850 1.989029 2.130909 2.507971 2.679460
0.249400 0.377023 0.519635 0.754227 1.459559 1.642762 1.828961 2.077882 2.298228 2.467534
0.473365 0.683973 1.052341 1.375830 1.548106 1.747589 2.139299 2.318768 2.609977 2.739255
0.203877 0.341791 0.485180 0.884069 1.097592 1.269532 1.479924 1.757879 2.648399 2.822387
0.273046 0.404254 0.555403 0.954547 1.291233 1.399022 1.722890 1.903441 2.171984 2.645312
0.040369 0.117266 0.617136 0.892043 1.260331 1.541653 1.859383 2.153096 2.498232 2.761886
0.132414 0.211358 0.742445 1.066857 1.331084 1.570793 1.867458 2.132535 2.479624 2.731076
0.237329 0.326529 0.612538 0.790663 0.990133 1.413736 1.738235 1.936914 2.167728 2.451626
0.273960 0.405794 0.572530 0.933672 1.057816 1.397952 1.856531 1.997548 2.599486 2.760042
0.199334 0.298380 0.442931 0.628638 1.303213 1.640138 1.804023 2.113020 2.375455 2.548946
0.350188 0.502010 0.821298 1.038639 1.369294 1.592404 1.910815 2.156486 2.460508 2.653260
0.281558 0.399892 0.573105 0.753299 0.900613 1.054574 1.581987 2.178437 2.430354 2.616044
0.344653 0.543532 0.703715 0.862285 1.198215 1.338208 1.579080 2.060769 2.306749 2.485749
0.220701 0.326795 0.520618 0.755133 1.295552 1.451886 1.690502 2.200045 2.414271 2.615909
0.279478 0.332193 0.801527 1.345966 1.487477 1.678499 1.922202 2.100025 2.585571 2.713387
0.163502 0.212169 0.365096 0.525464 0.869846 1.208807 1.793988 2.040314 2.297180 2.469797
0.285531 0.341488 0.754059 1.170016 1.300835 1.513696 1.699861 1.889918 2.581459 2.706874
0.249595 0.366997 0.626427 0.945219 1.407043 1.560558 1.831657 2.231149 2.466354 2.654518
0.271671 0.443136 1.156412 1.406456 1.676521 1.856481 2.063218 2.230498 2.475840 2.639575
0.286620 0.427806 0.637320 0.803409 0.996161 1.266383 1.681751 2.003968 2.394651 2.588547
0.314906 0.440519 0.612129 0.896126 1.472415 1.717693 1.881351 2.099437 2.369166 2.495466
0.170277 0.251270 0.405477 0.915641 1.126887 1.436630 1.714771 1.893198 2.552995 2.738519
0.279410 0.337137 0.734563 1.281046 1.480602 1.611880 1.853215 1.994883 2.416054 2.654827
0.165776 0.226083 0.417544 0.744574 1.044468 1.534891 1.808494 1.944946 2.138491 2.601790
0.264579 0.336652 0.542033 0.710190 0.913338 1.655751 1.817762 2.231956 2.524436 2.658519
0.158194 0.235588 0.338347 0.541657 1.583377 1.766293 2.009135 2.243336 2.503941 2.775158
0.332612 0.509620 0.822935 1.075876 1.454286 1.650788 1.974450 2.251279 2.537342 2.745115
0.262817 0.359709 0.520893 0.707667 0.818364 1.438849 1.971249 2.087666 2.497014 2.646442
0.233200 0.399599 0.612456 0.775547 1.199192 1.355765 1.646901 2.136245 2.342490 2.695742
0.149687 0.238538 0.372248 0.634520 1.255813 1.433790 1.770041 1.928752 2.611905 2.824930
0.137016 0.210297 0.591489 1.125451 1.375648 1.685296 2.089612 2.390888 2.704458 2.844434
0.213490 0.341024 0.541716 0.750061 1.088199 1.244576 1.555338 1.965568 2.187900 2.383714
0.300159 0.489291 0.825022 1.037100 1.194088 1.347375 1.684747 2.024936 2.465611 2.740973
0.170029 0.255033 0.392758 0.727117 1.382065 1.579676 1.800912 1.959072 2.282335 2.728796
0.175883 0.365509 1.112175 1.385866 1.720391 1.977810 2.245295 2.421614 2.629567 2.754004
0.162590 0.248164 0.454630 0.763209 0.966031 1.282338 1.730743 1.938052 2.479376 2.667563
0.258043 0.345866 0.556520 0.981312 1.361528 1.482377 1.872244 2.158226 2.362269 2.555030
0.234139 0.348843 0.528234 0.987884 1.195217 1.422145 1.960028 2.127365 2.603321 2.793004
0.179699 0.559209 0.867682 1.088835 1.316888 1.571498 1.922198 2.197391 2.501118 2.728679
0.216784 0.310791 0.487492 0.932903 1.201954 1.366554 1.800398 1.977499 2.174265 2.537065
0.186878 0.400655 0.580952 0.846287 1.103872 1.266778 1.842772 2.019592 2.488005 2.717222
0.164641 0.248712 0.389358 0.772822 1.212561 1.369916 2.025869 2.277615 2.617524 2.809527
0.351899 0.520326 0.926597 1.219651 1.509839 1.676837 1.921744 2.111253 2.356380 2.545934
0.242182 0.365285 0.506156 0.716020 0.865221 1.011688 1.786917 2.122981 2.350877 2.767729
0.413776 0.559566 0.735800 0.928997 1.079117 1.267179 1.880069 2.152492 2.324834 2.539856
0.210597 0.329568 0.469735 0.788590 1.215495 1.319810 1.711456 2.058991 2.245438 2.653727
0.197937 0.254148 0.477985 1.227090 1.629920 1.767432 2.186975 2.385104 2.594869 2.725544
0.205489 0.333855 0.523915 0.706275 1.102152 1.246608 1.648901 2.026835 2.281695 2.759313
0.230328 0.322431 0.861834 1.145614 1.347211 1.576111 1.807275 2.004824 2.354365 2.572251
0.224898 0.282022 0.506636 1.152298 1.626560 1.752095 2.028178 2.218821 2.488955 2.670460
0.313732 0.625469 1.164472 1.499077 1.749612 2.018528 2.262230 2.429601 2.692165 2.822502
0.375623 0.575307 0.791200 0.935770 1.096937 1.343393 1.807992 2.187306 2.519720 2.694803
0.236981 0.332412 0.479270 0.844461 1.347641 1.490733 1.683942 2.039143 2.297619 2.458431
0.129047 0.206250 0.636751 0.865101 1.136893 1.356610 1.704798 1.916685 2.518358 2.756320
0.195171 0.266517 0.414793 1.239561 1.452906 1.608357 1.833045 2.047802 2.473522 2.621994
0.165853 0.212720 0.372757 0.536136 1.013938 1.339627 1.555122 1.945745 2.236281 2.440949
0.256981 0.368868 0.635878 0.802543 1.084757 1.439120 1.814729 2.120519 2.458154 2.621456
0.214382 0.297135 0.445091 0.702050 1.365102 1.851262 2.067026 2.207298 2.470728 2.612432
0.340710 0.532103 0.935278 1.171022 1.377886 1.638598 1.965274 2.246164 2.631266 2.806341
0.310524 0.412051 0.582478 0.768755 0.871594 1.119854 1.926346 2.207508 2.407091 2.636633
0.249349 0.443517 0.631532 0.810096 1.205129 1.357206 1.607396 1.984157 2.208016 2.645111
0.143090 0.185312 0.325214 0.504000 1.134467 1.327913 1.673654 2.006903 2.389284 2.746094
0.226575 0.298946 0.453938 0.998061 1.394600 1.597283 2.064183 2.223246 2.425469 2.569458
0.183924 0.255181 0.415834 0.624247 1.042338 1.203077 1.555240 2.125309 2.400352 2.661916
0.275610 0.365968 0.654909 0.990108 1.170799 1.455333 2.077561 2.252672 2.502315 2.685945
0.204334 0.287844 0.394810 0.761295 1.501200 1.784709 1.935569 2.152830 2.349263 2.545639
0.342976 0.527539 0.917466 1.160585 1.499531 1.761830 2.095272 2.301872 2.540570 2.694692
0.202374 0.333367 0.480179 0.708677 0.819505 1.105285 1.806641 1.953348 2.610844 2.797497
0.307033 0.368471 0.602486 1.108611 1.413347 1.528636 1.798519 1.986138 2.169052 2.437256
0.144073 0.196932 0.386988 0.819061 1.289767 1.625073 1.901924 2.136105 2.483019 2.707970
0.176760 0.268627 0.662082 1.056866 1.547973 1.711386 1.972939 2.249909 2.544471 2.761094
0.191409 0.292985 0.492193 0.800526 1.041836 1.278546 1.836626 2.028677 2.249387 2.627785
0.324102 0.399146 0.687435 0.868704 1.022957 1.582084 1.853847 1.981885 2.554914 2.677057
0.229172 0.302836 0.481418 0.704363 0.967567 1.828269 2.097295 2.258467 2.549112 2.704652
0.467124 0.696788 0.939500 1.094987 1.277543 1.488496 1.896279 2.158470 2.474182 2.659994
0.175418 0.234039 0.367674 0.513586 0.747619 1.008405 1.583161 2.053114 2.363292 2.681153
0.410273 0.561949 0.736215 0.956685 1.135688 1.288424 1.750612 1.937714 2.151318 2.489336
0.204541 0.277613 0.529607 0.722971 1.199975 1.447336 1.715634 1.921054 2.357781 2.507488
0.253116 0.311907 0.696982 1.320082 1.575418 1.705324 2.005068 2.168666 2.461879 2.665053
0.163657 0.237902 0.393374 0.609490 0.854272 1.089980 1.526387 1.842337 2.126252 2.679051
0.448627 0.530664 0.812719 1.095201 1.207641 1.575411 1.884209 2.034297 2.553007 2.688355
0.262717 0.338748 0.512685 1.003543 1.480178 1.622083 1.828518 2.142415 2.356457 2.511530
0.417111 0.636688 1.036571 1.319877 1.679924 1.873389 2.073722 2.249396 2.507732 2.651054
0.263698 0.461151 0.618737 0.830471 1.004041 1.158874 1.801566 2.020222 2.306558 2.743041
0.387779 0.575108 0.729791 0.932981 1.361163 1.505161 1.751183 2.068466 2.338260 2.487637
0.181510 0.265666 0.454631 1.082382 1.287303 1.579202 1.851178 2.096963 2.467237 2.646930
0.277668 0.345119 0.602341 1.179200 1.378990 1.545625 1.813861 1.962590 2.491799 2.664453
0.179320 0.248080 0.456925 0.722589 1.126932 1.579450 1.799397 1.950668 2.484125 2.707238
0.314322 0.381145 0.608651 0.727613 0.890472 1.610280 2.136172 2.258358 2.596376 2.709780
0.189539 0.266068 0.419729 0.651693 1.410161 1.643106 1.854810 2.275582 2.492054 2.722009
0.254466 0.313038 0.594149 1.012536 1.688813 1.935465 2.119184 2.287869 2.535543 2.667926
0.134691 0.171906 0.302740 0.492936 0.899551 1.229188 1.733940 2.012878 2.446339 2.742762
0.231556 0.365068 0.680761 0.889142 1.111338 1.295904 1.542636 1.971784 2.427562 2.631912
0.222525 0.305606 0.527193 0.687519 1.181381 1.671764 1.863683 2.072023 2.634517 2.779272
0.178770 0.237415 0.375160 0.856692 1.673680 1.813743 2.016791 2.272421 2.522601 2.735959
0.193532 0.268731 0.451328 0.753471 0.984854 1.285349 1.685647 1.884123 2.091677 2.243418
0.476037 0.651610 0.801054 1.010162 1.241374 1.355840 1.775976 2.086152 2.272907 2.454351
0.211657 0.308331 0.421366 0.865966 1.418774 1.556743 1.786149 2.020332 2.198585 2.631981
0.203789 0.490794 1.010137 1.275006 1.472213 1.810140 2.170639 2.437660 2.662122 2.788061
0.174355 0.252095 0.674715 0.842194 1.055087 1.278000 1.698680 2.070561 2.399385 2.657430
0.245109 0.324049 0.628822 0.927910 1.123601 1.580066 1.878640 2.054601 2.358721 2.546838
0.182644 0.253804 0.386248 0.614056 1.364821 1.545877 2.040174 2.218827 2.419010 2.624609
0.295605 0.367794 0.690701 1.055162 1.186600 1.644453 1.944154 2.101444 2.562120 2.691268
0.220878 0.289573 0.640307 0.822072 1.144055 1.567797 1.766410 1.908109 2.103459 2.560489
0.403453 0.526298 0.732204 0.901150 1.035869 1.339383 1.783990 1.941961 2.371032 2.626653
0.212825 0.258570 0.471588 0.685549 1.263740 1.821051 2.163822 2.288398 2.628063 2.788155
0.401181 0.642053 1.032473 1.236110 1.444450 1.686678 2.006722 2.228515 2.572112 2.723964
0.239433 0.341091 0.492629 0.707630 0.881426 1.030816 1.719255 2.344056 2.579063 2.756942
0.294093 0.382770 0.577412 1.009281 1.313036 1.419303 1.744673 2.094230 2.289039 2.475843
0.169805 0.236922 0.403314 0.638995 1.176446 1.352145 1.665573 1.909756 2.150120 2.716243
0.210447 0.277913 0.452474 1.402686 1.513430 1.720944 1.903938 2.278499 2.583756 2.743179
0.159574 0.225382 0.374008 0.714137 1.011253 1.371713 1.699162 1.871587 2.027056 2.491194
0.258602 0.557253 0.819720 1.038856 1.301470 1.445358 1.830613 2.098171 2.320809 2.541075
0.232756 0.282242 0.631974 0.898694 1.537444 1.869217 2.063967 2.234463 2.498226 2.633517
0.580133 0.997946 1.320956 1.481874 1.731605 1.898579 2.120712 2.290128 2.530088 2.651657
0.211840 0.307093 0.453360 0.945579 1.250815 1.490290 1.724135 2.281097 2.562699 2.752602
0.314276 0.493555 0.667782 0.896500 1.323006 1.482618 1.667487 1.974415 2.427345 2.555679
0.182455 0.261592 0.418011 1.050927 1.261387 1.443370 1.665467 1.939030 2.444695 2.638451
0.241570 0.306934 0.491293 1.105950 1.554827 1.666520 1.923917 2.087652 2.367600 2.654889
0.190084 0.254850 0.454062 0.724519 1.083362 1.393887 1.892335 2.088856 2.321764 2.484299
0.306497 0.389831 0.721793 0.839714 1.124754 1.652401 1.822919 2.273310 2.569195 2.669599
0.186200 0.273460 0.383201 0.564758 1.511073 1.845018 1.998284 2.194096 2.388693 2.587923
0.300722 0.478218 0.823364 1.127490 1.591141 1.871349 2.174720 2.403181 2.624785 2.782405
0.228884 0.358342 0.504622 0.795874 1.005622 1.152613 1.908053 2.124794 2.372473 2.797584
0.171885 0.248234 0.432842 0.833143 1.040892 1.269289 1.661635 1.918629 2.158962 2.653403
0.140943 0.193684 0.343025 0.562303 1.069552 1.543330 1.824473 1.961637 2.463513 2.770537
0.173053 0.245656 0.360656 0.960618 1.589535 1.689906 1.984141 2.142998 2.588389 2.759403
0.240180 0.429951 0.637440 0.786596 1.069147 1.226573 1.470883 1.952052 2.195064 2.615973
0.367862 0.471897 0.730834 1.082320 1.226293 1.462927 1.928169 2.052466 2.406737 2.662458
0.247175 0.358209 0.535946 0.781876 1.363697 1.635239 1.807233 1.993776 2.452769 2.601039
0.445578 0.687898 1.114108 1.301027 1.577397 1.886042 2.224903 2.436534 2.659695 2.761031
0.214389 0.336025 0.487794 0.759534 0.970518 1.141100 1.457335 1.624644 2.306922 2.715265
0.377300 0.466775 0.716121 1.083781 1.256543 1.411238 1.789433 1.936372 2.205572 2.562355
0.148362 0.214593 0.545023 0.840437 1.193325 1.480659 1.791868 2.083419 2.410537 2.676129
0.150403 0.278398 0.792676 0.976680 1.218845 1.405245 1.775056 2.162458 2.547861 2.746383
0.236301 0.328633 0.630867 0.839915 1.042349 1.298870 1.627752 1.839491 2.298928 2.493962
0.337889 0.497920 0.711277 0.850420 0.992027 1.246884 1.710746 2.086682 2.527158 2.707162
0.172215 0.236540 0.372897 0.525146 1.182577 1.735727 1.927035 2.114619 2.319170 2.542782
0.415304 0.624807 0.906616 1.117841 1.446155 1.669417 1.948413 2.172815 2.504530 2.670754
0.265417 0.407241 0.613894 0.816534 0.980063 1.156061 1.756747 2.274851 2.497193 2.712242
0.276440 0.468209 0.649518 0.816686 1.195171 1.355517 1.549226 1.935272 2.217871 2.426979
0.188925 0.277012 0.412665 0.672627 1.354807 1.514523 1.699988 2.144554 2.382186 2.586077
0.242630 0.352485 0.912974 1.343781 1.604428 1.801867 2.014791 2.193072 2.460809 2.631999
0.190903 0.285841 0.449070 0.760328 0.954285 1.182936 1.692638 1.878163 2.276840 2.465963
0.220659 0.300374 0.721694 0.947306 1.298330 1.562980 1.760618 1.888247 2.506445 2.689675
0.213168 0.290928 0.695227 0.918179 1.378186 1.631987 1.847886 2.003072 2.358358 2.619347
0.328586 0.517244 0.937320 1.376238 1.574840 1.764347 2.058630 2.224334 2.584444 2.756653
0.248486 0.367007 0.562147 0.750632 0.902785 1.147563 1.637415 1.912062 2.413993 2.605696
0.310691 0.477895 0.670796 0.940507 1.418293 1.563497 1.805141 2.114076 2.376358 2.535155
0.256555 0.414210 0.559427 0.981289 1.191646 1.378307 1.678398 1.849306 2.576704 2.756630
0.291424 0.335003 0.750149 1.289655 1.437209 1.599989 1.803177 1.967415 2.601748 2.733761
0.195254 0.279513 0.451755 0.649111 0.828694 1.609509 1.914906 2.091219 2.319589 2.534899
0.222304 0.332624 0.475678 0.685205 1.030332 1.737223 1.920979 2.378290 2.706719 2.817726
0.164833 0.240093 0.359862 0.801929 1.513677 1.641713 2.040524 2.248843 2.488659 2.714025
0.214777 0.287322 0.572644 1.145070 1.367112 1.752687 2.042424 2.222067 2.543047 2.697885
0.226099 0.330382 0.474439 0.687757 0.799187 1.319837 1.944566 2.078099 2.367800 2.508460
0.244540 0.392163 0.553692 0.729765 1.247865 1.448376 1.617590 2.074636 2.340052 2.518064
0.175381 0.314231 0.446023 0.797404 1.328458 1.439727 1.793346 1.939571 2.468800 2.721651
0.205808 0.293670 0.452447 1.074268 1.288235 1.655635 1.857504 2.364687 2.639812 2.798144
0.253926 0.392653 0.587584 0.800134 0.976310 1.185587 1.570687 1.821414 2.090893 2.349021
0.322461 0.410912 0.723569 1.060644 1.201524 1.400360 1.579189 1.788759 2.460242 2.616602
0.211266 0.304981 0.436011 0.771978 1.490623 1.677748 1.886227 2.113497 2.326353 2.727265
0.235012 0.406911 0.864785 1.291485 1.708295 1.938554 2.179896 2.352404 2.563792 2.711446
0.176814 0.268620 0.445837 0.823113 1.029776 1.271571 1.623388 1.811215 2.402140 2.614165
0.241865 0.339268 0.507509 1.003677 1.204347 1.372561 1.940795 2.101371 2.385606 2.669975
0.230878 0.334743 0.500370 0.879929 1.021894 1.533770 1.970789 2.128971 2.567262 2.717288
0.297505 0.451574 0.748848 0.988527 1.366237 1.606668 1.894660 2.174481 2.521427 2.759168
0.199265 0.271145 0.498160 0.854679 1.172103 1.364148 1.762079 1.969095 2.173538 2.311630
0.222173 0.424864 0.564942 0.829809 1.038172 1.194055 1.720601 1.858086 2.431760 2.741461
0.181961 0.226819 0.390513 0.556339 1.056596 1.553065 2.128349 2.258018 2.602497 2.802121
0.357600 0.565047 1.153012 1.350312 1.533576 1.718542 1.957892 2.175347 2.505650 2.678495
0.162257 0.236808 0.374039 0.570569 0.748034 1.172262 1.823392 2.053032 2.513769 2.772072
0.305794 0.465870 0.645121 0.882650 1.141294 1.266856 1.701581 2.002881 2.184124 2.411254
0.231652 0.380738 0.549642 0.837410 1.225266 1.332971 1.851582 2.119371 2.315077 2.732108
0.235449 0.286771 0.684809 1.346663 1.526630 1.703476 2.101486 2.254546 2.577181 2.718994
0.233870 0.446515 0.605080 0.814654 1.054963 1.178801 1.633158 1.849743 2.139379 2.732772
0.271706 0.335152 0.857227 1.253741 1.387189 1.702170 1.896767 2.191114 2.479999 2.601359
0.237386 0.314549 0.438339 0.912164 1.577764 1.877791 2.032790 2.197037 2.412322 2.536484
0.361168 0.574093 1.023843 1.468517 1.690562 1.917374 2.187368 2.334035 2.669095 2.806291
0.278480 0.398742 0.573342 0.839212 1.073888 1.222093 1.691681 2.165258 2.377410 2.536882
0.286018 0.447947 0.615060 0.849446 1.319465 1.463583 1.769948 2.001035 2.189431 2.450384
0.219440 0.301601 0.668534 0.861094 1.210001 1.498673 1.745120 1.877765 2.314377 2.619597
0.223591 0.352153 0.598841 1.217893 1.359082 1.591744 1.771089 2.213856 2.561538 2.735416
0.176857 0.236601 0.395107 0.634632 1.133495 1.335116 1.770374 1.981313 2.206556 2.339716
0.334735 0.402265 0.659168 0.781639 0.975228 1.664999 1.872069 2.047533 2.476961 2.573979
0.215968 0.284755 0.524241 0.781460 1.334811 1.772379 1.953878 2.194209 2.578250 2.741939
0.298193 0.489879 0.812985 1.183691 1.496418 1.679975 2.108792 2.316557 2.673779 2.851610
0.312989 0.415446 0.618011 0.899096 1.083683 1.263384 1.887396 2.243064 2.419448 2.570481
0.244471 0.431115 0.601512 0.813139 1.102163 1.221061 1.692440 2.033163 2.221795 2.619838
0.150949 0.219060 0.349217 0.611327 1.077112 1.250547 1.915518 2.083980 2.449999 2.792543
0.161611 0.218964 0.445377 0.927863 1.451151 1.768464 2.130012 2.366724 2.666003 2.814049
0.196000 0.297256 0.497266 0.691900 1.089877 1.273685 1.513723 2.006472 2.273782 2.572221
0.335268 0.460795 0.685187 0.867664 1.013807 1.479554 2.011994 2.168476 2.572643 2.717564
0.257604 0.340872 0.499757 0.843052 1.396548 1.831688 2.034226 2.170332 2.422618 2.540496
0.417663 0.631718 0.955424 1.197319 1.659797 1.879883 2.168797 2.359053 2.578087 2.698249
0.162052 0.251583 0.439900 0.660911 0.903902 1.320296 1.624758 1.778577 2.530531 2.799705
0.256861 0.322803 0.685370 1.086437 1.263276 1.569879 1.851654 2.014946 2.264711 2.447006
0.125192 0.176171 0.336135 0.781600 1.200220 1.439966 1.805419 2.077525 2.462470 2.738186
0.102286 0.191322 0.774556 1.076151 1.369456 1.627146 1.973015 2.236001 2.609367 2.812985
0.173442 0.232622 0.491622 0.844157 1.095241 1.370797 1.696966 2.051411 2.316061 2.502053
0.257531 0.343598 0.654071 0.838985 1.048102 1.487473 1.725385 1.897417 2.430505 2.585998
0.197900 0.276312 0.440283 0.705103 1.267341 1.740297 1.934483 2.154007 2.400200 2.624136
0.409590 0.596785 0.983751 1.181770 1.371153 1.502380 1.758280 2.018571 2.380053 2.592151
0.231819 0.332890 0.483514 0.644585 0.816808 0.926308 1.403298 2.233007 2.467857 2.678461
0.258610 0.340064 0.670485 0.908467 1.107611 1.456243 1.759580 1.932179 2.113118 2.310135
0.184377 0.249203 0.410806 0.587907 1.302501 1.510319 1.724432 1.981890 2.282904 2.422125
0.254110 0.313328 0.659859 1.265819 1.412949 1.665930 1.927154 2.101984 2.551446 2.673030
0.161592 0.237480 0.376535 0.637094 0.823028 1.137613 1.696425 1.875770 2.403632 2.639617
0.384501 0.466812 0.740791 0.938093 1.062352 1.509284 1.749143 1.917797 2.548157 2.671506
0.333872 0.419367 0.638994 1.092624 1.520550 1.649447 1.866619 2.148941 2.346723 2.506140
0.426216 0.686997 1.235881 1.428854 1.611591 1.792860 2.017593 2.233715 2.547773 2.696609
0.262949 0.367509 0.530429 0.741867 0.872474 1.069602 1.745566 2.061187 2.283843 2.494178
0.335782 0.547236 0.716211 0.919077 1.275686 1.408437 1.685118 1.967394 2.217639 2.446679
0.227629 0.330991 0.486068 1.117571 1.304983 1.510130 1.757258 1.946972 2.625557 2.782597
0.359850 0.436633 0.750634 1.201513 1.337571 1.594835 1.970273 2.113840 2.573808 2.729963
0.211871 0.304028 0.512758 0.663762 1.086354 1.633335 1.818017 2.129577 2.391080 2.600766
0.196092 0.279726 0.434488 0.624802 0.772358 1.404377 1.948777 2.160918 2.629996 2.775175
0.176304 0.262521 0.373719 0.581101 1.520108 1.736172 1.933230 2.140172 2.358130 2.753524
0.254932 0.381411 0.806187 1.102292 1.534523 1.750280 1.970904 2.159871 2.455922 2.658405
0.190385 0.288656 0.449066 0.678174 0.812376 1.449326 1.728657 1.966320 2.638812 2.789546
0.251178 0.386509 0.609363 0.797102 1.024159 1.181726 1.454661 2.012630 2.493092 2.698933
0.166654 0.266226 0.385171 0.711990 1.397897 1.532347 1.915974 2.088003 2.565270 2.789532
0.238453 0.306036 0.449309 0.876277 1.521437 1.933982 2.134420 2.267986 2.537601 2.658253
0.161634 0.219919 0.353206 0.524346 0.961806 1.207713 1.687918 1.916939 2.161870 2.320657
0.413612 0.597095 0.793763 0.986290 1.281786 1.412660 1.652465 2.016091 2.384164 2.528578
0.228655 0.341562 0.480989 0.988605 1.371003 1.477423 1.861026 2.015852 2.339752 2.773153
0.259092 0.597012 0.985224 1.321740 1.643354 1.957367 2.288682 2.497474 2.716492 2.844467
0.185652 0.304664 0.446232 0.864434 1.091795 1.273770 1.942575 2.095543 2.524648 2.768245
0.176687 0.256678 0.745652 0.934909 1.283760 1.440062 1.765242 2.122092 2.388099 2.590551
0.189805 0.275637 0.440995 0.821356 1.256020 1.410985 1.929781 2.120144 2.396030 2.604643
0.266823 0.337688 0.819408 1.134754 1.289204 1.777028 1.982886 2.221748 2.590286 2.698098
0.205348 0.276512 0.527305 0.727412 1.024647 1.653979 1.904178 2.046613 2.217922 2.455661
0.293498 0.424494 0.613795 0.956130 1.133981 1.324804 1.809031 1.953922 2.293854 2.575884
0.183120 0.249650 0.376204 0.543914 1.350827 1.907220 2.092551 2.255705 2.514391 2.687901
0.541205 0.789796 1.058955 1.269415 1.503899 1.702191 1.970176 2.175444 2.496810 2.652238
0.229326 0.339475 0.451881 0.661210 0.795832 1.073796 2.027104 2.206371 2.478903 2.726784
0.330006 0.506868 0.673076 0.887406 1.228765 1.349226 1.781290 2.086583 2.277762 2.480029
0.138389 0.200001 0.396259 0.811975 1.090712 1.460413 1.745493 1.904269 2.348250 2.699886
0.176584 0.242161 0.378270 1.177848 1.564718 1.678166 1.951618 2.121413 2.580109 2.737132
0.145852 0.198423 0.335644 0.550505 1.019727 1.371188 1.797635 1.943825 2.207490 2.746470
0.385078 0.503696 0.703239 1.069987 1.365736 1.472054 1.825827 2.159636 2.371283 2.520972
0.284950 0.388050 0.507352 0.879125 1.523530 1.776238 1.929597 2.157558 2.447986 2.586398
0.491116 0.756155 1.255200 1.522460 1.776579 2.028121 2.286059 2.429774 2.679106 2.776164
0.252477 0.396081 0.713022 0.861502 1.152223 1.370802 1.614010 2.144798 2.574072 2.712530
0.282756 0.438437 0.613566 0.847746 1.260772 1.379059 1.642202 2.137540 2.368369 2.522163
0.203971 0.322195 0.479842 0.953133 1.211278 1.397635 1.800812 1.954516 2.403478 2.573713
0.264533 0.358424 0.628768 1.111242 1.340246 1.506485 1.999590 2.194109 2.461411 2.667361
0.177730 0.223680 0.394553 0.556177 0.947415 1.500640 1.733528 1.926046 2.261466 2.436054
0.314223 0.363636 0.727886 0.851880 1.053844 1.798132 1.974354 2.182595 2.537995 2.629683
0.201778 0.275500 0.404891 0.747466 1.500050 1.841184 1.998843 2.226807 2.481989 2.669506
0.132164 0.314955 0.821473 1.196038 1.426590 1.699934 2.036856 2.323497 2.685471 2.828965
0.223374 0.347335 0.507730 0.773547 0.967916 1.134129 1.991403 2.306567 2.521364 2.788746
0.312742 0.449784 0.583287 0.934234 1.268567 1.365063 1.569295 1.687046 2.077299 2.595022
0.124286 0.162126 0.290730 0.654031 1.231658 1.538458 1.893070 2.184784 2.562637 2.798224
0.177049 0.251654 0.367891 0.912504 1.557576 1.693045 1.898991 2.072136 2.350163 2.646045
0.240517 0.378333 0.547809 0.754272 0.973321 1.103670 1.574418 2.028049 2.211127 2.562709
0.427795 0.519003 0.771284 0.937240 1.086617 1.609879 1.878750 2.052791 2.534118 2.657149
0.224370 0.317969 0.439666 0.812931 1.398497 1.626632 1.794178 2.114000 2.309157 2.496836

View File

@@ -0,0 +1,513 @@
5 512
0.005167 -0.037310 -0.002159 0.016849 0.130396
0.039445 0.031680 -0.074412 -0.031499 0.060536
0.019479 -0.030564 -0.048137 -0.056279 -0.027829
0.020585 -0.011270 0.023913 -0.005706 0.011407
-0.023217 0.107455 -0.037777 0.004070 -0.017279
-0.090444 0.007641 0.099001 -0.047913 -0.017199
0.022700 -0.063865 0.047213 0.043843 -0.036225
0.001312 -0.123861 -0.038988 0.058666 0.074541
0.039508 0.110300 0.013954 -0.119228 -0.035807
-0.047392 0.027035 -0.004412 -0.032650 -0.037150
0.002491 -0.045447 0.158260 0.022828 -0.030124
-0.047856 0.088744 -0.009678 0.106688 0.087690
-0.027941 0.044084 -0.028500 0.018736 -0.069969
-0.035358 -0.051568 -0.030459 -0.017899 0.027632
-0.018607 -0.123557 0.019228 0.057485 -0.028907
0.019057 0.038151 -0.080220 0.034222 0.023081
0.021312 0.041905 0.112903 0.024092 0.093974
-0.116679 0.015344 -0.066059 -0.096437 0.004041
-0.022464 -0.116260 0.047819 -0.003921 -0.073504
0.001975 -0.025869 0.028200 0.122690 0.010627
-0.035672 0.078963 -0.009686 0.000743 -0.147582
0.016932 -0.020291 -0.096896 -0.237875 -0.029121
0.017376 -0.040130 -0.053865 0.154060 -0.013215
0.015215 -0.019023 -0.070604 0.032265 0.040340
0.102365 -0.022746 0.019895 0.050570 0.008845
-0.034134 0.044441 -0.049387 -0.140481 0.072570
0.013023 -0.006079 0.037574 0.004937 -0.081501
0.003696 0.049908 0.007355 0.000403 0.026006
-0.008466 0.080680 0.061382 -0.108985 -0.088060
-0.012275 -0.081061 0.020333 -0.079001 0.068724
-0.014081 -0.042609 0.093365 0.044120 0.000303
0.063391 0.096574 -0.105424 0.039041 0.010412
-0.054031 -0.084948 0.080406 -0.035883 0.137428
0.063037 0.050562 0.024690 -0.031394 0.130320
-0.015501 -0.078884 -0.076886 -0.013864 -0.073587
0.048778 0.003814 -0.031125 0.046897 0.028304
0.048692 0.132795 0.065450 0.059487 -0.042396
-0.176999 0.056943 -0.004135 -0.049378 -0.041083
-0.039445 -0.016292 -0.004550 0.062010 -0.079613
-0.054566 -0.008476 -0.016710 0.049202 0.025758
-0.078723 0.092091 0.096536 -0.065079 0.021161
0.076657 0.009203 -0.036866 -0.016559 0.012823
0.008225 -0.003006 0.108033 0.043120 -0.060870
-0.019346 0.022790 -0.001728 0.062304 -0.016965
-0.001302 -0.014490 -0.041803 -0.034058 -0.197066
-0.033655 -0.127217 -0.108681 -0.010571 -0.004705
-0.015553 -0.086069 0.034109 -0.101379 0.002068
-0.004003 -0.044637 -0.068617 0.052228 -0.047812
-0.043307 0.035681 0.042207 -0.055946 0.055944
-0.026792 -0.012601 -0.056710 -0.021094 0.105842
-0.025598 -0.078858 -0.013487 0.030728 -0.031956
0.031444 0.022763 0.025364 0.121366 0.070736
-0.084556 0.098118 -0.024301 -0.058655 -0.043194
-0.011752 -0.043781 0.091051 -0.071201 -0.020980
0.082904 -0.031657 -0.088247 0.066709 -0.079182
-0.012151 0.011796 -0.010589 0.100656 0.094539
0.035967 0.025338 0.071826 0.009741 -0.040209
0.006866 -0.015095 -0.168469 -0.056133 0.060145
0.045830 -0.068969 0.034551 0.015842 -0.092809
0.054699 0.138744 0.001726 0.006927 0.005167
0.016978 0.046384 -0.060183 -0.040742 -0.072692
-0.022489 -0.029728 -0.065018 -0.124741 0.044927
-0.029057 -0.037154 0.031068 0.060086 0.009984
0.009311 -0.006957 -0.105508 0.059637 -0.019564
-0.068154 -0.066443 0.000799 0.028579 0.097063
0.096936 0.030230 -0.034623 -0.088918 0.040334
0.019439 -0.050707 -0.003294 -0.028505 -0.053599
0.062460 -0.070688 -0.016465 -0.035680 0.017378
0.009363 0.048761 0.043374 0.039587 -0.023232
-0.067033 0.042663 0.054070 -0.042797 -0.089391
-0.030497 -0.050249 0.059528 0.089089 -0.029633
0.064125 -0.086614 -0.002005 0.080620 0.000502
-0.003490 0.097336 0.099565 0.015648 0.006691
0.077668 0.016572 0.035404 -0.046026 0.017237
-0.048631 0.009314 0.141479 0.017079 0.043796
-0.106474 0.145951 0.057740 0.011250 -0.059443
0.027572 0.026650 0.008527 0.002949 -0.037680
-0.077991 -0.090617 0.003420 -0.046010 0.007354
0.019056 -0.128651 0.016464 0.004584 -0.030883
-0.092069 0.038976 -0.081840 0.066695 -0.047340
0.003513 0.040613 0.046815 -0.023406 0.062389
0.021759 0.024928 -0.018922 -0.048006 0.063800
-0.014416 -0.050333 0.042628 -0.114934 -0.101450
0.062139 0.029295 -0.065908 0.111463 0.050781
-0.022707 0.135414 0.003548 0.134535 -0.048259
-0.092344 -0.027727 0.016343 -0.060786 -0.081502
-0.005412 -0.026229 -0.143331 0.052404 -0.077298
-0.035919 -0.041968 -0.106108 -0.004369 0.065028
0.096370 -0.053299 0.043317 -0.049735 0.049815
0.032324 0.051309 -0.009607 -0.205917 0.005023
-0.054316 -0.022895 0.099327 -0.006927 -0.076574
-0.111024 0.111026 0.038381 -0.060368 0.064238
-0.034316 0.026846 0.025740 -0.076162 -0.163904
0.055955 -0.056885 0.014831 -0.120715 0.090938
0.035289 -0.036439 0.060012 0.080302 0.036215
0.065250 0.083030 -0.058784 0.104826 -0.051805
-0.011099 -0.006420 0.053042 0.024127 0.092534
0.058569 -0.033442 0.025186 -0.018222 0.117744
0.044345 -0.042456 -0.043767 -0.021378 -0.121965
0.027371 0.052731 -0.020316 0.036912 0.115357
0.031150 0.041547 0.059267 -0.039672 -0.086918
-0.162369 0.024801 0.031725 0.083400 -0.034463
0.000272 -0.008147 -0.002016 0.131953 -0.092911
-0.091944 -0.062864 -0.005221 0.063647 -0.012658
0.042685 0.067952 0.038644 -0.153221 0.096841
0.108299 0.089446 -0.047164 0.004196 -0.043268
-0.035456 0.050838 0.070444 0.084465 -0.079980
-0.048916 0.057726 0.023894 0.027653 0.017775
0.015461 -0.030287 -0.022245 0.052081 -0.150947
-0.002682 -0.056774 -0.123366 -0.091754 0.006536
0.006473 -0.143025 0.054690 -0.043189 0.032970
0.027446 0.033127 -0.132722 -0.010417 -0.080097
-0.018187 0.001858 0.111290 -0.090749 0.059434
-0.068738 0.090679 -0.145070 -0.065277 0.063514
-0.003982 -0.056382 -0.003673 0.015845 -0.073396
0.043688 0.002836 0.069211 0.124852 -0.053313
-0.040946 0.070440 -0.107024 -0.019199 -0.033672
-0.001440 0.021680 0.110595 -0.053452 -0.052426
0.035461 -0.028179 -0.049041 0.022580 -0.010989
-0.002913 -0.051691 -0.075881 0.037241 0.076377
0.034735 -0.031556 0.073516 -0.001427 0.016296
-0.017537 0.003346 -0.099774 -0.067624 -0.044257
-0.018202 0.030622 0.012773 0.046475 -0.121785
-0.057265 0.116179 -0.079916 0.066396 0.050104
-0.013177 0.057766 -0.047879 -0.109526 -0.146491
0.032675 -0.049318 -0.057045 -0.080068 0.089621
-0.046564 -0.029992 0.040828 0.029281 -0.037369
-0.009731 -0.082145 -0.117622 0.117077 0.037369
0.000820 -0.106634 -0.007967 0.000812 0.140637
0.036530 0.062121 -0.065504 -0.094930 0.121336
0.017530 -0.017330 -0.040402 -0.018255 0.010992
0.019746 -0.027564 0.033588 0.042466 -0.003143
0.013767 0.084179 0.033753 -0.017279 -0.009676
-0.006452 0.032645 0.031852 -0.030975 -0.043384
-0.005433 -0.015258 0.053273 0.054748 -0.064736
0.008959 -0.141223 -0.032957 -0.015079 0.018198
-0.001681 0.143079 0.076000 0.001037 -0.048744
0.022062 0.026030 -0.008263 -0.050353 -0.023037
-0.036477 -0.051733 0.137823 -0.034438 -0.007573
-0.004256 0.064218 0.075183 0.095106 0.026497
0.026360 0.009791 -0.058039 0.053315 -0.077817
-0.033283 -0.081151 -0.055220 0.004268 0.017539
-0.007329 -0.117200 0.093220 0.037359 0.002718
0.010749 0.018281 -0.075800 -0.024889 0.005720
0.022129 0.035613 0.036187 0.032246 0.105439
-0.073766 0.016887 -0.059934 -0.049471 0.073520
-0.024041 -0.104642 0.023557 -0.059746 -0.043871
0.022311 -0.000250 -0.074027 0.198593 0.102732
0.024478 0.077658 -0.060042 -0.018229 -0.149648
-0.009871 -0.105822 0.007585 -0.161459 -0.041121
-0.021460 0.009020 -0.065018 0.111801 -0.024953
0.074594 -0.026041 -0.062859 0.009199 0.069609
0.078672 -0.033414 0.054128 0.005408 -0.016273
0.052076 0.107610 -0.067518 -0.096400 0.033703
-0.014350 -0.024676 0.056254 -0.043770 -0.060847
-0.004185 0.073550 -0.057830 -0.016644 0.029096
0.005755 0.026472 0.040449 -0.091950 -0.048538
-0.034439 -0.107938 0.090712 -0.117001 0.043170
-0.006505 -0.035277 0.117316 0.127002 0.047906
-0.001441 0.118379 -0.132165 0.007380 0.023823
-0.020120 -0.083725 0.047284 0.023795 0.074123
-0.013439 0.024994 0.060254 -0.069120 0.166373
-0.024228 -0.063150 -0.046506 -0.077202 -0.054592
-0.006571 0.010335 -0.006568 0.003982 0.075837
0.008643 0.136339 -0.005502 0.033910 -0.066379
-0.127371 -0.006954 0.039770 -0.070123 0.060925
-0.046386 -0.026420 -0.005280 0.103509 -0.022310
-0.003740 -0.014999 -0.037770 0.080005 0.025231
-0.054995 0.071017 0.009442 -0.075737 0.013441
0.051947 0.027097 -0.070351 -0.055705 -0.021115
0.021387 0.029232 0.163331 -0.032380 0.010008
-0.011987 -0.028631 0.002665 0.014770 -0.009558
-0.034325 0.015830 -0.091253 -0.012677 -0.107378
-0.034624 -0.047725 -0.102330 0.042525 -0.006869
0.014048 -0.043127 0.052384 -0.047473 0.055102
0.009744 -0.033646 -0.081755 -0.001464 -0.016223
-0.036697 -0.002279 0.023279 -0.036221 0.101478
-0.058454 0.065074 0.003524 0.005010 0.097182
-0.038171 -0.037943 -0.009994 -0.033355 -0.044552
0.041318 0.065041 0.000092 0.100816 0.029007
-0.031803 0.183537 -0.009617 -0.010544 -0.028465
0.006900 -0.014988 0.090490 -0.174817 0.027464
0.063314 -0.049281 -0.001567 0.091421 -0.078603
-0.004869 -0.063266 -0.001922 0.069338 0.081771
0.058737 0.073195 0.081676 -0.047808 -0.025797
-0.004185 0.033203 -0.125472 -0.108148 0.031258
0.035192 0.029957 0.046675 0.047238 -0.088197
0.033315 0.114919 -0.049180 0.025707 0.053843
0.035182 0.140206 -0.058660 -0.025978 -0.019658
-0.014847 -0.021051 -0.034385 -0.121789 0.173406
-0.112251 -0.022333 0.071206 0.028998 0.046468
0.067704 -0.026159 -0.158316 0.014936 0.040216
-0.010137 -0.053492 0.004935 -0.011277 0.073852
0.091261 0.114794 -0.014060 -0.051545 0.077316
0.101258 -0.046137 0.022994 -0.066767 -0.065537
0.049952 -0.043582 0.012823 0.009313 0.036343
0.054885 0.037796 0.021940 0.013211 0.006019
-0.099578 0.058596 -0.045463 -0.015632 -0.087141
-0.019273 -0.033140 0.043796 0.119057 -0.081813
-0.021538 -0.070453 -0.052551 0.077213 0.000094
0.050268 0.092271 0.051688 -0.025224 0.075437
0.027983 0.069205 0.031787 -0.099975 0.004387
-0.002747 -0.056567 0.161394 0.000164 0.084189
-0.124844 0.050329 0.009844 0.055877 0.055701
0.030479 0.028843 -0.001076 -0.017173 -0.102770
-0.038426 -0.133841 -0.035840 -0.072046 0.020206
0.016438 -0.097885 0.041857 0.034601 0.030422
-0.089192 -0.014112 -0.052276 0.012005 -0.029335
-0.011331 0.101833 0.063827 0.044288 0.101597
-0.034689 -0.027434 -0.017801 -0.079224 0.067103
-0.027456 -0.098034 0.009448 -0.038986 -0.156729
0.085023 0.033136 -0.021343 0.110701 -0.011901
-0.006484 0.082023 -0.027094 0.091208 -0.013163
-0.012223 0.005933 0.010653 -0.098119 -0.005304
-0.021061 -0.058077 -0.073035 0.097856 -0.102847
-0.035329 -0.092754 -0.101463 -0.048671 0.055015
0.102145 0.062017 0.016002 0.036489 0.059000
0.042861 0.025447 -0.019735 -0.107841 -0.033752
-0.043982 -0.067059 0.051092 0.025235 -0.147107
-0.016269 0.123009 0.035894 -0.020453 0.040013
0.015557 0.015825 0.080712 -0.069630 -0.149739
0.022006 -0.008848 0.040169 -0.095688 0.059575
-0.030641 -0.061353 0.046302 0.104489 0.043372
-0.001579 0.059737 -0.104073 0.042342 -0.048611
-0.013811 -0.056255 0.107179 0.057433 0.084815
0.030217 0.022360 -0.040342 -0.028775 0.120588
0.041270 -0.045775 -0.030195 -0.106859 -0.104349
0.072418 -0.003603 -0.013072 0.040728 0.086869
0.091943 0.066517 0.024442 -0.030929 -0.032920
-0.160336 -0.010347 -0.068458 0.017458 0.044823
0.050694 0.067625 0.040303 0.113164 -0.038747
-0.065558 -0.106357 -0.028352 0.121488 0.026548
-0.007820 0.054872 0.094674 -0.099533 0.005231
0.118132 0.042780 -0.065079 0.031440 0.043229
-0.050024 0.015943 0.073917 0.034049 0.010548
-0.024979 0.022639 0.027795 0.049491 0.048762
-0.002738 -0.010783 -0.027637 -0.006986 -0.104141
-0.066719 -0.061742 -0.067028 -0.053057 -0.003478
-0.050948 -0.122196 0.022082 0.002595 0.015094
0.006014 0.005784 -0.184537 -0.034872 -0.036104
0.055412 0.006886 0.103488 -0.063001 0.096665
-0.035533 0.009847 -0.095114 0.008588 0.023736
-0.034278 -0.111970 -0.041172 0.039730 -0.102952
0.063775 0.039273 0.109863 0.091800 0.030306
-0.082206 0.089449 -0.058478 -0.029341 0.038389
0.061057 -0.024711 0.111044 -0.035079 -0.027985
0.014570 0.002046 -0.031545 0.058848 -0.019500
-0.002475 -0.025589 -0.144358 0.063478 0.124927
-0.014094 -0.010970 0.031621 -0.040043 0.004389
0.025003 0.052397 -0.054526 -0.073469 0.026795
-0.024697 0.024739 0.118299 0.014948 -0.132109
0.020192 0.037815 -0.090270 0.049313 0.082764
-0.022642 -0.006053 -0.038073 -0.057363 -0.107347
0.033166 -0.027556 -0.019765 -0.111958 0.027773
-0.063001 -0.052998 0.019353 -0.009646 -0.011270
0.011872 -0.006508 -0.122226 0.059824 0.041779
0.016445 -0.031890 -0.036310 0.013085 0.091631
0.062866 0.054501 -0.117523 -0.010907 0.087026
-0.014974 -0.035920 -0.048565 -0.019246 -0.043405
-0.006959 0.006211 0.042370 0.014603 -0.006435
0.019149 0.078038 -0.020556 0.018114 -0.036521
-0.054036 0.007325 0.056349 -0.033497 -0.025960
0.050184 -0.066536 0.091501 0.071356 -0.049044
-0.032263 -0.095268 -0.008784 0.049033 0.036929
0.020357 0.152151 0.040814 -0.063159 -0.024324
-0.017084 0.011876 -0.015442 -0.019811 -0.000366
-0.002700 -0.072981 0.109288 0.007473 -0.049442
-0.054040 0.051947 0.019359 0.129160 0.021981
0.002248 0.035262 -0.023141 0.064666 -0.078273
-0.031663 -0.031343 -0.006058 -0.045421 0.017466
-0.067122 -0.130784 0.067057 0.052460 -0.041165
-0.004411 0.046453 -0.055461 0.048162 -0.009687
0.021530 0.007211 0.104764 0.079849 0.086248
-0.072791 0.001112 -0.027964 -0.071233 -0.013339
0.007979 -0.118231 0.076826 -0.060762 -0.084358
-0.011447 0.009765 0.014163 0.164784 -0.015892
-0.020756 0.152509 -0.014014 -0.041853 -0.117008
-0.011755 -0.005766 -0.086896 -0.139650 -0.032342
0.025651 -0.007843 -0.039073 0.103397 -0.042591
-0.005971 -0.001324 -0.053945 -0.000716 0.048977
0.130185 0.028226 0.061179 0.024489 -0.021939
-0.007019 0.054336 -0.010040 -0.095411 0.082406
-0.032130 -0.015054 0.033059 0.002802 -0.080159
-0.022452 0.077426 -0.015314 0.033583 0.028479
0.023293 0.035078 0.006442 -0.110541 -0.106244
-0.034737 -0.104140 -0.034570 -0.114316 0.079382
0.006009 0.003901 0.080081 0.055082 0.012896
0.064981 0.057219 -0.112986 0.003906 -0.028414
-0.012383 -0.054541 0.077483 0.004267 0.123567
0.007369 0.099856 0.023273 -0.028194 0.122030
-0.036635 -0.126589 -0.034567 -0.028288 -0.065040
0.014280 0.011435 -0.004867 0.043901 0.035395
0.028599 0.075858 0.118460 0.070581 -0.051903
-0.170905 0.050352 0.053514 -0.017139 0.021748
-0.096610 0.008904 -0.001049 0.078787 -0.101201
-0.026229 -0.019757 -0.035771 0.054142 0.068041
-0.020328 0.099979 0.096623 -0.046957 -0.001733
0.049586 0.052458 -0.031724 -0.028332 -0.005418
0.046710 0.014238 0.133125 -0.005428 -0.080055
-0.033226 0.034007 0.025272 0.033924 -0.044662
-0.034690 -0.079173 -0.160689 -0.153893 -0.228771
-0.002450 -0.083966 -0.168294 0.010694 -0.012167
0.000004 -0.044377 0.023373 -0.077437 0.012178
-0.015899 -0.010828 -0.062847 0.029927 -0.074557
-0.053306 0.049688 0.057017 -0.022571 0.015337
-0.046545 0.018895 -0.024848 -0.004424 0.165442
-0.060201 -0.098629 -0.065190 0.036582 -0.038566
0.051453 0.093478 0.039619 0.117535 0.090386
-0.029366 0.108075 -0.016568 -0.093576 -0.048799
-0.045599 -0.023619 0.070072 -0.109294 0.001548
0.076285 -0.091274 -0.068829 0.000215 -0.046519
-0.022512 -0.027067 0.014905 0.079017 0.140699
0.061141 0.009178 0.097811 0.033468 -0.006666
0.007163 -0.007578 -0.124238 -0.025271 0.017581
0.042405 -0.034252 0.064890 0.002500 -0.139083
0.009733 0.158179 0.014474 0.038913 0.056290
-0.004998 0.075401 -0.030557 -0.038595 -0.049070
-0.014680 -0.076306 -0.132365 -0.177693 0.091760
-0.057238 -0.072379 0.050877 0.051489 0.028125
0.004991 0.032621 -0.167359 0.041002 -0.007072
-0.086405 -0.042263 -0.019757 -0.011524 0.066004
0.085670 0.008071 -0.013614 -0.062142 0.083280
0.000887 -0.075820 0.008295 -0.020136 -0.016886
0.089657 -0.106260 -0.051491 -0.012687 0.054778
0.011535 0.086613 0.053803 0.027164 -0.023825
-0.040009 0.080987 0.026309 -0.000334 -0.085288
-0.024208 -0.085040 0.096077 0.120527 -0.044181
0.003034 -0.091142 0.006471 0.115971 -0.026358
0.003489 0.083633 0.109975 -0.029425 0.061726
0.056115 -0.006711 0.013158 -0.062917 -0.015029
0.003354 0.031574 0.119045 0.022859 0.023777
-0.068292 0.115604 0.031617 0.008953 0.006943
0.014420 0.008569 -0.031547 -0.006857 -0.051690
-0.086683 -0.108339 0.005093 -0.108646 -0.034720
0.054273 -0.096753 0.050806 -0.021115 -0.025278
-0.079997 0.027008 -0.034211 0.090949 0.005678
0.019288 0.042083 0.062119 0.019301 0.040859
-0.009113 0.022427 -0.004019 -0.060890 0.032884
-0.012373 -0.037976 0.017625 -0.079369 -0.050788
0.079720 -0.039347 -0.085324 0.091044 0.026653
-0.063122 0.099371 -0.024736 0.084631 -0.100421
-0.073313 0.014317 0.022555 -0.116051 -0.063966
-0.009688 -0.063666 -0.131709 0.016744 -0.135028
-0.003708 -0.043685 -0.121631 -0.036930 0.125776
0.084333 0.010114 0.071231 -0.010395 0.059391
0.017760 0.033034 -0.018996 -0.130540 0.025758
-0.018261 -0.060044 0.127025 -0.032724 -0.107299
-0.064538 0.090073 -0.010186 -0.066127 0.107025
-0.010940 0.003083 0.019030 -0.023935 -0.140176
0.003549 -0.042402 -0.010695 -0.185915 0.060835
0.005405 -0.013822 0.029205 0.079338 0.068155
0.071485 0.030282 -0.087207 0.073480 -0.027940
0.004896 -0.033246 0.072637 0.018017 0.054712
0.026184 -0.005287 0.034456 -0.036753 0.079232
0.072707 0.004506 -0.039353 -0.015560 -0.071466
0.010257 0.067446 -0.006598 0.047396 0.072218
0.023405 0.082663 0.015319 -0.035436 -0.075461
-0.124036 -0.032046 0.060837 0.010231 -0.053024
0.022800 0.042891 -0.041549 0.132395 -0.095330
-0.077091 -0.058554 -0.070632 0.047570 0.031856
0.000127 0.114996 0.058660 -0.092472 0.064503
0.096450 0.066200 -0.001059 0.039487 -0.032859
-0.065721 0.001601 0.088037 0.059828 -0.047411
-0.077714 0.010275 0.013629 0.003304 0.005407
0.000665 0.012927 -0.077525 0.069202 -0.157417
0.014547 -0.095965 -0.087546 -0.067375 -0.027867
0.005458 -0.095839 0.105294 -0.044892 0.045151
-0.001349 0.038356 -0.127152 -0.080503 -0.105423
-0.018484 0.008439 0.104398 -0.027959 0.082086
-0.020605 0.042785 -0.109139 -0.025958 0.079733
0.036289 -0.083773 -0.033819 0.032566 -0.065556
0.006659 0.002090 0.097027 0.115715 -0.013271
-0.067514 0.128365 -0.089129 0.026160 -0.040584
-0.002443 -0.017254 0.129204 -0.110078 -0.064943
0.089215 -0.022299 -0.034959 0.022446 -0.019254
-0.038900 -0.069862 -0.070540 0.069949 0.111993
-0.006311 -0.009057 0.094278 -0.014932 0.003657
-0.019323 0.026145 -0.062611 -0.073753 -0.007182
0.014101 0.015776 0.052537 0.064728 -0.160187
-0.005122 0.076356 -0.104763 0.091493 0.020225
-0.000433 0.062698 -0.060457 -0.147540 -0.066168
0.007195 -0.061498 -0.037801 -0.039763 0.059551
-0.028410 -0.074510 0.057667 0.020584 -0.042510
-0.025311 -0.037825 -0.188010 0.077423 0.030749
-0.025465 -0.067541 0.003073 -0.049778 0.127789
0.002786 0.120009 -0.067812 -0.026565 0.111272
0.023219 -0.024403 -0.014507 -0.048624 0.022163
0.014596 -0.052136 0.001580 0.064595 0.017963
0.021330 0.098862 -0.009253 -0.041062 0.008903
-0.013829 0.031967 0.076571 -0.005348 -0.044010
0.031252 0.000369 0.036818 0.072854 -0.038569
0.004161 -0.128017 -0.053152 0.050896 -0.015212
-0.036159 0.097995 0.068397 -0.048472 -0.056131
-0.011920 0.059188 0.010215 -0.061152 -0.011717
-0.035949 -0.057039 0.090859 -0.029682 0.041466
-0.025106 0.131191 0.059327 0.085383 0.021699
0.049230 0.036630 -0.077086 0.017806 -0.088790
0.004040 -0.069533 -0.026785 0.009666 0.014017
-0.055897 -0.096299 0.120693 0.029995 0.032602
-0.001365 0.034015 -0.053512 0.001573 -0.019170
0.003956 0.006452 0.067313 0.028301 0.160615
-0.053111 0.013990 -0.027060 -0.013638 0.039376
-0.054462 -0.096553 0.079994 -0.043791 -0.025051
-0.003222 0.019418 -0.049525 0.151136 0.034123
0.055117 0.058918 -0.017393 0.026169 -0.126380
-0.019008 -0.028939 -0.014027 -0.173373 -0.032841
-0.003370 0.039680 -0.118311 0.114094 -0.041869
0.041121 -0.038391 -0.096074 -0.032479 0.060222
0.063968 -0.024528 0.018158 -0.009892 -0.043882
-0.005004 0.129800 -0.025438 -0.121186 0.049860
0.010448 -0.040388 0.061853 -0.017304 -0.035088
-0.008678 0.061476 -0.039493 -0.005055 0.079169
0.046134 0.009770 0.068294 -0.078965 -0.043792
-0.030529 -0.053845 0.053853 -0.140682 0.111461
0.003549 -0.014939 0.148955 0.072861 0.004332
0.015386 0.062006 -0.122325 -0.032529 0.010241
-0.047982 -0.126440 0.055840 0.067128 0.101189
-0.002630 0.031969 0.046076 -0.080194 0.104740
-0.033486 -0.077818 -0.058697 -0.095258 -0.111074
0.037236 0.011711 0.001113 -0.005664 0.048588
0.041131 0.098257 0.033126 0.029317 -0.095311
-0.071555 -0.039999 0.026678 -0.072182 0.035031
-0.007997 -0.048174 -0.006796 0.075959 -0.052060
-0.007645 0.037076 -0.035574 0.085576 0.034126
-0.050676 0.051430 0.031999 -0.134308 -0.001489
0.084564 -0.018394 -0.097410 -0.042931 -0.025608
-0.025489 0.041919 0.142482 0.004617 -0.041085
-0.028816 -0.015527 -0.031005 0.028405 -0.022240
-0.067737 -0.025241 -0.052578 0.012322 -0.120556
0.016278 -0.081744 -0.099160 0.025144 0.025441
0.003176 -0.073871 0.031718 -0.028622 0.029031
0.017910 -0.030693 -0.104215 -0.015422 -0.065738
-0.048346 -0.012847 0.046849 -0.008621 0.058771
-0.054495 0.031597 -0.038844 0.043138 0.092588
-0.071371 -0.059093 -0.001197 0.001766 -0.074762
0.029470 0.089616 0.005009 0.052977 0.015899
-0.045424 0.158466 -0.038717 -0.032506 0.028687
0.011435 -0.006772 0.047605 -0.144659 -0.031229
0.073577 0.011530 -0.008172 0.058883 -0.088412
0.033615 -0.034120 -0.030701 0.101215 0.096645
0.027368 0.041249 0.081502 -0.025440 0.007592
0.059893 0.012106 -0.112009 -0.114692 0.016397
0.087068 0.016199 0.051263 0.011915 -0.085364
0.026046 0.145258 -0.047521 0.077134 -0.000345
0.034532 0.099801 -0.087591 -0.059719 -0.058671
0.022737 -0.001887 -0.107049 -0.116757 0.134115
-0.055403 0.005157 0.067618 0.081074 0.071787
0.063802 -0.003430 -0.106491 0.017543 0.002214
-0.013785 -0.032962 0.010084 0.024325 0.045963
0.059883 0.072282 -0.008608 -0.015127 0.048225
0.041752 -0.068845 0.012227 -0.090748 -0.035309
0.045353 -0.078624 -0.019489 0.035531 0.058571
0.045414 0.039032 -0.011106 0.048787 -0.025336
-0.084893 0.031896 0.010850 0.012526 -0.053205
0.016952 -0.044041 0.068766 0.097328 -0.122229
0.027016 -0.051759 -0.057246 0.074566 0.006201
0.069904 0.100068 0.076124 0.004278 0.029466
0.045229 0.055683 0.018790 -0.067806 0.039373
0.029179 -0.036787 0.129921 -0.028993 0.037711
-0.105011 0.138747 -0.004370 0.052080 0.050835
0.025511 -0.002962 0.007852 -0.055234 -0.075055
0.000460 -0.089231 -0.030467 -0.080347 0.007488
0.067460 -0.076368 0.084991 0.039544 0.033391
-0.044318 0.006390 -0.079387 -0.002909 -0.029708
-0.047882 0.063040 0.065719 0.021811 0.070945
-0.007571 -0.001302 -0.064119 -0.068005 0.051040
-0.017747 -0.063938 0.018673 -0.038391 -0.099966
0.057475 -0.007669 0.009384 0.109283 0.012248
-0.048858 0.092498 0.011967 0.061525 -0.028819
-0.015131 -0.024160 -0.033220 -0.101648 -0.017980
-0.003342 -0.049829 -0.125096 0.128241 -0.047377
-0.028943 -0.109072 -0.066133 -0.015454 0.098334
0.053371 0.011324 0.042781 0.044313 0.062510
0.098408 0.065410 -0.040693 -0.116351 -0.032327
-0.013634 -0.058591 0.081507 0.042019 -0.099770
-0.018275 0.084624 -0.007512 -0.041113 0.054203
0.017879 -0.029747 0.059865 -0.048281 -0.111513
-0.022478 0.002059 0.022383 -0.125360 0.058216
0.002386 -0.081600 0.049288 0.157428 0.057724
0.005046 0.102125 -0.083473 0.044059 -0.094864
0.039120 -0.063306 0.057341 0.060519 0.107383
0.007076 -0.009373 -0.012555 -0.066630 0.117121
0.025254 -0.008796 -0.062102 -0.083164 -0.079007
0.084839 0.042308 -0.055353 0.036386 0.132641
0.084464 0.056288 -0.011636 -0.059554 -0.087748
-0.147377 -0.052414 -0.010203 -0.009159 -0.018829
0.009621 0.061633 0.015716 0.086332 -0.061465
-0.011833 -0.062998 -0.021168 0.125194 0.045025
0.052316 0.025720 0.095155 -0.093252 0.028720
0.056113 0.063321 -0.045315 0.025199 0.023591
-0.070481 0.072350 0.092458 0.047973 -0.025439
-0.001281 0.021028 0.034576 0.084779 0.006867
-0.010323 -0.046330 -0.009172 0.030485 -0.117679
-0.021782 -0.034737 -0.086292 -0.045885 0.009655
-0.037167 -0.123331 0.017291 -0.028319 0.071447
-0.057180 -0.032912 -0.139418 -0.025966 -0.039305
0.009411 -0.054017 0.076307 -0.060252 0.110087
-0.061366 0.038897 -0.098107 0.046119 0.043021
-0.029130 -0.096885 0.007623 0.090513 -0.097416
0.053264 0.058296 0.054372 0.060769 0.015586
-0.067956 0.059996 -0.037850 0.005986 0.000778
0.045873 -0.065546 0.077900 -0.085638 0.000698
0.027694 -0.021241 -0.002777 0.034509 -0.048173
0.009988 0.001008 -0.077434 0.026002 0.139490
0.008910 0.007791 0.059292 -0.057047 0.014127
-0.022959 0.085710 -0.068087 -0.081561 0.005935
0.007577 0.061544 0.076542 0.001660 -0.113279
0.024973 0.086750 -0.061674 0.095059 0.089352
-0.024436 0.024181 -0.016117 -0.073634 -0.067986
0.074701 -0.046868 -0.054634 -0.092485 0.006662
-0.033256 -0.053774 0.049001 -0.002339 0.013545
-0.006432 -0.012089 -0.086842 0.104105 0.061991

View File

@@ -0,0 +1,513 @@
5 512
0.007066 0.075781 -0.070082 -0.092014 -0.066477
0.090510 0.106622 0.025911 -0.016760 0.003724
-0.024628 0.058332 0.012876 0.059557 -0.002092
-0.065092 -0.096975 -0.041837 -0.002432 0.058918
0.014358 0.080049 -0.008803 -0.002091 -0.097584
0.085323 -0.026053 -0.086585 -0.009541 0.130555
0.045391 0.037557 0.074726 -0.050453 0.033517
-0.035576 -0.084211 -0.086430 0.008910 -0.072674
-0.098699 -0.024540 -0.048972 -0.066975 -0.048791
0.032184 0.070992 -0.014416 0.141892 -0.044249
-0.108921 -0.020450 0.115988 0.011287 -0.026273
0.024341 0.138519 -0.036467 0.020684 0.074258
-0.053563 0.077463 0.072166 0.032112 -0.079303
-0.025039 0.079675 0.094211 -0.115754 0.038892
0.050897 -0.024639 0.057826 -0.110429 0.071184
0.015309 -0.034027 -0.055726 0.043179 -0.063089
0.043359 -0.011698 0.006637 0.002751 0.030110
-0.001261 0.111470 0.043277 -0.004205 -0.021599
-0.005698 0.058842 0.168422 0.059313 -0.007971
-0.087599 0.073891 -0.083238 0.099279 -0.017364
-0.018429 0.014040 -0.014864 -0.111512 0.089450
-0.028498 -0.087983 -0.077320 -0.062602 0.000328
-0.027152 -0.093796 0.111381 -0.018603 0.092394
-0.007256 0.025391 0.011454 0.012802 -0.041680
0.008078 0.020905 -0.105401 -0.083265 0.027756
-0.049630 -0.044085 -0.051424 0.104125 -0.000779
-0.063079 -0.130699 0.070500 0.033468 -0.019802
-0.061011 0.094839 -0.040122 0.118409 0.056950
0.086391 -0.006615 0.045337 -0.044190 -0.106474
-0.081912 0.067557 -0.031649 -0.014437 0.057585
-0.121755 -0.049113 0.057109 -0.049872 0.044104
0.064705 -0.091589 0.037286 -0.048606 -0.045398
0.003456 0.057230 0.006262 -0.055206 -0.063871
-0.005249 0.081783 0.134969 -0.002331 0.052643
-0.093346 0.072093 0.116025 -0.031453 -0.006012
-0.038574 -0.030841 0.010288 0.024420 0.051657
-0.086584 0.046381 0.005410 0.052622 -0.072741
0.079023 0.078099 -0.093912 0.005477 -0.006721
0.100232 -0.017587 0.044819 0.036655 0.021580
-0.006829 -0.050076 -0.003020 0.088246 0.013560
-0.015690 0.012477 -0.052595 -0.048861 -0.033688
0.055615 0.092298 -0.066194 0.016416 -0.066059
0.046976 0.003023 0.104646 0.109136 0.018293
-0.016507 -0.006859 0.004326 0.070843 0.140750
0.025774 0.034730 -0.079590 0.050054 -0.107950
0.002378 0.097498 0.027111 -0.122953 -0.002423
-0.020539 -0.063263 -0.095493 -0.157361 -0.039183
0.025721 0.026897 -0.001200 0.033997 -0.001749
0.061593 -0.013053 -0.106317 -0.068190 0.046352
-0.056060 0.157084 -0.049365 0.053959 -0.051065
-0.047672 0.081570 0.064342 -0.030705 -0.070806
-0.076503 -0.059471 0.012419 0.073968 -0.026179
-0.038473 0.059013 -0.035783 -0.030057 -0.036346
-0.052692 -0.015346 -0.022687 -0.035279 0.013314
0.068397 -0.046609 -0.009593 -0.040796 0.157438
-0.075360 -0.110464 0.031839 -0.029035 -0.015222
0.041013 -0.099212 -0.108920 -0.008627 0.012095
0.020855 0.009935 -0.086917 0.058827 -0.006536
0.022104 -0.005013 0.003496 0.046663 -0.051061
-0.036803 -0.067317 -0.007075 0.180870 -0.027434
-0.025056 -0.039341 -0.073918 -0.003180 -0.110930
-0.042711 0.005519 -0.035005 -0.088419 0.170942
0.001503 -0.121485 0.066383 -0.067346 0.005643
0.080088 -0.042562 -0.006668 -0.036538 0.020683
0.042848 0.027852 -0.029088 -0.156468 0.006503
0.037716 0.032082 0.038416 0.021835 -0.106963
-0.043017 0.018166 0.070409 -0.005426 -0.035585
-0.111071 -0.039986 0.050430 0.035157 0.066902
-0.040684 0.060527 0.036225 0.002527 -0.015087
0.059243 0.021268 -0.010682 -0.018434 0.059128
0.111314 -0.054070 0.105744 -0.051476 -0.012970
-0.000358 -0.099249 -0.077385 0.069924 -0.039101
-0.072139 -0.049069 -0.088018 0.006144 0.000712
0.081030 0.021987 -0.046031 0.058087 -0.001320
-0.046851 -0.011062 0.108321 -0.001146 -0.071193
0.044973 -0.002915 -0.003323 0.041735 0.094566
0.053530 0.035927 0.100282 0.059082 -0.054059
-0.012158 -0.035417 0.020412 -0.073193 0.059296
-0.040489 -0.095250 -0.003821 -0.084904 0.053925
0.109183 -0.005862 -0.036538 0.080962 -0.040647
0.020070 0.057778 -0.020197 -0.079626 -0.003186
-0.050855 0.128185 0.034731 0.057460 -0.035236
-0.057096 -0.001238 0.122018 -0.071204 -0.047253
-0.051767 0.048301 -0.052678 0.025990 -0.017481
-0.029379 0.030738 0.047207 -0.047864 -0.033561
0.029884 -0.091175 -0.085446 -0.026140 0.092628
0.067706 -0.085617 0.081433 0.047305 0.031945
-0.048728 -0.040387 0.046206 0.010578 -0.037639
0.011328 -0.042458 -0.149597 0.033882 -0.061869
0.008800 0.057754 -0.095876 0.038230 0.096876
-0.033487 -0.141669 -0.014172 0.028439 -0.092764
-0.053714 0.086926 0.034786 0.136053 -0.005569
0.028753 0.009630 0.044114 -0.050365 -0.066224
0.006017 0.014348 0.024471 0.000489 0.067234
-0.021678 -0.118760 0.036349 -0.040295 0.076358
-0.008444 -0.086082 -0.044018 -0.025804 0.028971
-0.009233 0.053026 -0.035341 -0.182193 -0.102515
0.089210 0.066812 0.032417 0.046882 -0.034815
-0.052293 0.022814 0.129622 0.128232 -0.012105
-0.087084 0.004762 0.086538 0.046566 0.098359
-0.018713 0.039204 -0.021707 -0.060110 -0.117527
-0.005459 0.060994 -0.057718 -0.021783 0.035154
0.100557 -0.015470 -0.025818 0.008450 0.051535
-0.001388 -0.114610 -0.057903 0.041862 0.061778
0.045701 -0.078563 -0.070166 -0.048450 -0.088530
0.021375 -0.004598 -0.090710 -0.009399 -0.073952
-0.035575 -0.050280 0.114780 0.137866 0.065234
0.003594 -0.066802 -0.144989 0.166201 0.039564
-0.022457 -0.030090 0.016187 0.115443 -0.097331
-0.019139 0.099440 0.002198 -0.030953 0.021099
-0.045399 -0.046871 0.022533 -0.064657 0.005776
0.049063 -0.028478 0.019268 0.054265 0.028042
0.045559 -0.005541 -0.014410 -0.024165 -0.054976
-0.073258 0.084205 0.036077 -0.068683 0.004708
-0.085228 0.001234 0.046261 -0.050496 -0.028227
-0.086828 -0.001218 0.021865 0.003791 -0.000568
-0.088733 -0.040041 -0.035891 -0.054915 0.073463
-0.132031 -0.012844 -0.068544 0.013052 0.087335
0.038603 -0.115382 -0.010433 -0.007113 0.095126
-0.047378 -0.081353 0.018021 -0.021156 -0.120774
0.040038 0.007633 -0.088728 -0.009928 0.020142
0.052024 -0.021063 -0.118121 0.102739 -0.055837
0.005253 -0.061924 0.063680 -0.014512 -0.020259
0.029493 -0.013435 -0.020638 0.089342 0.001092
-0.046491 -0.145634 -0.083159 -0.158142 -0.279281
0.003611 0.055863 -0.064655 -0.088773 0.089283
-0.029619 -0.089949 0.017197 -0.066633 -0.052347
0.090828 -0.087551 0.000338 0.085238 -0.005313
0.096211 0.071381 -0.076546 -0.077927 -0.040864
0.062936 0.041559 0.016235 -0.017513 0.014773
-0.025734 0.028586 0.070292 0.055794 -0.026131
-0.076954 -0.082228 0.043947 -0.035921 0.152668
-0.049510 0.023159 0.008506 -0.044773 -0.160358
0.024984 -0.025587 -0.071627 -0.038376 0.088478
0.120568 0.046723 0.086731 0.000695 -0.015751
-0.027837 -0.160937 -0.095031 0.036271 -0.009061
-0.015078 -0.036281 -0.103665 -0.058258 -0.049573
0.022021 0.108296 -0.002586 0.065655 -0.018584
-0.046441 -0.031018 0.067350 0.014328 0.008860
-0.000245 0.063400 -0.001810 0.043515 0.090344
-0.063845 0.020485 0.079401 0.070558 -0.116428
0.032628 0.068949 0.052238 -0.044530 0.096813
0.029911 -0.008814 0.044352 -0.168172 0.009604
0.055828 -0.100739 -0.026013 0.021193 -0.051425
0.035891 -0.004085 0.030216 -0.060801 0.037202
0.007262 0.120686 0.026846 0.058464 -0.100792
-0.009176 0.027589 0.123957 -0.011283 -0.025744
-0.105081 0.118244 -0.042122 -0.025404 0.000873
-0.012703 0.084159 -0.067539 -0.140536 0.041637
-0.014485 -0.043382 -0.048004 -0.075416 0.054401
-0.018651 -0.032908 0.164231 -0.053236 0.033946
-0.021681 -0.012655 -0.037049 -0.001613 -0.053393
-0.014635 0.017954 -0.116115 -0.027232 0.034005
-0.035376 0.026492 -0.037250 0.070733 0.074835
-0.021378 -0.142980 0.123195 0.003699 0.025398
0.015629 0.077370 0.032623 0.121580 0.097100
0.000946 -0.056355 0.042065 0.008184 -0.081824
-0.101937 0.065473 0.003360 0.069241 0.073002
-0.053844 -0.044301 0.080351 -0.091833 0.044288
0.007447 -0.120723 -0.013806 -0.023636 -0.064616
0.030556 0.072630 0.074428 -0.087759 -0.026440
0.064840 0.049162 0.091053 0.023891 0.033811
-0.027746 0.116392 0.106126 -0.056644 -0.014781
0.036137 -0.002632 0.055512 0.070077 0.067819
-0.030625 0.053772 -0.078457 -0.021351 -0.113011
0.052797 0.044875 -0.077269 -0.009867 0.101493
0.073477 -0.024103 0.049145 -0.004706 -0.025211
-0.053731 -0.049009 -0.035786 0.054430 0.046515
0.025154 -0.043569 -0.034789 -0.058610 0.006931
0.012049 0.046809 -0.129441 0.025541 -0.030933
0.000297 -0.054058 0.179837 0.081515 0.004932
-0.028445 -0.073753 0.010629 0.080042 0.098710
-0.014017 0.057597 0.001010 0.071658 -0.067570
0.074384 0.110366 -0.018121 -0.108754 0.037793
0.028041 -0.047508 -0.031359 -0.098913 -0.036486
-0.017311 -0.001279 -0.013694 0.051968 0.036512
0.088201 0.031155 -0.043442 -0.065045 0.023486
0.027000 0.104768 -0.015176 -0.038754 -0.004178
0.003732 0.062166 0.085438 -0.077368 -0.101645
-0.118347 0.007589 -0.056489 0.082268 0.020253
-0.035623 0.034235 -0.099354 -0.061237 -0.024285
0.005441 -0.039694 -0.025957 -0.004411 0.049903
0.003040 0.036243 0.023552 -0.007334 0.128963
-0.077727 -0.059175 -0.019437 -0.024872 0.004339
0.084006 -0.076605 -0.102261 0.036714 -0.035205
-0.007642 -0.005125 -0.030525 0.096390 -0.053138
-0.002192 -0.024851 0.050645 0.041490 -0.043183
0.046796 -0.050894 0.055023 0.133834 -0.024013
0.000872 -0.057072 -0.000630 0.042070 -0.129339
-0.064283 0.037836 -0.066393 0.004438 0.125379
-0.062213 -0.067468 0.090177 -0.046094 -0.025725
0.079101 -0.074909 -0.043730 -0.073483 0.069672
-0.020413 -0.000079 -0.049725 -0.120751 -0.046980
0.039894 0.072305 0.009798 0.005613 -0.045217
0.006862 0.036285 0.074819 -0.006747 0.015144
-0.071562 0.012324 -0.001082 0.014835 0.079960
-0.027804 0.103358 -0.017203 0.014914 -0.056687
0.030827 0.028076 0.003395 -0.073255 0.110310
0.056498 -0.044893 0.110122 -0.109058 -0.052302
-0.001604 -0.089977 -0.060548 0.107808 0.025463
-0.070203 -0.000513 -0.123913 0.046247 -0.085392
0.096343 0.095890 -0.064950 0.070363 0.034272
0.037773 -0.076950 0.124858 -0.009008 -0.010115
0.083868 0.051242 0.039149 0.015185 0.083375
0.029773 -0.045961 0.100395 0.003743 -0.138294
-0.041755 0.010806 0.057797 -0.147374 0.095858
-0.009929 -0.103347 -0.032310 -0.110560 0.121377
0.145244 0.017079 -0.080587 0.020516 -0.044939
-0.010477 0.038347 -0.003466 -0.001618 0.019600
-0.021762 0.125482 0.011074 0.065815 0.040298
0.009202 -0.051686 0.129684 -0.131135 0.044536
0.009313 0.102518 -0.075351 0.054338 0.020273
-0.045753 0.031345 0.000407 -0.097294 -0.000416
-0.007466 -0.044972 -0.078744 0.042414 0.066624
0.030318 -0.067852 0.061416 -0.028992 0.056606
0.004038 -0.036253 -0.014279 0.023123 -0.007832
-0.000137 -0.027684 -0.127648 -0.007713 -0.008746
-0.026500 0.049032 -0.183319 0.059107 0.066500
0.016902 -0.093331 0.090129 0.016648 -0.083492
-0.023669 -0.010473 0.027614 0.145068 0.000681
0.044133 -0.035809 0.005668 -0.090461 -0.090732
-0.033927 0.042997 0.021700 -0.046955 0.044487
-0.026444 -0.061011 0.010110 -0.023804 0.030427
-0.015195 -0.155603 -0.016584 0.021461 -0.003528
-0.059784 0.032214 0.000847 -0.098859 -0.078980
0.043188 0.066433 0.062309 0.144507 0.006865
-0.068953 0.046698 0.099369 0.043354 -0.014309
-0.033202 -0.002950 0.040734 0.083454 0.039319
0.051358 0.006074 -0.073465 -0.090554 -0.120787
-0.040676 0.092412 -0.085151 -0.021699 0.005813
0.103135 0.024964 0.025832 -0.075982 0.035699
-0.027310 -0.153007 0.036420 0.057600 0.081630
0.001605 -0.054191 -0.033043 -0.014390 -0.071383
0.036180 0.035860 -0.046980 0.038541 -0.044757
-0.078032 -0.029878 0.078183 0.082251 0.010549
0.053317 -0.038231 -0.065610 0.055798 0.037504
0.076317 -0.027605 0.010349 0.095361 -0.088636
0.049089 0.113316 0.051084 0.038589 0.034330
-0.055948 -0.037217 -0.015418 -0.139976 0.036306
0.039306 -0.009889 -0.044910 0.016559 -0.000050
0.106073 0.015280 -0.002563 -0.109085 -0.048475
-0.035319 0.163860 0.032981 -0.044932 0.003227
-0.123233 -0.010638 0.055479 -0.003666 -0.072249
-0.111158 0.065365 0.010691 0.039119 -0.001837
-0.118729 0.061470 -0.002077 -0.033335 -0.060165
-0.026081 -0.001806 -0.079616 -0.000075 0.080598
0.032908 -0.035140 -0.003136 -0.029024 0.094622
-0.075773 -0.022898 -0.014817 0.058393 -0.111505
0.036794 -0.015760 -0.112602 0.030323 0.085897
-0.020834 0.056079 -0.103762 0.117671 -0.041205
0.041684 -0.084336 0.034186 0.011973 -0.006313
0.040836 -0.035709 0.034170 0.122672 0.090973
-0.053182 -0.059371 0.091017 -0.090998 -0.116986
0.001405 0.138364 0.017107 -0.064076 0.103486
-0.031142 -0.030068 0.046547 -0.133471 -0.042055
0.140418 -0.125084 0.035218 -0.001162 -0.021130
-0.012034 0.097413 -0.079006 -0.039030 -0.054011
0.143887 0.078835 -0.000601 -0.021173 -0.039895
-0.025050 0.075865 0.039221 0.032458 0.038206
-0.038873 -0.085003 -0.032736 -0.026956 0.113525
-0.023933 0.120794 -0.003862 -0.026459 -0.138724
0.089559 0.029002 -0.052098 -0.085692 0.115174
0.083497 0.024179 0.119021 -0.067541 0.019047
-0.027720 -0.086083 -0.055329 0.020087 -0.027086
-0.047858 -0.051975 -0.035205 -0.059342 -0.068582
0.058936 0.044141 -0.080315 0.119744 -0.046518
-0.064588 -0.027212 0.147823 0.032404 0.016690
0.024302 0.085560 -0.001525 0.016469 0.038891
-0.020146 0.019943 0.045067 0.038070 -0.086274
-0.025769 0.044192 0.102141 -0.064765 0.055849
0.048803 -0.030066 -0.009220 -0.116655 0.068295
0.047580 -0.076138 -0.070307 0.047582 -0.111342
0.004656 -0.004452 0.029703 -0.004259 0.011130
0.014446 0.166086 0.059565 0.000985 -0.052607
0.013251 0.094476 0.106216 0.016715 -0.025581
-0.101244 0.072897 -0.114526 0.024681 0.010784
-0.051759 0.032389 -0.050202 -0.083316 0.052334
-0.035100 -0.116721 -0.110336 -0.053391 0.065541
-0.029790 -0.020457 0.135285 -0.004142 0.111508
-0.030936 0.018549 -0.016034 0.018572 -0.084336
-0.048615 -0.018739 -0.096815 -0.090162 0.019410
-0.040821 -0.009925 -0.097427 0.091891 0.031793
-0.024598 -0.132848 0.078353 0.089339 -0.068562
-0.020779 0.040974 -0.055675 0.169131 0.029649
0.078165 -0.050679 -0.005881 -0.004983 -0.104324
-0.069096 0.127960 0.011392 -0.000769 0.062168
-0.079842 0.001606 0.089284 -0.035465 0.031075
0.029519 -0.102956 -0.010902 -0.064030 -0.019669
0.057492 0.075802 -0.008904 -0.060743 -0.053144
0.005126 0.062980 0.085674 0.019895 0.104448
-0.086473 0.056906 0.056795 -0.012940 0.036606
-0.008604 -0.040450 0.042062 0.041810 0.027680
-0.092256 0.091237 -0.039500 0.024761 -0.088978
0.068585 0.088295 -0.048033 -0.017808 0.045370
0.124600 -0.035320 0.056751 0.092751 0.054025
-0.015725 -0.061938 0.036806 0.078768 -0.016065
0.002444 -0.023887 -0.072177 -0.029790 -0.005860
0.015478 0.129142 -0.091024 0.071482 -0.065445
0.005867 -0.006051 0.098646 0.054089 0.018713
0.033837 -0.008355 -0.051959 0.057440 0.160305
-0.001863 0.016738 -0.033705 0.062233 -0.140759
0.027342 0.060074 0.030362 -0.117875 0.061020
-0.028026 -0.088238 -0.003782 -0.146288 -0.080395
0.050048 0.036136 0.019500 0.066902 0.020355
0.024817 -0.056254 -0.140918 -0.085803 0.020540
-0.003730 0.161411 -0.049408 0.000219 -0.002348
-0.055021 0.067820 0.126483 -0.031063 -0.119299
-0.102834 0.001133 0.010172 0.107707 -0.029106
-0.059813 0.036698 -0.021720 -0.043189 -0.002270
-0.031694 0.009605 -0.022459 -0.036417 0.053675
0.061561 -0.012723 0.050040 -0.029450 0.131044
-0.124516 -0.107579 -0.012171 0.011761 0.002599
0.016327 -0.060854 -0.080910 0.030875 -0.002997
-0.020970 -0.011880 -0.086096 0.037912 0.012421
0.055253 -0.007250 0.041740 0.055596 -0.024420
-0.017564 -0.079202 0.008897 0.180091 0.054490
0.001772 -0.022151 -0.082048 -0.010559 -0.163377
-0.020660 -0.017827 -0.030800 -0.045856 0.122405
-0.052946 -0.130490 0.097383 -0.116737 0.039855
0.056504 -0.059549 -0.059931 -0.018658 0.034898
0.054889 0.005373 -0.066796 -0.127360 0.047960
0.071746 0.027410 -0.006212 0.024132 -0.094062
0.005369 -0.008926 0.073085 -0.014265 -0.029204
-0.100025 -0.072076 0.014651 0.069368 0.048275
-0.066823 0.086074 0.014921 -0.015395 -0.045138
0.026224 0.000902 -0.038208 -0.035221 0.057397
0.097606 -0.073195 0.051626 -0.033488 0.027813
0.002070 -0.097510 -0.057877 0.126680 -0.082194
-0.072597 0.006014 -0.093185 -0.016853 -0.022790
0.138461 0.005394 -0.056485 0.102778 0.028918
-0.045604 -0.060041 0.121251 0.029260 -0.101404
0.061194 0.033039 -0.016798 0.064263 0.065144
0.010925 0.023151 0.107623 0.027977 -0.090356
-0.024863 -0.006440 0.047870 -0.047486 0.088211
-0.012139 -0.116121 -0.000525 -0.140961 0.016604
0.063490 -0.022732 -0.046944 0.066970 -0.068838
0.016143 0.026202 -0.043344 -0.064881 0.024877
-0.072845 0.120531 0.077901 0.047272 0.011713
-0.044646 0.040932 0.076164 -0.101233 -0.029615
-0.065118 0.050966 -0.023273 0.053517 0.023710
-0.007489 0.035822 0.023439 -0.055528 -0.004033
-0.007662 -0.096546 -0.081662 0.037141 0.137562
0.075526 -0.097496 0.123990 0.013996 0.087005
-0.019788 -0.082043 0.020524 0.007027 -0.021537
-0.036264 -0.090952 -0.177722 -0.009306 -0.031473
-0.009287 0.047557 -0.090241 0.089347 0.056375
-0.005506 -0.112128 0.004356 0.064421 -0.038478
-0.035674 0.040616 0.007731 0.160236 -0.054199
-0.007537 0.012434 0.022001 -0.021567 -0.075163
-0.026053 0.015909 0.041015 0.021832 0.034152
-0.048539 -0.086655 0.047465 0.000682 0.042640
0.023697 -0.095971 -0.022874 -0.000369 0.003413
0.046005 0.064807 0.010131 -0.129517 -0.092254
0.116469 0.053796 0.038110 0.094470 0.018435
-0.034803 0.073591 0.108348 0.104096 0.049884
-0.021274 0.022097 0.065347 0.065555 0.089319
0.000474 -0.004186 -0.040493 -0.065543 -0.083167
-0.017425 0.049177 -0.044248 0.008399 0.068180
0.154778 0.027549 -0.008012 0.014950 0.043254
0.039599 -0.136415 -0.018716 0.061900 0.031263
0.058118 -0.037200 -0.114692 -0.080876 -0.053238
0.077436 0.015015 -0.092517 0.005804 -0.065541
-0.005653 -0.073184 0.095594 0.082470 0.060989
-0.000262 -0.035766 -0.083441 0.122634 0.088429
-0.014397 -0.055434 -0.005659 0.069697 -0.064892
0.008824 0.082498 0.051866 -0.036070 0.033403
-0.082855 -0.087376 0.002714 -0.097121 -0.019170
0.027179 -0.069870 -0.009316 0.047450 0.040657
0.060527 0.004620 -0.040264 -0.051228 -0.029023
-0.071384 0.101421 0.009538 -0.099185 0.060100
-0.048395 -0.024677 0.025125 -0.056043 -0.058045
-0.054059 0.008107 0.021078 0.045290 -0.018459
-0.113359 0.014009 -0.006826 -0.052747 0.046922
-0.075976 0.008538 -0.084411 -0.004369 0.045801
0.075392 -0.067340 0.014454 0.032407 0.092478
-0.061859 -0.083458 0.051442 0.031695 -0.080233
0.054028 0.027000 -0.073549 0.032300 0.036501
-0.011384 -0.020780 -0.124142 0.093905 -0.028332
0.039139 -0.030944 0.079952 -0.001717 0.013976
0.038005 -0.001751 -0.044097 0.129827 0.014385
-0.001682 -0.063458 -0.002511 -0.078150 -0.141236
0.021955 0.104851 -0.093246 -0.060019 0.069998
0.004399 -0.096408 0.059327 -0.062268 -0.074327
0.108063 -0.090534 -0.045654 0.048119 0.049187
0.042105 0.043964 -0.091516 -0.047999 -0.028881
0.070471 0.055401 -0.025605 0.011176 0.008475
0.022254 0.038266 0.048106 0.047176 -0.017967
-0.010978 -0.088762 0.034806 0.019311 0.126815
-0.010571 0.053073 0.032162 -0.000780 -0.152200
-0.014253 -0.021954 -0.131040 -0.061376 0.113838
0.060725 0.020201 0.102533 -0.011392 -0.052046
-0.069625 -0.091011 -0.097954 0.067847 0.017856
-0.053461 -0.040679 -0.121664 -0.077208 -0.106919
0.057996 0.069756 -0.012433 0.069569 -0.055159
-0.024801 -0.060448 0.101700 0.014619 0.036580
-0.004526 0.093977 -0.028211 0.045261 0.149736
-0.014691 -0.007959 0.097708 0.107128 -0.079723
0.029157 0.020116 0.104828 -0.064208 0.119172
0.039583 -0.029446 0.006628 -0.110398 0.004062
0.048132 -0.060601 0.009448 0.051777 -0.053127
0.050551 -0.001924 0.028079 -0.050618 -0.013698
0.001920 0.088162 0.073078 0.085795 -0.066788
0.014025 0.042699 0.176241 -0.046674 -0.034822
-0.051433 0.121729 -0.057076 0.023901 0.045075
-0.057182 0.054780 -0.017280 -0.146674 0.002090
-0.016223 -0.044841 -0.084524 -0.152479 0.072688
-0.006962 0.008711 0.127455 -0.003876 0.053162
-0.013682 -0.025386 -0.000427 -0.024811 -0.024474
-0.056267 0.062116 -0.121311 -0.053011 0.065651
-0.075385 -0.008680 -0.063033 0.083039 0.110577
-0.000152 -0.127017 0.055904 0.013659 0.005664
-0.002852 0.047248 0.001128 0.100773 0.037274
0.026368 -0.042205 0.021887 -0.020247 -0.056678
-0.077475 0.089799 0.058003 0.039741 0.106663
-0.016853 -0.015972 0.075741 -0.048829 0.015374
-0.032657 -0.125677 -0.062060 -0.057409 -0.061287
0.073151 0.050357 0.053547 -0.059886 -0.051298
0.057954 -0.003817 0.076028 0.006757 0.061109
-0.038030 0.143209 0.092207 -0.018493 0.062291
0.005751 -0.036449 0.067582 0.031449 0.101894
-0.080754 0.011515 -0.049485 -0.016137 -0.087818
0.108851 0.038222 -0.099315 -0.003117 0.052278
0.107517 -0.036233 0.065370 0.040409 -0.057029
-0.033167 -0.081758 -0.019502 0.033438 0.013365
-0.017760 -0.025906 -0.020244 -0.078722 -0.011697
-0.028246 0.068647 -0.106417 0.026956 -0.064914
0.062711 -0.017857 0.151539 0.044613 -0.017820
0.009085 -0.032785 -0.025795 0.075790 0.075667
-0.040398 0.058556 -0.042634 0.093973 -0.099529
0.057103 0.073562 0.012640 -0.066141 0.029558
0.060219 -0.083699 -0.054799 -0.120442 -0.000374
0.006521 0.034512 -0.039558 0.042191 0.033865
0.103992 -0.014977 -0.077384 -0.051340 0.001873
0.047451 0.140612 -0.024885 -0.021420 -0.046604
0.030606 0.100660 0.076356 -0.019288 -0.098570
-0.114463 -0.010855 -0.034657 0.025618 -0.003356
-0.087913 0.064346 -0.075540 -0.091569 -0.024965
-0.021232 -0.017255 -0.056931 -0.003104 0.030219
-0.020112 -0.012334 0.035298 0.001405 0.161753
-0.064618 -0.064401 -0.007218 -0.000120 -0.047208
0.116105 -0.056464 -0.069645 -0.007032 -0.012090
-0.023237 0.016000 -0.039802 0.074319 -0.012604
0.014863 -0.058081 0.093219 0.062253 -0.040302
0.027405 -0.128683 0.039923 0.116808 -0.011706
0.012483 -0.017698 0.003645 -0.007588 -0.120662
-0.032868 0.066217 -0.031343 -0.034166 0.146334
-0.031228 -0.125921 0.117756 -0.042686 -0.062094
0.049375 -0.112262 0.010166 -0.073599 0.048690
0.028292 0.020076 -0.062865 -0.106114 -0.025300
0.066916 0.029279 0.028191 -0.003599 -0.040614
0.020491 0.060238 0.052747 -0.010390 -0.022389
-0.063358 -0.028707 0.035907 -0.011898 0.079703
-0.003758 0.078051 -0.017869 0.009045 -0.018982
0.034974 0.069405 -0.018909 -0.038613 0.083909
0.033935 -0.036607 0.088891 -0.052599 -0.059839
0.052758 -0.068308 -0.063615 0.126093 -0.009460
-0.042175 -0.011113 -0.073071 0.052086 -0.052619
0.049226 0.066898 -0.045666 0.117923 0.053656
-0.010739 -0.043962 0.141903 0.001792 -0.035469
0.090671 0.043993 -0.013655 0.018989 0.127223
0.001030 -0.001154 0.081839 -0.024979 -0.103704
-0.077920 0.036083 0.068220 -0.062210 0.113730
-0.010501 -0.065801 0.050885 -0.104304 0.121937
0.111850 0.009680 -0.011791 0.001677 -0.035029
0.010677 0.024572 -0.012860 -0.030323 -0.010466
0.011279 0.167752 0.003136 0.109709 0.007292
0.000987 0.004572 0.108706 -0.113192 -0.012431
-0.015225 0.073653 -0.051275 0.077928 -0.012752
-0.011708 0.014172 0.025162 -0.095378 0.026382
-0.028889 -0.058569 -0.129329 0.011087 0.061452
0.056893 -0.058004 0.103586 -0.060752 0.081824
-0.042805 -0.015991 -0.024444 0.028952 -0.013528
0.042851 0.019988 -0.165741 -0.031012 -0.014713
-0.026059 0.031698 -0.134343 0.032090 0.020828
0.051674 -0.128006 0.050856 0.022220 -0.073513
-0.009340 0.013756 0.036163 0.098407 -0.023495
0.023858 0.008121 0.022220 -0.103489 -0.046663
-0.033000 0.063565 0.029224 -0.012693 0.084202
0.012187 -0.051000 0.026126 -0.043293 0.008675
-0.019812 -0.165070 -0.014555 -0.047431 0.017990
-0.040073 0.107192 0.022228 -0.089023 -0.066885
0.014630 0.073186 0.069902 0.072634 0.019593
-0.041539 0.031788 0.092310 0.027223 0.034027
-0.051855 0.000391 0.007869 0.131910 0.069384
0.046276 0.040440 -0.037093 -0.031393 -0.112828
0.015709 0.096749 -0.103205 -0.021284 0.011405
0.158287 -0.021028 0.042219 -0.050759 0.069715
-0.042907 -0.116980 0.014224 0.094648 0.028395
0.041535 -0.057033 -0.047607 -0.024419 -0.034905
0.010125 0.036728 -0.052503 -0.001839 -0.033477
-0.053414 -0.070394 0.092895 0.100600 -0.026352
0.080574 -0.028763 -0.059548 0.094571 0.091787
0.041437 0.014312 0.045792 0.108269 -0.081586
0.056288 0.137447 0.054718 -0.032474 0.054502
-0.100144 -0.006460 0.024739 -0.117043 -0.008919
0.070299 -0.036862 -0.014543 0.024500 -0.015222
0.114975 -0.043705 0.000421 -0.061872 -0.035148
-0.022797 0.128575 -0.031798 -0.086718 -0.007172
-0.071706 -0.006833 0.028645 -0.007011 -0.096745
-0.142269 0.027996 0.065210 0.061381 0.000741
-0.140531 0.017480 -0.014986 -0.040893 -0.012718
-0.012494 -0.021869 -0.032923 0.016456 0.104475
0.010792 -0.066178 0.019097 -0.001893 0.067513
-0.092673 -0.059851 -0.045936 0.052642 -0.062500
0.065013 -0.025659 -0.149301 0.051705 0.035692
-0.045790 -0.007482 -0.069141 0.149365 -0.042039
0.018492 -0.081315 0.055880 0.058158 0.019669
0.063836 -0.012391 0.007057 0.155454 0.033854
-0.016532 -0.007661 0.043113 -0.080283 -0.108670
-0.029344 0.093781 -0.015840 -0.068134 0.091804
0.004148 -0.058507 0.059633 -0.095883 -0.004939
0.086151 -0.113571 -0.019466 -0.009167 0.003662

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,17 @@
1 16
10.000000
12.500000
15.000000
17.500000
20.000000
22.500000
25.000000
27.500000
30.000000
32.500000
35.000000
37.500000
40.000000
42.500000
45.000000
47.500000

View File

@@ -0,0 +1,9 @@
1 8
0.100000
5.000000
10.000000
15.000000
20.000000
30.000000
37.500000
42.500000

View File

@@ -0,0 +1,513 @@
20 512
6.7484 7.6125 6.0332 5.2789 1.5239 2.2353 2.0748 0.5289 0.8748 2.5432 -2.2863 -3.1910 -0.0434 -1.9857 -3.3605 0.7069 -5.9493 -0.5672 -0.6798 -18.0977
4.0503 3.9086 2.9225 2.3773 0.6580 -0.4363 -0.0644 2.4063 1.3428 2.4542 0.5275 0.9820 -1.3277 0.6811 0.0273 -0.1838 -0.0222 -0.6478 -2.2405 -17.4152
13.3284 12.1212 10.6531 9.8214 11.0388 15.8120 19.7110 16.5488 16.1068 15.8771 7.2553 4.2486 -6.0036 -12.5476 -20.1299 -28.2803 -25.3971 -21.7907 -11.5143 -26.8590
21.4405 18.4703 17.8693 14.9679 11.2994 6.4906 4.7717 0.1959 -0.8801 1.8991 1.9793 -4.9755 -7.7852 -10.0492 -8.5295 -8.2893 -4.1203 -12.4072 -16.1660 -26.1817
4.0023 3.8279 1.2681 1.0053 0.7002 -0.3886 3.4465 -1.4055 -6.7846 -2.3345 -2.9050 -0.1344 3.4192 2.4319 10.0096 3.9279 0.6807 0.3220 -3.8325 -17.2565
29.8276 21.1543 12.7853 13.0246 5.8164 3.7469 2.4198 0.1510 -4.5449 5.2695 11.7552 -4.8954 -6.0291 -8.9780 4.9650 -10.6540 -12.5363 -21.6056 -18.2985 -23.3739
4.8610 5.1207 6.5382 9.8638 15.4754 18.8192 14.8018 10.7685 12.4401 14.0392 2.9200 -3.7283 -9.7213 -13.5526 -16.0730 -13.7571 -5.4267 -12.2552 -14.5143 -26.6193
3.0429 3.0335 4.4785 5.6483 5.3476 5.7519 3.5651 4.9007 4.9672 -0.7330 -0.6458 6.5888 5.2957 -2.0068 -6.0189 -7.2145 2.5545 -5.8358 -7.4936 -25.2263
5.9384 7.0203 10.7433 15.2477 14.8437 8.0949 3.1384 -0.0014 -0.1756 2.1601 8.1029 0.4123 -6.8062 -9.6038 -6.2302 0.4409 -8.9878 -10.1638 -4.6903 -29.4840
7.1880 6.1134 5.4021 10.5427 17.0718 14.5658 6.8632 2.2257 0.4412 3.8257 9.0388 -1.1212 -6.7639 -9.2412 -8.6575 -2.9951 -8.6659 -9.4220 -6.6046 -29.8068
9.8859 4.3889 3.6253 3.2033 4.6563 4.5967 1.8747 -0.0037 3.2114 3.8854 3.1501 0.8523 -5.2830 -8.4603 -5.1159 -3.9157 6.9800 -1.5270 -6.0421 -19.9624
7.6208 10.1888 12.8648 16.4838 14.9269 7.8064 3.5594 -2.8048 -3.6303 -10.8596 -7.1254 -2.8890 5.4295 -2.5015 -5.5359 -2.9934 -6.5980 -7.1493 -4.9387 -21.8545
12.7227 17.1387 21.7055 19.8068 12.1832 5.8645 -2.4103 -3.8445 -5.5496 -5.5608 -0.2010 5.1772 -1.4666 -6.6602 -1.2573 -3.1593 -10.7925 -14.3751 -12.0047 -27.3167
7.4465 7.8765 9.4912 12.2074 12.1631 11.4780 7.6294 2.6922 0.1566 -2.1903 -1.5699 -1.8031 2.2555 -1.5591 -7.9267 -10.3612 -5.5432 -5.5673 -10.0797 -26.7960
0.3749 1.9725 2.6868 6.3326 8.9635 12.8113 13.6523 14.0916 11.2443 1.2914 -1.9954 -2.9443 -4.6718 -4.3132 -3.4613 -8.1105 -7.9033 -7.0956 -6.5898 -26.3361
10.3072 10.6822 8.8253 4.8992 4.3627 8.8165 9.7824 3.7264 0.4265 0.6068 3.0934 2.9121 -0.6717 -5.8045 -1.7344 -9.1008 -8.8333 -6.0633 -11.2321 -25.0005
10.6992 14.8060 18.9665 22.4210 21.8710 15.6647 10.6160 12.1366 14.0479 7.0707 -3.8212 -12.1770 -16.1111 -19.3389 -18.8315 -17.5346 -7.9646 -9.4592 -17.5614 -25.5000
9.9592 11.7001 14.2704 14.1434 7.3322 4.2766 -0.0567 -2.7113 -5.7358 -6.7390 -5.9067 -0.1939 4.8177 -3.9810 -7.2528 -3.2695 -1.5685 -7.8940 -6.3355 -14.8548
17.6322 19.5153 22.4362 16.2943 10.4698 2.5066 -2.3936 -5.3770 -7.9766 -9.8004 -12.9640 -13.1015 -9.8076 -5.7565 1.8732 0.4843 3.3621 -1.0048 -4.8377 -21.5543
9.9491 17.4987 23.2236 17.3142 6.8072 6.6873 1.9421 1.1415 2.9409 6.8470 2.4633 -7.2869 -8.9792 -3.3155 -0.1918 -11.8037 -18.6298 -12.6475 -9.7620 -24.1984
9.2080 9.9971 12.5064 20.0609 20.9647 10.9574 7.4360 4.4943 4.8454 11.0636 1.8176 -7.3479 -12.5617 -15.3912 -11.5022 -5.0309 -14.7556 -15.4294 -6.4150 -24.9176
7.7917 9.3291 11.8185 15.3501 19.3235 20.6869 19.8160 14.6028 10.2893 9.9407 9.8534 3.6182 2.7695 -5.2735 -19.7962 -24.6834 -27.0316 -25.6805 -24.9149 -27.8096
0.1108 3.1261 6.8163 12.4528 16.9192 10.8153 2.6109 -0.2652 -4.8897 -6.1056 -7.3218 -4.4594 4.3004 3.7728 -2.8276 -0.0458 1.0104 -6.4884 -6.4860 -23.0456
12.9442 10.3059 3.1303 2.1611 1.4795 2.7580 6.9527 8.4487 7.1533 1.4465 -0.9113 -3.9971 -4.9090 -5.3881 -3.1011 -0.4922 -1.1819 -5.3279 -8.2374 -23.2345
25.0945 17.8572 8.9500 2.7040 0.2187 1.4115 0.7421 0.5831 -0.3096 0.9334 -2.9667 -4.0352 -2.8473 -4.8594 -4.5863 -4.4311 -2.8466 -4.4808 -5.1669 -21.9645
14.6124 19.7986 21.2066 15.7620 8.7509 3.7653 -0.5239 -3.8894 -6.8522 -8.4979 -8.1879 -5.8438 0.5485 6.7415 0.4745 2.6750 -10.3676 -15.0245 -12.2357 -22.9125
11.9959 12.9771 17.1177 21.5310 16.8892 10.8731 9.7276 8.5106 12.9569 2.2512 -6.9324 -13.2124 -16.5380 -18.0518 -16.6252 -9.7038 -6.1220 -8.7542 -6.8998 -21.9905
12.8107 14.5670 13.4289 7.1693 3.4265 3.1397 2.5457 -1.2214 -0.3887 2.4506 3.9777 0.9056 -6.9195 -7.3811 -3.2619 -0.3714 2.6266 -6.3479 -12.2319 -28.9244
2.6437 2.2575 3.8643 6.0625 10.9091 16.9554 21.5045 12.7233 9.3579 9.4439 12.8585 4.4528 -2.4283 -4.7330 -2.2502 -11.3098 -18.5273 -22.4570 -23.1304 -28.1976
10.5757 10.9392 14.0126 18.2101 14.3745 8.6896 4.9080 1.0411 2.3482 7.2221 4.5440 -5.0353 -11.2852 -13.0882 -10.9600 -3.0288 -9.5005 -10.2217 -6.6739 -27.0717
14.6172 4.5412 13.3824 9.2916 19.2818 13.6563 14.4089 10.1260 1.6926 3.9361 -0.6461 -5.1244 -9.3641 -13.9807 -11.4128 -11.8597 -0.8237 -20.3149 -12.3561 -19.0515
4.0591 4.6177 7.7662 6.8737 9.4052 10.1099 12.8714 8.1202 6.6015 7.9224 1.7548 -1.6325 -4.8379 -5.0955 -2.1947 -8.4220 -11.8799 -10.7107 -12.0066 -23.3222
-3.3385 -1.1297 3.0554 4.9769 3.8625 8.6998 8.0974 -0.5519 -1.0699 -5.4771 -4.7235 -4.8192 7.1236 -0.4895 -2.0107 0.1838 3.5180 3.2804 3.1904 -22.3779
10.9362 15.2821 18.1297 12.4682 2.6895 -1.2007 -1.7676 -6.1681 -6.0524 -5.8064 -3.1002 4.3237 2.0263 -5.5109 1.0348 -0.4760 -4.6274 1.4107 -7.5329 -26.0586
27.0648 22.2199 14.8908 7.7845 2.8689 -0.0364 0.0683 -0.1186 -1.6323 -2.4217 -4.0112 -2.3476 -5.4442 -5.8509 -6.4386 -6.2558 -6.7739 -5.9348 -7.0916 -20.5398
4.3156 -0.2499 1.1824 2.8225 8.1910 5.2798 2.2597 -3.0043 -5.0382 -5.2727 -4.0013 2.6952 8.1245 -1.1517 -1.8957 2.4603 3.0897 -1.0817 -0.1353 -18.5898
17.5894 22.9315 26.4862 22.1620 13.7474 13.5177 15.2005 16.3224 4.9523 -4.2419 -8.3503 -12.4022 -12.6698 -6.7159 -16.2122 -20.1926 -20.5969 -16.0749 -12.5173 -22.9353
6.5871 8.0443 8.4339 11.3345 17.3665 13.4455 6.9211 2.0512 -0.7348 -1.2898 1.0076 8.4862 -0.3360 -6.4714 -5.9432 -4.1602 -12.1155 -12.4645 -10.9269 -29.2355
19.0066 20.3716 18.0417 9.4806 4.8058 0.3359 -4.1091 -8.1930 -8.9962 -9.7495 -13.2924 -8.6275 -4.9424 6.0502 -6.8142 -7.1166 -3.0922 8.8016 5.6937 -17.6547
4.7309 -6.5949 4.9914 7.3489 9.0188 4.1567 7.1949 0.4917 5.0462 7.5219 1.5314 -15.3803 5.3130 -0.0983 -7.0327 -1.2671 -0.4646 -1.6442 -0.7446 -24.1190
13.7639 5.1424 5.3193 3.8945 3.9574 1.4034 0.1896 -4.0608 -2.5264 -4.9434 2.8459 2.6311 -2.7915 -3.7842 -0.3711 0.5487 5.3766 -4.3496 -3.2801 -18.9656
12.6752 14.7799 16.2157 18.6944 14.1390 7.0937 3.8206 -2.4778 -3.9766 -4.4531 -2.8711 3.2148 0.6800 -9.1748 -10.1600 -6.0557 -0.8581 -9.2828 -14.0109 -27.9924
15.0025 18.2042 22.4086 21.6195 14.2308 10.5772 6.7291 6.0463 11.7877 8.4162 -3.4731 -11.2708 -15.6923 -17.5613 -14.5235 -4.5248 -17.8954 -18.3529 -10.3105 -21.4173
2.5368 2.8687 8.7229 5.2089 8.9671 2.8847 -1.3535 -4.4273 -4.9060 -7.8939 -15.4750 -10.4797 -4.4811 6.5892 9.9939 12.9078 3.2705 1.3246 3.7883 -20.0468
8.5207 11.8364 16.4466 19.9166 16.0662 8.4129 4.3290 -0.8928 -3.7592 -5.4071 -4.2870 0.4615 9.9611 5.8190 1.7969 -7.7765 -17.3073 -19.5235 -17.7924 -26.8211
3.0595 10.0158 11.1623 5.9413 3.1988 -2.1129 0.3528 -3.0158 -2.3599 -1.3347 -1.0479 3.9189 7.8019 3.0538 -1.6139 0.8043 -4.9290 -6.9959 -7.2918 -18.6077
17.8476 19.4332 25.4614 19.1508 12.2748 9.4543 6.1101 3.6929 2.9336 5.5407 -9.2238 -17.0071 -20.8856 -22.9308 -21.1711 -15.0234 4.8627 2.2867 -2.1943 -20.6125
9.6165 8.8018 11.1694 14.6183 18.4154 13.4481 7.1580 4.1650 1.8242 0.9521 5.1356 4.0270 -5.9523 -12.0202 -14.3055 -10.5893 -2.8308 -12.2805 -13.3723 -27.9806
13.4166 16.7617 20.6572 22.0976 15.9129 10.6410 5.4061 3.1570 -0.7256 1.2303 5.9463 5.1273 3.4864 1.6884 -10.9215 -19.5567 -22.8693 -20.4758 -24.0420 -26.9379
8.0404 15.9476 21.0441 15.0820 8.2842 3.1036 -0.2419 -4.2559 -6.0751 -7.4529 -5.5847 1.5520 8.3483 3.3751 -1.0503 -10.4691 -11.9360 -5.5738 -6.8713 -25.2662
19.9950 20.2102 18.7443 12.7220 5.8592 3.8088 0.4504 -1.5876 -0.0425 -3.0873 5.5382 -0.1499 -5.8500 -7.9372 -6.2374 -0.2643 -15.0702 -16.9914 -9.3644 -20.7458
-2.6024 -7.4950 -1.2522 3.5119 3.9726 3.4991 2.4457 3.2158 -0.1830 -1.7087 -7.3996 -6.8962 -5.2421 -7.5762 -9.1433 6.6126 10.5297 10.4556 18.2991 -13.0433
0.8317 2.2343 3.6899 5.6335 5.8479 6.4330 6.0022 5.3630 2.3387 -0.5344 -1.0716 0.6509 -0.7175 -4.0229 -6.0631 -4.7546 -1.9700 -4.6226 0.0933 -15.3616
-9.3660 -6.9175 -4.9307 -3.1828 -1.6587 -1.4971 -0.1586 0.6208 0.5169 2.4709 4.6017 5.3127 4.5449 3.2690 3.7590 3.4511 3.8260 3.9369 4.8805 -13.4790
-1.1830 0.5095 1.1754 2.3109 2.2722 1.3243 1.6529 -0.1799 -0.2874 -1.2863 -2.2761 -1.5668 -1.2037 -2.4367 -3.9243 -2.1186 2.3502 1.4312 9.5827 -6.1467
9.2349 10.7650 18.1608 20.6655 13.5769 5.4902 3.0323 -1.0259 -0.5010 1.7689 10.3810 12.0253 9.1922 -4.9615 -15.0315 -19.9651 -21.4377 -17.6800 -6.4577 -27.2328
10.6391 10.7983 11.4949 16.5329 19.2664 13.6129 6.1846 2.4573 -3.1501 -7.1814 -7.9387 -2.6238 4.6419 -5.9113 -9.3510 -7.0591 -3.2275 -10.2820 -10.5308 -28.3726
18.6364 19.3874 19.5930 14.3075 9.4402 3.6045 -1.9801 -5.5352 -9.0094 -10.9308 -12.7345 -14.0779 -10.9593 -3.8674 6.3753 9.5959 -1.4018 -7.4988 -6.1435 -16.8015
9.4969 11.3591 11.5468 7.8918 4.7217 3.0266 4.2145 2.2878 1.2224 5.6903 10.6919 4.2718 0.7184 -3.7583 -6.7954 -8.0558 -7.9668 -10.2861 -12.5018 -27.7759
1.9805 4.9512 7.0160 7.8284 8.7891 8.0863 7.7994 7.9865 8.6027 13.1944 14.7771 11.0643 2.1716 -5.7171 -10.9834 -8.7615 -16.8907 -14.3039 -17.4732 -30.1175
7.4683 9.4924 11.1231 14.0490 15.3387 7.9538 5.2116 -0.0275 -3.0014 0.1050 0.6547 7.9660 -2.3476 -7.0894 -4.6113 -2.0949 -15.9720 -16.2041 -7.4758 -20.5386
4.8388 4.2032 3.5738 6.4994 10.8701 16.7006 14.8672 6.7149 3.1448 0.6167 2.5321 7.5899 1.6456 -3.0073 -4.4465 -2.3406 -11.2907 -15.6965 -17.0827 -29.9328
9.8208 5.5733 3.2835 2.3197 5.4502 9.1113 10.3794 8.6442 6.0107 6.4897 4.2548 1.1709 -4.1757 -9.6942 -10.5243 -11.8609 -10.0641 -3.4488 -2.2532 -20.4873
5.8783 5.8851 7.6595 5.2009 5.1000 1.9820 2.2615 1.4023 -1.1079 1.1247 3.7199 2.8362 -0.5182 1.4421 1.5607 -8.4521 -3.7106 -1.6008 -5.2750 -25.3888
13.8298 17.3228 17.9494 18.8765 12.6415 7.5326 5.2828 1.0300 -1.0231 -5.4994 -6.6194 -2.5155 4.6895 -3.4515 -7.2113 -4.1051 -13.7542 -14.3604 -11.8611 -28.7541
-8.8559 -3.0649 2.2249 4.9828 6.4170 6.9906 9.9342 12.0149 12.2463 14.3103 18.4345 6.3234 4.2404 -2.7341 -6.9396 -10.7644 -10.1668 -12.3674 -16.3891 -26.8371
10.9983 13.5279 16.2801 19.6892 16.9475 11.0028 3.9633 1.1799 -2.0078 -0.9850 2.7247 -0.1311 -6.6215 -8.5890 -4.3971 -11.9543 -15.4358 -13.3278 -4.8427 -28.0217
7.2013 9.1028 13.1142 19.8377 22.5360 16.6528 11.8330 10.3141 12.9885 15.8372 9.0995 8.4627 1.1838 -14.4656 -21.4397 -23.6775 -22.5547 -24.8595 -24.4974 -26.6692
-8.4073 -6.6779 -3.9580 -1.6241 -2.1470 -2.2867 -2.2534 -3.0205 -4.5931 -2.5545 -2.1350 -1.3098 1.1053 -1.1397 1.2170 6.2234 3.6093 9.8015 23.5766 -3.4260
9.6955 11.4467 15.0851 15.4765 9.8267 3.5490 -0.5777 -2.7726 -5.1878 -5.7225 -4.4558 0.4969 9.2914 5.8917 6.4235 -4.2514 -11.0149 -9.4893 -13.0444 -30.6665
2.9943 1.4307 0.8714 2.2925 2.1145 2.9148 2.4003 1.9382 1.6662 -2.3476 -2.0877 -1.9322 3.3342 1.7171 -0.9114 3.2785 1.7852 1.4651 -1.3549 -21.5695
7.7138 9.3400 11.7519 14.3217 14.9762 11.0903 9.9040 9.3599 10.4611 6.3795 -3.9927 -7.6734 -12.4888 -12.1729 -5.7999 -5.5417 -9.5690 -9.5926 -7.6846 -30.7825
4.4498 9.2290 15.0677 17.9679 11.2745 2.6730 -0.9888 -5.6255 -7.5349 -8.4589 -8.4510 -5.5027 1.7669 4.3143 -4.8629 -2.0721 4.6797 -5.0125 -4.4213 -18.4923
11.1829 12.4396 12.7925 12.6901 8.0150 3.4089 1.7847 -0.2306 -2.0077 -1.0178 2.2167 -0.4542 -8.4111 -8.9029 -8.0861 -3.9439 -6.2512 -2.2635 -2.1307 -20.8306
-0.0237 3.5900 4.5144 3.8794 5.7527 11.0182 8.9091 7.1863 7.0702 7.1782 4.7799 0.6784 -4.3508 -5.3991 -6.5953 -5.6132 -9.5378 -5.6903 -1.3834 -25.9632
-2.7117 -1.4799 1.2116 2.3262 3.7406 3.7668 1.2697 0.2086 0.7399 -1.3479 -2.2145 -3.7982 4.9747 -0.4583 -1.7465 -0.9161 7.2119 0.8965 -0.2723 -11.4012
7.6123 10.5335 16.3125 23.5319 21.6117 16.3290 18.2001 16.9715 0.9425 -7.0707 -12.7338 -16.0871 -18.4761 -17.8994 -14.8763 -4.8440 -8.9433 -6.8294 -0.8772 -23.4080
9.1763 3.0851 4.6724 8.0499 14.6517 16.8559 10.4532 11.9797 13.2732 7.6578 -1.4245 -7.0469 -11.9925 -15.0269 -14.7577 -15.9057 -2.4494 -8.2002 -4.4694 -18.5819
-0.3793 0.7119 0.4558 1.7011 3.1548 7.4097 8.6888 7.5902 9.1020 7.3493 9.7346 15.2626 6.8726 -0.7975 0.8553 -9.6815 -9.3426 -14.3122 -13.9791 -30.3963
5.2988 6.3406 1.2009 3.3308 2.0290 2.8107 1.0030 0.4513 -1.4458 3.0391 1.2595 -9.2407 1.3164 1.9175 0.7738 1.8301 0.5948 -0.9497 -2.7482 -18.8117
23.5623 25.0580 25.0568 22.4174 16.4713 14.4026 11.1159 5.0250 -1.0266 -8.5971 -10.1924 -9.6120 -11.8638 -13.7028 -4.2000 -6.0100 -12.7481 -18.5497 -22.5946 -24.0120
-5.0424 -4.2120 -3.2703 -0.4028 1.8335 3.2012 2.3768 2.0802 0.6396 0.2079 0.1418 -0.1844 2.5056 -0.2078 -1.3169 -0.2911 0.8140 1.7717 5.2809 -5.9255
7.6330 9.9835 15.1303 18.9128 13.0001 5.9224 1.3978 -3.1674 -6.4703 -8.3713 -7.7470 -5.2412 1.6661 5.3754 0.9111 2.2634 -7.6214 -11.2828 -5.6474 -26.6470
15.3965 19.4488 18.3928 11.4564 4.0261 0.4604 -4.6326 -9.8409 -11.0926 -12.7123 -13.1035 -12.3357 -8.4063 1.3638 7.8807 5.5655 3.4210 0.7205 5.4867 -21.4953
4.0267 4.8087 7.0895 9.6094 12.6372 17.6545 19.7244 17.4364 13.7517 13.9367 6.0059 -4.5448 -9.4075 -13.3403 -13.6620 -10.1856 -10.5214 -17.1512 -19.3146 -28.5537
26.5287 22.7007 21.6748 17.6005 11.9372 12.6653 5.4749 -6.1299 -8.9419 -6.9620 -5.7222 -5.6209 -8.6350 -10.0876 -8.1562 -7.7238 -5.4233 -10.0839 -13.1237 -21.9717
3.9740 4.1572 5.7242 12.4480 17.3522 11.6512 5.2405 1.2103 0.5569 2.7329 9.6369 -0.5073 -5.1263 -2.7956 -0.7621 -3.7186 -1.7764 -8.4788 -18.8985 -32.6208
6.8442 11.6517 15.0164 13.0383 3.5465 0.5949 -3.0134 -7.5262 -8.2082 -8.6101 -7.2813 -1.2345 9.2720 5.1011 6.0543 -0.9163 -4.5878 3.4588 -4.8078 -28.3926
7.8637 4.0004 -2.9380 2.0521 2.2442 -0.4633 1.8855 1.9277 -0.6295 1.3834 1.2896 1.0703 -0.4938 1.5669 0.0079 -1.5584 -2.0070 0.9263 -0.4846 -17.6435
5.8623 7.6023 7.9357 8.1933 9.8252 14.3094 18.5980 17.6310 14.1029 11.3791 8.9224 4.7903 -4.5730 -11.3683 -17.8078 -14.2065 -11.2294 -16.2936 -23.1509 -30.5225
-1.7942 -0.0063 1.9950 3.6026 3.2262 0.8396 2.3621 2.3730 0.2704 0.4107 0.3605 1.3362 -2.3048 -2.1177 -2.8566 0.0808 -2.4432 2.0828 10.0173 -17.4341
16.0587 21.3030 20.2092 12.2290 4.0091 1.0523 -3.6402 -8.1002 -8.5006 -10.1681 -9.7303 -7.7995 -1.2107 8.9891 5.5157 1.2399 -8.3907 -7.4334 -1.1958 -24.4366
15.8248 21.2415 22.3705 19.6523 12.6511 4.9800 2.0524 1.2562 -2.0002 -7.0989 -8.4866 -8.1644 -3.6111 2.9801 -6.3159 -7.3905 -2.5939 -11.1587 -18.1433 -28.0453
11.4701 14.8919 19.2495 17.1766 9.1256 4.6224 0.3569 -3.6692 -6.2969 -8.7664 -7.4764 -1.7487 3.4354 -4.0219 -5.5797 1.1971 -7.0079 -5.6899 -4.9140 -26.3546
4.0502 6.3561 7.7528 13.2425 22.1071 16.8285 10.8539 9.9555 11.6373 14.4871 1.0686 -6.0140 -8.7291 -9.9474 -5.2420 -14.0196 -19.6200 -16.4317 -13.2116 -25.1241
14.0747 12.9823 14.7396 18.3580 20.8024 21.6686 20.4893 18.2777 14.8271 4.2101 -4.6228 -5.0852 -8.9555 -9.9704 -14.4886 -22.2364 -24.8924 -24.6202 -19.9776 -25.5806
6.5756 6.5342 9.0959 14.5314 20.6452 22.1123 17.0555 14.5823 18.4626 9.7441 0.1482 -4.4759 -4.9624 -0.2271 -12.9306 -21.6336 -23.8195 -22.7039 -21.8165 -26.9179
-2.4130 -0.2375 2.8918 5.5011 6.7427 5.7418 5.0778 5.1858 4.3188 3.4462 4.3416 1.8899 2.3449 -0.9372 -1.2877 -2.8414 -4.0969 -5.4193 -7.2573 -22.9920
18.6934 11.3904 9.2311 9.3832 5.4199 3.6295 -0.1793 0.6487 -3.5589 -4.0062 -6.2031 0.6797 0.8497 -5.8255 -3.0197 -0.8407 3.4120 -4.6925 -10.2551 -24.7566
-1.1447 1.5640 1.4686 1.7604 1.7234 2.3262 4.7312 2.6246 3.8383 6.5465 3.3830 1.7225 -1.7619 -1.0275 -1.1491 1.9434 -4.9663 -2.3871 -2.8449 -18.3507
14.1023 13.5650 10.1510 8.7911 7.7313 7.6480 9.2651 8.0399 4.9244 6.1141 5.5459 -0.9256 -6.1550 -7.0836 -8.6484 -9.0926 -9.2649 -13.5303 -12.0852 -29.0925
9.8451 13.4743 16.9269 13.4623 5.8133 1.7553 -0.7487 -3.9831 -8.1249 -9.5689 -8.7611 -6.3983 -0.6612 10.9895 12.8583 0.3283 -8.6023 -10.4136 -5.9048 -22.2865
19.2227 18.1307 15.9732 13.2757 8.9377 4.0318 2.7371 2.4204 4.8079 5.9436 -1.6587 -5.6682 -8.2354 -8.6156 -5.7373 -5.9194 -13.5825 -11.1928 -9.7272 -25.1435
9.7172 12.7596 17.7880 19.5982 13.1714 6.9756 4.2961 1.3629 -0.4383 4.9630 8.7840 0.9395 -2.9094 0.8700 -9.7739 -17.6442 -19.7626 -14.0983 -10.0576 -26.5411
19.7847 26.9921 27.0885 20.9467 13.4352 6.9927 3.8926 5.5073 6.3950 3.6410 -3.5260 -9.9366 -12.2833 -15.4366 -15.2739 -13.4030 -13.6697 -14.5223 -14.0162 -22.6082
-4.7450 -2.3439 -1.2527 0.2681 2.5169 3.0271 3.2731 1.1854 -1.4898 -2.2085 0.9214 6.1154 5.0556 7.1405 5.3972 1.8235 -0.1874 -0.9732 -2.7856 -20.7382
2.7354 2.9846 4.5226 11.0075 16.9767 9.7039 5.0497 0.2367 -2.2382 -2.2319 3.3972 5.8953 -3.5572 -7.9222 -5.1006 4.0687 -6.7980 -6.9512 -1.5062 -30.2728
1.8923 1.9933 1.7272 1.4697 2.1029 2.7198 2.2271 0.4083 1.4890 2.3633 0.0136 -3.1335 -1.8351 -3.4645 -2.5082 0.1244 -0.6305 -0.2515 2.6670 -9.3744
7.3147 10.8559 16.3202 21.3322 15.5047 5.7917 2.0324 -0.5787 -3.8385 -3.1611 4.7722 6.9085 -0.8153 0.2585 0.5455 -11.9753 -19.4608 -19.4821 -11.0006 -21.3242
-4.8271 -2.3317 -0.8263 -0.6913 0.0284 2.1785 4.8530 2.4866 0.5257 1.0973 0.9581 2.0508 -0.0850 -0.3240 -2.1544 -3.6769 8.2530 1.6818 2.7619 -11.9586
28.0344 21.3292 26.7011 15.9009 17.4755 11.8357 5.0600 6.5559 -4.3031 -3.5802 -8.7494 -8.4692 -7.5683 -2.5689 -10.7488 -16.5549 -18.6071 -16.7713 -13.4451 -21.5263
11.4465 12.5754 14.6510 12.0835 5.3520 1.6789 2.3021 -2.4719 -2.0905 -0.5169 -2.1754 -2.9241 -2.7917 2.0815 1.0635 -3.6587 -4.7680 -6.8125 -8.2348 -26.7899
11.1007 8.9165 11.8079 11.0313 1.9749 -0.9229 -2.4670 -6.7769 -9.1537 -10.4373 -8.8596 -6.3617 0.2425 8.3330 2.9722 9.5504 -3.2943 -3.1680 4.4488 -18.9367
12.7055 18.2073 17.6143 9.1957 1.5762 -1.0952 -4.9687 -6.1290 -7.3791 -7.2053 -4.3066 3.6014 9.8467 10.7313 -1.8676 -11.4282 -13.9225 -8.1802 2.6837 -19.6797
0.8368 -1.7610 0.4628 2.3612 5.1160 7.7374 9.4921 4.3865 6.1712 5.6238 6.3738 5.3491 2.7348 5.4859 4.6651 -8.4273 -10.9892 -8.6750 -10.7619 -26.1822
12.9582 16.0251 19.0637 18.9347 12.6765 7.8161 3.8112 0.9397 6.1611 7.4639 -2.5194 -7.1391 -10.2242 -10.1934 -4.1747 -5.7525 -14.4868 -8.2946 -13.9643 -29.1013
29.3165 26.9707 19.9517 12.4469 7.3647 2.8794 1.4068 -2.4963 -5.4012 -4.1083 -5.2153 -6.4891 -5.9548 -6.4872 -6.6510 -6.7351 -9.9422 -8.4833 -11.8558 -20.5171
7.6646 7.8496 5.3460 3.4574 6.3183 1.1408 3.1494 5.1045 0.2373 1.0847 -0.4320 -0.3662 -0.3503 -0.5473 -8.1949 -0.9695 -1.7599 -3.3828 -3.0248 -22.3253
7.0587 8.6157 9.7452 14.4294 20.8498 17.0788 7.0614 2.4228 -0.5017 -1.0215 3.1054 5.3564 -3.4904 -7.3987 -7.4398 -7.0656 -8.8032 -12.8630 -18.8666 -28.2731
5.7670 -2.6937 9.6459 -0.7839 10.7523 2.7960 -2.6113 -3.2915 -6.2928 -7.6167 -12.6729 -5.4796 5.0447 13.7582 10.3050 4.5191 -1.3433 5.4917 -1.7375 -23.5567
-11.2311 -7.9712 -5.4028 -3.3542 -3.1975 -4.2245 -3.9952 -5.3576 -5.3493 -4.8108 -5.4962 -2.9288 2.5785 4.7736 13.8058 17.8731 9.8332 14.9500 11.0220 -11.5171
2.8142 1.3603 4.2714 4.8975 4.3374 -3.4231 3.1881 5.0714 3.9705 6.2234 3.7268 5.2790 1.3825 -7.6582 -2.9268 2.0075 -4.0570 -5.6086 1.2855 -26.1418
4.9776 6.4457 7.7463 9.3687 9.5559 9.1954 6.3666 4.9237 2.1719 1.7788 1.4634 -0.3859 -6.1409 -5.3778 -2.6336 -2.5068 -8.3667 -7.0441 -11.2867 -20.2514
10.0472 11.9967 16.4907 19.9334 16.2325 9.2915 4.3130 0.7097 -4.0959 -8.1186 -10.5064 -10.3134 -5.2102 1.0801 -1.5982 -3.8949 1.2501 -7.5248 -12.9333 -27.1495
17.0433 19.1713 22.6813 17.1064 8.7516 4.3917 -0.7236 -5.3026 -7.9288 -8.3773 -7.4784 -3.7859 -2.5186 0.0200 -1.5465 0.1954 -10.7830 -12.0301 -3.0579 -25.8283
18.6591 22.3501 23.5831 19.0252 13.9063 13.3289 9.0463 -3.2346 1.2718 1.4619 -4.3706 -7.4089 -10.7710 -11.8151 -0.8947 -8.7094 -22.3259 -8.0672 -18.5235 -26.5118
3.2886 3.8514 1.5062 4.9096 3.9001 3.8964 -0.6349 -1.5534 -1.3119 -2.3130 -1.8455 -3.5666 -2.6094 3.4411 -1.0089 -3.0556 4.5250 3.3979 1.1349 -15.9520
-5.6652 -3.8931 -1.8885 1.6299 2.3371 2.0746 2.1285 0.4372 0.0031 4.2521 5.2010 3.3227 2.8933 1.9467 2.1449 0.9405 2.1680 2.3807 -1.3113 -21.1022
21.7270 24.2953 23.2112 13.4917 7.3423 1.4843 -3.1924 -4.8355 -10.3896 -11.3960 -12.8133 -11.6304 -9.9774 -2.6034 3.7943 3.5260 -4.2988 -6.0579 0.3494 -22.0269
7.1102 6.3521 11.6650 18.7864 16.7459 8.3216 5.8454 4.3436 9.4868 7.7601 -3.1382 -10.3196 -14.1642 -15.1634 -11.6972 -1.8200 -7.1959 -8.5258 -1.8553 -22.5374
14.2212 17.8028 21.4842 24.9383 24.9854 22.3982 21.3770 20.9687 13.4315 0.0683 -9.1695 -13.1215 -13.8982 -14.9798 -18.1636 -20.5802 -22.0396 -23.0260 -22.3178 -24.3795
8.9039 9.7955 9.3225 11.7206 17.8844 21.1802 19.2262 17.3421 13.9029 7.3860 -2.6995 -8.3297 -10.1319 -8.7756 -6.0590 -8.7597 -15.4747 -24.0243 -25.5723 -26.8375
3.8554 4.2234 6.2441 12.5445 18.1461 14.0699 5.9992 2.7220 1.0526 2.1813 9.5825 3.3502 -4.3618 -5.0291 0.5610 -10.3142 -15.3449 -12.7063 -7.6401 -29.1358
-8.9085 -6.1917 -3.8341 0.0473 -0.3559 -1.0455 0.4343 0.7424 0.1788 -2.4081 -1.5815 0.7755 2.7896 -0.3538 0.5914 4.7530 5.3039 5.5717 8.4610 -4.9697
6.0177 9.1902 12.5400 17.6650 18.0833 11.1113 3.6376 -0.9348 -2.4340 -3.3221 -2.4870 5.4750 6.1443 -3.6923 -2.5169 -0.6902 -11.0083 -16.8129 -17.3554 -28.6106
12.6629 16.5188 17.0120 11.3763 2.7817 -0.7077 -5.5288 -8.1972 -9.1883 -10.5072 -9.3239 -6.2042 2.0877 8.3448 2.7802 8.4635 -5.0126 -9.0230 -5.5900 -12.7449
26.6077 25.1133 19.7421 13.7493 7.5294 4.8418 5.8235 5.9404 3.3399 4.8147 -1.6758 -4.4299 -7.1722 -6.5470 -9.6023 -9.9251 -17.0327 -19.5694 -18.7525 -22.7953
9.3391 15.4719 19.7226 13.6838 5.7655 2.9423 -0.2309 -3.0447 -5.0071 -3.6430 3.6089 8.1171 -1.0555 -2.5360 2.0952 -6.4482 -11.0547 -9.9411 -11.5931 -26.1921
6.7164 12.9088 8.1465 2.9974 -1.5306 3.7966 4.6355 0.1956 -4.4054 2.5643 -3.5126 -0.4027 0.5107 -1.6406 0.9829 -5.6846 -0.0083 -4.8894 -3.3272 -18.0535
1.8584 3.5453 10.7864 10.3313 8.8364 11.3153 12.6550 8.0839 10.2072 14.1247 0.1105 4.9955 5.9811 7.9709 7.5141 -6.0319 -21.0185 -23.4977 -32.6987 -35.0693
13.1044 15.4062 17.5958 18.0756 11.3524 4.3670 2.6428 0.8781 0.0399 6.6751 8.2361 -2.6757 -10.1776 -9.8299 -3.1506 -9.5151 -14.3971 -6.2859 -13.5883 -28.7532
0.0688 2.2921 6.5965 8.3598 8.2327 8.6486 7.1471 7.1631 4.4823 3.4067 11.3001 9.5567 0.6574 -2.5849 -6.7404 -8.6614 -8.6399 -12.0189 -13.1958 -26.0705
9.5134 11.1944 14.6379 21.3303 20.9351 12.8622 5.9234 3.0673 0.5662 2.8569 7.4992 -0.6339 -9.8527 -12.4761 -11.2573 -4.7464 -13.5940 -18.0638 -14.8928 -24.8691
5.5904 5.1588 4.7053 4.3271 5.8271 9.5093 8.4110 1.6453 -2.2667 -2.6767 -1.4248 -1.1260 2.4114 -1.8009 -4.8190 -8.2201 -2.9355 -0.2567 -0.3488 -21.7105
0.4175 1.2148 5.1829 9.3743 9.7458 5.9476 5.0377 2.5369 -2.7391 -8.8960 -11.0818 -7.0650 -7.4393 -1.4335 10.1963 9.6385 5.0133 -4.2894 -3.8725 -17.4890
8.8274 9.1037 13.6965 18.9331 20.4960 15.7102 9.1227 5.5813 1.7546 1.3849 6.9672 6.4807 5.2247 4.2668 -9.8256 -18.2374 -24.2455 -24.1902 -22.7864 -28.2649
-10.4296 -11.2348 -7.6061 -8.6646 -7.9499 -6.1250 -4.3918 -6.8877 -5.4461 -2.2579 -1.3507 2.2980 4.8244 12.7426 12.4434 14.4927 14.8125 12.9871 9.6224 -11.8790
8.8890 12.0408 17.2338 23.3492 22.1801 17.3250 16.4611 18.6109 12.0359 -2.1102 -7.5218 -11.7288 -11.4854 -7.6790 -11.7033 -21.2349 -23.6258 -19.3358 -7.8566 -23.8442
-7.7648 -7.6325 -5.9874 -5.7763 -5.5038 -4.9788 -3.5524 -3.9264 -4.7269 -2.6727 -1.6911 -0.4884 1.8633 1.5449 3.1375 9.0909 11.6855 13.4220 16.9117 -2.9544
17.5979 21.0040 20.3690 15.7264 13.3239 13.0722 13.4678 1.7577 -6.0904 -6.9925 -8.3415 -10.6335 -9.5482 -1.5234 3.9870 -6.9271 -17.4878 -18.4739 -8.9267 -25.3608
6.1805 4.1462 3.5010 2.7230 3.9708 8.1302 9.4910 3.6927 2.9790 2.0598 -0.6100 -1.6298 -2.5238 -2.5441 -3.9959 -2.7189 -3.9403 -3.9477 -4.9568 -20.0067
7.7322 4.4707 5.2320 7.8782 9.1005 5.4418 6.0577 3.7093 0.1939 -0.2785 1.1984 -2.6011 0.6595 2.7395 -0.9452 -4.5096 -8.4529 -6.4501 -6.8768 -24.2995
-6.4169 -3.8203 -3.3676 -1.3384 0.0068 -0.0917 -0.6540 -1.1092 -2.2062 -2.8976 -3.0409 -2.6706 2.9750 6.3064 7.4779 12.0806 5.7715 5.5715 0.9432 -13.5194
7.6067 9.3813 13.4849 19.9139 22.7781 18.4350 15.9140 18.9134 10.1002 -4.3291 -8.2178 -13.6741 -15.7040 -16.5313 -14.1193 -3.7115 -13.7922 -12.8183 -7.7992 -25.8309
4.7167 3.8923 5.7519 8.0369 12.8563 16.7380 15.0698 9.7568 7.4623 7.4165 7.7550 1.1797 -6.3964 -6.5897 -1.5093 -9.7231 -17.0341 -15.7607 -12.6623 -30.9568
9.6098 13.4286 18.7280 18.1791 9.8536 3.5779 1.4841 0.4639 -0.5329 2.6536 9.8742 -3.2808 -8.9269 -11.0817 -6.3122 -2.5681 -15.3236 -12.3977 -1.9946 -25.4341
3.8990 7.6431 13.4623 16.8504 10.0821 3.4259 -0.1709 -4.7791 -8.1809 -9.2214 -8.3021 -5.9798 2.0125 6.9915 1.4712 6.5493 -3.7836 -4.9571 1.3613 -28.3737
13.9079 16.7984 20.6342 24.6533 24.3507 19.3643 17.9172 18.3920 11.7020 0.0010 -10.1043 -14.9084 -18.2285 -20.4094 -21.5267 -19.7383 -13.5385 -9.5045 -16.6159 -23.1465
7.1797 11.3922 15.7490 19.3949 17.3819 10.7478 7.3006 6.1472 9.1598 11.0073 4.7816 -2.4892 -3.7349 -3.7521 -1.7971 -9.8976 -22.2914 -25.7550 -23.0236 -27.5010
5.6600 8.4600 10.4652 12.1954 14.9914 18.5645 17.0459 10.3163 4.8130 2.3220 0.5889 4.1108 1.2082 -9.3950 -13.7061 -13.1090 -10.1060 -11.3113 -21.8744 -31.2396
-1.8886 -0.7563 0.4909 4.9127 6.9239 5.1456 6.2254 6.4299 5.1768 9.1990 13.2223 5.4194 -3.0538 -4.7242 -5.1855 -3.7939 -7.3421 -6.1816 -4.3871 -25.8328
11.3455 9.9507 8.1659 6.0877 1.4526 0.9704 4.7975 4.0208 -0.5941 2.5357 1.5340 -4.3306 -1.6103 -4.4373 -0.0323 -2.6725 -2.0195 -3.5278 -6.3697 -25.2666
-0.8009 5.6194 7.0974 6.1331 7.2063 7.4038 4.5741 8.4379 4.2968 7.9137 13.0725 2.3362 0.6963 -2.4917 -4.9374 -7.2728 -8.2160 -9.6329 -14.4558 -26.9800
9.4449 12.4990 15.8206 17.3018 10.9373 5.5366 0.8716 -1.2105 -2.4770 -3.4484 1.0611 6.1591 -1.7466 -7.5929 -6.9295 -2.1338 -8.9361 -10.3674 -6.3554 -28.4344
11.5326 10.9047 16.3163 21.0845 11.9757 7.0511 0.8356 -4.9870 -6.9450 -9.2309 -9.7748 -8.2038 -2.2957 5.5139 -5.4119 -2.7410 2.4166 -7.4497 -6.0628 -24.5286
9.3064 9.3678 11.2235 13.9991 14.4345 11.1982 6.3282 1.4131 -2.6884 -7.1825 -11.0075 -12.3749 -9.2573 -6.0414 2.3206 4.6097 3.5670 -3.2208 -9.5445 -26.4507
-6.7163 -6.0323 -3.7943 0.8820 3.6629 4.3198 4.7402 4.0799 4.8854 5.8718 8.3927 9.6825 10.5717 3.8917 0.9125 -1.2807 -3.7018 -5.7570 -8.2525 -26.3582
10.2748 11.6455 16.3809 20.1490 18.2488 12.7899 10.3972 8.0106 -0.6794 -6.4024 -9.7054 -13.5667 -14.6497 -16.1902 -6.9531 0.2117 -0.7067 -1.2331 -10.6728 -27.3488
13.3782 16.3500 15.3612 8.9247 3.4890 -0.7729 -2.6106 -7.5432 -8.0129 -7.6140 -7.8535 -2.4356 6.5050 -4.5887 -3.2816 5.8982 -1.3889 0.3111 0.3606 -24.4762
10.0811 14.1057 20.3635 24.0314 20.3690 17.0236 16.4460 19.2548 6.0111 -3.4365 -9.9143 -13.0905 -15.0150 -11.4726 -6.6405 -10.0976 -14.6658 -19.9459 -19.4800 -23.9274
-7.1817 -5.5458 -1.6137 0.8007 1.9284 2.5116 0.3432 3.3359 0.2833 -1.3305 -2.4960 -1.6366 -2.6968 3.6695 6.8225 4.4926 6.1940 6.7541 2.2072 -16.8418
9.6326 11.3478 14.3982 20.7665 19.7772 12.3406 6.1933 1.0438 -1.1521 -1.5860 1.8440 7.8419 -1.5328 -9.8703 -10.1973 -2.2440 -12.0413 -18.5948 -20.6014 -27.3660
1.5056 1.6880 4.2152 9.5291 17.0514 16.2096 8.5432 4.2111 4.4898 11.7231 5.5770 -4.8191 -7.5020 -5.9733 -0.7664 -10.2798 -14.8967 -9.8638 -3.1062 -27.5357
15.2115 17.9992 21.5012 24.9136 19.1760 15.8798 16.4094 17.8040 5.9025 -3.3769 -10.4408 -15.3738 -18.5882 -19.7882 -17.7007 -14.2386 -13.9566 -13.8247 -5.8162 -21.6922
12.1911 17.2966 17.4896 10.6943 3.5061 -0.1018 -2.5405 -6.3143 -7.6095 -8.5828 -7.4501 -2.2275 8.4004 0.0230 -1.6734 2.8727 -8.2243 -7.2548 -0.5950 -19.8998
-0.4264 0.0708 1.9133 6.0904 12.7810 17.8469 12.0313 4.9753 4.2790 6.9401 10.3052 0.2003 -6.7328 -10.0168 -10.0292 -2.7869 -5.6536 -9.3242 -6.0818 -26.3818
7.8387 12.9821 20.1116 21.8527 15.0291 10.4182 9.9996 12.5177 11.6815 -0.1048 -5.5624 -6.4577 -2.0918 -6.3498 -17.7376 -20.9015 -21.1073 -13.6752 -3.7477 -24.6953
18.0184 21.7405 20.2020 16.4376 12.3859 12.2417 12.1975 6.3324 -4.4281 -11.4734 -5.9353 -8.8421 -10.3280 -4.7973 3.4477 1.4017 -15.9637 -17.1346 -16.9459 -28.5571
8.9922 8.4069 10.2569 10.5303 10.1285 4.9362 1.8698 -0.0537 -5.3906 -5.9983 -4.6797 1.6021 -1.9697 -5.3874 -2.3336 -0.9265 -2.7071 -2.3523 -3.3933 -21.5307
0.1643 -2.2100 -0.9888 -3.4801 -0.5275 -1.4680 -0.5683 -1.5514 -0.4216 0.5034 -0.8521 -2.7835 0.5014 -1.2182 -0.7495 5.2974 5.8643 8.2766 6.0259 -9.8143
7.6720 8.0788 9.1059 14.2217 21.6149 24.6272 15.4198 12.7487 14.5686 14.3925 0.6524 -7.7122 -12.3140 -13.4374 -8.0366 -14.9387 -21.7305 -22.0625 -19.3233 -23.5474
2.2815 1.7578 -0.6674 1.7705 0.4755 0.4978 -1.3799 -2.1107 -2.6075 -3.5652 -2.8715 -6.8295 -1.7109 2.8096 -0.7449 2.5543 8.6739 -0.5359 6.8846 -4.6821
18.2027 16.9209 12.1191 7.6862 3.0545 0.5751 -1.6156 -1.2378 -3.1289 -4.2377 -5.6464 -5.0994 -5.0515 -1.2417 1.1802 1.1938 0.3821 -6.3202 -6.4152 -21.3203
3.5023 4.9407 6.5095 8.9494 13.2647 15.1725 11.9431 6.2423 1.1652 -1.6313 -2.9929 -1.9072 3.4422 2.8306 -3.2309 -5.3351 -2.3238 -10.7536 -17.8375 -31.9502
4.7778 10.3180 13.9538 16.0868 9.1380 2.9991 -0.6627 -4.2067 -5.6625 -4.9839 -1.2287 7.7334 9.3244 7.4153 -4.1228 -11.6166 -8.7569 -5.6012 -5.8002 -29.1044
-3.8341 -1.3838 -0.9472 -0.4209 1.7906 4.2155 2.2324 4.3091 1.1357 8.4456 9.7973 6.3722 2.6068 0.3293 0.1016 -0.3203 -4.2313 -3.6986 -3.9405 -22.5593
7.9933 10.9520 14.6109 19.7867 15.1983 6.5296 4.9056 0.7415 -0.5271 -0.1092 6.9036 12.3792 7.7901 2.0866 -9.1117 -12.3605 -5.7793 -23.1437 -29.0076 -29.8384
25.8990 23.1895 19.6721 15.4616 9.3167 5.4831 6.1546 7.4477 4.2279 -1.3757 -8.0309 -11.4646 -10.4795 -7.5543 -4.2227 -6.0439 -16.4547 -16.3865 -13.0397 -21.7998
5.9702 6.6918 8.5551 14.7594 15.5278 10.2403 6.0423 1.7099 -0.1415 0.4245 5.8906 10.2752 2.9571 1.0304 -7.5844 -15.4930 -16.0321 -8.3602 -12.0263 -30.4370
0.2377 1.2490 0.9118 1.8024 3.7548 4.8963 5.1515 4.2684 0.3786 0.5058 0.4839 -0.9914 1.4073 1.1727 -2.9065 -4.4307 -6.9456 -0.2385 0.3969 -11.1044
4.9017 3.2442 -1.2482 -1.2472 -2.0773 -5.4371 0.3708 4.1825 12.1289 1.2950 -2.3136 -3.1723 -0.4429 -1.6571 -9.7455 6.5626 13.4075 7.0987 -2.0865 -23.7642
26.5958 8.4474 11.9082 11.6976 1.4010 -0.2500 3.9848 3.6429 -6.0468 2.5341 -5.2699 -11.5085 3.8103 -6.3108 -2.4679 2.1530 -6.3876 -7.1780 -8.4060 -22.3496
2.2962 0.8041 0.8352 6.6150 14.5461 15.0856 3.2964 0.5549 -1.6557 -2.0236 2.8955 7.5016 -1.2031 -5.6899 -4.7833 1.2942 -7.3403 -8.3771 -4.0417 -20.6100
-3.1520 -0.4969 6.6485 7.8768 5.5605 6.5283 5.6337 4.1543 13.9779 2.7762 6.1398 -3.7070 -1.7982 -2.8944 -6.0041 -6.5265 -11.4873 -1.5122 6.0580 -27.7754
-8.0020 -4.6131 -0.7821 3.3160 4.4465 4.7754 2.8155 1.0612 4.8060 6.0492 5.9390 3.1446 2.8568 -0.6657 -2.6961 -2.1500 -0.9756 -0.2816 -1.9847 -17.0594
12.4378 17.8157 22.2857 21.4926 15.3987 11.6565 8.4610 -5.9608 -14.7466 -15.8101 -21.8850 -17.3295 -13.0545 -3.3503 5.7314 1.5346 1.1396 -7.5940 -1.8366 -16.3862
0.8964 0.1937 0.1104 1.6479 5.6517 12.1890 10.2771 4.4234 1.0502 -0.5311 1.2594 6.8796 5.2931 -3.9156 -6.0500 -0.9098 -4.2858 -6.9837 -7.0958 -20.1002
19.8439 13.4280 9.6622 10.6650 8.0950 5.5066 1.7572 -1.0429 -0.8012 -2.8142 -0.4934 1.3117 0.5243 -6.1730 -8.1290 -6.3324 -1.5063 -10.0417 -9.1390 -24.3207
-2.7279 -1.7097 -1.1534 1.6639 5.7537 6.7942 10.6044 12.5105 10.6069 10.0936 6.6639 5.7680 -0.0784 -3.9348 -2.0808 -2.5423 -7.7730 -12.2311 -11.4054 -24.8224
10.1275 12.1619 16.2723 20.8127 20.9740 14.8019 10.1842 6.5306 4.4543 7.4531 12.2713 6.9620 6.8204 -5.0668 -18.1362 -24.0479 -25.9037 -25.4208 -24.3890 -26.8618
-9.9466 -6.5695 -9.8093 -1.7391 0.0580 3.2073 7.0375 2.3619 -1.1764 -5.8692 0.3050 -4.2033 11.2777 -0.3904 7.8268 9.8649 4.7504 6.9825 7.6743 -21.6424
14.0137 16.9699 19.0697 15.0058 7.0268 5.9083 2.9474 2.1595 3.8159 7.2602 11.3975 7.5965 1.6600 -6.7074 -13.8401 -15.7435 -16.6488 -16.4066 -16.4466 -29.0384
6.2399 3.2858 -0.2213 -1.4923 1.3132 3.9330 3.5221 2.8631 1.3615 -0.0790 -1.0125 -1.0737 -0.3033 -0.8480 -0.4749 -1.1495 0.1031 -0.2090 -1.3002 -14.4580
14.6593 20.5101 23.6344 20.8409 12.5620 6.6891 3.7103 -0.8534 -3.6042 -5.9363 -7.0110 -3.7764 1.6775 -5.6072 -12.2281 -10.8044 -4.3275 -11.1148 -14.7836 -24.2367
17.5445 22.4817 15.1353 12.5880 5.1049 1.9643 5.3928 -3.5987 -0.4750 11.7373 12.9388 -3.8264 -3.5752 -8.3127 9.4226 -10.0441 -20.2747 -19.0638 -21.8010 -23.3385
11.5639 14.1176 19.1780 24.7909 18.2344 11.0457 8.2594 6.6617 7.5852 14.1840 12.1883 7.8148 -0.4947 -16.4472 -21.5615 -22.7378 -21.8493 -21.9703 -24.9810 -25.5820
7.3833 6.5793 5.7205 10.2722 16.6567 15.1599 9.5922 5.5668 5.0234 9.3817 5.3741 -5.1082 -9.8091 -12.3432 -12.5495 -6.2366 -5.9929 -8.3697 -6.8581 -29.4426
0.3726 -5.6285 -3.2253 2.1557 3.8332 12.1538 14.6059 12.3634 15.7294 17.0679 4.8054 -1.6834 -7.5585 -11.9417 -12.8749 -9.7037 -1.2933 -5.8852 -6.0304 -17.2623
12.4589 17.5375 23.1698 18.7129 9.0574 6.8369 3.3366 -0.7668 -3.5028 -5.8079 -2.0422 3.5413 -5.4920 -15.4559 -14.9601 -7.1860 -2.1139 -10.3945 -4.5301 -22.3991
7.7831 5.9803 3.3957 1.1363 0.6624 -0.3876 -1.2270 0.5350 0.3563 5.2276 9.1991 8.9238 2.6320 -1.9335 -4.2120 -2.5342 -1.0999 -4.9168 -4.9485 -24.5720
12.7865 11.7808 12.0132 12.7418 11.7725 11.2618 10.9064 7.0094 3.3808 -2.3233 -4.5714 -6.7413 -8.0255 -8.7048 -10.9950 -7.0616 -9.3710 -7.6597 -4.9100 -23.2897
7.4583 10.3954 16.3813 20.3810 16.5656 9.1371 4.5296 4.0559 6.8658 9.8043 0.1187 -6.6202 -8.4161 -2.4957 -9.4787 -16.3418 -17.6122 -13.1639 -7.5007 -24.0638
10.5778 12.5102 15.4500 16.2510 14.1076 12.4513 11.9259 10.4537 6.3771 1.6824 -3.8825 -5.5239 -8.8633 -8.0708 -4.6460 -3.2386 -13.9943 -17.4761 -15.8823 -30.2093
16.5450 21.4563 20.0130 10.5420 0.7521 -0.1817 -5.7313 -0.2690 -4.1817 -0.5968 6.2079 4.1626 -0.4622 5.1095 -10.2058 -16.0783 -19.9597 -11.6630 4.3789 -19.8380
0.6538 1.9228 2.2930 5.2351 12.5744 11.0394 7.4850 0.8228 -3.4564 -5.0324 -2.9456 4.4755 9.6050 1.6136 0.0025 -0.9954 -6.7769 -7.8860 -2.9330 -27.6973
14.1315 17.7109 22.9482 25.5022 19.8506 12.4355 10.8121 14.0608 12.2635 -2.6541 -11.3457 -15.5204 -18.0730 -18.7390 -15.7720 -7.2576 -9.9721 -9.7355 -17.1060 -23.5400
-5.7314 -4.0590 1.0581 0.9805 1.3616 2.7093 6.3692 11.6381 12.0180 9.1818 6.8001 1.9409 3.0785 -2.5335 -5.7990 -0.6774 0.8325 -4.7436 -7.1073 -27.3175
-1.0640 0.7851 2.7160 6.1021 12.1198 15.4431 10.3026 4.0089 1.9648 -0.0384 2.4993 9.2599 1.9572 -4.2838 -3.1953 -1.1928 -7.8283 -8.5999 -10.0789 -30.8773
-5.6296 -4.3307 -2.3209 -0.8933 0.2894 -1.9304 -2.0575 -2.7780 -6.2185 -5.9192 -6.6197 -5.5076 1.7000 -2.2417 6.7340 9.7221 5.4135 15.4230 16.2356 -9.0706
21.8983 23.2393 21.5176 17.3026 15.6381 10.7095 -4.6739 -9.4131 -7.3736 -9.6360 -10.3893 -7.6173 -3.6940 2.4229 12.3234 -14.8401 -14.2133 -12.8790 -4.4302 -25.8921
11.8056 15.6560 20.2939 16.8416 9.1858 2.5617 2.6711 -1.0207 -1.4500 -0.2437 6.6714 6.5193 -0.4136 -1.1308 -3.7531 -13.8441 -14.3531 -10.4897 -18.0817 -27.4259
55.7273 39.9360 26.2526 15.0127 6.4718 0.7391 -2.3157 -3.1939 -2.9475 -3.3569 -5.3235 -7.9446 -10.6626 -13.1662 -14.2100 -14.4691 -14.4121 -13.8376 -15.6433 -22.6564
3.7665 2.9173 4.2496 1.8470 7.9023 14.8241 11.0448 3.4540 2.7173 -3.8368 2.5626 4.5604 2.9217 -9.5401 -8.3622 -8.8234 -1.4224 -0.0449 -2.7094 -28.0285
-9.3983 -8.0419 -4.4832 1.9754 -0.3749 4.6985 6.4445 3.4462 1.2139 4.1530 -6.0488 0.4383 7.0647 3.8491 2.7818 -2.6890 2.0052 6.3893 4.3086 -17.7324
10.6303 13.7716 17.1718 20.1678 12.2486 3.3600 2.4058 -2.5934 -4.8765 -6.0115 -4.6562 -0.7932 8.0003 -2.2840 -3.8243 0.1863 -9.1648 -14.9839 -14.0940 -24.6607
16.6586 21.6444 20.8223 12.8954 8.1955 4.1214 1.5648 -2.8573 -5.5724 -6.5555 -5.8004 -2.3591 4.8330 -0.2831 0.7092 -9.8961 -15.4807 -12.0228 -6.1807 -24.4365
6.2715 7.1856 9.0377 12.3924 19.0793 22.2584 18.7678 12.6682 9.6569 13.2645 2.9549 -2.9501 -4.4734 -4.2440 -12.7065 -19.5653 -21.3156 -21.7041 -19.8037 -26.7746
6.6118 7.9766 9.5899 16.7112 22.8331 15.9736 8.1328 4.9522 3.0471 7.2666 11.8402 -1.4154 -4.2808 -5.2523 -8.9476 -17.0691 -18.3281 -12.6216 -21.0003 -26.0198
17.3127 17.4868 17.7344 12.4834 5.8856 4.6009 1.0730 -2.7678 -2.0723 -0.4628 -3.7999 -5.8370 -8.6148 -7.6108 -6.5104 -2.5688 -1.6184 -6.1466 -7.5013 -21.0659
3.4054 5.0769 7.0766 9.8006 20.0250 22.5645 11.5478 6.2329 4.4723 6.4844 10.6573 0.2331 -6.2477 -11.0870 -10.3507 -4.2484 -15.1989 -19.0756 -16.4193 -24.9492
4.7627 -2.1833 -2.2828 -3.7716 2.8453 7.5100 11.3439 6.1880 0.3611 -1.2837 -10.2990 -7.9318 -4.0985 1.3582 6.4088 6.3304 9.4372 -0.3781 -7.0962 -17.2205
0.0639 1.7461 3.2578 7.1373 14.2936 21.0383 16.8137 10.1108 14.3040 14.1399 0.3676 -6.3231 -10.5295 -12.7919 -9.1838 -2.4821 -12.1068 -13.6518 -9.1740 -27.0298
6.2012 6.2177 8.6617 15.7008 20.0807 16.3263 9.7644 7.6670 11.6809 8.6315 -2.6559 -7.4948 -10.0457 -10.1131 -6.9875 -12.9972 -15.7760 -10.0148 -6.4425 -28.4048
8.4071 5.8192 3.5662 1.9627 2.4472 1.8597 -0.7370 2.3814 0.1779 1.4958 2.9385 -6.0143 -2.3152 0.3049 -1.7145 0.7158 -1.3399 -5.1439 2.0438 -16.8555
7.4409 3.3788 6.5115 14.5248 13.0646 4.0268 -1.1894 -5.0999 -7.6910 -8.4282 -7.9356 -3.3516 6.9774 0.9806 -1.3988 5.5785 -3.1694 -5.2282 1.6484 -20.6401
11.6728 5.2904 7.2713 8.1521 8.6202 4.8390 1.9077 -2.7604 -4.5028 -8.9428 -12.4662 -11.0383 -4.7642 4.2903 3.3702 1.0547 5.8752 0.7203 -0.1952 -18.3942
1.7662 2.1132 0.6823 0.5069 -0.7694 -0.5730 -0.6749 0.4539 -2.3850 -0.8937 3.2905 1.9366 4.8907 8.8910 3.4773 1.6832 -0.3850 -1.0325 -5.4486 -17.5299
11.1327 8.1369 5.9398 7.2387 9.0755 13.7563 15.6715 10.9671 4.3603 6.5521 8.2784 8.2998 -3.5109 -8.8874 -13.5723 -11.9565 -11.2912 -14.9059 -15.3573 -29.9274
17.2359 18.8517 18.1626 16.5245 13.3466 10.8703 8.4673 4.7337 2.6350 0.0183 1.1954 4.7388 -2.9359 -6.0731 -7.4347 -16.3769 -19.9350 -20.0072 -15.2078 -28.8095
15.9881 16.1253 11.9372 8.7157 5.3883 4.3873 5.5095 5.6589 0.5361 -1.1208 -4.8170 -4.8077 -4.2337 -3.8897 -5.7866 -5.1486 -6.6937 -4.6271 -8.1104 -25.0113
10.5287 10.4645 11.0189 12.4921 10.2092 2.1803 0.6775 -1.9607 -7.8737 -8.5232 -10.8456 -10.0601 -9.5234 -5.7091 4.1283 1.9979 4.9082 2.3842 -1.6831 -14.8109
6.8712 7.1195 7.8478 9.0102 7.5469 4.9121 6.0618 3.0705 0.6628 1.7728 2.7140 6.3541 3.1029 -4.2377 -6.3687 -2.2545 -6.3865 -11.4164 -9.6711 -26.7119
16.6601 22.0460 20.3084 13.4923 8.0021 8.7024 10.1260 10.4026 4.1888 -3.7328 -6.1710 -10.8693 -16.0494 -7.8483 0.2833 3.3381 -13.0116 -16.9474 -14.2501 -28.6704
-1.6472 -1.5329 -0.7265 -0.8590 1.5500 3.3445 6.0600 5.7678 2.9402 4.2316 1.8384 -2.4116 1.7488 -1.1846 0.2843 -0.4495 1.5215 -2.2191 -1.2847 -16.9723
5.4499 9.2168 13.6525 18.6245 21.2266 16.3225 10.2029 13.7648 16.3433 7.8345 -0.8506 -3.0654 0.8282 -4.7895 -14.3191 -13.6263 -16.5382 -25.7242 -26.3799 -28.1733
5.4928 7.2730 11.4735 16.9546 13.9651 4.9178 1.4991 -1.5005 -3.3689 -4.2367 1.4622 8.4912 0.6337 -0.2593 0.3732 -7.8143 -10.1871 -7.5615 -7.0778 -30.5301
6.6781 5.8903 6.7632 9.1810 8.8397 9.7239 8.7155 7.7970 6.3227 3.4228 0.2514 0.1110 -1.6716 -5.4364 -5.9387 -8.2352 -7.5149 -7.0855 -8.8552 -28.9591
11.8209 17.4970 19.5821 14.6674 8.7810 10.5929 17.1599 11.1304 -1.5934 -2.4291 -7.1040 -7.2023 -9.3009 -11.7782 -8.5498 -11.3872 -9.7560 -0.1211 -12.0128 -29.9970
10.1575 12.1948 14.9933 16.4447 14.1842 8.2787 4.1829 1.5996 -0.4007 2.6686 4.5920 3.8070 -0.5362 -2.8498 -6.0317 -8.0974 -11.2561 -15.9690 -16.7096 -31.2528
17.3728 16.5602 12.1580 2.2953 -0.7338 -2.2088 -3.0060 -3.4950 -5.7703 -1.8968 -4.1417 -2.2550 -0.4691 -0.6536 -2.4783 -1.3584 1.1130 -1.5486 -2.1800 -17.3041
10.9509 14.6912 20.9171 20.7445 13.3882 9.0276 8.4810 10.4480 11.1634 -1.3107 -8.8976 -12.4550 -14.1419 -12.2168 -8.1653 -9.1840 -14.6536 -10.7798 -3.3490 -24.6582
-4.2511 -4.3180 -6.4235 -4.0719 -2.3887 -3.1485 -4.2032 -3.5194 -7.5010 -5.4107 -2.3368 0.6165 -2.5480 -6.5746 5.7100 1.8165 14.8553 24.3830 15.8024 -6.4884
6.8815 10.8626 15.3667 14.4704 2.5878 0.6962 -3.7687 -7.2033 -9.3334 -10.5308 -9.6190 -8.2135 -3.3921 8.1225 8.7748 9.4979 -0.1825 -3.9609 2.5378 -23.5939
10.7457 13.4613 16.3838 18.1633 11.9764 6.2322 2.2046 -1.6815 -5.4025 -5.3261 -1.9194 5.7850 7.0183 8.8506 -7.0398 -15.8090 -17.0181 -9.4482 -9.5562 -27.6203
4.4895 6.7459 11.3127 18.7251 18.1351 6.5502 1.1677 -1.0341 -3.9953 -2.3382 3.5745 11.8555 2.9192 6.0596 -4.8984 -13.0118 -16.2470 -15.0252 -10.6982 -24.2871
10.1449 10.3471 14.7490 16.1718 16.9528 11.3815 6.8749 1.4265 -2.7864 -6.1956 -8.0139 -7.8556 -2.8591 4.0596 5.4548 3.3633 -10.2166 -16.2406 -18.8135 -27.9450
9.5266 9.8619 11.6564 16.1435 22.5856 19.0228 9.5649 5.1013 3.9082 6.9523 9.4453 -4.8784 -10.6008 -16.0258 -16.6123 -14.7740 -6.6639 -13.8342 -16.3927 -23.9867
-2.8166 -0.2578 2.8925 4.4555 5.6756 4.6914 3.4417 3.4041 1.8890 1.8575 -0.5242 1.9867 0.9536 -0.9744 -1.4010 -2.1961 -1.2827 -2.3186 -2.1481 -17.3281
6.5757 10.4876 15.8653 20.5177 18.3749 8.4114 4.7411 0.5009 -2.9659 -4.1461 -4.5681 -0.6566 5.8038 -2.3737 -8.5532 -6.5787 -2.8561 -13.7548 -17.8769 -26.9485
7.1295 8.3469 8.9916 14.7649 20.5000 15.5149 7.3359 0.6792 -1.5195 -5.0373 0.9468 7.0372 -4.0339 -9.7787 -8.9444 -0.8558 -12.0386 -13.0157 -7.1764 -28.8465
-6.3643 -3.5600 -0.9853 1.3808 3.5164 4.4752 4.2783 4.1699 0.4058 -0.8097 -0.9913 3.1386 9.3653 -1.1057 -1.2662 0.7587 1.7985 -2.7481 1.1071 -16.5641
10.8441 6.1056 4.5464 11.5523 11.5304 4.8593 1.2036 0.6177 -6.5224 -11.5032 -13.3278 -7.1852 -1.6717 9.2735 6.7578 -0.9050 -7.2789 -6.0827 3.0089 -15.8228
2.4300 2.4475 8.1825 8.1925 2.2974 10.8311 15.5690 1.4027 0.3290 -0.4366 6.3648 1.0487 -0.9166 -8.1367 -8.1915 -9.5690 -3.4184 0.0616 -4.9205 -23.5675
18.5545 22.2390 21.2685 17.0100 9.6982 4.7320 4.3296 7.5541 8.1889 7.8498 0.4258 -3.7349 -6.3446 -8.3581 -11.0931 -16.2715 -16.4055 -15.8123 -17.4410 -26.3892
5.3049 3.9686 5.5462 12.1792 19.9309 17.0320 8.3644 7.8784 10.6383 15.3943 3.6647 -0.1421 3.0499 -3.2605 -15.9284 -20.0685 -19.5084 -15.1548 -11.4151 -27.4740
-4.1173 -2.8993 -1.1226 2.7523 4.1168 4.2377 1.6192 1.4859 2.7141 0.4810 0.9555 -0.9423 1.2205 0.5970 0.3948 0.4670 2.1347 1.5199 1.6806 -17.2954
15.7137 20.9924 24.3419 24.5468 20.7453 18.1011 19.1224 15.9122 12.9399 8.1629 -8.2323 -12.3399 -17.0242 -22.3729 -23.1787 -23.2286 -17.6989 -10.8077 -20.3082 -25.3873
-1.2634 1.8562 5.1481 8.6050 8.7868 9.5351 6.6634 3.8160 -0.1296 -4.6560 -0.5036 -0.2003 1.6621 -1.6607 -2.8913 -4.8208 0.3233 -5.1066 -6.1044 -19.0592
10.6986 11.8307 11.5659 12.4490 11.1880 6.9008 2.6629 3.0301 3.4569 5.3227 2.5092 -1.0853 -3.8118 -7.0840 -4.9747 -7.3629 -11.0099 -5.9887 -11.0008 -29.2965
13.6712 17.1821 19.2431 13.3261 5.9589 0.4984 0.3670 -2.3834 -3.2315 -2.1198 4.8356 0.4745 -8.1763 -11.1278 -9.8688 -0.1733 -8.1227 -9.3563 -5.3546 -15.6426
-5.7735 -2.5076 -1.5044 -1.1663 0.0004 2.3285 2.2748 3.5509 0.5101 -3.3403 0.8431 1.7502 3.2945 -0.4888 1.3903 4.0779 1.6571 2.3564 6.2297 -15.4829
9.1796 11.0931 14.7746 19.7918 17.0503 10.0451 7.8355 5.3063 5.9805 11.7545 10.2992 6.2216 2.6489 -6.8542 -15.2068 -16.6927 -14.0990 -23.4163 -26.3767 -29.3354
4.4691 6.3690 7.7808 12.8470 20.5705 17.7665 9.4381 6.2778 2.4431 5.0549 9.9596 3.2883 -2.2059 2.0400 -4.0438 -15.0151 -19.7303 -18.2469 -20.2388 -28.8235
25.3208 24.3974 22.6154 19.5733 14.8131 10.5701 9.4361 4.3748 -1.5593 -4.3511 -14.7283 -17.6258 -0.9520 -8.5196 -7.3624 -3.2510 -9.9332 -17.3271 -21.4343 -24.0570
22.3042 16.1278 12.0077 14.7975 10.7206 8.3648 8.0610 10.1267 7.5498 1.8723 -3.9201 -8.2481 -10.1623 -11.3760 -12.7367 -5.0050 -3.3744 -11.9178 -17.4700 -27.7220
4.0018 3.5852 3.3315 5.3461 4.3656 2.8461 -0.0206 -2.5696 0.1895 5.1002 3.3534 0.2158 1.3297 -0.9671 -0.5937 -1.9855 -1.7054 -1.7064 -4.2453 -19.8713
-0.1820 0.3377 2.3741 5.1705 4.8793 2.2995 4.3309 2.2662 0.4173 -0.8843 6.0098 9.0178 2.9640 -0.8977 -1.5385 -6.1656 -4.1289 -4.7989 -1.1105 -20.3607
7.6526 7.4466 4.8852 0.6442 1.5298 0.3141 2.6136 0.1768 0.3184 1.5717 0.2364 -0.4716 -4.0283 -1.7854 1.1771 -1.1242 0.5833 -0.2901 -4.6526 -16.7979
19.3739 25.1966 25.2676 19.4367 10.1976 2.4144 -1.1928 -4.0638 -8.7478 -10.5230 -11.0799 -12.5634 -10.0392 -5.3666 3.7592 3.3440 0.1212 -8.8586 -13.7562 -22.9202
9.6043 10.5410 12.3377 19.7574 26.3167 19.8022 16.1636 16.4176 17.5852 2.8061 -5.6826 -11.1198 -15.0897 -15.5002 -11.1047 -14.2676 -20.4525 -20.5783 -15.3843 -22.1521
12.9015 20.6704 27.9257 24.9274 19.2594 24.2150 19.1475 0.5334 -3.3152 -12.4822 -15.0498 -16.9033 -19.2802 -17.1972 -9.8015 -9.8416 -13.7988 -8.2071 -2.2124 -21.4912
14.4389 13.4012 16.1103 14.9288 9.7959 11.0171 12.0893 -1.4171 -9.8704 -8.5713 -15.4225 -18.6377 -16.5003 -13.9403 1.0172 8.7826 2.1557 -0.7217 -0.1613 -18.4945
3.2298 2.2245 4.4788 6.2407 6.6193 4.0854 3.5648 2.2977 2.4361 0.5689 -4.6553 -1.2701 -2.8888 -2.1474 -1.0212 -1.5878 -0.7381 0.5436 -4.6923 -17.2887
12.1886 11.0008 17.9358 24.3010 22.2969 15.0778 12.8771 17.0838 11.2261 -0.0847 -7.9648 -13.0993 -17.1559 -19.7583 -18.6302 -14.9903 -5.4184 -14.9564 -12.1370 -19.7926
18.1628 19.7982 21.7942 23.1496 22.2974 18.3029 13.8973 12.5987 14.0955 8.3018 -1.2018 -2.7097 -5.1243 -15.5625 -20.9814 -25.9011 -25.5502 -25.1062 -24.3739 -25.8874
5.1200 2.6682 2.7787 5.1220 7.7683 7.6609 0.3239 -0.5597 -2.1976 -4.2025 -2.3433 5.4581 3.3195 -4.6819 -7.7339 -5.9433 6.7709 -3.0093 -0.4617 -15.8570
3.1474 3.9068 4.6743 6.1980 3.9172 5.5703 3.7560 5.3815 6.4792 7.4263 4.0188 -0.9053 -2.9276 -4.2640 -3.8751 -2.5664 -3.8921 -5.7279 -7.3914 -22.9261
7.7606 7.9634 9.2590 13.4058 20.9130 19.2571 11.4285 9.1142 10.4227 12.6605 1.3940 -7.8667 -12.9049 -16.1586 -15.3321 -7.7158 -10.1835 -11.8246 -14.2319 -27.3607
9.9378 9.7046 10.1765 13.1670 9.5151 2.2155 -0.0456 0.0357 -0.3521 -1.2640 0.0667 3.9496 -0.7853 0.9935 1.7327 -2.1738 -2.4763 -8.9075 -14.5354 -30.9548
9.4566 14.4761 17.5184 16.5421 10.8319 4.8634 3.7958 1.0301 -0.7413 -4.7772 0.1278 10.6261 1.7256 -4.7562 -1.8151 -1.2979 -10.9708 -19.1139 -21.0656 -26.4558
4.1609 4.3674 5.1630 10.4393 19.9966 22.0365 15.0772 16.7404 13.2009 0.0579 -7.2967 -13.1855 -16.4671 -16.2778 -13.5417 -3.6468 -7.6575 -10.0591 -0.8708 -22.2374
9.2619 9.2850 10.6963 10.0411 5.3819 1.8030 1.0922 -0.3660 -0.8976 -3.1810 -0.6819 -3.8642 -8.4569 -8.9974 -5.5095 -1.9498 -5.7587 -2.8793 9.9987 -15.0177
16.0944 15.0736 17.4290 17.1266 16.3425 13.9152 -0.3124 -3.4633 -3.3349 -5.5676 1.0220 7.3152 5.0978 0.8308 -5.9027 -14.3898 -14.2461 -12.2320 -23.5828 -27.2154
2.0137 5.7764 10.2219 14.9245 16.5703 10.5235 3.0729 -1.4882 -7.2050 -6.2506 -5.1311 1.5065 6.9953 -1.4430 1.8240 -1.5831 -9.7701 -7.7954 -0.2269 -32.5358
0.8118 3.1428 4.1975 8.8492 17.1316 16.9999 8.6244 -0.0326 -4.9530 -5.2292 -0.1353 6.3691 -2.1837 -2.6835 3.8299 -6.3313 -4.7140 -0.2060 -11.6261 -31.8615
16.0656 15.8566 16.2660 14.0919 7.2745 1.1478 0.5592 -3.1884 -2.7528 -3.9872 -1.5200 -5.6031 -7.1936 -11.6082 -9.9024 -5.9648 -1.2652 -4.4434 -0.5317 -13.3008
6.0546 7.8172 12.5175 18.9740 18.6314 12.5099 8.6741 7.3229 9.6232 16.1584 9.3568 6.3688 5.3827 -10.1648 -19.1392 -25.0842 -25.6307 -21.0082 -12.2957 -26.0685
8.7645 5.7385 7.3877 9.4659 8.7034 6.7927 2.2815 1.6420 0.5587 -0.7987 1.2054 8.0228 11.5479 4.5805 -6.4932 -9.4841 -11.6576 -7.6077 -9.5897 -31.0604
13.5337 13.1762 15.6646 19.9549 24.3470 21.3479 19.5471 19.3675 13.3653 -0.5856 -8.6584 -13.2572 -16.9863 -17.9847 -20.7708 -15.4798 -11.0509 -15.4702 -16.1382 -23.9221
9.4656 10.0639 11.4433 14.6680 18.7771 15.2024 9.3195 5.1370 1.9578 0.3561 3.7670 8.6933 1.3200 -4.9956 -10.6736 -14.3320 -17.7829 -18.0592 -14.3140 -30.0137
1.5799 4.3053 2.3818 2.8910 -1.2059 -0.8300 -0.1903 -0.1292 1.0233 3.9206 3.9828 2.2978 3.2320 -2.5703 -2.6923 -1.3776 2.9213 0.1727 -0.5110 -19.2019
6.8519 4.8647 1.9844 2.2401 3.7555 1.5005 -1.3694 0.5704 2.1485 0.7600 0.6917 -1.0898 1.8295 -1.7615 0.1607 -2.4085 0.4928 -1.2003 -0.2145 -19.8066
26.8652 27.9313 22.2964 13.2728 4.9234 4.9750 10.5105 12.7213 4.9587 -6.5278 -2.0124 -3.4059 -5.9594 -7.3378 -10.2568 -18.1183 -18.7465 -15.1523 -18.6899 -22.2476
11.7015 12.5524 16.8036 20.5917 17.3325 11.6535 7.9132 3.4464 6.4909 8.4604 0.1120 -8.6770 -13.3036 -17.0534 -16.5775 -11.3553 -3.4540 -9.9071 -10.9540 -25.7760
20.0026 21.9415 20.1743 15.7692 9.6829 6.6171 12.1877 15.1379 6.9729 -2.6223 -11.9260 -8.0030 -5.4775 -7.9242 -14.3282 -6.4602 -11.9823 -18.5276 -14.5214 -26.7133
8.4727 10.3130 16.1554 22.5237 20.4885 15.1245 10.9192 10.3785 14.0959 8.6752 -2.6735 -8.1503 -8.9174 -2.4684 -9.1899 -21.2524 -22.7439 -18.1241 -17.6618 -25.9650
16.4001 11.0790 6.5408 3.9922 0.9638 0.6155 0.1321 -0.0033 -1.5205 -0.5347 0.0838 -0.8675 -0.2837 -1.6297 -1.6342 -2.7530 -2.7291 -3.0597 -3.9086 -20.8833
12.8347 13.9930 15.6832 15.4917 10.9362 11.4157 15.6476 4.3710 -10.8720 4.3584 -2.6363 -7.3238 -10.3423 -4.3725 0.4684 7.2994 -11.0045 -18.8176 -14.2499 -32.8805
12.3323 15.8058 21.8399 24.3008 14.4087 10.9930 7.8357 8.0265 12.8222 14.2335 5.8155 6.0731 -6.0593 -17.6762 -22.1263 -23.2555 -24.2165 -21.7123 -15.9183 -23.5226
5.7344 5.3389 3.8374 3.4190 2.8812 1.7219 0.1439 1.8580 -0.5349 2.0653 -5.3722 2.7017 1.0724 -0.8636 -1.4371 0.4192 -0.6553 -2.1126 -0.7370 -19.4805
8.7871 8.8914 10.5080 13.7939 18.1053 18.3809 13.6037 9.9123 6.2489 7.8891 6.4768 -2.8713 -8.9109 -11.1699 -11.8847 -5.8137 -11.8112 -19.3777 -21.5409 -29.2171
21.2487 22.5877 21.7624 19.0832 14.4498 8.3623 6.4664 3.1545 -0.2860 -1.9696 -3.9389 -1.8288 -3.7243 -9.6176 -13.7865 -15.0846 -11.3343 -12.9399 -16.9243 -25.6805
15.5067 16.3749 16.3110 12.8646 5.4498 2.4274 -1.0299 -3.2700 -3.2357 -0.0252 7.5399 -0.6948 -6.2588 -9.1664 -6.8883 0.7600 -11.6902 -9.9820 -1.1495 -23.8436
15.5548 17.3265 20.2482 21.9118 17.7825 12.4436 8.5947 8.3626 10.7582 6.8704 -2.6150 -7.1451 -11.7102 -15.2112 -16.7335 -10.8661 -12.1430 -16.7183 -19.7849 -26.9260
9.7348 18.6985 22.2000 9.7733 3.5414 -0.9890 -5.4561 -5.4928 -8.4760 -6.8757 -4.1569 6.8951 2.1633 -1.2892 3.0483 -7.4717 -12.0842 -7.7317 1.0735 -17.1050
6.6628 6.9628 9.2890 7.3292 2.0881 -0.1054 -1.5163 -4.7058 -4.4988 -5.4883 -6.5025 -2.6194 5.9468 -1.1287 -0.4851 5.3144 -1.6440 -1.6601 4.2795 -17.5182
11.7595 13.0074 13.6551 14.3417 13.9024 11.5890 9.9365 4.1950 -1.2916 -2.3847 -1.5414 -3.1381 -5.4213 -4.9864 0.0096 0.2286 -7.5940 -13.3606 -21.1287 -31.7780
16.5560 21.1528 18.2294 14.8217 11.7211 5.8948 0.1128 -5.7142 0.4819 3.4296 -7.6731 -15.2596 -14.0910 -4.3450 4.2359 -1.2610 -8.7829 -14.4366 -8.1323 -16.9402
-9.6162 -5.8920 -0.4336 -0.0688 3.9825 0.7100 -1.9156 -3.0982 -4.8027 -4.2612 -2.6264 1.0431 5.5418 11.1806 9.5552 5.0905 3.5862 4.3463 5.8670 -18.1885
9.2493 12.5210 14.8487 20.3042 16.9267 10.5281 5.4085 -1.4152 -5.3054 -5.3250 -4.1371 2.4443 0.8006 -8.0900 -7.9314 -5.9206 -13.5877 -13.0043 -4.8031 -23.5116
5.9148 6.0122 7.7679 11.9347 14.3202 11.1880 5.7941 0.6362 -0.9006 -3.7616 -1.0465 6.3361 0.5894 -7.7629 -9.2778 -6.0898 -0.4740 -7.4253 -3.1780 -30.5771
9.0470 12.9059 18.1346 24.2631 23.6353 19.2579 20.8877 17.0355 3.1774 -5.2773 -10.0473 -14.9178 -17.5773 -16.4551 -11.9394 -9.6664 -11.9143 -7.0063 -19.2353 -24.3080
11.6229 13.7686 16.3077 18.9730 21.2077 21.1770 18.6717 15.5260 14.4577 10.9286 -2.0523 -9.7658 -14.1470 -18.3895 -20.2191 -19.9491 -14.1791 -17.4745 -18.9708 -27.4939
-1.2854 -2.7859 2.0352 3.8729 2.5634 1.1875 2.9803 3.4105 0.6928 -0.5396 -6.4408 -2.1739 4.1284 -0.7168 -3.4324 -5.3047 2.1060 6.1169 6.1700 -12.5844
3.6719 5.1933 3.4330 2.0915 1.7090 4.9193 7.5225 11.4575 7.7921 1.1072 -1.3846 0.6720 -0.8916 -0.5196 -2.8857 -5.7085 -3.7344 -4.4707 -6.4364 -23.5377
5.0076 6.0603 5.6858 5.8716 4.9796 4.3510 3.2343 -0.0278 -1.6006 -3.6879 -3.6306 -0.3994 -2.7867 -5.8602 -4.3815 -4.1661 1.9375 0.0251 1.7605 -12.3723
1.5611 2.5677 6.9184 12.7642 12.9002 7.6294 1.5737 -0.4407 -4.6258 -3.3019 -0.3274 9.4821 8.3473 7.1185 0.9099 -4.2945 -2.0947 -5.5952 -16.6889 -34.4035
-10.0770 -9.2074 -7.5499 -5.3349 -2.0639 0.7289 3.3239 5.0911 7.8838 10.9963 10.2149 9.1756 7.3923 3.8453 -0.9308 -1.4293 -1.7749 -2.4954 -0.6350 -17.1538
11.6964 15.7897 21.5631 25.0743 21.2867 19.0704 20.7015 14.1826 0.0839 -7.4606 -11.2687 -14.0743 -15.6804 -14.7951 -10.8010 -12.5161 -17.6133 -13.8075 -7.4286 -24.0031
-6.9283 -6.6188 -5.8684 -5.5056 -3.6164 -2.5751 -3.3395 -0.3521 -3.7955 -8.6077 -6.1256 -4.7755 -5.6371 1.9017 5.4236 6.9088 17.0056 9.6477 17.8081 5.0500
1.0400 4.3584 5.7473 5.9965 7.1951 11.1543 16.3999 17.9219 13.7898 8.5105 6.6032 8.3888 3.1208 -8.4853 -12.1692 -10.3091 -9.4060 -16.3383 -22.0676 -31.4510
4.0785 3.7601 3.2477 4.5535 2.8617 2.8959 4.0341 3.3572 -6.7255 5.4042 2.4187 1.2230 0.1581 -3.0654 -1.9472 0.8423 -1.1312 1.2092 -3.2861 -23.8888
7.3239 6.9150 9.3764 18.0744 16.9415 9.6050 5.2932 1.9763 2.0297 6.2840 11.8379 10.9565 8.5711 -5.0433 -15.8094 -21.0356 -22.5868 -18.9436 -8.4281 -23.3379
-1.7885 -4.8321 -3.3241 0.9574 -0.7694 -4.0018 -4.5674 -4.5260 -2.6221 4.0186 7.6808 10.9687 1.1618 6.5552 7.2914 5.9801 0.8194 -0.4241 1.0077 -19.5855
2.5382 2.7665 6.6332 9.6977 12.0223 5.6888 5.2502 -0.0648 0.1790 1.7261 3.6718 4.6019 -4.2546 -5.2838 -8.6175 -3.5030 -2.8900 -5.1451 -3.1562 -21.8607
-1.7959 -1.6410 -1.3048 -1.9856 -1.1093 -0.5878 -1.7759 -0.7425 -2.7139 -3.3222 -3.9402 -1.9787 -4.1788 -1.9573 -0.0518 0.6181 5.7386 8.4544 14.2974 -0.0227
1.9227 3.4879 4.9261 5.1627 4.2257 4.6417 3.0455 -0.4550 -1.9330 -4.6665 -6.5225 -3.7829 -5.2713 -1.4162 3.7054 5.6573 7.0460 2.7847 -1.9201 -20.6381
5.4951 4.1184 5.0794 4.1307 2.3794 0.0327 -0.8237 -1.5895 -3.7505 -6.6385 -6.0766 -2.2466 -0.4080 -4.9327 -5.8400 -1.6035 0.3752 6.5602 12.3259 -6.5875
6.8048 2.6542 8.2117 4.3594 9.5824 4.9978 9.2805 5.4616 0.1801 2.8218 4.8979 8.0336 1.3602 -0.8584 3.0641 -6.3167 -11.4947 -13.9096 -9.3665 -29.7643
20.4394 23.8508 19.9523 13.4804 4.7063 -0.8810 2.3157 4.3508 4.6054 2.6117 -2.8160 -5.7052 -5.0189 -10.4846 -14.5942 -12.8055 -6.1098 -12.0585 -7.7055 -18.1337
9.9351 14.3502 19.5530 16.3727 7.0796 2.9949 -1.1604 -3.2246 -3.9592 -2.8637 3.6007 8.3194 1.5624 4.0080 -6.2282 -13.2960 -15.2078 -10.4525 -5.9946 -25.3891
5.5354 4.2644 3.4234 3.5650 3.9406 1.8276 0.2709 0.3493 -0.0020 -0.7304 1.8692 2.1692 -1.3779 -0.9234 -5.0911 0.1335 -1.1518 -0.8308 -1.2357 -16.0052
14.7180 8.4248 6.7389 6.9731 8.7963 12.7964 14.6589 10.3137 3.2909 -3.7235 -5.8542 -6.9864 -6.8348 -4.2701 -4.4326 -5.4747 0.7281 -9.3904 -11.2298 -29.2424
9.1842 9.7851 10.8472 12.9244 10.6955 6.8423 4.6037 0.7650 -2.0301 -2.7855 1.3686 5.5053 -1.4464 -8.6948 -6.8949 -4.4565 -9.3587 -11.9106 -7.0277 -17.9162
9.5187 11.0469 10.8992 10.5477 12.4336 17.9310 22.0092 22.1029 21.2249 17.7472 4.1368 -3.9142 -11.6583 -18.8125 -22.4708 -24.5855 -14.9292 -12.6855 -22.7109 -27.8313
12.0341 16.6419 15.8489 10.0396 3.3655 -1.8695 -5.2143 -9.4106 -10.9745 -12.0991 -12.0450 -11.1231 -7.2635 0.0306 12.4231 12.6061 4.1888 -1.9085 0.6831 -15.9537
-1.3674 -0.5228 -4.0775 -3.8100 -1.0761 13.7500 19.2044 15.7231 9.5615 7.9996 6.5298 3.6199 0.5658 -1.3324 -7.5527 -6.3571 -7.0946 -6.2162 -8.1181 -29.4293
7.3145 11.1318 15.8219 21.2414 19.7326 13.4391 10.1286 13.1458 13.5220 4.5818 -4.9865 -10.4663 -12.4137 -8.4915 -7.5278 -14.5074 -14.9519 -10.6855 -18.9716 -27.0572
-2.6938 -1.0116 0.5434 -0.5197 1.2510 2.7810 -3.1452 2.3461 1.3093 1.0916 0.2998 1.6109 9.4326 9.1761 -2.9635 -1.3175 -1.3459 -2.3687 -0.4622 -14.0137
-0.6799 -0.1341 0.7366 1.5016 2.3553 1.9877 1.8684 -1.1687 -1.7388 -0.3259 3.2899 3.7096 2.8005 -0.4016 0.0798 0.8146 0.2490 -0.5574 0.0812 -14.4681
-4.5962 -1.7335 2.2323 4.9758 4.1965 6.1120 6.3004 -0.2420 -0.4268 -3.4101 -1.9343 1.8578 -0.3352 -3.5061 -2.9167 0.7871 0.7063 -1.6356 3.3878 -9.8196
13.1227 13.7568 12.0750 11.2378 13.9543 15.7037 14.8582 9.5334 0.1292 -3.0889 -7.7565 -10.9896 -5.4579 -2.1373 0.1387 -11.7169 -13.0933 -7.4977 -12.3640 -30.4077
29.3087 22.8979 20.4744 14.9176 7.8398 2.3822 -3.7671 1.0563 -3.5131 2.1709 4.1060 -2.4865 -7.3802 -9.3667 -9.8213 -8.8247 -9.4073 -14.9259 -16.1530 -19.5079
8.2477 12.7093 19.4580 20.8257 15.6422 8.6762 4.5782 4.1335 5.6439 14.7051 12.4104 11.4909 -6.3291 -17.1032 -20.7835 -24.4558 -22.5241 -14.5649 -5.2278 -27.5328
0.7217 4.0954 5.2473 1.5270 1.7119 3.5822 -1.4614 0.8720 -1.3606 -1.4757 -0.4869 1.0336 -0.7433 2.0743 0.6152 -7.1442 0.5920 6.3583 2.8714 -18.6301
20.3582 21.7378 21.8475 15.5031 8.5323 5.5254 -0.6584 -4.0833 -5.5901 -5.8466 -2.2597 3.0499 -4.1864 -7.3615 -5.3521 -8.6549 -8.7165 -10.8646 -9.6599 -23.3202
7.9037 5.3843 2.5963 1.7924 -4.1648 1.1119 1.0025 0.4959 -1.4533 -3.0047 0.7379 1.8636 2.4329 0.9500 -0.1706 -0.3177 0.7889 1.1735 -0.4730 -18.6499
-1.9942 -2.2404 1.0361 1.1275 2.4246 0.9687 -0.7731 -0.4350 2.7773 4.6081 2.2666 5.9874 1.4863 -4.3135 -1.0943 3.1059 -4.9201 3.6382 1.5522 -15.2082
15.5189 17.8940 20.2047 21.1613 16.5719 9.8830 6.2072 1.5961 -2.8649 -4.2350 -1.2109 1.6294 -0.3114 -6.2890 -6.6470 -6.6461 -16.7097 -18.4834 -19.5782 -27.6908
4.5707 9.9453 16.9194 16.3836 7.5074 1.7185 -1.6704 -4.6470 -7.1710 -7.5216 -6.2372 -1.4728 9.1990 4.5872 4.2446 -3.1203 -10.1462 -8.9093 -2.0237 -22.1562
10.2043 6.2265 8.0480 6.0822 2.9673 -0.2686 -0.4905 -3.3479 -4.2925 -4.0224 -2.6407 -3.8742 0.6899 3.7007 5.8631 8.8480 -1.0855 -6.5692 -4.1304 -21.9079
12.9155 18.0966 19.8262 14.0767 6.9947 1.6106 -0.8791 -6.2102 -7.3162 -10.2835 -10.9883 -8.3441 -1.6557 0.0080 -5.7847 1.4192 -5.5022 -4.2471 3.9784 -17.7147
5.1637 8.0679 12.5738 17.5701 14.9252 4.1592 0.9276 -0.3161 0.0005 3.6819 10.2605 3.1026 -2.7955 -2.8307 -1.1861 -9.2862 -11.7976 -5.3295 -15.7634 -31.1274
6.9673 6.7974 6.1367 10.4782 15.9809 13.2295 4.9742 0.4813 -4.1310 -5.6911 -5.9712 -1.2511 7.3306 2.6442 0.3224 -0.8372 -7.4799 -9.3018 -8.5882 -32.0913
13.1396 12.9563 12.3478 9.0857 2.3849 -0.8490 -1.4825 -4.2362 -7.2804 -7.4639 -6.8853 -6.4479 -4.2443 -8.2231 -3.9022 0.4289 0.1896 3.7001 6.9697 -10.1879
15.3330 18.1603 22.1112 21.6848 13.1886 10.5333 8.8464 9.6626 12.4137 13.9577 10.1420 -0.2864 -11.4409 -16.9791 -19.7494 -15.6645 -19.7643 -22.5000 -23.5283 -26.1208
6.8457 -6.8649 5.4271 5.2712 -1.3685 5.0072 1.5557 0.4655 -8.6121 0.8133 -3.3697 -1.5367 2.2231 2.7614 0.6905 -0.9517 3.9757 2.5271 6.8378 -21.6975
4.0198 5.3861 1.4690 -2.5892 -0.7717 2.5302 1.6444 0.6228 0.0646 3.2916 3.8112 -0.6089 2.1623 0.1459 0.1339 0.1325 -1.6768 -0.5331 -0.5013 -18.7335
-7.1586 -2.6175 0.5796 4.1833 -1.3849 0.3608 -8.9238 -4.4835 -1.6026 -5.1856 -8.3891 -1.4730 9.5706 -8.3291 11.6042 11.1480 -0.2734 4.8182 12.1074 -4.5509
12.6166 14.8923 16.2633 17.1269 18.2744 19.2870 16.5858 10.4162 6.9131 6.3384 2.9142 -1.3754 -10.9051 -16.4865 -19.5016 -17.7616 -6.9047 -16.5161 -23.1066 -29.0706
10.8009 12.8094 14.6516 18.7246 16.6285 12.1161 8.7229 6.4887 7.8806 10.1330 4.1720 -4.3839 -6.8368 -8.8011 -8.4415 -14.6175 -16.9291 -13.3638 -20.2402 -29.5143
6.2190 6.4291 6.1608 8.0273 9.8018 9.8514 6.5431 7.0773 5.8326 5.6116 8.2150 7.4679 -0.2957 -6.5386 -7.9000 -7.1888 -10.2895 -12.2362 -14.0338 -28.7541
8.0266 9.6417 12.2059 15.4655 15.3945 10.4886 6.7757 2.3300 3.3664 6.5551 2.3159 -4.1967 -9.2962 -11.8145 -9.9788 0.0400 -6.7484 -6.4088 -11.3916 -32.7710
-6.0361 -3.7035 -0.2831 1.4674 0.7756 0.3247 -0.7445 -0.5024 -2.1341 2.7813 -0.1459 -3.5635 -3.9893 -4.2930 -0.5948 5.6527 2.1314 14.0267 12.5554 -13.7247
-14.2301 -11.8469 -5.4438 -2.2899 3.4911 0.4713 0.7187 -2.7114 -1.5588 -2.8210 -0.0887 1.5060 2.8286 9.3500 12.2742 8.0817 12.1298 7.7574 3.4239 -21.0423
10.2809 9.4545 10.3039 12.6386 19.4980 22.5798 19.2258 15.3342 18.1620 10.8305 -3.6184 -11.2472 -16.1533 -19.0561 -21.3742 -19.1215 -7.0133 -13.0322 -12.3255 -25.3663
-7.1992 -4.0950 -0.4752 -0.0397 -1.2923 1.2680 2.1020 -2.0159 0.5678 -4.1475 -2.2860 1.2468 2.9160 3.7433 -3.5078 6.2645 5.1466 3.3947 11.0482 -12.6391
-1.4558 2.6350 2.5261 -0.4261 7.9067 7.3761 10.5050 2.1413 -4.1382 -2.8818 6.9021 5.4317 4.9534 4.5363 -2.8372 -3.4508 -1.0165 -1.6706 -9.0235 -28.0132
5.4483 7.0338 8.8713 13.9617 19.3432 16.5740 12.5536 13.7232 15.1487 4.1979 -4.0767 -8.9863 -10.9482 -13.1722 -11.3412 -7.4945 -4.4916 -3.5707 -22.8865 -29.8879
12.0309 14.2862 17.8716 18.2606 13.3426 8.9006 1.3455 -9.4180 -11.1012 -15.4444 -17.4768 -17.9985 -12.4515 -5.2431 8.8612 5.5913 6.3114 -1.1018 0.2013 -16.7679
16.8689 16.8256 18.5632 14.4683 8.2457 2.7262 1.7491 0.4673 -4.4682 -6.2835 -4.3280 2.1966 -4.4856 -9.6447 -7.5807 2.0175 -9.6747 -9.7002 -3.6650 -24.2978
10.3443 9.5624 9.5859 9.3945 7.7097 5.9502 5.4955 7.0578 3.8970 1.8002 2.9026 0.8300 -0.8072 -3.4283 -8.7861 -9.4681 -7.6897 -10.0581 -8.5829 -25.7097
8.4589 13.9060 18.3570 21.8577 20.8363 13.5168 7.0018 3.5585 0.2984 -4.3657 -7.6435 -5.4526 -6.4991 -0.0823 -10.9834 -14.4890 -9.9873 -4.5713 -15.9935 -27.7237
-2.7942 -1.0695 -0.1214 2.5877 1.5098 1.0893 1.5717 3.2131 6.2989 10.9335 9.8682 8.6743 4.8838 1.8707 -1.0579 -3.7852 -5.7917 -7.6708 -7.9578 -22.2525
25.1784 20.8581 17.0052 12.9557 7.7424 3.9815 6.0072 3.4663 -1.9041 -8.1079 -11.4077 -11.8642 -8.7727 4.7601 2.8284 -7.3135 -15.0133 -13.8178 -7.5999 -18.9821
13.6088 10.9215 11.1892 11.7633 13.2294 6.3264 1.9267 -1.7303 -3.3278 -4.4979 -7.2855 -3.9683 5.3311 -1.6679 -8.5378 -6.9275 2.8396 -8.2151 -5.8206 -25.1573
20.0774 19.5893 17.1250 15.9021 10.2327 5.8537 4.1551 8.7468 6.2824 -1.6643 -0.8142 -5.7458 -5.8553 -6.7971 -4.8129 0.1863 -14.4064 -22.1846 -19.7857 -26.0848
1.9579 3.5459 5.6047 9.8227 17.1510 16.9383 8.2371 2.3829 -0.9137 -2.6491 -2.1733 3.0262 6.5399 -2.8952 -2.9389 -0.9532 -9.2242 -11.9604 -12.7131 -28.7857
2.7147 5.0851 5.9010 8.2492 9.0379 12.5344 15.7585 7.9343 2.8699 -7.6515 -7.5935 -7.0792 -7.0329 -0.2973 -4.1153 0.8146 0.8342 -8.0293 -6.0641 -23.8708
-1.8671 0.2021 1.1744 3.3514 3.8114 4.6535 6.4708 5.5903 4.6873 6.1200 7.1503 10.8820 10.1467 5.0564 -4.0471 -7.0223 -5.8028 -7.0328 -13.2761 -30.2485
14.4582 17.2732 16.2772 7.1332 0.6525 -4.4947 -7.7910 -9.8395 -12.5801 -10.7856 -8.8712 -4.2717 7.2719 0.7198 1.5521 3.5804 -2.9845 0.1717 6.3548 -13.8266
28.6852 25.8888 20.5479 11.1546 4.6177 1.8681 3.9247 1.2950 -2.9240 4.3050 4.3461 -5.4196 -7.8904 -10.2821 -8.2802 -13.9910 -11.2895 -12.5380 -13.7725 -20.2458
6.9489 8.2782 12.9177 18.1269 10.1196 2.5932 -1.2838 -5.9588 -9.0612 -10.7381 -10.6395 -8.4104 -4.0818 7.0965 0.3344 2.1418 2.2817 -3.7137 1.6102 -18.5618
6.2919 7.1483 7.7499 10.3266 12.7585 21.8234 21.7899 13.6697 7.2737 9.3185 13.4418 -0.1530 -6.4198 -9.4554 -7.4143 -12.4542 -21.2295 -24.5545 -24.4585 -25.4529
3.2078 1.1604 2.3820 7.1676 15.6309 19.6735 9.8897 7.8474 10.1305 10.4050 -1.8220 -9.0708 -12.7476 -14.2980 -11.7869 -3.2366 -4.1439 -6.6114 -0.0121 -23.7655
4.9484 5.9562 10.0092 16.2669 12.9260 3.9525 0.4920 -2.9838 -4.7825 -5.0706 -3.0972 4.4166 5.1484 -3.0885 -2.2935 1.8467 -6.6209 -8.5405 -3.2672 -26.2180
9.1190 11.7308 15.3181 20.5759 15.7183 7.6900 3.7341 -3.2723 -6.7161 -9.0437 -8.0703 -0.5930 6.4087 3.5269 3.0413 -8.4178 -14.7425 -12.7049 -6.9905 -26.3121
1.4852 -0.6829 -1.5690 -0.2848 5.5052 12.8631 6.4129 0.4626 -3.5500 -5.4162 -3.9006 -1.4888 7.5205 5.6490 1.1393 5.5204 -1.2344 -6.2194 -3.0728 -19.1390
11.9158 15.3244 18.2371 17.8689 12.9861 8.5734 2.6935 -0.4620 -0.3115 4.3187 1.8359 -6.5328 -11.3944 -12.3343 -10.2127 -3.2123 -10.7404 -11.6243 -6.0915 -20.8377
-1.1406 4.4681 1.0243 1.7567 0.8452 1.0568 1.7113 1.4304 8.2151 0.5703 1.2053 -5.7909 -4.3638 0.9165 -4.5872 3.4354 6.9859 3.9875 -3.5121 -18.2142
18.8171 22.5033 16.7157 10.3549 3.9514 1.6962 -0.6346 -5.9992 -6.8816 -7.3001 -7.9076 -4.3326 4.9348 4.6458 0.9437 -3.5521 -9.3640 -2.4386 -11.4118 -24.7409
-0.9409 0.5904 2.2794 4.9547 5.8743 8.7846 11.0088 11.1838 11.6958 14.1355 8.9116 2.5256 -1.8779 -5.6262 -5.5753 -9.1754 -9.0981 -12.4659 -11.4699 -25.7149
0.4141 2.8215 2.0838 3.1886 4.2216 1.7188 4.6179 2.9704 1.6545 -2.8460 -0.9511 2.6537 -1.8008 0.9825 1.2384 1.5282 -0.7271 -3.0940 -0.8090 -19.8659
6.0430 4.6516 4.3017 7.7179 6.7963 6.2910 8.7476 8.7592 7.7014 12.1586 8.0227 -1.3414 -6.0075 -8.1097 -6.8511 -6.6141 -5.8068 -8.7086 -9.3302 -28.4218
7.1395 6.4611 6.4770 6.5752 5.7360 5.6174 3.8338 -0.3402 -1.9803 -2.2319 -4.1316 -3.2411 -2.2252 4.1950 1.9636 -1.7425 0.5431 -3.5115 -6.8529 -22.2844
17.8843 21.4402 20.6904 15.9517 9.7051 2.5656 -1.5516 -7.4554 -8.8729 -10.2263 -8.6781 -5.1896 -0.7045 -6.7680 -8.2898 -6.9326 1.3954 -3.2208 -6.0504 -15.6928
10.6767 10.3544 18.1231 11.2879 6.1413 -0.3610 -2.4504 -5.1076 -4.9943 -4.9704 -2.3126 5.9757 0.9523 -4.2427 -2.5152 4.9197 -8.3019 -9.0057 0.3384 -24.5078
9.9161 11.8977 18.2327 24.4645 22.2618 14.5543 11.0874 11.6473 16.7269 16.7802 10.9221 4.3259 -12.8739 -20.0422 -22.5408 -24.1296 -20.9142 -22.6765 -24.3668 -25.2731
9.4023 7.3715 11.9062 12.5120 7.0268 13.6459 7.2747 2.8388 14.6515 22.1573 24.2647 6.5863 -1.1334 -12.1075 -18.8356 -21.0343 -18.7149 -21.3705 -23.1378 -23.3040
6.1154 6.8878 8.0486 2.0830 11.4555 24.4875 10.2548 8.5452 8.1934 -4.1865 11.8854 1.3485 1.9895 -14.5678 -11.0286 -3.4615 1.3428 -19.7548 -24.2069 -25.4313
10.3570 12.8522 17.3265 22.8368 16.6859 10.9743 8.2198 6.8557 9.3432 12.2609 5.1561 1.5410 1.3448 -11.6896 -19.8579 -22.4891 -19.3409 -16.0157 -19.9891 -26.3720
-2.2958 -3.0198 2.5524 6.5326 5.0549 2.8939 1.6085 1.4431 -0.1701 -2.0055 1.1867 -1.3016 -2.2987 6.1240 3.0188 -0.9646 2.6135 4.0735 0.2584 -25.3041
3.3425 -4.9398 1.7857 0.9810 8.2974 13.8760 7.3422 4.3951 4.0317 8.9378 9.1371 -1.7588 -9.1168 -12.4667 -12.0238 -9.0772 4.3501 -0.6556 4.4305 -20.8684
2.6724 2.4627 -2.5441 -3.3045 -4.2917 -1.4508 1.5865 -1.0572 -2.1109 1.4870 -1.0006 3.5002 3.7107 1.3794 -1.6261 0.0378 2.0162 0.3261 3.2452 -5.0385
3.1268 4.8784 8.6218 13.5865 14.1019 7.2490 1.4764 0.4142 -1.4440 -0.1256 6.7242 13.6333 7.9001 5.1808 -8.7618 -15.9427 -17.5740 -13.2732 -3.9031 -25.8689
8.7515 17.2518 23.5164 15.7690 8.1574 4.9814 0.5026 -0.4621 -1.5217 2.4458 11.1982 12.8925 8.2107 -10.1894 -18.8969 -20.9839 -19.6436 -9.2705 -7.3159 -25.3934
11.7980 12.1448 14.6065 20.2682 20.5368 14.0544 8.9695 7.1447 9.3182 10.2279 -1.3945 -9.8630 -14.2310 -14.2600 -11.2940 -5.3186 -14.6453 -16.0278 -14.7441 -27.2906
8.3692 9.6882 12.8542 17.3005 21.1340 18.5917 11.2777 5.5517 0.5470 -2.3437 -2.3633 -0.2054 0.7833 -4.4844 -5.7547 -6.4185 -15.2118 -20.9890 -20.6002 -27.7265
3.2540 3.5495 5.6572 11.4443 18.6822 14.2818 7.9623 5.8581 7.6636 11.2380 10.4719 -0.3434 -0.9127 0.3323 -9.6682 -12.3368 -7.0303 -17.5040 -22.5944 -30.0053
10.5668 4.7765 4.8789 5.9385 13.1029 20.5979 14.5257 8.6496 2.4271 -1.1640 1.2029 9.4957 -0.0200 -12.5730 -14.8513 -9.4220 -4.4288 -12.9535 -14.3720 -26.3782
3.6092 2.1429 -0.2581 2.1516 6.0252 4.4742 4.3520 2.9527 3.6102 2.6901 -0.0942 2.2564 1.3309 -0.5758 -1.1090 0.1191 -0.1180 -0.1015 -5.5503 -27.9075
8.4206 12.6530 18.9633 23.9855 21.2540 9.7237 1.5121 -0.7361 0.7545 -1.5581 2.4158 9.9186 6.7278 3.6705 -12.4971 -19.8574 -23.2581 -23.7200 -10.9203 -27.4525
22.1951 16.4633 13.2055 7.4970 2.2280 -2.4528 8.7730 10.6870 4.9929 1.1178 -5.3802 -8.2471 -5.7256 -8.8078 -8.3540 1.5835 1.5054 -11.6521 -13.9564 -25.6726
-7.9053 -6.5840 -6.0103 -4.8986 -4.2425 -4.7462 -6.7261 -8.5401 -8.6906 -8.8402 -5.6306 -0.7673 8.6501 5.0800 13.9798 11.4953 10.0314 17.4290 14.9683 -8.0522
11.9359 8.4098 2.8637 0.1621 4.2653 2.6990 1.2433 -1.9101 -2.5608 -4.4372 -0.7370 5.0345 2.4512 -1.2451 -4.6924 -2.0267 0.3932 -0.7445 -1.8229 -19.2813
-1.3202 3.8184 7.4609 11.6391 16.2849 25.4929 15.8707 1.4126 12.3759 21.2527 8.1587 -3.8943 -14.7860 -10.6930 -17.9239 -16.3824 -1.7644 -13.0054 -19.3451 -24.6522
9.8443 9.9627 12.5201 13.7261 10.3992 6.6290 2.9281 -0.7644 -3.9695 -5.3737 -8.3704 -7.5382 -1.7207 5.7599 1.9410 -0.8146 0.5436 -5.6632 -12.2155 -27.8236
6.4290 4.7082 3.9317 3.1702 -1.6353 -3.6078 -6.3150 -9.1986 -10.3233 -9.8065 -5.8063 -1.3404 -0.7673 -2.2448 -1.2797 7.1795 3.2561 15.5273 14.8629 -6.7401
23.9506 22.1558 17.7456 14.4350 8.3329 3.1023 4.3134 8.6024 3.8015 -3.9642 -10.7800 -9.6229 -10.8860 -10.6376 -8.0083 4.7524 -6.4851 -13.7226 -12.4871 -24.5980
9.5760 11.4366 12.9012 14.4846 16.8425 19.5473 19.7042 15.2736 12.0272 11.0446 7.4677 1.1314 -9.0848 -18.3215 -23.8214 -23.1710 -19.9932 -10.2715 -17.3599 -29.4137
-3.4431 -3.1613 -1.9102 -0.6935 1.3870 1.2966 -1.0892 -2.4642 -3.0407 -4.4927 -5.4209 -4.2773 -0.5358 0.4090 1.2794 5.8990 14.3402 3.7638 11.1512 -8.9972
15.2464 18.8014 25.3166 19.5775 11.0313 6.5896 5.6381 2.9552 5.1185 13.2540 13.6736 8.5584 -8.3365 -15.9401 -20.3756 -21.2859 -21.2275 -19.3217 -15.1325 -24.1407
3.1035 6.1792 5.0462 3.5926 7.0741 6.4046 9.9419 7.7684 4.2113 3.6277 6.5092 5.5900 -1.7178 -6.4492 -7.8871 -6.9582 -5.1379 -8.3058 -10.5436 -22.0490
-0.7280 0.5704 3.9717 5.9469 6.0780 4.0770 1.2426 -1.3458 -3.2314 -4.6819 -6.2378 -5.0198 -1.2080 10.5808 2.6382 3.7712 3.8446 -1.7555 -1.1558 -17.3572
5.3326 5.4267 9.8240 16.2001 13.6887 6.9510 1.1917 -1.6723 -2.5788 -2.7648 2.6931 5.4843 -4.2095 -9.6143 -6.2919 3.6211 -3.8754 -6.5263 -5.2823 -27.5977
2.5771 3.4727 5.4467 8.8349 9.8870 12.1341 12.0826 7.7444 4.5255 0.7889 -2.0382 -4.7604 -5.7542 -4.6241 -2.4718 -4.0958 -6.2797 -4.6267 -9.5398 -23.3031
14.7846 16.0256 18.4400 18.7731 12.4129 9.2087 4.9463 5.2837 7.9434 9.1983 5.6775 1.0431 -7.1678 -12.3799 -13.9635 -9.4290 -13.5075 -18.2553 -21.2672 -27.7670
14.0860 12.6160 17.7362 22.8480 13.2766 7.4189 5.7487 1.8704 2.3287 6.7312 16.7040 13.9396 0.1199 -14.2720 -18.2397 -22.3862 -24.8172 -19.6941 -10.4326 -25.5823
1.2702 -1.2740 -3.7100 -0.5628 -4.5219 -4.4580 -7.7100 -8.3547 -7.0524 -3.3805 -3.0927 1.9780 6.7217 16.8392 12.2288 6.1018 4.3647 3.7046 7.0648 -16.1569
-1.5691 -0.6625 0.8145 2.7114 4.5683 6.3808 5.3169 3.3697 3.7409 -1.1329 1.3502 1.4333 7.1092 8.0819 7.4140 -0.3489 -3.5222 -5.2023 -8.9373 -30.9159
8.8791 11.5486 17.4354 21.9590 18.7721 13.0614 12.3597 15.8383 7.9901 -4.7504 -11.1404 -17.0402 -20.1418 -20.5768 -16.8543 -10.2710 3.5082 1.5897 -6.0317 -26.1349
1.4924 2.3041 3.6995 3.9735 2.9478 1.4182 -0.1153 -0.7081 -1.6935 -4.7155 -3.8966 -1.0552 4.3924 3.5582 4.7903 3.4573 4.4498 3.7588 -4.9783 -23.0800
19.7104 23.5312 26.4663 21.1276 13.4352 11.0142 11.5216 12.6431 11.6620 1.8352 -2.6313 -2.1531 -10.9044 -16.4683 -19.1821 -21.4207 -21.6631 -20.6795 -14.5440 -23.3003
-7.3825 -5.1236 -2.0803 -0.3985 -2.1515 -3.3191 -2.5398 -3.6553 -4.6673 0.2450 -1.1380 0.4163 -5.0235 -3.1123 1.6781 0.5456 9.2542 19.9831 16.2303 -7.7611
2.5108 2.1845 2.6268 3.2213 4.7277 4.9151 4.4068 2.5115 -1.2667 -1.0470 -0.5840 3.1980 11.3786 3.1343 -1.5396 -0.7790 -4.2909 -5.9553 -4.0558 -25.2973
1.3099 3.8149 5.9305 6.0290 6.2561 6.5634 6.5483 2.2558 2.8164 5.8479 6.7553 3.8567 2.7371 -0.0626 -3.8527 -5.1436 -5.5124 -7.3236 -9.2045 -29.6219
6.9414 7.8896 11.9174 19.4391 22.8159 17.5130 12.8967 11.7403 13.3801 0.6255 -8.6365 -13.1338 -15.0777 -14.1269 -8.2615 -12.9862 -16.1846 -10.2908 -1.8314 -24.6297
13.6675 18.7539 23.7644 23.5665 14.5584 8.2788 5.9566 3.8037 5.8231 9.3954 3.8096 -3.7071 -3.0809 -2.7965 -15.3910 -22.2338 -22.7083 -19.7578 -17.2327 -24.4698
6.8878 4.6215 4.0830 1.7534 6.3161 9.3030 9.1793 1.8539 -3.8953 -6.2684 -7.2830 -6.1167 0.8013 5.3564 -0.9241 -2.6976 1.7576 -1.1627 -4.9125 -18.6528
11.5366 9.1379 9.1023 13.3107 15.2931 8.4262 2.0019 -1.8545 -5.3470 -10.4980 -13.1650 -8.7617 -2.8037 6.5213 -2.9746 -1.1653 2.8950 -3.9002 -0.4074 -27.3478
8.1149 5.2054 4.7193 10.9119 14.2393 9.7159 2.7743 0.0628 -0.9042 2.5046 6.2675 4.5297 -1.7121 -2.7212 -6.4591 -8.2032 -12.1525 -9.7960 -4.5542 -22.5432
10.4270 10.1489 7.8411 6.9092 5.2675 3.1553 3.1860 0.3063 0.4719 -0.8710 -0.6868 -1.1505 -4.6137 -2.9984 -2.9661 -2.8540 -3.0302 -2.2057 -5.9823 -20.3547
16.5991 18.8180 20.4139 16.0812 15.2582 13.6000 9.7730 4.8200 7.2670 0.5444 -5.1929 -8.9752 -12.2178 -15.2451 -9.0857 -9.6324 -11.9042 -7.0554 -15.8485 -28.0175
6.9984 7.5807 9.7172 14.2935 21.1422 18.8026 13.0729 13.6068 15.6061 5.7873 -4.4176 -10.6630 -14.9625 -15.2760 -12.1485 -4.9859 -13.8661 -15.0801 -8.9505 -26.2577
4.8529 5.9107 5.9519 3.1046 -0.7986 -3.8000 -3.3218 -6.5949 -9.5964 -7.6925 -7.0336 -3.5031 2.4411 -0.1901 9.1699 13.0532 0.4243 10.9470 3.0406 -16.3654
2.3975 0.4924 3.8005 6.1460 0.9043 2.1381 -0.0106 2.9239 -11.7677 -3.8359 -3.4925 0.8716 3.4740 -2.8287 -3.8786 1.2858 6.8931 -2.1701 3.3894 -6.7326
-3.5428 -1.3900 0.9285 2.4806 2.9675 0.7980 0.9612 0.2854 -2.0562 -1.3222 -1.9025 -0.0059 8.6474 4.6327 1.6964 0.3984 0.9512 1.7069 1.4812 -17.7159
17.4798 18.9995 21.9699 20.6967 14.4015 9.2408 9.2963 4.6834 -0.5765 -2.0466 -4.6870 -8.1340 -10.8400 -6.9387 -4.9129 -2.3346 -9.5282 -16.6374 -22.8620 -27.2700
30.2051 29.0816 22.7010 15.9702 13.2347 12.3034 7.9736 1.7110 -2.9050 -5.8220 -9.0457 -11.4933 -10.9824 -10.7128 -9.7198 -11.4470 -12.1083 -14.3720 -14.3489 -20.2236
4.3667 5.6948 7.6382 9.1345 7.9965 5.9946 4.8983 4.5838 1.3099 -1.1182 -2.4032 -2.5986 -0.3123 -3.8248 -3.3874 -4.6492 -2.5381 -4.1010 -4.4278 -22.2567
13.3799 15.9919 18.2801 18.5738 14.5051 15.0610 12.6361 1.8684 -4.4789 -7.5763 -7.3687 -5.7285 -8.7693 -10.0970 -1.0795 0.7696 -6.5956 -14.5402 -16.2583 -28.5735
1.2989 -0.2985 -0.1264 2.2528 6.1919 9.0850 11.5888 9.6084 6.4565 4.6999 3.8291 -3.1433 -2.0178 -5.4377 -3.5892 -2.4088 -3.4525 -6.5279 -6.8848 -21.1245
6.6990 6.9952 6.9900 10.6461 18.1760 23.4925 20.7738 19.3068 14.5258 4.1679 -5.0313 -10.5967 -15.7569 -18.7535 -19.3572 -18.4953 -9.1098 -8.3084 -3.5080 -22.8561
0.3614 -3.0919 -2.2049 0.2924 3.5194 12.3203 10.5339 6.5081 2.9888 3.7587 9.6208 6.5139 -3.3458 -8.5883 -8.7468 -4.7300 1.1707 -5.5824 -3.0982 -18.2001
3.6833 5.1669 7.0034 5.1138 6.2451 5.1324 2.9024 -0.2756 0.6913 0.7688 2.7471 -3.0081 -4.2841 -1.6790 0.6913 -2.2915 -1.1739 -2.5591 -2.7007 -22.1738
11.4726 11.0663 10.8078 10.4446 10.6033 12.3965 13.0646 7.6243 1.8855 -2.1733 -3.8981 -0.7658 2.9887 -2.4982 -10.2150 -14.2533 -12.1696 -5.4330 -8.3400 -32.6080
-6.7179 -4.6131 -3.1636 0.0876 0.6888 1.0614 0.5541 -3.5030 -3.5922 -2.2597 -0.8136 6.0096 11.8925 2.9252 -1.1450 -0.4619 -0.0294 2.9522 6.4894 -6.3616
5.3482 3.7310 5.0957 3.1029 1.6780 3.1184 0.5161 -3.5018 -4.5034 -6.3519 -7.8639 -5.6580 -5.1767 -2.3928 0.1325 3.3098 7.8210 11.9881 4.4190 -14.8118
8.2697 5.8835 6.0215 10.4427 12.0342 7.5709 3.5443 -1.0166 -4.1313 -6.5619 -5.0660 -0.8575 7.1102 -0.6052 -4.0956 0.6756 0.8926 -4.2551 -6.4788 -29.3772
2.0192 3.9566 4.9448 8.0890 14.6263 15.3545 12.2775 10.3302 7.2993 12.5826 7.7803 -2.3944 -7.4949 -10.2984 -9.7837 -7.3581 -7.2692 -6.1954 -16.7366 -31.7295
12.8428 15.9200 16.2497 11.8540 3.8000 -1.0057 -2.5059 -6.5320 -8.3900 -9.9165 -9.6596 -6.0113 1.0447 13.8469 7.3566 -4.1906 -11.0801 -8.0052 3.2361 -18.8537
17.2020 18.6360 23.3502 20.5862 15.5823 12.7495 6.4445 -6.6661 -9.1710 -15.5663 -21.8272 -18.4838 -16.7082 -14.2582 2.8891 3.6115 -0.4823 -0.0577 2.5754 -20.4057
11.2405 16.2045 19.5245 19.0279 10.8160 4.2621 0.0074 -4.8018 -7.7494 -9.5065 -10.8518 -10.4718 -6.2617 1.5892 9.5055 4.0459 -4.2300 -9.8946 -9.4119 -23.0441
21.5981 16.6548 9.2131 4.2901 -2.7752 -6.0814 -5.7172 -6.8518 -5.3057 -3.6255 1.9348 7.8994 -1.3260 -8.0365 -10.6481 -6.5275 -3.0468 3.5257 5.6627 -10.8371
2.3529 1.9098 1.1705 -1.0129 0.2322 -2.1724 -2.7849 -0.3004 1.1108 2.9625 0.3261 -2.0946 1.0272 3.4696 1.9753 1.1513 2.4885 2.1442 0.7739 -14.7298
-1.7003 -2.4848 -2.4346 4.7038 24.9669 27.0962 7.9463 4.7152 0.1920 -0.8991 -0.8489 9.9068 -2.4800 -9.4907 -11.9321 -1.8570 -6.2441 -11.0862 -11.2891 -16.7804
14.9206 17.9220 23.4494 28.4771 23.9338 22.5858 21.7793 9.3991 -3.6346 -10.2702 -14.3748 -16.3264 -19.3026 -18.4585 -17.3134 -12.2710 -10.5930 -10.9994 -7.9141 -21.0092
10.8472 9.9985 8.1012 5.6373 0.7372 0.0745 -0.8638 -1.7933 -2.9142 -3.0150 -2.2427 -0.7782 -2.5201 -6.2197 -5.1933 0.2777 -5.0155 0.2927 4.1108 -9.5213
11.2774 17.5024 20.7927 14.9512 8.8893 5.3831 1.1126 -0.5407 -1.8226 -0.7548 3.8991 14.1917 11.4189 -2.2812 -13.1711 -17.2396 -15.8893 -13.7806 -15.9376 -28.0009
-1.8142 -1.3801 -0.2831 1.3820 1.7722 1.4623 -1.2023 -3.2113 -5.2345 -6.7523 -4.9565 -2.8637 4.0779 -2.6764 0.8821 14.4958 8.5614 4.5439 7.9060 -14.7091
10.5077 13.8832 19.5676 20.8530 17.7078 12.7109 11.5269 8.0218 2.2318 -5.7244 -10.1683 -12.8120 -14.9230 -10.7023 -2.0109 -8.3963 -10.2008 -5.4032 -10.7793 -25.8902
-0.2509 1.3469 0.6421 2.6377 6.0659 4.3721 5.3520 3.9824 -1.7069 -2.0895 -5.2191 -1.5370 -3.3737 1.3384 4.0383 10.2321 1.6548 -3.2413 -5.1470 -19.0973
6.4953 9.3365 14.1057 20.6271 16.1168 7.3580 1.4929 -2.7587 -4.0681 -3.9748 1.3672 8.9105 -0.9200 -5.3133 0.3345 -6.1299 -12.7503 -9.3229 -13.4612 -27.4454
0.6201 2.4328 4.9760 9.2545 15.4025 12.2971 5.7680 5.0077 4.0499 4.2155 9.7060 7.7493 5.8274 0.3852 -5.9984 -11.5236 -7.3050 -10.3504 -20.7971 -31.7176
-3.7294 -1.4413 -3.7524 -4.5904 -3.2743 0.7360 -3.2763 -4.8007 -0.6213 4.9030 10.4614 11.0474 17.3494 -0.7763 5.4732 0.7769 1.2498 -0.7639 -2.1070 -22.8638
6.7163 9.2255 12.3187 17.6924 17.6404 11.8940 7.0991 4.2645 4.3021 9.9874 5.8382 -3.4579 -6.9519 -4.8090 -2.1538 -14.0697 -18.7474 -17.3320 -11.2745 -28.1824
14.7156 19.4663 14.7897 6.5422 1.1728 -2.3524 -4.9286 -7.8168 -8.8525 -9.4747 -10.7274 -8.5129 -4.4565 7.8312 0.0283 4.0451 1.6338 -1.3894 4.4306 -16.1441
19.0680 22.0875 24.6110 22.0341 17.3706 15.8785 14.1658 11.9508 4.4308 -1.1373 -6.4223 -10.3244 -11.8572 -13.5064 -14.4779 -15.1004 -15.5216 -16.8251 -22.0101 -24.4145
9.0336 19.0176 24.4867 24.6758 18.9461 11.7838 7.6427 4.7750 1.2864 0.4513 1.8155 -1.2592 -9.2086 -14.2929 -15.7555 -13.6408 -7.7748 -14.5157 -21.5902 -25.8770
1.4827 0.2805 -0.3810 1.4732 8.2340 8.1707 10.0600 8.3087 4.1212 2.7249 3.5821 7.9718 3.7426 -2.6511 -5.3909 -4.4519 -4.5293 -6.7232 -8.9602 -27.0648
10.5705 10.6700 11.7791 12.1925 10.0236 6.6964 5.1163 2.6148 4.7648 2.5521 -3.9125 -7.4628 -9.6721 -9.3307 -9.9466 -8.0895 1.1968 -3.8200 -3.4846 -22.4580
7.5905 8.3863 11.5587 16.2565 22.0088 23.0422 17.8049 13.1018 17.1694 13.5769 -0.2381 -1.8062 1.5806 -10.3901 -20.8106 -24.7914 -25.0524 -24.3552 -19.3769 -25.2554
7.3275 11.6160 16.6781 15.5131 8.1538 4.8147 -1.7134 -2.9599 -6.5688 -7.0695 -0.9248 5.3367 -4.5080 -7.1758 -3.4270 -3.5021 -8.7907 -5.2842 1.7479 -19.2635
8.6994 13.7488 20.2706 15.6056 8.0300 2.7906 -2.4915 -6.3762 -9.0577 -10.4892 -11.7811 -10.7422 -7.7494 -0.3422 10.0858 3.8928 3.9680 -2.0796 -2.0561 -23.9265
-1.8066 -1.3696 1.0493 1.3711 1.9691 1.1999 -1.8646 -1.9643 -1.7749 -1.3390 -3.3717 3.1526 1.2109 0.7990 0.4966 2.5531 3.3704 2.3429 4.9229 -10.9469
4.0689 7.4175 12.6940 18.0600 16.5869 9.3259 4.5282 2.8636 1.6428 4.7328 12.4121 9.1212 6.2302 0.0152 -12.5596 -17.7355 -18.6999 -12.7970 -17.6503 -30.2571
0.8292 2.6495 1.8804 4.1439 5.6667 5.7021 4.9475 6.8868 6.7950 8.0289 10.5666 8.6874 1.8534 -2.2297 -6.3646 -6.7900 -8.1505 -9.3082 -10.0423 -25.7522
7.1022 3.8236 1.8946 4.4230 4.7840 4.6315 5.8219 2.7914 1.6501 0.4344 2.2205 4.0071 0.0326 -2.6285 -2.5436 -3.5874 -3.6688 -4.2155 -7.0087 -19.9643
0.1242 12.2019 4.3084 4.2478 1.9093 0.6288 1.1102 1.5269 2.2918 5.1362 2.1955 -5.7687 1.1936 -1.4469 0.2971 -4.6605 0.8522 1.2017 -3.9848 -23.3647
-5.1159 -1.2775 2.5260 4.1265 3.4097 -1.7194 -0.8844 -1.4795 -5.4958 -6.8537 -1.5398 0.9661 -2.3240 -4.8943 8.2925 3.4432 -1.7853 6.3100 13.4410 -9.1454
3.9898 4.3777 4.2357 3.0453 3.7447 2.5019 1.1011 -0.4780 -2.4003 -0.6497 0.8291 0.2117 0.0985 -0.2133 0.3830 -1.7850 -1.0322 -2.1328 -1.6069 -14.2203
11.3622 14.7416 16.8859 15.0883 9.9488 8.7692 4.3995 -2.0242 -2.6878 -1.0092 0.7764 -2.2298 -4.0840 -8.1165 -6.2525 -5.2064 -7.0092 -6.7164 -9.2528 -27.3833
3.6579 2.8996 4.0461 8.3701 17.0082 23.3625 16.2578 7.1955 17.3887 6.3999 -4.2883 -9.9015 -12.7556 -12.3388 -5.4680 -10.3674 -10.9476 -10.1432 -6.0175 -24.3585
7.5312 5.8939 4.3265 4.0014 2.9087 1.6542 2.9601 3.9087 1.3700 -2.9778 -0.8059 -0.8752 -0.9920 -0.8125 -0.8336 -0.0306 -2.6451 -2.7999 -4.2986 -17.4834
15.3876 20.0855 22.6771 20.6277 15.1509 8.8202 3.6289 -2.1904 -8.5688 -13.1818 -15.2549 -15.0083 -12.7233 -8.7307 0.5974 4.3829 -2.2770 -0.0304 -7.8902 -25.5026
23.6589 23.2539 20.3520 15.1761 11.4144 5.8059 5.4712 1.3160 0.0827 -2.4308 -7.0613 -6.1765 -1.8534 5.6004 -1.4387 -15.4564 -17.3870 -18.8680 -17.3832 -24.0763
11.6709 14.1123 21.1753 25.8068 20.7082 14.0630 14.1588 17.9220 14.6153 4.8179 3.3194 0.4690 -11.4997 -19.1991 -21.5666 -21.4213 -21.1902 -22.3547 -22.1566 -23.4508
4.6799 3.0606 1.6539 6.2007 -2.0201 3.0954 0.5569 3.2707 1.3312 0.0725 1.8286 -5.9667 2.6570 -0.0978 -1.2174 -2.2597 0.2234 1.4765 -4.2077 -14.3379
9.3104 11.8578 14.9832 13.1906 8.5578 4.2616 -0.4942 -3.0677 -3.2171 -5.1322 -1.7298 6.6384 -0.8475 -8.0712 -9.5863 -5.8386 2.6610 -8.3104 -6.0285 -19.1373
2.2896 3.8587 4.9224 8.6357 13.9236 17.8222 15.7427 11.5211 7.5272 9.1679 9.7247 5.7451 0.5275 0.3504 -6.2281 -12.9212 -14.0843 -20.5964 -26.6432 -31.2855
18.9039 18.0327 13.6297 9.7561 7.4319 5.3744 2.9646 1.7415 0.6716 0.6859 2.7446 0.5342 -4.3187 -6.1877 -6.9311 -9.8734 -11.9041 -9.1281 -8.9591 -25.1690
6.4513 6.7843 9.4438 12.9549 16.4801 14.9093 8.2954 1.6877 -2.5193 -4.4922 -6.7348 -6.9853 -4.6783 0.7181 1.0483 -5.1128 -1.1161 -7.5305 -12.3980 -27.2058

View File

@@ -0,0 +1,513 @@
20 512
-1.2668 -1.2477 -0.0681 3.8419 -0.0693 -1.7919 -1.5943 0.8402 0.1550 -3.1526 -3.0204 0.7337 -0.2603 1.6590 0.0230 5.5893 -2.4959 1.9604 -0.6348 0.7999
2.6673 1.4923 1.1408 -0.7478 -1.0755 -1.3421 -0.4884 0.2535 0.2951 1.5088 1.9447 -2.6620 2.3751 1.5298 4.1357 -6.5630 -2.1766 -2.7535 -0.7706 1.2362
-0.6415 -0.4348 -1.2178 -0.9870 -1.1057 -2.1421 -2.3594 -0.4977 -4.1484 -4.7120 5.5425 3.0695 3.6610 2.9729 2.4379 -1.6136 -1.3052 2.1342 1.9164 -0.5692
1.5930 -1.1175 -1.2476 1.6203 2.5315 2.3427 -0.5223 -3.1063 -2.1739 -1.4774 -2.6108 -3.5842 -0.3828 -0.1511 0.8929 2.5717 -1.7657 1.8954 6.0193 -1.3272
-0.2102 -0.3681 -1.2724 -1.1520 -0.3715 -0.5633 -2.5238 -1.7680 4.7356 5.6452 0.8620 0.8750 -0.8932 -1.5918 -1.4047 -0.0720 -0.6080 -0.7876 1.3972 0.0717
5.1178 -1.5391 -4.2881 -1.9745 1.3515 2.4014 0.9329 3.4647 -2.4062 -0.4224 2.8708 -1.6053 -3.1492 -2.6783 -2.6937 -4.4645 1.8599 -0.5456 3.8910 3.8770
-1.7119 -1.0101 -0.5002 -1.7849 -0.4884 0.2279 -0.8335 -1.0083 -1.2819 0.1129 -1.3674 -1.3338 0.9290 3.0765 2.6339 3.5627 -2.2713 0.6565 -1.2099 3.6022
-1.5938 -1.3264 0.9856 2.8765 2.3700 1.2528 1.2586 -1.2453 -1.3974 -1.4988 -1.6309 -1.2183 -0.1625 -0.8690 0.0030 -2.0081 1.3580 2.9585 3.3396 -3.4520
-1.3680 -0.6304 -2.5755 -1.2397 4.9487 2.7251 1.4675 -0.1832 -0.3932 1.4723 1.7410 0.6216 -1.0849 -0.7112 -0.3751 -1.7539 0.1222 1.9858 -0.5248 -4.2444
-1.2786 -0.2384 0.6718 2.9763 -1.6959 6.4607 -3.9459 -2.0560 -2.7306 -0.2583 0.0389 -3.6271 -4.0721 0.8260 0.8112 2.8769 2.2400 0.5444 0.3571 2.0995
2.5196 2.3359 1.6620 0.6250 -1.0528 -0.9133 1.8668 1.2853 1.4368 1.4676 1.1301 1.3664 1.1076 -3.2853 -0.4530 0.4467 -4.7302 -3.8149 -3.9866 0.9865
0.1738 1.2940 1.3514 -0.3684 -0.7078 -0.2329 1.3467 -1.0678 -0.0262 0.2448 -0.8418 -0.3910 2.7415 2.9948 -4.5965 -0.1192 0.2496 0.4684 0.0669 -2.5805
0.2482 -1.3236 -1.4810 0.9433 3.4287 2.2233 8.9344 -1.1138 0.4585 -3.7470 3.0416 -2.7394 2.2880 1.6598 -3.6439 0.0633 -2.7363 -1.2617 -3.1924 -2.0500
1.4672 -1.3248 -0.5511 1.4512 -0.4710 -1.2381 2.9453 -2.3244 2.3249 -2.1969 0.9414 -1.9926 0.5254 0.0792 -3.2076 -2.4140 3.5291 3.5738 -0.0613 -1.0556
1.5560 0.0091 0.0770 2.8542 -1.4594 -2.0102 0.5440 2.8119 -0.2925 -0.7111 0.9589 -1.6923 -1.8606 1.1040 -1.6733 -0.0895 3.6894 2.7628 -6.9922 0.4138
-1.5539 0.6820 1.4458 0.4297 -0.4115 -1.3266 0.5024 -0.6975 -0.3820 1.2840 0.9597 -1.0561 2.2198 0.1292 1.4343 3.0313 -3.9845 0.6776 0.3380 -3.7217
-2.0283 -1.5216 1.0103 4.8788 3.7028 4.4000 -0.3076 2.4853 2.2296 -1.5213 0.4360 -5.9903 -2.6578 -2.3985 -2.0127 1.3737 -3.7950 2.3105 -0.2099 -0.3839
-1.7339 -0.9861 -0.2078 -1.2579 2.5808 -0.9255 3.2388 1.0999 3.6754 4.6424 1.9111 1.4716 2.7531 -0.2725 -0.3573 -0.5392 -4.2109 -6.4662 -2.3713 -2.0442
0.7177 1.4094 0.7205 6.8683 1.7836 7.1562 -2.9368 3.4036 -0.6064 2.3377 2.8714 -7.0408 -9.7129 4.1278 -3.4444 -5.9919 5.5073 -0.8996 -7.5142 1.2434
0.8042 1.5886 0.8754 -0.4378 0.2336 0.0424 -0.1245 0.0847 0.6402 2.6508 1.6375 -3.2393 -2.2823 -2.1435 -1.5628 0.4271 2.2571 2.5048 -1.5933 -2.3629
0.6292 1.1956 0.8357 -0.8634 -0.1796 1.8589 0.6940 2.8309 2.5569 -0.4253 0.2913 0.7772 1.4180 3.4210 -1.9468 4.2236 -7.3361 -3.7802 -3.5980 -2.6029
1.9034 -0.7126 -2.3343 0.2344 3.6545 3.9405 3.0203 0.1937 -1.1906 -1.9012 -0.6667 -1.2590 -1.1021 -2.6650 0.1400 -1.4183 -1.2342 0.0547 0.1519 1.1906
-3.6125 -2.2485 -1.0820 -1.9912 -1.1521 -2.2527 -2.5383 0.9320 1.1572 2.0230 1.6579 1.3763 6.4432 2.1652 -2.0259 1.9724 3.2824 -0.4615 -1.1909 -2.4539
-1.1530 -2.1790 -0.7355 -2.0941 0.6246 1.7502 -3.3266 -3.4374 -2.6486 -2.2938 0.9286 1.3396 -2.1323 0.2739 1.2664 4.4111 1.3864 3.9050 2.8286 1.2861
-1.9752 0.7423 2.4137 1.8854 -1.1393 -2.5802 -2.9355 -3.6740 -1.8244 0.3099 6.1403 4.6215 -2.0636 -3.7172 -0.9400 1.4240 -0.3669 2.0205 0.6217 1.0369
-0.1561 3.9621 -1.3649 0.2912 3.5366 0.8537 -0.9376 -3.7333 -6.5447 -1.2107 3.3183 2.5758 1.9693 -4.8690 0.6212 0.0985 1.5746 0.2433 -2.6173 2.3890
0.6849 -1.1521 -2.0382 -0.8953 0.8771 1.1996 -0.9704 -1.3679 -1.1460 0.0582 0.2636 -1.9785 0.5235 1.6427 0.6362 0.7411 5.6052 -0.3533 0.6579 -2.9883
0.5989 -3.9928 -2.1937 3.8742 2.0056 2.3132 -0.4478 -2.0855 -4.3607 -2.1260 5.3544 1.9827 5.3407 -0.8346 -2.4624 1.1729 -4.3825 0.7623 -1.9429 1.4240
-3.3103 0.0394 2.0113 2.6733 1.2484 -0.2186 0.1156 -0.4856 2.4501 0.8179 -1.1164 -2.1952 -0.9719 2.0728 0.4002 1.1891 1.7518 -1.2571 -3.3136 -1.9012
1.8860 6.9767 2.4311 -2.0414 3.9100 5.5378 -1.7478 -0.8304 2.8523 -1.4075 0.1309 1.8232 -2.8868 -7.5003 -3.4867 -3.2756 -2.8584 6.2611 -7.4682 1.6940
3.5074 1.3392 1.0862 2.9814 0.8158 -2.6160 -2.3837 -0.8255 -0.1595 2.0087 -2.8876 -2.4727 -1.3574 -1.2864 -1.5711 -1.0772 0.4648 2.7262 2.1044 -0.3970
-0.1430 -0.9788 -2.1195 -0.7774 4.0804 3.7123 1.5082 0.2869 -2.5968 -2.0127 1.5147 3.7486 3.2447 0.6959 0.3308 -2.4516 -3.4598 -4.1669 -0.6870 0.2709
0.0724 0.3235 -1.9536 -2.7454 -3.3392 -1.9023 -1.0150 0.7511 -0.0539 -2.8386 5.2737 5.1053 1.4372 1.4046 1.4504 2.4912 -2.6526 -0.6188 -0.6530 -0.5369
-6.9550 1.3233 4.3542 2.9502 0.9929 -0.1186 -0.8657 -2.3452 3.5061 2.8348 -4.1741 -4.1264 4.6970 3.0117 -0.2849 -8.0081 3.4452 0.7819 -2.7443 1.7251
-4.0878 -0.8849 -4.7521 5.0067 -3.3510 -4.8233 -6.6328 4.8752 -0.7474 3.8614 2.6271 0.9119 1.0371 2.2968 4.3160 -3.7042 0.9900 0.4960 4.7952 -2.2300
0.5901 2.0654 1.7824 -0.5570 0.4874 2.7659 0.8232 -0.1306 -0.6795 -1.3143 -1.2480 0.9969 2.0563 0.1625 0.7346 0.0223 -1.6836 -2.9087 -4.1058 0.1406
-0.5074 -0.8373 -0.8579 -0.0460 -0.0854 -1.4221 -0.6935 2.5302 2.2014 2.2225 0.5896 1.2715 -0.7624 -2.7997 -5.3296 4.0372 3.2176 -1.4146 -1.3705 0.0565
-3.8190 -1.1051 1.5169 -0.5542 -1.5591 0.2921 -2.1144 1.6664 2.8275 0.7745 2.6977 4.4021 -0.2010 0.0685 1.3158 -0.8045 -5.9834 1.7874 -2.1592 0.9509
0.6749 -0.0635 0.3751 0.6561 0.4718 -2.3144 -4.9191 -3.0907 0.5499 -0.3498 1.2370 2.6699 1.5353 1.6809 1.2117 -1.3733 0.0977 1.3610 0.0102 -0.4207
0.8139 -2.9454 -1.1694 1.1826 3.5742 4.3331 1.4143 1.7017 -1.2428 4.8459 -4.4642 -0.0684 -1.7273 -0.1932 -2.6041 -1.4272 0.2873 -0.9676 -0.1422 -1.2013
-1.8690 1.2475 -2.8884 -0.3842 -0.3588 2.7759 -2.0060 -2.2023 -2.6599 -2.5791 -3.1221 3.2645 1.8131 2.8630 6.3144 -4.2619 0.7589 -0.7608 4.8657 -0.8104
2.3449 0.3057 -2.2411 -1.3084 0.6572 -0.3790 0.2674 0.5337 0.4996 0.8832 2.3616 3.9339 4.7846 -2.7473 -0.5167 -0.0864 0.9288 -4.3018 -4.0903 -1.8294
2.9658 2.7467 -1.9276 -4.0009 -0.7257 -0.6616 -2.0255 -1.2898 0.3022 1.5810 3.0521 2.5790 -3.2369 -0.4791 0.4455 0.1138 1.1032 0.9003 -1.5708 0.1285
5.2204 -2.8190 0.8203 0.5992 -1.3205 -2.1549 5.0256 -1.6050 0.5506 -2.8092 -0.2831 -1.6376 -1.8233 -0.0177 2.5319 2.0586 0.9166 -1.5417 -0.3071 -1.4039
0.1090 -0.1359 -0.4821 -0.5060 -1.1903 -0.1205 1.3010 0.0989 0.2280 1.3298 1.4648 0.7280 0.0076 -1.4837 -0.1633 1.2525 0.9437 -0.0019 -3.9783 0.5988
-4.0941 -3.4220 0.4966 -5.4678 6.0636 1.1749 -0.1830 3.3518 3.5480 1.4243 2.5791 -5.9065 -1.8723 -1.6703 1.3990 6.8845 1.8643 -1.2344 -3.7475 -1.1880
3.5819 1.2282 -0.2187 -0.8194 -0.0683 0.6784 0.9405 -0.1871 -1.0635 -2.3089 -1.7476 -2.3377 -1.8039 -0.2123 0.7402 0.8810 0.7063 -3.8015 4.2698 1.5426
-0.7508 -2.5319 -1.4606 1.0638 -3.8848 1.2060 2.6878 -1.2315 -0.1629 -2.2730 -3.3361 -1.6208 1.9855 3.4308 -0.2120 -1.4559 -0.3738 2.3568 2.3629 4.2004
1.5564 1.6137 1.4225 1.6668 1.3266 0.0460 0.1831 -0.3664 -1.4348 2.5690 2.2918 1.6955 1.6680 -1.3807 -1.0884 -1.0980 -0.5844 -1.0295 -3.6955 -5.3616
1.7128 -1.8066 -4.0653 -3.8214 -0.9531 3.4797 0.7961 -2.4955 -2.7851 0.0025 0.7872 1.0652 1.5456 -0.4352 1.9173 4.6258 0.3691 -0.1501 -0.2351 0.4458
-1.6777 -3.1299 -1.6947 -1.1535 -2.1999 -3.2226 -0.9846 -2.1533 -0.6467 2.0938 2.1307 2.9065 1.5181 3.0875 0.0486 -0.2157 1.3461 0.7741 2.7320 0.4413
-2.0098 -0.0651 -1.1313 -3.1454 -1.8173 0.4664 2.3278 3.1806 -3.0726 -1.5969 3.6994 0.6478 -0.6833 1.0635 1.1405 6.7102 -4.8934 -4.2029 3.4752 -0.0933
3.0911 3.1320 3.6764 1.2247 2.0977 -0.4399 -3.9470 1.4276 -0.2596 0.5511 -6.4999 -0.9385 3.2215 1.7397 -2.0786 -2.6160 -3.0150 -2.0586 1.9218 -0.2304
0.5955 -0.9572 -3.8115 -1.2133 0.9600 3.0247 8.6360 5.7851 6.1244 0.7094 -2.4410 -1.1712 -1.7901 -3.5399 -2.8318 -2.5468 -4.9596 -0.6022 0.6141 -0.5845
12.5835 1.8094 0.1352 1.7718 0.9427 -1.3690 7.1277 0.0421 -2.3404 -4.6650 1.4653 -2.4880 2.6056 -10.3828 -8.1067 4.1108 -1.2481 -1.8330 -2.7827 2.6214
2.9658 -0.2617 0.2806 -0.2164 2.8550 1.9755 -3.5301 -1.2350 0.9311 0.8713 -2.2265 -0.6005 2.6386 2.7666 -2.3603 -2.5163 1.6854 1.0161 -7.8883 2.8489
-0.9445 0.6006 -1.3214 -5.0651 -2.1702 -0.0289 0.1003 2.2883 0.0424 3.4686 2.0494 1.6327 -1.6152 0.1220 -2.8666 -2.2261 4.9579 -2.2581 -2.7323 5.9663
-1.3666 -0.2364 -0.3999 -0.9988 -2.0227 -0.0610 -0.5411 -2.2113 -0.2283 -1.7150 1.0239 4.2760 1.9603 -3.0526 -2.5894 0.8611 5.2528 3.4951 -2.2336 0.7875
4.7609 3.7023 0.7955 -3.1291 -1.3671 0.8798 -0.9947 0.2668 0.5762 -0.9479 -4.5541 -0.6922 0.0699 -5.8412 4.2302 5.0652 1.3544 -2.4661 -0.6224 -1.0865
-2.6815 -0.9958 1.6109 -1.7618 -2.5561 1.0357 -1.5863 -2.2811 3.4491 1.1806 -0.2855 -0.1380 -0.0202 5.6861 0.8289 -1.0913 0.5986 -1.1493 3.2455 -3.0884
1.7353 3.1908 5.0898 -0.4602 0.0751 -2.1427 -5.0910 -3.1667 -3.3291 1.9531 0.4802 -4.8101 2.2518 2.4380 0.6439 -7.3548 -0.0689 1.8997 5.7170 0.9491
-1.1588 -3.1119 -3.4525 0.2538 1.3345 -1.0500 -0.3870 -0.0472 0.1522 4.0806 2.8886 3.8741 -1.9507 -2.9183 -0.3828 -0.0805 0.4136 1.1466 -3.1863 3.5818
-4.1654 -5.7362 -5.0041 -0.9889 4.1884 4.8135 1.5658 -2.3781 0.8425 7.5151 7.3977 3.9243 0.6283 0.9194 -5.0741 -1.9566 0.2100 -4.9786 0.8760 -2.5989
-5.3114 2.2992 -1.9803 1.2150 9.1545 -2.1960 -2.8749 9.6686 0.5512 -4.1700 -1.1338 -4.1549 1.6645 -3.1643 -1.7800 4.9896 0.3390 -0.0421 -1.0391 -2.0347
1.0740 2.1840 0.9247 2.0617 -2.1994 -4.0653 -1.5118 -0.9397 1.3781 2.9104 -0.8864 8.5382 0.5495 -3.5922 -0.2482 -0.5485 -0.9604 -1.8453 -3.1808 0.3575
3.5141 2.7621 1.2101 -0.3665 -1.1827 -0.5351 0.4822 0.7598 0.8241 1.4976 -0.8943 -2.8067 -2.3512 -2.0448 0.3706 -0.9201 -3.9192 1.1431 0.4761 1.9809
-1.7817 1.1939 -1.2195 1.7524 -4.7374 1.1520 0.0973 1.5475 2.2848 -7.7870 2.0346 0.5213 2.8861 3.1077 1.1974 2.3936 -1.4248 -0.2888 -1.4706 -1.4588
-0.7677 -2.0426 -2.9918 -1.8722 -1.4336 0.4207 1.4107 1.0509 -0.1714 0.2221 1.3054 0.5884 3.1454 1.8747 0.1510 -0.5701 0.5457 2.7058 -0.0854 -3.4859
1.6593 1.0024 0.3202 1.0267 -0.2368 0.1208 -0.7272 -1.0487 0.2686 -1.0197 -1.3131 4.1829 1.0297 1.7779 -3.0898 -0.7777 -4.5532 2.1765 -0.3100 -0.4886
2.9341 -0.2895 -2.4210 0.9438 2.9490 1.2447 -0.4279 -0.4133 -0.2487 0.6464 0.1859 -0.8613 0.0690 -2.0024 -3.5783 -0.9123 -2.3469 0.3089 5.3909 -1.1710
13.8818 0.6217 -0.6459 -3.4218 0.8331 0.8918 2.2009 4.0596 -3.0380 -7.3862 -3.2105 -2.2108 4.7972 -5.3735 3.8870 -1.8190 -0.5123 0.9752 -3.6921 -0.8383
0.2536 -11.0226 4.4625 -7.9396 8.6657 2.6088 -1.0215 0.4492 -5.0641 2.7194 1.1735 2.2070 3.3733 -0.2605 5.5319 3.5989 0.2759 -3.6185 -2.9338 -3.4591
-0.2533 -1.2245 -1.1924 -0.1962 0.6099 -2.1289 -2.0002 -2.0390 -1.5592 0.7879 0.1165 -0.9325 -1.5485 0.4552 0.3883 1.9054 2.3495 3.9138 2.3594 0.1886
0.1750 3.7528 1.6899 -4.3270 -5.0437 -3.1410 -4.7768 -1.9628 -4.5893 5.9435 -9.6773 -0.4601 3.0571 1.2797 0.1161 3.5574 3.7157 -2.0222 5.9308 6.7823
-0.6999 -2.9933 -3.6606 -0.6207 -1.4032 -1.1364 0.2530 -0.9004 -2.7685 -4.3142 -0.7561 0.8142 -0.4715 0.8444 2.0053 0.5983 3.3363 4.4913 6.9146 0.4673
1.0959 -0.0886 0.2379 3.2725 1.2016 -1.1581 -1.3640 -0.6268 -0.3678 0.9051 0.7593 -2.2902 -1.4578 0.6349 0.5115 -4.4984 2.2315 2.2535 -2.7867 1.5345
3.6055 3.8842 2.1794 -0.7568 -1.0500 -2.1686 -0.6731 -2.0718 0.8001 -0.6819 1.1112 0.5707 -2.4862 3.1489 2.6767 2.5134 -1.9147 -4.1519 -2.4548 -2.0802
-1.9388 -0.7447 -0.8349 0.1123 0.1251 -1.3476 -2.6413 -0.4770 5.6864 -1.8563 -3.3514 -0.5309 -1.6295 -1.3453 -0.4664 4.5930 1.1909 2.9264 0.9356 1.5944
0.5951 -0.4177 -0.1304 0.5462 -1.3265 1.4534 1.6425 0.9730 0.8946 2.1586 4.2557 0.8968 -5.0524 -1.9576 2.6089 0.6571 0.7918 -2.2504 -4.5907 -1.7480
-1.6456 -2.0706 -2.4462 -2.5983 -2.5056 2.0863 -0.9159 -0.8806 -0.8052 -0.7776 1.0285 0.4522 1.5131 3.4530 4.9330 -2.7752 1.7750 2.1982 -0.0181 -0.0006
2.2117 0.6658 -0.1647 -0.7769 -0.3291 -0.0686 3.1830 1.8603 1.0488 -0.7866 -1.0352 1.6465 0.2395 0.3989 -1.2496 -1.9498 -2.6996 -7.5216 1.3320 3.9951
1.0405 1.3681 2.7153 3.0279 2.8206 1.9933 -1.5434 -2.0223 -1.0490 -1.2756 -0.1434 0.2554 0.8858 1.3178 0.3714 3.5670 -3.1912 -1.0147 -3.0243 -6.0993
-0.8348 -2.4017 -3.6731 -2.0399 -0.2474 -1.0640 -1.1488 1.3352 2.8367 5.1498 -0.0673 1.7148 2.0672 0.7800 -2.8302 2.8981 -0.7525 1.3119 -2.4119 -0.6222
3.0927 2.0509 2.4548 -1.3001 -3.9942 -0.7486 2.8523 0.1569 -4.3404 -10.5627 4.2087 4.2968 2.7013 -1.1646 0.2008 -2.4272 1.8708 0.5192 -2.3092 2.4416
0.6449 -3.5216 -3.8362 2.1329 -1.2999 0.6434 -2.5079 3.1409 -0.9430 2.1409 -0.9005 2.6639 5.8420 2.2508 -0.1834 -3.5407 -2.0329 -1.9827 -0.2675 1.5565
5.1512 4.1361 0.9497 -3.1897 -6.0608 -4.8346 -0.7128 -2.1849 -2.1809 0.1265 0.3295 0.2665 1.1233 -0.4722 2.7945 1.1909 0.4093 1.9529 0.6380 0.5674
-2.0255 1.8944 3.2610 -0.6543 -0.1603 1.6419 1.8339 -4.1284 -1.6495 -7.4417 2.7611 3.0349 -5.4696 5.3754 0.2729 5.1700 0.7296 -0.1265 -1.6533 -2.6659
-7.1882 -6.8851 -0.9549 2.6573 1.6288 -0.3149 -2.2361 1.6706 4.0565 3.2723 -2.0478 -0.6505 2.7769 4.9536 1.8310 -4.1026 -0.8540 2.2409 0.8671 -0.7209
0.8703 1.1461 2.9551 0.5102 0.4539 9.1307 -3.4339 -1.5513 -2.2902 -4.1038 -6.0580 -0.8757 3.5830 2.5081 -1.9449 0.3605 0.8645 0.6768 -0.2206 -2.5809
-4.5091 -1.0618 1.6342 0.5890 1.0199 0.7070 -0.4636 -0.7393 -2.0902 -4.3948 -1.8491 2.8967 1.9263 0.6394 4.9955 3.9485 -0.2145 -1.3652 -1.4955 -0.1736
-1.2527 -0.6868 0.0359 0.5854 0.7286 -0.5988 -1.0892 -1.2358 -0.5524 -1.8766 -4.8554 1.3154 3.0969 1.2141 0.4785 0.5435 0.9660 0.9526 2.5969 -0.3662
-3.4429 -2.5359 -0.7902 1.6794 1.3950 0.9304 0.5281 2.0451 -0.2820 -0.7620 -2.3113 -2.5279 -1.2407 -4.6199 3.9276 -1.3637 2.0692 2.0266 2.4150 2.8601
-0.0841 -1.4504 -2.5295 -2.1914 0.0160 -1.5806 -3.8581 -1.8751 1.2410 1.4792 -0.0268 -3.0304 1.1672 3.1034 -0.0043 -1.7750 1.0722 5.8103 3.7335 0.7830
-1.2601 -0.9248 -0.9753 -1.1580 -0.4657 0.9286 0.4457 -0.7164 2.9298 6.0232 1.1288 -9.2201 -2.6002 1.0866 3.5907 -0.3994 -0.8783 -0.4493 3.0463 -0.1320
-2.6865 -1.7683 0.5719 4.2697 0.4434 0.9403 -0.1787 -3.9995 -1.4954 -2.9666 0.5871 0.7458 -0.5643 -3.3758 2.4009 1.3630 3.2345 2.9305 0.6423 -1.0943
0.2605 -0.1269 0.1894 0.8801 5.6065 4.4842 -0.3360 1.6337 -1.0080 2.2349 -1.3371 -3.4195 -1.5849 3.4658 -2.7632 -2.8878 0.2535 -1.0857 -3.4858 -0.9736
0.5903 -1.1309 -3.8731 -2.8181 0.6957 -2.1930 -3.7976 -0.1684 0.3131 0.8609 0.0568 -0.1356 5.9915 2.3704 3.9840 0.5840 -1.9366 -2.6479 0.4937 2.7608
-1.4917 0.6707 -1.8279 0.4736 -4.3226 7.6508 -0.6770 -1.0388 1.6577 3.4357 2.1210 -1.6783 -1.9394 -0.4857 0.0446 -2.1769 -1.5641 1.5895 1.4750 -1.9161
-2.4617 -1.4865 0.9268 3.7356 1.9298 -1.0879 -0.9003 -0.6573 -0.4536 1.1463 2.5279 -0.9025 -2.1547 0.5579 -1.4546 -2.5618 -1.1020 1.7633 4.9058 -2.2707
3.2436 2.0698 1.3674 -1.4618 -0.4269 1.2764 0.3160 1.2237 0.7208 1.5117 1.4584 -0.5527 -0.7757 -2.7217 -4.0792 1.8261 2.7197 -3.9546 -1.7508 -2.0101
0.2659 1.9357 0.5705 -1.8509 -5.0017 -3.7512 -2.7574 0.2996 -1.1250 0.6895 2.7521 3.7090 3.4556 6.5334 -3.5389 -3.8970 -2.9436 0.7650 1.5177 2.3717
-1.2532 -0.7651 -0.7634 -1.6900 -2.3167 -1.0574 0.9291 -0.7963 -1.4770 -1.6646 0.5558 0.7009 3.4059 9.2719 1.4172 2.4588 -0.7901 -3.7873 -1.0613 -1.3173
3.2264 0.6063 -2.4159 -3.8529 -1.9936 2.6889 2.5115 0.8341 0.8209 1.2008 0.7255 -2.1489 -1.1543 -0.6443 2.0479 -0.7011 -0.5619 -0.0820 0.5538 -1.6613
0.8900 0.2673 1.2328 -0.1459 2.5186 2.3429 -0.5461 -0.5497 1.9452 5.1637 1.5156 -3.9805 -1.5621 -1.5331 -2.7711 -2.2357 0.7958 -1.6083 -2.3152 0.5758
4.0233 3.7838 3.0862 2.4680 -0.8644 -2.4804 -0.9694 -1.9035 -3.4966 -3.9590 -3.9724 -1.2080 -1.6237 0.7915 0.4354 0.8419 1.1287 1.8538 2.3476 -0.2827
-0.5315 1.6742 2.6296 -0.5391 -1.8812 2.7171 6.8646 3.9934 -2.0577 -0.8537 -4.3316 -2.4473 -2.8864 -0.3456 -1.9169 -1.4494 0.4578 1.9608 -0.1673 -0.8898
-2.1559 -2.4800 -1.5001 1.3457 3.3362 2.6367 1.4331 2.3397 3.7557 3.4063 1.6588 1.2723 -0.3658 0.5614 -2.5827 -5.6096 -3.4952 -4.1966 -1.5564 2.1965
0.1567 -1.6324 -1.8735 -2.1011 0.8687 2.8596 1.0227 5.0782 -3.8186 -0.4012 -1.0627 -1.0858 2.3105 2.5822 -1.0014 -0.6915 1.2628 0.1273 -4.3120 1.7113
0.5493 0.1877 -0.3065 0.0805 0.1700 -0.4682 -0.7192 0.7521 1.1935 -1.2445 0.5061 3.0407 3.3122 2.9044 2.0613 -2.6946 -2.8479 -1.4855 -3.4536 -1.5377
1.2611 1.2112 -0.4954 1.5849 2.8817 0.5597 -3.2189 -1.8993 -2.3996 0.0235 -0.9270 -1.1263 -1.6443 -3.5163 -1.2543 1.8410 4.5628 1.0754 -0.1607 1.6406
-0.8759 -1.6975 0.2532 6.4042 -3.4246 -2.9858 1.9661 -3.2513 -4.0109 -0.5134 2.5545 -3.0437 -2.1093 -3.6915 4.1398 6.0036 -1.3456 1.3628 -1.0285 5.2940
8.8405 -7.2360 2.8239 7.1563 -1.4248 -8.0410 -1.9196 1.8187 -0.9320 -3.1134 1.9133 4.5783 5.5866 -1.7440 -0.1615 -9.2039 4.4457 -2.5424 2.5822 -3.4268
-1.9594 -0.1440 -0.0014 -0.5248 -1.2740 1.9184 0.2637 0.9658 3.9879 -1.7646 0.8739 3.6824 -1.4748 -0.5493 4.1940 -0.5892 0.9704 -2.3393 -5.2036 -1.0319
-1.8153 -0.8777 -1.3975 -2.8688 -1.3150 0.6005 2.0795 2.0158 -0.0187 2.3273 5.2446 3.1910 0.5420 -1.0394 1.3294 -4.6550 -1.5318 -1.6999 0.2573 -0.3684
4.3069 1.2137 -1.8464 -3.0026 -0.9539 3.1554 3.4215 2.0922 0.4828 1.6102 1.1857 1.5577 -1.8593 -2.9907 -3.0640 -4.6355 -1.6614 1.3592 1.5116 -1.8833
0.6407 1.1519 1.5429 -0.7369 -1.7269 -1.6671 -0.1290 -0.7049 0.8116 -1.2198 -4.0157 -5.1437 -3.1965 2.3418 0.7111 2.6992 0.5585 1.9829 4.9644 1.1355
0.6364 2.1072 0.9870 -5.1572 -4.3363 -1.0839 -1.3521 1.8709 0.8132 -0.2938 -0.2079 -2.5242 -0.8999 2.3401 0.7392 3.1549 3.0568 -1.1375 0.0963 1.1908
-0.0136 -2.4241 -0.4209 1.6339 3.4114 3.5889 -1.4100 -3.5651 3.1831 2.0426 0.5548 -2.0177 1.6429 -3.2634 1.5780 -4.1305 -0.9389 0.1651 0.4588 -0.0751
2.0687 0.8544 -0.3821 -0.1978 1.0057 2.3289 3.0174 -0.3330 2.0178 -0.6679 -0.1993 -1.9170 1.6018 -0.3834 0.6526 1.9588 0.3355 -2.0462 -4.1767 -5.5379
2.7809 0.2282 0.4820 1.9051 -1.7350 -3.4716 -3.3685 -1.3005 0.1251 -1.5366 -1.9516 -2.1469 1.2541 3.7123 3.0390 0.8154 2.3154 2.5014 0.0685 -3.7166
-2.7442 -0.5589 1.8753 0.2528 -1.7122 -1.5279 0.3471 1.3429 -0.0809 -1.0979 -0.5556 2.8899 0.2864 2.1800 1.7006 -3.4442 -2.6681 2.9174 1.9107 -1.3132
1.1471 -0.3191 -2.5131 -2.6788 2.7236 4.0318 2.9420 3.1336 1.5351 0.4800 -0.0086 -1.0945 -1.1975 -0.4758 0.1588 -0.4970 -0.2437 -3.5219 -3.3061 -0.2958
-0.6947 -3.5085 -2.7613 0.0475 0.2365 -2.4104 -0.4597 -0.9262 -0.2261 1.8983 0.9162 0.3544 -1.0767 2.3229 2.3748 -1.6417 3.4712 -3.6716 0.1472 5.6077
-1.7531 -0.9915 -0.4352 0.4089 0.1890 -1.7111 -0.6401 -0.9353 -0.5743 0.3365 -0.6869 0.9392 0.8776 -0.2201 0.7815 -1.7487 -0.2509 3.0732 0.2971 3.0442
-6.4696 -1.5332 1.3136 7.9582 4.7035 0.4178 -1.4784 -2.4577 -0.6662 -2.4183 -3.1348 -2.0591 -4.3423 -0.2080 1.5975 -2.6953 0.1211 4.7779 4.5315 2.0419
0.8642 3.0824 1.7461 -0.8529 0.9231 -0.3502 -2.7586 -2.7081 -1.4853 1.1577 2.4953 -2.0279 3.1643 -1.1352 0.2786 -0.1650 2.4230 -0.5282 -0.4006 -3.7227
-3.9091 0.2639 -0.0395 -5.0339 1.4635 7.9381 -1.8279 -7.5321 1.8947 0.9696 -7.1991 7.7502 4.8838 -5.2722 5.2271 6.4012 -8.2785 -5.8271 0.4487 7.6786
-0.4051 0.3015 -0.5211 -1.1563 -1.5548 -0.8506 -1.7742 -0.6679 0.3853 3.9695 3.1450 -3.5632 -0.3392 -3.3757 1.3514 4.4934 -1.2754 -0.4248 1.0022 1.2601
-3.0667 3.2388 3.6288 -0.3263 -3.6989 -4.3941 -3.0073 -2.9882 -2.7834 -3.8873 2.3701 6.1068 1.0432 -2.8444 0.1460 -2.5272 1.8208 2.6818 7.7176 0.7699
-0.8674 0.6588 -0.0766 1.9350 3.3452 2.7012 0.4707 -0.8282 -0.7703 -3.8252 -2.8814 -0.2389 -1.3895 -0.9376 0.2572 -3.4418 -2.3763 -1.8695 7.4789 2.6558
0.8567 1.9741 0.6363 2.1993 1.9072 2.2211 3.7376 -0.0455 1.3289 -1.0736 -4.8817 -4.0284 2.4624 1.0596 -3.8101 -3.8498 0.8895 -0.5176 -2.3743 1.3083
3.7465 3.5865 0.1979 0.4072 -1.1714 -1.4598 -2.1688 -1.4971 -1.1953 -2.8028 -1.8515 1.1483 3.7654 -2.6485 1.2635 -2.4929 -1.4965 0.6356 3.3756 0.6583
-1.7286 -0.6675 0.3769 1.1159 0.0587 1.4828 1.2140 6.0165 1.2212 -3.4526 -2.4321 -0.8616 -2.2663 -0.0017 -0.0046 0.2615 0.0517 -0.8546 0.5801 -0.1095
3.4455 1.4668 -0.0851 -2.9245 0.0932 1.2861 1.1250 -0.6317 -4.0005 -4.4206 -1.5097 1.3643 -0.1238 -0.8046 -2.4500 4.2293 2.9297 3.2594 -3.0122 0.7633
2.2354 -0.6334 -2.7256 -1.7876 -1.8603 0.6549 0.1244 -1.8100 -1.7636 -2.7665 1.0419 3.6034 2.7187 -5.8124 -0.9848 2.8478 -0.3193 3.4835 2.5353 1.2184
3.0602 4.3425 2.4260 -0.5623 -0.8919 -0.2730 1.3901 0.4772 -0.5219 -1.3754 0.4815 2.4087 -5.0472 -5.6009 -2.8901 -2.4607 1.8809 3.5997 3.9232 -4.3669
-0.0346 -0.2122 -0.2290 -0.9365 -0.4221 -1.9300 -2.3572 -2.9919 -2.2394 3.2115 2.4104 2.4249 -0.5682 1.5001 -1.3857 2.6140 -1.8866 -5.6180 7.3368 1.3135
-0.4484 -1.1107 -1.9143 -1.2992 -0.5392 -1.0181 -0.6562 0.5186 -0.7919 -1.4379 -4.0959 2.4107 1.5417 0.0557 3.4844 1.7096 -0.8275 1.7994 2.0983 0.5209
-0.4549 0.1830 0.2262 -2.2572 -1.5931 -0.7026 2.6431 2.6098 4.0381 -0.4805 -2.9134 -3.5443 -0.6536 -2.1551 2.0956 1.2393 0.2979 0.9155 -2.0621 2.5682
-0.1092 -1.2889 -2.5682 -2.3378 -1.7259 -0.5628 -0.6114 -2.8295 -2.5690 -3.3678 -2.2669 0.6023 0.3823 5.9006 5.7607 1.9871 0.6942 1.2471 3.2445 0.4186
0.6515 1.8638 -0.3444 -2.0169 -0.6995 -2.9879 -2.4596 -1.0847 -0.8686 -2.3776 2.0331 4.8909 4.1694 1.2690 1.4079 1.9289 1.8820 -0.9986 -3.0198 -3.2390
1.7936 1.2201 -1.9231 -2.6761 1.6107 7.0585 8.8031 2.9894 -2.3291 -6.5825 -1.5641 3.0126 -4.0096 -4.0332 -0.6223 -0.5985 -0.8359 1.2689 0.3585 -2.9410
-1.2384 -0.3295 2.3565 3.0657 3.2204 1.0890 -0.5456 0.1283 2.9904 -0.0970 -5.2104 -1.5801 -2.5751 -2.3243 -0.3014 2.6881 0.5623 -1.5424 -1.9388 1.5825
-2.6631 -2.8705 -3.6445 -0.1511 1.0369 4.6018 2.7993 -0.5794 -0.1152 0.9196 4.1279 -0.7083 -3.1505 -2.1870 -2.5145 -0.8667 1.9629 3.7810 1.8562 -1.6347
-3.7832 -0.9972 1.0298 0.8253 -2.4369 -3.3827 -2.6892 -0.8231 -1.0820 -0.0375 -0.7937 -1.8433 -0.5302 3.8146 2.3123 1.6122 4.1004 5.6672 -1.0450 0.0824
-0.1000 -2.0200 -0.5383 2.2917 0.8366 -2.2105 -0.8495 2.1052 3.4989 -0.0827 -0.3031 -1.7154 1.3463 5.4572 -3.0939 -0.0935 -1.1704 -5.2410 2.4300 -0.5476
-3.7789 -1.9485 1.8338 2.9833 0.6807 1.8337 5.1432 -0.4532 0.5973 -0.6042 0.8753 -1.5014 0.4292 -2.2709 -1.2993 -0.1667 -1.6955 1.1932 -6.0865 4.2353
-0.4920 0.0568 -2.6837 -3.2294 -0.2920 -0.6790 2.7843 3.0219 1.7934 -2.2037 -3.0967 1.8829 0.5782 -1.6334 1.9235 4.5606 -4.2261 -0.0121 2.2982 -0.3517
-0.6429 2.5139 2.3667 2.2000 -1.8905 -1.3195 -0.0575 -0.6720 2.8832 0.3828 0.9744 2.9334 -0.6053 3.2595 2.5269 0.0016 -5.8119 -0.9627 -4.8744 -3.2058
0.8584 0.9302 0.3630 -0.3058 -0.9190 -1.1142 -3.3748 -2.6210 0.9921 -0.0440 -0.2277 0.8060 1.7478 2.0581 0.3900 4.4187 5.8430 -6.6138 -3.1191 -0.0680
0.3281 -0.0986 -1.1173 -1.9481 -2.4515 -1.0863 -1.3545 1.1448 2.8412 3.7501 2.6741 2.7224 1.8554 1.4018 -3.7195 -2.9142 -1.2068 -4.2062 2.9680 0.4170
0.2181 -1.3017 -1.3715 -0.9326 -1.1639 -0.6082 2.2905 2.1838 3.1530 3.3746 2.0088 -0.8055 -1.0486 0.7007 -1.7960 -0.3898 -2.4327 -2.4057 -2.1793 2.5060
-2.4912 -0.4925 1.9418 -0.6320 -1.0125 1.8048 -1.5360 -1.7457 -0.3001 0.5912 0.4548 -1.4661 -1.5177 -0.5917 5.6377 -3.6558 1.8798 3.7139 3.0715 -3.6543
-1.0770 1.7774 3.6503 0.2492 -2.5625 -1.2989 0.3077 -1.4511 -0.7454 -1.0293 0.9281 -0.0970 -1.4180 0.5544 2.0070 3.1415 2.3666 -0.7117 -2.8143 -1.7770
-1.8815 -2.2795 -1.1580 1.0865 -0.0453 1.6476 0.0859 -1.8231 -0.7599 -1.0013 0.0173 -0.6116 0.0110 0.6057 0.1048 0.3920 2.8241 -0.4223 -0.2920 3.4995
0.0544 2.8654 4.0202 1.6845 -1.8534 -2.9185 -1.4228 -3.6388 -2.0210 -2.4342 -3.4254 -1.7961 2.7218 6.6019 2.2780 -0.0758 -2.1727 1.0645 -0.3083 0.7762
-4.2733 -4.7209 -2.5347 -4.1434 -2.3709 0.1195 0.9517 -1.8672 1.5567 3.4133 0.9511 6.1534 5.0591 3.3617 4.3448 -0.8335 0.0697 -1.2096 -2.2085 -1.8188
0.0539 1.0537 0.6965 0.7551 -2.3328 -4.4085 -1.7944 4.6582 -1.8228 -0.3800 0.4342 0.9079 1.1727 -0.2538 -0.9787 1.6403 0.3758 0.2889 -1.0679 1.0017
0.9075 0.5642 -0.6092 -2.8652 -3.3111 -1.2627 1.6981 0.5866 2.5675 2.8589 1.6024 2.0917 0.4354 1.0342 1.2054 -2.7817 -0.5893 0.0883 -2.8199 -1.4010
0.8980 -0.3869 -0.4833 2.6033 -0.0884 -0.3699 7.2953 1.6809 0.8531 1.6498 -4.4993 0.0072 -1.9421 -1.8001 -2.5825 -3.6475 -2.3221 0.6178 0.3128 2.2040
-6.0307 -1.3653 -0.3786 0.0247 0.6616 0.7676 3.3234 3.0965 0.7765 -0.6097 1.0441 -0.9142 1.6186 -9.2158 -4.2017 2.5866 2.2875 2.0945 2.8697 1.5646
-0.3542 -0.0280 4.1718 2.5282 6.0404 2.9659 -1.0269 -1.4497 -5.6815 -3.9178 -3.9280 -6.4467 -2.5804 -4.6703 -1.3963 3.1437 4.3980 -0.5477 2.7035 6.0758
-1.5432 3.8376 1.4210 -1.1449 0.4892 1.3172 -2.0383 -2.2564 -2.1791 3.0272 -4.0284 -1.3615 -1.9716 -4.9880 3.8800 2.5715 -2.8049 5.2429 -2.0992 4.6290
1.9112 0.2401 1.2090 1.9221 -0.5051 2.0731 -0.8317 -1.4381 1.1319 0.2604 4.8570 -4.2486 -4.2343 -0.1445 2.6106 1.1135 -3.4590 -1.7688 1.2613 -1.9600
-4.6396 -2.9689 0.9238 0.7657 0.5574 -0.3650 -3.7022 -4.0756 -5.0362 0.3243 3.1880 1.7270 -0.7319 2.9308 3.7592 2.6099 -0.3181 4.3233 1.9146 -1.1863
0.1980 -2.2883 0.9330 3.8033 -3.0797 0.0635 -1.8773 -1.7344 -1.0161 0.1560 -0.1661 -3.8927 -0.3658 0.3316 1.1226 1.9542 -1.0490 -2.2906 3.6658 5.5322
-0.8058 -0.9870 1.9765 0.8081 -0.8891 1.6549 -1.7178 -0.2062 -0.6134 3.7968 2.8384 4.3753 1.2045 -6.0029 -1.5145 -3.5656 0.8785 -0.8278 0.9419 -1.3448
-1.9513 2.4604 2.9573 3.3043 2.2986 1.0394 -0.4185 -0.0890 -0.2841 2.2073 1.6514 0.3367 -1.0792 -1.4676 -0.8850 1.7747 0.0695 -7.9932 -5.3486 1.4171
-2.8766 -0.2007 0.3439 0.7801 -0.0362 -1.8832 1.2162 3.7611 1.5511 -0.2914 4.4891 2.4265 0.5170 1.2791 -3.0822 -4.3172 2.1550 -1.7349 -2.5924 -1.5044
-1.3853 -0.5001 0.6365 -1.9167 -1.9693 -1.6932 -2.5123 -3.1209 -1.5363 3.8772 1.7176 4.5613 2.2969 -1.7507 -0.4549 2.7398 -2.2572 -0.1132 1.3625 2.0183
-0.2587 0.7517 0.0083 -1.5665 -2.9108 -3.8211 -5.3272 -2.2879 -3.3006 3.2010 3.9688 4.6713 3.8047 3.4665 0.6502 0.9612 0.0958 -1.5002 1.1994 -1.8059
-0.0767 -2.8888 -3.8572 -1.6523 2.8392 3.7128 0.7093 -0.0657 0.9823 -1.6073 -2.1810 -1.5064 -0.6392 2.2679 1.7322 -1.1001 1.0422 1.4078 2.4192 -1.5382
2.1069 1.6101 -0.6015 -1.1106 -0.0731 0.3657 2.1738 0.6411 -3.2826 -4.2217 0.0005 4.1333 2.9287 4.0221 -1.0117 -7.1186 -0.3700 1.5812 0.1654 -1.9391
-3.3989 -5.4211 -3.3823 0.1417 -0.2090 -2.9282 3.8367 5.4395 2.1603 -1.6658 -0.0286 3.8151 -1.6236 -0.4057 -0.8473 2.3634 0.3434 0.0424 -0.3374 2.1055
3.8095 -5.8994 -4.2159 -2.8701 5.1790 -4.6791 -5.6257 0.4437 3.5907 6.0531 -2.4206 -0.6190 2.0474 3.5867 7.1475 -4.6633 4.1906 1.2868 -11.1492 4.8074
-5.2857 -2.3511 1.8870 -1.8753 -2.8109 0.3363 -1.9008 -0.4090 0.8741 -0.4525 -6.3796 0.4485 2.7092 2.5765 4.4129 4.7975 -0.3228 3.7712 2.7353 -2.7608
-3.9913 -5.9775 -2.6898 8.0565 3.5971 1.2374 3.4590 0.3338 0.6958 -1.1912 -2.2406 -2.0748 0.0857 3.9701 1.1276 1.2332 0.6559 -3.8152 0.9255 -3.3971
-2.4876 -2.5150 -2.0296 -1.0642 1.0080 0.6973 -1.7376 -1.5703 1.5923 -0.7283 -0.1226 -1.7315 2.4167 -0.4425 -1.5075 3.8846 0.5544 0.8966 4.6270 0.2600
2.8767 0.9007 0.0796 -2.1662 -1.5086 1.0148 -1.3370 0.8661 0.0749 1.4614 3.1800 2.1743 -1.6449 -2.7523 -2.7644 2.2901 -1.9100 -4.8716 -2.0883 6.1248
3.6336 2.1044 0.4628 -0.6805 -0.0353 -2.3281 1.0902 3.0334 -1.9070 -2.0882 -2.9673 0.1514 0.3556 -1.0151 -5.4063 2.3884 2.5624 -3.2553 3.9458 -0.0449
-1.3869 -1.5992 1.4579 1.4992 1.7691 0.8878 0.9518 0.7305 -1.5050 -1.6287 -1.6402 -0.3868 2.7983 -2.2046 -0.5051 0.1956 7.1623 2.4667 -5.9139 -3.1488
-3.5734 -7.3577 -7.1566 -1.3669 4.3200 2.1415 0.4237 -0.1707 3.4434 2.6751 2.2337 0.4895 2.5968 1.0123 -0.9145 -1.1189 0.9048 2.1474 0.4312 -1.1607
-5.2465 -1.6283 -2.7428 -3.2948 -2.2122 4.3049 4.7808 4.7619 0.2262 -0.6089 1.1643 3.3590 -2.1676 0.2134 -1.1502 1.4193 1.4168 0.3538 -2.8694 -0.0796
-3.4905 1.2508 2.0451 0.4490 3.1300 4.3899 0.1675 -1.3519 -0.0668 0.4245 -1.7121 0.2301 -2.2070 0.3069 3.1491 -7.5721 2.7986 3.8554 -4.1493 -1.6472
1.5232 1.5300 -1.0621 -1.4488 -0.8044 -0.3900 1.3086 -2.5549 -4.3776 0.5264 2.2421 -0.5299 -2.7363 4.9582 1.0929 1.1601 2.8351 1.9896 -4.9813 -0.2808
6.5366 -2.5283 -5.5972 -3.4516 -0.2385 1.8382 -1.6024 0.2804 8.8284 4.4416 -6.1238 3.7728 3.4763 2.9323 -2.3678 -5.5110 -4.9901 -0.1283 0.0084 0.4242
1.9342 1.5660 2.2346 1.0331 -0.6035 -0.4461 0.0271 0.7571 1.1796 0.2963 -0.9807 -0.5607 -1.4711 -2.5426 -4.1871 2.4178 0.2030 -1.7949 -3.6655 4.6035
2.2188 0.9702 -1.9037 -2.3323 -0.9270 -0.7473 0.4463 4.0069 3.2380 1.6378 1.5850 -1.9473 -1.2130 -2.1935 -1.9102 -3.3249 2.6456 1.0820 -1.3884 0.0570
1.8633 1.2717 1.6148 0.3758 2.9711 -0.8914 -1.2864 1.1672 2.0355 1.2245 -3.7030 3.7200 -3.0675 -1.9250 2.2356 -0.7355 0.5128 -4.4528 -2.9595 0.0288
-2.2984 -0.5209 0.3609 2.6675 -3.6910 -0.3519 6.3822 3.0237 -0.1277 -2.2553 1.0403 0.9970 -1.3107 -1.9745 -0.1646 4.8839 0.1333 -1.3256 -3.4240 -2.0441
-2.3190 2.2812 1.2138 -1.1727 -3.3340 -5.2226 3.6390 2.5124 -1.5642 3.4166 0.5330 1.8016 -0.3986 -2.9233 -3.7394 0.9982 -0.0060 -1.6833 4.3443 1.6231
-2.2576 -2.6516 -1.1317 -1.2013 0.7393 0.1827 -1.2343 -3.2192 2.3728 2.7817 1.6779 0.8901 0.5320 1.4647 3.7014 7.0412 -2.6912 -2.5104 -1.2474 -3.2389
-1.7690 -1.9167 -2.8243 0.8559 1.6454 0.6817 0.5231 -1.2522 -2.6542 -3.2288 -0.2864 0.0091 0.5513 -0.6182 -3.9328 4.4973 6.4951 0.4313 1.6808 1.1116
-0.2744 -1.5780 -1.8323 -1.2019 -0.3620 1.2906 -0.2832 -1.9105 -0.8966 0.8634 -0.4648 -2.3172 -1.9676 -1.7065 0.8232 -2.4736 3.5667 5.3037 4.3018 1.1191
-0.4003 -1.4016 -2.6548 -3.2373 -2.1471 -0.9075 -1.1057 1.1084 0.0584 0.6994 -2.2697 0.1501 -0.0187 -0.2177 -1.1214 2.5501 5.4533 5.8815 -0.4561 0.0366
2.4755 2.6766 3.3810 2.8797 -1.3067 -1.2604 0.4792 -1.5575 -2.0569 -1.1560 -1.3594 -0.7176 0.2831 1.2557 -0.1965 -2.5773 0.8488 0.4905 -3.0053 0.4234
-0.5334 -1.6405 -1.4903 -1.2901 -2.0368 -2.4054 -2.0422 -1.2649 -0.3204 2.3946 2.8987 2.5774 -1.9494 -5.6321 2.8212 3.6550 3.9850 1.2152 1.3991 -0.3406
-1.8395 -0.9841 -0.1468 -2.7046 0.5709 -0.0486 2.3079 -3.1973 5.7249 -2.0537 -0.8947 -0.5513 -1.5588 -0.0660 1.7712 1.4939 0.7539 0.8995 0.7376 -0.2144
-2.1136 -6.4960 4.0091 -2.7287 -2.8520 0.0889 4.2865 1.1559 1.4489 2.3747 -0.2811 -1.6675 -2.1043 2.4825 1.5983 3.0151 1.4924 1.4598 1.4466 -6.6156
0.3044 0.5145 0.8314 -0.5726 -1.4732 0.5522 1.0454 0.7132 -0.3595 0.4703 4.9451 2.9593 3.4319 -1.7835 -2.7963 -3.6604 -2.7125 1.2113 -5.0055 1.3846
2.3458 3.2640 1.8110 0.4827 -1.6195 1.9882 1.8256 3.5857 4.1301 1.6235 -5.1588 -3.8052 -1.7214 -1.0231 1.3522 -0.3858 -5.6155 -1.3895 -1.6421 -0.0480
3.7883 2.2512 0.5915 3.6595 3.6582 1.2917 -2.0747 3.0623 -4.8462 -9.6783 -4.7828 -4.1622 -5.2776 -1.2559 2.3471 0.9386 6.0401 4.8334 -1.7435 1.3593
-0.5609 -1.1658 -2.4817 -6.5550 -4.6100 -0.2509 0.7628 -0.8368 3.8495 3.9220 3.0356 2.0951 1.5781 3.7313 2.8834 -1.2291 -3.4270 1.5639 1.6072 -3.9116
-1.4268 0.2383 2.3216 0.1248 2.0796 1.5987 0.8138 -0.2165 -2.9254 -1.2364 4.4075 -3.3005 -5.5475 2.3771 2.6523 1.5551 2.5380 1.7514 -3.2529 -4.5520
-0.7746 0.9904 0.2665 0.8152 1.7416 -1.7222 -3.8193 0.6115 3.8698 -1.5065 -1.1919 -1.2590 -0.9540 1.8722 -0.1520 -4.1283 -0.5510 0.1951 0.7420 4.9546
-4.9471 -2.6326 -0.7296 -2.9661 3.2611 5.2949 1.3584 -0.3484 0.0238 -0.5367 1.0370 -2.4283 -1.4686 5.4446 2.1704 -0.2969 -1.9436 4.7301 0.0591 -5.0816
0.8281 -1.2416 -3.3762 -3.9320 -1.3993 -3.0591 -0.9292 2.5927 2.1047 2.4478 0.5704 1.2666 0.5289 -0.2372 1.2696 3.8278 3.1348 1.0903 -4.3525 -1.1346
-0.7430 -0.7480 -1.2610 -0.7625 1.0816 1.6556 1.2019 2.2812 3.2082 1.5688 -1.3094 -2.0639 -2.5822 -2.2528 -1.3400 -1.6246 0.6375 2.8900 1.4778 -1.3150
0.8081 -1.3233 1.3342 -0.4629 2.2543 -1.7177 1.7285 2.2425 -4.4738 0.6367 1.5497 -1.2988 0.3335 -1.1590 0.1744 -4.2648 5.1183 0.3072 -2.6556 0.8684
4.0404 1.9094 -0.2474 -1.1600 -0.9167 -2.2516 3.9300 2.7965 0.9719 -0.3105 2.6858 -1.8089 -6.0898 -5.0707 2.0812 -0.0971 -1.5043 0.0458 -1.0273 2.0234
0.1375 0.2390 1.2366 1.5253 1.5536 1.1452 -3.3801 -3.1595 -2.7411 1.0175 6.4814 1.4661 -1.2521 -3.3744 -3.5432 -5.4270 -1.3071 4.3703 3.6696 1.3422
-0.0191 0.4401 -0.0551 1.2610 4.9915 1.8859 4.2946 2.2533 1.2460 -0.3261 -1.8245 0.5397 -0.9620 -2.4208 -1.3984 1.3654 -2.3100 -4.0785 -1.5595 -3.3235
-4.1713 -3.8609 -3.6233 -2.2953 0.4590 -0.2721 -0.1506 -1.7078 0.0356 1.5074 1.0712 0.7854 0.7858 0.0168 -0.8160 0.0810 0.5445 4.5197 7.1653 -0.0742
-2.9674 -1.4650 1.0679 3.2208 3.0814 -0.6959 -0.9252 1.0871 0.1680 -0.9317 -0.6966 -1.1041 2.3656 1.0874 -0.7021 -0.5843 -5.9540 -1.0591 4.3651 0.6421
-2.3881 -1.1722 -0.2878 -1.3100 0.1054 2.7187 3.1286 1.3950 2.5138 0.8551 -1.0485 -2.7991 -1.7081 -1.9009 -0.2092 -1.1297 5.4416 0.9634 -4.8359 1.6679
0.3475 0.6761 -0.9160 -3.3303 -2.5114 -1.3053 -2.4606 -1.5909 -0.1066 1.2867 0.1087 0.6627 -0.9380 -2.1561 -4.1442 0.5530 3.6775 4.3771 4.5604 3.2095
1.8172 1.9142 1.3748 -1.2576 -1.3958 0.4060 -0.4725 -1.2643 0.8079 -0.6725 -3.4257 -3.2969 2.8901 -0.0329 4.2131 0.8390 -2.3538 -2.2196 3.3371 -1.2078
1.9496 3.6573 4.2326 1.1863 1.8389 -0.7982 -0.8176 0.9762 -2.1796 -2.4082 0.4600 -2.1099 -0.1300 5.8933 -3.2271 1.4122 -3.0287 -5.0286 0.1022 -1.9807
0.7977 0.4131 0.7926 0.7439 -2.7150 -3.1860 -1.6061 -0.5456 3.5797 0.0724 -0.4993 0.4656 -0.7994 -0.5991 0.0862 3.6997 -0.5342 -0.3047 0.9064 -0.7678
1.0025 0.1292 1.8299 -0.2181 -0.3367 2.6298 -1.6812 -0.7903 1.0473 -0.5336 -4.1833 2.6382 0.9480 -0.3031 -1.3062 -0.6706 1.4954 1.1070 -3.9483 1.1443
-2.8220 -2.9373 -1.7368 -1.1113 0.7976 1.0210 2.2881 1.7823 -1.6829 -2.1388 -0.0636 0.6047 1.3691 0.5354 -2.8472 1.9900 -0.2414 -1.8409 2.3664 4.6674
0.8100 0.5306 3.2216 2.7904 2.3222 -0.0940 -1.2977 0.6699 -0.3153 -2.0729 -0.4524 0.1611 0.0422 -0.9458 -1.6284 -1.0590 0.4113 -0.2203 -0.7025 -2.1711
0.6469 2.9521 -0.5269 -2.8396 -2.8290 -0.4167 -2.6035 -1.8694 -1.2710 -1.1950 -0.6111 -1.1719 -0.0843 4.1129 3.9912 -0.9572 -5.8704 3.6319 4.0418 2.8690
-1.7675 0.6361 2.5132 2.0830 1.8929 -1.5061 -3.5844 -4.2969 -2.8299 -0.6870 0.8308 1.3968 0.3529 4.0998 -1.6161 1.3306 0.5600 -0.5129 -1.6573 2.7621
-4.0964 -1.5173 1.2551 0.2978 1.5682 0.3497 -1.4315 -2.0554 -0.5756 2.5392 0.7900 3.4286 -2.9558 -1.7034 -0.8459 1.0513 5.1871 -2.5294 1.2695 -0.0257
0.0328 -1.2155 -1.2836 -0.9363 -1.2229 -1.6930 -1.8595 0.3399 -1.5276 -1.0107 6.4040 -1.9072 0.7733 0.6079 2.8719 3.0211 2.3070 -3.5448 0.3434 -0.5002
-6.6638 -3.5679 2.7288 3.1465 -1.8044 -3.2026 0.3954 1.5738 0.6840 -0.5029 1.1915 -2.4277 -2.8920 -0.4612 0.5352 2.0495 4.9107 0.7993 0.1809 3.3270
-7.7693 -2.7271 -0.5302 -1.6862 -2.6750 -4.1941 6.2224 4.1406 1.2187 -0.8566 3.2170 2.7593 3.3324 -2.3093 -1.4924 1.2643 -2.9807 2.3328 4.6730 -1.9398
-0.3214 0.7654 1.4453 1.0347 0.7854 -0.0281 0.6653 2.1756 2.5539 2.4886 2.8291 -2.3264 -5.6113 -4.1472 -2.1955 -0.1794 -0.8897 -2.9162 2.0658 1.8062
0.0689 -0.0814 0.5156 -0.9104 1.9645 1.4890 -0.7622 -1.4287 1.4489 2.2731 1.0561 3.0605 2.5928 -3.3062 -2.8865 -3.6767 -3.9506 -2.1727 -0.4806 5.1867
-2.7262 -0.4080 -7.2353 0.2532 -1.7494 4.8406 2.4161 -8.2402 -0.3311 1.0612 3.3760 -0.5373 3.2052 3.7144 -2.9286 10.7765 4.9188 -8.1638 -0.8809 -1.3612
3.8706 1.5102 0.3780 -7.4590 -0.9006 2.4899 2.4680 -2.4184 -1.4186 0.2908 2.1056 2.4328 4.2260 -3.9887 -6.7913 -1.0651 2.4289 0.5874 4.8024 -3.5488
-1.2691 -4.1749 -2.7407 1.4930 1.4665 -0.9212 -1.4630 -5.1747 -2.2251 0.8474 0.8540 6.6525 0.1651 -0.5706 -0.3287 3.1547 -1.4600 0.8291 2.5923 2.2733
3.8347 2.4921 1.8361 2.4264 0.2839 -2.7167 0.2831 -0.5469 -0.6398 0.3108 1.0194 -2.1389 -0.8456 -4.7666 -2.5049 1.2075 -5.6326 1.3761 3.1197 1.6020
-3.7739 -1.8529 0.6063 -0.8541 -1.6370 3.6233 0.8975 1.9643 3.5106 -0.3623 -2.4744 -0.7625 -0.7853 -1.5705 0.2237 -0.6207 0.0761 -0.4742 1.5632 2.7029
1.1570 0.8704 1.6827 1.2654 -0.5848 -2.6900 -2.6615 -0.9589 -1.6641 -2.7103 -1.4381 -0.4901 1.8045 -1.5216 -1.1394 5.0021 4.1235 1.5550 -3.7877 2.1859
2.5420 1.6423 0.7395 0.8846 0.9016 2.7752 3.3824 2.5574 0.4625 -2.0442 -1.8686 -0.1860 -1.7933 -5.0038 -3.5773 -1.2917 -2.0519 -1.8556 1.0146 2.7701
-4.4081 -3.4569 -0.8021 0.2773 2.5574 2.3862 1.3118 0.1408 0.6688 1.9053 -1.5497 -0.5855 1.2457 -0.5521 0.9630 -2.2470 -2.8924 -3.7430 6.1844 2.5961
0.4138 -4.3685 -4.3743 3.3166 1.9814 -1.9703 -1.1246 -1.8788 1.8555 2.5293 -0.6354 0.3032 3.9855 0.4439 -1.3412 -2.6733 1.5434 2.8406 -1.3900 0.5430
-0.9949 0.7752 0.5153 -0.3382 0.7590 -0.3806 0.6362 -0.0446 0.6992 -2.3407 -2.2180 -0.8794 1.9075 1.9883 2.6403 1.4665 1.1384 1.9497 -0.4373 -6.8420
-0.3690 1.5979 3.6520 2.5947 0.9915 -0.4587 -1.5761 -1.3889 -0.8595 -0.0002 0.3336 2.0392 1.9215 -1.5962 -2.1409 -2.1868 -2.0225 -6.9604 4.1862 2.2427
0.7081 1.2472 1.2274 -0.7827 -1.3963 0.1531 1.0164 1.1220 1.4236 4.7449 4.1970 -1.6566 1.4602 -0.4324 -5.0812 -4.6776 -3.2034 0.2020 -0.8325 0.5609
-0.8996 -1.1981 -0.4982 -3.3678 -3.1656 -0.4840 -1.6889 1.4162 1.8691 1.8944 0.6984 2.1971 0.7659 -0.3399 -1.0540 -1.9648 4.8986 2.2357 -0.4350 -0.8795
-3.0303 -1.1024 -3.6351 1.8563 2.2581 0.9526 -1.3180 1.0520 0.9676 1.4472 -0.2536 1.6459 0.5539 2.7964 -2.3045 3.1405 -0.8848 -0.5008 -4.0553 0.4143
-2.0566 0.3509 1.5804 -0.1468 -1.2009 -5.1236 -1.6316 -0.6083 -0.2262 -3.8727 -1.4106 4.1461 2.8353 5.5841 2.0344 -1.3445 -0.2669 1.6597 0.4425 -0.7448
0.4237 5.5027 3.4466 -0.9733 1.1101 0.3187 0.4016 -0.8934 -4.1773 1.2529 -1.0141 1.7716 -1.4207 2.0071 -6.7629 -1.4260 -0.8769 -1.9766 2.0620 1.2241
0.5250 0.4342 -1.3517 -2.8754 -3.0586 0.6098 2.2679 1.4929 1.4608 3.1011 1.5060 -4.8013 -7.5268 -0.6504 -0.5030 2.7780 2.8557 1.0462 3.4571 -0.7675
3.5730 1.8714 -0.1581 -1.7722 -0.3433 -2.7056 -3.0806 -1.9100 -3.1355 1.0548 -1.9906 0.4699 0.0873 2.5566 -0.1726 -0.8702 2.1464 4.3968 5.0995 -5.1171
-0.6968 -1.4896 -0.0495 0.8149 1.4216 -0.0327 -1.7535 -2.2313 -0.3210 1.9568 4.8784 -1.9324 -1.8058 -2.6431 -3.7316 0.3685 1.1306 4.9893 -0.2577 1.3848
-1.4341 -1.1497 -1.8056 0.1413 2.5710 2.9390 0.7055 -0.4196 -0.2614 0.1608 -0.6195 -0.3637 4.1643 0.3576 0.0984 2.2749 0.4728 -7.3150 -0.1921 -0.3248
-4.2895 -7.0396 -4.8802 -1.5844 1.4442 1.8886 0.5829 0.1608 -2.6352 -1.0632 0.4985 3.2097 6.3270 9.0622 8.0546 -0.4311 2.1200 -2.0642 -2.9293 -6.4319
-2.8918 -0.9105 -1.1049 -1.3358 0.0333 -0.4429 1.1140 3.2177 -0.2479 -0.9423 2.0518 -3.4204 -3.3752 -1.5080 4.5184 3.5104 0.8370 0.3279 4.1906 -3.6215
1.1012 2.8300 4.9338 4.9135 -1.4413 -4.6933 -2.9852 -2.2104 -2.0709 -0.2446 -1.7323 0.4460 -0.3491 0.7293 1.2549 1.5520 -1.6591 -0.0263 -1.3091 0.9607
-3.8105 -2.2705 -0.4801 0.0030 -1.0835 -0.8967 -1.8480 4.3428 2.2775 1.1261 1.5948 4.4091 3.5564 -2.1928 -2.8051 -1.2385 -1.6399 -0.9968 0.5731 1.3796
4.5581 4.2833 0.3675 -0.5438 1.9400 3.0816 0.3261 -0.8096 -2.6679 -2.1086 -0.8131 -4.9186 -3.6340 5.7405 0.0185 0.6308 2.5276 -4.0355 -1.8846 -2.0583
-1.2863 -0.2640 -0.1222 1.8197 -0.8215 -1.4173 6.3047 -1.3136 2.0735 -0.1627 3.0262 1.5599 -2.3044 -2.9292 -2.1284 -0.0060 -0.2974 -0.4468 0.2977 -1.5818
-0.3043 -4.9833 -4.4641 1.6692 5.7638 4.6547 3.7525 -0.9610 -3.9550 -2.2488 0.7885 4.2621 3.6322 2.1375 -6.9698 1.9153 2.5541 -3.4886 -0.8469 -2.9081
1.6869 -2.2603 -5.3537 -1.9240 -2.3796 2.8412 5.8922 -3.3838 0.7866 3.3273 0.7220 4.1493 -2.8075 1.2195 -4.1220 2.7912 5.5751 -0.9361 -3.7960 -2.0281
1.8743 1.5687 0.9347 -0.0119 5.1974 -0.9505 -1.5819 -0.0387 -0.2355 2.4835 -2.7180 -2.1816 -1.0347 -1.5606 -1.4552 0.4355 -1.6713 -3.1551 -0.2146 4.3156
-0.5064 0.6473 1.6157 0.4031 -0.7786 0.4664 2.3609 -0.8533 -2.7426 0.0584 3.6047 -1.3728 0.0256 -2.0089 0.7575 -3.1106 -1.7839 0.9710 1.5709 0.6757
-0.1854 -0.4792 0.2327 0.5721 1.3762 0.9344 1.6367 0.2158 0.6455 0.9744 -3.1471 -5.2734 -4.3577 3.1646 3.1365 2.2803 1.2303 -1.9960 -1.5643 0.6037
1.5540 2.1016 2.3825 0.8004 -2.0847 -2.7548 -1.5073 0.1971 -0.2707 -0.7690 -1.8324 -0.6385 -4.5361 -6.8801 5.4599 2.6660 1.1252 2.2850 1.3862 1.3159
-2.3092 8.5984 0.5061 -0.6741 -2.4670 3.2934 -0.6680 2.0327 0.6889 -1.8602 -0.9325 -1.2001 -4.3458 -2.5628 0.6948 -1.1889 0.4479 2.5950 1.2931 -1.9416
0.8421 1.5717 0.5751 0.5951 0.4783 -2.2142 0.3553 6.0828 3.0287 -2.3343 -3.2264 -0.7759 -2.0090 -0.3873 -2.4778 0.6768 -3.4990 -0.8957 4.2903 -0.6766
-0.6942 8.6603 -5.4134 -0.8727 -0.3504 -3.3092 -0.5586 -0.2913 2.8905 -3.0583 -2.9724 -1.7470 3.3250 -1.1022 -4.4193 7.6704 0.5149 -0.7173 -3.6000 6.0453
0.6802 1.0947 1.2451 3.8611 4.5266 1.8951 0.7625 6.2260 2.5223 4.8966 1.8380 -0.3753 1.3861 -7.5361 -6.8810 -3.7307 -4.9193 -2.5727 -4.5778 -0.3414
-1.4648 -1.9631 -1.4302 3.2813 2.7021 -1.3306 -3.5822 -3.4123 -2.6251 -2.5540 -2.9830 1.7868 1.1612 1.7944 0.6471 3.7619 3.5844 -0.4360 2.9666 0.0957
-2.6065 -0.4815 3.7667 3.2609 1.4317 5.8806 0.0973 -3.3441 -3.2874 -4.9485 -1.6589 0.7537 0.3424 0.9215 3.8135 -4.2041 -1.8751 -0.8917 1.0067 2.0227
4.0705 -1.6316 -3.7042 -1.3612 1.3654 1.6949 -0.0461 -0.4280 2.9316 0.2615 -3.3312 0.4341 1.2323 -0.8543 -0.8620 -4.8579 -6.1758 3.1382 4.9340 3.1899
-4.1097 -4.1313 -2.7947 -1.2657 -0.6757 0.0158 -0.2664 -0.7288 -2.8256 -1.9407 0.4965 2.0938 4.2596 1.7443 2.0920 3.1468 3.6217 1.9383 0.0884 -0.7586
-0.5474 3.7117 4.4423 -1.1991 -3.2034 0.2008 -1.1999 -0.3645 -0.3658 -1.5068 4.3945 -0.5362 -1.4209 -0.9138 -0.0750 -0.9590 3.3133 2.7513 -7.0608 0.5385
-0.2792 1.0180 0.1758 4.6409 0.9990 0.8572 -2.2212 -4.3593 1.0210 5.0992 3.1964 1.4429 -1.7425 -0.9214 -2.3245 -1.3975 -6.8773 2.8027 -1.1862 0.0560
1.7064 0.3215 -0.2518 0.0527 -2.5377 -4.4163 -3.0416 -0.1822 -1.1887 -2.9410 0.6761 3.4948 1.6101 1.2626 0.2612 5.6220 -3.9114 -1.0915 4.1888 0.3661
-1.7866 -1.1389 -0.0309 -0.9349 0.3853 1.9195 0.2339 0.3886 0.9745 1.4208 2.5313 4.3943 -4.6360 -2.5445 -2.1898 -2.5330 -0.3527 4.7621 0.5928 -1.4558
7.8057 -3.8468 0.8827 0.8768 -4.7631 -5.1731 0.0664 5.3199 -1.7890 -4.3428 1.9966 2.9221 -4.5512 5.1760 0.5820 -0.2561 -0.2887 0.6505 -0.8654 -0.4024
-2.5780 -0.0834 0.1440 -1.6096 -4.1370 -4.8240 -1.6968 2.0832 4.4015 2.3414 0.0326 -1.7738 3.0088 2.5338 2.2405 0.7822 -3.4270 2.3235 0.3274 -0.0892
2.1843 2.5930 1.3745 1.7373 2.8715 2.7285 -1.1274 -0.1783 0.9497 1.0004 -0.2974 -0.2919 0.6463 0.2228 -1.5085 -5.8708 -3.6910 -0.8536 -2.5539 0.0647
-1.6643 -0.8616 0.2098 2.2486 4.6647 3.8540 2.3834 1.3656 -0.2611 -0.7523 -0.2703 2.8630 1.1570 -1.6263 -4.3844 -3.5346 -0.0484 -0.8649 -4.9645 0.4867
0.6824 1.0939 0.6691 0.3291 -0.2396 -0.9714 -0.9487 0.4056 -0.8422 -1.0662 -0.8121 -1.8756 1.8363 1.0681 3.7568 2.7493 -2.2790 1.4171 -4.9986 0.0258
-2.0461 -1.9677 -1.8134 -2.6831 -3.0621 -1.6874 2.2873 0.6491 1.7878 1.1808 1.5028 -1.1540 -1.2923 -0.0603 -3.5107 6.4917 4.0814 1.4288 0.0396 -0.1721
1.7926 0.6400 0.0107 -3.4114 12.2384 -4.2391 -4.1672 -5.5139 -1.6966 5.3015 -0.9447 -4.0014 3.1093 5.2076 5.6201 2.3962 -5.3615 -1.8057 -0.2628 -4.9121
1.2301 -0.2653 0.0535 -2.1294 -3.7763 -2.5405 -1.3165 1.3892 1.1754 1.8095 2.3931 -0.5310 -0.8291 0.5926 -0.2725 -7.2218 1.8619 3.8534 3.4226 1.1011
-4.1789 -3.5276 -0.8324 -0.4176 -2.4000 0.0369 0.9853 5.4189 -1.8625 4.5416 -0.0534 -2.2531 -1.8390 3.0263 1.3992 -0.9141 -0.2291 0.6856 2.4454 -0.0313
-6.4975 -4.6128 -3.3675 -4.8986 -0.8354 2.3584 -0.6088 4.1352 0.6068 0.7211 0.2750 -2.0557 0.4476 2.7831 4.6078 -0.4014 5.9849 2.1061 1.2312 -1.9795
1.3230 1.1384 1.2773 1.7150 -0.7509 -3.8269 -1.1290 -0.1851 -3.0673 2.4551 -1.8006 -0.5768 2.5367 -0.4358 1.0236 2.8956 4.5161 -0.4242 -3.2309 -3.4534
-0.3567 2.4123 4.0459 3.3988 2.0862 -2.1774 -5.1260 -1.0930 -2.2588 -0.1938 0.5021 -0.2723 1.0175 -2.6722 0.0196 -1.3546 -1.6702 0.8080 0.6509 2.2336
-3.1316 -2.5501 -0.7668 1.9764 1.8647 -0.0801 0.9053 0.9563 -1.0947 0.3992 -1.9982 2.2428 2.0122 -5.4193 -2.6261 -0.7274 0.7121 1.7109 3.9486 1.6660
-7.9949 4.0953 3.7255 -1.4546 8.0933 1.7853 -4.2627 4.4208 9.6075 -2.0281 -0.5418 -3.5660 -1.9219 -6.8006 -1.4426 -1.8720 6.0536 -6.8174 0.7937 0.1276
-1.9787 -1.0115 0.4548 -0.6009 1.0489 -0.3883 -3.8168 3.5539 1.8044 -0.8020 2.2377 4.0130 2.5264 2.9341 2.9402 3.1940 -12.1756 -4.5827 0.7140 -0.0649
-2.6937 -0.9969 0.6136 -0.2092 0.1112 0.1733 0.0276 0.6804 -4.1810 0.4835 3.1126 -0.8365 -1.6005 3.1133 -1.3297 -0.4657 2.8302 2.7130 -2.7204 1.1750
-4.2305 -1.0868 0.5304 -0.1415 -1.2124 -0.8981 -0.8790 -0.8763 -0.9777 1.0148 4.1145 2.1714 1.2310 -1.6938 -1.4429 1.2355 6.6877 0.2382 -3.2655 -0.5189
-2.1503 -3.4325 -3.4567 -1.0918 0.5993 0.3527 0.3437 0.2288 0.7821 1.0173 2.2607 -0.9887 -0.3595 4.4457 3.7070 1.5475 -3.7173 0.7682 -0.5101 -0.3462
-3.7019 -3.2897 -0.3993 1.1225 4.7873 3.2500 -1.8347 -2.0699 0.0727 1.2966 -0.1512 1.4478 -2.4263 -0.3987 -2.4159 -3.3225 2.8445 0.7735 0.8954 3.5197
0.0807 -1.1966 -2.9464 0.8465 1.6234 1.1215 1.2824 3.7187 2.3234 -3.7329 -7.3924 -3.2192 -4.4371 -4.8564 3.1927 2.3654 4.5154 -1.0330 4.4531 3.2910
0.0329 2.1961 1.8627 0.5090 -2.3566 -3.1635 -1.4865 -3.4766 -3.4834 -4.5095 -2.4040 -5.5450 7.4389 3.1752 2.6905 4.3345 1.8695 -0.0444 -0.0458 2.4056
-4.2525 -4.2615 -2.8448 -1.4174 -1.4188 -1.0941 0.0321 2.7304 1.6246 3.7714 3.6887 2.3979 1.9374 0.7696 -7.0469 0.1811 3.9202 4.8839 -3.2038 -0.3977
-0.4109 -0.9615 -1.1887 -1.3425 -1.0669 -2.7829 -2.9395 1.2890 1.6984 -0.5601 1.6775 -0.5469 -0.8102 -0.2298 -0.7565 0.3451 3.1792 2.2226 4.5535 -1.3689
-5.7264 -3.6531 -1.3521 0.1463 1.7110 3.1890 0.7838 -1.0176 -0.2195 1.4384 0.0207 -0.4968 -1.0491 0.1749 1.0739 2.0378 1.3580 1.2360 0.4429 -0.0980
0.7773 -0.8979 -1.2165 -1.9337 -2.9157 -4.0101 -0.3148 -4.6460 -4.2945 4.1770 5.5969 1.4549 3.5448 1.4079 -0.8343 -3.2017 5.5239 2.2268 -0.3838 -0.0607
-0.6985 -0.6307 2.4635 -0.5381 -0.2883 3.4018 2.1088 2.9180 -0.5123 -0.9613 0.0579 -4.3385 -3.8027 1.0743 5.0578 -1.8280 -2.2439 -4.7171 0.9386 2.5388
-4.5218 0.1558 2.8380 2.3948 -1.9436 0.6339 -0.7954 1.9788 1.5836 1.1696 -4.5526 -0.5640 1.4447 7.0584 -6.8023 -4.5393 -6.0449 -0.5031 6.1354 4.8739
0.3624 -1.2047 -2.0776 -1.5816 -0.7523 -0.4259 1.9866 -0.1702 -0.4710 -1.9514 -1.5113 -0.2099 2.7070 3.8409 4.1635 -1.6517 0.8031 3.1180 -4.9637 -0.0100
3.3248 2.1375 1.3785 0.2103 3.0519 1.4244 0.2968 -0.3016 -1.2728 0.9142 0.2763 0.9396 2.3345 -1.6742 -3.9431 -3.4421 -2.5066 -1.7463 1.1359 -2.5381
7.3832 7.8862 -6.4414 -8.9767 0.1372 -3.3099 3.3247 -2.2516 -2.6663 1.5419 7.2572 -0.6762 -1.4552 3.0048 6.9210 -8.5959 -2.6649 2.5301 -0.7893 -2.1588
1.3303 0.1631 -2.4438 -1.2379 0.9953 2.7203 1.9038 1.2786 0.3887 2.8669 0.3680 -0.1846 5.6338 2.1238 -1.0482 -5.2051 -1.0787 -7.2281 -1.5184 0.1722
0.1645 -0.9895 -2.0311 -3.1149 -3.2980 -2.1249 2.0221 2.1048 -0.3058 -1.0676 -2.5289 -1.4215 -1.7517 2.9140 4.1244 -0.6494 2.6877 3.2611 2.5839 -0.5792
-0.4639 -1.9119 -0.6903 1.0816 1.7980 1.1866 0.4220 1.5316 0.8944 -2.9810 5.6782 3.5367 -0.9955 2.4778 -1.9477 -3.1693 -0.0340 -1.9442 -1.8186 -2.6506
-3.9601 -3.1838 -1.3333 -0.9936 0.4708 1.8640 0.2776 -3.5639 -1.8523 3.8979 6.3274 1.9935 2.4867 -0.2835 -0.1329 -0.9778 1.4936 2.4315 0.5084 -5.4702
-1.9007 -8.9624 0.7258 -2.6244 1.8683 0.7413 8.1690 -2.3570 -4.2143 -5.3821 5.3979 -0.3396 -0.0209 2.4866 -1.7903 8.5769 -2.6396 -4.5135 0.4288 6.3503
2.3682 1.2735 1.0581 0.7198 -1.3884 -1.1783 2.7862 -0.3150 -4.4216 1.0457 0.8020 0.2322 -1.8255 0.9933 1.5522 4.2681 -3.4105 -1.8681 -3.1691 0.4773
0.1022 3.5273 4.7298 1.5753 -3.6041 -2.4060 0.8414 1.2204 1.0785 1.4517 0.9533 1.0682 -0.0095 -1.2482 -3.7150 -1.4924 0.0586 0.2151 -3.5086 -0.8381
2.6097 1.3046 0.1797 -0.8433 -0.8002 -0.6737 -0.7817 -0.0181 -1.8564 -0.0021 1.7429 2.1363 2.4019 0.8520 -1.2013 -2.3776 0.1614 -1.6535 0.2922 -1.4730
-1.1555 -1.9989 -3.7971 -3.5419 -1.7702 5.6208 1.6756 -3.4769 -2.2174 -0.5921 -2.9465 2.4449 3.2181 2.5732 0.5741 1.4008 -1.6104 2.6683 4.0017 -1.0706
2.6808 2.4971 2.2595 2.6039 2.5012 2.7248 0.3061 -0.5761 -0.0415 -2.4607 -1.2162 -0.0800 -2.7145 -3.3777 0.3468 1.3821 -2.9010 -0.5334 -2.3262 -1.0750
-1.4573 -0.7869 0.2356 -0.1795 -1.7997 -2.4756 -0.7083 -1.2917 -0.2409 1.8121 2.3854 -0.0780 -2.6742 0.8926 3.1169 2.4329 -3.2335 1.5184 1.6752 0.8566
1.3578 1.5299 1.0786 -1.5960 -3.3648 -1.6673 1.3592 5.7139 -0.3364 -0.8154 -1.0911 0.3285 1.2167 -6.5169 3.5759 0.3841 -3.4189 2.2520 -0.3564 0.3665
-3.9427 -4.1692 -3.9599 -2.7914 -2.7852 0.8501 2.1268 3.1929 2.9997 0.9798 3.7115 2.7044 0.8023 -1.3597 -0.1213 1.8505 0.8537 2.3570 0.4425 -3.7419
1.1259 1.7278 1.7181 1.0824 0.9378 2.2855 -0.4426 -2.0998 0.2868 -2.3258 -2.4774 -3.5030 -2.1920 -0.0403 0.0689 -2.1823 -1.7516 0.3348 2.6371 4.8097
2.6282 3.1949 1.4763 -1.8168 -2.3026 -0.1157 -0.0177 1.6877 0.8500 0.1002 -0.5211 1.2286 1.5164 -0.6411 -0.9348 -3.1872 0.1863 -3.1762 -3.7899 3.6345
0.6239 1.6179 1.2014 0.2608 -1.9920 4.7736 2.9884 -1.6687 -1.5700 -3.2904 2.3265 0.1217 -0.6529 1.1537 -1.3430 -3.2660 -0.7427 -0.3946 -0.8553 0.7078
-2.5785 3.3274 0.7827 -1.1641 0.3099 2.0930 -3.8923 -2.1233 -0.2174 -1.0352 2.3827 3.2008 -1.3061 -1.3553 2.0138 -4.8137 2.2926 -0.4492 0.2262 2.3061
0.7030 -0.6796 0.6702 1.2330 0.3286 -1.1249 -0.2281 0.9008 -0.4257 1.5252 0.1413 3.8708 -2.7125 -0.1048 -1.3046 -2.6469 -1.7645 -0.4236 2.6448 -0.6022
-2.0396 0.9147 3.7884 2.4844 -0.2561 -2.4529 1.8969 -0.1479 0.6950 -1.2549 -4.9008 -1.2459 0.9313 0.6906 5.2636 -1.1277 -0.2394 -2.2895 -2.5856 1.8753
1.6780 -1.6532 -2.7599 -2.2450 0.5197 -1.6003 4.4426 1.0934 -0.3109 0.9191 -3.4242 1.3304 -1.5208 -0.9853 -0.2434 3.9418 0.4425 -2.2543 4.6335 -2.0037
2.2658 -0.6139 -1.3935 -0.0563 -2.9550 -1.9056 3.4601 -0.3817 -1.6475 -0.2910 -0.5503 1.7727 0.0114 2.6384 2.8574 0.5346 -5.4829 -2.6161 0.9580 3.3952
-2.9553 0.0039 3.9564 2.2087 -0.9348 -1.5953 -1.3780 0.1552 -2.1548 0.7917 1.8242 1.6997 -1.8826 -0.8677 -0.7876 -0.2152 2.3842 2.1467 1.7116 -4.1110
0.7023 1.9303 1.0064 0.0165 5.4286 -1.1464 -1.0459 -2.0088 -1.2634 -2.1806 -0.6159 0.3372 3.4050 -1.1188 -2.8596 -2.3910 -0.5550 5.4226 -1.0697 -1.9937
-0.8683 0.0341 1.1306 -1.3868 -1.9833 2.9612 -0.7025 0.9705 -3.1777 4.1388 0.7353 0.3664 2.0843 0.2998 -0.4050 -1.1895 3.2137 -5.0324 1.1351 -2.3244
-1.0092 0.5101 2.3070 2.1852 1.5304 -1.7001 1.6095 -1.4570 -3.9762 -1.6422 -0.2532 1.3474 0.8974 0.9819 -2.2295 4.7058 -2.0380 3.1038 -2.5420 -2.3311
1.9713 1.0803 -1.0686 -1.2321 0.3041 -0.5899 -1.6032 -0.6543 -2.1903 -2.1676 0.3844 0.2905 -0.5787 -1.1285 -3.3703 -0.5637 0.3705 2.2696 8.3763 0.1004
-2.3313 3.6108 -3.7738 2.3534 -6.3897 3.9802 2.8098 6.2413 2.5170 5.1260 2.4541 -1.7202 -4.9921 -5.7179 -3.3204 5.3271 2.0124 -5.7657 0.7907 -3.2116
0.3230 1.0311 1.3660 0.9706 2.0785 2.0724 -0.0151 -0.8301 -1.1195 -2.8044 -0.9819 0.0417 0.0944 -1.2077 -2.2323 4.1593 1.4207 -2.7654 -0.5102 -1.0909
1.0182 0.5812 0.3232 1.7040 1.6371 0.0882 0.7883 2.0623 -2.4549 -1.7632 -0.0828 0.1245 -1.0882 -0.0487 -2.0254 -0.8118 -5.9132 2.5533 0.4880 2.8199
-2.1755 -1.4110 0.7926 3.1903 3.2045 1.4005 2.2246 0.4995 1.4795 1.0003 1.4155 -1.8108 -1.7649 -2.0289 -4.9177 1.9399 0.4644 -0.6846 -2.6827 -0.1356
-2.3372 -0.8774 1.8295 2.5713 0.4237 -1.6200 0.7250 1.2049 -2.5557 -1.7837 -2.0535 1.8608 2.0142 1.1559 0.4140 -2.2055 2.6316 -1.0207 -0.4407 0.0634
-6.4760 2.3566 6.2881 1.1780 2.2768 0.5492 3.6691 1.5956 1.5393 0.8045 -2.4474 -1.1396 -3.0192 -2.8013 2.1788 0.9584 -4.0593 -1.3318 -0.6033 -1.5164
-0.2224 3.1469 4.1918 -1.5853 -2.9401 2.4424 -2.0556 -1.6902 1.4657 -1.4987 -4.5783 -3.9175 1.8499 2.5001 -2.9926 -3.1367 4.3814 2.8761 -0.3135 2.0766
0.2838 0.7448 1.5373 1.7127 1.9184 1.9954 1.4552 0.6636 -0.0775 -1.4076 -2.7023 -2.4765 -6.0615 -4.2297 -2.8214 4.4402 0.5975 1.2302 2.2798 0.9178
0.1873 0.8058 1.4948 0.4584 -0.6762 -2.1053 -0.4098 -0.9510 -0.4347 -0.3909 -1.0508 -2.5837 -1.0389 -4.2899 -4.0647 3.8453 2.2675 2.8481 4.5950 1.4936
6.4165 4.7690 2.1643 -0.5306 -1.7418 -1.1821 0.4655 2.4797 -1.0005 -2.7835 0.6462 1.0540 0.1648 -0.2195 -1.2133 -1.6876 -0.2896 -1.1843 -4.2375 -2.0895
0.6591 -2.4247 -3.5305 -2.0684 0.7993 0.5286 -1.0223 -0.9537 0.6266 1.4075 1.4620 1.6652 1.3324 -0.3799 1.6047 -0.4030 -1.4183 -0.7574 3.5079 -0.6351
-0.7402 -0.5022 -0.0104 -0.1501 0.0126 -0.8303 -0.6338 0.0643 0.7573 4.3586 2.2234 -0.7379 3.8453 0.8151 2.8221 -1.4249 -1.4011 -3.5524 -6.4818 1.5666
1.2970 2.6835 1.2613 -1.8292 -0.9390 -1.6773 -1.9287 1.2477 1.3854 -1.9138 -1.0744 1.6338 -4.8418 -0.5580 -1.2900 5.2745 -2.7458 2.6939 -0.9625 2.2835
1.8861 3.1363 4.0321 1.7435 0.5233 -0.7855 2.0137 0.8065 1.2174 -4.0074 0.5860 -1.0339 -6.4815 -6.1251 1.1641 -3.9644 -6.3895 7.8222 2.0846 1.7715
3.9399 2.2907 1.6049 0.7588 -0.5727 -0.4203 1.1669 0.6185 -0.3417 1.2484 1.5946 1.7091 -1.8086 -4.7596 -2.8399 -3.9325 -2.0296 -0.6780 -0.7509 3.2019
-0.3222 0.6190 2.2698 6.3269 5.8198 2.6992 0.0601 -0.5335 -1.7361 -3.6667 0.2231 -2.3194 -2.0166 2.4960 0.1420 -3.4765 -2.9842 -0.3195 -1.1974 -2.0840
1.2403 -2.3646 -2.0313 0.7252 3.2474 2.8194 3.1981 0.9009 1.1286 -0.9170 -2.4531 -2.4020 1.6229 2.3317 -1.4971 0.7586 -3.2903 -2.1223 -1.2864 0.3911
2.1547 -0.4814 -1.6208 -0.2568 3.7660 2.5927 -0.5335 0.5221 2.1027 -1.7193 -2.1878 -1.5973 0.4487 -3.0208 -3.0695 -0.2839 1.2100 -4.2182 4.8800 1.3123
-0.8216 0.0172 1.0117 1.8195 2.2767 0.0322 -4.7072 -3.7244 0.2876 1.2946 -1.1268 -2.0514 -0.3229 1.5642 2.8282 1.4525 -0.2405 0.3745 -0.8299 0.8658
-0.5885 -0.7711 -0.1566 0.2456 -1.1305 -2.1400 -1.5832 -2.7023 2.6573 2.8982 -1.9439 -1.4435 3.2616 3.0544 -1.0646 -0.2393 0.2808 -0.6774 -3.3509 5.3938
-2.1609 4.7541 2.6519 2.9104 -0.9771 -3.4464 1.3102 4.9024 3.0997 0.1198 -0.6878 -5.0516 -2.6241 -0.1390 0.3260 -3.7625 -4.6033 5.7644 -2.7192 0.3330
-0.0774 0.0212 1.7356 2.6966 3.8703 -1.2640 -2.2040 -3.8688 -2.8745 -0.3830 -1.2433 2.7247 1.1808 0.5913 3.3839 -2.9426 0.1962 -0.6047 -3.1975 2.2593
-1.7694 -0.8337 -1.4857 1.6357 3.0084 1.4757 0.7496 0.4982 -0.8638 1.0294 3.8151 2.5480 -0.4944 -5.1598 -4.1575 1.6819 -0.9028 -3.0629 2.9081 -0.6201
-4.1737 -1.1372 0.4218 -0.3980 -0.2873 -2.0904 -1.4241 1.1799 4.8192 5.5695 2.1240 -1.9634 -0.1503 -0.2208 -2.6623 -1.2140 1.5287 0.1773 -0.4832 0.3844
1.1759 3.6352 3.0816 -1.1382 -0.8341 -1.2549 1.7627 -0.2610 -1.7582 -4.6767 -1.9887 0.8806 -0.2903 -2.9331 -3.3697 0.3291 -2.5313 6.3991 2.6926 1.0793
3.1054 0.5446 -2.7707 -3.1154 -2.4354 -2.1091 -1.9215 1.5263 -0.5089 -2.1954 -3.0602 -1.7502 2.0283 3.0940 3.1639 6.0315 0.1168 -2.3219 2.2755 0.3024
1.4017 0.2037 -0.1188 0.3630 -1.7809 1.2589 -0.0416 0.1426 -0.2900 -0.0669 -0.9365 -1.7637 -4.6543 4.5857 0.7173 -1.2893 0.7992 1.8632 0.4734 -0.8667
-0.6645 0.3054 -0.1583 0.3900 0.1223 1.1996 4.2148 1.7843 2.7706 0.9297 -1.0663 1.2711 -0.1675 -0.5861 -2.5452 -2.9107 1.2640 0.2394 -4.6672 -1.7254
1.3908 0.5115 -0.8577 0.3878 0.7710 1.2838 -1.2112 -1.2930 -1.9359 -2.3893 -2.5796 1.2692 3.1933 -0.2748 0.2489 3.4206 -5.3967 -3.2312 2.6326 4.0600
-3.1151 -2.4768 -1.4409 0.0820 -0.0650 0.8542 2.7545 0.8481 2.7775 3.2925 -1.1392 -0.5600 5.6459 -1.5505 0.7937 -0.2372 -3.8294 -1.7699 -1.1681 0.3038
-1.4631 -1.5744 -1.0602 1.2727 5.2755 0.7411 2.6424 0.9111 -1.5443 -0.8217 -2.4580 -1.9627 -0.3229 -0.7005 -0.1842 1.4410 1.1190 -0.0388 -1.7254 0.4532
2.6735 -0.1320 -2.0731 -1.2667 -0.0059 0.4063 1.1045 -0.6500 0.2919 -0.2343 -0.1432 0.5161 -1.3203 -1.9223 -1.8439 -0.3541 2.5902 0.7807 0.9691 0.6136
-2.5760 -2.1039 3.3039 7.5737 4.8510 -1.9280 1.3509 -0.0624 1.3149 2.3856 -2.8836 1.6777 1.6919 -0.2315 2.0672 -1.6292 -7.7877 -7.8864 -2.4230 3.2949
0.1825 1.4326 1.8802 -0.7600 -3.5028 -2.0654 -2.5905 -1.9780 -1.3931 -2.0377 2.0912 -0.7666 -1.6801 0.1901 1.3312 -0.8245 -0.8221 9.1933 2.6121 -0.4925
0.6596 0.5183 0.0656 0.6099 0.2170 -0.2483 0.3752 0.0528 -1.3550 -1.9590 -3.0746 -2.7901 1.7480 0.0667 -1.3253 1.8365 1.2016 0.6331 1.5502 1.2179
1.5180 -2.8697 -3.0225 1.1901 1.2949 1.2425 -0.2655 -1.0124 0.1504 0.9476 0.8294 0.4980 -4.6214 -0.4714 2.3140 0.5042 0.0042 0.6173 0.0250 1.1274
5.2946 0.9166 -1.6961 2.6183 3.7503 -0.5464 -0.4536 -2.5804 0.7239 -3.0443 -0.9745 -0.5296 -1.2153 0.2578 -4.9483 0.2574 1.6442 -1.7218 -1.0182 3.2654
-0.3113 0.1627 0.2010 -0.6825 0.4894 0.3705 0.5406 -0.5307 2.3413 3.1334 -0.2531 0.7289 0.0127 0.8411 -0.5394 -1.5751 -4.4648 3.3442 -1.3619 -2.4473
0.7892 1.6007 2.2451 -0.0142 -1.8268 1.0211 1.1632 -0.4310 0.4809 0.7681 -0.3119 -3.1840 1.8621 0.7982 3.9396 5.5125 -9.0182 -7.2338 1.4720 0.3673
4.5691 3.1984 0.4848 -1.6299 -1.5279 -0.4613 -0.3940 -0.7641 -0.7740 -1.4705 -2.0718 -3.7739 -3.8204 -2.0882 0.9538 2.3794 3.3309 2.1292 0.9829 0.7475
-1.7639 -2.1300 1.8133 5.4637 4.9096 0.4400 -0.2077 -3.2872 -2.8010 -3.3973 1.4612 -0.7884 -0.4468 0.3167 3.0330 3.6546 1.5554 -2.1172 -5.0158 -0.6924
-0.9691 2.1549 0.9464 -1.8955 -2.4830 0.5229 1.0573 -0.1544 -2.7731 -1.7762 -1.2133 0.4997 -0.4040 0.0598 2.1564 0.9676 0.1749 -0.3066 1.3334 2.1020
0.1735 -0.6351 -2.2851 0.3979 2.1071 0.8723 -1.4327 2.7248 2.2122 -3.8366 -6.8693 2.9956 2.2340 0.2392 4.5854 0.8064 -0.4877 -1.9451 0.1604 -2.0173
-3.0467 -2.6229 -0.6828 -1.5402 -4.5504 -0.6274 -1.5654 -1.1048 -5.0244 1.2208 4.3959 1.7152 0.8404 2.3104 3.9110 1.3725 3.6004 -1.5868 -0.0242 3.0095
4.6972 -2.0723 3.7478 -0.0539 -1.3604 -1.6975 -5.1051 4.5477 7.4910 0.8111 -1.5236 -2.0035 -2.3201 -1.9156 -1.8399 2.7039 1.1102 2.7618 0.1987 -8.1775
4.2697 2.1482 1.1807 -0.8188 -0.0158 -0.9415 -3.1934 -7.6652 -5.2761 -0.4096 0.8289 -0.6591 -0.1321 -2.2645 2.6890 3.5308 -0.1860 2.2844 2.1691 2.4613
-2.6176 -1.9646 -0.3365 0.4490 1.7890 3.0096 1.2687 0.1913 0.7099 3.1055 2.4376 1.5156 0.2027 -3.2954 -0.8316 0.6250 2.5125 -1.9645 -4.7360 -2.0703
0.9801 -1.1590 -1.1869 -1.8206 -2.6697 -2.2474 -1.9247 1.3390 0.7955 3.2786 2.1796 1.2439 3.8310 0.9791 -3.7027 -2.0691 -3.3297 3.4700 4.0219 -2.0091
-1.9305 1.1296 2.7892 3.5086 -0.4192 1.8621 -2.4767 -4.5620 -1.3151 -0.4855 0.2130 4.0896 -0.2763 2.9118 1.5789 -0.3477 -0.8200 5.6054 -7.8822 -3.1730
3.5183 4.1815 1.9981 -0.8261 -1.4369 -0.3881 1.0213 -3.8793 -3.6636 2.2621 1.1803 1.7727 -0.7985 -1.2902 -5.0777 -1.2307 0.3381 4.4122 -1.4815 -0.6120
4.0477 1.4256 -1.6604 -3.5999 -1.9136 -0.3445 0.3946 1.6694 1.2905 0.9828 0.5724 -0.1289 1.3498 1.3379 0.2067 0.3656 0.2492 -1.2128 -3.2905 -1.7416
-2.0178 -2.6699 -1.3526 0.2496 0.4148 -0.8854 1.0823 -0.6203 1.2579 0.4148 -2.2346 -0.4015 1.4157 4.8809 6.6230 -3.5608 -1.8735 -4.5603 3.5038 0.3340
1.4937 -1.5420 -2.3850 3.1706 1.4707 0.1938 0.5057 3.8806 -0.0936 0.3334 0.4606 1.4472 -0.9030 -1.4318 3.5118 -5.2689 -1.4235 -1.2997 0.0053 -2.1257
-3.6561 0.1855 0.3705 1.1645 0.2341 -0.8092 2.3980 -0.3274 -0.4576 -1.1851 -3.8496 2.0281 -3.3309 0.9466 -0.0780 1.0318 4.0737 2.6190 -0.3495 -1.0083
-0.1238 -0.3756 -0.3626 -1.1974 -3.0280 -3.3983 -3.5184 -2.8303 -0.2464 -1.0525 0.7469 1.1667 1.9967 2.0536 5.8842 4.6720 0.6593 -0.2270 -1.2558 0.4368
1.4898 -0.0036 2.1872 4.7731 5.3388 2.1104 0.8610 -1.9286 -4.4764 -2.9139 -5.8875 0.1502 2.3687 -3.3444 1.8016 2.0118 0.3480 1.5855 -1.0664 -5.4053
-0.2559 -0.0970 0.6606 -3.0637 -4.0503 -2.5522 0.2345 0.1786 -0.3244 -2.5706 1.7286 2.2086 1.6927 2.7400 1.9340 -0.1619 5.4140 3.6846 -5.1534 -2.2469
0.7337 0.6464 -0.7291 -0.8337 -0.3024 0.3377 1.5178 1.0116 2.5850 0.9759 -1.3970 -3.2182 -3.6906 -0.0798 3.4993 -1.9939 -5.3046 1.4115 4.7666 0.0639
-2.9601 -0.9321 -1.3007 -4.5012 -0.6859 1.6271 0.8938 1.8188 2.7147 2.4868 2.4402 0.6577 1.2040 2.0247 0.2523 1.3499 1.0757 -5.3086 -0.2223 -2.6347
1.2887 2.2547 3.3766 1.8575 -1.7910 -1.7548 1.5265 2.7964 1.2240 1.9720 0.2687 1.8100 3.1328 -2.5860 -2.7821 -3.9778 -2.4086 -2.0066 -0.0746 -4.1265
0.8108 -0.0118 0.3510 0.2469 -0.3564 -0.0688 2.2772 2.9983 0.0220 -0.8672 -4.8310 -2.0824 0.0877 2.2501 0.0661 -8.6456 -1.6422 4.8643 2.3157 2.2152
-2.3502 1.9923 1.6641 -2.2786 3.4633 2.6050 -3.0058 1.5172 -5.3190 -0.9994 -2.4221 0.2495 3.8898 -2.0580 1.1705 0.4058 -1.2798 2.5712 -0.5349 0.7192
5.2963 2.7580 0.0542 -1.8363 0.6217 3.1975 0.8761 0.6926 0.1889 -2.2049 -2.6639 -2.3949 -0.4550 0.9028 0.9417 -2.3200 -1.6049 2.2215 -3.0876 -1.1840
0.0332 0.6867 -0.5444 -2.6560 -2.3272 -1.9975 2.7492 3.4613 1.2531 2.2970 0.6826 1.6161 0.8081 -2.8567 -0.2510 3.1363 -4.7699 -0.8591 1.4746 -1.9362
0.1179 0.1304 -0.0905 -0.0885 0.5876 2.0857 -0.3875 -1.3306 -0.8957 -0.1982 0.8458 -0.0513 -2.2349 -5.5634 7.5385 3.9965 -1.0630 -1.5645 -2.1020 0.2680
1.5416 0.4773 -0.0338 0.6704 0.3091 -0.0982 -0.8312 -1.8586 -2.1668 -3.0698 -3.6621 -2.8717 -0.1465 2.9749 3.0473 2.3156 -0.0362 0.7605 1.1471 1.5312
-1.4651 -1.1492 -0.6700 -0.6012 -0.1247 1.1550 -0.2106 -1.2695 -0.4411 1.1446 4.1491 2.6600 1.3124 1.6069 0.6316 -0.4851 -2.5715 -4.3867 -1.0040 1.7189
0.2437 0.6555 0.3411 0.8466 -1.7425 -0.1636 6.1311 0.6211 -2.7030 -1.5009 -0.1744 0.8660 1.3589 1.2490 1.1273 -2.7402 -0.0949 -1.5440 -1.8610 -0.9159
4.3927 3.3672 0.9009 -1.2521 0.6230 -0.5206 0.8245 -0.9087 -1.8374 0.0097 -3.1469 -2.4307 -3.0482 0.2541 1.9480 5.7092 -3.3716 -3.2953 2.6836 -0.9014
2.2171 0.1913 -1.6779 -0.9585 -1.3241 0.2292 1.4881 2.7969 0.2756 -3.8207 -2.4695 -0.3208 2.3024 2.5414 -0.1815 -0.2933 2.0837 0.9892 -1.0861 -2.9823
0.1186 0.1645 -0.3865 -0.8001 -0.3047 -2.3398 -0.6229 -0.0641 0.8491 1.7026 -1.1341 -2.0704 -0.3123 0.1814 3.8820 1.2943 0.4627 -0.5672 0.5181 -0.5712
-0.1015 -2.3234 -2.3520 0.9949 2.2704 0.9946 0.3560 0.9113 0.1017 -0.4530 0.8520 -1.0302 0.8806 0.3674 -2.6615 -4.8900 -2.9475 1.9045 2.6392 4.4864
2.3941 1.7010 1.9067 0.4931 -1.4348 -2.6074 -1.1597 -1.0504 -3.0460 -2.8157 -0.6597 -0.5920 -0.3406 -1.1230 -0.8586 4.9381 2.8734 1.4518 2.5923 -2.6625
-0.8669 1.9301 3.2551 6.1577 2.0399 2.6785 0.7380 -0.3115 4.7391 1.4868 -6.0175 -7.4317 -4.5623 -0.8590 3.8966 -0.1349 -2.5476 -0.0080 -1.4441 -2.7383
-1.8064 0.5147 0.5800 -2.6271 -3.9359 -2.9321 -2.4785 0.6104 -1.7343 -0.3653 -0.3024 0.2350 2.3057 1.9998 2.2392 1.9124 3.0438 -0.2241 5.1672 -2.2020
1.8580 3.3342 3.0400 1.0670 0.2251 0.5480 1.7906 0.7871 1.2850 -0.3795 -2.0150 -2.3713 0.5611 0.5214 -0.8547 0.0171 -1.8463 -2.7006 -1.7828 -3.0844
1.4841 -0.8100 -2.4242 -1.8509 -0.9746 -1.0553 4.8924 1.3818 -1.8605 -4.3708 -2.0142 6.4457 0.9506 -0.5924 0.1104 2.4175 -0.6754 -0.8459 -0.1554 -0.0530
-0.0877 -0.9877 -1.7358 0.3853 1.1022 1.2975 4.3189 -1.9877 -3.1833 1.0392 0.1796 4.1158 1.4650 -1.6177 1.6123 -4.1615 -3.2584 1.2187 -4.3136 4.5989
0.4487 -0.1107 -2.0381 -0.2337 2.5745 2.8339 -0.0417 1.4413 -1.4483 -1.1675 -6.2515 -6.9360 -3.2717 4.8492 0.9246 -0.9750 4.1724 1.7821 1.3820 2.0655
0.1081 -0.6949 0.1665 0.6685 0.8790 0.7273 0.1766 -0.0005 -0.2218 -0.4294 0.4489 -0.4843 0.2008 2.1975 4.5024 -1.0296 -1.2026 -2.5547 -1.0944 -2.3636
2.3396 2.1543 2.2429 4.7578 0.8390 -0.8895 4.6297 0.4985 -2.3653 2.1787 -1.0612 -0.8953 -6.2919 0.5546 -0.4272 -0.9670 -1.9781 -0.4692 -5.5295 0.6795
0.1530 -2.1926 2.1973 4.5005 -1.3453 1.3286 -2.0310 1.0783 -1.3510 -0.7983 0.6783 -3.4857 5.3977 -3.6561 -3.5986 6.0882 0.1428 -0.9697 3.0219 -5.1583
-2.6086 -0.0766 2.7222 2.0552 2.4096 3.0319 1.0596 -0.1283 -0.8104 -0.2732 -1.4259 -4.0229 -1.4469 -1.6716 -1.1861 -0.9216 0.6780 -0.0004 2.0118 0.6041
1.8333 3.1078 -1.8097 1.1817 3.7643 0.5185 1.9828 -0.3454 1.2321 -1.0494 -6.2996 3.9399 -4.6043 2.7296 -2.2906 -1.7821 -0.5503 -0.1687 1.5615 -2.9514
-1.9822 -1.7870 -2.0807 -0.6471 1.7376 -0.7108 -0.9897 0.1273 -1.5435 -3.4080 1.1979 3.2003 1.0189 -0.9731 -1.0790 -1.9655 3.5511 1.2692 3.4593 1.6049
1.8097 0.7952 2.3044 2.0422 0.0385 -1.4890 -2.6817 -2.4115 -2.0814 -4.7349 1.3168 5.2099 2.0691 0.2209 -0.3967 -1.3910 -0.0825 -1.3970 -1.3074 2.1664
-0.6317 -0.6961 -1.7818 1.7212 1.8896 0.7627 6.4133 0.0239 -2.0812 -0.6340 -0.8745 -0.8436 -3.5167 -3.0992 -0.4403 -5.0217 5.7819 4.7221 -2.9383 1.2443
-0.8542 -4.8873 -5.4381 -4.2630 -4.1290 0.7749 4.7768 0.2842 0.3115 -0.2820 0.2149 -0.1804 0.6193 5.7873 5.1866 -1.3257 -3.0389 -1.9693 8.9711 -0.5589
-1.7203 0.3016 0.2697 0.0913 0.2499 2.9554 0.3320 0.0927 -3.0516 1.3578 -0.8456 1.2764 0.1248 3.9102 2.8147 -2.3847 -6.7532 -2.2614 1.9868 1.2535
2.3588 1.8978 1.0798 1.0217 0.8258 -0.3312 0.8967 -0.1754 -0.3981 1.0150 -0.3879 -0.8493 -1.2690 -1.1797 1.5079 -0.1598 -2.3607 1.1269 2.6480 -7.2674
1.1746 4.6165 5.4940 3.4461 -3.9021 -1.6050 -0.1323 -0.9380 -0.4156 -1.9000 -0.2856 -1.2349 -3.6515 -2.9147 0.0530 1.1469 0.2371 -1.3253 3.8834 -1.7466
-2.2758 1.8844 4.6711 2.2076 -1.3597 -0.4741 0.4627 -0.0358 -0.0017 -1.0258 -0.6957 -1.0270 1.1372 -2.6040 -3.0616 -4.3523 1.6973 1.9314 1.1807 1.7410
1.9665 1.3206 -0.1069 0.8467 1.1209 2.6581 1.0313 -0.7646 -0.9327 -0.4666 1.3979 -1.1019 -2.4235 -8.2049 1.1737 4.9310 0.7484 0.2664 -6.0708 2.6104
1.1852 -1.5416 -3.6491 4.4048 -6.7437 4.6469 1.6802 1.2910 2.2789 2.7610 1.3944 -0.7732 -5.8136 4.4421 -2.2039 0.8414 -5.8722 -4.6747 -3.6578 10.0038
-3.9689 -0.5502 1.1683 -2.1974 -1.9082 0.1416 1.6772 0.3260 3.7162 2.4168 2.6207 -1.7735 1.5236 0.3480 -0.3569 4.1471 1.4471 -0.6226 -8.1997 0.0448
0.6532 1.4910 1.2058 1.7096 2.3950 1.7319 -1.5483 -1.8447 -2.2888 0.7634 3.2796 1.6709 -4.9985 -3.0829 -1.1211 1.2229 -0.2209 -1.1940 1.9569 -1.7811
-1.9523 -4.3005 -4.5837 1.0346 1.2567 1.0099 3.2344 2.8332 1.1895 -1.5164 -2.2052 -1.2334 -1.4331 2.1022 2.3179 5.6712 2.1958 -2.0504 -2.5243 -1.0460
-1.1815 -1.5300 -0.6842 -0.5633 -2.6867 -1.4016 0.6359 -2.0170 -1.2970 -1.6432 -1.0489 -1.3764 -1.1731 -0.5962 3.5229 5.3595 3.1187 3.4061 0.3009 0.8550
-3.1382 -0.6280 -0.8774 -0.9941 0.9435 0.9619 0.8520 -3.3796 -3.2423 -1.3758 3.3040 2.2194 1.0056 2.5348 -0.2996 0.9762 -3.7819 -0.3936 5.7234 -0.4105
-3.2428 -5.3967 -1.5226 4.3711 2.0836 2.1112 0.7032 -4.0183 -12.6551 -15.4852 0.9361 9.2253 10.5424 3.4081 3.4337 -0.7556 1.6657 0.8127 4.5992 -0.8160
1.8248 0.0419 0.5248 1.8646 -1.2814 -2.6618 -0.0669 0.1817 2.2151 -0.8152 5.1179 2.3104 3.6555 -8.7128 -2.0790 1.0629 -0.0963 -1.5473 0.4756 -2.0146
-0.1111 0.3482 -0.0235 -0.7175 -0.1449 -0.3857 -0.8724 0.4592 0.4980 0.2237 0.3924 0.2623 -0.5426 0.9370 -0.6701 0.1600 0.1978 1.4707 -0.4540 -1.0274
-0.9442 -0.4989 -0.2375 -0.5991 -1.2414 -0.4327 -0.2055 -0.5191 2.6955 3.9938 -2.7275 1.8004 1.9744 1.7067 -0.5541 -5.7033 0.6046 -1.4009 -1.3782 3.6669
-0.8575 0.6722 1.8197 2.2695 1.4265 -1.5445 -1.7430 -1.5937 2.0470 -0.1126 0.3473 1.4243 0.9317 -1.3895 -1.0640 0.4664 -0.0706 -3.0958 -1.0532 1.1198
0.9735 -3.1553 -4.9524 -1.8534 0.7715 2.4911 5.1271 0.4320 -4.1146 1.1236 2.7184 2.0135 1.9444 1.7813 1.8232 -2.6267 -5.6361 0.3774 1.0979 -0.3363
1.9497 1.0413 -1.2191 -0.8636 0.0511 -0.3375 -0.5315 -1.0284 2.1218 -5.0828 1.0827 -2.2172 -1.3936 0.4537 3.3006 0.9962 -1.2147 0.0930 -2.8723 5.6705
-3.0064 -0.6690 1.9882 3.1451 0.5101 1.4897 6.0735 3.0322 0.7197 2.5823 0.9024 -1.3595 -0.6102 -4.4164 -5.2345 0.5038 -1.7243 -1.0135 0.3868 -3.2999
-1.3127 -0.5603 -0.4395 -0.5779 -1.3273 -0.7737 1.1446 2.1363 0.5709 -0.9646 0.1742 -0.3429 0.7079 -1.3617 -0.1807 0.8278 4.5177 -3.6128 1.9484 -0.5738
4.9592 5.5662 -1.4308 2.4625 -1.3728 0.3179 2.5142 -3.1176 -3.0793 2.5866 -6.0767 -3.0209 -1.0428 3.7946 3.4423 -3.9407 3.8680 -5.8781 -3.2612 2.7097
1.8752 4.6096 2.6992 0.0622 1.9683 -1.5159 -0.2846 2.0429 5.1916 0.0415 0.4228 0.2499 -1.8859 -1.2282 -1.8414 -3.2239 -2.8594 -2.2718 -1.9470 -2.1050
-0.4172 -0.0660 -0.7815 -1.3234 1.6425 1.5960 0.1952 2.8005 1.8348 -0.0556 -1.7528 -0.3330 2.5351 3.2175 -0.0237 -2.6102 -2.3993 -0.4569 0.2104 -3.8124
0.5340 -7.1325 7.3739 -7.1474 5.0035 4.0837 1.7481 0.6285 2.1470 3.3649 3.4871 -4.6213 5.3643 -0.8361 2.3067 -0.6517 -4.1528 -4.1599 -0.0969 -7.2432
6.4977 -1.8922 6.0123 2.6649 3.9019 -2.9401 -5.9544 6.5995 -3.7727 -1.3909 -4.1986 0.3151 1.1248 0.2299 1.4836 -7.4381 0.2549 4.7727 -2.9947 -3.2755
0.0546 0.0075 0.5596 0.2523 -2.3268 -4.5642 -3.6799 -0.8395 2.7336 3.7088 2.7486 2.6118 1.5065 0.0463 0.4170 -0.5592 1.5006 -0.4534 -1.6715 -2.0529
2.9815 2.4495 1.7545 3.2822 2.8844 2.5666 0.0398 1.6192 2.6128 3.3153 -4.7284 -2.6356 -1.7561 -4.3333 -3.6328 -2.9815 -0.9212 -0.8755 -0.3601 -1.2811
-0.8024 1.2002 3.2220 -0.7626 -2.1102 -1.0525 -1.8044 0.6518 -0.3024 1.2038 0.2348 0.2257 -2.8991 -1.6610 1.3306 -0.9177 -2.5629 -0.6077 5.6868 1.7272
-0.1833 -0.3751 0.5635 0.1503 -0.2949 -0.6821 1.4873 -1.2805 -1.3007 -0.6803 0.0098 0.9789 1.7868 3.5914 0.8184 1.0857 6.4677 -3.3457 -6.7060 -2.0913
4.2126 1.0339 -0.8906 0.9053 2.8206 3.1913 0.4808 1.7342 1.1617 0.7387 3.7928 -0.7288 -6.1883 -1.6937 -4.9005 -3.6291 -0.7611 -1.4035 -0.2407 0.3643
-8.3754 -2.2519 1.3080 1.8062 0.8850 1.6497 2.0880 2.7261 0.2633 -0.5998 0.5979 0.7034 0.9960 2.9711 0.1650 0.8745 -0.1614 -0.6875 -1.3556 -3.6024
1.4188 1.0202 1.5256 1.6620 0.7476 -1.4390 -3.4051 -1.8780 0.4521 -3.9741 0.7867 -0.3719 -2.3721 -1.0437 0.6801 -0.2011 -3.0818 2.9062 4.2361 2.3315
0.1054 -2.6122 -4.3807 -5.3145 -0.2846 4.3842 3.0170 3.8061 0.7110 -1.0498 -0.2574 -0.9802 0.3402 1.2503 2.5457 -7.8042 -0.1469 2.8259 3.0062 0.8386
5.2058 7.1080 4.9534 -1.2430 -6.6855 -3.7117 -6.1961 -2.1515 -0.5576 -1.6169 5.7678 7.7780 -3.9195 1.0323 -4.8749 2.1979 -6.6948 5.7018 -1.1809 -0.9126
5.0054 3.2246 2.7220 2.5774 0.3515 -0.4988 -0.6659 -1.1531 -0.3512 -0.2899 -1.1677 0.8076 -0.0710 -1.3279 -1.8820 -2.0262 -1.5275 -2.2770 -2.2582 0.8080
-0.3421 -2.1542 -1.9404 1.9715 2.0717 1.2690 -0.5900 2.8831 2.5295 -0.0718 1.0132 -2.1895 0.9449 0.2787 2.8471 3.2171 -2.0622 -4.9892 -4.8142 0.1278
-3.5648 -4.5220 -3.8219 -0.0484 2.5590 3.3348 4.6892 3.0890 3.1738 2.4402 -0.3648 -2.0478 -1.8476 0.1171 -0.1749 -2.2364 0.1988 -2.2378 0.6726 0.5920
-2.5566 -0.8410 -0.4280 -0.4406 -0.5726 -0.3279 -1.8710 -2.4830 2.8140 4.1548 -1.1877 -1.2228 1.1741 0.7041 -4.1128 0.8974 1.6460 2.7315 1.4956 0.4265
0.6395 0.6244 0.2175 0.2548 -0.6436 -1.4509 -1.2471 -1.8889 -1.6984 0.6300 -0.0902 -1.4274 1.6267 2.2897 -1.4907 -1.0863 -0.5990 -0.3234 4.5402 1.1229
-3.0281 -3.4576 0.2465 1.1848 -0.3128 -1.4112 -1.7883 -2.4368 -3.6604 0.2309 4.1432 0.2306 3.9874 1.3414 -2.9661 0.2318 1.3943 2.8996 1.0512 2.1197
-6.4523 -0.8108 3.0394 2.9265 1.7276 -0.6852 -1.3401 -1.2086 0.2339 0.6323 0.9584 -0.4322 -0.4865 1.1438 3.9792 -0.5978 -3.3409 -0.0134 0.1557 0.5712
0.8836 0.6632 -0.5682 1.0909 1.0200 0.2143 1.7898 0.4314 -1.2105 -1.6888 -2.8939 1.5904 1.4323 5.0287 -2.4090 -2.6282 -1.2927 -1.8499 -3.8726 4.2691
2.7571 0.5054 0.5914 -0.4593 -1.9535 -2.8534 -5.1043 -5.0146 0.3167 1.9210 1.9920 1.2596 1.2329 -1.0134 -2.2148 -0.9619 3.3405 0.4893 1.9185 3.2509
-7.8257 -8.0514 -2.2922 4.6049 1.7841 0.2877 2.4600 0.2299 0.3961 0.7952 4.9841 0.5914 -3.3601 1.4043 5.5671 2.2508 0.0018 1.5100 -2.0511 -3.2867
1.5686 1.2169 -0.6391 -2.6751 -3.0325 -3.9104 -2.5516 -0.9763 6.3909 -1.3255 1.3817 1.7409 2.2064 2.8908 0.3118 0.3554 0.3092 -0.0695 -2.5566 -0.6363
1.1784 0.7886 1.7506 3.8841 0.1097 -3.4846 -1.1668 -0.2517 -0.3004 -0.0493 2.0270 0.2092 1.5440 3.4255 0.2943 -0.8517 -1.6072 -4.0976 -5.8976 2.4958
0.9988 2.8848 3.2891 3.3681 1.4676 3.2906 1.3735 1.1970 0.4611 -0.5875 1.7464 0.9583 0.5681 -1.4825 -4.2976 -3.2226 -2.3712 -7.0782 -2.8558 0.2917
-0.2746 -0.1545 -0.1213 -1.7658 -0.9647 -0.8990 -2.2776 -1.6043 2.1487 5.2377 -7.3002 -1.2976 0.8951 2.6087 1.9104 0.8944 4.2107 2.4289 -0.6124 -3.0624
4.5993 2.8908 2.6348 2.5753 3.5423 -1.3467 -3.6340 -1.3719 -1.5896 -1.7807 0.4182 -0.4869 -0.0081 -1.7322 -5.0302 -4.0281 3.2297 0.1854 0.7317 0.2006
-3.2143 -2.4079 2.3832 -1.4835 -2.9589 -4.3471 -9.4701 -8.6980 2.2131 11.9939 3.4222 5.6731 1.0493 0.9347 3.1770 3.6996 -0.0115 2.2951 -2.8928 -1.3571
2.2986 0.5686 -2.7234 0.0628 3.3595 3.0322 1.2528 0.1697 0.2877 -3.1109 -4.5198 4.2898 4.5477 -0.5365 -2.9437 -1.7760 -3.4896 -0.4971 0.5506 -0.8230
0.0226 -1.9088 -4.1034 -3.5139 1.8311 6.6465 1.9042 -0.2585 0.4811 -1.3603 -0.8669 -2.6469 -2.4021 -2.3699 -1.0708 1.8059 0.3697 0.3642 3.4726 3.6036
1.8666 0.3455 -0.4415 1.4530 2.1752 0.4141 0.9988 0.9339 2.0369 0.0808 -1.3138 -1.2683 0.1032 0.3074 0.3794 -2.2480 -4.4451 -2.7006 1.2456 0.0770
-0.9714 0.8948 -0.5528 -1.5023 -2.1884 -1.6190 -2.6643 0.3765 5.2588 1.9474 4.7336 6.0668 0.9206 -6.1173 0.2687 4.2344 -2.7801 4.7836 -5.9468 -5.1428
-3.5447 -2.6492 -1.1225 1.1104 -0.6763 -0.3734 0.7874 2.9348 3.7914 3.3802 -3.0687 -1.7645 -1.7552 0.4322 1.5566 3.1434 -2.9717 0.2913 0.3294 0.1693
2.3099 -0.6833 -2.4051 -0.8700 -0.1793 -0.7055 -1.1773 0.0766 -2.2742 -3.5734 -2.1986 0.6775 0.1605 0.0083 4.2284 1.3025 3.7892 -0.0746 -0.9582 2.5465
0.9486 0.1048 1.8316 3.4918 2.1758 1.1342 1.0848 2.4632 0.0993 -1.9453 -1.1703 -1.6274 -2.0353 0.8991 0.4736 -4.0911 -2.9565 -2.3552 -2.1133 3.5874
0.6208 3.4997 6.2697 4.2107 1.2652 2.1894 1.1355 -2.5271 -2.9525 0.0535 0.3829 -2.5199 -2.9063 -2.7287 -1.9607 1.4600 1.2748 0.4400 -4.8467 -2.3602
0.5243 2.9289 2.2684 0.4191 -2.1542 -0.2881 -0.2706 0.6758 5.4475 1.1883 -2.5477 -6.5024 -4.1506 0.6656 0.9576 -1.2352 1.0736 -4.8441 2.5699 3.2741
-0.7794 1.1463 3.5016 1.1120 0.8485 -1.0628 -0.8132 3.8405 -0.3344 1.2653 0.4357 0.5494 -2.5741 -2.4964 -3.4166 -4.9706 4.8271 -4.7341 1.1838 2.4711
1.8447 1.0979 -1.7573 0.3863 -0.5133 -3.1578 0.0583 -0.5417 4.1974 -4.6030 0.1241 -3.2329 4.6242 -4.6647 -2.4610 0.5959 3.2183 -1.2626 5.6612 0.3859
-2.3894 -1.0328 1.7896 5.5648 5.2220 1.8869 1.0956 -0.1977 3.2983 0.9466 -2.0813 -0.1679 -0.5816 -0.1714 -2.7510 1.1951 1.5496 1.6400 -5.0073 -9.8080
0.7738 -1.7298 -3.2257 -0.3183 1.9284 1.7227 0.8166 0.9095 0.5332 -0.5016 -1.2660 -1.9608 2.0035 -2.6922 3.7039 0.8905 -0.7247 2.7531 -3.0591 -0.5571
-0.0748 -0.5070 -0.2516 1.7723 1.4041 4.3520 1.7022 1.0990 -1.4641 -2.3620 3.1174 0.5476 1.5192 -1.9294 -4.9678 0.2919 -3.1451 1.3976 -0.5997 -1.9017
-0.3043 -4.5751 -6.4864 -2.8079 2.8553 1.4264 -0.6290 0.8259 1.1617 -0.8255 -1.1913 -0.9336 -0.8179 -0.6841 2.7254 1.9190 4.4832 2.4919 2.0452 -0.6788
2.9368 3.5644 3.7164 3.7726 0.3148 -2.5071 -1.0177 0.4365 0.4818 -2.1099 -3.0728 -1.1823 -1.8323 -2.5460 -3.2217 -2.5081 0.1068 -0.3340 2.0018 3.0001
2.0122 -0.8437 -0.0894 -3.5669 0.2151 1.3672 -1.1852 2.2748 0.2674 2.1266 -4.5961 -3.5181 1.6410 4.2095 -4.0873 0.0362 3.5548 -2.6567 1.8468 0.9915
-2.9528 1.3693 1.3737 3.6447 4.6399 3.0004 -0.4081 -0.5069 -2.0885 -2.1563 0.7639 0.4790 -2.4821 1.6495 0.8280 -0.4457 -4.8607 3.5285 3.1896 -8.5655
-4.4449 -2.6584 -0.3396 2.7055 3.1313 2.6691 -0.1405 -2.6920 1.1380 5.9263 0.1508 -2.5031 -2.5963 -2.2339 -0.4387 2.7348 0.1166 -2.0958 -0.1884 1.7591
-0.4506 -2.2585 -2.0183 -1.2141 2.3804 5.1371 -0.1012 0.7185 -1.9558 -5.5843 1.7274 2.5676 1.3295 -2.3148 3.4722 0.9168 0.3809 -1.2468 -0.6805 -0.8055
-0.5741 -1.3187 -1.6054 -1.8387 -3.0009 -2.2631 1.6411 1.0542 0.8630 1.3059 0.6660 0.5171 -0.9355 -1.8837 0.8703 0.3850 -0.0855 0.2754 4.4605 1.4674
4.0853 2.9178 0.0251 -1.7053 -2.9819 -2.0918 -1.9947 -0.8293 -0.6373 0.5052 2.1796 2.6733 -1.7046 -0.6344 1.3620 -0.4864 -2.0884 -1.6708 1.5012 1.5754
-1.5635 2.8252 -0.9149 -3.0463 -4.7327 2.7084 1.1209 0.7968 0.7865 -1.2527 -0.1248 2.6941 2.7972 2.2336 -0.0652 -0.4532 -2.9265 -0.0560 -0.4324 -0.3945
2.4620 0.7164 -1.5674 -3.1513 -1.6402 2.4149 2.9010 2.5761 3.2262 0.0749 -4.5314 -3.4112 0.2922 1.0743 0.0408 -1.5976 -0.5032 0.6577 0.7598 -0.7940
1.9710 1.1730 -0.6838 -2.2094 -1.9356 1.4952 -2.0825 -0.2927 0.7657 -1.8337 4.4472 -3.8324 0.7557 0.0732 -3.6271 -1.9071 4.3140 2.4552 -0.0317 0.9857
3.7325 2.7934 1.0157 -1.7096 -2.8454 -1.8953 -0.7562 0.3146 -0.3781 -1.0020 -1.6158 -0.3984 -0.0573 0.9972 1.0112 -1.0599 0.0370 3.6124 1.1087 -2.9047
-1.4832 -1.9899 -0.8731 -0.9330 -2.9066 2.3820 -0.1603 -0.7170 -1.1285 -0.9274 2.1578 6.4011 -1.6535 2.3099 -1.6654 3.7268 0.0883 -1.8527 -0.5184 -0.2568
0.6353 1.3687 1.8257 0.3226 -0.8766 1.0000 1.0853 1.2934 0.8779 1.7553 1.1543 -2.0442 -1.6763 -0.4593 0.9294 -1.2072 -2.2593 -0.6144 -2.8074 -0.3032
-1.2070 -1.3475 -1.8312 -1.7806 -2.9611 -3.1818 2.9332 -0.1240 0.1906 2.9202 -1.8371 1.0525 -2.0319 2.7074 -2.1979 -1.3072 -0.5591 3.0013 2.6600 4.9011
-5.1303 3.3870 -3.7967 -1.9466 -5.3864 -1.1368 -0.5684 3.7351 -0.5755 -3.2378 -4.4250 2.0350 3.9372 5.4701 -2.7768 5.9464 6.6849 -3.7875 1.9948 -0.4230
-1.3037 -1.9678 -3.1520 -1.4018 0.2092 2.8010 2.0760 -0.3324 1.0911 0.9050 1.7187 3.4255 1.0022 3.5722 -3.5224 -4.7658 -1.0745 0.2766 1.2898 -0.8471
1.9772 -2.9635 -3.0240 -2.2547 0.1703 1.7771 -1.6073 -3.1859 1.5410 1.4356 0.9203 3.9297 4.2495 5.7007 -4.0193 -0.8612 1.6423 0.8844 -5.1605 -1.1517
2.9132 0.8992 -1.0688 -1.5448 -0.9185 0.4003 -1.7700 -2.7768 -1.4639 0.2261 0.7139 1.7997 3.0514 3.3204 0.6803 0.9792 -0.2717 -2.6450 -0.2252 -2.2988
-2.9741 -2.4804 -3.0116 -3.1521 0.1074 1.3714 0.6662 2.0637 1.7849 -0.4611 -0.7720 -1.6172 0.8203 3.4203 0.8069 2.2581 3.2451 0.5915 -2.2429 -0.4245
-0.8028 -0.2290 0.2137 -0.4319 0.5580 0.2543 0.9172 0.8892 -0.4807 -1.2827 0.9202 1.1454 -1.6931 -3.6479 0.4568 3.9049 1.2435 2.6145 0.7928 -5.3425
2.6190 1.9162 0.9769 -0.1078 -0.4290 -0.3650 -2.8284 -4.4494 -5.9910 -4.8405 0.7110 -0.4595 0.2195 3.3942 0.9527 -1.8867 3.8742 3.7699 1.2150 1.7087
1.8829 0.7201 0.6607 -0.0626 -1.1940 -1.4411 -0.0944 0.1172 -0.7491 -0.3712 -2.5287 -2.1899 -1.2280 -1.4906 -0.5689 -1.4885 2.7842 4.0586 -1.1367 4.3200
4.6710 0.9897 -0.6156 -0.6851 -1.4120 4.1532 4.4321 1.1339 -1.0985 0.5736 1.4085 -4.6356 -3.3117 -1.5968 -3.4345 -0.7293 -0.0528 -0.3096 -3.6684 4.1880
-2.5398 -1.3830 0.0979 1.9654 3.5192 -0.0522 -3.2870 -3.8507 0.6356 -0.9850 -3.0198 -3.7269 -0.8310 1.9829 1.8339 -0.8073 0.2152 2.0459 6.1180 2.0688
0.4962 3.2227 3.5953 1.3395 -3.4218 -4.9933 -1.9981 0.9513 -1.0998 -2.7535 1.3298 -0.6976 0.0716 0.7392 5.8854 -4.3047 2.1890 1.9699 -2.4444 -0.0765
-5.8327 1.1129 0.8081 5.6003 5.5684 4.7020 2.8089 0.4347 1.1649 -4.9188 -11.4465 -1.3196 0.4225 -2.4705 0.3286 -0.0113 8.7340 -2.1220 -2.1264 -1.4373
-1.6231 -1.3969 -2.0111 -1.2620 4.3084 -1.2012 1.2341 0.1866 0.0635 -2.6548 2.3896 1.8088 0.0290 -4.3105 3.9166 -0.0331 -0.3748 -2.4710 1.0435 2.3583
0.6310 1.3989 1.5277 0.7608 1.0894 1.7235 2.0681 2.3537 0.9918 1.2164 -0.3325 -2.2666 0.1756 0.1615 0.5196 -2.6730 -7.1201 -2.9272 -5.4551 6.1563
7.8768 5.4153 -2.5369 0.0405 4.1259 -0.2108 -4.6599 -0.9803 -1.3472 -5.5873 0.0334 -6.0975 -0.7915 0.7551 -0.1575 2.8766 -3.5702 -0.2561 4.0100 1.0615

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,120 @@
/*---------------------------------------------------------------------------*\
FILE........: codec2.h
AUTHOR......: David Rowe
DATE CREATED: 21 August 2010
Codec 2 fully quantised encoder and decoder functions. If you want use
Codec 2, these are the functions you need to call.
\*---------------------------------------------------------------------------*/
/*
Copyright (C) 2010 David Rowe
All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version 2.1, as
published by the Free Software Foundation. This program is
distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __CODEC2__
#define __CODEC2__
#include <codec2/version.h>
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
#define CODEC2_MODE_3200 0
#define CODEC2_MODE_2400 1
#define CODEC2_MODE_1600 2
#define CODEC2_MODE_1400 3
#define CODEC2_MODE_1300 4
#define CODEC2_MODE_1200 5
#define CODEC2_MODE_700C 8
#ifndef CODEC2_MODE_EN_DEFAULT
#define CODEC2_MODE_EN_DEFAULT 1
#endif
// by default we enable all modes
// disable during compile time with -DCODEC2_MODE_1600_EN=0
// all but CODEC2 1600 are enabled then
// or the other way round
// -DCODEC2_MODE_EN_DEFAULT=0 -DCODEC2_MODE_1600_EN=1
// only CODEC2 Mode 1600
#if !defined(CODEC2_MODE_3200_EN)
#define CODEC2_MODE_3200_EN CODEC2_MODE_EN_DEFAULT
#endif
#if !defined(CODEC2_MODE_2400_EN)
#define CODEC2_MODE_2400_EN CODEC2_MODE_EN_DEFAULT
#endif
#if !defined(CODEC2_MODE_1600_EN)
#define CODEC2_MODE_1600_EN CODEC2_MODE_EN_DEFAULT
#endif
#if !defined(CODEC2_MODE_1400_EN)
#define CODEC2_MODE_1400_EN CODEC2_MODE_EN_DEFAULT
#endif
#if !defined(CODEC2_MODE_1300_EN)
#define CODEC2_MODE_1300_EN CODEC2_MODE_EN_DEFAULT
#endif
#if !defined(CODEC2_MODE_1200_EN)
#define CODEC2_MODE_1200_EN CODEC2_MODE_EN_DEFAULT
#endif
#if !defined(CODEC2_MODE_700C_EN)
#define CODEC2_MODE_700C_EN CODEC2_MODE_EN_DEFAULT
#endif
#define CODEC2_MODE_ACTIVE(mode_name, var) \
((mode_name##_EN) == 0 ? 0 : (var) == mode_name)
struct CODEC2;
struct CODEC2 *codec2_create(int mode);
void codec2_destroy(struct CODEC2 *codec2_state);
void codec2_encode(struct CODEC2 *codec2_state, unsigned char bytes[],
short speech_in[]);
void codec2_decode(struct CODEC2 *codec2_state, short speech_out[],
const unsigned char bytes[]);
void codec2_decode_ber(struct CODEC2 *codec2_state, short speech_out[],
const unsigned char *bytes, float ber_est);
int codec2_samples_per_frame(struct CODEC2 *codec2_state);
int codec2_bits_per_frame(struct CODEC2 *codec2_state);
int codec2_bytes_per_frame(struct CODEC2 *codec2_state);
void codec2_set_lpc_post_filter(struct CODEC2 *codec2_state, int enable,
int bass_boost, float beta, float gamma);
int codec2_get_spare_bit_index(struct CODEC2 *codec2_state);
int codec2_rebuild_spare_bit(struct CODEC2 *codec2_state, char unpacked_bits[]);
void codec2_set_natural_or_gray(struct CODEC2 *codec2_state, int gray);
void codec2_set_softdec(struct CODEC2 *c2, float *softdec);
float codec2_get_energy(struct CODEC2 *codec2_state, const unsigned char *bits);
// support for ML and VQ experiments
void codec2_open_mlfeat(struct CODEC2 *codec2_state, char *feat_filename,
char *model_filename);
void codec2_load_codebook(struct CODEC2 *codec2_state, int num, char *filename);
float codec2_get_var(struct CODEC2 *codec2_state);
float *codec2_enable_user_ratek(struct CODEC2 *codec2_state, int *K);
// 700C post filter and equaliser
void codec2_700c_post_filter(struct CODEC2 *codec2_state, bool en);
void codec2_700c_eq(struct CODEC2 *codec2_state, bool en);
#ifdef __cplusplus
}
#endif
#endif

View File

@@ -0,0 +1,73 @@
/*---------------------------------------------------------------------------*\
FILE........: codec2_cohpsk.h
AUTHOR......: David Rowe
DATE CREATED: March 2015
Functions that implement a coherent PSK FDM modem.
\*---------------------------------------------------------------------------*/
/*
Copyright (C) 2015 David Rowe
All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version 2.1, as
published by the Free Software Foundation. This program is
distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __CODEC2_COHPSK__
#define __CODEC2_COHPSK__
#define COHPSK_BITS_PER_FRAME 56
#define COHPSK_NC 7 /* number of carriers */
#define COHPSK_NOM_SAMPLES_PER_FRAME 600
#define COHPSK_MAX_SAMPLES_PER_FRAME 625
#define COHPSK_RS 75 /* symbol rate of each carrier */
#define COHPSK_FS \
7500 /* note this is a weird value to get an integer \
oversampling rate */
#define COHPSK_CLIP 6.5 /* hard clipping for Nc*Nc=14 to reduce PAPR */
#define COHPSK_SCALE 975 /* suggested scaling for 16 bit shorts */
#include "comp.h"
#include "modem_stats.h"
struct COHPSK;
extern const int test_bits_coh[];
struct COHPSK *cohpsk_create(void);
void cohpsk_destroy(struct COHPSK *coh);
void cohpsk_mod(struct COHPSK *cohpsk, COMP tx_fdm[], int tx_bits[], int nbits);
void cohpsk_clip(COMP tx_fdm[], float clip_thresh, int n);
void cohpsk_demod(struct COHPSK *cohpsk, float rx_bits[], int *sync,
COMP rx_fdm[], int *nin_frame);
void cohpsk_get_demod_stats(struct COHPSK *cohpsk, struct MODEM_STATS *stats);
void cohpsk_set_verbose(struct COHPSK *coh, int verbose);
void cohpsk_get_test_bits(struct COHPSK *coh, int rx_bits[]);
void cohpsk_put_test_bits(struct COHPSK *coh, int *state, short error_pattern[],
int *bit_errors, char rx_bits[], int channel);
int cohpsk_error_pattern_size(void);
void cohpsk_set_frame(struct COHPSK *coh, int frame);
void fdmdv_freq_shift_coh(COMP rx_fdm_fcorr[], COMP rx_fdm[], float foff,
float Fs, COMP *foff_phase_rect, int nin);
void cohpsk_set_freq_est_mode(struct COHPSK *coh, int used_simple_mode);
/* used for accessing upper and lower bits before diversity combination */
float *cohpsk_get_rx_bits_lower(struct COHPSK *coh);
float *cohpsk_get_rx_bits_upper(struct COHPSK *coh);
void cohpsk_set_carrier_ampl(struct COHPSK *coh, int c, float ampl);
#endif

View File

@@ -0,0 +1,138 @@
/*---------------------------------------------------------------------------*\
FILE........: codec2_fdmdv.h
AUTHOR......: David Rowe
DATE CREATED: April 14 2012
A 1400 bit/s (nominal) Frequency Division Multiplexed Digital Voice
(FDMDV) modem. Used for digital audio over HF SSB. See
README_fdmdv.txt for more information, and fdmdv_mod.c and
fdmdv_demod.c for example usage.
The name codec2_fdmdv.h is used to make it unique when "make
installed".
References:
[1] http://n1su.com/fdmdv/FDMDV_Docs_Rel_1_4b.pdf
\*---------------------------------------------------------------------------*/
/*
Copyright (C) 2012 David Rowe
All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version 2.1, as
published by the Free Software Foundation. This program is
distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __FDMDV__
#define __FDMDV__
#include "comp.h"
#include "modem_stats.h"
#ifdef __cplusplus
extern "C" {
#endif
/* set up the calling convention for DLL function import/export for
WIN32 cross compiling */
#ifdef __CODEC2_WIN32__
#ifdef __CODEC2_BUILDING_DLL__
#define CODEC2_WIN32SUPPORT __declspec(dllexport) __stdcall
#else
#define CODEC2_WIN32SUPPORT __declspec(dllimport) __stdcall
#endif
#else
#define CODEC2_WIN32SUPPORT
#endif
#define FDMDV_NC \
14 /* default number of data carriers */
#define FDMDV_NC_MAX \
20 /* maximum number of data carriers */
#define FDMDV_BITS_PER_FRAME \
28 /* 20ms frames, for nominal 1400 bit/s */
#define FDMDV_NOM_SAMPLES_PER_FRAME \
160 /* modulator output samples/frame and nominal demod samples/frame */
/* at 8000 Hz sample rate */
#define FDMDV_MAX_SAMPLES_PER_FRAME \
200 /* max demod samples/frame, use this to allocate storage */
#define FDMDV_SCALE \
825 /* suggested scaling for 16 bit shorts */
#define FDMDV_FCENTRE \
1500 /* Centre frequency, Nc/2 carriers below this, Nc/2 carriers above (Hz) \
*/
/* 8 to 18 kHz sample rate conversion */
#define FDMDV_OS 2 /* oversampling rate */
#define FDMDV_OS_TAPS_16K 48 /* number of OS filter taps at 16kHz */
#define FDMDV_OS_TAPS_8K \
(FDMDV_OS_TAPS_16K / FDMDV_OS) /* number of OS filter taps at 8kHz */
/* 8 to 48 kHz sample rate conversion */
#define FDMDV_OS_48 6 /* oversampling rate */
#define FDMDV_OS_TAPS_48K 48 /* number of OS filter taps at 48kHz */
#define FDMDV_OS_TAPS_48_8K \
(FDMDV_OS_TAPS_48K / FDMDV_OS_48) /* number of OS filter taps at 8kHz */
/* FDMDV states and stats structures */
struct FDMDV;
struct FDMDV *fdmdv_create(int Nc);
void fdmdv_destroy(struct FDMDV *fdmdv_state);
void fdmdv_use_old_qpsk_mapping(struct FDMDV *fdmdv_state);
int fdmdv_bits_per_frame(struct FDMDV *fdmdv_state);
float fdmdv_get_fsep(struct FDMDV *fdmdv_state);
void fdmdv_set_fsep(struct FDMDV *fdmdv_state, float fsep);
void fdmdv_mod(struct FDMDV *fdmdv_state, COMP tx_fdm[], int tx_bits[],
int *sync_bit);
void fdmdv_demod(struct FDMDV *fdmdv_state, int rx_bits[],
int *reliable_sync_bit, COMP rx_fdm[], int *nin);
void fdmdv_get_test_bits(struct FDMDV *fdmdv_state, int tx_bits[]);
int fdmdv_error_pattern_size(struct FDMDV *fdmdv_state);
void fdmdv_put_test_bits(struct FDMDV *f, int *sync, short error_pattern[],
int *bit_errors, int *ntest_bits, int rx_bits[]);
void fdmdv_get_demod_stats(struct FDMDV *fdmdv_state,
struct MODEM_STATS *stats);
void fdmdv_8_to_16(float out16k[], float in8k[], int n);
void fdmdv_8_to_16_short(short out16k[], short in8k[], int n);
void fdmdv_16_to_8(float out8k[], float in16k[], int n);
void fdmdv_16_to_8_short(short out8k[], short in16k[], int n);
void fdmdv_8_to_48(float out48k[], float in8k[], int n);
void fdmdv_48_to_8(float out8k[], float in48k[], int n);
void fdmdv_8_to_48_short(short out48k[], short in8k[], int n);
void fdmdv_48_to_8_short(short out8k[], short in48k[], int n);
void fdmdv_freq_shift(COMP rx_fdm_fcorr[], COMP rx_fdm[], float foff,
COMP *foff_phase_rect, int nin);
/* debug/development function(s) */
void fdmdv_dump_osc_mags(struct FDMDV *f);
void fdmdv_simulate_channel(float *sig_pwr_av, COMP samples[], int nin,
float target_snr);
#ifdef __cplusplus
}
#endif
#endif

View File

@@ -0,0 +1,150 @@
/*
* codec2_fft.c
*
* Created on: 24.09.2016
* Author: danilo
*/
#include "codec2_fft.h"
#include "debug_alloc.h"
#ifdef USE_KISS_FFT
#include "_kiss_fft_guts.h"
#else
#if 0
// caching constants in RAM did not seem to have an effect on performance
// TODO: Decide what to with this code
#define FFT_INIT_CACHE_SIZE 4
const arm_cfft_instance_f32* fft_init_cache[FFT_INIT_CACHE_SIZE];
static const arm_cfft_instance_f32* arm_fft_instance2ram(const arm_cfft_instance_f32* in)
{
arm_cfft_instance_f32* out = malloc(sizeof(arm_cfft_instance_f32));
if (out) {
memcpy(out,in,sizeof(arm_cfft_instance_f32));
out->pBitRevTable = malloc(out->bitRevLength * sizeof(uint16_t));
out->pTwiddle = malloc(out->fftLen * sizeof(float32_t));
memcpy((void*)out->pBitRevTable,in->pBitRevTable,out->bitRevLength * sizeof(uint16_t));
memcpy((void*)out->pTwiddle,in->pTwiddle,out->fftLen * sizeof(float32_t));
}
return out;
}
static const arm_cfft_instance_f32* arm_fft_cache_get(const arm_cfft_instance_f32* romfft)
{
const arm_cfft_instance_f32* retval = NULL;
static int used = 0;
for (int i = 0; fft_init_cache[i] != NULL && i < used; i++)
{
if (romfft->fftLen == fft_init_cache[i]->fftLen)
{
retval = fft_init_cache[i];
break;
}
}
if (retval == NULL && used < FFT_INIT_CACHE_SIZE)
{
retval = arm_fft_instance2ram(romfft);
fft_init_cache[used++] = retval;
}
if (retval == NULL)
{
retval = romfft;
}
return retval;
}
#endif
#endif
void codec2_fft_free(codec2_fft_cfg cfg) {
#ifdef USE_KISS_FFT
KISS_FFT_FREE(cfg);
#else
FREE(cfg);
#endif
}
codec2_fft_cfg codec2_fft_alloc(int nfft, int inverse_fft, void* mem,
size_t* lenmem) {
codec2_fft_cfg retval;
#ifdef USE_KISS_FFT
retval = kiss_fft_alloc(nfft, inverse_fft, mem, lenmem);
#else
retval = MALLOC(sizeof(codec2_fft_struct));
retval->inverse = inverse_fft;
switch (nfft) {
case 128:
retval->instance = &arm_cfft_sR_f32_len128;
break;
case 256:
retval->instance = &arm_cfft_sR_f32_len256;
break;
case 512:
retval->instance = &arm_cfft_sR_f32_len512;
break;
// case 1024:
// retval->instance = &arm_cfft_sR_f32_len1024;
// break;
default:
abort();
}
// retval->instance = arm_fft_cache_get(retval->instance);
#endif
return retval;
}
codec2_fftr_cfg codec2_fftr_alloc(int nfft, int inverse_fft, void* mem,
size_t* lenmem) {
codec2_fftr_cfg retval;
#ifdef USE_KISS_FFT
retval = kiss_fftr_alloc(nfft, inverse_fft, mem, lenmem);
#else
retval = MALLOC(sizeof(codec2_fftr_struct));
retval->inverse = inverse_fft;
retval->instance = MALLOC(sizeof(arm_rfft_fast_instance_f32));
arm_rfft_fast_init_f32(retval->instance, nfft);
// memcpy(&retval->instance->Sint,arm_fft_cache_get(&retval->instance->Sint),sizeof(arm_cfft_instance_f32));
#endif
return retval;
}
void codec2_fftr_free(codec2_fftr_cfg cfg) {
#ifdef USE_KISS_FFT
KISS_FFT_FREE(cfg);
#else
FREE(cfg->instance);
FREE(cfg);
#endif
}
// there is a little overhead for inplace kiss_fft but this is
// on the powerful platforms like the Raspberry or even x86 PC based ones
// not noticeable
// the reduced usage of RAM and increased performance on STM32 platforms
// should be worth it.
void codec2_fft_inplace(codec2_fft_cfg cfg, codec2_fft_cpx* inout) {
#ifdef USE_KISS_FFT
// decide whether to use the local stack based buffer for in
// or to allow kiss_fft to allocate RAM
// second part is just to play safe since first method
// is much faster and uses less RAM
if (cfg->nfft <= 512) {
kiss_fft_cpx in[512];
memcpy(in, inout, cfg->nfft * sizeof(kiss_fft_cpx));
kiss_fft(cfg, in, (kiss_fft_cpx*)inout);
} else {
kiss_fft(cfg, (kiss_fft_cpx*)inout, (kiss_fft_cpx*)inout);
}
#else
arm_cfft_f32(cfg->instance, (float*)inout, cfg->inverse, 1);
if (cfg->inverse) {
arm_scale_f32((float*)inout, cfg->instance->fftLen, (float*)inout,
cfg->instance->fftLen * 2);
}
#endif
}

View File

@@ -0,0 +1,99 @@
/*
* codec2_fft.h
*
* Created on: 17.09.2016
* Author: danilo
*/
#ifndef DRIVERS_FREEDV_CODEC2_FFT_H_
#define DRIVERS_FREEDV_CODEC2_FFT_H_
#include <assert.h>
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifndef FDV_ARM_MATH
#define USE_KISS_FFT
#else
#include "arm_const_structs.h"
#include "arm_math.h"
#endif
#include "comp.h"
#include "defines.h"
typedef COMP codec2_fft_cpx;
#include "kiss_fftr.h"
#ifdef USE_KISS_FFT
#include "kiss_fft.h"
typedef kiss_fftr_cfg codec2_fftr_cfg;
typedef kiss_fft_cfg codec2_fft_cfg;
typedef kiss_fft_scalar codec2_fft_scalar;
#else
typedef float32_t codec2_fft_scalar;
typedef struct {
arm_rfft_fast_instance_f32* instance;
int inverse;
} codec2_fftr_struct;
typedef codec2_fftr_struct* codec2_fftr_cfg;
typedef struct {
const arm_cfft_instance_f32* instance;
int inverse;
} codec2_fft_struct;
typedef codec2_fft_struct* codec2_fft_cfg;
#endif
static inline void codec2_fftr(codec2_fftr_cfg cfg, codec2_fft_scalar* in,
codec2_fft_cpx* out) {
#ifdef USE_KISS_FFT
kiss_fftr(cfg, in, (kiss_fft_cpx*)out);
#else
arm_rfft_fast_f32(cfg->instance, in, (float*)out, cfg->inverse);
out->imag = 0; // remove out[FFT_ENC/2]->real stored in out[0].imag
#endif
}
static inline void codec2_fftri(codec2_fftr_cfg cfg, codec2_fft_cpx* in,
codec2_fft_scalar* out) {
#ifdef USE_KISS_FFT
kiss_fftri(cfg, (kiss_fft_cpx*)in, out);
#else
arm_rfft_fast_f32(cfg->instance, (float*)in, out, cfg->inverse);
// arm_scale_f32(out,cfg->instance->fftLenRFFT,out,cfg->instance->fftLenRFFT);
#endif
}
codec2_fft_cfg codec2_fft_alloc(int nfft, int inverse_fft, void* mem,
size_t* lenmem);
codec2_fftr_cfg codec2_fftr_alloc(int nfft, int inverse_fft, void* mem,
size_t* lenmem);
void codec2_fft_free(codec2_fft_cfg cfg);
void codec2_fftr_free(codec2_fftr_cfg cfg);
static inline void codec2_fft(codec2_fft_cfg cfg, codec2_fft_cpx* in,
codec2_fft_cpx* out) {
#ifdef USE_KISS_FFT
kiss_fft(cfg, (kiss_fft_cpx*)in, (kiss_fft_cpx*)out);
#else
memcpy(out, in, cfg->instance->fftLen * 2 * sizeof(float));
arm_cfft_f32(cfg->instance, (float*)out, cfg->inverse, 1);
// TODO: this is not nice, but for now required to keep changes minimal
// however, since main goal is to reduce the memory usage
// we should convert to an in place interface
// on PC like platforms the overhead of using the "inplace" kiss_fft calls
// is neglectable compared to the gain in memory usage on STM32 platforms
if (cfg->inverse) {
arm_scale_f32((float*)out, cfg->instance->fftLen, (float*)out,
cfg->instance->fftLen * 2);
}
#endif
}
void codec2_fft_inplace(codec2_fft_cfg cfg, codec2_fft_cpx* inout);
#endif

View File

@@ -0,0 +1,142 @@
/*---------------------------------------------------------------------------*\
FILE........: codec2_fifo.c
AUTHOR......: David Rowe
DATE CREATED: Oct 15 2012
A FIFO design useful in gluing the FDMDV modem and codec together in
integrated applications. The unittest/tfifo indicates these
routines are thread safe without the need for synchronisation
object, e.g. a different thread can read and write to a fifo at the
same time.
\*---------------------------------------------------------------------------*/
/*
Copyright (C) 2012 David Rowe
All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version 2.1, as
published by the Free Software Foundation. This program is
distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#include "codec2_fifo.h"
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
struct FIFO {
short *buf;
short *pin;
short *pout;
int nshort;
};
// standard create function
struct FIFO *codec2_fifo_create(int nshort) {
short *buf = (short *)malloc(sizeof(short) * nshort);
assert(buf != NULL);
return codec2_fifo_create_buf(nshort, buf);
}
// alternate create function where buffer is externally supplied
struct FIFO *codec2_fifo_create_buf(int nshort, short *buf) {
struct FIFO *fifo;
assert(buf != NULL);
fifo = (struct FIFO *)malloc(sizeof(struct FIFO));
assert(fifo != NULL);
fifo->buf = buf;
fifo->pin = fifo->buf;
fifo->pout = fifo->buf;
fifo->nshort = nshort;
return fifo;
}
void codec2_fifo_destroy(struct FIFO *fifo) {
assert(fifo != NULL);
free(fifo->buf);
free(fifo);
}
int codec2_fifo_write(struct FIFO *fifo, short data[], int n) {
int i;
short *pdata;
short *pin = fifo->pin;
assert(fifo != NULL);
assert(data != NULL);
if (n > codec2_fifo_free(fifo)) {
return -1;
} else {
/* This could be made more efficient with block copies
using memcpy */
pdata = data;
for (i = 0; i < n; i++) {
*pin++ = *pdata++;
if (pin == (fifo->buf + fifo->nshort)) pin = fifo->buf;
}
fifo->pin = pin;
}
return 0;
}
int codec2_fifo_read(struct FIFO *fifo, short data[], int n) {
int i;
short *pdata;
short *pout = fifo->pout;
assert(fifo != NULL);
assert(data != NULL);
if (n > codec2_fifo_used(fifo)) {
return -1;
} else {
/* This could be made more efficient with block copies
using memcpy */
pdata = data;
for (i = 0; i < n; i++) {
*pdata++ = *pout++;
if (pout == (fifo->buf + fifo->nshort)) pout = fifo->buf;
}
fifo->pout = pout;
}
return 0;
}
int codec2_fifo_used(const struct FIFO *const fifo) {
short *pin = fifo->pin;
short *pout = fifo->pout;
unsigned int used;
assert(fifo != NULL);
if (pin >= pout)
used = pin - pout;
else
used = fifo->nshort + (unsigned int)(pin - pout);
return used;
}
int codec2_fifo_free(const struct FIFO *const fifo) {
// available storage is one less than nshort as prd == pwr
// is reserved for empty rather than full
return fifo->nshort - codec2_fifo_used(fifo) - 1;
}

View File

@@ -0,0 +1,57 @@
/*---------------------------------------------------------------------------*\
FILE........: codec2_fifo.h
AUTHOR......: David Rowe
DATE CREATED: Oct 15 2012
A FIFO design useful in gluing the FDMDV modem and codec together in
integrated applications.
The name codec2_fifo.h is used to make it unique when "make
installed".
\*---------------------------------------------------------------------------*/
/*
Copyright (C) 2012 David Rowe
All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License version 2.1, as
published by the Free Software Foundation. This program is
distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __FIFO__
#define __FIFO__
#ifdef __cplusplus
extern "C" {
#endif
struct FIFO;
struct FIFO *codec2_fifo_create(int nshort);
struct FIFO *codec2_fifo_create_buf(int nshort, short *buf);
void codec2_fifo_destroy(struct FIFO *fifo);
int codec2_fifo_write(struct FIFO *fifo, short data[], int n);
int codec2_fifo_read(struct FIFO *fifo, short data[], int n);
/* Return the number of bytes stored in the FIFO */
int codec2_fifo_used(const struct FIFO *const fifo);
/* Return the space available in the FIFO */
int codec2_fifo_free(const struct FIFO *const fifo);
#ifdef __cplusplus
}
#endif
#endif

Some files were not shown because too many files have changed in this diff Show More